Duplicator – WordPress Migration Plugin - Version 1.1.8

Version Description

Download this release

Release Info

Developer cory@lamle.org
Plugin Icon 128x128 Duplicator – WordPress Migration Plugin
Version 1.1.8
Comparing to
See all releases

Code changes from version 1.1.6 to 1.1.8

Files changed (44) hide show
  1. classes/package.archive.php +22 -22
  2. classes/package.archive.zip.php +31 -19
  3. classes/package.database.php +2 -0
  4. classes/package.php +1 -3
  5. classes/server.php +1 -1
  6. classes/ui.php +3 -3
  7. classes/utility.php +26 -27
  8. define.php +1 -2
  9. duplicator.php +15 -8
  10. installer/build/ajax.step1.php +32 -8
  11. installer/build/ajax.step2.php +2 -2
  12. installer/build/assets/inc.css.php +50 -29
  13. installer/build/assets/inc.libs.js.php +10 -41
  14. installer/build/classes/class.serializer.php +34 -16
  15. installer/build/classes/class.utils.php +15 -7
  16. installer/build/view.step1.php +62 -30
  17. installer/build/view.step2.php +26 -26
  18. installer/build/view.step3.php +88 -50
  19. lang/duplicator-de_DE.mo +0 -0
  20. lang/duplicator-de_DE.po +0 -2202
  21. lang/duplicator-fa_IR.mo +0 -0
  22. lang/duplicator-fa_IR.po +0 -1808
  23. lang/duplicator-fr_FR.mo +0 -0
  24. lang/duplicator-fr_FR.po +0 -2869
  25. lang/duplicator.pot +0 -1686
  26. lang/wpduplicator-de_DE.mo +0 -0
  27. lang/wpduplicator-de_DE.po +0 -2310
  28. lang/wpduplicator-fa_IR.mo +0 -0
  29. lang/wpduplicator-fa_IR.po +0 -1808
  30. lang/wpduplicator-fr_FR.mo +0 -0
  31. lang/wpduplicator-fr_FR.po +0 -2608
  32. lang/wpduplicator.mo +0 -0
  33. lang/wpduplicator.po +0 -772
  34. lang/wpduplicator.pot +0 -1686
  35. readme.txt +112 -112
  36. views/help/gopro.php +9 -4
  37. views/packages/details/controller.php +13 -16
  38. views/packages/details/detail.php +60 -60
  39. views/packages/details/transfer.php +5 -5
  40. views/packages/main/new1.base.php +4 -1
  41. views/packages/main/new1.inc.form.php +20 -20
  42. views/packages/main/new2.base.php +91 -91
  43. views/packages/main/packages.php +2 -2
  44. views/tools/cleanup.php +15 -14
classes/package.archive.php CHANGED
@@ -192,29 +192,30 @@ class DUP_Archive
192
  //empty string and directories ending with period (Windows incompatable)
193
  foreach ($this->Dirs as $key => $val)
194
  {
195
- //Remove path filter directories
196
- foreach($this->FilterDirsAll as $item)
197
- {
198
- if (strstr($val, $item . '/') || $val == $item)
 
199
  {
200
- unset($this->Dirs[$key]);
201
- continue 2;
202
- }
203
- }
204
 
205
- //Locate invalid directories and warn
206
  $name = basename($val);
207
- $invalid_test = strlen($val) > 250
208
- || preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $name)
209
- || trim($name) == ""
210
- || (strrpos($name, '.') == strlen($name) - 1 && substr($name, -1) == '.');
211
-
212
- if ($invalid_test || preg_match('/[^\x20-\x7f]/', $name))
213
  {
214
  $this->FilterInfo->Dirs->Warning[] = DUP_Encoding::toUTF8($val);
215
  }
216
 
217
- //Dir is not readble remove and flag
218
  if (! is_readable($this->Dirs[$key]))
219
  {
220
  unset($this->Dirs[$key]);
@@ -252,13 +253,12 @@ class DUP_Archive
252
 
253
  if ($invalid_test || preg_match('/[^\x20-\x7f]/', $fileName))
254
  {
255
- $this->FilterInfo->Files->Warning[] = DUP_Encoding::toUTF8($filePath);
 
256
  }
257
- else
258
- {
259
- $this->Size += $fileSize;
260
- $this->Files[] = $filePath;
261
- }
262
 
263
  if ($fileSize > DUPLICATOR_SCAN_WARNFILESIZE)
264
  {
192
  //empty string and directories ending with period (Windows incompatable)
193
  foreach ($this->Dirs as $key => $val)
194
  {
195
+ //INSTANCE: Remove path filter directories
196
+ foreach ($this->FilterDirsAll as $item)
197
+ {
198
+ $trimmed_item = rtrim($item, '/');
199
+ if ($val == $trimmed_item || strstr($val, $trimmed_item . '/'))
200
  {
201
+ unset($this->Dirs[$key]);
202
+ continue 2;
203
+ }
204
+ }
205
 
206
+ //WARNING: Find OS items that may have issues
207
  $name = basename($val);
208
+ $warn_test = strlen($val) > 250
209
+ || preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $name)
210
+ || trim($name) == ""
211
+ || (strrpos($name, '.') == strlen($name) - 1 && substr($name, -1) == '.')
212
+ || preg_match('/[^\x20-\x7f]/', $name);
213
+ if ($warn_test)
214
  {
215
  $this->FilterInfo->Dirs->Warning[] = DUP_Encoding::toUTF8($val);
216
  }
217
 
218
+ //UNREADABLE: Directory is unreadable flag it
219
  if (! is_readable($this->Dirs[$key]))
220
  {
221
  unset($this->Dirs[$key]);
253
 
254
  if ($invalid_test || preg_match('/[^\x20-\x7f]/', $fileName))
255
  {
256
+ $filePath = DUP_Encoding::toUTF8($filePath);
257
+ $this->FilterInfo->Files->Warning[] = $filePath;
258
  }
259
+ $this->Size += $fileSize;
260
+ $this->Files[] = $filePath;
261
+
 
 
262
 
263
  if ($fileSize > DUPLICATOR_SCAN_WARNFILESIZE)
264
  {
classes/package.archive.zip.php CHANGED
@@ -6,8 +6,8 @@ require_once (DUPLICATOR_PLUGIN_PATH . 'classes/package.archive.php');
6
  * DUP_ZIP
7
  * Creates a zip file using the built in PHP ZipArchive class
8
  */
9
- class DUP_Zip extends DUP_Archive {
10
-
11
  //PRIVATE
12
  private static $compressDir;
13
  private static $countDirs = 0;
@@ -23,11 +23,11 @@ class DUP_Zip extends DUP_Archive {
23
 
24
  /**
25
  * CREATE
26
- * Creates the zip file and adds the SQL file to the archive
27
- */
28
- static public function Create(DUP_Archive $archive) {
29
- try {
30
-
31
  $timerAllStart = DUP_Util::GetMicrotime();
32
  $package_zip_flush = DUP_Settings::Get('package_zip_flush');
33
 
@@ -63,7 +63,6 @@ class DUP_Zip extends DUP_Archive {
63
  DUP_Log::Info("SIZE:\t" . self::$scanReport->ARC->Size);
64
  DUP_Log::Info("STATS:\tDirs " . self::$scanReport->ARC->DirCount . " | Files " . self::$scanReport->ARC->FileCount);
65
 
66
-
67
  //ADD SQL
68
  $isSQLInZip = self::$zipArchive->addFile(self::$sqlPath, "database.sql");
69
  if ($isSQLInZip) {
@@ -75,10 +74,14 @@ class DUP_Zip extends DUP_Archive {
75
  self::$zipArchive->open(self::$zipPath, ZipArchive::CREATE);
76
 
77
  //ZIP DIRECTORIES
78
- foreach(self::$scanReport->ARC->Dirs as $dir){
79
- if (self::$zipArchive->addEmptyDir(ltrim(str_replace(self::$compressDir, '', $dir), '/'))) {
 
 
80
  self::$countDirs++;
81
- } else {
 
 
82
  //Don't warn when dirtory is the root path
83
  if (strcmp($dir, rtrim(self::$compressDir, '/')) != 0)
84
  DUP_Log::Info("WARNING: Unable to zip directory: '{$dir}'" . rtrim(self::$compressDir, '/'));
@@ -88,16 +91,22 @@ class DUP_Zip extends DUP_Archive {
88
  /* ZIP FILES: Network Flush
89
  * This allows the process to not timeout on fcgi
90
  * setups that need a response every X seconds */
91
- if (self::$networkFlush) {
92
- foreach(self::$scanReport->ARC->Files as $file) {
93
- if (self::$zipArchive->addFile($file, ltrim(str_replace(self::$compressDir, '', $file), '/'))) {
 
 
 
94
  self::$limitItems++;
95
  self::$countFiles++;
96
- } else {
 
 
97
  DUP_Log::Info("WARNING: Unable to zip file: {$file}");
98
  }
99
  //Trigger a flush to the web server after so many files have been loaded.
100
- if(self::$limitItems > DUPLICATOR_ZIP_FLUSH_TRIGGER) {
 
101
  $sumItems = (self::$countDirs + self::$countFiles);
102
  self::$zipArchive->close();
103
  self::$zipArchive->open(self::$zipPath);
@@ -107,9 +116,12 @@ class DUP_Zip extends DUP_Archive {
107
  }
108
  }
109
  //Normal
110
- } else {
111
- foreach(self::$scanReport->ARC->Files as $file) {
112
- if (self::$zipArchive->addFile($file, ltrim(str_replace(self::$compressDir, '', $file), '/'))) {
 
 
 
113
  self::$countFiles++;
114
  } else {
115
  DUP_Log::Info("WARNING: Unable to zip file: {$file}");
6
  * DUP_ZIP
7
  * Creates a zip file using the built in PHP ZipArchive class
8
  */
9
+ class DUP_Zip extends DUP_Archive
10
+ {
11
  //PRIVATE
12
  private static $compressDir;
13
  private static $countDirs = 0;
23
 
24
  /**
25
  * CREATE
26
+ * Creates the zip file and adds the SQL file to the archive */
27
+ static public function Create(DUP_Archive $archive)
28
+ {
29
+ try
30
+ {
31
  $timerAllStart = DUP_Util::GetMicrotime();
32
  $package_zip_flush = DUP_Settings::Get('package_zip_flush');
33
 
63
  DUP_Log::Info("SIZE:\t" . self::$scanReport->ARC->Size);
64
  DUP_Log::Info("STATS:\tDirs " . self::$scanReport->ARC->DirCount . " | Files " . self::$scanReport->ARC->FileCount);
65
 
 
66
  //ADD SQL
67
  $isSQLInZip = self::$zipArchive->addFile(self::$sqlPath, "database.sql");
68
  if ($isSQLInZip) {
74
  self::$zipArchive->open(self::$zipPath, ZipArchive::CREATE);
75
 
76
  //ZIP DIRECTORIES
77
+ foreach(self::$scanReport->ARC->Dirs as $dir)
78
+ {
79
+ if (is_readable($dir) && self::$zipArchive->addEmptyDir(ltrim(str_replace(self::$compressDir, '', $dir), '/')))
80
+ {
81
  self::$countDirs++;
82
+ }
83
+ else
84
+ {
85
  //Don't warn when dirtory is the root path
86
  if (strcmp($dir, rtrim(self::$compressDir, '/')) != 0)
87
  DUP_Log::Info("WARNING: Unable to zip directory: '{$dir}'" . rtrim(self::$compressDir, '/'));
91
  /* ZIP FILES: Network Flush
92
  * This allows the process to not timeout on fcgi
93
  * setups that need a response every X seconds */
94
+ if (self::$networkFlush)
95
+ {
96
+ foreach(self::$scanReport->ARC->Files as $file)
97
+ {
98
+ if (is_readable($file) && self::$zipArchive->addFile($file, ltrim(str_replace(self::$compressDir, '', $file), '/')))
99
+ {
100
  self::$limitItems++;
101
  self::$countFiles++;
102
+ }
103
+ else
104
+ {
105
  DUP_Log::Info("WARNING: Unable to zip file: {$file}");
106
  }
107
  //Trigger a flush to the web server after so many files have been loaded.
108
+ if(self::$limitItems > DUPLICATOR_ZIP_FLUSH_TRIGGER)
109
+ {
110
  $sumItems = (self::$countDirs + self::$countFiles);
111
  self::$zipArchive->close();
112
  self::$zipArchive->open(self::$zipPath);
116
  }
117
  }
118
  //Normal
119
+ }
120
+ else
121
+ {
122
+ foreach(self::$scanReport->ARC->Files as $file)
123
+ {
124
+ if (is_readable($file) && self::$zipArchive->addFile($file, ltrim(str_replace(self::$compressDir, '', $file), '/'))) {
125
  self::$countFiles++;
126
  } else {
127
  DUP_Log::Info("WARNING: Unable to zip file: {$file}");
classes/package.database.php CHANGED
@@ -258,6 +258,8 @@ class DUP_Database {
258
  $tblCreateCount = count($tables);
259
  $tblFilterCount = $tblAllCount - $tblCreateCount;
260
 
 
 
261
  DUP_Log::Info("FILTERED: [{$this->FilterTables}]");
262
  DUP_Log::Info("RESPONSE: {$output}");
263
  DUP_Log::Info("TABLES: total:{$tblAllCount} | filtered:{$tblFilterCount} | create:{$tblCreateCount}");
258
  $tblCreateCount = count($tables);
259
  $tblFilterCount = $tblAllCount - $tblCreateCount;
260
 
261
+ //DEBUG
262
+ //DUP_Log::Info("COMMAND: {$cmd}");
263
  DUP_Log::Info("FILTERED: [{$this->FilterTables}]");
264
  DUP_Log::Info("RESPONSE: {$output}");
265
  DUP_Log::Info("TABLES: total:{$tblAllCount} | filtered:{$tblFilterCount} | create:{$tblCreateCount}");
classes/package.php CHANGED
@@ -301,9 +301,7 @@ class DUP_Package {
301
  $this->VersionPHP = phpversion();
302
  $this->VersionDB = $dbversion;
303
  $this->Name = $name;
304
- $this->Hash = $this->MakeHash();// $post['package-hash'];
305
- //RSR
306
- //$this->Hash = $post['package-hash'];
307
  $this->NameHash = "{$this->Name}_{$this->Hash}";;
308
  $this->Notes = esc_html($post['package-notes']);
309
  //ARCHIVE
301
  $this->VersionPHP = phpversion();
302
  $this->VersionDB = $dbversion;
303
  $this->Name = $name;
304
+ $this->Hash = $this->MakeHash();
 
 
305
  $this->NameHash = "{$this->Name}_{$this->Hash}";;
306
  $this->Notes = esc_html($post['package-notes']);
307
  //ARCHIVE
classes/server.php CHANGED
@@ -23,7 +23,7 @@ class DUP_Server
23
  //PHP SUPPORT
24
  $safe_ini = strtolower(ini_get('safe_mode'));
25
  $dup_tests['PHP']['SAFE_MODE'] = $safe_ini != 'on' || $safe_ini != 'yes' || $safe_ini != 'true' || ini_get("safe_mode") != 1 ? 'Pass' : 'Fail';
26
- $dup_tests['PHP']['VERSION'] = version_compare(phpversion(), '5.2.9') >= 0 ? 'Pass' : 'Fail';
27
  $dup_tests['PHP']['ZIP'] = class_exists('ZipArchive') ? 'Pass' : 'Fail';
28
  $dup_tests['PHP']['FUNC_1'] = function_exists("file_get_contents") ? 'Pass' : 'Fail';
29
  $dup_tests['PHP']['FUNC_2'] = function_exists("file_put_contents") ? 'Pass' : 'Fail';
23
  //PHP SUPPORT
24
  $safe_ini = strtolower(ini_get('safe_mode'));
25
  $dup_tests['PHP']['SAFE_MODE'] = $safe_ini != 'on' || $safe_ini != 'yes' || $safe_ini != 'true' || ini_get("safe_mode") != 1 ? 'Pass' : 'Fail';
26
+ $dup_tests['PHP']['VERSION'] = DUP_Util::$on_php_529_plus ? 'Pass' : 'Fail';
27
  $dup_tests['PHP']['ZIP'] = class_exists('ZipArchive') ? 'Pass' : 'Fail';
28
  $dup_tests['PHP']['FUNC_1'] = function_exists("file_get_contents") ? 'Pass' : 'Fail';
29
  $dup_tests['PHP']['FUNC_2'] = function_exists("file_put_contents") ? 'Pass' : 'Fail';
classes/ui.php CHANGED
@@ -104,13 +104,13 @@ class DUP_UI {
104
  echo '<div class="error" id="dup-global-error-reserved-files"><p>';
105
  if ($screen->id == 'duplicator_page_duplicator-tools' && $on_active_tab)
106
  {
107
- DUP_Util::_e('Reserved Duplicator install files have been detected in the root directory. Please delete these reserved files to avoid security issues.');
108
  }
109
  else
110
  {
111
  $duplicator_nonce = wp_create_nonce('duplicator_cleanup_page');
112
- DUP_Util::_e('Reserved Duplicator install files have been detected in the root directory. Please delete these reserved files to avoid security issues.');
113
- @printf("<br/><a href='admin.php?page=duplicator-tools&tab=cleanup&_wpnonce=%s'>%s</a>", $duplicator_nonce, DUP_Util::__('Take me to the cleanup page!'));
114
  }
115
  echo "</p></div>";
116
  }
104
  echo '<div class="error" id="dup-global-error-reserved-files"><p>';
105
  if ($screen->id == 'duplicator_page_duplicator-tools' && $on_active_tab)
106
  {
107
+ _e('Reserved Duplicator install files have been detected in the root directory. Please delete these reserved files to avoid security issues.', 'duplicator');
108
  }
109
  else
110
  {
111
  $duplicator_nonce = wp_create_nonce('duplicator_cleanup_page');
112
+ _e('Reserved Duplicator install files have been detected in the root directory. Please delete these reserved files to avoid security issues.', 'duplicator');
113
+ @printf("<br/><a href='admin.php?page=duplicator-tools&tab=cleanup&_wpnonce=%s'>%s</a>", $duplicator_nonce, __('Take me to the cleanup page!', 'duplicator'));
114
  }
115
  echo "</p></div>";
116
  }
classes/utility.php CHANGED
@@ -1,7 +1,19 @@
1
  <?php
2
  if ( ! defined( 'DUPLICATOR_VERSION' ) ) exit; // Exit if accessed directly
3
 
4
- class DUP_Util {
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  /**
7
  * PHP_SAPI for fcgi requires a data flush of at least 256
@@ -12,19 +24,6 @@ class DUP_Util {
12
  @flush();
13
  }
14
 
15
- /**
16
- * Language slug
17
- */
18
- static public function _e($text)
19
- {
20
- _e($text, DUPLICATOR_LANG_SLUG);
21
- }
22
-
23
- static public function __($text)
24
- {
25
- return __($text, DUPLICATOR_LANG_SLUG);
26
- }
27
-
28
  /**
29
  * returns the snapshot url
30
  */
@@ -81,7 +80,6 @@ class DUP_Util {
81
  }
82
 
83
 
84
-
85
  /**
86
  * Runs the APC cache to pre-cache the php files
87
  * returns true if all files where cached
@@ -158,19 +156,18 @@ class DUP_Util {
158
  * List all of the files of a path
159
  * @path path to a system directory
160
  * @return array of all files in that path
 
 
 
 
161
  */
162
- static public function ListFiles($path = '.') {
 
163
  $files = array();
164
-
165
- //GLOB_BRACE is not an option on some systems
166
- //{,.}* allows for hidden files to be shown
167
- /*if (defined("GLOB_BRACE")) {
168
- $files = glob("{$path}/{,.}*", GLOB_NOSORT | GLOB_BRACE);
169
- } else {*/
170
- foreach (new DirectoryIterator($path) as $file) {
171
- $files[] = str_replace("\\", '/', $file->getPathname());
172
- }
173
- //}
174
  return $files;
175
  }
176
 
@@ -389,6 +386,8 @@ class DUP_Util {
389
  return $filepath;
390
  }
391
 
392
-
393
  }
 
 
 
394
  ?>
1
  <?php
2
  if ( ! defined( 'DUPLICATOR_VERSION' ) ) exit; // Exit if accessed directly
3
 
4
+ class DUP_Util
5
+ {
6
+ public static $on_php_529_plus;
7
+ public static $on_php_53_plus;
8
+ public static $on_php_54_plus;
9
+
10
+
11
+ public static function init()
12
+ {
13
+ self::$on_php_529_plus = version_compare(PHP_VERSION, '5.2.9') >= 0;
14
+ self::$on_php_53_plus = version_compare(PHP_VERSION, '5.3.0') >= 0;
15
+ self::$on_php_54_plus = version_compare(PHP_VERSION, '5.4.0') >= 0;
16
+ }
17
 
18
  /**
19
  * PHP_SAPI for fcgi requires a data flush of at least 256
24
  @flush();
25
  }
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  /**
28
  * returns the snapshot url
29
  */
80
  }
81
 
82
 
 
83
  /**
84
  * Runs the APC cache to pre-cache the php files
85
  * returns true if all files where cached
156
  * List all of the files of a path
157
  * @path path to a system directory
158
  * @return array of all files in that path
159
+ *
160
+ * Compatibility Notes:
161
+ * - Avoid using glob() as GLOB_BRACE is not an option on some operating systems
162
+ * - Pre PHP 5.3 DirectoryIterator will crash on unreadable files
163
  */
164
+ static public function ListFiles($path = '.')
165
+ {
166
  $files = array();
167
+ foreach (new DirectoryIterator($path) as $file)
168
+ {
169
+ $files[] = str_replace("\\", '/', $file->getPathname());
170
+ }
 
 
 
 
 
 
171
  return $files;
172
  }
173
 
386
  return $filepath;
387
  }
388
 
 
389
  }
390
+
391
+
392
+ DUP_Util::init();
393
  ?>
define.php CHANGED
@@ -3,14 +3,13 @@
3
  if (function_exists('plugin_dir_url')) {
4
 
5
 
6
- define('DUPLICATOR_VERSION', '1.1.6');
7
  define("DUPLICATOR_HOMEPAGE", "http://lifeinthegrid.com/labs/duplicator");
8
  define("DUPLICATOR_GIVELINK", "http://lifeinthegrid.com/partner");
9
  define("DUPLICATOR_HELPLINK", "http://lifeinthegrid.com/duplicator-docs");
10
  define("DUPLICATOR_CERTIFIED", "http://lifeinthegrid.com/duplicator-hosts");
11
  define('DUPLICATOR_PLUGIN_URL', plugin_dir_url(__FILE__));
12
  define('DUPLICATOR_SITE_URL', get_site_url());
13
- define('DUPLICATOR_LANG_SLUG', 'duplicator');
14
 
15
  /* Paths should ALWAYS read "/"
16
  uni: /home/path/file.txt
3
  if (function_exists('plugin_dir_url')) {
4
 
5
 
6
+ define('DUPLICATOR_VERSION', '1.1.8');
7
  define("DUPLICATOR_HOMEPAGE", "http://lifeinthegrid.com/labs/duplicator");
8
  define("DUPLICATOR_GIVELINK", "http://lifeinthegrid.com/partner");
9
  define("DUPLICATOR_HELPLINK", "http://lifeinthegrid.com/duplicator-docs");
10
  define("DUPLICATOR_CERTIFIED", "http://lifeinthegrid.com/duplicator-hosts");
11
  define('DUPLICATOR_PLUGIN_URL', plugin_dir_url(__FILE__));
12
  define('DUPLICATOR_SITE_URL', get_site_url());
 
13
 
14
  /* Paths should ALWAYS read "/"
15
  uni: /home/path/file.txt
duplicator.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Duplicator
4
  Plugin URI: http://www.lifeinthegrid.com/duplicator/
5
  Description: Create a backup of your WordPress files and database. Duplicate and move an entire site from one location to another in a few steps. Create a full snapshot of your site at any point in time.
6
- Version: 1.1.6
7
  Author: LifeInTheGrid
8
  Author URI: http://www.lifeinthegrid.com
9
  Text Domain: duplicator
@@ -84,7 +84,8 @@ if (is_admin() == true) {
84
  if (DUPLICATOR_VERSION != get_option("duplicator_version_plugin")) {
85
  duplicator_activate();
86
  }
87
- load_plugin_textdomain('duplicator', false, dirname(plugin_basename(__FILE__)) . '/lang/');
 
88
  }
89
 
90
  /* DEACTIVATION / UNINSTALL
@@ -180,26 +181,32 @@ if (is_admin() == true) {
180
 
181
  $perms = 'export';
182
  $perms = apply_filters($wpfront_caps_translator, $perms);
183
- $page_packages = add_submenu_page('duplicator', DUP_Util::__('Packages'), DUP_Util::__('Packages'), $perms, 'duplicator', 'duplicator_get_menu');
 
184
 
185
  $perms = 'manage_options';
186
  $perms = apply_filters($wpfront_caps_translator, $perms);
187
- $page_settings = add_submenu_page('duplicator', DUP_Util::__('Settings'), DUP_Util::__('Settings'), $perms, 'duplicator-settings', 'duplicator_get_menu');
 
188
 
189
  $perms = 'manage_options';
190
  $perms = apply_filters($wpfront_caps_translator, $perms);
191
- $page_tools = add_submenu_page('duplicator', DUP_Util::__('Tools'), DUP_Util::__('Tools'), $perms, 'duplicator-tools', 'duplicator_get_menu');
 
192
 
193
  $perms = 'manage_options';
194
  $perms = apply_filters($wpfront_caps_translator, $perms);
195
- $page_help = add_submenu_page('duplicator', DUP_Util::__('Help'), DUP_Util::__('Help'), $perms, 'duplicator-help', 'duplicator_get_menu');
 
196
 
197
  $perms = 'manage_options';
198
  $perms = apply_filters($wpfront_caps_translator, $perms);
199
- $page_about = add_submenu_page('duplicator', DUP_Util::__('About'), DUP_Util::__('About'), $perms, 'duplicator-about', 'duplicator_get_menu');
 
200
 
201
  $perms = 'manage_options';
202
- $go_pro_link = '<span style="color:#f18500">' . DUP_Util::__('Go Pro!') . '</span>';
 
203
  $perms = apply_filters($wpfront_caps_translator, $perms);
204
  $page_gopro = add_submenu_page('duplicator', $go_pro_link, $go_pro_link, $perms, 'duplicator-gopro', 'duplicator_get_menu');
205
 
3
  Plugin Name: Duplicator
4
  Plugin URI: http://www.lifeinthegrid.com/duplicator/
5
  Description: Create a backup of your WordPress files and database. Duplicate and move an entire site from one location to another in a few steps. Create a full snapshot of your site at any point in time.
6
+ Version: 1.1.8
7
  Author: LifeInTheGrid
8
  Author URI: http://www.lifeinthegrid.com
9
  Text Domain: duplicator
84
  if (DUPLICATOR_VERSION != get_option("duplicator_version_plugin")) {
85
  duplicator_activate();
86
  }
87
+ //load_plugin_textdomain('duplicator', false, dirname(plugin_basename(__FILE__)) . '/lang/');
88
+ load_plugin_textdomain( 'duplicator' );
89
  }
90
 
91
  /* DEACTIVATION / UNINSTALL
181
 
182
  $perms = 'export';
183
  $perms = apply_filters($wpfront_caps_translator, $perms);
184
+ $lang_txt = __('Packages', 'duplicator');
185
+ $page_packages = add_submenu_page('duplicator', $lang_txt, $lang_txt, $perms, 'duplicator', 'duplicator_get_menu');
186
 
187
  $perms = 'manage_options';
188
  $perms = apply_filters($wpfront_caps_translator, $perms);
189
+ $lang_txt = __('Settings', 'duplicator');
190
+ $page_settings = add_submenu_page('duplicator', $lang_txt, $lang_txt, $perms, 'duplicator-settings', 'duplicator_get_menu');
191
 
192
  $perms = 'manage_options';
193
  $perms = apply_filters($wpfront_caps_translator, $perms);
194
+ $lang_txt = __('Tools', 'duplicator');
195
+ $page_tools = add_submenu_page('duplicator', $lang_txt, $lang_txt, $perms, 'duplicator-tools', 'duplicator_get_menu');
196
 
197
  $perms = 'manage_options';
198
  $perms = apply_filters($wpfront_caps_translator, $perms);
199
+ $lang_txt = __('Help', 'duplicator');
200
+ $page_help = add_submenu_page('duplicator', $lang_txt, $lang_txt, $perms, 'duplicator-help', 'duplicator_get_menu');
201
 
202
  $perms = 'manage_options';
203
  $perms = apply_filters($wpfront_caps_translator, $perms);
204
+ $lang_txt = __('About', 'duplicator');
205
+ $page_about = add_submenu_page('duplicator', $lang_txt, $lang_txt, $perms, 'duplicator-about', 'duplicator_get_menu');
206
 
207
  $perms = 'manage_options';
208
+ $lang_txt = __('Go Pro!', 'duplicator');
209
+ $go_pro_link = '<span style="color:#f18500">' . $lang_txt . '</span>';
210
  $perms = apply_filters($wpfront_caps_translator, $perms);
211
  $page_gopro = add_submenu_page('duplicator', $go_pro_link, $go_pro_link, $perms, 'duplicator-gopro', 'duplicator_get_menu');
212
 
installer/build/ajax.step1.php CHANGED
@@ -40,29 +40,48 @@ error_reporting(E_ERROR);
40
  //===============================
41
  //DATABASE TEST CONNECTION
42
  //===============================
43
- if (isset($_GET['dbtest'])) {
44
-
45
  $html = "";
46
  $baseport = parse_url($_POST['dbhost'], PHP_URL_PORT);
47
  $dbConn = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], null, $_POST['dbport']);
48
  $dbErr = mysqli_connect_error();
 
49
  $dbFound = mysqli_select_db($dbConn, $_POST['dbname']);
50
  $port_view = (is_int($baseport) || substr($_POST['dbhost'], -1) == ":") ? "Port=[Set in Host]" : "Port={$_POST['dbport']}";
51
 
52
  $tstSrv = ($dbConn) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
53
  $tstDB = ($dbFound) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
54
  $html .= "<div class='dup-db-test'>";
55
- $html .= "<small style='display:block; padding:5px'>Using Connection String:<br/>Host={$_POST['dbhost']}; Database={$_POST['dbname']}; Uid={$_POST['dbuser']}; Pwd={$_POST['dbpass']}; {$port_view}</small>";
56
  $html .= "<label>Server Connected:</label> {$tstSrv} <br/>";
57
  $html .= "<label>Database Found:</label> {$tstDB} <br/>";
58
 
59
-
60
  if ($_POST['dbaction'] == 'create'){
61
  $tblcount = DupUtil::dbtable_count($dbConn, $_POST['dbname']);
62
  $html .= ($tblcount > 0)
63
- ? "<div class='dup-fail'><b>WARNING</b></div><br/>" . sprintf(ERR_DBEMPTY, $_POST['dbname'], $tblcount)
64
  : "";
65
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  $html .= "</div>";
67
  die($html);
68
  }
@@ -227,9 +246,14 @@ if (! $_POST['cache_path']) {
227
 
228
  if (! is_writable("{$root_path}/wp-config.php") )
229
  {
230
- chmod("{$root_path}/wp-config.php", 0644)
231
- ? DUPX_Log::Info('File Permission Update: wp-config.php set to 0644')
232
- : DUPX_Log::Error('Unable to update file permissions and write to wp-config.php. Please visit the online FAQ for setting file permissions and work with your hosting provider or server administrator to enable this installer.php script to write to the wp-config.php file.');
 
 
 
 
 
233
  }
234
 
235
 
40
  //===============================
41
  //DATABASE TEST CONNECTION
42
  //===============================
43
+ if (isset($_GET['dbtest']))
44
+ {
45
  $html = "";
46
  $baseport = parse_url($_POST['dbhost'], PHP_URL_PORT);
47
  $dbConn = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], null, $_POST['dbport']);
48
  $dbErr = mysqli_connect_error();
49
+
50
  $dbFound = mysqli_select_db($dbConn, $_POST['dbname']);
51
  $port_view = (is_int($baseport) || substr($_POST['dbhost'], -1) == ":") ? "Port=[Set in Host]" : "Port={$_POST['dbport']}";
52
 
53
  $tstSrv = ($dbConn) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
54
  $tstDB = ($dbFound) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
55
  $html .= "<div class='dup-db-test'>";
56
+ $html .= "<small style='display:block; padding:0 5px'>Using Connection String:<br/>Host={$_POST['dbhost']}; Database={$_POST['dbname']}; Uid={$_POST['dbuser']}; Pwd={$_POST['dbpass']}; {$port_view}</small>";
57
  $html .= "<label>Server Connected:</label> {$tstSrv} <br/>";
58
  $html .= "<label>Database Found:</label> {$tstDB} <br/>";
59
 
60
+ //WARNING: DB not empty message
61
  if ($_POST['dbaction'] == 'create'){
62
  $tblcount = DupUtil::dbtable_count($dbConn, $_POST['dbname']);
63
  $html .= ($tblcount > 0)
64
+ ? "<div class='dup-fail'><b>WARNING</b></div><br/>" . sprintf(ERR_DBEMPTY, $_POST['dbname'], $tblcount) . '<br/>'
65
  : "";
66
  }
67
+
68
+ //WARNNG: Input has utf8
69
+ $dbConnItems = array($_POST['dbhost'], $_POST['dbuser'], $_POST['dbname'],$_POST['dbpass']);
70
+ $dbUTF8_tst = false;
71
+ foreach ($dbConnItems as $value)
72
+ {
73
+ if (DupUtil::is_non_ascii($value)) {
74
+ $dbUTF8_tst = true;
75
+ break;
76
+ }
77
+ }
78
+
79
+ if (! $dbConn && $dbUTF8_tst)
80
+ {
81
+ $html .= "<div class='dup-fail'><b>WARNING</b></div><br/>UTF8 Characters were detected as part of the database connection string. If your connection fails be sure to update "
82
+ . "the MySQL my.ini configuration file setting to support UTF8 characters by enabling this option 'character_set_server=utf8' and restarting the database server.";
83
+ }
84
+
85
  $html .= "</div>";
86
  die($html);
87
  }
246
 
247
  if (! is_writable("{$root_path}/wp-config.php") )
248
  {
249
+ if (file_exists("{$root_path}/wp-config.php"))
250
+ {
251
+ chmod("{$root_path}/wp-config.php", 0644)
252
+ ? DUPX_Log::Info('File Permission Update: wp-config.php set to 0644')
253
+ : DUPX_Log::Info('WARNING: Unable to update file permissions and write to wp-config.php. Please visit the online FAQ for setting file permissions and work with your hosting provider or server administrator to enable this installer.php script to write to the wp-config.php file.');
254
+ } else {
255
+ DUPX_Log::Info('WARNING: Unable to locate wp-config.php file. Be sure the file is present in your archive.');
256
+ }
257
  }
258
 
259
 
installer/build/ajax.step2.php CHANGED
@@ -205,8 +205,8 @@ $patterns = array("/('|\")WP_HOME.*?\)\s*;/",
205
  "/('|\")PATH_CURRENT_SITE.*?\)\s*;/");
206
  $replace = array("'WP_HOME', '{$_POST['url_new']}');",
207
  "'WP_SITEURL', '{$_POST['url_new']}');",
208
- "'DOMAIN_CURRENT_SITE', {$mu_newDomainHost}');",
209
- "'PATH_CURRENT_SITE', {$mu_newUrlPath}');");
210
  $config_file = @file_get_contents('wp-config.php', true);
211
  $config_file = preg_replace($patterns, $replace, $config_file);
212
  file_put_contents('wp-config.php', $config_file);
205
  "/('|\")PATH_CURRENT_SITE.*?\)\s*;/");
206
  $replace = array("'WP_HOME', '{$_POST['url_new']}');",
207
  "'WP_SITEURL', '{$_POST['url_new']}');",
208
+ "'DOMAIN_CURRENT_SITE', '{$mu_newDomainHost}');",
209
+ "'PATH_CURRENT_SITE', '{$mu_newUrlPath}');");
210
  $config_file = @file_get_contents('wp-config.php', true);
211
  $config_file = preg_replace($patterns, $replace, $config_file);
212
  file_put_contents('wp-config.php', $config_file);
installer/build/assets/inc.css.php CHANGED
@@ -55,6 +55,8 @@
55
  div#progress-area {padding:5px; margin:150px 0 0 0px; text-align:center;}
56
  div#ajaxerr-data {padding:5px; height:350px; width:99%; border:1px solid silver; border-radius:5px; background-color:#efefef; font-size:12px; overflow-y:scroll}
57
  div.title-header {padding:2px; border-bottom:1px solid silver; font-weight:bold; margin-bottom:5px;}
 
 
58
 
59
  /*BOXES:Expandable sections */
60
  div.dup-box {padding:0px; display:block; background-color:#fff; border:1px solid #e5e5e5; box-shadow:0 1px 1px rgba(0,0,0,.04);}
@@ -65,21 +67,25 @@
65
 
66
  /* ============================
67
  STEP 1 VIEW */
 
 
 
 
 
 
68
  i#dup-step1-sys-req-msg {font-weight:normal; display:block; padding:0px 0 0 20px;}
69
  div.circle-pass, div.circle-fail {display:block;width:13px;height:13px;border-radius:50px;font-size:20px;color:#fff;line-height:100px;text-align:center;text-decoration:none;box-shadow:1px 1px 2px #000;background:#207D1D;opacity:0.95; display:inline-block;}
70
  div.circle-fail {background:#9A0D1D !important;}
71
  select#logging {font-size:11px}
72
- table.dup-step1-inputs {width:100%; border:0px;}
73
- table.dup-step1-inputs td{white-space:nowrap; padding:2px;}
74
- table.dup-step1-inputs td:first-child{width:125px}
75
  div.dup-step1-modes {padding:0px 15px 0 0px;}
76
  div#dup-step1-dbconn {margin:auto; text-align:center; margin:15px 0 20px 0px}
 
77
  input#dup-step1-dbconn-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer}
78
- input#dup-step1-dbport-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer; width:85px}
79
  div.dup-db-test label{display:inline-block; width:150px; font-weight:bold; white-space:nowrap;}
80
  div.dup-db-test small{display:block; margin:5px 0 5px 0px; font-style:italic; color:#444}
81
  div#dbconn-test-msg {font-size:12px}
82
- div#dup-step1-dbconn-status {border:1px solid silver; border-radius:3px; background-color:#f9f9f9; padding:10px; margin-top:10px; height:125px; overflow-y: scroll}
83
 
84
  /*Warning Area and Message */
85
  div#dup-step1-warning {margin-top:40px;padding:5px;font-size:11px; color:gray; line-height:12px;font-style:italic; overflow-y:scroll; height:75px; border:1px solid #dfdfdf; background-color:#fff; border-radius:3px}
@@ -107,24 +113,43 @@
107
 
108
  /* ============================
109
  STEP 3 VIEW */
110
- div.dup-step3-final-msg {height:110px; border:1px solid #CDCDCD; padding:8px;font-size:12px; border-radius:5px;box-shadow:0 4px 2px -2px #777;}
111
- div.dup-step3-final-title {color:#BE2323;}
112
- div.dup-step3-connect {font-size:12px; text-align:center; font-style:italic; position:absolute; bottom:10px; padding:10px; width:100%; margin-top:20px}
113
- table.dup-step3-report-results,
114
- table.dup-step3-report-errs {border-collapse:collapse; border:1px solid #dfdfdf; }
115
- table.dup-step3-report-errs td {text-align:center; width:33%}
116
- table.dup-step3-report-results th, table.dup-step3-report-errs th {background-color:#efefef; padding:0px; font-size:12px; padding:0px}
117
- table.dup-step3-report-results td, table.dup-step3-report-errs td {padding:0px; white-space:nowrap; border:1px solid #dfdfdf; text-align:center; font-size:11px}
118
- table.dup-step3-report-results td:first-child {text-align:left; font-weight:bold; padding-left:3px}
119
 
120
- div.dup-step3-err-title a {}
121
- div.dup-step3-err-msg {padding:8px; display:none; border:1px dashed #999; margin:10px 0 20px 0px; border-radius:5px;}
122
- div.dup-step3-err-msg div.content{padding:5px; font-size:11px; line-height:17px; max-height:125px; overflow-y:scroll; border:1px solid silver; margin:3px; }
123
- div.dup-step3-err-msg div.info{padding:2px; background-color:#FCFEC5; border:1px solid silver; border-radius:5px; font-size:11px; line-height:16px }
124
- table.dup-step3-final-step {width:100%;}
125
- table.dup-step3-final-step td {padding:5px 15px 5px 5px}
126
- table.dup-step3-final-step td:first-child {white-space:nowrap; font-weight:bold}
127
- div.dup-step3-go-back {border-bottom:1px dotted #dfdfdf; border-top:1px dotted #dfdfdf; margin:auto; text-align:center}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
 
129
  /* ============================
130
  BUTTONS */
@@ -149,17 +174,13 @@
149
  .top_goodPass{background:#ffffe0; border:1px solid #e6db55; display:block;}
150
  .top_strongPass{background:#d3edab; border:1px solid #73bc00; display:block;}
151
 
152
- /* ============================
153
- CUSTOME OVERIDE */
154
- /*Hide X button on close dialog*/
155
- div.ui-dialog-titlebar button.ui-dialog-titlebar-close {display:none !important}
156
-
157
  /*================================================
158
  PARSLEY:Overrides*/
159
- input.parsley-error, textarea.parsley-error {
160
  color:#B94A48 !important;
161
  background-color:#F2DEDE !important;
162
  border:1px solid #EED3D7 !important;
163
  }
164
- ul.parsley-error-list {margin:1px 0 0 -40px; list-style-type:none; font-size:10px}
165
  </style>
55
  div#progress-area {padding:5px; margin:150px 0 0 0px; text-align:center;}
56
  div#ajaxerr-data {padding:5px; height:350px; width:99%; border:1px solid silver; border-radius:5px; background-color:#efefef; font-size:12px; overflow-y:scroll}
57
  div.title-header {padding:2px; border-bottom:1px solid silver; font-weight:bold; margin-bottom:5px;}
58
+ div.hdr-main {font-size:18px; padding:0 0 5px 0; border-bottom:1px solid #999; font-weight:bold; margin:5px 0 10px 0;}
59
+ div.hdr-sub {font-size:14px; padding:2px 2px 2px 0; border-bottom:1px solid #dfdfdf; font-weight:bold; margin-bottom:5px;}
60
 
61
  /*BOXES:Expandable sections */
62
  div.dup-box {padding:0px; display:block; background-color:#fff; border:1px solid #e5e5e5; box-shadow:0 1px 1px rgba(0,0,0,.04);}
67
 
68
  /* ============================
69
  STEP 1 VIEW */
70
+ table.s1-opts {width:100%; border:0px;}
71
+ table.s1-opts td{white-space:nowrap; padding:3px;}
72
+ table.s1-opts td:first-child{width:125px;}
73
+ table.s1-opts-dbhost td {padding:0; margin:0}
74
+ table.s1-advopts td:first-child{width:125px; font-weight:bold}
75
+
76
  i#dup-step1-sys-req-msg {font-weight:normal; display:block; padding:0px 0 0 20px;}
77
  div.circle-pass, div.circle-fail {display:block;width:13px;height:13px;border-radius:50px;font-size:20px;color:#fff;line-height:100px;text-align:center;text-decoration:none;box-shadow:1px 1px 2px #000;background:#207D1D;opacity:0.95; display:inline-block;}
78
  div.circle-fail {background:#9A0D1D !important;}
79
  select#logging {font-size:11px}
 
 
 
80
  div.dup-step1-modes {padding:0px 15px 0 0px;}
81
  div#dup-step1-dbconn {margin:auto; text-align:center; margin:15px 0 20px 0px}
82
+
83
  input#dup-step1-dbconn-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer}
84
+ input#dup-step1-dbport-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer; width:80px}
85
  div.dup-db-test label{display:inline-block; width:150px; font-weight:bold; white-space:nowrap;}
86
  div.dup-db-test small{display:block; margin:5px 0 5px 0px; font-style:italic; color:#444}
87
  div#dbconn-test-msg {font-size:12px}
88
+ div#dup-step1-dbconn-status {border:1px solid silver; border-radius:3px; background-color:#f9f9f9; padding:2px 5px; margin-top:10px; height:125px; overflow-y: scroll}
89
 
90
  /*Warning Area and Message */
91
  div#dup-step1-warning {margin-top:40px;padding:5px;font-size:11px; color:gray; line-height:12px;font-style:italic; overflow-y:scroll; height:75px; border:1px solid #dfdfdf; background-color:#fff; border-radius:3px}
113
 
114
  /* ============================
115
  STEP 3 VIEW */
116
+ div.s3-final-title {color:#BE2323;}
117
+ div.s3-connect {font-size:12px; text-align:center; font-style:italic; position:absolute; bottom:10px; padding:10px; width:100%; margin-top:20px}
118
+ table.s3-report-results,
119
+ table.s3-report-errs {border-collapse:collapse; border:1px solid #dfdfdf; }
120
+ table.s3-report-errs td {text-align:center; width:33%}
121
+ table.s3-report-results th, table.s3-report-errs th {background-color:#efefef; padding:0px; font-size:12px; padding:0px}
122
+ table.s3-report-results td, table.s3-report-errs td {padding:0px; white-space:nowrap; border:1px solid #dfdfdf; text-align:center; font-size:11px}
123
+ table.s3-report-results td:first-child {text-align:left; font-weight:bold; padding-left:3px}
 
124
 
125
+ div.s3-err-msg {padding:8px; display:none; border:1px dashed #999; margin:10px 0 20px 0px; border-radius:5px;}
126
+ div.s3-err-msg div.content{padding:5px; font-size:11px; line-height:17px; max-height:125px; overflow-y:scroll; border:1px solid silver; margin:3px; }
127
+ div.s3-err-msg div.info-error{padding:7px; background-color:#EAA9AA; border:1px solid silver; border-radius:5px; font-size:12px; line-height:16px }
128
+ div.s3-err-msg div.info-notice{padding:7px; background-color:#FCFEC5; border:1px solid silver; border-radius:5px; font-size:12px; line-height:16px;}
129
+ table.s3-final-step {width:100%;}
130
+ table.s3-final-step td {padding:5px 15px 5px 5px}
131
+ table.s3-final-step td:first-child {white-space:nowrap; font-weight:bold}
132
+ div.s3-go-back {border-bottom:1px dotted #dfdfdf; border-top:1px dotted #dfdfdf; margin:auto; text-align:center}
133
+ div.s3-btns-msg {text-align: center; font-size:10px; color:#777; margin:5px 0 15px 0}
134
+ a.s3-final-btns {display: block; width:135; padding:5px; line-height: 1.4; background-color:#F1F1F1; border:1px solid silver;
135
+ color: #000; box-shadow: 5px 5px 5px -5px #949494; text-decoration: none; text-align: center; border-radius: 4px;
136
+ }
137
+ a.s3-final-btns:hover {background-color: #dfdfdf;}
138
+ div.s3-gopro-btn {text-align:center; font-family: 'Oswald', sans-serif; font-size:14px; margin:auto; width:200px}
139
+ div.s3-gopro-btn a {
140
+ background: #e2e2e2;
141
+ background: -moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%);
142
+ background: -webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
143
+ background: linear-gradient(to bottom, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
144
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe',GradientType=0 );
145
+ }
146
+ div.s3-gopro-btn a:hover {
147
+ background: #ebf1f6;
148
+ background: -moz-linear-gradient(top, #ebf1f6 0%, #abd3ee 50%, #89c3eb 51%, #d5ebfb 100%);
149
+ background: -webkit-linear-gradient(top, #ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);
150
+ background: linear-gradient(to bottom, #ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);
151
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 );
152
+ }
153
 
154
  /* ============================
155
  BUTTONS */
174
  .top_goodPass{background:#ffffe0; border:1px solid #e6db55; display:block;}
175
  .top_strongPass{background:#d3edab; border:1px solid #73bc00; display:block;}
176
 
177
+
 
 
 
 
178
  /*================================================
179
  PARSLEY:Overrides*/
180
+ input.parsley-error, textarea.parsley-error, select.parsley-error {
181
  color:#B94A48 !important;
182
  background-color:#F2DEDE !important;
183
  border:1px solid #EED3D7 !important;
184
  }
185
+ ul.parsley-errors-list {margin:1px 0 0 -40px; list-style-type:none; font-size:10px}
186
  </style>
installer/build/assets/inc.libs.js.php CHANGED
@@ -166,45 +166,14 @@ for(var c=0;c<f.length;c++){var e=true;for(var b=0;b<a&&(b+c+a)<f.length;b++){e=
166
 
167
 
168
  <script type="text/javascript">
169
- /* Parsley dist/parsley.min.js build version 1.2.2 http://parsleyjs.org */
170
- !function(d){var h=function(a){this.messages={defaultMessage:"This value seems to be invalid.",type:{email:"This value should be a valid email.",url:"This value should be a valid url.",urlstrict:"This value should be a valid url.",number:"This value should be a valid number.",digits:"This value should be digits.",dateIso:"This value should be a valid date (YYYY-MM-DD).",alphanum:"This value should be alphanumeric.",phone:"This value should be a valid phone number."},notnull:"This value should not be null.",
171
- notblank:"This value should not be blank.",required:"This value is required.",regexp:"This value seems to be invalid.",min:"This value should be greater than or equal to %s.",max:"This value should be lower than or equal to %s.",range:"This value should be between %s and %s.",minlength:"This value is too short. It should have %s characters or more.",maxlength:"This value is too long. It should have %s characters or less.",rangelength:"This value length is invalid. It should be between %s and %s characters long.",
172
- mincheck:"You must select at least %s choices.",maxcheck:"You must select %s choices or less.",rangecheck:"You must select between %s and %s choices.",equalto:"This value should be the same."};this.init(a)};h.prototype={constructor:h,validators:{notnull:function(){return{validate:function(a){return 0<a.length},priority:2}},notblank:function(){return{validate:function(a){return"string"===typeof a&&""!==a.replace(/^\s+/g,"").replace(/\s+$/g,"")},priority:2}},required:function(){var a=this;return{validate:function(b){if("object"===
173
- typeof b){for(var c in b)if(a.required().validate(b[c]))return!0;return!1}return a.notnull().validate(b)&&a.notblank().validate(b)},priority:512}},type:function(){return{validate:function(a,b){var c;switch(b){case "number":c=/^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/;break;case "digits":c=/^\d+$/;break;case "alphanum":c=/^\w+$/;break;case "email":c=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))){2,6}$/i;
174
- break;case "url":a=/(https?|s?ftp|git)/i.test(a)?a:"http://"+a;case "urlstrict":c=/^(https?|s?ftp|git):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i;
175
- break;case "dateIso":c=/^(\d{4})\D?(0[1-9]|1[0-2])\D?([12]\d|0[1-9]|3[01])$/;break;case "phone":c=/^((\+\d{1,3}(-| )?\(?\d\)?(-| )?\d{1,5})|(\(?\d{2,6}\)?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{1,5}){0,1}$/;break;default:return!1}return""!==a?c.test(a):!1},priority:256}},regexp:function(){return{validate:function(a,b,c){return RegExp(b,c.options.regexpFlag||"").test(a)},priority:64}},minlength:function(){return{validate:function(a,b){return a.length>=b},priority:32}},maxlength:function(){return{validate:function(a,
176
- b){return a.length<=b},priority:32}},rangelength:function(){var a=this;return{validate:function(b,c){return a.minlength().validate(b,c[0])&&a.maxlength().validate(b,c[1])},priority:32}},min:function(){return{validate:function(a,b){return Number(a)>=b},priority:32}},max:function(){return{validate:function(a,b){return Number(a)<=b},priority:32}},range:function(){var a=this;return{validate:function(b,c){return a.min().validate(b,c[0])&&a.max().validate(b,c[1])},priority:32}},equalto:function(){return{validate:function(a,
177
- b,c){c.options.validateIfUnchanged=!0;return a===d(b).val()},priority:64}},remote:function(){return{validate:function(a,b,c){var e={},f={};e[c.$element.attr("name")]=a;"undefined"!==typeof c.options.remoteDatatype&&(f={dataType:c.options.remoteDatatype});var g=function(a,b){"undefined"!==typeof b&&("undefined"!==typeof c.Validator.messages.remote&&b!==c.Validator.messages.remote)&&d(c.UI.ulError+" .remote").remove();if(!1===a)c.options.listeners.onFieldError(c.element,c.constraints,c);else!0===a&&
178
- !1===c.options.listeners.onFieldSuccess(c.element,c.constraints,c)&&(a=!1);c.updtConstraint({name:"remote",valid:a},b);c.manageValidationResult()},k=function(a){if("object"===typeof a)return a;try{a=d.parseJSON(a)}catch(b){}return a},l=function(a){return"object"===typeof a&&null!==a?"undefined"!==typeof a.error?a.error:"undefined"!==typeof a.message?a.message:null:null};d.ajax(d.extend({},{url:b,data:e,type:c.options.remoteMethod||"GET",success:function(a){a=k(a);g(1===a||!0===a||"object"===typeof a&&
179
- null!==a&&"undefined"!==typeof a.success,l(a))},error:function(a){a=k(a);g(!1,l(a))}},f));return null},priority:64}},mincheck:function(){var a=this;return{validate:function(b,c){return a.minlength().validate(b,c)},priority:32}},maxcheck:function(){var a=this;return{validate:function(b,c){return a.maxlength().validate(b,c)},priority:32}},rangecheck:function(){var a=this;return{validate:function(b,c){return a.rangelength().validate(b,c)},priority:32}}},init:function(a){var b=a.validators;a=a.messages;
180
- for(var c in b)this.addValidator(c,b[c]);for(c in a)this.addMessage(c,a[c])},formatMesssage:function(a,b){if("object"===typeof b){for(var c in b)a=this.formatMesssage(a,b[c]);return a}return"string"===typeof a?a.replace(/%s/i,b):""},addValidator:function(a,b){if("undefined"===typeof b().validate)throw Error("Validator `"+a+"` must have a validate method. See more here: http://parsleyjs.org/documentation.html#javascript-general");"undefined"===typeof b().priority&&(b={validate:b().validate,priority:32},
181
- window.console&&window.console.warn&&window.console.warn("Validator `"+a+"` should have a priority. Default priority 32 given"));this.validators[a]=b},addMessage:function(a,b,c){if("undefined"!==typeof c&&!0===c)this.messages.type[a]=b;else if("type"===a)for(var d in b)this.messages.type[d]=b[d];else this.messages[a]=b}};var n=function(a){this.init(a)};n.prototype={constructor:n,init:function(a){this.ParsleyInstance=a;this.hash=a.hash;this.options=this.ParsleyInstance.options;this.errorClassHandler=
182
- this.options.errors.classHandler(this.ParsleyInstance.element,this.ParsleyInstance.isRadioOrCheckbox)||this.ParsleyInstance.$element;this.ulErrorManagement()},ulErrorManagement:function(){this.ulError="#"+this.hash;this.ulTemplate=d(this.options.errors.errorsWrapper).attr("id",this.hash).addClass("parsley-error-list")},removeError:function(a){a=this.ulError+" ."+a;var b=this;this.options.animate?d(a).fadeOut(this.options.animateDuration,function(){d(this).remove();b.ulError&&0===d(b.ulError).children().length&&
183
- b.removeErrors()}):d(a).remove()},addError:function(a){for(var b in a){var c=d(this.options.errors.errorElem).addClass(b);d(this.ulError).append(this.options.animate?d(c).html(a[b]).hide().fadeIn(this.options.animateDuration):d(c).html(a[b]))}},removeErrors:function(){this.options.animate?d(this.ulError).fadeOut(this.options.animateDuration,function(){d(this).remove()}):d(this.ulError).remove()},reset:function(){this.ParsleyInstance.valid=null;this.removeErrors();this.ParsleyInstance.validatedOnce=
184
- !1;this.errorClassHandler.removeClass(this.options.successClass).removeClass(this.options.errorClass);for(var a in this.constraints)this.constraints[a].valid=null;return this},manageError:function(a){d(this.ulError).length||this.manageErrorContainer();if(!("required"===a.name&&null!==this.ParsleyInstance.getVal()&&0<this.ParsleyInstance.getVal().length))if(this.ParsleyInstance.isRequired&&"required"!==a.name&&(null===this.ParsleyInstance.getVal()||0===this.ParsleyInstance.getVal().length))this.removeError(a.name);
185
- else{var b=a.name,c=!1!==this.options.errorMessage?"custom-error-message":b,e={};a=!1!==this.options.errorMessage?this.options.errorMessage:"type"===a.name?this.ParsleyInstance.Validator.messages[b][a.requirements]:"undefined"===typeof this.ParsleyInstance.Validator.messages[b]?this.ParsleyInstance.Validator.messages.defaultMessage:this.ParsleyInstance.Validator.formatMesssage(this.ParsleyInstance.Validator.messages[b],a.requirements);d(this.ulError+" ."+c).length||(e[c]=a,this.addError(e))}},manageErrorContainer:function(){var a=
186
- this.options.errorContainer||this.options.errors.container(this.ParsleyInstance.element,this.ParsleyInstance.isRadioOrCheckbox),b=this.options.animate?this.ulTemplate.css("display",""):this.ulTemplate;"undefined"!==typeof a?d(a).append(b):!this.ParsleyInstance.isRadioOrCheckbox?this.ParsleyInstance.$element.after(b):this.ParsleyInstance.$element.parent().after(b)}};var m=function(a,b,c){this.options=b;if("ParsleyFieldMultiple"===c)return this;this.init(a,c||"ParsleyField")};m.prototype={constructor:m,
187
- init:function(a,b){this.type=b;this.valid=!0;this.element=a;this.validatedOnce=!1;this.$element=d(a);this.val=this.$element.val();this.Validator=new h(this.options);this.isRequired=!1;this.constraints={};"undefined"===typeof this.isRadioOrCheckbox&&(this.isRadioOrCheckbox=!1,this.hash=this.generateHash());this.UI=new n(this);this.bindHtml5Constraints();this.addConstraints();this.hasConstraints()&&this.bindValidationEvents()},setParent:function(a){this.$parent=d(a)},getParent:function(){return this.$parent},
188
- bindHtml5Constraints:function(){if(this.$element.hasClass("required")||this.$element.attr("required"))this.options.required=!0;var a=this.$element.attr("type");"undefined"!==typeof a&&RegExp(a,"i").test("email url number range tel")&&(this.options.type="tel"===a?"phone":a,RegExp(this.options.type,"i").test("number range")&&(this.options.type="number","undefined"!==typeof this.$element.attr("min")&&this.$element.attr("min").length&&(this.options.min=this.$element.attr("min")),"undefined"!==typeof this.$element.attr("max")&&
189
- this.$element.attr("max").length&&(this.options.max=this.$element.attr("max"))));"string"===typeof this.$element.attr("pattern")&&this.$element.attr("pattern").length&&(this.options.regexp=this.$element.attr("pattern"))},addConstraints:function(){for(var a in this.options){var b={};b[a]=this.options[a];this.addConstraint(b,!0,!1)}},addConstraint:function(a,b,c){for(var d in a)d=d.toLowerCase(),"function"===typeof this.Validator.validators[d]&&(this.constraints[d]={name:d,requirements:a[d],valid:null},
190
- "required"===d&&(this.isRequired=!0),this.addCustomConstraintMessage(d));"undefined"===typeof b&&this.bindValidationEvents()},updateConstraint:function(a,b){for(var c in a)this.updtConstraint({name:c,requirements:a[c],valid:null},b)},updtConstraint:function(a,b){this.constraints[a.name]=d.extend(!0,this.constraints[a.name],a);"string"===typeof b&&(this.Validator.messages[a.name]=b);this.bindValidationEvents()},removeConstraint:function(a){a=a.toLowerCase();delete this.constraints[a];"required"===
191
- a&&(this.isRequired=!1);this.hasConstraints()?this.bindValidationEvents():this.UI.reset()},addCustomConstraintMessage:function(a){var b=a+("type"===a&&"undefined"!==typeof this.options[a]?this.options[a].charAt(0).toUpperCase()+this.options[a].substr(1):"")+"Message";"undefined"!==typeof this.options[b]&&this.Validator.addMessage("type"===a?this.options[a]:a,this.options[b],"type"===a)},bindValidationEvents:function(){this.valid=null;this.$element.addClass("parsley-validated");this.$element.off("."+
192
- this.type);this.options.remote&&!/change/i.test(this.options.trigger)&&(this.options.trigger=!this.options.trigger?"change":" change");var a=(!this.options.trigger?"":this.options.trigger)+(/key/i.test(this.options.trigger)?"":" keyup");this.$element.is("select")&&(a+=/change/i.test(a)?"":" change");a=a.replace(/^\s+/g,"").replace(/\s+$/g,"");this.$element.on((a+" ").split(" ").join("."+this.type+" "),!1,d.proxy(this.eventValidation,this))},generateHash:function(){return"parsley-"+(Math.random()+
193
- "").substring(2)},getHash:function(){return this.hash},getVal:function(){return"undefined"!==typeof this.$element.domApi(this.options.namespace).value?this.$element.domApi(this.options.namespace).value:this.$element.val()},eventValidation:function(a){var b=this.getVal();if("keyup"===a.type&&!/keyup/i.test(this.options.trigger)&&!this.validatedOnce||"change"===a.type&&!/change/i.test(this.options.trigger)&&!this.validatedOnce||!this.isRadioOrCheckbox&&this.getLength(b)<this.options.validationMinlength&&
194
- !this.validatedOnce)return!0;this.validate()},getLength:function(a){return!a||!a.hasOwnProperty("length")?0:a.length},isValid:function(){return this.validate(!1)},hasConstraints:function(){for(var a in this.constraints)return!0;return!1},validate:function(a){var b=this.getVal(),c=null;if(!this.hasConstraints()||this.$element.is(this.options.excluded))return null;if(this.options.listeners.onFieldValidate(this.element,this)||""===b&&!this.isRequired)return this.UI.reset(),null;if(!this.needsValidation(b))return this.valid;
195
- c=this.applyValidators();("undefined"!==typeof a?a:this.options.showErrors)&&this.manageValidationResult();return c},needsValidation:function(a){if(!this.options.validateIfUnchanged&&null!==this.valid&&this.val===a&&this.validatedOnce)return!1;this.val=a;return this.validatedOnce=!0},applyValidators:function(){var a=null,b;for(b in this.constraints){var c=this.Validator.validators[this.constraints[b].name]().validate(this.val,this.constraints[b].requirements,this);!1===c?(a=!1,this.constraints[b].valid=
196
- a):!0===c&&(this.constraints[b].valid=!0,a=!1!==a)}if(!1===a)this.options.listeners.onFieldError(this.element,this.constraints,this);else!0===a&&!1===this.options.listeners.onFieldSuccess(this.element,this.constraints,this)&&(a=!1);return a},manageValidationResult:function(){var a=null,b=[],c;for(c in this.constraints)!1===this.constraints[c].valid?(b.push(this.constraints[c]),a=!1):!0===this.constraints[c].valid&&(this.UI.removeError(this.constraints[c].name),a=!1!==a);this.valid=a;if(!0===this.valid)return this.UI.removeErrors(),
197
- this.UI.errorClassHandler.removeClass(this.options.errorClass).addClass(this.options.successClass),!0;if(!1===this.valid){if(!0===this.options.priorityEnabled){for(var a=0,e,f=0;f<b.length;f++)e=this.Validator.validators[b[f].name]().priority,e>a&&(c=b[f],a=e);this.UI.manageError(c)}else for(f=0;f<b.length;f++)this.UI.manageError(b[f]);this.UI.errorClassHandler.removeClass(this.options.successClass).addClass(this.options.errorClass);return!1}this.UI.ulError&&0===d(this.ulError).children().length&&
198
- this.UI.removeErrors();return a},addListener:function(a){for(var b in a)this.options.listeners[b]=a[b]},destroy:function(){this.$element.removeClass("parsley-validated");this.UI.reset();this.$element.off("."+this.type).removeData(this.type)}};var p=function(a,b,c){this.initMultiple(a,b);this.inherit(a,b);this.Validator=new h(b);this.init(a,c||"ParsleyFieldMultiple")};p.prototype={constructor:p,initMultiple:function(a,b){this.element=a;this.$element=d(a);this.group=b.group||!1;this.hash=this.getName();
199
- this.siblings=this.group?'[parsley-group="'+this.group+'"]':'input[name="'+this.$element.attr("name")+'"]';this.isRadioOrCheckbox=!0;this.isRadio=this.$element.is("input[type=radio]");this.isCheckbox=this.$element.is("input[type=checkbox]");this.errorClassHandler=b.errors.classHandler(a,this.isRadioOrCheckbox)||this.$element.parent()},inherit:function(a,b){var c=new m(a,b,"ParsleyFieldMultiple"),d;for(d in c)"undefined"===typeof this[d]&&(this[d]=c[d])},getName:function(){if(this.group)return"parsley-"+
200
- this.group;if("undefined"===typeof this.$element.attr("name"))throw"A radio / checkbox input must have a parsley-group attribute or a name to be Parsley validated !";return"parsley-"+this.$element.attr("name").replace(/(:|\.|\[|\])/g,"")},getVal:function(){if(this.isRadio)return d(this.siblings+":checked").val()||"";if(this.isCheckbox){var a=[];d(this.siblings+":checked").each(function(){a.push(d(this).val())});return a}},bindValidationEvents:function(){this.valid=null;this.$element.addClass("parsley-validated");
201
- this.$element.off("."+this.type);var a=this,b=(!this.options.trigger?"":this.options.trigger)+(/change/i.test(this.options.trigger)?"":" change"),b=b.replace(/^\s+/g,"").replace(/\s+$/g,"");d(this.siblings).each(function(){d(this).on(b.split(" ").join("."+a.type+" "),!1,d.proxy(a.eventValidation,a))})}};var q=function(a,b,c){this.init(a,b,c||"parsleyForm")};q.prototype={constructor:q,init:function(a,b,c){this.type=c;this.items=[];this.$element=d(a);this.options=b;var e=this;this.$element.find(b.inputs).each(function(){e.addItem(this)});
202
- this.$element.on("submit."+this.type,!1,d.proxy(this.validate,this))},addListener:function(a){for(var b in a)if(/Field/.test(b))for(var c=0;c<this.items.length;c++)this.items[c].addListener(a);else this.options.listeners[b]=a[b]},addItem:function(a){if(d(a).is(this.options.excluded))return!1;a=d(a).parsley(this.options);a.setParent(this);this.items.push(a)},removeItem:function(a){a=d(a).parsley();for(var b=0;b<this.items.length;b++)if(this.items[b].hash===a.hash)return this.items[b].destroy(),this.items.splice(b,
203
- 1),!0;return!1},validate:function(a){var b=!0;this.focusedField=!1;for(var c=0;c<this.items.length;c++)if("undefined"!==typeof this.items[c]&&!1===this.items[c].validate()&&(b=!1,!this.focusedField&&"first"===this.options.focus||"last"===this.options.focus))this.focusedField=this.items[c].$element;if(this.focusedField&&!b)if(0<this.options.scrollDuration){var e=this,c=this.focusedField.offset().top-d(window).height()/2;d("html, body").animate({scrollTop:c},this.options.scrollDuration,function(){e.focusedField.focus()})}else this.focusedField.focus();
204
- a=this.options.listeners.onFormValidate(b,a,this);return"undefined"!==typeof a?a:b},isValid:function(){for(var a=0;a<this.items.length;a++)if(!1===this.items[a].isValid())return!1;return!0},removeErrors:function(){for(var a=0;a<this.items.length;a++)this.items[a].parsley("reset")},destroy:function(){for(var a=0;a<this.items.length;a++)this.items[a].destroy();this.$element.off("."+this.type).removeData(this.type)},reset:function(){for(var a=0;a<this.items.length;a++)this.items[a].UI.reset()}};d.fn.parsley=
205
- function(a,b){function c(b,c){var e=d(b).data(c);if(!e){switch(c){case "parsleyForm":e=new q(b,f,"parsleyForm");break;case "parsleyField":e=new m(b,f,"parsleyField");break;case "parsleyFieldMultiple":e=new p(b,f,"parsleyFieldMultiple");break;default:return}d(b).data(c,e)}return"string"===typeof a&&"function"===typeof e[a]?(e=e[a].apply(e,k),"undefined"!==typeof e?e:d(b)):e}var e=d(this).data("parsleyNamespace")?d(this).data("parsleyNamespace"):"undefined"!==typeof a&&"undefined"!==typeof a.namespace?
206
- a.namespace:d.fn.parsley.defaults.namespace,f=d.extend(!0,{},d.fn.parsley.defaults,"undefined"!==typeof window.ParsleyConfig?window.ParsleyConfig:{},a,this.domApi(e)),g=null,k=Array.prototype.slice.call(arguments,1);d(this).is("form")||"undefined"!==typeof d(this).domApi(e).bind?g=c(d(this),"parsleyForm"):d(this).is(f.inputs)&&(g=c(d(this),!d(this).is("input[type=radio], input[type=checkbox]")?"parsleyField":"parsleyFieldMultiple"));return"function"===typeof b?b():g};d(window).on("load",function(){d("[parsley-validate], [data-parsley-validate]").each(function(){d(this).parsley()})});
207
- d.fn.domApi=function(a){var b,c={},e=RegExp("^"+a,"i");if("undefined"===typeof this[0])return{};for(var f in this[0].attributes)if(b=this[0].attributes[f],null!==b&&b.specified&&e.test(b.name)){var g=c,k=r(b.name.replace(a,"")),l;b=b.value;var h=void 0;try{l=b?"true"==b||("false"==b?!1:"null"==b?null:!isNaN(h=Number(b))?h:/^[\[\{]/.test(b)?d.parseJSON(b):b):b}catch(m){l=b}g[k]=l}return c};var r=function(a){return a.replace(/-+(.)?/g,function(a,c){return c?c.toUpperCase():""})};d.fn.parsley.defaults=
208
- {namespace:"parsley-",inputs:"input, textarea, select",excluded:"input[type=hidden], input[type=file], :disabled",priorityEnabled:!0,trigger:!1,animate:!0,animateDuration:300,scrollDuration:500,focus:"first",validationMinlength:3,successClass:"parsley-success",errorClass:"parsley-error",errorMessage:!1,validators:{},showErrors:!0,messages:{},validateIfUnchanged:!1,errors:{classHandler:function(a,b){},container:function(a,b){},errorsWrapper:"<ul></ul>",errorElem:"<li></li>"},listeners:{onFieldValidate:function(a,
209
- b){return!1},onFormValidate:function(a,b,c){},onFieldError:function(a,b,c){},onFieldSuccess:function(a,b,c){}}}}(window.jQuery||window.Zepto);
210
  </script>
166
 
167
 
168
  <script type="text/javascript">
169
+ /*!
170
+ * Parsley.js
171
+ * Version 2.3.5 - built Sun, Feb 28th 2016, 6:25 am
172
+ * http://parsleyjs.org
173
+ * Guillaume Potier - <guillaume@wisembly.com>
174
+ * Marc-Andre Lafortune - <petroselinum@marc-andre.ca>
175
+ * MIT Licensed
176
+ */
177
+ function _toConsumableArray(e){if(Array.isArray(e)){for(var t=0,i=Array(e.length);t<e.length;t++)i[t]=e[t];return i}return Array.from(e)}var _slice=Array.prototype.slice;!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],t):e.parsley=t(e.jQuery)}(this,function(e){"use strict";function t(e,t){return e.parsleyAdaptedCallback||(e.parsleyAdaptedCallback=function(){var i=Array.prototype.slice.call(arguments,0);i.unshift(this),e.apply(t||A,i)}),e.parsleyAdaptedCallback}function i(e){return 0===e.lastIndexOf(D,0)?e.substr(D.length):e}var n=1,r={},s={attr:function(e,t,i){var n,r,s,a=new RegExp("^"+t,"i");if("undefined"==typeof i)i={};else for(n in i)i.hasOwnProperty(n)&&delete i[n];if("undefined"==typeof e||"undefined"==typeof e[0])return i;for(s=e[0].attributes,n=s.length;n--;)r=s[n],r&&r.specified&&a.test(r.name)&&(i[this.camelize(r.name.slice(t.length))]=this.deserializeValue(r.value));return i},checkAttr:function(e,t,i){return e.is("["+t+i+"]")},setAttr:function(e,t,i,n){e[0].setAttribute(this.dasherize(t+i),String(n))},generateID:function(){return""+n++},deserializeValue:function(t){var i;try{return t?"true"==t||("false"==t?!1:"null"==t?null:isNaN(i=Number(t))?/^[\[\{]/.test(t)?e.parseJSON(t):t:i):t}catch(n){return t}},camelize:function(e){return e.replace(/-+(.)?/g,function(e,t){return t?t.toUpperCase():""})},dasherize:function(e){return e.replace(/::/g,"/").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").replace(/([a-z\d])([A-Z])/g,"$1_$2").replace(/_/g,"-").toLowerCase()},warn:function(){var e;window.console&&"function"==typeof window.console.warn&&(e=window.console).warn.apply(e,arguments)},warnOnce:function(e){r[e]||(r[e]=!0,this.warn.apply(this,arguments))},_resetWarnings:function(){r={}},trimString:function(e){return e.replace(/^\s+|\s+$/g,"")},namespaceEvents:function(t,i){return t=this.trimString(t||"").split(/\s+/),t[0]?e.map(t,function(e){return e+"."+i}).join(" "):""},objectCreate:Object.create||function(){var e=function(){};return function(t){if(arguments.length>1)throw Error("Second argument not supported");if("object"!=typeof t)throw TypeError("Argument must be an object");e.prototype=t;var i=new e;return e.prototype=null,i}}()},a=s,o={namespace:"data-parsley-",inputs:"input, textarea, select",excluded:"input[type=button], input[type=submit], input[type=reset], input[type=hidden]",priorityEnabled:!0,multiple:null,group:null,uiEnabled:!0,validationThreshold:3,focus:"first",trigger:!1,triggerAfterFailure:"input",errorClass:"parsley-error",successClass:"parsley-success",classHandler:function(e){},errorsContainer:function(e){},errorsWrapper:'<ul class="parsley-errors-list"></ul>',errorTemplate:"<li></li>"},l=function(){};l.prototype={asyncSupport:!0,actualizeOptions:function(){return a.attr(this.$element,this.options.namespace,this.domOptions),this.parent&&this.parent.actualizeOptions&&this.parent.actualizeOptions(),this},_resetOptions:function(e){this.domOptions=a.objectCreate(this.parent.options),this.options=a.objectCreate(this.domOptions);for(var t in e)e.hasOwnProperty(t)&&(this.options[t]=e[t]);this.actualizeOptions()},_listeners:null,on:function(e,t){this._listeners=this._listeners||{};var i=this._listeners[e]=this._listeners[e]||[];return i.push(t),this},subscribe:function(t,i){e.listenTo(this,t.toLowerCase(),i)},off:function(e,t){var i=this._listeners&&this._listeners[e];if(i)if(t)for(var n=i.length;n--;)i[n]===t&&i.splice(n,1);else delete this._listeners[e];return this},unsubscribe:function(t,i){e.unsubscribeTo(this,t.toLowerCase())},trigger:function(e,t,i){t=t||this;var n,r=this._listeners&&this._listeners[e];if(r)for(var s=r.length;s--;)if(n=r[s].call(t,t,i),n===!1)return n;return this.parent?this.parent.trigger(e,t,i):!0},reset:function(){if("ParsleyForm"!==this.__class__)return this._resetUI(),this._trigger("reset");for(var e=0;e<this.fields.length;e++)this.fields[e].reset();this._trigger("reset")},destroy:function(){if(this._destroyUI(),"ParsleyForm"!==this.__class__)return this.$element.removeData("Parsley"),this.$element.removeData("ParsleyFieldMultiple"),void this._trigger("destroy");for(var e=0;e<this.fields.length;e++)this.fields[e].destroy();this.$element.removeData("Parsley"),this._trigger("destroy")},asyncIsValid:function(e,t){return a.warnOnce("asyncIsValid is deprecated; please use whenValid instead"),this.whenValid({group:e,force:t})},_findRelated:function(){return this.options.multiple?this.parent.$element.find("["+this.options.namespace+'multiple="'+this.options.multiple+'"]'):this.$element}};var u={string:function(e){return e},integer:function(e){if(isNaN(e))throw'Requirement is not an integer: "'+e+'"';return parseInt(e,10)},number:function(e){if(isNaN(e))throw'Requirement is not a number: "'+e+'"';return parseFloat(e)},reference:function(t){var i=e(t);if(0===i.length)throw'No such reference: "'+t+'"';return i},"boolean":function(e){return"false"!==e},object:function(e){return a.deserializeValue(e)},regexp:function(e){var t="";return/^\/.*\/(?:[gimy]*)$/.test(e)?(t=e.replace(/.*\/([gimy]*)$/,"$1"),e=e.replace(new RegExp("^/(.*?)/"+t+"$"),"$1")):e="^"+e+"$",new RegExp(e,t)}},d=function(e,t){var i=e.match(/^\s*\[(.*)\]\s*$/);if(!i)throw'Requirement is not an array: "'+e+'"';var n=i[1].split(",").map(a.trimString);if(n.length!==t)throw"Requirement has "+n.length+" values when "+t+" are needed";return n},h=function(e,t){var i=u[e||"string"];if(!i)throw'Unknown requirement specification: "'+e+'"';return i(t)},p=function(e,t,i){var n=null,r={};for(var s in e)if(s){var a=i(s);"string"==typeof a&&(a=h(e[s],a)),r[s]=a}else n=h(e[s],t);return[n,r]},f=function(t){e.extend(!0,this,t)};f.prototype={validate:function(t,i){if(this.fn)return arguments.length>3&&(i=[].slice.call(arguments,1,-1)),this.fn.call(this,t,i);if(e.isArray(t)){if(!this.validateMultiple)throw"Validator `"+this.name+"` does not handle multiple values";return this.validateMultiple.apply(this,arguments)}if(this.validateNumber)return isNaN(t)?!1:(arguments[0]=parseFloat(arguments[0]),this.validateNumber.apply(this,arguments));if(this.validateString)return this.validateString.apply(this,arguments);throw"Validator `"+this.name+"` only handles multiple values"},parseRequirements:function(t,i){if("string"!=typeof t)return e.isArray(t)?t:[t];var n=this.requirementType;if(e.isArray(n)){for(var r=d(t,n.length),s=0;s<r.length;s++)r[s]=h(n[s],r[s]);return r}return e.isPlainObject(n)?p(n,t,i):[h(n,t)]},requirementType:"string",priority:2};var c=function(e,t){this.__class__="ParsleyValidatorRegistry",this.locale="en",this.init(e||{},t||{})},m={email:/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i,number:/^-?(\d*\.)?\d+(e[-+]?\d+)?$/i,integer:/^-?\d+$/,digits:/^\d+$/,alphanum:/^\w+$/i,url:new RegExp("^(?:(?:https?|ftp)://)?(?:\\S+(?::\\S*)?@)?(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))(?::\\d{2,5})?(?:/\\S*)?$","i")};m.range=m.number;var g=function(e){var t=(""+e).match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);return t?Math.max(0,(t[1]?t[1].length:0)-(t[2]?+t[2]:0)):0};c.prototype={init:function(t,i){this.catalog=i,this.validators=e.extend({},this.validators);for(var n in t)this.addValidator(n,t[n].fn,t[n].priority);window.Parsley.trigger("parsley:validator:init")},setLocale:function(e){if("undefined"==typeof this.catalog[e])throw new Error(e+" is not available in the catalog");return this.locale=e,this},addCatalog:function(e,t,i){return"object"==typeof t&&(this.catalog[e]=t),!0===i?this.setLocale(e):this},addMessage:function(e,t,i){return"undefined"==typeof this.catalog[e]&&(this.catalog[e]={}),this.catalog[e][t]=i,this},addMessages:function(e,t){for(var i in t)this.addMessage(e,i,t[i]);return this},addValidator:function(e,t,i){if(this.validators[e])a.warn('Validator "'+e+'" is already defined.');else if(o.hasOwnProperty(e))return void a.warn('"'+e+'" is a restricted keyword and is not a valid validator name.');return this._setValidator.apply(this,arguments)},updateValidator:function(e,t,i){return this.validators[e]?this._setValidator(this,arguments):(a.warn('Validator "'+e+'" is not already defined.'),this.addValidator.apply(this,arguments))},removeValidator:function(e){return this.validators[e]||a.warn('Validator "'+e+'" is not defined.'),delete this.validators[e],this},_setValidator:function(e,t,i){"object"!=typeof t&&(t={fn:t,priority:i}),t.validate||(t=new f(t)),this.validators[e]=t;for(var n in t.messages||{})this.addMessage(n,e,t.messages[n]);return this},getErrorMessage:function(e){var t;if("type"===e.name){var i=this.catalog[this.locale][e.name]||{};t=i[e.requirements]}else t=this.formatMessage(this.catalog[this.locale][e.name],e.requirements);return t||this.catalog[this.locale].defaultMessage||this.catalog.en.defaultMessage},formatMessage:function(e,t){if("object"==typeof t){for(var i in t)e=this.formatMessage(e,t[i]);return e}return"string"==typeof e?e.replace(/%s/i,t):""},validators:{notblank:{validateString:function(e){return/\S/.test(e)},priority:2},required:{validateMultiple:function(e){return e.length>0},validateString:function(e){return/\S/.test(e)},priority:512},type:{validateString:function(e,t){var i=arguments.length<=2||void 0===arguments[2]?{}:arguments[2],n=i.step,r=void 0===n?"1":n,s=i.base,a=void 0===s?0:s,o=m[t];if(!o)throw new Error("validator type `"+t+"` is not supported");if(!o.test(e))return!1;if("number"===t&&!/^any$/i.test(r||"")){var l=Number(e),u=Math.max(g(r),g(a));if(g(l)>u)return!1;var d=function(e){return Math.round(e*Math.pow(10,u))};if((d(l)-d(a))%d(r)!=0)return!1}return!0},requirementType:{"":"string",step:"string",base:"number"},priority:256},pattern:{validateString:function(e,t){return t.test(e)},requirementType:"regexp",priority:64},minlength:{validateString:function(e,t){return e.length>=t},requirementType:"integer",priority:30},maxlength:{validateString:function(e,t){return e.length<=t},requirementType:"integer",priority:30},length:{validateString:function(e,t,i){return e.length>=t&&e.length<=i},requirementType:["integer","integer"],priority:30},mincheck:{validateMultiple:function(e,t){return e.length>=t},requirementType:"integer",priority:30},maxcheck:{validateMultiple:function(e,t){return e.length<=t},requirementType:"integer",priority:30},check:{validateMultiple:function(e,t,i){return e.length>=t&&e.length<=i},requirementType:["integer","integer"],priority:30},min:{validateNumber:function(e,t){return e>=t},requirementType:"number",priority:30},max:{validateNumber:function(e,t){return t>=e},requirementType:"number",priority:30},range:{validateNumber:function(e,t,i){return e>=t&&i>=e},requirementType:["number","number"],priority:30},equalto:{validateString:function(t,i){var n=e(i);return n.length?t===n.val():t===i},priority:256}}};var y={},v=function T(e,t,i){for(var n=[],r=[],s=0;s<e.length;s++){for(var a=!1,o=0;o<t.length;o++)if(e[s].assert.name===t[o].assert.name){a=!0;break}a?r.push(e[s]):n.push(e[s])}return{kept:r,added:n,removed:i?[]:T(t,e,!0).added}};y.Form={_actualizeTriggers:function(){var e=this;this.$element.on("submit.Parsley",function(t){e.onSubmitValidate(t)}),this.$element.on("click.Parsley",'input[type="submit"], button[type="submit"]',function(t){e.onSubmitButton(t)}),!1!==this.options.uiEnabled&&this.$element.attr("novalidate","")},focus:function(){if(this._focusedField=null,!0===this.validationResult||"none"===this.options.focus)return null;for(var e=0;e<this.fields.length;e++){var t=this.fields[e];if(!0!==t.validationResult&&t.validationResult.length>0&&"undefined"==typeof t.options.noFocus&&(this._focusedField=t.$element,"first"===this.options.focus))break}return null===this._focusedField?null:this._focusedField.focus()},_destroyUI:function(){this.$element.off(".Parsley")}},y.Field={_reflowUI:function(){if(this._buildUI(),this._ui){var e=v(this.validationResult,this._ui.lastValidationResult);this._ui.lastValidationResult=this.validationResult,this._manageStatusClass(),this._manageErrorsMessages(e),this._actualizeTriggers(),!e.kept.length&&!e.added.length||this._failedOnce||(this._failedOnce=!0,this._actualizeTriggers())}},getErrorsMessages:function(){if(!0===this.validationResult)return[];for(var e=[],t=0;t<this.validationResult.length;t++)e.push(this.validationResult[t].errorMessage||this._getErrorMessage(this.validationResult[t].assert));return e},addError:function(e){var t=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],i=t.message,n=t.assert,r=t.updateClass,s=void 0===r?!0:r;this._buildUI(),this._addError(e,{message:i,assert:n}),s&&this._errorClass()},updateError:function(e){var t=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],i=t.message,n=t.assert,r=t.updateClass,s=void 0===r?!0:r;this._buildUI(),this._updateError(e,{message:i,assert:n}),s&&this._errorClass()},removeError:function(e){var t=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],i=t.updateClass,n=void 0===i?!0:i;this._buildUI(),this._removeError(e),n&&this._manageStatusClass()},_manageStatusClass:function(){this.hasConstraints()&&this.needsValidation()&&!0===this.validationResult?this._successClass():this.validationResult.length>0?this._errorClass():this._resetClass()},_manageErrorsMessages:function(t){if("undefined"==typeof this.options.errorsMessagesDisabled){if("undefined"!=typeof this.options.errorMessage)return t.added.length||t.kept.length?(this._insertErrorWrapper(),0===this._ui.$errorsWrapper.find(".parsley-custom-error-message").length&&this._ui.$errorsWrapper.append(e(this.options.errorTemplate).addClass("parsley-custom-error-message")),this._ui.$errorsWrapper.addClass("filled").find(".parsley-custom-error-message").html(this.options.errorMessage)):this._ui.$errorsWrapper.removeClass("filled").find(".parsley-custom-error-message").remove();for(var i=0;i<t.removed.length;i++)this._removeError(t.removed[i].assert.name);for(i=0;i<t.added.length;i++)this._addError(t.added[i].assert.name,{message:t.added[i].errorMessage,assert:t.added[i].assert});for(i=0;i<t.kept.length;i++)this._updateError(t.kept[i].assert.name,{message:t.kept[i].errorMessage,assert:t.kept[i].assert})}},_addError:function(t,i){var n=i.message,r=i.assert;this._insertErrorWrapper(),this._ui.$errorsWrapper.addClass("filled").append(e(this.options.errorTemplate).addClass("parsley-"+t).html(n||this._getErrorMessage(r)))},_updateError:function(e,t){var i=t.message,n=t.assert;this._ui.$errorsWrapper.addClass("filled").find(".parsley-"+e).html(i||this._getErrorMessage(n))},_removeError:function(e){this._ui.$errorsWrapper.removeClass("filled").find(".parsley-"+e).remove()},_getErrorMessage:function(e){var t=e.name+"Message";return"undefined"!=typeof this.options[t]?window.Parsley.formatMessage(this.options[t],e.requirements):window.Parsley.getErrorMessage(e)},_buildUI:function(){if(!this._ui&&!1!==this.options.uiEnabled){var t={};this.$element.attr(this.options.namespace+"id",this.__id__),t.$errorClassHandler=this._manageClassHandler(),t.errorsWrapperId="parsley-id-"+(this.options.multiple?"multiple-"+this.options.multiple:this.__id__),t.$errorsWrapper=e(this.options.errorsWrapper).attr("id",t.errorsWrapperId),t.lastValidationResult=[],t.validationInformationVisible=!1,this._ui=t}},_manageClassHandler:function(){if("string"==typeof this.options.classHandler&&e(this.options.classHandler).length)return e(this.options.classHandler);var t=this.options.classHandler.call(this,this);return"undefined"!=typeof t&&t.length?t:!this.options.multiple||this.$element.is("select")?this.$element:this.$element.parent()},_insertErrorWrapper:function(){var t;if(0!==this._ui.$errorsWrapper.parent().length)return this._ui.$errorsWrapper.parent();if("string"==typeof this.options.errorsContainer){if(e(this.options.errorsContainer).length)return e(this.options.errorsContainer).append(this._ui.$errorsWrapper);a.warn("The errors container `"+this.options.errorsContainer+"` does not exist in DOM")}else"function"==typeof this.options.errorsContainer&&(t=this.options.errorsContainer.call(this,this));if("undefined"!=typeof t&&t.length)return t.append(this._ui.$errorsWrapper);var i=this.$element;return this.options.multiple&&(i=i.parent()),i.after(this._ui.$errorsWrapper)},_actualizeTriggers:function(){var e=this,t=this._findRelated();t.off(".Parsley"),this._failedOnce?t.on(a.namespaceEvents(this.options.triggerAfterFailure,"Parsley"),function(){e.validate()}):t.on(a.namespaceEvents(this.options.trigger,"Parsley"),function(t){e._eventValidate(t)})},_eventValidate:function(e){(!/key|input/.test(e.type)||this._ui&&this._ui.validationInformationVisible||!(this.getValue().length<=this.options.validationThreshold))&&this.validate()},_resetUI:function(){this._failedOnce=!1,this._actualizeTriggers(),"undefined"!=typeof this._ui&&(this._ui.$errorsWrapper.removeClass("filled").children().remove(),this._resetClass(),this._ui.lastValidationResult=[],this._ui.validationInformationVisible=!1)},_destroyUI:function(){this._resetUI(),"undefined"!=typeof this._ui&&this._ui.$errorsWrapper.remove(),delete this._ui},_successClass:function(){this._ui.validationInformationVisible=!0,this._ui.$errorClassHandler.removeClass(this.options.errorClass).addClass(this.options.successClass)},_errorClass:function(){this._ui.validationInformationVisible=!0,this._ui.$errorClassHandler.removeClass(this.options.successClass).addClass(this.options.errorClass)},_resetClass:function(){this._ui.$errorClassHandler.removeClass(this.options.successClass).removeClass(this.options.errorClass)}};var _=function(t,i,n){this.__class__="ParsleyForm",this.__id__=a.generateID(),this.$element=e(t),this.domOptions=i,this.options=n,this.parent=window.Parsley,this.fields=[],this.validationResult=null},w={pending:null,resolved:!0,rejected:!1};_.prototype={onSubmitValidate:function(e){var t=this;if(!0!==e.parsley){var i=this._$submitSource||this.$element.find('input[type="submit"], button[type="submit"]').first();if(this._$submitSource=null,this.$element.find(".parsley-synthetic-submit-button").prop("disabled",!0),!i.is("[formnovalidate]")){var n=this.whenValidate({event:e});"resolved"===n.state()&&!1!==this._trigger("submit")||(e.stopImmediatePropagation(),e.preventDefault(),"pending"===n.state()&&n.done(function(){t._submit(i)}))}}},onSubmitButton:function(t){this._$submitSource=e(t.target)},_submit:function(t){if(!1!==this._trigger("submit")){if(t){var i=this.$element.find(".parsley-synthetic-submit-button").prop("disabled",!1);0===i.length&&(i=e('<input class="parsley-synthetic-submit-button" type="hidden">').appendTo(this.$element)),i.attr({name:t.attr("name"),value:t.attr("value")})}this.$element.trigger(e.extend(e.Event("submit"),{parsley:!0}))}},validate:function(t){if(arguments.length>=1&&!e.isPlainObject(t)){a.warnOnce("Calling validate on a parsley form without passing arguments as an object is deprecated.");var i=_slice.call(arguments),n=i[0],r=i[1],s=i[2];t={group:n,force:r,event:s}}return w[this.whenValidate(t).state()]},whenValidate:function(){var t=this,i=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],n=i.group,r=i.force,s=i.event;this.submitEvent=s,s&&(this.submitEvent=e.extend({},s,{preventDefault:function(){a.warnOnce("Using `this.submitEvent.preventDefault()` is deprecated; instead, call `this.validationResult = false`"),t.validationResult=!1}})),this.validationResult=!0,this._trigger("validate"),this._refreshFields();var o=this._withoutReactualizingFormOptions(function(){return e.map(t.fields,function(e){return e.whenValidate({force:r,group:n})})}),l=function(){var i=e.Deferred();return!1===t.validationResult&&i.reject(),i.resolve().promise()};return e.when.apply(e,_toConsumableArray(o)).done(function(){t._trigger("success")}).fail(function(){t.validationResult=!1,t.focus(),t._trigger("error")}).always(function(){t._trigger("validated")}).pipe(l,l)},isValid:function(t){if(arguments.length>=1&&!e.isPlainObject(t)){a.warnOnce("Calling isValid on a parsley form without passing arguments as an object is deprecated.");var i=_slice.call(arguments),n=i[0],r=i[1];t={group:n,force:r}}return w[this.whenValid(t).state()]},whenValid:function(){var t=this,i=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],n=i.group,r=i.force;this._refreshFields();var s=this._withoutReactualizingFormOptions(function(){return e.map(t.fields,function(e){return e.whenValid({group:n,force:r})})});return e.when.apply(e,_toConsumableArray(s))},_refreshFields:function(){return this.actualizeOptions()._bindFields()},_bindFields:function(){var t=this,i=this.fields;return this.fields=[],this.fieldsMappedById={},this._withoutReactualizingFormOptions(function(){t.$element.find(t.options.inputs).not(t.options.excluded).each(function(e,i){var n=new window.Parsley.Factory(i,{},t);"ParsleyField"!==n.__class__&&"ParsleyFieldMultiple"!==n.__class__||!0===n.options.excluded||"undefined"==typeof t.fieldsMappedById[n.__class__+"-"+n.__id__]&&(t.fieldsMappedById[n.__class__+"-"+n.__id__]=n,t.fields.push(n))}),e(i).not(t.fields).each(function(e,t){t._trigger("reset")})}),this},_withoutReactualizingFormOptions:function(e){var t=this.actualizeOptions;this.actualizeOptions=function(){return this};var i=e();return this.actualizeOptions=t,i},_trigger:function(e){return this.trigger("form:"+e)}};var b=function(t,i,n,r,s){if(!/ParsleyField/.test(t.__class__))throw new Error("ParsleyField or ParsleyFieldMultiple instance expected");var a=window.Parsley._validatorRegistry.validators[i],o=new f(a);e.extend(this,{validator:o,name:i,requirements:n,priority:r||t.options[i+"Priority"]||o.priority,isDomConstraint:!0===s}),this._parseRequirements(t.options)},F=function(e){var t=e[0].toUpperCase();return t+e.slice(1)};b.prototype={validate:function(e,t){var i=this.requirementList.slice(0);return i.unshift(e),i.push(t),this.validator.validate.apply(this.validator,i)},_parseRequirements:function(e){var t=this;this.requirementList=this.validator.parseRequirements(this.requirements,function(i){return e[t.name+F(i)]})}};var C=function(t,i,n,r){this.__class__="ParsleyField",this.__id__=a.generateID(),this.$element=e(t),"undefined"!=typeof r&&(this.parent=r),this.options=n,this.domOptions=i,this.constraints=[],this.constraintsByName={},this.validationResult=[],this._bindConstraints()},$={pending:null,resolved:!0,rejected:!1};C.prototype={validate:function(t){arguments.length>=1&&!e.isPlainObject(t)&&(a.warnOnce("Calling validate on a parsley field without passing arguments as an object is deprecated."),t={options:t});var i=this.whenValidate(t);if(!i)return!0;switch(i.state()){case"pending":return null;case"resolved":return!0;case"rejected":return this.validationResult}},whenValidate:function(){var e=this,t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],i=t.force,n=t.group;return this.refreshConstraints(),!n||this._isInGroup(n)?(this.value=this.getValue(),this._trigger("validate"),this.whenValid({force:i,value:this.value,_refreshed:!0}).always(function(){e._reflowUI()}).done(function(){e._trigger("success")}).fail(function(){e._trigger("error")}).always(function(){e._trigger("validated")})):void 0},hasConstraints:function(){return 0!==this.constraints.length},needsValidation:function(e){return"undefined"==typeof e&&(e=this.getValue()),e.length||this._isRequired()||"undefined"!=typeof this.options.validateIfEmpty?!0:!1},_isInGroup:function(t){return e.isArray(this.options.group)?-1!==e.inArray(t,this.options.group):this.options.group===t},isValid:function(t){if(arguments.length>=1&&!e.isPlainObject(t)){a.warnOnce("Calling isValid on a parsley field without passing arguments as an object is deprecated.");var i=_slice.call(arguments),n=i[0],r=i[1];t={force:n,value:r}}var s=this.whenValid(t);return s?$[s.state()]:!0},whenValid:function(){var t=this,i=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],n=i.force,r=void 0===n?!1:n,s=i.value,a=i.group,o=i._refreshed;if(o||this.refreshConstraints(),!a||this._isInGroup(a)){if(this.validationResult=!0,!this.hasConstraints())return e.when();if(("undefined"==typeof s||null===s)&&(s=this.getValue()),!this.needsValidation(s)&&!0!==r)return e.when();var l=this._getGroupedConstraints(),u=[];return e.each(l,function(i,n){var r=e.when.apply(e,_toConsumableArray(e.map(n,function(e){return t._validateConstraint(s,e)})));return u.push(r),"rejected"===r.state()?!1:void 0}),e.when.apply(e,u)}},_validateConstraint:function(t,i){var n=this,r=i.validate(t,this);return!1===r&&(r=e.Deferred().reject()),e.when(r).fail(function(e){!0===n.validationResult&&(n.validationResult=[]),n.validationResult.push({assert:i,errorMessage:"string"==typeof e&&e})})},getValue:function(){var e;return e="function"==typeof this.options.value?this.options.value(this):"undefined"!=typeof this.options.value?this.options.value:this.$element.val(),"undefined"==typeof e||null===e?"":this._handleWhitespace(e)},refreshConstraints:function(){return this.actualizeOptions()._bindConstraints()},addConstraint:function(e,t,i,n){if(window.Parsley._validatorRegistry.validators[e]){var r=new b(this,e,t,i,n);"undefined"!==this.constraintsByName[r.name]&&this.removeConstraint(r.name),this.constraints.push(r),this.constraintsByName[r.name]=r}return this},removeConstraint:function(e){for(var t=0;t<this.constraints.length;t++)if(e===this.constraints[t].name){this.constraints.splice(t,1);break}return delete this.constraintsByName[e],this},updateConstraint:function(e,t,i){return this.removeConstraint(e).addConstraint(e,t,i)},_bindConstraints:function(){for(var e=[],t={},i=0;i<this.constraints.length;i++)!1===this.constraints[i].isDomConstraint&&(e.push(this.constraints[i]),t[this.constraints[i].name]=this.constraints[i]);this.constraints=e,this.constraintsByName=t;for(var n in this.options)this.addConstraint(n,this.options[n],void 0,!0);return this._bindHtml5Constraints()},_bindHtml5Constraints:function(){(this.$element.hasClass("required")||this.$element.attr("required"))&&this.addConstraint("required",!0,void 0,!0),"string"==typeof this.$element.attr("pattern")&&this.addConstraint("pattern",this.$element.attr("pattern"),void 0,!0),"undefined"!=typeof this.$element.attr("min")&&"undefined"!=typeof this.$element.attr("max")?this.addConstraint("range",[this.$element.attr("min"),this.$element.attr("max")],void 0,!0):"undefined"!=typeof this.$element.attr("min")?this.addConstraint("min",this.$element.attr("min"),void 0,!0):"undefined"!=typeof this.$element.attr("max")&&this.addConstraint("max",this.$element.attr("max"),void 0,!0),"undefined"!=typeof this.$element.attr("minlength")&&"undefined"!=typeof this.$element.attr("maxlength")?this.addConstraint("length",[this.$element.attr("minlength"),this.$element.attr("maxlength")],void 0,!0):"undefined"!=typeof this.$element.attr("minlength")?this.addConstraint("minlength",this.$element.attr("minlength"),void 0,!0):"undefined"!=typeof this.$element.attr("maxlength")&&this.addConstraint("maxlength",this.$element.attr("maxlength"),void 0,!0);var e=this.$element.attr("type");return"undefined"==typeof e?this:"number"===e?this.addConstraint("type",["number",{step:this.$element.attr("step"),base:this.$element.attr("min")||this.$element.attr("value")}],void 0,!0):/^(email|url|range)$/i.test(e)?this.addConstraint("type",e,void 0,!0):this},_isRequired:function(){return"undefined"==typeof this.constraintsByName.required?!1:!1!==this.constraintsByName.required.requirements},_trigger:function(e){return this.trigger("field:"+e)},_handleWhitespace:function(e){return!0===this.options.trimValue&&a.warnOnce('data-parsley-trim-value="true" is deprecated, please use data-parsley-whitespace="trim"'),"squish"===this.options.whitespace&&(e=e.replace(/\s{2,}/g," ")),("trim"===this.options.whitespace||"squish"===this.options.whitespace||!0===this.options.trimValue)&&(e=a.trimString(e)),e},_getGroupedConstraints:function(){if(!1===this.options.priorityEnabled)return[this.constraints];for(var e=[],t={},i=0;i<this.constraints.length;i++){var n=this.constraints[i].priority;t[n]||e.push(t[n]=[]),t[n].push(this.constraints[i])}return e.sort(function(e,t){return t[0].priority-e[0].priority}),e}};var x=C,P=function(){this.__class__="ParsleyFieldMultiple"};P.prototype={addElement:function(e){return this.$elements.push(e),this},refreshConstraints:function(){var t;if(this.constraints=[],this.$element.is("select"))return this.actualizeOptions()._bindConstraints(),this;for(var i=0;i<this.$elements.length;i++)if(e("html").has(this.$elements[i]).length){t=this.$elements[i].data("ParsleyFieldMultiple").refreshConstraints().constraints;for(var n=0;n<t.length;n++)this.addConstraint(t[n].name,t[n].requirements,t[n].priority,t[n].isDomConstraint)}else this.$elements.splice(i,1);return this},getValue:function(){if("function"==typeof this.options.value)value=this.options.value(this);else if("undefined"!=typeof this.options.value)return this.options.value;if(this.$element.is("input[type=radio]"))return this._findRelated().filter(":checked").val()||"";if(this.$element.is("input[type=checkbox]")){var t=[];return this._findRelated().filter(":checked").each(function(){t.push(e(this).val())}),t}return this.$element.is("select")&&null===this.$element.val()?[]:this.$element.val()},_init:function(){return this.$elements=[this.$element],this}};var E=function(t,i,n){this.$element=e(t);var r=this.$element.data("Parsley");if(r)return"undefined"!=typeof n&&r.parent===window.Parsley&&(r.parent=n,r._resetOptions(r.options)),r;if(!this.$element.length)throw new Error("You must bind Parsley on an existing element.");if("undefined"!=typeof n&&"ParsleyForm"!==n.__class__)throw new Error("Parent instance must be a ParsleyForm instance");return this.parent=n||window.Parsley,this.init(i)};E.prototype={init:function(e){return this.__class__="Parsley",this.__version__="2.3.5",this.__id__=a.generateID(),this._resetOptions(e),this.$element.is("form")||a.checkAttr(this.$element,this.options.namespace,"validate")&&!this.$element.is(this.options.inputs)?this.bind("parsleyForm"):this.isMultiple()?this.handleMultiple():this.bind("parsleyField")},isMultiple:function(){return this.$element.is("input[type=radio], input[type=checkbox]")||this.$element.is("select")&&"undefined"!=typeof this.$element.attr("multiple")},handleMultiple:function(){var t,i,n=this;if(this.options.multiple||("undefined"!=typeof this.$element.attr("name")&&this.$element.attr("name").length?this.options.multiple=t=this.$element.attr("name"):"undefined"!=typeof this.$element.attr("id")&&this.$element.attr("id").length&&(this.options.multiple=this.$element.attr("id"))),this.$element.is("select")&&"undefined"!=typeof this.$element.attr("multiple"))return this.options.multiple=this.options.multiple||this.__id__,this.bind("parsleyFieldMultiple");if(!this.options.multiple)return a.warn("To be bound by Parsley, a radio, a checkbox and a multiple select input must have either a name or a multiple option.",this.$element),this;this.options.multiple=this.options.multiple.replace(/(:|\.|\[|\]|\{|\}|\$)/g,""),
178
+ "undefined"!=typeof t&&e('input[name="'+t+'"]').each(function(t,i){e(i).is("input[type=radio], input[type=checkbox]")&&e(i).attr(n.options.namespace+"multiple",n.options.multiple)});for(var r=this._findRelated(),s=0;s<r.length;s++)if(i=e(r.get(s)).data("Parsley"),"undefined"!=typeof i){this.$element.data("ParsleyFieldMultiple")||i.addElement(this.$element);break}return this.bind("parsleyField",!0),i||this.bind("parsleyFieldMultiple")},bind:function(t,i){var n;switch(t){case"parsleyForm":n=e.extend(new _(this.$element,this.domOptions,this.options),window.ParsleyExtend)._bindFields();break;case"parsleyField":n=e.extend(new x(this.$element,this.domOptions,this.options,this.parent),window.ParsleyExtend);break;case"parsleyFieldMultiple":n=e.extend(new x(this.$element,this.domOptions,this.options,this.parent),new P,window.ParsleyExtend)._init();break;default:throw new Error(t+"is not a supported Parsley type")}return this.options.multiple&&a.setAttr(this.$element,this.options.namespace,"multiple",this.options.multiple),"undefined"!=typeof i?(this.$element.data("ParsleyFieldMultiple",n),n):(this.$element.data("Parsley",n),n._actualizeTriggers(),n._trigger("init"),n)}};var V=e.fn.jquery.split(".");if(parseInt(V[0])<=1&&parseInt(V[1])<8)throw"The loaded version of jQuery is too old. Please upgrade to 1.8.x or better.";V.forEach||a.warn("Parsley requires ES5 to run properly. Please include https://github.com/es-shims/es5-shim");var M=e.extend(new l,{$element:e(document),actualizeOptions:null,_resetOptions:null,Factory:E,version:"2.3.5"});e.extend(x.prototype,y.Field,l.prototype),e.extend(_.prototype,y.Form,l.prototype),e.extend(E.prototype,l.prototype),e.fn.parsley=e.fn.psly=function(t){if(this.length>1){var i=[];return this.each(function(){i.push(e(this).parsley(t))}),i}return e(this).length?new E(this,t):void a.warn("You must bind Parsley on an existing element.")},"undefined"==typeof window.ParsleyExtend&&(window.ParsleyExtend={}),M.options=e.extend(a.objectCreate(o),window.ParsleyConfig),window.ParsleyConfig=M.options,window.Parsley=window.psly=M,window.ParsleyUtils=a;var O=window.Parsley._validatorRegistry=new c(window.ParsleyConfig.validators,window.ParsleyConfig.i18n);window.ParsleyValidator={},e.each("setLocale addCatalog addMessage addMessages getErrorMessage formatMessage addValidator updateValidator removeValidator".split(" "),function(t,i){window.Parsley[i]=e.proxy(O,i),window.ParsleyValidator[i]=function(){var e;return a.warnOnce("Accessing the method '"+i+"' through ParsleyValidator is deprecated. Simply call 'window.Parsley."+i+"(...)'"),(e=window.Parsley)[i].apply(e,arguments)}}),window.Parsley.UI=y,window.ParsleyUI={removeError:function(e,t,i){var n=!0!==i;return a.warnOnce("Accessing ParsleyUI is deprecated. Call 'removeError' on the instance directly. Please comment in issue 1073 as to your need to call this method."),e.removeError(t,{updateClass:n})},getErrorsMessages:function(e){return a.warnOnce("Accessing ParsleyUI is deprecated. Call 'getErrorsMessages' on the instance directly."),e.getErrorsMessages()}},e.each("addError updateError".split(" "),function(e,t){window.ParsleyUI[t]=function(e,i,n,r,s){var o=!0!==s;return a.warnOnce("Accessing ParsleyUI is deprecated. Call '"+t+"' on the instance directly. Please comment in issue 1073 as to your need to call this method."),e[t](i,{message:n,assert:r,updateClass:o})}}),/firefox/i.test(navigator.userAgent)&&e(document).on("change","select",function(t){e(t.target).trigger("input")}),!1!==window.ParsleyConfig.autoBind&&e(function(){e("[data-parsley-validate]").length&&e("[data-parsley-validate]").parsley()});var A=e({}),R=function(){a.warnOnce("Parsley's pubsub module is deprecated; use the 'on' and 'off' methods on parsley instances or window.Parsley")},D="parsley:";e.listen=function(e,n){var r;if(R(),"object"==typeof arguments[1]&&"function"==typeof arguments[2]&&(r=arguments[1],n=arguments[2]),"function"!=typeof n)throw new Error("Wrong parameters");window.Parsley.on(i(e),t(n,r))},e.listenTo=function(e,n,r){if(R(),!(e instanceof x||e instanceof _))throw new Error("Must give Parsley instance");if("string"!=typeof n||"function"!=typeof r)throw new Error("Wrong parameters");e.on(i(n),t(r))},e.unsubscribe=function(e,t){if(R(),"string"!=typeof e||"function"!=typeof t)throw new Error("Wrong arguments");window.Parsley.off(i(e),t.parsleyAdaptedCallback)},e.unsubscribeTo=function(e,t){if(R(),!(e instanceof x||e instanceof _))throw new Error("Must give Parsley instance");e.off(i(t))},e.unsubscribeAll=function(t){R(),window.Parsley.off(i(t)),e("form,input,textarea,select").each(function(){var n=e(this).data("Parsley");n&&n.off(i(t))})},e.emit=function(e,t){var n;R();var r=t instanceof x||t instanceof _,s=Array.prototype.slice.call(arguments,r?2:1);s.unshift(i(e)),r||(t=window.Parsley),(n=t).trigger.apply(n,_toConsumableArray(s))};e.extend(!0,M,{asyncValidators:{"default":{fn:function(e){return e.status>=200&&e.status<300},url:!1},reverse:{fn:function(e){return e.status<200||e.status>=300},url:!1}},addAsyncValidator:function(e,t,i,n){return M.asyncValidators[e]={fn:t,url:i||!1,options:n||{}},this}}),M.addValidator("remote",{requirementType:{"":"string",validator:"string",reverse:"boolean",options:"object"},validateString:function(t,i,n,r){var s,a,o={},l=n.validator||(!0===n.reverse?"reverse":"default");if("undefined"==typeof M.asyncValidators[l])throw new Error("Calling an undefined async validator: `"+l+"`");i=M.asyncValidators[l].url||i,i.indexOf("{value}")>-1?i=i.replace("{value}",encodeURIComponent(t)):o[r.$element.attr("name")||r.$element.attr("id")]=t;var u=e.extend(!0,n.options||{},M.asyncValidators[l].options);s=e.extend(!0,{},{url:i,data:o,type:"GET"},u),r.trigger("field:ajaxoptions",r,s),a=e.param(s),"undefined"==typeof M._remoteCache&&(M._remoteCache={});var d=M._remoteCache[a]=M._remoteCache[a]||e.ajax(s),h=function(){var t=M.asyncValidators[l].fn.call(r,d,i,n);return t||(t=e.Deferred().reject()),e.when(t)};return d.then(h,h)},priority:-1}),M.on("form:submit",function(){M._remoteCache={}}),window.ParsleyExtend.addAsyncValidator=function(){return ParsleyUtils.warnOnce("Accessing the method `addAsyncValidator` through an instance is deprecated. Simply call `Parsley.addAsyncValidator(...)`"),M.addAsyncValidator.apply(M,arguments)},M.addMessages("en",{defaultMessage:"This value seems to be invalid.",type:{email:"This value should be a valid email.",url:"This value should be a valid url.",number:"This value should be a valid number.",integer:"This value should be a valid integer.",digits:"This value should be digits.",alphanum:"This value should be alphanumeric."},notblank:"This value should not be blank.",required:"This value is required.",pattern:"This value seems to be invalid.",min:"This value should be greater than or equal to %s.",max:"This value should be lower than or equal to %s.",range:"This value should be between %s and %s.",minlength:"This value is too short. It should have %s characters or more.",maxlength:"This value is too long. It should have %s characters or fewer.",length:"This value length is invalid. It should be between %s and %s characters long.",mincheck:"You must select at least %s choices.",maxcheck:"You must select %s choices or fewer.",check:"You must select between %s and %s choices.",equalto:"This value should be the same."}),M.setLocale("en");var q=M;return q});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  </script>
installer/build/classes/class.serializer.php CHANGED
@@ -9,7 +9,7 @@ if (! defined('DUPLICATOR_INIT')) {
9
  }
10
 
11
  /** * *****************************************************
12
- * CLASS::DUPDBTEXTSWAP
13
  * Walks every table in db that then walks every row and column replacing searches with replaces
14
  * large tables are split into 50k row blocks to save on memory. */
15
  class DUPX_Serializer {
@@ -44,21 +44,25 @@ class DUPX_Serializer {
44
  }
45
  }
46
 
47
- /**
48
- * LOG STATS
49
- */
50
- static public function log_stats($report) {
51
- if (!empty($report) && is_array($report)) {
52
  $stats = "--------------------------------------\n";
53
- $stats .= sprintf("SEARCH1:\t'%s' \nREPLACE1:\t'%s' \n", $_POST['url_old'], $_POST['url_new']);
54
- $stats .= sprintf("SEARCH2:\t'%s' \nREPLACE2:\t'%s' \n", $_POST['path_old'], $_POST['path_new']);
55
- $stats .= sprintf("SCANNED:\tTables:%d | Rows:%d | Cells:%d \n", $report['scan_tables'], $report['scan_rows'], $report['scan_cells']);
56
- $stats .= sprintf("UPDATED:\tTables:%d | Rows:%d |Cells:%d \n", $report['updt_tables'], $report['updt_rows'], $report['updt_cells']);
 
 
 
 
57
  $stats .= sprintf("ERRORS:\t\t%d \nRUNTIME:\t%f sec", $report['err_all'], $report['time']);
58
  DUPX_Log::Info($stats);
59
  }
60
  }
61
-
62
  /**
63
  * Returns only the text type columns of a table ignoring all numeric types
64
  */
@@ -178,8 +182,9 @@ class DUPX_Serializer {
178
  $report['errsql'][] = mysqli_error($conn);
179
 
180
  $scan_count = ($row_count < $end) ? $row_count : $end;
181
- DUPX_Log::Info("\tScan => {$start} of {$scan_count}", 2);
182
- //DEBUG ONLY:
 
183
  //DUPX_Log::Info("\t{$sql}", 3);
184
 
185
  //Loops every row
@@ -201,6 +206,7 @@ class DUPX_Serializer {
201
  $report['scan_cells']++;
202
  $edited_data = $data_to_fix = $row[$column];
203
  $base64coverted = false;
 
204
 
205
  //Only replacing string values
206
  if (!empty($row[$column]) && !is_numeric($row[$column])) {
@@ -213,6 +219,18 @@ class DUPX_Serializer {
213
  $base64coverted = true;
214
  }
215
  }
 
 
 
 
 
 
 
 
 
 
 
 
216
 
217
  //Replace logic - level 1: simple check on basic serilized strings
218
  foreach ($list as $item) {
@@ -250,7 +268,7 @@ class DUPX_Serializer {
250
  $sql = "UPDATE `{$table}` SET " . implode(', ', $upd_sql) . ' WHERE ' . implode(' AND ', array_filter($where_sql));
251
  $result = mysqli_query($conn, $sql) or $report['errsql'][] = mysqli_error($conn);
252
  //DEBUG ONLY:
253
- DUPX_Log::Info("\t{$sql}", 3);
254
  if ($result) {
255
  if ($serial_err > 0) {
256
  $report['errser'][] = "SELECT " . implode(', ', $upd_col) . " FROM `{$table}` WHERE " . implode(' AND ', array_filter($where_sql)) . ';';
@@ -348,10 +366,10 @@ class DUPX_Serializer {
348
  $serial_string = preg_match('/^s:[0-9]+:"(.*$)/s', trim($data), $matches);
349
  //Nested serial string
350
  if ($serial_string) {
351
- $inner = preg_replace_callback($regex, 'DupDBTextSwap::fix_string_callback', rtrim($matches[1], '";'));
352
  $serialized_fixed = 's:' . strlen($inner) . ':"' . $inner . '";';
353
  } else {
354
- $serialized_fixed = preg_replace_callback($regex, 'DupDBTextSwap::fix_string_callback', $data);
355
  }
356
 
357
  if (self::is_serialized($serialized_fixed)) {
9
  }
10
 
11
  /** * *****************************************************
12
+ * CLASS::DUPX_Serializer
13
  * Walks every table in db that then walks every row and column replacing searches with replaces
14
  * large tables are split into 50k row blocks to save on memory. */
15
  class DUPX_Serializer {
44
  }
45
  }
46
 
47
+
48
+ public static function log_stats($report)
49
+ {
50
+ if (!empty($report) && is_array($report))
51
+ {
52
  $stats = "--------------------------------------\n";
53
+ $srchnum = 0;
54
+ foreach ($GLOBALS['REPLACE_LIST'] as $item)
55
+ {
56
+ $srchnum++;
57
+ $stats .= sprintf("Search{$srchnum}:\t'%s' \nChange{$srchnum}:\t'%s' \n", $item['search'], $item['replace']);
58
+ }
59
+ $stats .= sprintf("SCANNED:\tTables:%d \t|\t Rows:%d \t|\t Cells:%d \n", $report['scan_tables'], $report['scan_rows'], $report['scan_cells']);
60
+ $stats .= sprintf("UPDATED:\tTables:%d \t|\t Rows:%d \t|\t Cells:%d \n", $report['updt_tables'], $report['updt_rows'], $report['updt_cells']);
61
  $stats .= sprintf("ERRORS:\t\t%d \nRUNTIME:\t%f sec", $report['err_all'], $report['time']);
62
  DUPX_Log::Info($stats);
63
  }
64
  }
65
+
66
  /**
67
  * Returns only the text type columns of a table ignoring all numeric types
68
  */
182
  $report['errsql'][] = mysqli_error($conn);
183
 
184
  $scan_count = ($row_count < $end) ? $row_count : $end;
185
+
186
+ //CUSTOM DEBUG ONLY:
187
+ //DUPX_Log::Info("\tScan => {$start} of {$scan_count}", 3);
188
  //DUPX_Log::Info("\t{$sql}", 3);
189
 
190
  //Loops every row
206
  $report['scan_cells']++;
207
  $edited_data = $data_to_fix = $row[$column];
208
  $base64coverted = false;
209
+ $txt_found = false;
210
 
211
  //Only replacing string values
212
  if (!empty($row[$column]) && !is_numeric($row[$column])) {
219
  $base64coverted = true;
220
  }
221
  }
222
+
223
+ //Skip table cell if match not found
224
+ foreach ($list as $item)
225
+ {
226
+ if (strpos($edited_data, $item['search']) !== false) {
227
+ $txt_found = true;
228
+ break;
229
+ }
230
+ }
231
+ if (! $txt_found) {
232
+ continue;
233
+ }
234
 
235
  //Replace logic - level 1: simple check on basic serilized strings
236
  foreach ($list as $item) {
268
  $sql = "UPDATE `{$table}` SET " . implode(', ', $upd_sql) . ' WHERE ' . implode(' AND ', array_filter($where_sql));
269
  $result = mysqli_query($conn, $sql) or $report['errsql'][] = mysqli_error($conn);
270
  //DEBUG ONLY:
271
+ DUPX_Log::Info("\t{$sql}\n\n", 3);
272
  if ($result) {
273
  if ($serial_err > 0) {
274
  $report['errser'][] = "SELECT " . implode(', ', $upd_col) . " FROM `{$table}` WHERE " . implode(' AND ', array_filter($where_sql)) . ';';
366
  $serial_string = preg_match('/^s:[0-9]+:"(.*$)/s', trim($data), $matches);
367
  //Nested serial string
368
  if ($serial_string) {
369
+ $inner = preg_replace_callback($regex, 'DUPX_Serializer::fix_string_callback', rtrim($matches[1], '";'));
370
  $serialized_fixed = 's:' . strlen($inner) . ':"' . $inner . '";';
371
  } else {
372
+ $serialized_fixed = preg_replace_callback($regex, 'DUPX_Serializer::fix_string_callback', $data);
373
  }
374
 
375
  if (self::is_serialized($serialized_fixed)) {
installer/build/classes/class.utils.php CHANGED
@@ -328,18 +328,26 @@ class DupUtil
328
 
329
  //FALL BACK: Windows XP has bug with glob,
330
  //add secondary check for PHP lameness
331
- $dh = opendir('.');
332
- while (false !== ($name = readdir($dh))) {
333
- $ext = substr($name, strrpos($name, '.') + 1);
334
- if(in_array($ext, array("zip"))) {
335
- $files[] = $name;
 
 
336
  }
 
337
  }
338
- closedir($dh);
339
 
340
  return $files;
341
  }
342
 
343
-
 
 
 
 
 
 
344
  }
345
  ?>
328
 
329
  //FALL BACK: Windows XP has bug with glob,
330
  //add secondary check for PHP lameness
331
+ if ($dh = opendir('.'))
332
+ {
333
+ while (false !== ($name = readdir($dh))) {
334
+ $ext = substr($name, strrpos($name, '.') + 1);
335
+ if(in_array($ext, array("zip"))) {
336
+ $files[] = $name;
337
+ }
338
  }
339
+ closedir($dh);
340
  }
 
341
 
342
  return $files;
343
  }
344
 
345
+ /**
346
+ * Does a string have non ascii characters
347
+ */
348
+ public static function is_non_ascii($string)
349
+ {
350
+ return preg_match('/[^\x20-\x7f]/', $string);
351
+ }
352
  }
353
  ?>
installer/build/view.step1.php CHANGED
@@ -43,11 +43,12 @@
43
  * Timeout (10000000 = 166 minutes) */
44
  Duplicator.runDeployment = function() {
45
 
46
- var $form = $('#dup-step1-input-form');
47
- $form.parsley('validate');
48
- if (! $form.parsley('isValid')) {
49
- return;
50
- }
 
51
 
52
  var msg = "Continue installation with the following settings?\n\n";
53
  msg += "Server: " + $("#dbhost").val() + "\nDatabase: " + $("#dbname").val() + "\n\n";
@@ -77,7 +78,7 @@
77
  $("#ajax-dbname").val($("#dbname").val());
78
  $("#ajax-dbcharset").val($("#dbcharset").val());
79
  $("#ajax-dbcollate").val($("#dbcollate").val());
80
- $("#ajax-logging").val($("#logging").val());
81
  $("#ajax-json").val(escape(JSON.stringify(data)));
82
  setTimeout(function() {$('#dup-step1-result-form').submit();}, 1000);
83
  $('#progress-area').fadeOut(700);
@@ -154,22 +155,20 @@
154
 
155
  <!-- =========================================
156
  VIEW: STEP 1- INPUT -->
157
- <form id='dup-step1-input-form' method="post" class="content-form" parsley-validate>
158
  <input type="hidden" name="action_ajax" value="1" />
159
  <input type="hidden" name="action_step" value="1" />
160
  <input type="hidden" name="package_name" value="<?php echo $zip_name ?>" />
161
 
162
- <div class="dup-logfile-link">
163
  <select name="logging" id="logging">
164
  <option value="1" selected="selected">Light Logging</option>
165
  <option value="2">Detailed Logging</option>
166
- <!--option value="3">Debug Logging</option-->
167
  </select>
 
 
 
168
  </div>
169
- <h3 style="margin-bottom:5px">
170
- Step 1: Files &amp; Database
171
- </h3>
172
- <hr size="1" />
173
 
174
  <!-- CHECKS: FAIL -->
175
  <?php if ( $total_req == 'Fail') : ?>
@@ -213,7 +212,7 @@ VIEW: STEP 1- INPUT -->
213
  <div class="title-header">
214
  MySQL Database
215
  </div>
216
- <table class="dup-step1-inputs">
217
  <tr>
218
  <td>Action</td>
219
  <td>
@@ -230,18 +229,24 @@ VIEW: STEP 1- INPUT -->
230
  <tr>
231
  <td>Host</td>
232
  <td>
233
- <input type="text" name="dbhost" id="dbhost" parsley-required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBHOST']); ?>" placeholder="localhost" style="width:410px" />
234
- <input id="dup-step1-dbport-btn" type="button" onclick="Duplicator.togglePort()" style="" value="Port: <?php echo htmlspecialchars($GLOBALS['FW_DBPORT']); ?>" />
235
- <input name="dbport" id="dbport" type="text" style="width:80px; display:none" value="<?php echo htmlspecialchars($GLOBALS['FW_DBPORT']); ?>" />
 
 
 
 
 
 
236
  </td>
237
  </tr>
238
  <tr>
239
  <td>Name</td>
240
- <td><input type="text" name="dbname" id="dbname" parsley-required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBNAME']); ?>" placeholder="new or existing database name" /></td>
241
  </tr>
242
  <tr>
243
  <td>User</td>
244
- <td><input type="text" name="dbuser" id="dbuser" parsley-required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBUSER']); ?>" placeholder="valid database username" /></td>
245
  </tr>
246
  <tr>
247
  <td>Password</td>
@@ -275,17 +280,43 @@ VIEW: STEP 1- INPUT -->
275
 
276
  <a href="javascript:void(0)" onclick="$('#dup-step1-adv-opts').toggle(250)"><b>Advanced Options...</b></a>
277
  <div id='dup-step1-adv-opts' style="display:none">
278
- <table class="dup-step1-inputs">
279
- <tr><td colspan="2"><input type="checkbox" name="zip_manual" id="zip_manual" value="1" /> <label for="zip_manual">Manual package extraction</label></td></tr>
280
- <tr><td colspan="2"><input type="checkbox" name="ssl_admin" id="ssl_admin" <?php echo ($GLOBALS['FW_SSL_ADMIN']) ? "checked='checked'" : ""; ?> /> <label for="ssl_admin">Enforce SSL on Admin</label></td></tr>
281
- <tr><td colspan="2"><input type="checkbox" name="ssl_login" id="ssl_login" <?php echo ($GLOBALS['FW_SSL_LOGIN']) ? "checked='checked'" : ""; ?> /> <label for="ssl_login">Enforce SSL on Login</label></td></tr>
282
- <tr><td colspan="2"><input type="checkbox" name="cache_wp" id="cache_wp" <?php echo ($GLOBALS['FW_CACHE_WP']) ? "checked='checked'" : ""; ?> /> <label for="cache_wp">Keep Cache Enabled</label></td></tr>
283
- <tr><td colspan="2"><input type="checkbox" name="cache_path" id="cache_path" <?php echo ($GLOBALS['FW_CACHE_PATH']) ? "checked='checked'" : ""; ?> /> <label for="cache_path">Keep Cache Home Path</label></td></tr>
284
- <tr><td colspan="2"><input type="checkbox" name="dbnbsp" id="dbnbsp" value="1" /> <label for="dbnbsp">Fix non-breaking space characters</label></td></tr>
285
- <tr><td style="width:130px">MySQL Charset</td><td><input type="text" name="dbcharset" id="dbcharset" value="<?php echo $_POST['dbcharset'] ?>" /> </td></tr>
286
- <tr><td>MySQL Collation </td><td><input type="text" name="dbcollate" id="dbcollate" value="<?php echo $_POST['dbcollate'] ?>" /> </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  </table>
 
 
288
  </div>
 
 
 
289
 
290
  <!-- NOTICES -->
291
  <div id="dup-step1-warning">
@@ -349,8 +380,9 @@ Auto Posts to view.step2.php -->
349
  <input type="hidden" name="dbcollate" id="ajax-dbcollate" />
350
 
351
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
352
- <h3>Step 1: Files &amp; Database</h3>
353
- <hr size="1" />
 
354
 
355
  <!-- PROGRESS BAR -->
356
  <div id="progress-area">
43
  * Timeout (10000000 = 166 minutes) */
44
  Duplicator.runDeployment = function() {
45
 
46
+ var $form = $('#dup-step1-input-form');
47
+ $form.parsley().validate();
48
+ if (!$form.parsley().isValid()) {
49
+ return;
50
+ }
51
+
52
 
53
  var msg = "Continue installation with the following settings?\n\n";
54
  msg += "Server: " + $("#dbhost").val() + "\nDatabase: " + $("#dbname").val() + "\n\n";
78
  $("#ajax-dbname").val($("#dbname").val());
79
  $("#ajax-dbcharset").val($("#dbcharset").val());
80
  $("#ajax-dbcollate").val($("#dbcollate").val());
81
+ $("#ajax-logging").val($("input:radio[name=logging]:checked").val());
82
  $("#ajax-json").val(escape(JSON.stringify(data)));
83
  setTimeout(function() {$('#dup-step1-result-form').submit();}, 1000);
84
  $('#progress-area').fadeOut(700);
155
 
156
  <!-- =========================================
157
  VIEW: STEP 1- INPUT -->
158
+ <form id='dup-step1-input-form' method="post" class="content-form" data-parsley-validate="true" data-parsley-excluded="input[type=hidden], [disabled], :hidden">
159
  <input type="hidden" name="action_ajax" value="1" />
160
  <input type="hidden" name="action_step" value="1" />
161
  <input type="hidden" name="package_name" value="<?php echo $zip_name ?>" />
162
 
163
+ <!--div class="dup-logfile-link">
164
  <select name="logging" id="logging">
165
  <option value="1" selected="selected">Light Logging</option>
166
  <option value="2">Detailed Logging</option>
 
167
  </select>
168
+ </div-->
169
+ <div class="hdr-main">
170
+ Step 1: Deploy Files &amp; Database
171
  </div>
 
 
 
 
172
 
173
  <!-- CHECKS: FAIL -->
174
  <?php if ( $total_req == 'Fail') : ?>
212
  <div class="title-header">
213
  MySQL Database
214
  </div>
215
+ <table class="s1-opts">
216
  <tr>
217
  <td>Action</td>
218
  <td>
229
  <tr>
230
  <td>Host</td>
231
  <td>
232
+ <table class="s1-opts-dbhost">
233
+ <tr>
234
+ <td><input type="text" name="dbhost" id="dbhost" required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBHOST']); ?>" placeholder="localhost" style="width:410px" /></td>
235
+ <td style="vertical-align:top">
236
+ <input id="dup-step1-dbport-btn" type="button" onclick="Duplicator.togglePort()" style="" value="Port: <?php echo htmlspecialchars($GLOBALS['FW_DBPORT']); ?>" />
237
+ <input name="dbport" id="dbport" type="text" style="width:80px; display:none" value="<?php echo htmlspecialchars($GLOBALS['FW_DBPORT']); ?>" />
238
+ </td>
239
+ </tr>
240
+ </table>
241
  </td>
242
  </tr>
243
  <tr>
244
  <td>Name</td>
245
+ <td><input type="text" name="dbname" id="dbname" required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBNAME']); ?>" placeholder="new or existing database name" /></td>
246
  </tr>
247
  <tr>
248
  <td>User</td>
249
+ <td><input type="text" name="dbuser" id="dbuser" required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBUSER']); ?>" placeholder="valid database username" /></td>
250
  </tr>
251
  <tr>
252
  <td>Password</td>
280
 
281
  <a href="javascript:void(0)" onclick="$('#dup-step1-adv-opts').toggle(250)"><b>Advanced Options...</b></a>
282
  <div id='dup-step1-adv-opts' style="display:none">
283
+ <table class="s1-opts">
284
+ <tr><td><input type="checkbox" name="zip_manual" id="zip_manual" value="1" /> <label for="zip_manual">Manual package extraction</label></td></tr>
285
+ <tr><td><input type="checkbox" name="dbnbsp" id="dbnbsp" value="1" /> <label for="dbnbsp">Fix non-breaking space characters</label></td></tr>
286
+ </table>
287
+
288
+
289
+ <table class="s1-opts s1-advopts">
290
+ <tr>
291
+ <td>Logging</td>
292
+ <td colspan="2">
293
+ <input type="radio" name="logging" id="logging-light" value="1" checked="true"> <label for="logging-light">Light</label> &nbsp;
294
+ <input type="radio" name="logging" id="logging-detailed" value="2"> <label for="logging-detailed">Detailed</label> &nbsp;
295
+ <input type="radio" name="logging" id="logging-debug" value="3"> <label for="logging-debug">Debug</label>
296
+ </td>
297
+ </tr>
298
+ <tr>
299
+ <td>Config Cache</td>
300
+ <td style="width:125px"><input type="checkbox" name="cache_wp" id="cache_wp" <?php echo ($GLOBALS['FW_CACHE_WP']) ? "checked='checked'" : ""; ?> /> <label for="cache_wp">Keep Enabled</label></td>
301
+ <td><input type="checkbox" name="cache_path" id="cache_path" <?php echo ($GLOBALS['FW_CACHE_PATH']) ? "checked='checked'" : ""; ?> /> <label for="cache_path">Keep Home Path</label></td>
302
+ </tr>
303
+ <tr>
304
+ <td>Config SSL</td>
305
+ <td><input type="checkbox" name="ssl_admin" id="ssl_admin" <?php echo ($GLOBALS['FW_SSL_ADMIN']) ? "checked='checked'" : ""; ?> /> <label for="ssl_admin">Enforce on Admin</label></td>
306
+ <td><input type="checkbox" name="ssl_login" id="ssl_login" <?php echo ($GLOBALS['FW_SSL_LOGIN']) ? "checked='checked'" : ""; ?> /> <label for="ssl_login">Enforce on Login</label></td>
307
+ </tr>
308
+ </table>
309
+
310
+ <table class="s1-opts s1-advopts">
311
+ <tr><td style="width:130px">MySQL Charset</td><td><input type="text" name="dbcharset" id="dbcharset" value="<?php echo $_POST['dbcharset'] ?>" /> </td></tr>
312
+ <tr><td>MySQL Collation </td><td><input type="text" name="dbcollate" id="dbcollate" value="<?php echo $_POST['dbcollate'] ?>" /> </tr>
313
  </table>
314
+ <small><i>For an overview of these settings see the <a href="?help=1" target="_blank">help page</a></i></small><br/>
315
+
316
  </div>
317
+
318
+
319
+
320
 
321
  <!-- NOTICES -->
322
  <div id="dup-step1-warning">
380
  <input type="hidden" name="dbcollate" id="ajax-dbcollate" />
381
 
382
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
383
+ <div class="hdr-main">
384
+ Step 1: Deploy Files &amp; Database
385
+ </div>
386
 
387
  <!-- PROGRESS BAR -->
388
  <div id="progress-area">
installer/build/view.step2.php CHANGED
@@ -140,10 +140,10 @@ VIEW: STEP 2- INPUT -->
140
  <input type="hidden" name="dbcharset" value="<?php echo $_POST['dbcharset'] ?>" />
141
  <input type="hidden" name="dbcollate" value="<?php echo $_POST['dbcollate'] ?>" />
142
 
143
-
144
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
145
- <h3>Step 2: Files &amp; Database</h3>
146
- <hr size="1" /><br />
 
147
 
148
  <div class="title-header">Old Settings</div>
149
  <table class="table-inputs-step2">
@@ -180,30 +180,31 @@ VIEW: STEP 2- INPUT -->
180
  <td>Title</td>
181
  <td><input type="text" name="blogname" id="blogname" value="<?php echo $GLOBALS['FW_BLOGNAME'] ?>" /></td>
182
  </tr>
183
- </table><br/>
184
-
185
- <!-- ==========================
186
- CREATE NEW USER -->
187
- <a href="javascript:void(0)" onclick="$('#dup-step2-user-opts').toggle(0)"><b>New Admin Account...</b></a>
188
- <div id='dup-step2-user-opts' style="display:none;">
189
- <table class="table-inputs-step2" style="margin-top:7px">
190
- <tr><td colspan="2"><i style="color:gray;font-size: 11px">This feature is optional. If the username already exists the account will NOT be created or updated.</i></td></tr>
191
- <tr>
192
- <td>Username </td>
193
- <td><input type="text" name="wp_username" id="wp_username" value="" title="4 characters minimum" placeholder="(4 or more characters)" /></td>
194
- </tr>
195
- <tr>
196
- <td valign="top">Password</td>
197
- <td><input type="text" name="wp_password" id="wp_password" value="" title="6 characters minimum" placeholder="(6 or more characters)" /></td>
198
- </tr>
199
  </table>
200
- </div><br/><br/>
201
-
202
-
203
  <!-- ==========================
204
  ADVANCED OPTIONS -->
205
  <a href="javascript:void(0)" onclick="$('#dup-step2-adv-opts').toggle(0)"><b>Advanced Options...</b></a>
206
  <div id='dup-step2-adv-opts' style="display:none;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  <table style="width: 100%;">
208
  <tr>
209
  <td valign="top" style="width:80px">Site URL</td>
@@ -213,8 +214,6 @@ VIEW: STEP 2- INPUT -->
213
  </td>
214
  </tr>
215
  </table><br/>
216
-
217
-
218
  <table>
219
  <tr>
220
  <td style="padding-right:10px">
@@ -272,8 +271,9 @@ VIEW: STEP 2 - AJAX RESULT -->
272
  <input type="hidden" name="json" id="ajax-json" />
273
 
274
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
275
- <h3>Step 2: Update Table Data</h3>
276
- <hr size="1" />
 
277
 
278
  <!-- PROGRESS BAR -->
279
  <div id="progress-area">
140
  <input type="hidden" name="dbcharset" value="<?php echo $_POST['dbcharset'] ?>" />
141
  <input type="hidden" name="dbcollate" value="<?php echo $_POST['dbcollate'] ?>" />
142
 
 
143
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
144
+ <div class="hdr-main">
145
+ Step 2: Update Files &amp; Database
146
+ </div><br />
147
 
148
  <div class="title-header">Old Settings</div>
149
  <table class="table-inputs-step2">
180
  <td>Title</td>
181
  <td><input type="text" name="blogname" id="blogname" value="<?php echo $GLOBALS['FW_BLOGNAME'] ?>" /></td>
182
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  </table>
184
+ <br/><br/>
185
+
 
186
  <!-- ==========================
187
  ADVANCED OPTIONS -->
188
  <a href="javascript:void(0)" onclick="$('#dup-step2-adv-opts').toggle(0)"><b>Advanced Options...</b></a>
189
  <div id='dup-step2-adv-opts' style="display:none;">
190
+
191
+ <br/>
192
+ <div class="hdr-sub">Add New Admin Account</div>
193
+ <table class="table-inputs-step2" style="margin-top:7px">
194
+ <tr><td colspan="2"><i style="color:gray;font-size: 11px">This feature is optional. If the username already exists the account will NOT be created or updated.</i></td></tr>
195
+ <tr>
196
+ <td>Username </td>
197
+ <td><input type="text" name="wp_username" id="wp_username" value="" title="4 characters minimum" placeholder="(4 or more characters)" /></td>
198
+ </tr>
199
+ <tr>
200
+ <td valign="top">Password</td>
201
+ <td><input type="text" name="wp_password" id="wp_password" value="" title="6 characters minimum" placeholder="(6 or more characters)" /></td>
202
+ </tr>
203
+ </table>
204
+ <br/><br/>
205
+
206
+
207
+ <div class="hdr-sub">Scan Options</div>
208
  <table style="width: 100%;">
209
  <tr>
210
  <td valign="top" style="width:80px">Site URL</td>
214
  </td>
215
  </tr>
216
  </table><br/>
 
 
217
  <table>
218
  <tr>
219
  <td style="padding-right:10px">
271
  <input type="hidden" name="json" id="ajax-json" />
272
 
273
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
274
+ <div class="hdr-main">
275
+ Step 2: Update Files &amp; Database
276
+ </div><br />
277
 
278
  <!-- PROGRESS BAR -->
279
  <div id="progress-area">
installer/build/view.step3.php CHANGED
@@ -8,6 +8,7 @@
8
  exit;
9
  }
10
  ?>
 
11
  <script type="text/javascript">
12
  /** **********************************************
13
  * METHOD: Posts to page to remove install files */
@@ -26,43 +27,43 @@ VIEW: STEP 3- INPUT -->
26
  <form id='dup-step3-input-form' method="post" class="content-form" style="line-height:20px">
27
  <input type="hidden" name="url_new" id="url_new" value="<?php echo rtrim($_POST['url_new'], "/"); ?>" />
28
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
29
- <h3>Step 3: Test Site</h3>
30
- <hr size="1" /><br />
 
 
31
 
32
  <div class="title-header">
33
- <div class="dup-step3-final-title">VERY IMPORTANT FINAL STEPS!</div>
34
  </div>
35
 
36
- <table class="dup-step3-final-step">
37
- <tr>
38
- <td>1. <a href="javascript:void(0)" onclick="$('#dup-step3-install-report').toggle(400)">Review Install Report</a>
39
- </td>
40
- <td>
41
- <i id="dup-step3-install-report-count">
42
- <b>Errors:</b>
43
- <span data-bind="with: status.step1">Deploy (<span data-bind="text: query_errs"></span>)</span> &nbsp;
44
- <span data-bind="with: status.step2">Update (<span data-bind="text: err_all"></span>)</span> &nbsp; &nbsp;
45
- <span data-bind="with: status.step2" style="color:#888"><b>Warnings:</b> (<span data-bind="text: warn_all"></span>)</span>
46
- </i>
47
- </td>
48
- </tr>
49
  <tr>
50
- <td style="width:170px">
51
- 2. <a href='<?php echo rtrim($_POST['url_new'], "/"); ?>/wp-admin/options-permalink.php' target='_blank'> Save Permalinks</a>
52
- </td>
53
  <td><i>Updates URL rewrite rules in .htaccess (requires login)</i></td>
54
  </tr>
55
  <tr>
56
- <td>3. <a href='<?php echo $_POST['url_new']; ?>' target='_blank'>Test Site</a></td>
57
  <td><i>Validate all pages, links images and plugins</i></td>
58
  </tr>
59
  <tr>
60
- <td>4. <a href="javascript:void(0)" onclick="Duplicator.removeInstallerFiles('<?php echo $_POST['package_name'] ?>')">Security Cleanup</a></td>
61
  <td><i>Validate installer files are removed (requires login)</i></td>
62
  </tr>
 
 
 
 
 
 
 
 
 
 
63
  </table><br/>
64
 
65
- <div class="dup-step3-go-back">
 
 
66
  <i style='font-size:11px'>To re-install <a href="javascript:history.go(-2)">start over at step 1</a>.</i><br/>
67
  <i style="font-size:11px;">The .htaccess file was reset. Resave plugins that write to this file.</i>
68
  </div>
@@ -71,7 +72,7 @@ VIEW: STEP 3- INPUT -->
71
  <!-- ========================
72
  INSTALL REPORT -->
73
  <div id="dup-step3-install-report" style='display:none'>
74
- <table class='dup-step3-report-results' style="width:100%">
75
  <tr><th colspan="4">Database Results</th></tr>
76
  <tr style="font-weight:bold">
77
  <td style="width:150px"></td>
@@ -99,14 +100,14 @@ VIEW: STEP 3- INPUT -->
99
  </tr>
100
  </table>
101
 
102
- <table class='dup-step3-report-errs' style="width:100%; border-top:none">
103
  <tr><th colspan="4">Errors &amp; Warnings <br/> <i style="font-size:10px; font-weight:normal">(click links below to view details)</i></th></tr>
104
  <tr>
105
  <td data-bind="with: status.step1">
106
- <a href="javascript:void(0);" onclick="$('#dup-step3-errs-create').toggle(400)">Step1: Deploy Errors (<span data-bind="text: query_errs"></span>)</a><br/>
107
  </td>
108
  <td data-bind="with: status.step2">
109
- <a href="javascript:void(0);" onclick="$('#dup-step3-errs-upd').toggle(400)">Step2: Update Errors (<span data-bind="text: err_all"></span>)</a>
110
  </td>
111
  <td data-bind="with: status.step2">
112
  <a href="#dup-step2-errs-warn-anchor" onclick="$('#dup-step3-warnlist').toggle(400)">General Warnings (<span data-bind="text: warn_all"></span>)</a>
@@ -116,34 +117,50 @@ VIEW: STEP 3- INPUT -->
116
  </table>
117
 
118
 
119
- <div id="dup-step3-errs-create" class="dup-step3-err-msg">
120
-
121
  <b data-bind="with: status.step1">STEP 1: DEPLOY ERRORS (<span data-bind="text: query_errs"></span>)</b><br/>
122
- <div class="info">Queries that error during the deploy process are logged to the <a href="installer-log.txt" target="_blank">install-log.txt</a> file.
123
- To view the error result look under the section titled 'DATABASE RESULTS'. If errors are present they will be marked with '**ERROR**'. <br/><br/> For errors titled
124
- 'Query size limit' you will need to manually post the values or update your mysql server with the max_allowed_packet setting to handle larger payloads.
125
- If your on a hosted server you will need to contact the server admin, for more details see: https://dev.mysql.com/doc/refman/5.5/en/packet-too-large.html. <br/><br/>
126
- </div>
127
 
 
 
 
 
 
 
 
 
 
 
128
  </div>
129
 
130
 
131
- <div id="dup-step3-errs-upd" class="dup-step3-err-msg">
132
 
133
  <!-- MYSQL QUERY ERRORS -->
134
  <b data-bind="with: status.step2">STEP2: UPDATE ERRORS (<span data-bind="text: errsql_sum"></span>) </b><br/>
135
- <div class="info">Errors that show here are the result of queries that could not be performed.</div>
 
 
 
136
  <div class="content">
137
  <div data-bind="foreach: status.step2.errsql"><div data-bind="text: $data"></div></div>
138
  <div data-bind="visible: status.step2.errsql.length == 0">No MySQL query errors found</div>
139
  </div>
140
 
141
  <!-- TABLE KEY ERRORS -->
142
- <b data-bind="with: status.step2">TABLE KEY ERRORS (<span data-bind="text: errkey_sum"></span>)</b><br/>
143
- <div class="info">
144
- A primary key is required on a table to efficiently run the update engine. Below is a list of tables and the rows that will need to
145
- be manually updated. Use the query below to find the data.<br/>
146
- <i>SELECT @row := @row + 1 as row, t.* FROM some_table t, (SELECT @row := 0) r</i>
 
 
 
 
 
 
147
  </div>
148
  <div class="content">
149
  <div data-bind="foreach: status.step2.errkey"><div data-bind="text: $data"></div></div>
@@ -151,9 +168,10 @@ VIEW: STEP 3- INPUT -->
151
  </div>
152
 
153
  <!-- SERIALIZE ERRORS -->
154
- <b data-bind="with: status.step2">SERIALIZATION ERRORS (<span data-bind="text: errser_sum"></span>)</b><br/>
155
- <div class="info">
156
- Use the SQL below to display data that may have not been updated correctly during the serialization process.
 
157
  </div>
158
  <div class="content">
159
  <div data-bind="foreach: status.step2.errser"><div data-bind="text: $data"></div></div>
@@ -164,7 +182,7 @@ VIEW: STEP 3- INPUT -->
164
 
165
 
166
  <!-- WARNINGS-->
167
- <div id="dup-step3-warnlist" class="dup-step3-err-msg">
168
  <a href="#" id="dup-step2-errs-warn-anchor"></a>
169
  <b>GENERAL WARNINGS</b><br/>
170
  <div class="info">
@@ -181,21 +199,41 @@ VIEW: STEP 3- INPUT -->
181
  </div>
182
  </div><br/>
183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
 
185
- </div><br/><br/>
186
-
187
- <div class='dup-step3-connect'>
188
  <a href="installer.php?help=1#troubleshoot" target="_blank">Troubleshoot</a> |
189
  <a href='http://support.lifeinthegrid.com/knowledgebase.php' target='_blank'>FAQs</a> |
190
- <a href='http://lifeinthegrid.com/duplicator' target='_blank'>Support</a> |
191
- <a href='http://snapcreek.com/duplicator/' target='_blank'>Go Pro!</a>
192
  </div><br/>
193
  </form>
194
 
195
  <script type="text/javascript">
196
  MyViewModel = function() {
197
  this.status = <?php echo urldecode($_POST['json']); ?>;
198
- var errorCount = this.status.step2.err_all || 0;
199
  (errorCount >= 1 )
200
  ? $('#dup-step3-install-report-count').css('color', '#BE2323')
201
  : $('#dup-step3-install-report-count').css('color', '#197713')
8
  exit;
9
  }
10
  ?>
11
+ <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
12
  <script type="text/javascript">
13
  /** **********************************************
14
  * METHOD: Posts to page to remove install files */
27
  <form id='dup-step3-input-form' method="post" class="content-form" style="line-height:20px">
28
  <input type="hidden" name="url_new" id="url_new" value="<?php echo rtrim($_POST['url_new'], "/"); ?>" />
29
  <div class="dup-logfile-link"><a href="installer-log.txt" target="_blank">installer-log.txt</a></div>
30
+
31
+ <div class="hdr-main">
32
+ Step 3: Test Site
33
+ </div><br />
34
 
35
  <div class="title-header">
36
+ <div class="s3-final-title">FINAL STEPS!</div>
37
  </div>
38
 
39
+ <table class="s3-final-step">
 
 
 
 
 
 
 
 
 
 
 
 
40
  <tr>
41
+ <td style="width:170px"><a class="s3-final-btns" href='<?php echo rtrim($_POST['url_new'], "/"); ?>/wp-admin/options-permalink.php' target='_blank'> Save Permalinks</a></td>
 
 
42
  <td><i>Updates URL rewrite rules in .htaccess (requires login)</i></td>
43
  </tr>
44
  <tr>
45
+ <td><a class="s3-final-btns" href='<?php echo $_POST['url_new']; ?>' target='_blank'>Test Site</a></td>
46
  <td><i>Validate all pages, links images and plugins</i></td>
47
  </tr>
48
  <tr>
49
+ <td><a class="s3-final-btns" href="javascript:void(0)" onclick="Duplicator.removeInstallerFiles('<?php echo $_POST['package_name'] ?>')">Security Cleanup</a></td>
50
  <td><i>Validate installer files are removed (requires login)</i></td>
51
  </tr>
52
+ <tr>
53
+ <td><a class="s3-final-btns" href="javascript:void(0)" onclick="$('#dup-step3-install-report').toggle(400)">Show Report</a></td>
54
+ <td>
55
+ <i id="dup-step3-install-report-count">
56
+ <span data-bind="with: status.step1">Deploy Errors: (<span data-bind="text: query_errs"></span>)</span> &nbsp;
57
+ <span data-bind="with: status.step2">Update Notices: (<span data-bind="text: err_all"></span>)</span> &nbsp; &nbsp;
58
+ <span data-bind="with: status.step2" style="color:#888"><b>Warnings:</b> (<span data-bind="text: warn_all"></span>)</span>
59
+ </i>
60
+ </td>
61
+ </tr>
62
  </table><br/>
63
 
64
+ <div class="s3-btns-msg">Click buttons above to complete process</div>
65
+
66
+ <div class="s3-go-back">
67
  <i style='font-size:11px'>To re-install <a href="javascript:history.go(-2)">start over at step 1</a>.</i><br/>
68
  <i style="font-size:11px;">The .htaccess file was reset. Resave plugins that write to this file.</i>
69
  </div>
72
  <!-- ========================
73
  INSTALL REPORT -->
74
  <div id="dup-step3-install-report" style='display:none'>
75
+ <table class='s3-report-results' style="width:100%">
76
  <tr><th colspan="4">Database Results</th></tr>
77
  <tr style="font-weight:bold">
78
  <td style="width:150px"></td>
100
  </tr>
101
  </table>
102
 
103
+ <table class='s3-report-errs' style="width:100%; border-top:none">
104
  <tr><th colspan="4">Errors &amp; Warnings <br/> <i style="font-size:10px; font-weight:normal">(click links below to view details)</i></th></tr>
105
  <tr>
106
  <td data-bind="with: status.step1">
107
+ <a href="javascript:void(0);" onclick="$('#dup-step3-errs-create').toggle(400)">Step1: Deploy Results (<span data-bind="text: query_errs"></span>)</a><br/>
108
  </td>
109
  <td data-bind="with: status.step2">
110
+ <a href="javascript:void(0);" onclick="$('#dup-step3-errs-upd').toggle(400)">Step2: Update Results (<span data-bind="text: err_all"></span>)</a>
111
  </td>
112
  <td data-bind="with: status.step2">
113
  <a href="#dup-step2-errs-warn-anchor" onclick="$('#dup-step3-warnlist').toggle(400)">General Warnings (<span data-bind="text: warn_all"></span>)</a>
117
  </table>
118
 
119
 
120
+ <div id="dup-step3-errs-create" class="s3-err-msg">
 
121
  <b data-bind="with: status.step1">STEP 1: DEPLOY ERRORS (<span data-bind="text: query_errs"></span>)</b><br/>
122
+ <div class="info-error">
123
+ Queries that error during the deploy step are logged to the <a href="installer-log.txt" target="_blank">install-log.txt</a> file and marked '**ERROR**'.
124
+ <br/><br/>
 
 
125
 
126
+ <b><u>Common Fixes:</u></b>
127
+ <br/>
128
+
129
+ <b>Query size limits:</b> Update your MySQL server with the <a href="https://dev.mysql.com/doc/refman/5.5/en/packet-too-large.html" target="_blank">max_allowed_packet</a>
130
+ setting to handle larger payloads. <br/>
131
+
132
+ <b>Unknown collation:</b> The MySQL Version is too old see:
133
+ <a href="https://lifeinthegrid.com/duplicator-faq" target="_blank">What is Compatibility mode & 'Unknown collation' errors?</a>
134
+ <br/>
135
+ </div>
136
  </div>
137
 
138
 
139
+ <div id="dup-step3-errs-upd" class="s3-err-msg">
140
 
141
  <!-- MYSQL QUERY ERRORS -->
142
  <b data-bind="with: status.step2">STEP2: UPDATE ERRORS (<span data-bind="text: errsql_sum"></span>) </b><br/>
143
+ <div class="info-error">
144
+ Update errors that show here are queries that could not be performed because the database server being used has issues running it. Please validate the query, if
145
+ it looks to be of concern please try to run the query manually. In many cases if your site performs well without any issues you can ignore the error.
146
+ </div>
147
  <div class="content">
148
  <div data-bind="foreach: status.step2.errsql"><div data-bind="text: $data"></div></div>
149
  <div data-bind="visible: status.step2.errsql.length == 0">No MySQL query errors found</div>
150
  </div>
151
 
152
  <!-- TABLE KEY ERRORS -->
153
+ <b data-bind="with: status.step2">TABLE KEY NOTICES (<span data-bind="text: errkey_sum"></span>)</b><br/>
154
+ <div class="info-notice">
155
+ Notices should be ignored unless issues are found after you have tested an installed site. This notice indicates that a primary key is required to run the
156
+ update engine. Below is a list of tables and the rows that were not updated. On some databases you can remove these notices by checking the box 'Enable Full Search'
157
+ under advanced options in step2 of the installer.
158
+ <br/><br/>
159
+ <small>
160
+ <b>Advanced Searching:</b><br/>
161
+ Use the following query to locate the table that was not updated: <br/>
162
+ <i>SELECT @row := @row + 1 as row, t.* FROM some_table t, (SELECT @row := 0) r</i>
163
+ </small>
164
  </div>
165
  <div class="content">
166
  <div data-bind="foreach: status.step2.errkey"><div data-bind="text: $data"></div></div>
168
  </div>
169
 
170
  <!-- SERIALIZE ERRORS -->
171
+ <b data-bind="with: status.step2">SERIALIZATION NOTICES (<span data-bind="text: errser_sum"></span>)</b><br/>
172
+ <div class="info-notice">
173
+ Notices should be ignored unless issues are found after you have tested an installed site. The SQL below will show data that may have not been
174
+ updated during the serialization process. Best practices for serialization notices is to just re-save the plugin/post/page in question.
175
  </div>
176
  <div class="content">
177
  <div data-bind="foreach: status.step2.errser"><div data-bind="text: $data"></div></div>
182
 
183
 
184
  <!-- WARNINGS-->
185
+ <div id="dup-step3-warnlist" class="s3-err-msg">
186
  <a href="#" id="dup-step2-errs-warn-anchor"></a>
187
  <b>GENERAL WARNINGS</b><br/>
188
  <div class="info">
199
  </div>
200
  </div><br/>
201
 
202
+ </div><br/>
203
+
204
+ <?php
205
+ $num = rand(1,2);
206
+ switch ($num) {
207
+ case 1:
208
+ $key = 'free-inst-s3btn1';
209
+ $txt = 'Want More Power?';
210
+ break;
211
+ case 2:
212
+ $key = 'free-inst-s3btn2';
213
+ $txt = 'Go Pro Today!';
214
+ break;
215
+ default :
216
+ $key = 'free-inst-s3btn2';
217
+ $txt = 'Go Pro Today!';
218
+ }
219
+ ?>
220
+
221
+ <div class="s3-gopro-btn">
222
+ <a style="width:100%" class="s3-final-btns" href="https://snapcreek.com/duplicator/comparison?<?php echo $key;?>" target="_blank">&#10097;&#10097; <?php echo $txt;?></a>
223
+ </div>
224
+ <br/><br/>
225
 
226
+ <div class='s3-connect'>
 
 
227
  <a href="installer.php?help=1#troubleshoot" target="_blank">Troubleshoot</a> |
228
  <a href='http://support.lifeinthegrid.com/knowledgebase.php' target='_blank'>FAQs</a> |
229
+ <a href='http://lifeinthegrid.com/labs/duplicator/resources/' target='_blank'>Support</a>
 
230
  </div><br/>
231
  </form>
232
 
233
  <script type="text/javascript">
234
  MyViewModel = function() {
235
  this.status = <?php echo urldecode($_POST['json']); ?>;
236
+ var errorCount = this.status.step2.query_errs || 0;
237
  (errorCount >= 1 )
238
  ? $('#dup-step3-install-report-count').css('color', '#BE2323')
239
  : $('#dup-step3-install-report-count').css('color', '#197713')
lang/duplicator-de_DE.mo DELETED
Binary file
lang/duplicator-de_DE.po DELETED
@@ -1,2202 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Duplicator v1.1.1\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
5
- "POT-Creation-Date: 2015-07-26 23:52+0200\n"
6
- "PO-Revision-Date: Mon Dec 14 2015 10:01:20 GMT+0100\n"
7
- "Last-Translator: Hans M. Herbrand web266.de\n"
8
- "Language-Team: \n"
9
- "Language: German\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: ..\n"
22
- "X-Poedit-WPHeader: duplicator.php\n"
23
- "X-Textdomain-Support: yes\n"
24
- "X-Poedit-SearchPath-0: .\n"
25
- "X-Poedit-SearchPathExcluded-0: assets\n"
26
- "X-Loco-Target-Locale: de_DE"
27
-
28
-
29
- #: classes/ui.php:111
30
- msgid ""
31
- "Reserved Duplicator install file(s) still exists in the root directory. "
32
- "Please delete these file(s) to avoid possible security issues."
33
- msgstr ""
34
- "Reservierte Duplicator Installationsdatei(en) sind noch im Root-Verzeichnis "
35
- "vorhanden. Bitte lösche diese Datei (en), um mögliche Sicherheitsprobleme zu "
36
- "vermeiden."
37
-
38
-
39
- #: classes/ui.php:112
40
- msgid "Remove file(s) now"
41
- msgstr "Entferne die Datei(en) jetzt"
42
-
43
-
44
- #: classes/ui.php:113
45
- msgid "Dismiss this notice"
46
- msgstr "Verwerfe diese Notiz"
47
-
48
-
49
- #: classes/utility.php:249
50
- msgid "You do not have sufficient permissions to access this page."
51
- msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu betreten."
52
-
53
-
54
- #: duplicator.php:102
55
- msgid "Get Help"
56
- msgstr "Hilfe bekommen"
57
-
58
-
59
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
60
- msgid "Help"
61
- msgstr "Hilfe"
62
-
63
-
64
- #: duplicator.php:103
65
- msgid "Support the Plugin"
66
- msgstr "Unterstütze das Plugin"
67
-
68
-
69
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
70
- msgid "About"
71
- msgstr "Über"
72
-
73
-
74
- #: duplicator.php:179 views/packages/controller.php:76
75
- #: views/packages/packages.php:235
76
- msgid "Packages"
77
- msgstr "Archive"
78
-
79
-
80
- #: duplicator.php:183 views/settings/controller.php:19
81
- msgid "Settings"
82
- msgstr "Einstellungen"
83
-
84
-
85
- #: duplicator.php:187 views/tools/controller.php:13
86
- msgid "Tools"
87
- msgstr "Werkzeuge"
88
-
89
-
90
- #: duplicator.php:246
91
- msgid "Manage"
92
- msgstr "Verwalten"
93
-
94
-
95
- #: views/help/about.php:54
96
- msgid ""
97
- "Created for Admins, Developers and Designers the Duplicator can streamline "
98
- "your workflows and help you quickly clone a WordPress application. "
99
- "Migrating a WordPress site manually can be very time consuming. The "
100
- "Duplicator was made to help you speed up the migration process. Please help "
101
- "us to continue the development effort of this plugin."
102
- msgstr ""
103
- "Erstellt für Admins, Entwickler und Designer, die mit dem Duplicator Ihre "
104
- "Arbeitsabläufe optimieren und eine Wordpress-Anwendung schnell klonen können."
105
- " Die manuell Migration eines Wordpress-Seite kann sehr zeitaufwendig sein. "
106
- "Der Duplicator wurde entwickelt, um den Migrationsprozess zu beschleunigen. "
107
- "Bitte unterstütze uns, um die Entwicklung des Plugins weiter zu führen."
108
-
109
-
110
- #: views/help/about.php:64
111
- msgid "Support Duplicator"
112
- msgstr "Unterstützung Duplicator"
113
-
114
-
115
- #: views/help/about.php:71
116
- msgid "Partner with Us"
117
- msgstr "Unsere Partner"
118
-
119
-
120
- #: views/help/about.php:83
121
- msgid "Keep Active and Online"
122
- msgstr "Bitte unterstütze den Duplicator mit einer Spende"
123
-
124
-
125
- #: views/help/about.php:90
126
- msgid "Leave 5 Stars"
127
- msgstr "Vergebe 5 Sterne"
128
-
129
-
130
- #: views/help/about.php:107
131
- msgid "Spread the Word"
132
- msgstr "Verbreitung des Inhaltes"
133
-
134
-
135
- #: views/help/about.php:113
136
- msgid "Duplicate Your WordPress"
137
- msgstr "Duplizieren dein WordPress"
138
-
139
-
140
- #: views/help/about.php:114
141
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
142
- msgstr "Schnelle WordPress-Vervielfältigung von LifeInTheGrid.com"
143
-
144
-
145
- #: views/help/about.php:131
146
- msgid "Get More Great Tools"
147
- msgstr "Hole Dir weitere großartige Anwendungen"
148
-
149
-
150
- #: views/help/gopro.php:37
151
- msgid "Go Pro!"
152
- msgstr "Zur Pro-Version wechseln!"
153
-
154
-
155
- #: views/help/gopro.php:46
156
- msgid "Duplicator Pro Has Arrived!"
157
- msgstr "Duplicator Pro ist da!"
158
-
159
-
160
- #: views/help/gopro.php:49
161
- msgid "The simplicity of Duplicator"
162
- msgstr "Die Einfachheit des Duplicators"
163
-
164
-
165
- #: views/help/gopro.php:50
166
- msgid "with the power the professional requires."
167
- msgstr "mit der professionellen Unterstützung."
168
-
169
-
170
- #: views/help/gopro.php:57
171
- msgid "Duplicator Free"
172
- msgstr "Duplicator Free"
173
-
174
-
175
- #: views/help/gopro.php:60 views/help/gopro.php:88
176
- msgid "Backup Files &amp; Database"
177
- msgstr "Backup Dateien &amp; Datenbank"
178
-
179
-
180
- #: views/help/gopro.php:61 views/help/gopro.php:89
181
- msgid ""
182
- "Compresses all your WordPress files and database into a compressed snapshot "
183
- "archive file."
184
- msgstr ""
185
- "Komprimiert alle Wordpress-Dateien und die Datenbank in eine Snapshot-"
186
- "Archivdatei."
187
-
188
-
189
- #: views/help/gopro.php:64 views/help/gopro.php:92
190
- msgid "Directory Filters"
191
- msgstr "Verzeichnisfilter"
192
-
193
-
194
- #: views/help/gopro.php:65 views/help/gopro.php:93
195
- msgid ""
196
- "Filter out the directories and file extensions you want to include/exclude "
197
- "in your in your archive file."
198
- msgstr ""
199
- "Filtern der Verzeichnisse und Dateierweiterungen, welche in die Archivdatei "
200
- "eingeschlossen/ausgeschlossen werden."
201
-
202
-
203
- #: views/help/gopro.php:68 views/help/gopro.php:96
204
- msgid "Database Table Filters"
205
- msgstr "Datenbanktabellen-Filter"
206
-
207
-
208
- #: views/help/gopro.php:69 views/help/gopro.php:97
209
- msgid ""
210
- "Filter out only the database tables you want to include/exclude in your "
211
- "database creation script."
212
- msgstr ""
213
- "Nur eingeschlossene / ausgeschlossene Datenbanktabellen zur Erstellung des "
214
- "Datenbankscripts verwenden."
215
-
216
-
217
- #: views/help/gopro.php:72 views/help/gopro.php:100
218
- msgid "Migration Wizard"
219
- msgstr "Migrations-Assistent"
220
-
221
-
222
- #: views/help/gopro.php:73 views/help/gopro.php:101
223
- msgid ""
224
- "With just two files (archive &amp; installer.php) move your site to a new "
225
- "location."
226
- msgstr ""
227
- "Mit nur zwei Dateien (Archiv und installer.php) installiere die Website auf "
228
- "eine neue Position."
229
-
230
-
231
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
232
- msgid "Duplicator Pro"
233
- msgstr "Duplicator Pro"
234
-
235
-
236
- #: views/help/gopro.php:104
237
- msgid "Scheduled Backups"
238
- msgstr "Geplante Sicherungen"
239
-
240
-
241
- #: views/help/gopro.php:105
242
- msgid "Automate the creation of your packages to run at various scheduled intervals."
243
- msgstr ""
244
- "Die Erstellung der Pakete kann automatisiert an verschiedenen geplanten "
245
- "Intervallen ausgeführt werden."
246
-
247
-
248
- #: views/help/gopro.php:108
249
- msgid "Dropbox Support"
250
- msgstr "Dropbox-Unterstützung"
251
-
252
-
253
- #: views/help/gopro.php:109
254
- msgid "Backup up your entire site to Dropbox."
255
- msgstr "Sichern der gesamten Website in die Dropbox."
256
-
257
-
258
- #: views/help/gopro.php:112
259
- msgid "FTP Support"
260
- msgstr "FTP-Unterstützung"
261
-
262
-
263
- #: views/help/gopro.php:113
264
- msgid "Backup up your entire site to an FTP server."
265
- msgstr "Sichern der gesamten Website auf einen FTP-Server."
266
-
267
-
268
- #: views/help/gopro.php:116
269
- msgid "Customer Support"
270
- msgstr "Benutzer-Unterstützung"
271
-
272
-
273
- #: views/help/gopro.php:117
274
- msgid ""
275
- "Server setups can be quite complex, with pro you get prompt help to get your "
276
- "site backed up and moved."
277
- msgstr ""
278
- "Server-Setups können recht komplex sein. Mit der Pro-Version gibt es "
279
- "schnelle Hilfe, um die Website zu sichern bzw. zu verschieben."
280
-
281
-
282
- #: views/help/gopro.php:124
283
- msgid "Check It Out!"
284
- msgstr "Probiere es aus!"
285
-
286
-
287
- #: views/help/help.php:38
288
- msgid ""
289
- "Migrating WordPress is a complex process and the logic to make all the magic "
290
- "happen smoothly may not work quickly with every site. With over 30,000 "
291
- "plugins and a very complex server eco-system some migrations may run into "
292
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
293
- "can help with many common issues. Resources to additional support, approved "
294
- "hosting, and alternatives to fit your needs can be found below."
295
- msgstr ""
296
- "Die Migration von Wordpress ist ein komplexer Prozess. Mit über 30.000 "
297
- "installierbaren Plugins kann es zu Problemen kommen. Deshalb enthält der "
298
- "Duplicator eine detaillierte Wissensdatenbank, in welcher zahlreiche Fehler "
299
- "beschrieben sind. Weitere Unterstützung, Hosting und Alternativen sind unten "
300
- "zu finden."
301
-
302
-
303
- #: views/help/help.php:50
304
- msgid "Knowledgebase"
305
- msgstr "Wissens-Datenbank"
306
-
307
-
308
- #: views/help/help.php:53
309
- msgid "Complete Online Documentation"
310
- msgstr "Vollständige Online-Dokumentation"
311
-
312
-
313
- #: views/help/help.php:55
314
- msgid "Choose A Section"
315
- msgstr "Wähle eine Rubrik"
316
-
317
-
318
- #: views/help/help.php:56
319
- msgid "Quick Start"
320
- msgstr "Schnell-Start"
321
-
322
-
323
- #: views/help/help.php:57
324
- msgid "User Guide"
325
- msgstr "Benutzerhandbuch"
326
-
327
-
328
- #: views/help/help.php:58
329
- msgid "FAQs"
330
- msgstr "Häufig gestellte Fragen"
331
-
332
-
333
- #: views/help/help.php:59
334
- msgid "Change Log"
335
- msgstr "Liste der Änderungen"
336
-
337
-
338
- #: views/help/help.php:60
339
- msgid "Product Page"
340
- msgstr "Produkt-Seite"
341
-
342
-
343
- #: views/help/help.php:69
344
- msgid "Online Support"
345
- msgstr "Online Support"
346
-
347
-
348
- #: views/help/help.php:72
349
- msgid "Get Help From IT Professionals"
350
- msgstr "Erhalte Hilfe von IT-Spezialisten"
351
-
352
-
353
- #: views/help/help.php:76
354
- msgid "Get Support!"
355
- msgstr "Unterstützung bekommen!"
356
-
357
-
358
- #: views/help/help.php:88
359
- msgid "Approved Hosting"
360
- msgstr "Empfohlene Hosting-Provider"
361
-
362
-
363
- #: views/help/help.php:91
364
- msgid "Servers That Work With Duplicator"
365
- msgstr "Server, welche mit dem Duplicator problemlos zusammenarbeiten"
366
-
367
-
368
- #: views/help/help.php:94
369
- msgid "Trusted Providers!"
370
- msgstr "Vertrauenswürdige Provider!"
371
-
372
-
373
- #: views/help/help.php:104
374
- msgid "Alternatives"
375
- msgstr "Alternativen"
376
-
377
-
378
- #: views/help/help.php:107
379
- msgid "Other Commercial Resources"
380
- msgstr "Andere kommerzielle Angebote"
381
-
382
-
383
- #: views/help/help.php:110
384
- msgid "Pro Solutions!"
385
- msgstr "Pro-Version!"
386
-
387
-
388
- #: views/packages/list-nodata.php:7
389
- msgid "No Packages Found."
390
- msgstr "Keine Archive gefunden."
391
-
392
-
393
- #: views/packages/list-nodata.php:8
394
- msgid "Click the 'Create New' button to build a package."
395
- msgstr "Zum Erstellen eines Pakets auf \"Neu erzeugen\" klicken."
396
-
397
-
398
- #: views/packages/list-nodata.php:13
399
- msgid "Please visit the"
400
- msgstr "Bitte besuche die"
401
-
402
-
403
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
404
- #: views/packages/new1.base.php:234
405
- msgid "help page"
406
- msgstr "Hilfe-Seiten"
407
-
408
-
409
- #: views/packages/list-nodata.php:15
410
- msgid "for additional support"
411
- msgstr "für weitere Unterstützung"
412
-
413
-
414
- #: views/packages/list-nodata.php:24
415
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
416
- msgstr "Ältere Archive (vor 0.5.0) werden in dieser Version nicht mehr unterstützt."
417
-
418
-
419
- #: views/packages/list-nodata.php:27
420
- msgid "To get an older package please visit the"
421
- msgstr "Bei älteren Archiven besuche bitte die"
422
-
423
-
424
- #: views/packages/list-nodata.php:29
425
- msgid "and look for the Change Log link for additional instructions."
426
- msgstr "und suche im Änderungsprotokoll nach weiteren Anweisungen."
427
-
428
-
429
- #: views/packages/list-nodata.php:33
430
- msgid "Hide this message"
431
- msgstr "Diese Nachricht ausblenden"
432
-
433
-
434
- #: views/packages/packages.php:39
435
- msgid "Help Support Duplicator"
436
- msgstr "Duplicator-Hilfe"
437
-
438
-
439
- #: views/packages/packages.php:50
440
- msgid "Bulk Actions"
441
- msgstr "Auswahl"
442
-
443
-
444
- #: views/packages/packages.php:51
445
- msgid "Delete selected package(s)"
446
- msgstr "Ausgewählte Archive löschen"
447
-
448
-
449
- #: views/packages/packages.php:51
450
- msgid "Delete"
451
- msgstr "Löschen"
452
-
453
-
454
- #: views/packages/packages.php:53
455
- msgid "Apply"
456
- msgstr "Anwenden"
457
-
458
-
459
- #: views/packages/packages.php:58
460
- msgid "Package Logs"
461
- msgstr "Archiv Logs"
462
-
463
-
464
- #: views/packages/packages.php:61 views/packages/new1.base.php:96
465
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
466
- #: views/packages/new3.base.php:89
467
- msgid "All Packages"
468
- msgstr "Alle Archive"
469
-
470
-
471
- #: views/packages/packages.php:62 views/packages/new1.base.php:97
472
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
473
- msgid "Create New"
474
- msgstr "Neu erzeugen"
475
-
476
-
477
- #: views/packages/packages.php:87
478
- msgid "Select all packages"
479
- msgstr "Alle Archive auswählen"
480
-
481
-
482
- #: views/packages/packages.php:88 views/packages/new3.base.php:108
483
- msgid "Details"
484
- msgstr "Details"
485
-
486
-
487
- #: views/packages/packages.php:89
488
- msgid "Created"
489
- msgstr "Erstellt"
490
-
491
-
492
- #: views/packages/packages.php:90 views/packages/new2.base.php:222
493
- #: views/packages/new2.base.php:334
494
- msgid "Size"
495
- msgstr "Größe"
496
-
497
-
498
- #: views/packages/packages.php:91 views/packages/new1.inc.form.php:6
499
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
500
- msgid "Name"
501
- msgstr "Name"
502
-
503
-
504
- #: views/packages/packages.php:93 views/settings/general.php:110
505
- msgid "Package"
506
- msgstr "Archiv"
507
-
508
-
509
- #: views/packages/packages.php:124
510
- msgid "(No Notes Taken)"
511
- msgstr "(Keine Notizen erstellt)"
512
-
513
-
514
- #: views/packages/packages.php:142 views/packages/packages.php:187
515
- msgid "View"
516
- msgstr "Ansicht"
517
-
518
-
519
- #: views/packages/packages.php:147 views/packages/new1.inc.form.php:176
520
- #: views/packages/new3.base.php:79
521
- msgid "Installer"
522
- msgstr "Installer"
523
-
524
-
525
- #: views/packages/packages.php:150 views/packages/new1.inc.form.php:65
526
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
527
- msgid "Archive"
528
- msgstr "Archive"
529
-
530
-
531
- #: views/packages/packages.php:155 views/packages/packages.php:200
532
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
533
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
534
- msgid "Version"
535
- msgstr "Version"
536
-
537
-
538
- #: views/packages/packages.php:156 views/packages/packages.php:201
539
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
540
- msgid "User"
541
- msgstr "Benutzer"
542
-
543
-
544
- #: views/packages/packages.php:157 views/packages/packages.php:202
545
- msgid "Hash"
546
- msgstr "Hash"
547
-
548
-
549
- #: views/packages/packages.php:158 views/packages/packages.php:207
550
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
551
- msgid "Notes"
552
- msgstr "Anmerkungen"
553
-
554
-
555
- #: views/packages/packages.php:160
556
- msgid "Links"
557
- msgstr "Links"
558
-
559
-
560
- #: views/packages/packages.php:161
561
- msgid "SQL"
562
- msgstr "SQL"
563
-
564
-
565
- #: views/packages/packages.php:162
566
- msgid "Log"
567
- msgstr "Log"
568
-
569
-
570
- #: views/packages/packages.php:165
571
- msgid "Open Scan Report"
572
- msgstr "Scan-Bericht öffnen"
573
-
574
-
575
- #: views/packages/packages.php:166
576
- msgid "View Package Object"
577
- msgstr "Paket ansehen"
578
-
579
-
580
- #: views/packages/packages.php:193
581
- msgid "View Error Details"
582
- msgstr "Fehler-Details ansehen"
583
-
584
-
585
- #: views/packages/packages.php:205
586
- msgid "Unrecoverable Error! Please remove this package."
587
- msgstr "Nicht behebbarer Fehler! Bitte lösche das Paket."
588
-
589
-
590
- #: views/packages/packages.php:210
591
- msgid ""
592
- "This package has encountered errors. Click 'View Log' for more details. "
593
- "For additional support see the "
594
- msgstr ""
595
- "Es sind Fehler aufgetreten. Klicke auf 'Log ansehen' für weitere Details. "
596
- "Zusätzliche Unterstützung findest du in der "
597
-
598
-
599
- #: views/packages/packages.php:211
600
- msgid "online knowledgebase"
601
- msgstr "Online-Wissensdatenbank"
602
-
603
-
604
- #: views/packages/packages.php:213
605
- msgid "View Log"
606
- msgstr "Log ansehen"
607
-
608
-
609
- #: views/packages/packages.php:236 views/packages/new2.base.php:219
610
- #: views/packages/new2.base.php:328
611
- msgid "Total Size"
612
- msgstr "Gesamte Größe"
613
-
614
-
615
- #: views/packages/packages.php:255
616
- msgid "Download Links"
617
- msgstr "Download Links"
618
-
619
-
620
- #: views/packages/packages.php:258
621
- msgid "The following links contain sensitive data. Please share with caution!"
622
- msgstr ""
623
- "Die folgenden Links enthalten sensible Daten. Bitte verwende sie mit "
624
- "Vorsicht!"
625
-
626
-
627
- #: views/packages/packages.php:264
628
- msgid ""
629
- "The database SQL script is a quick link to your database backup script. An "
630
- "exact copy is also stored in the package."
631
- msgstr ""
632
- "Das Datenbank-SQL-Skript ist ein direkter Link zum Datenbank-Backup-Skript. "
633
- "Eine exakte Kopie ist auch im Archiv gespeichert."
634
-
635
-
636
- #: views/packages/packages.php:287
637
- msgid ""
638
- "Please select an action from the bulk action drop down menu to perform a "
639
- "specific action."
640
- msgstr "Bitte wähle eine Aktion aus dem Dropdown-Menü aus."
641
-
642
-
643
- #: views/packages/packages.php:295
644
- msgid "Please select at least one package to delete."
645
- msgstr "Bitte wähle mindestens ein Archiv zum Löschen."
646
-
647
-
648
- #: views/packages/packages.php:299
649
- msgid "Are you sure, you want to delete the selected package(s)?"
650
- msgstr "Ausgewählte Archive wirklich löschen?"
651
-
652
-
653
- #: views/packages/packages.php:333
654
- msgid "Package File Links"
655
- msgstr "Archiv-Datei Links"
656
-
657
-
658
- #: views/packages/packages.php:336
659
- msgid "DATABASE"
660
- msgstr "Datenbank"
661
-
662
-
663
- #: views/packages/packages.php:337
664
- msgid "PACKAGE"
665
- msgstr "Archive"
666
-
667
-
668
- #: views/packages/packages.php:338
669
- msgid "INSTALLER"
670
- msgstr "INSTALLER"
671
-
672
-
673
- #: views/packages/packages.php:339
674
- msgid "LOG"
675
- msgstr "Log"
676
-
677
-
678
- #: views/packages/packages.php:340
679
- msgid "REPORT"
680
- msgstr "Bericht"
681
-
682
-
683
- #: views/packages/new1.base.php:13
684
- msgid "Package settings have been reset."
685
- msgstr "Archiveinstellungen wurden zurückgesetzt."
686
-
687
-
688
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
689
- #: views/packages/new3.base.php:33
690
- msgid "Setup"
691
- msgstr "Setup"
692
-
693
-
694
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
695
- #: views/packages/new3.base.php:34
696
- msgid "Scan"
697
- msgstr "Scan"
698
-
699
-
700
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
701
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
702
- msgid "Build"
703
- msgstr "Erstellen"
704
-
705
-
706
- #: views/packages/new1.base.php:91
707
- msgid "Step 1: Package Setup"
708
- msgstr "Schritt 1: Archiv-Setup"
709
-
710
-
711
- #: views/packages/new1.base.php:115
712
- msgid "Requirements:"
713
- msgstr "Anforderungen:"
714
-
715
-
716
- #: views/packages/new1.base.php:124
717
- msgid ""
718
- "System requirements must pass for the Duplicator to work properly. Click "
719
- "each link for details."
720
- msgstr ""
721
- "Damit der Duplicator richtig funktioniert, müssen die Systemanforderungen "
722
- "erfüllt sein. Klicken auf jeden beliebigen Link für weitere Details."
723
-
724
-
725
- #: views/packages/new1.base.php:130
726
- msgid "PHP Support"
727
- msgstr "PHP-Unterstützung"
728
-
729
-
730
- #: views/packages/new1.base.php:136
731
- msgid "PHP Version"
732
- msgstr "PHP-Version"
733
-
734
-
735
- #: views/packages/new1.base.php:140
736
- msgid "Zip Archive Enabled"
737
- msgstr "Zip-Archiv aktiviert"
738
-
739
-
740
- #: views/packages/new1.base.php:144
741
- msgid "Safe Mode Off"
742
- msgstr "Safe Mode Off"
743
-
744
-
745
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
746
- #: views/packages/new1.base.php:156
747
- msgid "Function"
748
- msgstr "Funktion"
749
-
750
-
751
- #: views/packages/new1.base.php:161
752
- msgid ""
753
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
754
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
755
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
756
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
757
- "this section please contact your hosting provider or server administrator. "
758
- "For additional information see our online documentation."
759
- msgstr ""
760
- "PHP-Versionen 5.2.17+ oder höher ist erforderlich. Bitte beachte, dass in "
761
- "der Versionslogik ein Wert wie 5.2.9 weniger ist als 5.2.17. Für die "
762
- "Kompression ist die ZipArchive-Erweiterung für PHP ist erforderlich. Der "
763
- "Safe Mode sollte auf 'Aus' in dir php.ini-Datei eingestellt werden (veraltet "
764
- "ab PHP 5.3.0). Für weitere Fragen in diesem Abschnitt wende dich an deinen "
765
- "Hosting-Provider oder Serveradministrator. Weitere Informationen befinden "
766
- "sich auf unserer Online-Dokumentation."
767
-
768
-
769
- #: views/packages/new1.base.php:169
770
- msgid "Permissions"
771
- msgstr "Berechtigungen"
772
-
773
-
774
- #: views/packages/new1.base.php:172
775
- msgid "Required Paths"
776
- msgstr "Erforderliche Pfade"
777
-
778
-
779
- #: views/packages/new1.base.php:183
780
- msgid ""
781
- "Permissions can be difficult to resolve on some systems. If the plugin can "
782
- "not read the above paths here are a few things to try. 1) Set the above "
783
- "paths to have permissions of 755 for directories and 644 for files. You can "
784
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
785
- "the owner/group settings for both files and directories. The PHP script "
786
- "owner and the process owner are different. The script owner owns the PHP "
787
- "script but the process owner is the user the script is running as, thus "
788
- "determining its capabilities/privileges in the file system. For more details "
789
- "contact your host or server administrator or visit the 'Help' menu under "
790
- "Duplicator for additional online resources."
791
- msgstr ""
792
- "Berechtigungen sind auf einigen Systemen nur schwer zu ändern. Wenn das "
793
- "Plugin die oben genannten Pfade nicht lesen kann, versuche folgendes. 1) "
794
- "Setze die Berechtigungen für Verzeichnisse auf 755 und für Dateien auf 644. "
795
- "Versuche es ggf. vorübergehend mit 777. 2) Prüfe den Eigentümer / "
796
- "Gruppeneinstellungen für Dateien und Verzeichnissen. Das PHP-Skript und ein "
797
- "FTP-Benutzer erfordern unterschiedliche Eigentümer. Der Skript Eigentümer "
798
- "besitzt das PHP-Skript, aber der Prozess-Besitzer ist der Benutzer, welcher "
799
- "das Skript ausführt. Für weitere Informationen wende dich Host- oder Server-"
800
- "Administrator oder besuche das \\\"Hilfe\\\"-Menü unter Duplicator für "
801
- "zusätzliche Online-Ressourcen."
802
-
803
-
804
- #: views/packages/new1.base.php:191
805
- msgid "Server Support"
806
- msgstr "Server-Support"
807
-
808
-
809
- #: views/packages/new1.base.php:197
810
- msgid "MySQL Version"
811
- msgstr "MySQL-Version"
812
-
813
-
814
- #: views/packages/new1.base.php:201
815
- msgid "MySQLi Support"
816
- msgstr "MySQLi-Support"
817
-
818
-
819
- #: views/packages/new1.base.php:207
820
- msgid ""
821
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
822
- "the trailing 'i') is also required. Contact your server administrator and "
823
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
824
- "note in future versions support for other databases and extensions will be "
825
- "added."
826
- msgstr ""
827
- "MySQL-Version 5.0 oder höher und die PHP MySQLi-Erweiterung (beachte das "
828
- "ergänzende \\\"i\\\") ist ebenfalls erforderlich. Kontaktiere deinen Server-"
829
- "Administrator und verlange, dass mysqli-Erweiterung und MySQL Server 5.0 und "
830
- "höher installiert werden. Bitte beachte, dass in zukünftigen Versionen "
831
- "Unterstützung für andere Datenbanken und Erweiterungen hinzugefügt werden."
832
-
833
-
834
- #: views/packages/new1.base.php:208
835
- msgid "more info"
836
- msgstr "mehr Informationen"
837
-
838
-
839
- #: views/packages/new1.base.php:217
840
- msgid "Reserved Files"
841
- msgstr "Reservierte Dateien"
842
-
843
-
844
- #: views/packages/new1.base.php:221
845
- msgid ""
846
- "None of the reserved files (installer.php, installer-data.sql and installer-"
847
- "log.txt) where found from a previous install. This means you are clear to "
848
- "create a new package."
849
- msgstr ""
850
- "Es wurden keine reservierte Dateien (installer.php, installer-data.sql und "
851
- "installer-log.txt) von einer früheren Installation gefunden. Ein neues Paket "
852
- "kann nun erstellt werden."
853
-
854
-
855
- #: views/packages/new1.base.php:224
856
- msgid ""
857
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
858
- "names are installer.php, installer-data.sql and installer-log.txt. To "
859
- "archive your data correctly please remove any of these files from your "
860
- "WordPress root directory. Then try creating your package again."
861
- msgstr ""
862
- "Es wurden reservierte Datei (en) im WordPress Stammverzeichnis gefunden. "
863
- "Reservierte Dateinamen sind installer.php, installer-data.sql und installer-"
864
- "log.txt. Zum korrekten Archivieren deiner Dateien entferne bitte diese "
865
- "Dateien aus dem WordPress-Stammverzeichnis. Dann versuche erneut, das Archiv "
866
- "zu erstellen."
867
-
868
-
869
- #: views/packages/new1.base.php:225
870
- msgid "Remove Files Now"
871
- msgstr "Dateien werden entfernt"
872
-
873
-
874
- #: views/packages/new1.base.php:234
875
- msgid "For additional help please see the "
876
- msgstr "Weitere Hilfe befindet sich in der "
877
-
878
-
879
- #: views/packages/new1.inc.form.php:10
880
- msgid "Create a new default name"
881
- msgstr "Erstelle einen neuen Standardnamen"
882
-
883
-
884
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
885
- msgid "Storage"
886
- msgstr "Speicher"
887
-
888
-
889
- #: views/packages/new1.inc.form.php:32
890
- msgid "Type"
891
- msgstr "Typ"
892
-
893
-
894
- #: views/packages/new1.inc.form.php:33
895
- msgid "Location"
896
- msgstr "Ort"
897
-
898
-
899
- #: views/packages/new1.inc.form.php:38
900
- msgid "Default"
901
- msgstr "Vorgabe"
902
-
903
-
904
- #: views/packages/new1.inc.form.php:39
905
- msgid "Local"
906
- msgstr "Lokal"
907
-
908
-
909
- #: views/packages/new1.inc.form.php:45
910
- msgid ""
911
- "All packages including the archive, installer and SQL script are stored in "
912
- "the location above. "
913
- msgstr ""
914
- "Alle Dateien einschließlich des Archivs, Installer und SQL-Skript sind im "
915
- "Ordner oberhalb gespeichert. "
916
-
917
-
918
- #: views/packages/new1.inc.form.php:48
919
- msgid "Dropbox, FTP and other multiple storage options available in "
920
- msgstr "Dropbox, FTP und weitere Speicheroptionen sind verfügbar in "
921
-
922
-
923
- #: views/packages/new1.inc.form.php:67
924
- msgid "File filter enabled"
925
- msgstr "Datei-Filter aktiviert"
926
-
927
-
928
- #: views/packages/new1.inc.form.php:68
929
- msgid "Database filter enabled"
930
- msgstr "Datenbank-Filter aktiviert"
931
-
932
-
933
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
934
- msgid "Files"
935
- msgstr "Dateien"
936
-
937
-
938
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
939
- #: views/packages/new2.base.php:312
940
- msgid "Database"
941
- msgstr "Datenbank"
942
-
943
-
944
- #: views/packages/new1.inc.form.php:90
945
- msgid "Enable File Filters"
946
- msgstr "Dateifilter aktivieren"
947
-
948
-
949
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
950
- msgid "Separate all filters by semicolon"
951
- msgstr "Trenne alle Filter durch ein Semikolon"
952
-
953
-
954
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
955
- msgid "Directories"
956
- msgstr "Verzeichnisse"
957
-
958
-
959
- #: views/packages/new1.inc.form.php:96
960
- msgid "root path"
961
- msgstr "Root-Pfad"
962
-
963
-
964
- #: views/packages/new1.inc.form.php:97
965
- msgid "wp-uploads"
966
- msgstr "uploads"
967
-
968
-
969
- #: views/packages/new1.inc.form.php:98
970
- msgid "cache"
971
- msgstr "Cache"
972
-
973
-
974
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
975
- msgid "(clear)"
976
- msgstr "(Löschen)"
977
-
978
-
979
- #: views/packages/new1.inc.form.php:102
980
- msgid "File extensions"
981
- msgstr "Datei-Erweiterungen"
982
-
983
-
984
- #: views/packages/new1.inc.form.php:104
985
- msgid "media"
986
- msgstr "Medien"
987
-
988
-
989
- #: views/packages/new1.inc.form.php:105
990
- msgid "archive"
991
- msgstr "Archive"
992
-
993
-
994
- #: views/packages/new1.inc.form.php:111
995
- msgid ""
996
- "The directory paths and extensions above will be be excluded from the "
997
- "archive file if enabled is checked."
998
- msgstr ""
999
- "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei "
1000
- "ausgeschlossen."
1001
-
1002
-
1003
- #: views/packages/new1.inc.form.php:112
1004
- msgid "Use the full path for directories and semicolons to separate all items."
1005
- msgstr ""
1006
- "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle "
1007
- "Elemente zu trennen."
1008
-
1009
-
1010
- #: views/packages/new1.inc.form.php:123
1011
- msgid "Enable Table Filters"
1012
- msgstr "Tabellen-Filter aktivieren"
1013
-
1014
-
1015
- #: views/packages/new1.inc.form.php:124
1016
- msgid "checked tables are excluded"
1017
- msgstr "Markierte Tabellen sind ausgeschlossen"
1018
-
1019
-
1020
- #: views/packages/new1.inc.form.php:129
1021
- msgid "Include All"
1022
- msgstr "Alle einschliessen"
1023
-
1024
-
1025
- #: views/packages/new1.inc.form.php:130
1026
- msgid "Exclude All"
1027
- msgstr "Alle ausschliessen"
1028
-
1029
-
1030
- #: views/packages/new1.inc.form.php:163
1031
- msgid ""
1032
- "Checked tables will not be added to the database script. Excluding certain "
1033
- "tables can possibly cause your site or plugins to not work correctly after "
1034
- "install!"
1035
- msgstr ""
1036
- "Ausgewählte Tabellen werden dem Archiv nicht hinzugefügt. Ohne diese "
1037
- "Tabellen funktionieren möglicherweise die Website oder Plugins nach der "
1038
- "Installation nicht korrekt!"
1039
-
1040
- # @ default
1041
- #: views/packages/new1.inc.form.php:181
1042
- msgid "STEP 1 - INPUTS"
1043
- msgstr "Schritt 1 – Eingaben"
1044
-
1045
-
1046
- #: views/packages/new1.inc.form.php:184
1047
- msgid "MySQL Server"
1048
- msgstr "MySQL-Server"
1049
-
1050
-
1051
- #: views/packages/new1.inc.form.php:187
1052
- msgid "Host"
1053
- msgstr "Host"
1054
-
1055
- #: views/packages/new1.inc.form.php:191
1056
- msgid "Host Port"
1057
- msgstr "Host-Port"
1058
-
1059
-
1060
- #: views/packages/new1.inc.form.php:203
1061
- msgid "Advanced Options"
1062
- msgstr "Erweiterte Optionen"
1063
-
1064
-
1065
- #: views/packages/new1.inc.form.php:209
1066
- msgid "SSL"
1067
- msgstr "SSL"
1068
-
1069
-
1070
- #: views/packages/new1.inc.form.php:212
1071
- msgid "Enforce on Admin"
1072
- msgstr "Admin erzwingen"
1073
-
1074
-
1075
- #: views/packages/new1.inc.form.php:216
1076
- msgid "Enforce on Logins"
1077
- msgstr "Logins erzwingen"
1078
-
1079
-
1080
- #: views/packages/new1.inc.form.php:220
1081
- msgid "Cache"
1082
- msgstr "Cache"
1083
-
1084
-
1085
- #: views/packages/new1.inc.form.php:223
1086
- msgid "Keep Enabled"
1087
- msgstr "Aktiviert halten"
1088
-
1089
-
1090
- #: views/packages/new1.inc.form.php:227
1091
- msgid "Keep Home Path"
1092
- msgstr "Startseite Pfad belassen"
1093
-
1094
- # @ default
1095
- #: views/packages/new1.inc.form.php:235
1096
- msgid "STEP 2 - INPUTS"
1097
- msgstr "Schritt 2 – Eingaben"
1098
-
1099
-
1100
- #: views/packages/new1.inc.form.php:239
1101
- msgid "New URL"
1102
- msgstr "Neue URL"
1103
-
1104
-
1105
- #: views/packages/new1.inc.form.php:245
1106
- msgid "The installer can have these fields pre-filled at install time."
1107
- msgstr ""
1108
- "Das Installationsprogramm kann diese Felder bereits vor der Installation "
1109
- "ausgefüllt haben."
1110
-
1111
-
1112
- #: views/packages/new1.inc.form.php:245
1113
- msgid "All values are optional."
1114
- msgstr "Alle Werte sind optional."
1115
-
1116
-
1117
- #: views/packages/new1.inc.form.php:254
1118
- msgid "Reset"
1119
- msgstr "Zurücksetzen"
1120
-
1121
-
1122
- #: views/packages/new1.inc.form.php:255
1123
- msgid "Next"
1124
- msgstr "Weiter"
1125
-
1126
-
1127
- #: views/packages/new1.inc.form.php:267
1128
- msgid ""
1129
- "This will reset all of the current package settings. Would you like to "
1130
- "continue?"
1131
- msgstr ""
1132
- "Dies wird alle aktuellen Archiveinstellungen zurückzusetzen. Möchtest Du "
1133
- "fortfahren?"
1134
-
1135
-
1136
- #: views/packages/new2.base.php:64
1137
- msgid "Step 2: System Scan"
1138
- msgstr "Schritt 2: System Scan"
1139
-
1140
-
1141
- #: views/packages/new2.base.php:81
1142
- msgid "Scanning Site"
1143
- msgstr "Scan Seite"
1144
-
1145
-
1146
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
1147
- msgid "Please Wait..."
1148
- msgstr "Bitte warten..."
1149
-
1150
-
1151
- #: views/packages/new2.base.php:89
1152
- msgid "Scan Complete"
1153
- msgstr "Scan vollständig"
1154
-
1155
-
1156
- #: views/packages/new2.base.php:91
1157
- msgid ""
1158
- "Scan checks are not required to pass, however they could cause issues on "
1159
- "some systems."
1160
- msgstr ""
1161
- "Scan-Checks sind nicht unbedingt erforderlich, können jedoch auf einigen "
1162
- "Systemen Probleme verursachen."
1163
-
1164
-
1165
- #: views/packages/new2.base.php:92
1166
- msgid "Process Time:"
1167
- msgstr "Verarbeitungs-Dauer"
1168
-
1169
-
1170
- #: views/packages/new2.base.php:101
1171
- msgid "Server"
1172
- msgstr "Server"
1173
-
1174
-
1175
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
1176
- msgid "Diagnostics"
1177
- msgstr "Diagnose"
1178
-
1179
-
1180
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
1181
- #: views/tools/diagnostics.php:106
1182
- msgid "Web Server"
1183
- msgstr "Webserver"
1184
-
1185
- #: views/packages/new2.base.php:119
1186
- msgid "Supported web servers:"
1187
- msgstr "Unterstützte Webserver:"
1188
-
1189
- #: views/packages/new2.base.php:129
1190
- msgid "PHP Setup"
1191
- msgstr "PHP-Setup"
1192
-
1193
-
1194
- #: views/packages/new2.base.php:135
1195
- msgid "Open Base Dir"
1196
- msgstr "Open Base Dir"
1197
-
1198
- #: views/packages/new2.base.php:137
1199
- msgid ""
1200
- "Issues might occur when [open_basedir] is enabled. Work with your server "
1201
- "admin to disable this value in the php.ini file if you’re having issues "
1202
- "building a package."
1203
- msgstr ""
1204
- "Es können Probleme auftreten falls [open_basedir] aktiviert ist. Für den "
1205
- "Fall, dass Du Probleme hast ein Archiv zu erstellen, kontaktiere Deinen "
1206
- "Administrator damit dieser den Wert in der php.ini Datei deaktiviert."
1207
-
1208
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
1209
- #: views/packages/new2.base.php:155
1210
- msgid "details"
1211
- msgstr "Details"
1212
-
1213
-
1214
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
1215
- msgid "Max Execution Time"
1216
- msgstr "Maximale Ausführungs-Zeit"
1217
-
1218
- #: views/packages/new2.base.php:145
1219
- #, php-format
1220
- msgid ""
1221
- "Issues might occur for larger packages when the [max_execution_time] value "
1222
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
1223
- "seconds or higher. An attempt is made to override this value if the server "
1224
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
1225
- msgstr ""
1226
- "Es können Probleme bei größeren Archiven auftreten falls der Wert für die "
1227
- "[max_execution_time] in der php.ini zu niedrig gesetzt ist. Der kleinste "
1228
- "empfohlene Timeout-Wert liegt bei \"%1$s\" Sekunden oder mehr. Es wird ein "
1229
- "Versuch unternommen diesen Wert zu übergehen falls der Server dies erlaubt. "
1230
- "Ein Wert von 0 (empfohlen) zeigt an, dass PHP kein Zeitlimit hat."
1231
-
1232
-
1233
- #: views/packages/new2.base.php:147
1234
- msgid ""
1235
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
1236
- "timeout passes and you still see a build interrupt messages, then your web "
1237
- "server could be killing the process. If you are limited on processing time,"
1238
- " consider using the database or file filters to shrink the size of your "
1239
- "overall package. However use caution as excluding the wrong resources can "
1240
- "cause your install to not work properly."
1241
- msgstr ""
1242
- "Hinweis: Timeouts können auch am Web-Server eingestellt werden, so dass bei "
1243
- "PHP-Timeout der Prozess abgebrochen wird. Wenn die Verarbeitungszeit "
1244
- "begrenzt ist, nutze Datenbank-oder Dateifilter, um die Größe des "
1245
- "Gesamtpakets schrumpfen. Bitte beachte, dass falsche Einstellungen dazu "
1246
- "führen können, dass die Anwendung nicht mehr richtig funktioniert."
1247
-
1248
- #: views/packages/new2.base.php:152
1249
- msgid "MySQLi"
1250
- msgstr "MySQLi"
1251
-
1252
- #: views/packages/new2.base.php:154
1253
- msgid ""
1254
- "Creating the package does not require the mysqli module. However the "
1255
- "installer.php file requires that the PHP module mysqli be installed on the "
1256
- "server it is deployed on."
1257
- msgstr ""
1258
- "Für das Erstellen eines Archivs benötigst Du nicht das MySQLi-Modul. Jedoch "
1259
- "benötigt die installer.php Datei das installierte MySQLi-Modul auf dem "
1260
- "Server auf dem das Archiv erstellt wird."
1261
-
1262
- #: views/packages/new2.base.php:164
1263
- msgid "WordPress"
1264
- msgstr "WordPress"
1265
-
1266
-
1267
- #: views/packages/new2.base.php:169
1268
- msgid "WordPress Version"
1269
- msgstr "WordPress-Version"
1270
-
1271
- #: views/packages/new2.base.php:171
1272
- #, php-format
1273
- msgid "It is recommended to have a version of WordPress that is greater than %1$s"
1274
- msgstr ""
1275
- "Es wird empfohlen eine Version von WordPress installiert zu haben die größer "
1276
- "%1$s ist"
1277
-
1278
-
1279
- #: views/packages/new2.base.php:175
1280
- msgid "Core Files"
1281
- msgstr "Core-Dateien"
1282
-
1283
-
1284
- #: views/packages/new2.base.php:177
1285
- msgid ""
1286
- "If the scanner is unable to locate the wp-config.php file in the root "
1287
- "directory, then you will need to manually copy it to its new location."
1288
- msgstr ""
1289
- "Wenn der Scanner die Datei wp-config.php im Root-Verzeichnis nicht findet, "
1290
- "muss sie manuell an die neue Position manuell kopiert werden."
1291
-
1292
-
1293
- #: views/packages/new2.base.php:183
1294
- msgid "Cache Path"
1295
- msgstr "Cache-Pfad"
1296
-
1297
- #: views/packages/new2.base.php:185
1298
- msgid ""
1299
- "Cached data will lead to issues at install time and increases your archive "
1300
- "size. It is recommended to empty your cache directory at build time. Use "
1301
- "caution when removing data from the cache directory. If you have a cache "
1302
- "plugin review the documentation for how to empty it; simply removing files "
1303
- "might cause errors on your site. The cache size minimum threshold is "
1304
- "currently set at "
1305
- msgstr ""
1306
- "Gecachte Daten führen zu Problemen bei der Installation und zu einer "
1307
- "erhöhten Archiv-Größe. Es wird empfohlen das Cache-Verzeichnis vor der "
1308
- "Erstellung des Archives zu leeren. Lasse Vorsicht walten bevor Du Daten aus "
1309
- "dem Cache-Verzeichnis entfernst. Für den Fall dass Du ein Cache-Plugin "
1310
- "verwendest lies in der Anleitung nach wie Du dessen Cache sicher leerst; das "
1311
- "direkte Entfernen von Dateien kann zu Problemen mit Deiner Webseite führen. "
1312
- "Der untere Grenzwert für die Cache-Größe liegt aktuell bei "
1313
-
1314
-
1315
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1316
- msgid "Enabled"
1317
- msgstr "Aktiviert"
1318
-
1319
-
1320
- #: views/packages/new2.base.php:223
1321
- msgid "File Count"
1322
- msgstr "Dateianzahl"
1323
-
1324
-
1325
- #: views/packages/new2.base.php:224
1326
- msgid "Directory Count"
1327
- msgstr "Verzeichnisanzahl"
1328
-
1329
-
1330
- #: views/packages/new2.base.php:227
1331
- #, php-format
1332
- msgid ""
1333
- "Total size represents all files minus any filters that have been setup. The "
1334
- "current thresholds that trigger warnings are %1$s for the entire site and "
1335
- "%2$s for large files."
1336
- msgstr ""
1337
- "Die Gesamtgröße entspricht allen Dateien abzüglich der im Filter "
1338
- "festgelegten Elemente. Die aktuellen Grenzwerte, die Warnungen auslösen, "
1339
- "sind %1$s für die gesamte Site und %2$s für große Dateien."
1340
-
1341
- #: views/packages/new2.base.php:239
1342
- msgid "Name Checks"
1343
- msgstr "Namenüberprüfung"
1344
-
1345
- #: views/packages/new2.base.php:244
1346
- msgid ""
1347
- "File or directory names may cause issues when working across different "
1348
- "environments and servers. Names that are over 250 characters, contain "
1349
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1350
- "issues in a remote enviroment. It is recommended to remove or filter these "
1351
- "files before building the archive if you have issues at install time."
1352
- msgstr ""
1353
- "Datei- oder Verzeichnis-Namen können zu Problemen führen wenn in "
1354
- "unterschiedlichen Umgebungen und Servern gearbeitet wird. Namen die mehr als "
1355
- "250 Zeichen lang sind, Sonderzeichen wie z.B. * ? > < : / \\ | enthalten oder "
1356
- "aber Unicode sind können zu Problemen in entfernten Umgebungen führen. Es "
1357
- "wird empfohlen diese Dateien vor der Erstellung des Archivs zu entfernen "
1358
- "oder zu filtern, sollte es zu Problemen bei der Installation im Anschluss "
1359
- "kommen."
1360
-
1361
-
1362
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1363
- msgid "Show Paths"
1364
- msgstr "Zeige Pfade"
1365
-
1366
-
1367
- #: views/packages/new2.base.php:256
1368
- msgid "Large Files"
1369
- msgstr "Große Dateien"
1370
-
1371
-
1372
- #: views/packages/new2.base.php:261
1373
- #, php-format
1374
- msgid ""
1375
- "Large files such as movies or other backuped data can cause issues with "
1376
- "timeouts. The current check for large files is %1$s per file. If your "
1377
- "having issues creating a package consider excluding these files with the "
1378
- "files filter and manually moving them to your new location."
1379
- msgstr ""
1380
- "Große Dateien wie Filme oder andere Archiv-Daten können zu Problemen mit "
1381
- "Timeouts führen. Die aktuelle Prüfung für große Dateien ist %1$s pro Datei. "
1382
- "Wenn es zu Problemen beim Erstellen des Archives kommt, bitte diese Dateien "
1383
- "mit dem Filter ausschließen und manuell auf die neue Position verschieben."
1384
-
1385
-
1386
- #: views/packages/new2.base.php:275
1387
- msgid "View Filters"
1388
- msgstr "Filter anzeigen"
1389
-
1390
-
1391
- #: views/packages/new2.base.php:283
1392
- msgid "No directory filters have been set."
1393
- msgstr "Es sind keine Verzeichnisfilter eingestellt."
1394
-
1395
-
1396
- #: views/packages/new2.base.php:288
1397
- msgid "File Extensions"
1398
- msgstr "Datei-Erweiterungen"
1399
-
1400
-
1401
- #: views/packages/new2.base.php:293
1402
- msgid "No file extension filters have been set."
1403
- msgstr "Keine Dateierweiterungs-Filter gesetzt."
1404
-
1405
- #: views/packages/new2.base.php:297
1406
- msgid ""
1407
- "The lists above are the directories and file extension that will be excluded "
1408
- "from the archive."
1409
- msgstr ""
1410
- "Die Listen darüber sind die Verzeichnisse und Dateiendungen die aus dem "
1411
- "Archiv ausgeschlossen werden."
1412
-
1413
-
1414
- #: views/packages/new2.base.php:332
1415
- msgid "Tables"
1416
- msgstr "Tabellen"
1417
-
1418
-
1419
- #: views/packages/new2.base.php:333
1420
- msgid "Records"
1421
- msgstr "Aufzeichnungen"
1422
-
1423
-
1424
- #: views/packages/new2.base.php:336
1425
- msgid "repair and optimization"
1426
- msgstr "Reparatur und Optimierung"
1427
-
1428
-
1429
- #: views/packages/new2.base.php:337
1430
- #, php-format
1431
- msgid ""
1432
- "Total size and row count for all database tables are approximate values. "
1433
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1434
- "databases take time to process and can cause issues with server timeout and "
1435
- "memory settings. Running a %3$s on your database can also help improve the "
1436
- "overall size and performance. If your server supports shell_exec and "
1437
- "mysqldump you can try to enable this option from the settings menu."
1438
- msgstr ""
1439
- "Gesamtgröße und Zeilenanzahl für alle Datenbank-Tabellen sind Richtwerte. "
1440
- "Die Schwellenwerte, die Warnungen auslösen, sind %1$s und %2$s Datensätze. "
1441
- "Große Datenbanken benötigen mehr Zeit bei der Verarbeitung und können zu "
1442
- "Problemen mit Server-Timeout und Speichereinstellungen führen. Ausführen "
1443
- "einer %3$s auf der Datenbank können auch dazu beitragen, die Gesamtgröße und "
1444
- "Leistung zu verbessern. Wenn der Server shell_exec und mysqldump unterstützt,"
1445
- " kannst du versuchen, diese Option aus dem Menü Einstellungen zu aktivieren."
1446
-
1447
-
1448
- #: views/packages/new2.base.php:349
1449
- msgid "Table Details"
1450
- msgstr "Tabellen-Details"
1451
-
1452
-
1453
- #: views/packages/new2.base.php:360
1454
- msgid "Name:"
1455
- msgstr "Name:"
1456
-
1457
-
1458
- #: views/packages/new2.base.php:361
1459
- msgid "Host:"
1460
- msgstr "Host:"
1461
-
1462
-
1463
- #: views/packages/new2.base.php:362
1464
- msgid "Build Mode:"
1465
- msgstr "Erstellungs-Modus:"
1466
-
1467
-
1468
- #: views/packages/new2.base.php:373
1469
- msgid "Scan Error"
1470
- msgstr "Scan Fehler"
1471
-
1472
-
1473
- #: views/packages/new2.base.php:374
1474
- msgid "Please try again!"
1475
- msgstr "Bitte nochmals versuchen!"
1476
-
1477
-
1478
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1479
- msgid "Server Status:"
1480
- msgstr "Server Status:"
1481
-
1482
-
1483
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1484
- msgid "Error Message:"
1485
- msgstr "Fehler-Meldung:"
1486
-
1487
-
1488
- #: views/packages/new2.base.php:386
1489
- msgid "Back"
1490
- msgstr "Zurück"
1491
-
1492
-
1493
- #: views/packages/new2.base.php:387
1494
- msgid "Rescan"
1495
- msgstr "Erneuter Scan"
1496
-
1497
-
1498
- #: views/packages/new2.base.php:486
1499
- msgid "Unable to report on any tables"
1500
- msgstr "Kein Bericht über die Tabellen"
1501
-
1502
-
1503
- #: views/packages/new2.base.php:495
1504
- msgid "Unable to report on database stats"
1505
- msgstr "Kein Bericht zum Datenbank-Status"
1506
-
1507
- #: views/packages/new2.base.php:514
1508
- msgid "DIR"
1509
- msgstr "DIR"
1510
-
1511
-
1512
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1513
- msgid "FILE"
1514
- msgstr "Datei"
1515
-
1516
- #: views/packages/new2.base.php:523
1517
- msgid "No name warning issues found."
1518
- msgstr "Es sind keine Probleme bei der Namensüberprüfung aufgetreten."
1519
-
1520
-
1521
- #: views/packages/new2.base.php:529
1522
- msgid "No large files found."
1523
- msgstr "Keine großen Dateien gefunden."
1524
-
1525
-
1526
- #: views/packages/new3.base.php:38
1527
- msgid "Step 3: Build Package"
1528
- msgstr "Schritt 3: Archiv erstellen"
1529
-
1530
-
1531
- #: views/packages/new3.base.php:55
1532
- msgid "Building Package"
1533
- msgstr "Archiv erstellen"
1534
-
1535
-
1536
- #: views/packages/new3.base.php:58
1537
- msgid "Keep this window open during the build process."
1538
- msgstr "Lass dieses Fenster während der Archiv-Erstellung geöffnet."
1539
-
1540
-
1541
- #: views/packages/new3.base.php:59
1542
- msgid "This may take several minutes."
1543
- msgstr "Dies kann einige Minuten dauern."
1544
-
1545
-
1546
- #: views/packages/new3.base.php:63
1547
- msgid "Build Status"
1548
- msgstr "Erstellungs-Status"
1549
-
1550
-
1551
- #: views/packages/new3.base.php:70
1552
- msgid "Package Completed"
1553
- msgstr "Archiv komplett"
1554
-
1555
-
1556
- #: views/packages/new3.base.php:75
1557
- msgid "Process Time"
1558
- msgstr "Verarbeitungszeit"
1559
-
1560
-
1561
- #: views/packages/new3.base.php:100
1562
- msgid "Build Interrupt"
1563
- msgstr "Erstellung unterbrochen"
1564
-
1565
-
1566
- #: views/packages/new3.base.php:101
1567
- msgid "The current build has experienced an issue."
1568
- msgstr "Die aktuelle Version hat ein Problem."
1569
-
1570
-
1571
- #: views/packages/new3.base.php:103
1572
- msgid "Please try the process again."
1573
- msgstr "Bitte versuche den Vorgang erneut."
1574
-
1575
-
1576
- #: views/packages/new3.base.php:105
1577
- msgid "Diagnose"
1578
- msgstr "Diagnose"
1579
-
1580
-
1581
- #: views/packages/new3.base.php:106
1582
- msgid "Try Again"
1583
- msgstr "Nochmals versuchen"
1584
-
1585
-
1586
- #: views/packages/new3.base.php:122
1587
- msgid "Notice"
1588
- msgstr "Anmerkung"
1589
-
1590
- # @ default
1591
- #: views/packages/new3.base.php:125
1592
- msgid "Build Folder:"
1593
- msgstr "Erstellungs-Verzeichnis:"
1594
-
1595
-
1596
- #: views/packages/new3.base.php:127
1597
- msgid ""
1598
- "Some servers close connections quickly; yet the build can continue to run in "
1599
- "the background. To validate if a build is still running; open the 'tmp' "
1600
- "folder above and see if the archive file is growing in size. If it is not "
1601
- "then your server has strict timeout constraints. Please visit the support "
1602
- "page for additional resources."
1603
- msgstr ""
1604
- "Einige Server schließen die Verbindungen schnell, doch die Erstellung kann "
1605
- "auch weiterhin im Hintergrund laufen. Um zu prüfen ob derProzess noch läuft, "
1606
- "öffnen den 'tmp'-Ordner um zu sehen, ob die Archivdatei in der Größe wächst. "
1607
- "Wenn nicht, hat der Server strenge Beschränkungen im Timeout. Bitte besuche "
1608
- "die Support-Seite für weitere Lösungen."
1609
-
1610
-
1611
- #: views/packages/new3.base.php:136
1612
- msgid "Package Log"
1613
- msgstr "Archiv Log"
1614
-
1615
-
1616
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1617
- msgid "General"
1618
- msgstr "Allgemein"
1619
-
1620
-
1621
- #: views/settings/general.php:6
1622
- msgid "Settings Saved"
1623
- msgstr "Einstellungen gespeichert"
1624
-
1625
-
1626
- #: views/settings/general.php:75
1627
- msgid "Plugin"
1628
- msgstr "Plugin"
1629
-
1630
-
1631
- #: views/settings/general.php:83
1632
- msgid "Uninstall"
1633
- msgstr "Deinstallieren"
1634
-
1635
-
1636
- #: views/settings/general.php:86
1637
- msgid "Delete Plugin Settings"
1638
- msgstr "Plugin-Einstellungen löschen"
1639
-
1640
-
1641
- #: views/settings/general.php:89
1642
- msgid "Delete Entire Storage Directory"
1643
- msgstr "Speicher-Verzeichnisse vollständig löschen"
1644
-
1645
-
1646
- #: views/settings/general.php:96
1647
- msgid "Full Path"
1648
- msgstr "Vollständiger Pfad"
1649
-
1650
-
1651
- #: views/settings/general.php:99
1652
- msgid "Disable .htaccess File In Storage Directory"
1653
- msgstr ".htaccess-Datei im Speicher-Verzeichnis deaktivieren"
1654
-
1655
-
1656
- #: views/settings/general.php:101
1657
- msgid "Disable if issues occur when downloading installer/archive files."
1658
- msgstr ""
1659
- "Deaktivieren, wenn beim Download von Installer / Archivdateien Probleme "
1660
- "auftreten."
1661
-
1662
-
1663
- #: views/settings/general.php:114
1664
- msgid "Archive Flush"
1665
- msgstr "Archiv erstellen"
1666
-
1667
-
1668
- #: views/settings/general.php:117
1669
- msgid "Attempt Network Keep Alive"
1670
- msgstr ""
1671
- "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu "
1672
- "etablieren"
1673
-
1674
-
1675
- #: views/settings/general.php:118
1676
- msgid "recommended only for large archives"
1677
- msgstr "nur empfohlen für große Archive"
1678
-
1679
-
1680
- #: views/settings/general.php:120
1681
- msgid ""
1682
- "This will attempt to keep a network connection established for large "
1683
- "archives."
1684
- msgstr ""
1685
- "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu "
1686
- "etablieren."
1687
-
1688
-
1689
- #: views/settings/general.php:125
1690
- msgid "Database Build"
1691
- msgstr "Datenbank erstellen"
1692
-
1693
-
1694
- #: views/settings/general.php:128
1695
- msgid "Use PHP"
1696
- msgstr "Benutze PHP"
1697
-
1698
-
1699
- #: views/settings/general.php:131
1700
- msgid "Query Limit Size"
1701
- msgstr "Abfragelimit-Größe"
1702
-
1703
-
1704
- #: views/settings/general.php:140
1705
- msgid "higher values speed up build times but uses more memory"
1706
- msgstr "Höhere Werte beschleunigen die Erstellung, aber sie benötigen mehr Speicher"
1707
-
1708
-
1709
- #: views/settings/general.php:147
1710
- msgid "This server does not have shell_exec configured to run."
1711
- msgstr "Dieser Server ist nicht zur Ausführung von shell_exec konfiguriert."
1712
-
1713
-
1714
- #: views/settings/general.php:149
1715
- msgid "Please contact the server administrator to enable this feature."
1716
- msgstr "Bitte kontaktiere den Server-Administrator, um diese Funktion zu aktivieren."
1717
-
1718
-
1719
- #: views/settings/general.php:154
1720
- msgid "Use mysqldump"
1721
- msgstr "Benutze mysqldump"
1722
-
1723
-
1724
- #: views/settings/general.php:155
1725
- msgid "recommended for large databases"
1726
- msgstr "für große Datenbanken empfohlen"
1727
-
1728
-
1729
- #: views/settings/general.php:160
1730
- msgid "Working Path:"
1731
- msgstr "Arbeits-Pfad"
1732
-
1733
-
1734
- #: views/settings/general.php:166
1735
- msgid ""
1736
- "Mysqldump was not found at its default location or the location provided. "
1737
- "Please enter a path to a valid location where mysqldump can run. If the "
1738
- "problem persist contact your server administrator."
1739
- msgstr ""
1740
- "Mysqldump wurde nicht an der Standardposition gefunden. Bitte gib den Pfad "
1741
- "zu einem gültigen Ort ein, an dem mysqldump ausgeführt werden kann. Sollte "
1742
- "das Problem bestehen bleiben, kontaktiere den Server-Administrator."
1743
-
1744
-
1745
- #: views/settings/general.php:171
1746
- msgid "Add Custom Path:"
1747
- msgstr "Benutzer-Pfad hinzufügen"
1748
-
1749
-
1750
- #: views/settings/general.php:175
1751
- msgid "This is the path to your mysqldump program."
1752
- msgstr "Das ist der Pfad zu deinem mysqldump-Programm."
1753
-
1754
-
1755
- #: views/settings/general.php:184
1756
- msgid "Package Debug"
1757
- msgstr "Fehlerbeseitigung Archiv"
1758
-
1759
-
1760
- #: views/settings/general.php:187
1761
- msgid "Show Package Debug Status in Packages Screen"
1762
- msgstr "Zeige Fehlerstatus des Archives in der Anzeige"
1763
-
1764
-
1765
- #: views/settings/general.php:195
1766
- msgid "Roles & Capabilities"
1767
- msgstr "Rollen & Funktionen"
1768
-
1769
-
1770
- #: views/settings/general.php:200
1771
- msgid "Custom Roles"
1772
- msgstr "Benutzerdefinierte Rollen"
1773
-
1774
-
1775
- #: views/settings/general.php:203
1776
- msgid "Enable User Role Editor Plugin Integration"
1777
- msgstr "Ermöglicht User Role Editor Plugin Integration"
1778
-
1779
-
1780
- #: views/settings/general.php:210
1781
- msgid "The User Role Editor Plugin"
1782
- msgstr "Das User Role Editor Plugin"
1783
-
1784
-
1785
- #: views/settings/general.php:211
1786
- msgid "Free"
1787
- msgstr "Free"
1788
-
1789
-
1790
- #: views/settings/general.php:212
1791
- msgid "or"
1792
- msgstr "oder"
1793
-
1794
-
1795
- #: views/settings/general.php:213
1796
- msgid "Professional"
1797
- msgstr "Professional"
1798
-
1799
-
1800
- #: views/settings/general.php:214
1801
- msgid "must be installed to use"
1802
- msgstr "muss installiert werden zur Benutzung"
1803
-
1804
-
1805
- #: views/settings/general.php:215
1806
- msgid "this feature."
1807
- msgstr "dieser Option."
1808
-
1809
-
1810
- #: views/settings/general.php:227
1811
- msgid "Save Settings"
1812
- msgstr "Einstellungen speichern"
1813
-
1814
-
1815
- #: views/tools/cleanup.php:8
1816
- msgid "Installer File Cleanup Ran."
1817
- msgstr "Installations-Dateien gelöscht."
1818
-
1819
-
1820
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1821
- msgid "Legacy data removed."
1822
- msgstr "Daten entfernt."
1823
-
1824
-
1825
- #: views/tools/cleanup.php:16
1826
- msgid "Build cache removed."
1827
- msgstr "Cache-Dateien entfernt"
1828
-
1829
-
1830
- #: views/tools/cleanup.php:73
1831
- msgid ""
1832
- "If the installer files did not successfully get removed, then you WILL need "
1833
- "to remove them manually"
1834
- msgstr ""
1835
- "Wenn die Installationsdateien nicht vollständig erfolgreich entfernt wurden, "
1836
- "dann müssen sie manuell gelöscht werden"
1837
-
1838
-
1839
- #: views/tools/cleanup.php:74
1840
- msgid ""
1841
- "Please remove all installer files to avoid leaving open security issues on "
1842
- "your server"
1843
- msgstr ""
1844
- "Bitte entferne alle Installationsdateien aus Sicherheitsgründen von deinem "
1845
- "Server"
1846
-
1847
-
1848
- #: views/tools/cleanup.php:82
1849
- msgid "Data Cleanup"
1850
- msgstr "Daten gelöscht"
1851
-
1852
-
1853
- #: views/tools/cleanup.php:85
1854
- msgid "Delete Reserved Files"
1855
- msgstr "Lösche reservierte Dateien"
1856
-
1857
-
1858
- #: views/tools/cleanup.php:86
1859
- msgid "Removes all installer files from a previous install"
1860
- msgstr "Entferne alle Installations-Dateien der früheren Installation."
1861
-
1862
-
1863
- #: views/tools/cleanup.php:89
1864
- msgid "Delete Legacy Data"
1865
- msgstr "Lösche übernommene Daten"
1866
-
1867
-
1868
- #: views/tools/cleanup.php:90
1869
- msgid "Removes all legacy data and settings prior to version"
1870
- msgstr "Entfernt alle übernommenen Daten und Einstellungen vor Version"
1871
-
1872
-
1873
- #: views/tools/cleanup.php:93
1874
- msgid "Clear Build Cache"
1875
- msgstr "Cache löschen"
1876
-
1877
-
1878
- #: views/tools/cleanup.php:94
1879
- msgid "Removes all build data from:"
1880
- msgstr "Entferne alle Daten von:"
1881
-
1882
-
1883
- #: views/tools/cleanup.php:107
1884
- #, php-format
1885
- msgid "This action will remove all legacy settings prior to version %1$s. "
1886
- msgstr "Diese Aktion wird alle alten Einstellungen vor Version %1$s entfernen. "
1887
-
1888
-
1889
- #: views/tools/cleanup.php:108
1890
- msgid ""
1891
- "Legacy settings are only needed if you plan to migrate back to an older "
1892
- "version of this plugin."
1893
- msgstr ""
1894
- "Frühere Einstellungen werden nur benötigt, wenn du zu einer älteren Version "
1895
- "des Plugins zurückgehst."
1896
-
1897
-
1898
- #: views/tools/cleanup.php:120
1899
- msgid ""
1900
- "This process will remove all build cache files. Be sure no packages are "
1901
- "currently building or else they will be cancelled."
1902
- msgstr ""
1903
- "Dieser Vorgang wird alle erstellten Cache-Dateien entfernen. Bitte stelle "
1904
- "sicher, dass derzeit keine neuen Cache-Dateien erstellt werden."
1905
-
1906
-
1907
- #: views/tools/controller.php:16
1908
- msgid "Logging"
1909
- msgstr "Logging"
1910
-
1911
-
1912
- #: views/tools/controller.php:18
1913
- msgid "Cleanup"
1914
- msgstr "Löschen"
1915
-
1916
-
1917
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1918
- msgid "unknow"
1919
- msgstr "unbekannt"
1920
-
1921
-
1922
- #: views/tools/diagnostics.php:39
1923
- msgid "Plugin settings reset."
1924
- msgstr "Plugin-Einstellungen zurücksetzen."
1925
-
1926
-
1927
- #: views/tools/diagnostics.php:40
1928
- msgid "View state settings reset."
1929
- msgstr "Statuseinstellungen zurücksetzen."
1930
-
1931
-
1932
- #: views/tools/diagnostics.php:41
1933
- msgid "Active package settings reset."
1934
- msgstr "Aktive Archiv-Einstellungen zurücksetzen."
1935
-
1936
-
1937
- #: views/tools/diagnostics.php:81
1938
- msgid "Server Settings"
1939
- msgstr "Server-Einstellungen"
1940
-
1941
-
1942
- #: views/tools/diagnostics.php:90
1943
- msgid "Duplicator Version"
1944
- msgstr "Duplicator-Version"
1945
-
1946
-
1947
- #: views/tools/diagnostics.php:94
1948
- msgid "Operating System"
1949
- msgstr "Betriebs-System"
1950
-
1951
-
1952
- #: views/tools/diagnostics.php:98
1953
- msgid "Timezone"
1954
- msgstr "Zeitzone"
1955
-
1956
-
1957
- #: views/tools/diagnostics.php:102
1958
- msgid "Server Time"
1959
- msgstr "Serverzeit"
1960
-
1961
-
1962
- #: views/tools/diagnostics.php:110
1963
- msgid "APC Enabled"
1964
- msgstr "APC Aktiviert"
1965
-
1966
-
1967
- #: views/tools/diagnostics.php:114
1968
- msgid "Root Path"
1969
- msgstr "Root-Pfad"
1970
-
1971
-
1972
- #: views/tools/diagnostics.php:118
1973
- msgid "ABSPATH"
1974
- msgstr "ABSPATH"
1975
-
1976
-
1977
- #: views/tools/diagnostics.php:122
1978
- msgid "Plugins Path"
1979
- msgstr "Plugin-Pfad"
1980
-
1981
-
1982
- #: views/tools/diagnostics.php:126
1983
- msgid "Loaded PHP INI"
1984
- msgstr "Geladene PHP-INI"
1985
-
1986
-
1987
- #: views/tools/diagnostics.php:130
1988
- msgid "Server IP"
1989
- msgstr "Server-IP"
1990
-
1991
-
1992
- #: views/tools/diagnostics.php:134
1993
- msgid "Client IP"
1994
- msgstr "Client-IP"
1995
-
1996
-
1997
- #: views/tools/diagnostics.php:145
1998
- msgid "Langugage"
1999
- msgstr "Sprache"
2000
-
2001
-
2002
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
2003
- msgid "Charset"
2004
- msgstr "Zeichensatz"
2005
-
2006
-
2007
- #: views/tools/diagnostics.php:153
2008
- msgid "Memory Limit "
2009
- msgstr "Speicher-Limit "
2010
-
2011
-
2012
- #: views/tools/diagnostics.php:154
2013
- msgid "Max"
2014
- msgstr "Max"
2015
-
2016
-
2017
- #: views/tools/diagnostics.php:172
2018
- msgid "Safe Mode"
2019
- msgstr "Safe Mode"
2020
-
2021
-
2022
- #: views/tools/diagnostics.php:176
2023
- msgid "On"
2024
- msgstr "An"
2025
-
2026
-
2027
- #: views/tools/diagnostics.php:176
2028
- msgid "Off"
2029
- msgstr "Aus"
2030
-
2031
-
2032
- #: views/tools/diagnostics.php:181
2033
- msgid "Memory Limit"
2034
- msgstr "Speicher-Limit"
2035
-
2036
-
2037
- #: views/tools/diagnostics.php:185
2038
- msgid "Memory In Use"
2039
- msgstr "Verwendeter Arbeitsspeicher"
2040
-
2041
-
2042
- #: views/tools/diagnostics.php:193
2043
- msgid "Shell Exec"
2044
- msgstr "Shell Exec"
2045
-
2046
-
2047
- #: views/tools/diagnostics.php:194
2048
- msgid "Is Supported"
2049
- msgstr "Wird unterstützt"
2050
-
2051
-
2052
- #: views/tools/diagnostics.php:194
2053
- msgid "Not Supported"
2054
- msgstr "Nicht unterstützt"
2055
-
2056
-
2057
- #: views/tools/diagnostics.php:208
2058
- msgid "Wait Timeout"
2059
- msgstr "Wartezeitsperre"
2060
-
2061
-
2062
- #: views/tools/diagnostics.php:212
2063
- msgid "Max Allowed Packets"
2064
- msgstr "Maximal erlaubte Pakete"
2065
-
2066
-
2067
- #: views/tools/diagnostics.php:216
2068
- msgid "msyqldump Path"
2069
- msgstr "msyqldump Pfad"
2070
-
2071
-
2072
- #: views/tools/diagnostics.php:220
2073
- msgid "Server Disk"
2074
- msgstr "Server-Festplatte"
2075
-
2076
- # @ hyper-cache
2077
- #: views/tools/diagnostics.php:223
2078
- msgid "Free space"
2079
- msgstr "Freier Speicherplatz"
2080
-
2081
-
2082
- #: views/tools/diagnostics.php:226
2083
- msgid "Note: This value is the physical servers hard-drive allocation."
2084
- msgstr "Hinweis: Dieser Wert ist die physische Server-Festplatte-Verteilung."
2085
-
2086
-
2087
- #: views/tools/diagnostics.php:227
2088
- msgid ""
2089
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
2090
- "value."
2091
- msgstr ""
2092
- "Überprüfe auf freigegebenen Hosts deines Control Panels für den 'TRUE' Disk "
2093
- "Space Quote Wert."
2094
-
2095
-
2096
- #: views/tools/diagnostics.php:243
2097
- msgid "Stored Data"
2098
- msgstr "Gespeicherte Daten"
2099
-
2100
-
2101
- #: views/tools/diagnostics.php:248
2102
- msgid "Options Values"
2103
- msgstr "Options Werte"
2104
-
2105
-
2106
- #: views/tools/diagnostics.php:281
2107
- msgid "PHP Information"
2108
- msgstr "PHP-Information"
2109
-
2110
-
2111
- #: views/tools/diagnostics.php:300
2112
- msgid "Delete this option value"
2113
- msgstr "Lösche den optionalen Wert"
2114
-
2115
-
2116
- #: views/tools/logging.php:140
2117
- msgid "Log file not found or unreadable"
2118
- msgstr "Log-Datei nicht gefunden oder nicht lesbar"
2119
-
2120
-
2121
- #: views/tools/logging.php:142
2122
- msgid ""
2123
- "Try to create a package, since no log files were found in the snapshots "
2124
- "directory with the extension *.log"
2125
- msgstr ""
2126
- "Versuche ein Archiv zu erstellen, da keine Log-Dateien im Snapshots-"
2127
- "Verzeichnis mit der Endung *. Log gefunden wurden"
2128
-
2129
-
2130
- #: views/tools/logging.php:144
2131
- msgid "Reasons for log file not showing"
2132
- msgstr "Die Gründe für die Log-Datei werden nicht angezeigt"
2133
-
2134
-
2135
- #: views/tools/logging.php:145
2136
- msgid "The web server does not support returning .log file extentions"
2137
- msgstr "Der Webserver unterstützt keine .log-Datei-Erweiterungen"
2138
-
2139
-
2140
- #: views/tools/logging.php:146
2141
- msgid ""
2142
- "The snapshots directory does not have the correct permissions to write files."
2143
- " Try setting the permissions to 755"
2144
- msgstr ""
2145
- "In das Verzeichnis wp-snapshots kann nicht geschrieben werden. Bitte setze "
2146
- "die Berechtigung auf 755"
2147
-
2148
-
2149
- #: views/tools/logging.php:147
2150
- msgid ""
2151
- "The process that PHP runs under does not have enough permissions to create "
2152
- "files. Please contact your hosting provider for more details"
2153
- msgstr ""
2154
- "Der Prozess hat nicht genügend Berechtigungen, um Dateien zu erstellen. "
2155
- "Bitte kontaktiere deinen Hosting-Provider für weitere Informationen"
2156
-
2157
-
2158
- #: views/tools/logging.php:156 views/tools/logging.php:161
2159
- msgid "Options"
2160
- msgstr "Optionen"
2161
-
2162
-
2163
- #: views/tools/logging.php:163
2164
- msgid "Refresh"
2165
- msgstr "Neu laden"
2166
-
2167
-
2168
- #: views/tools/logging.php:168
2169
- msgid "Auto Refresh"
2170
- msgstr "Automatisch neu laden"
2171
-
2172
-
2173
- #: views/tools/logging.php:174
2174
- msgid "Last 20 Logs"
2175
- msgstr "Letzte 20 Logs"
2176
-
2177
- #. Plugin Name of the plugin/theme
2178
- msgid "Duplicator"
2179
- msgstr "Duplicator"
2180
-
2181
- #. Plugin URI of the plugin/theme
2182
- msgid "http://www.lifeinthegrid.com/duplicator/"
2183
- msgstr "http://www.lifeinthegrid.com/duplicator/"
2184
-
2185
- #. Description of the plugin/theme
2186
- msgid ""
2187
- "Create a backup of your WordPress files and database. Duplicate and move an "
2188
- "entire site from one location to another in a few steps. Create a full "
2189
- "snapshot of your site at any point in time."
2190
- msgstr ""
2191
- "Erstelle eine Sicherungskopie Deiner WordPress-Dateien und der Datenbank. "
2192
- "Dupliziere und verschiebe in nur wenigen Schritten eine komplette Webseite "
2193
- "von einem Ort an einen Anderen. Erstelle einen vollständigen Snapshot Deiner "
2194
- "Webseite zu jedem beliebigen Zeitpunkt."
2195
-
2196
- #. Author of the plugin/theme
2197
- msgid "LifeInTheGrid"
2198
- msgstr "LifeInTheGrid"
2199
-
2200
- #. Author URI of the plugin/theme
2201
- msgid "http://www.lifeinthegrid.com"
2202
- msgstr "http://www.lifeinthegrid.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/duplicator-fa_IR.mo DELETED
Binary file
lang/duplicator-fa_IR.po DELETED
@@ -1,1808 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPDuplicator v0.5.23\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
5
- "POT-Creation-Date: 2015-07-26 23:54+0200\n"
6
- "PO-Revision-Date: 2015-07-26 23:54+0200\n"
7
- "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
8
- "Language-Team: Amoozesh98.com <Amoozesh98@gmail.com | Info@Amoozesh98.com>\n"
9
- "Language: fa_IR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.2\n"
14
- "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Textdomain-Support: yes\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: assets\n"
24
-
25
- #: classes/ui.php:111
26
- msgid ""
27
- "Reserved Duplicator install file(s) still exists in the root directory. "
28
- "Please delete these file(s) to avoid possible security issues."
29
- msgstr ""
30
-
31
- #: classes/ui.php:112
32
- msgid "Remove file(s) now"
33
- msgstr "پاک کردن پرونده"
34
-
35
- #: classes/ui.php:113
36
- msgid "Dismiss this notice"
37
- msgstr "نمایش ندادن این پیام"
38
-
39
- #: classes/utility.php:249
40
- msgid "You do not have sufficient permissions to access this page."
41
- msgstr ""
42
-
43
- #: duplicator.php:102
44
- msgid "Get Help"
45
- msgstr "رفتن به راهنما"
46
-
47
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
48
- msgid "Help"
49
- msgstr "راهنما"
50
-
51
- #: duplicator.php:103
52
- msgid "Support the Plugin"
53
- msgstr "پشتیبان افزونه"
54
-
55
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
56
- msgid "About"
57
- msgstr "درباره"
58
-
59
- #: duplicator.php:179 views/packages/controller.php:76
60
- #: views/packages/packages.php:235
61
- msgid "Packages"
62
- msgstr "بسته های نصبی"
63
-
64
- #: duplicator.php:183 views/settings/controller.php:19
65
- msgid "Settings"
66
- msgstr "تنظیمات"
67
-
68
- #: duplicator.php:187 views/tools/controller.php:13
69
- msgid "Tools"
70
- msgstr "ابزارها"
71
-
72
- #: duplicator.php:246
73
- msgid "Manage"
74
- msgstr "مدیریت"
75
-
76
- #: views/help/about.php:54
77
- msgid ""
78
- "Created for Admins, Developers and Designers the Duplicator can streamline "
79
- "your workflows and help you quickly clone a WordPress application. "
80
- "Migrating a WordPress site manually can be very time consuming. The "
81
- "Duplicator was made to help you speed up the migration process. Please help "
82
- "us to continue the development effort of this plugin."
83
- msgstr ""
84
- "برای مدیران و توسعه دهندگان و طراحان ایجاد تکثیر گردش کار و کمک شما به سرعت "
85
- "کلون برنامه وردپرس ساده می تواند. انتقال سایت وردپرس به صورت دستی می تواند "
86
- "بسیار وقت گیر است. تکثیر شده است برای کمک به شما سرعت بخشیدن به فرایند "
87
- "انتقال. لطفا کمک به ما برای ادامه تلاش توسعه این پلاگین."
88
-
89
- #: views/help/about.php:64
90
- msgid "Support Duplicator"
91
- msgstr "پشتیبان ایجاد کننده بسته نصبی"
92
-
93
- #: views/help/about.php:71
94
- msgid "Partner with Us"
95
- msgstr "همکاری با ما"
96
-
97
- #: views/help/about.php:83
98
- msgid "Keep Active and Online"
99
- msgstr "نگه دارید فعال و آنلاین"
100
-
101
- #: views/help/about.php:90
102
- msgid "Leave 5 Stars"
103
- msgstr ""
104
-
105
- #: views/help/about.php:107
106
- msgid "Spread the Word"
107
- msgstr "ارتقا دهید (لطفا!)"
108
-
109
- #: views/help/about.php:113
110
- msgid "Duplicate Your WordPress"
111
- msgstr "تولید بسته آسان نصبی وردپرس"
112
-
113
- #: views/help/about.php:114
114
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
115
- msgstr ""
116
-
117
- #: views/help/about.php:131
118
- msgid "Get More Great Tools"
119
- msgstr "دریافت ابزارهای بیشتر"
120
-
121
- #: views/help/gopro.php:37
122
- msgid "Go Pro!"
123
- msgstr "نسخه تجاری!"
124
-
125
- #: views/help/gopro.php:46
126
- msgid "Duplicator Pro Has Arrived!"
127
- msgstr ""
128
-
129
- #: views/help/gopro.php:49
130
- msgid "The simplicity of Duplicator"
131
- msgstr ""
132
-
133
- #: views/help/gopro.php:50
134
- msgid "with the power the professional requires."
135
- msgstr ""
136
-
137
- #: views/help/gopro.php:57
138
- msgid "Duplicator Free"
139
- msgstr "ایجاد کننده بسته نصبی رایگان"
140
-
141
- #: views/help/gopro.php:60 views/help/gopro.php:88
142
- msgid "Backup Files &amp; Database"
143
- msgstr "فایل های پشتیبان و پایگاه داده"
144
-
145
- #: views/help/gopro.php:61 views/help/gopro.php:89
146
- msgid ""
147
- "Compresses all your WordPress files and database into a compressed snapshot "
148
- "archive file."
149
- msgstr ""
150
-
151
- #: views/help/gopro.php:64 views/help/gopro.php:92
152
- msgid "Directory Filters"
153
- msgstr "فیلتر های پوشه"
154
-
155
- #: views/help/gopro.php:65 views/help/gopro.php:93
156
- msgid ""
157
- "Filter out the directories and file extensions you want to include/exclude "
158
- "in your in your archive file."
159
- msgstr ""
160
-
161
- #: views/help/gopro.php:68 views/help/gopro.php:96
162
- msgid "Database Table Filters"
163
- msgstr "فعال کردن فیلتر های جدول"
164
-
165
- #: views/help/gopro.php:69 views/help/gopro.php:97
166
- msgid ""
167
- "Filter out only the database tables you want to include/exclude in your "
168
- "database creation script."
169
- msgstr ""
170
-
171
- #: views/help/gopro.php:72 views/help/gopro.php:100
172
- msgid "Migration Wizard"
173
- msgstr "برنامه جادویی انتقال"
174
-
175
- #: views/help/gopro.php:73 views/help/gopro.php:101
176
- msgid ""
177
- "With just two files (archive &amp; installer.php) move your site to a new "
178
- "location."
179
- msgstr ""
180
-
181
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
182
- msgid "Duplicator Pro"
183
- msgstr "ایجاد کننده بسته نصبی تجاری یا همان پولی"
184
-
185
- #: views/help/gopro.php:104
186
- msgid "Scheduled Backups"
187
- msgstr ""
188
-
189
- #: views/help/gopro.php:105
190
- msgid ""
191
- "Automate the creation of your packages to run at various scheduled intervals."
192
- msgstr ""
193
-
194
- #: views/help/gopro.php:108
195
- msgid "Dropbox Support"
196
- msgstr ""
197
-
198
- #: views/help/gopro.php:109
199
- msgid "Backup up your entire site to Dropbox."
200
- msgstr ""
201
-
202
- #: views/help/gopro.php:112
203
- msgid "FTP Support"
204
- msgstr ""
205
-
206
- #: views/help/gopro.php:113
207
- msgid "Backup up your entire site to an FTP server."
208
- msgstr ""
209
-
210
- #: views/help/gopro.php:116
211
- msgid "Customer Support"
212
- msgstr "پشتیبانی 24 ساعته"
213
-
214
- #: views/help/gopro.php:117
215
- msgid ""
216
- "Server setups can be quite complex, with pro you get prompt help to get your "
217
- "site backed up and moved."
218
- msgstr ""
219
-
220
- #: views/help/gopro.php:124
221
- msgid "Check It Out!"
222
- msgstr "بررسی"
223
-
224
- #: views/help/help.php:38
225
- msgid ""
226
- "Migrating WordPress is a complex process and the logic to make all the magic "
227
- "happen smoothly may not work quickly with every site. With over 30,000 "
228
- "plugins and a very complex server eco-system some migrations may run into "
229
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
230
- "can help with many common issues. Resources to additional support, approved "
231
- "hosting, and alternatives to fit your needs can be found below."
232
- msgstr ""
233
- "مهاجرت وردپرس، یک فرآیند پیچیده و منطق را به همه سحر و جادو اتفاق می افتد "
234
- "هموار ممکن است به سرعت با هر سایت کار نمی کند. با بیش از 30000 پلاگین ها و "
235
- "سرور اکو سیستم بسیار پیچیده برخی از مهاجرت ممکن است به مسائل اجرا شود. به "
236
- "همین دلیل است نسخه برداری شامل یک مرکز آموزش دقیق است که می تواند با بسیاری "
237
- "از مسائل مشترک کمک کند. منابع برای حمایت از اضافی، میزبانی تایید، و جایگزین "
238
- "های مناسب نیازهای شما می تواند زیر آمده است."
239
-
240
- #: views/help/help.php:50
241
- msgid "Knowledgebase"
242
- msgstr "مرکز آموزش"
243
-
244
- #: views/help/help.php:53
245
- msgid "Complete Online Documentation"
246
- msgstr "مستندات کامل آنلاین"
247
-
248
- #: views/help/help.php:55
249
- msgid "Choose A Section"
250
- msgstr "یک بخش را انتخاب کنید"
251
-
252
- #: views/help/help.php:56
253
- msgid "Quick Start"
254
- msgstr "شروع سریع"
255
-
256
- #: views/help/help.php:57
257
- msgid "User Guide"
258
- msgstr "راهنمای کاربر"
259
-
260
- #: views/help/help.php:58
261
- msgid "FAQs"
262
- msgstr "پرسش و پاسخ"
263
-
264
- #: views/help/help.php:59
265
- msgid "Change Log"
266
- msgstr "تغییر گزارشات"
267
-
268
- #: views/help/help.php:60
269
- msgid "Product Page"
270
- msgstr "صفحه محصولات"
271
-
272
- #: views/help/help.php:69
273
- msgid "Online Support"
274
- msgstr "پشتیبانی آنلاین"
275
-
276
- #: views/help/help.php:72
277
- msgid "Get Help From IT Professionals"
278
- msgstr "کمک گرفتن از حرفه ای های IT"
279
-
280
- #: views/help/help.php:76
281
- msgid "Get Support!"
282
- msgstr "گرفتن پشتیبانی"
283
-
284
- #: views/help/help.php:88
285
- msgid "Approved Hosting"
286
- msgstr "هاستینگ های تایید شده"
287
-
288
- #: views/help/help.php:91
289
- msgid "Servers That Work With Duplicator"
290
- msgstr "سرور های هاستینگی که از افزونه ایجاد کننده بسته نصبی پشتیبانی می کنند"
291
-
292
- #: views/help/help.php:94
293
- msgid "Trusted Providers!"
294
- msgstr "ارائه دهندگان خدمات قابل اعتماد!"
295
-
296
- #: views/help/help.php:104
297
- msgid "Alternatives"
298
- msgstr "جایگزین"
299
-
300
- #: views/help/help.php:107
301
- msgid "Other Commercial Resources"
302
- msgstr "سایر منابع تجاری"
303
-
304
- #: views/help/help.php:110
305
- msgid "Pro Solutions!"
306
- msgstr "راه حل های حرفه ای!"
307
-
308
- #: views/packages/list-nodata.php:7
309
- msgid "No Packages Found."
310
- msgstr "هیچ بسته آسان نصبی وجود ندارد."
311
-
312
- #: views/packages/list-nodata.php:8
313
- msgid "Click the 'Create New' button to build a package."
314
- msgstr ""
315
- "برای ایجاد بسته آسان نصبی از دکمه بالای صفحه یعنی ( ایجاد بسته آسان نصبی "
316
- "جدید ) استفاده نمایید."
317
-
318
- #: views/packages/list-nodata.php:13
319
- msgid "Please visit the"
320
- msgstr "در صورت نیاز لطفا از "
321
-
322
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
323
- #: views/packages/new1.base.php:234
324
- msgid "help page"
325
- msgstr "صفحه راهنما"
326
-
327
- #: views/packages/list-nodata.php:15
328
- msgid "for additional support"
329
- msgstr ""
330
- "برای پیشتیبانی بیشتر استفاده کنید.<p>برای رفتن به صفحه راهنما از منو های "
331
- "داخل افزونه کپی کننده به گزینه راهنما مراجعه نمایید!</p>"
332
-
333
- #: views/packages/list-nodata.php:24
334
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
335
- msgstr ""
336
-
337
- #: views/packages/list-nodata.php:27
338
- msgid "To get an older package please visit the"
339
- msgstr ""
340
-
341
- #: views/packages/list-nodata.php:29
342
- msgid "and look for the Change Log link for additional instructions."
343
- msgstr ""
344
-
345
- #: views/packages/list-nodata.php:33
346
- msgid "Hide this message"
347
- msgstr "این پیغام را ببند"
348
-
349
- #: views/packages/packages.php:39
350
- msgid "Help Support Duplicator"
351
- msgstr "پشتیبان ایجاد کننده بسته نصبی"
352
-
353
- #: views/packages/packages.php:50
354
- msgid "Bulk Actions"
355
- msgstr "انجام عملیات کلی"
356
-
357
- #: views/packages/packages.php:51
358
- msgid "Delete selected package(s)"
359
- msgstr "حذف بسته های نصبی انتخاب شده(s)"
360
-
361
- #: views/packages/packages.php:51
362
- msgid "Delete"
363
- msgstr "حذف"
364
-
365
- #: views/packages/packages.php:53
366
- msgid "Apply"
367
- msgstr "اعمال"
368
-
369
- #: views/packages/packages.php:58
370
- msgid "Package Logs"
371
- msgstr "گزارش بسته نصبی"
372
-
373
- #: views/packages/packages.php:61 views/packages/new1.base.php:96
374
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
375
- #: views/packages/new3.base.php:89
376
- msgid "All Packages"
377
- msgstr "تمام بسته های نصبی"
378
-
379
- #: views/packages/packages.php:62 views/packages/new1.base.php:97
380
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
381
- msgid "Create New"
382
- msgstr "ایجاد بسته نصبی جدید"
383
-
384
- #: views/packages/packages.php:87
385
- msgid "Select all packages"
386
- msgstr "انتخاب همه بسته"
387
-
388
- #: views/packages/packages.php:88 views/packages/new3.base.php:108
389
- msgid "Details"
390
- msgstr "جزئیات"
391
-
392
- #: views/packages/packages.php:89
393
- msgid "Created"
394
- msgstr "زمان ایجاد"
395
-
396
- #: views/packages/packages.php:90 views/packages/new2.base.php:222
397
- #: views/packages/new2.base.php:334
398
- msgid "Size"
399
- msgstr "حجم"
400
-
401
- #: views/packages/packages.php:91 views/packages/new1.inc.form.php:6
402
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
403
- msgid "Name"
404
- msgstr "نام بسته "
405
-
406
- #: views/packages/packages.php:93 views/settings/general.php:110
407
- msgid "Package"
408
- msgstr "بسته"
409
-
410
- #: views/packages/packages.php:124
411
- msgid "(No Notes Taken)"
412
- msgstr "(بدون یادداشت ها گرفته شده)"
413
-
414
- #: views/packages/packages.php:142 views/packages/packages.php:187
415
- msgid "View"
416
- msgstr "مشاهده شده"
417
-
418
- #: views/packages/packages.php:147 views/packages/new1.inc.form.php:176
419
- #: views/packages/new3.base.php:79
420
- msgid "Installer"
421
- msgstr "نصب کننده"
422
-
423
- #: views/packages/packages.php:150 views/packages/new1.inc.form.php:65
424
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
425
- msgid "Archive"
426
- msgstr "آرشیو بسته نصبی"
427
-
428
- #: views/packages/packages.php:155 views/packages/packages.php:200
429
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
430
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
431
- msgid "Version"
432
- msgstr "نسخه"
433
-
434
- #: views/packages/packages.php:156 views/packages/packages.php:201
435
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
436
- msgid "User"
437
- msgstr "کاربر دیتابیس"
438
-
439
- #: views/packages/packages.php:157 views/packages/packages.php:202
440
- msgid "Hash"
441
- msgstr "Hash"
442
-
443
- #: views/packages/packages.php:158 views/packages/packages.php:207
444
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
445
- msgid "Notes"
446
- msgstr "توضیحات"
447
-
448
- #: views/packages/packages.php:160
449
- msgid "Links"
450
- msgstr "لینک‌ها"
451
-
452
- #: views/packages/packages.php:161
453
- msgid "SQL"
454
- msgstr "اس‌کیوال"
455
-
456
- #: views/packages/packages.php:162
457
- msgid "Log"
458
- msgstr "گزارش"
459
-
460
- #: views/packages/packages.php:165
461
- msgid "Open Scan Report"
462
- msgstr "گزارش اسکن باز"
463
-
464
- #: views/packages/packages.php:166
465
- msgid "View Package Object"
466
- msgstr "مشاهده بسته شی"
467
-
468
- #: views/packages/packages.php:193
469
- msgid "View Error Details"
470
- msgstr "مشاهده جزئیات خطا"
471
-
472
- #: views/packages/packages.php:205
473
- msgid "Unrecoverable Error! Please remove this package."
474
- msgstr ""
475
-
476
- #: views/packages/packages.php:210
477
- msgid ""
478
- "This package has encountered errors. Click 'View Log' for more details. "
479
- "For additional support see the "
480
- msgstr ""
481
-
482
- #: views/packages/packages.php:211
483
- msgid "online knowledgebase"
484
- msgstr ""
485
-
486
- #: views/packages/packages.php:213
487
- msgid "View Log"
488
- msgstr "نمایش گزارش"
489
-
490
- #: views/packages/packages.php:236 views/packages/new2.base.php:219
491
- #: views/packages/new2.base.php:328
492
- msgid "Total Size"
493
- msgstr "اندازه کل"
494
-
495
- #: views/packages/packages.php:255
496
- msgid "Download Links"
497
- msgstr "لینک دانلود"
498
-
499
- #: views/packages/packages.php:258
500
- msgid "The following links contain sensitive data. Please share with caution!"
501
- msgstr ""
502
-
503
- #: views/packages/packages.php:264
504
- msgid ""
505
- "The database SQL script is a quick link to your database backup script. An "
506
- "exact copy is also stored in the package."
507
- msgstr ""
508
-
509
- #: views/packages/packages.php:287
510
- msgid ""
511
- "Please select an action from the bulk action drop down menu to perform a "
512
- "specific action."
513
- msgstr ""
514
-
515
- #: views/packages/packages.php:295
516
- msgid "Please select at least one package to delete."
517
- msgstr ""
518
-
519
- #: views/packages/packages.php:299
520
- msgid "Are you sure, you want to delete the selected package(s)?"
521
- msgstr "آیا مطمئنید که مایلید package(s) منتخب را حذف کنید؟"
522
-
523
- #: views/packages/packages.php:333
524
- msgid "Package File Links"
525
- msgstr "لینک فایل های بسته"
526
-
527
- #: views/packages/packages.php:336
528
- msgid "DATABASE"
529
- msgstr "پایگاه داده"
530
-
531
- #: views/packages/packages.php:337
532
- msgid "PACKAGE"
533
- msgstr "بسته"
534
-
535
- #: views/packages/packages.php:338
536
- msgid "INSTALLER"
537
- msgstr "نصب کننده"
538
-
539
- #: views/packages/packages.php:339
540
- msgid "LOG"
541
- msgstr "گزارش"
542
-
543
- #: views/packages/packages.php:340
544
- msgid "REPORT"
545
- msgstr "گزارش"
546
-
547
- #: views/packages/new1.base.php:13
548
- msgid "Package settings have been reset."
549
- msgstr ""
550
-
551
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
552
- #: views/packages/new3.base.php:33
553
- msgid "Setup"
554
- msgstr "نصب"
555
-
556
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
557
- #: views/packages/new3.base.php:34
558
- msgid "Scan"
559
- msgstr "آنالیز ( اسکن )"
560
-
561
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
562
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
563
- msgid "Build"
564
- msgstr "ایجاد بسته"
565
-
566
- #: views/packages/new1.base.php:91
567
- msgid "Step 1: Package Setup"
568
- msgstr "بخش 1 : تنظیمات بسته "
569
-
570
- #: views/packages/new1.base.php:115
571
- msgid "Requirements:"
572
- msgstr "موارد مورد نیاز:"
573
-
574
- #: views/packages/new1.base.php:124
575
- msgid ""
576
- "System requirements must pass for the Duplicator to work properly. Click "
577
- "each link for details."
578
- msgstr ""
579
-
580
- #: views/packages/new1.base.php:130
581
- msgid "PHP Support"
582
- msgstr "پشتیبان پی اچ پی"
583
-
584
- #: views/packages/new1.base.php:136
585
- msgid "PHP Version"
586
- msgstr "نسخه پی اچ پی"
587
-
588
- #: views/packages/new1.base.php:140
589
- msgid "Zip Archive Enabled"
590
- msgstr ""
591
-
592
- #: views/packages/new1.base.php:144
593
- msgid "Safe Mode Off"
594
- msgstr ""
595
-
596
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
597
- #: views/packages/new1.base.php:156
598
- msgid "Function"
599
- msgstr "تابع"
600
-
601
- #: views/packages/new1.base.php:161
602
- msgid ""
603
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
604
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
605
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
606
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
607
- "this section please contact your hosting provider or server administrator. "
608
- "For additional information see our online documentation."
609
- msgstr ""
610
-
611
- #: views/packages/new1.base.php:169
612
- msgid "Permissions"
613
- msgstr "دسترسی‌ها"
614
-
615
- #: views/packages/new1.base.php:172
616
- msgid "Required Paths"
617
- msgstr "مسیرهای مورد نیاز"
618
-
619
- #: views/packages/new1.base.php:183
620
- msgid ""
621
- "Permissions can be difficult to resolve on some systems. If the plugin can "
622
- "not read the above paths here are a few things to try. 1) Set the above "
623
- "paths to have permissions of 755 for directories and 644 for files. You can "
624
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
625
- "the owner/group settings for both files and directories. The PHP script "
626
- "owner and the process owner are different. The script owner owns the PHP "
627
- "script but the process owner is the user the script is running as, thus "
628
- "determining its capabilities/privileges in the file system. For more details "
629
- "contact your host or server administrator or visit the 'Help' menu under "
630
- "Duplicator for additional online resources."
631
- msgstr ""
632
-
633
- #: views/packages/new1.base.php:191
634
- msgid "Server Support"
635
- msgstr "پشتیبانی سرور"
636
-
637
- #: views/packages/new1.base.php:197
638
- msgid "MySQL Version"
639
- msgstr "نسخه MySQL"
640
-
641
- #: views/packages/new1.base.php:201
642
- msgid "MySQLi Support"
643
- msgstr "پشتیبانی از MySQLi"
644
-
645
- #: views/packages/new1.base.php:207
646
- msgid ""
647
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
648
- "the trailing 'i') is also required. Contact your server administrator and "
649
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
650
- "note in future versions support for other databases and extensions will be "
651
- "added."
652
- msgstr ""
653
-
654
- #: views/packages/new1.base.php:208
655
- msgid "more info"
656
- msgstr "اطلاعات بیشتر"
657
-
658
- #: views/packages/new1.base.php:217
659
- msgid "Reserved Files"
660
- msgstr "فایل محافظت شده"
661
-
662
- #: views/packages/new1.base.php:221
663
- msgid ""
664
- "None of the reserved files (installer.php, installer-data.sql and installer-"
665
- "log.txt) where found from a previous install. This means you are clear to "
666
- "create a new package."
667
- msgstr ""
668
-
669
- #: views/packages/new1.base.php:224
670
- msgid ""
671
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
672
- "names are installer.php, installer-data.sql and installer-log.txt. To "
673
- "archive your data correctly please remove any of these files from your "
674
- "WordPress root directory. Then try creating your package again."
675
- msgstr ""
676
-
677
- #: views/packages/new1.base.php:225
678
- msgid "Remove Files Now"
679
- msgstr "حذف فایل های حال حاضر"
680
-
681
- #: views/packages/new1.base.php:234
682
- msgid "For additional help please see the "
683
- msgstr ""
684
-
685
- #: views/packages/new1.inc.form.php:10
686
- msgid "Create a new default name"
687
- msgstr "ایجاد یک نام پیشفرض"
688
-
689
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
690
- msgid "Storage"
691
- msgstr "ذخیره سازی"
692
-
693
- #: views/packages/new1.inc.form.php:32
694
- msgid "Type"
695
- msgstr ""
696
-
697
- #: views/packages/new1.inc.form.php:33
698
- msgid "Location"
699
- msgstr ""
700
-
701
- #: views/packages/new1.inc.form.php:38
702
- msgid "Default"
703
- msgstr ""
704
-
705
- #: views/packages/new1.inc.form.php:39
706
- msgid "Local"
707
- msgstr ""
708
-
709
- #: views/packages/new1.inc.form.php:45
710
- msgid ""
711
- "All packages including the archive, installer and SQL script are stored in "
712
- "the location above. "
713
- msgstr ""
714
-
715
- #: views/packages/new1.inc.form.php:48
716
- msgid "Dropbox, FTP and other multiple storage options available in "
717
- msgstr ""
718
-
719
- #: views/packages/new1.inc.form.php:67
720
- msgid "File filter enabled"
721
- msgstr ""
722
-
723
- #: views/packages/new1.inc.form.php:68
724
- msgid "Database filter enabled"
725
- msgstr "بانک اطلاعات فیلتر فعال"
726
-
727
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
728
- msgid "Files"
729
- msgstr "فایل ها"
730
-
731
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
732
- #: views/packages/new2.base.php:312
733
- msgid "Database"
734
- msgstr "پایگاه داده"
735
-
736
- #: views/packages/new1.inc.form.php:90
737
- msgid "Enable File Filters"
738
- msgstr "فعال کردن فیلتر های پرونده"
739
-
740
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
741
- msgid "Separate all filters by semicolon"
742
- msgstr ""
743
-
744
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
745
- msgid "Directories"
746
- msgstr "پوشه ها"
747
-
748
- #: views/packages/new1.inc.form.php:96
749
- msgid "root path"
750
- msgstr "مسیر ریشه"
751
-
752
- #: views/packages/new1.inc.form.php:97
753
- msgid "wp-uploads"
754
- msgstr ""
755
-
756
- #: views/packages/new1.inc.form.php:98
757
- msgid "cache"
758
- msgstr "کش"
759
-
760
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
761
- msgid "(clear)"
762
- msgstr ""
763
-
764
- #: views/packages/new1.inc.form.php:102
765
- msgid "File extensions"
766
- msgstr "پسوند فایل ها"
767
-
768
- #: views/packages/new1.inc.form.php:104
769
- msgid "media"
770
- msgstr "فیلم یا آهنگ"
771
-
772
- #: views/packages/new1.inc.form.php:105
773
- msgid "archive"
774
- msgstr "بسته فشرده"
775
-
776
- #: views/packages/new1.inc.form.php:111
777
- msgid ""
778
- "The directory paths and extensions above will be be excluded from the "
779
- "archive file if enabled is checked."
780
- msgstr ""
781
- "مسیر دایرکتوری و پسوند بالا خواهد شد می شود محروم از آرشیو فایل اگر فعال "
782
- "بررسی می شود."
783
-
784
- #: views/packages/new1.inc.form.php:112
785
- msgid "Use the full path for directories and semicolons to separate all items."
786
- msgstr "مسیر کامل دایرکتوری و ویرگول برای جدا کردن همه موارد استفاده کنید."
787
-
788
- #: views/packages/new1.inc.form.php:123
789
- msgid "Enable Table Filters"
790
- msgstr "فعال کردن فیلتر های جدول"
791
-
792
- #: views/packages/new1.inc.form.php:124
793
- msgid "checked tables are excluded"
794
- msgstr "انتخاب جداول محروم شده"
795
-
796
- #: views/packages/new1.inc.form.php:129
797
- msgid "Include All"
798
- msgstr "حذف همه"
799
-
800
- #: views/packages/new1.inc.form.php:130
801
- msgid "Exclude All"
802
- msgstr "انتخاب همه"
803
-
804
- #: views/packages/new1.inc.form.php:163
805
- msgid ""
806
- "Checked tables will not be added to the database script. Excluding certain "
807
- "tables can possibly cause your site or plugins to not work correctly after "
808
- "install!"
809
- msgstr ""
810
- "بررسی جداول به اسکریپت بانک اطلاعاتی اضافه خواهد شد. جداول خاصی به جز "
811
- "احتمالا سایت یا افزونه هنوز کار درست پس از نصب می تواند باعث شود!"
812
-
813
- #: views/packages/new1.inc.form.php:181
814
- msgid "STEP 1 - INPUTS"
815
- msgstr "بخش 1 - ورودی ها"
816
-
817
- #: views/packages/new1.inc.form.php:184
818
- msgid "MySQL Server"
819
- msgstr "سرور مای اسکیوال"
820
-
821
- #: views/packages/new1.inc.form.php:187
822
- msgid "Host"
823
- msgstr "میزبان"
824
-
825
- #: views/packages/new1.inc.form.php:191
826
- msgid "Host Port"
827
- msgstr ""
828
-
829
- #: views/packages/new1.inc.form.php:203
830
- msgid "Advanced Options"
831
- msgstr "تنظیمات بیشتر"
832
-
833
- #: views/packages/new1.inc.form.php:209
834
- msgid "SSL"
835
- msgstr "گواهینامه SSL"
836
-
837
- #: views/packages/new1.inc.form.php:212
838
- msgid "Enforce on Admin"
839
- msgstr "اجرا توسط مدیر"
840
-
841
- #: views/packages/new1.inc.form.php:216
842
- msgid "Enforce on Logins"
843
- msgstr "اجرا بعد از ورود"
844
-
845
- #: views/packages/new1.inc.form.php:220
846
- msgid "Cache"
847
- msgstr "کش"
848
-
849
- #: views/packages/new1.inc.form.php:223
850
- msgid "Keep Enabled"
851
- msgstr "فعال نگه داشتن"
852
-
853
- #: views/packages/new1.inc.form.php:227
854
- msgid "Keep Home Path"
855
- msgstr "نگه داشتن مسیر خانه"
856
-
857
- #: views/packages/new1.inc.form.php:235
858
- msgid "STEP 2 - INPUTS"
859
- msgstr "بخش 2 - ورودی ها"
860
-
861
- #: views/packages/new1.inc.form.php:239
862
- msgid "New URL"
863
- msgstr "آدرس جدید"
864
-
865
- #: views/packages/new1.inc.form.php:245
866
- msgid "The installer can have these fields pre-filled at install time."
867
- msgstr "نصب می توانید این زمینه ها در زمان نصب از پیش پر شده است."
868
-
869
- #: views/packages/new1.inc.form.php:245
870
- msgid "All values are optional."
871
- msgstr "همه مقادیر اختیاری هستند."
872
-
873
- #: views/packages/new1.inc.form.php:254
874
- msgid "Reset"
875
- msgstr "بازگشت به تنظیمات اولیه"
876
-
877
- #: views/packages/new1.inc.form.php:255
878
- msgid "Next"
879
- msgstr "ادامه"
880
-
881
- #: views/packages/new1.inc.form.php:267
882
- msgid ""
883
- "This will reset all of the current package settings. Would you like to "
884
- "continue?"
885
- msgstr ""
886
-
887
- #: views/packages/new2.base.php:64
888
- msgid "Step 2: System Scan"
889
- msgstr "بخش 2 : آنالیز سیستم"
890
-
891
- #: views/packages/new2.base.php:81
892
- msgid "Scanning Site"
893
- msgstr "آنالیز ( اسکن ) در سایت"
894
-
895
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
896
- msgid "Please Wait..."
897
- msgstr "لطفا منتظر بمانید ...."
898
-
899
- #: views/packages/new2.base.php:89
900
- msgid "Scan Complete"
901
- msgstr "آنالیز ( اسکن ) کامل شده"
902
-
903
- #: views/packages/new2.base.php:91
904
- msgid ""
905
- "Scan checks are not required to pass, however they could cause issues on "
906
- "some systems."
907
- msgstr ""
908
- "آنالیز ( اسکن ) انجام شد تمام موارد مورد تایید می باشد با این حال بسته به "
909
- "سیستم های مختلف می تواند موارد تغییر کند."
910
-
911
- #: views/packages/new2.base.php:92
912
- msgid "Process Time:"
913
- msgstr "زمان اجرا:"
914
-
915
- #: views/packages/new2.base.php:101
916
- msgid "Server"
917
- msgstr "سرور"
918
-
919
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
920
- msgid "Diagnostics"
921
- msgstr "تشخیص"
922
-
923
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
924
- #: views/tools/diagnostics.php:106
925
- msgid "Web Server"
926
- msgstr "سرور وب"
927
-
928
- #: views/packages/new2.base.php:119
929
- msgid "Supported web servers:"
930
- msgstr ""
931
-
932
- #: views/packages/new2.base.php:129
933
- msgid "PHP Setup"
934
- msgstr ""
935
-
936
- #: views/packages/new2.base.php:135
937
- msgid "Open Base Dir"
938
- msgstr ""
939
-
940
- #: views/packages/new2.base.php:137
941
- msgid ""
942
- "Issues might occur when [open_basedir] is enabled. Work with your server "
943
- "admin to disable this value in the php.ini file if you’re having issues "
944
- "building a package."
945
- msgstr ""
946
-
947
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
948
- #: views/packages/new2.base.php:155
949
- msgid "details"
950
- msgstr ""
951
-
952
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
953
- msgid "Max Execution Time"
954
- msgstr "حداکثر زمان اجرا"
955
-
956
- #: views/packages/new2.base.php:145
957
- #, php-format
958
- msgid ""
959
- "Issues might occur for larger packages when the [max_execution_time] value "
960
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
961
- "seconds or higher. An attempt is made to override this value if the server "
962
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
963
- msgstr ""
964
-
965
- #: views/packages/new2.base.php:147
966
- msgid ""
967
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
968
- "timeout passes and you still see a build interrupt messages, then your web "
969
- "server could be killing the process. If you are limited on processing "
970
- "time, consider using the database or file filters to shrink the size of your "
971
- "overall package. However use caution as excluding the wrong resources can "
972
- "cause your install to not work properly."
973
- msgstr ""
974
-
975
- #: views/packages/new2.base.php:152
976
- msgid "MySQLi"
977
- msgstr ""
978
-
979
- #: views/packages/new2.base.php:154
980
- msgid ""
981
- "Creating the package does not require the mysqli module. However the "
982
- "installer.php file requires that the PHP module mysqli be installed on the "
983
- "server it is deployed on."
984
- msgstr ""
985
-
986
- #: views/packages/new2.base.php:164
987
- msgid "WordPress"
988
- msgstr "وردپرس"
989
-
990
- #: views/packages/new2.base.php:169
991
- msgid "WordPress Version"
992
- msgstr "ورژن وردپرس"
993
-
994
- #: views/packages/new2.base.php:171
995
- #, php-format
996
- msgid ""
997
- "It is recommended to have a version of WordPress that is greater than %1$s"
998
- msgstr ""
999
-
1000
- #: views/packages/new2.base.php:175
1001
- msgid "Core Files"
1002
- msgstr "فایل های هسته ای"
1003
-
1004
- #: views/packages/new2.base.php:177
1005
- msgid ""
1006
- "If the scanner is unable to locate the wp-config.php file in the root "
1007
- "directory, then you will need to manually copy it to its new location."
1008
- msgstr ""
1009
-
1010
- #: views/packages/new2.base.php:183
1011
- msgid "Cache Path"
1012
- msgstr ""
1013
-
1014
- #: views/packages/new2.base.php:185
1015
- msgid ""
1016
- "Cached data will lead to issues at install time and increases your archive "
1017
- "size. It is recommended to empty your cache directory at build time. Use "
1018
- "caution when removing data from the cache directory. If you have a cache "
1019
- "plugin review the documentation for how to empty it; simply removing files "
1020
- "might cause errors on your site. The cache size minimum threshold is "
1021
- "currently set at "
1022
- msgstr ""
1023
-
1024
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1025
- msgid "Enabled"
1026
- msgstr "فعال"
1027
-
1028
- #: views/packages/new2.base.php:223
1029
- msgid "File Count"
1030
- msgstr "تعداد پرونده"
1031
-
1032
- #: views/packages/new2.base.php:224
1033
- msgid "Directory Count"
1034
- msgstr "تعداد دایرکتوری"
1035
-
1036
- #: views/packages/new2.base.php:227
1037
- #, php-format
1038
- msgid ""
1039
- "Total size represents all files minus any filters that have been setup. The "
1040
- "current thresholds that trigger warnings are %1$s for the entire site and "
1041
- "%2$s for large files."
1042
- msgstr ""
1043
-
1044
- #: views/packages/new2.base.php:239
1045
- msgid "Name Checks"
1046
- msgstr ""
1047
-
1048
- #: views/packages/new2.base.php:244
1049
- msgid ""
1050
- "File or directory names may cause issues when working across different "
1051
- "environments and servers. Names that are over 250 characters, contain "
1052
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1053
- "issues in a remote enviroment. It is recommended to remove or filter these "
1054
- "files before building the archive if you have issues at install time."
1055
- msgstr ""
1056
-
1057
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1058
- msgid "Show Paths"
1059
- msgstr "نشان دادن مسیر"
1060
-
1061
- #: views/packages/new2.base.php:256
1062
- msgid "Large Files"
1063
- msgstr "فایل های بزرگ"
1064
-
1065
- #: views/packages/new2.base.php:261
1066
- #, php-format
1067
- msgid ""
1068
- "Large files such as movies or other backuped data can cause issues with "
1069
- "timeouts. The current check for large files is %1$s per file. If your "
1070
- "having issues creating a package consider excluding these files with the "
1071
- "files filter and manually moving them to your new location."
1072
- msgstr ""
1073
-
1074
- #: views/packages/new2.base.php:275
1075
- msgid "View Filters"
1076
- msgstr "مشاهده فیلتر ها"
1077
-
1078
- #: views/packages/new2.base.php:283
1079
- msgid "No directory filters have been set."
1080
- msgstr ""
1081
-
1082
- #: views/packages/new2.base.php:288
1083
- msgid "File Extensions"
1084
- msgstr "پسوند فایل ها"
1085
-
1086
- #: views/packages/new2.base.php:293
1087
- msgid "No file extension filters have been set."
1088
- msgstr ""
1089
-
1090
- #: views/packages/new2.base.php:297
1091
- msgid ""
1092
- "The lists above are the directories and file extension that will be excluded "
1093
- "from the archive."
1094
- msgstr ""
1095
-
1096
- #: views/packages/new2.base.php:332
1097
- msgid "Tables"
1098
- msgstr "جدول"
1099
-
1100
- #: views/packages/new2.base.php:333
1101
- msgid "Records"
1102
- msgstr "رکورد"
1103
-
1104
- #: views/packages/new2.base.php:336
1105
- msgid "repair and optimization"
1106
- msgstr "تعمیر و بهینه سازی"
1107
-
1108
- #: views/packages/new2.base.php:337
1109
- #, php-format
1110
- msgid ""
1111
- "Total size and row count for all database tables are approximate values. "
1112
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1113
- "databases take time to process and can cause issues with server timeout and "
1114
- "memory settings. Running a %3$s on your database can also help improve the "
1115
- "overall size and performance. If your server supports shell_exec and "
1116
- "mysqldump you can try to enable this option from the settings menu."
1117
- msgstr ""
1118
-
1119
- #: views/packages/new2.base.php:349
1120
- msgid "Table Details"
1121
- msgstr "جدول جزئیات"
1122
-
1123
- #: views/packages/new2.base.php:360
1124
- msgid "Name:"
1125
- msgstr "نام:"
1126
-
1127
- #: views/packages/new2.base.php:361
1128
- msgid "Host:"
1129
- msgstr "میزبان:"
1130
-
1131
- #: views/packages/new2.base.php:362
1132
- msgid "Build Mode:"
1133
- msgstr "نحوه ساخت:"
1134
-
1135
- #: views/packages/new2.base.php:373
1136
- msgid "Scan Error"
1137
- msgstr "خطا در آنالیز ( اسکن )"
1138
-
1139
- #: views/packages/new2.base.php:374
1140
- msgid "Please try again!"
1141
- msgstr "لطفا دوباره سعی کنید"
1142
-
1143
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1144
- msgid "Server Status:"
1145
- msgstr "وضعیت سرور:"
1146
-
1147
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1148
- msgid "Error Message:"
1149
- msgstr "پیام خطا:"
1150
-
1151
- #: views/packages/new2.base.php:386
1152
- msgid "Back"
1153
- msgstr "بازگشت"
1154
-
1155
- #: views/packages/new2.base.php:387
1156
- msgid "Rescan"
1157
- msgstr "آنالیز یا ( اسکن ) مجدد"
1158
-
1159
- #: views/packages/new2.base.php:486
1160
- msgid "Unable to report on any tables"
1161
- msgstr "قادر به گزارش هیچ کدام از جداول نمی باشم"
1162
-
1163
- #: views/packages/new2.base.php:495
1164
- msgid "Unable to report on database stats"
1165
- msgstr "قادر به گزارش آمار پایگاه داده نمی باشم"
1166
-
1167
- #: views/packages/new2.base.php:514
1168
- msgid "DIR"
1169
- msgstr ""
1170
-
1171
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1172
- msgid "FILE"
1173
- msgstr "پرونده"
1174
-
1175
- #: views/packages/new2.base.php:523
1176
- msgid "No name warning issues found."
1177
- msgstr ""
1178
-
1179
- #: views/packages/new2.base.php:529
1180
- msgid "No large files found."
1181
- msgstr "هیچ فایلی یافت یا انتخاب نشد"
1182
-
1183
- #: views/packages/new3.base.php:38
1184
- msgid "Step 3: Build Package"
1185
- msgstr "بخش 3 : ساخت بسته آسان نصبی"
1186
-
1187
- #: views/packages/new3.base.php:55
1188
- msgid "Building Package"
1189
- msgstr "در حال ساخت بسته آسان نصبی"
1190
-
1191
- #: views/packages/new3.base.php:58
1192
- msgid "Keep this window open during the build process."
1193
- msgstr "این پنجره را در طول فرایند ساخت هرگز نبندید."
1194
-
1195
- #: views/packages/new3.base.php:59
1196
- msgid "This may take several minutes."
1197
- msgstr "این ممکن است چند دقیقه طول بکشد."
1198
-
1199
- #: views/packages/new3.base.php:63
1200
- msgid "Build Status"
1201
- msgstr "وضعیت ساخت بسته آسان نصبی"
1202
-
1203
- #: views/packages/new3.base.php:70
1204
- msgid "Package Completed"
1205
- msgstr "بسته آسان نصبی با موفقییت تولید شد"
1206
-
1207
- #: views/packages/new3.base.php:75
1208
- msgid "Process Time"
1209
- msgstr "فرایند تولید بسته"
1210
-
1211
- #: views/packages/new3.base.php:100
1212
- msgid "Build Interrupt"
1213
- msgstr "ایجاد وقفه"
1214
-
1215
- #: views/packages/new3.base.php:101
1216
- msgid "The current build has experienced an issue."
1217
- msgstr ""
1218
-
1219
- #: views/packages/new3.base.php:103
1220
- msgid "Please try the process again."
1221
- msgstr "لطفا این فرآیند را دوباره امتحان کنید."
1222
-
1223
- #: views/packages/new3.base.php:105
1224
- msgid "Diagnose"
1225
- msgstr ""
1226
-
1227
- #: views/packages/new3.base.php:106
1228
- msgid "Try Again"
1229
- msgstr "دوباره امتحان کردن"
1230
-
1231
- #: views/packages/new3.base.php:122
1232
- msgid "Notice"
1233
- msgstr "هشدار"
1234
-
1235
- #: views/packages/new3.base.php:125
1236
- msgid "Build Folder:"
1237
- msgstr "پوشه ایجاد:"
1238
-
1239
- #: views/packages/new3.base.php:127
1240
- msgid ""
1241
- "Some servers close connections quickly; yet the build can continue to run in "
1242
- "the background. To validate if a build is still running; open the 'tmp' "
1243
- "folder above and see if the archive file is growing in size. If it is not "
1244
- "then your server has strict timeout constraints. Please visit the support "
1245
- "page for additional resources."
1246
- msgstr ""
1247
-
1248
- #: views/packages/new3.base.php:136
1249
- msgid "Package Log"
1250
- msgstr "گزارش بسته نصبی"
1251
-
1252
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1253
- msgid "General"
1254
- msgstr "عمومی"
1255
-
1256
- #: views/settings/general.php:6
1257
- msgid "Settings Saved"
1258
- msgstr "تنظیمات ذخیره شد"
1259
-
1260
- #: views/settings/general.php:75
1261
- msgid "Plugin"
1262
- msgstr "افزونه"
1263
-
1264
- #: views/settings/general.php:83
1265
- msgid "Uninstall"
1266
- msgstr "پاک کردن افزونه"
1267
-
1268
- #: views/settings/general.php:86
1269
- msgid "Delete Plugin Settings"
1270
- msgstr "حذف تنظیمات افزونه"
1271
-
1272
- #: views/settings/general.php:89
1273
- msgid "Delete Entire Storage Directory"
1274
- msgstr "حذف دایرکتوری ذخیره سازی کل"
1275
-
1276
- #: views/settings/general.php:96
1277
- msgid "Full Path"
1278
- msgstr "مسیر کامل"
1279
-
1280
- #: views/settings/general.php:99
1281
- msgid "Disable .htaccess File In Storage Directory"
1282
- msgstr "غیر فعال کردن فایل htaccess در دایرکتوری ذخیره سازی"
1283
-
1284
- #: views/settings/general.php:101
1285
- msgid "Disable if issues occur when downloading installer/archive files."
1286
- msgstr "اگر مسائل را رخ می دهد که دانلود نصب و آرشیو فایل ها را غیر فعال کنید."
1287
-
1288
- #: views/settings/general.php:114
1289
- msgid "Archive Flush"
1290
- msgstr "آرشیو بسته نصبی"
1291
-
1292
- #: views/settings/general.php:117
1293
- msgid "Attempt Network Keep Alive"
1294
- msgstr "زنده نگه داشتن شبکه تلاش"
1295
-
1296
- #: views/settings/general.php:118
1297
- msgid "recommended only for large archives"
1298
- msgstr "توصیه می شود تنها برای آرشیو بزرگ"
1299
-
1300
- #: views/settings/general.php:120
1301
- msgid ""
1302
- "This will attempt to keep a network connection established for large "
1303
- "archives."
1304
- msgstr "این تلاش برای حفظ یک اتصال شبکه برای آرشیو بزرگ است."
1305
-
1306
- #: views/settings/general.php:125
1307
- msgid "Database Build"
1308
- msgstr "ساخت پایگاه داده"
1309
-
1310
- #: views/settings/general.php:128
1311
- msgid "Use PHP"
1312
- msgstr "استفاده از پی اچ پی"
1313
-
1314
- #: views/settings/general.php:131
1315
- msgid "Query Limit Size"
1316
- msgstr "پرس و جو حد اندازه"
1317
-
1318
- #: views/settings/general.php:140
1319
- msgid "higher values speed up build times but uses more memory"
1320
- msgstr "مقادیر بالاتر سرعت بار ساخت اما با استفاده از حافظه بیشتر"
1321
-
1322
- #: views/settings/general.php:147
1323
- msgid "This server does not have shell_exec configured to run."
1324
- msgstr ""
1325
-
1326
- #: views/settings/general.php:149
1327
- msgid "Please contact the server administrator to enable this feature."
1328
- msgstr ""
1329
-
1330
- #: views/settings/general.php:154
1331
- msgid "Use mysqldump"
1332
- msgstr "استفاده از mysqldump"
1333
-
1334
- #: views/settings/general.php:155
1335
- msgid "recommended for large databases"
1336
- msgstr "توصیه می شود برای پایگاه های داده بزرگ"
1337
-
1338
- #: views/settings/general.php:160
1339
- msgid "Working Path:"
1340
- msgstr "مسیر در حال کار:"
1341
-
1342
- #: views/settings/general.php:166
1343
- msgid ""
1344
- "Mysqldump was not found at its default location or the location provided. "
1345
- "Please enter a path to a valid location where mysqldump can run. If the "
1346
- "problem persist contact your server administrator."
1347
- msgstr ""
1348
-
1349
- #: views/settings/general.php:171
1350
- msgid "Add Custom Path:"
1351
- msgstr "مسیر سفارشی اضافه کنید:"
1352
-
1353
- #: views/settings/general.php:175
1354
- msgid "This is the path to your mysqldump program."
1355
- msgstr "این مسیر برای برنامه mysqldump شما است."
1356
-
1357
- #: views/settings/general.php:184
1358
- msgid "Package Debug"
1359
- msgstr "اشکال زدایی بسته"
1360
-
1361
- #: views/settings/general.php:187
1362
- msgid "Show Package Debug Status in Packages Screen"
1363
- msgstr "نمایش وضعیت اشکال زدایی بسته در صفحه نمایش بسته"
1364
-
1365
- #: views/settings/general.php:195
1366
- msgid "Roles & Capabilities"
1367
- msgstr "نقش ها و قابلیت ها"
1368
-
1369
- #: views/settings/general.php:200
1370
- msgid "Custom Roles"
1371
- msgstr "نقش های سفارشی"
1372
-
1373
- #: views/settings/general.php:203
1374
- msgid "Enable User Role Editor Plugin Integration"
1375
- msgstr "فعال کردن قابلیت هماهنگ سازی با پلاگین User Role Editor"
1376
-
1377
- #: views/settings/general.php:210
1378
- msgid "The User Role Editor Plugin"
1379
- msgstr "پلاگین ویرایش نقش کاربران"
1380
-
1381
- #: views/settings/general.php:211
1382
- msgid "Free"
1383
- msgstr "رایگان"
1384
-
1385
- #: views/settings/general.php:212
1386
- msgid "or"
1387
- msgstr "یا"
1388
-
1389
- #: views/settings/general.php:213
1390
- msgid "Professional"
1391
- msgstr "تجاری"
1392
-
1393
- #: views/settings/general.php:214
1394
- msgid "must be installed to use"
1395
- msgstr "باید نصب کنید برای استفاده از"
1396
-
1397
- #: views/settings/general.php:215
1398
- msgid "this feature."
1399
- msgstr "این ویژگی"
1400
-
1401
- #: views/settings/general.php:227
1402
- msgid "Save Settings"
1403
- msgstr "ذخیره تغییرات"
1404
-
1405
- #: views/tools/cleanup.php:8
1406
- msgid "Installer File Cleanup Ran."
1407
- msgstr "نصب فایل پاک کردن ران."
1408
-
1409
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1410
- msgid "Legacy data removed."
1411
- msgstr "حذف داده های میراث."
1412
-
1413
- #: views/tools/cleanup.php:16
1414
- msgid "Build cache removed."
1415
- msgstr "پاک کردن کش"
1416
-
1417
- #: views/tools/cleanup.php:73
1418
- msgid ""
1419
- "If the installer files did not successfully get removed, then you WILL need "
1420
- "to remove them manually"
1421
- msgstr ""
1422
-
1423
- #: views/tools/cleanup.php:74
1424
- msgid ""
1425
- "Please remove all installer files to avoid leaving open security issues on "
1426
- "your server"
1427
- msgstr ""
1428
-
1429
- #: views/tools/cleanup.php:82
1430
- msgid "Data Cleanup"
1431
- msgstr "پاک کردن داده ها"
1432
-
1433
- #: views/tools/cleanup.php:85
1434
- msgid "Delete Reserved Files"
1435
- msgstr "حذف فایلها و پوشه های محافظت شده"
1436
-
1437
- #: views/tools/cleanup.php:86
1438
- msgid "Removes all installer files from a previous install"
1439
- msgstr "تمام فایل های نصب را از یک نصب قبلی حذف می کند"
1440
-
1441
- #: views/tools/cleanup.php:89
1442
- msgid "Delete Legacy Data"
1443
- msgstr "حذف داده های میراث"
1444
-
1445
- #: views/tools/cleanup.php:90
1446
- msgid "Removes all legacy data and settings prior to version"
1447
- msgstr "حذف همه داده های میراث و تنظیمات قبل از نسخه"
1448
-
1449
- #: views/tools/cleanup.php:93
1450
- msgid "Clear Build Cache"
1451
- msgstr "پاک کردن کش"
1452
-
1453
- #: views/tools/cleanup.php:94
1454
- msgid "Removes all build data from:"
1455
- msgstr "حذف همه داده ها از ساخت:"
1456
-
1457
- #: views/tools/cleanup.php:107
1458
- #, php-format
1459
- msgid "This action will remove all legacy settings prior to version %1$s. "
1460
- msgstr ""
1461
-
1462
- #: views/tools/cleanup.php:108
1463
- msgid ""
1464
- "Legacy settings are only needed if you plan to migrate back to an older "
1465
- "version of this plugin."
1466
- msgstr ""
1467
-
1468
- #: views/tools/cleanup.php:120
1469
- msgid ""
1470
- "This process will remove all build cache files. Be sure no packages are "
1471
- "currently building or else they will be cancelled."
1472
- msgstr ""
1473
-
1474
- #: views/tools/controller.php:16
1475
- msgid "Logging"
1476
- msgstr "گزارشات"
1477
-
1478
- #: views/tools/controller.php:18
1479
- msgid "Cleanup"
1480
- msgstr "گزارش های پاکسازی"
1481
-
1482
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1483
- msgid "unknow"
1484
- msgstr ""
1485
-
1486
- #: views/tools/diagnostics.php:39
1487
- msgid "Plugin settings reset."
1488
- msgstr "بازگشت به تنظیمات اولیه"
1489
-
1490
- #: views/tools/diagnostics.php:40
1491
- msgid "View state settings reset."
1492
- msgstr "تنظیمات بازنشانی شد"
1493
-
1494
- #: views/tools/diagnostics.php:41
1495
- msgid "Active package settings reset."
1496
- msgstr "تنظیم مجدد تنظیمات فعال بسته."
1497
-
1498
- #: views/tools/diagnostics.php:81
1499
- msgid "Server Settings"
1500
- msgstr "تنظیمات سرور"
1501
-
1502
- #: views/tools/diagnostics.php:90
1503
- msgid "Duplicator Version"
1504
- msgstr "نسخه ایجاد کننده بسته نصبی"
1505
-
1506
- #: views/tools/diagnostics.php:94
1507
- msgid "Operating System"
1508
- msgstr "سیستم عامل"
1509
-
1510
- #: views/tools/diagnostics.php:98
1511
- msgid "Timezone"
1512
- msgstr "منطقه زمانی"
1513
-
1514
- #: views/tools/diagnostics.php:102
1515
- msgid "Server Time"
1516
- msgstr "زمان سرور"
1517
-
1518
- #: views/tools/diagnostics.php:110
1519
- msgid "APC Enabled"
1520
- msgstr "APC فعال"
1521
-
1522
- #: views/tools/diagnostics.php:114
1523
- msgid "Root Path"
1524
- msgstr "مسیر ریشه"
1525
-
1526
- #: views/tools/diagnostics.php:118
1527
- msgid "ABSPATH"
1528
- msgstr "مسیر کامل دایرکتوری وردپرس"
1529
-
1530
- #: views/tools/diagnostics.php:122
1531
- msgid "Plugins Path"
1532
- msgstr "مسیر پلاگین ها"
1533
-
1534
- #: views/tools/diagnostics.php:126
1535
- msgid "Loaded PHP INI"
1536
- msgstr "مسیر php.ini"
1537
-
1538
- #: views/tools/diagnostics.php:130
1539
- msgid "Server IP"
1540
- msgstr "آی پی سرور"
1541
-
1542
- #: views/tools/diagnostics.php:134
1543
- msgid "Client IP"
1544
- msgstr "آی پی کاربر"
1545
-
1546
- #: views/tools/diagnostics.php:145
1547
- msgid "Langugage"
1548
- msgstr "زبان"
1549
-
1550
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
1551
- msgid "Charset"
1552
- msgstr "انکودینگ"
1553
-
1554
- #: views/tools/diagnostics.php:153
1555
- msgid "Memory Limit "
1556
- msgstr "محدوديت حافظه وردپرس"
1557
-
1558
- #: views/tools/diagnostics.php:154
1559
- msgid "Max"
1560
- msgstr "بیشترین"
1561
-
1562
- #: views/tools/diagnostics.php:172
1563
- msgid "Safe Mode"
1564
- msgstr ""
1565
-
1566
- #: views/tools/diagnostics.php:176
1567
- msgid "On"
1568
- msgstr "روشن"
1569
-
1570
- #: views/tools/diagnostics.php:176
1571
- msgid "Off"
1572
- msgstr "خاموش"
1573
-
1574
- #: views/tools/diagnostics.php:181
1575
- msgid "Memory Limit"
1576
- msgstr "محدوديت حافظه"
1577
-
1578
- #: views/tools/diagnostics.php:185
1579
- msgid "Memory In Use"
1580
- msgstr "حافظه در حال استفاده"
1581
-
1582
- #: views/tools/diagnostics.php:193
1583
- msgid "Shell Exec"
1584
- msgstr ""
1585
-
1586
- #: views/tools/diagnostics.php:194
1587
- msgid "Is Supported"
1588
- msgstr "پشتیبانی می شود"
1589
-
1590
- #: views/tools/diagnostics.php:194
1591
- msgid "Not Supported"
1592
- msgstr "پشتیبانی نمی شود"
1593
-
1594
- #: views/tools/diagnostics.php:208
1595
- msgid "Wait Timeout"
1596
- msgstr "زمان تمام شدن"
1597
-
1598
- #: views/tools/diagnostics.php:212
1599
- msgid "Max Allowed Packets"
1600
- msgstr "حداکثر مجاز بسته"
1601
-
1602
- #: views/tools/diagnostics.php:216
1603
- msgid "msyqldump Path"
1604
- msgstr "مسیر msyqldump"
1605
-
1606
- #: views/tools/diagnostics.php:220
1607
- msgid "Server Disk"
1608
- msgstr "دیسک سرویس دهنده"
1609
-
1610
- #: views/tools/diagnostics.php:223
1611
- msgid "Free space"
1612
- msgstr "فضای خالی"
1613
-
1614
- #: views/tools/diagnostics.php:226
1615
- msgid "Note: This value is the physical servers hard-drive allocation."
1616
- msgstr "توجه: این مقدار تخصیص هارد دیسک سرور فیزیکی است."
1617
-
1618
- #: views/tools/diagnostics.php:227
1619
- msgid ""
1620
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
1621
- "value."
1622
- msgstr ""
1623
- "در میزبان مشترک کنترل پنل خود را برای ارزش ظرفیت فضای دیسک 'واقعی' را بررسی "
1624
- "کنید."
1625
-
1626
- #: views/tools/diagnostics.php:243
1627
- msgid "Stored Data"
1628
- msgstr "داده های ذخیره شده"
1629
-
1630
- #: views/tools/diagnostics.php:248
1631
- msgid "Options Values"
1632
- msgstr "تنظیمات"
1633
-
1634
- #: views/tools/diagnostics.php:281
1635
- msgid "PHP Information"
1636
- msgstr "اطلاعات مربوط به پی اچ پی"
1637
-
1638
- #: views/tools/diagnostics.php:300
1639
- msgid "Delete this option value"
1640
- msgstr "حذف مقادیر این تنظیمات"
1641
-
1642
- #: views/tools/logging.php:140
1643
- msgid "Log file not found or unreadable"
1644
- msgstr ""
1645
- "فایل گزارشات یافت نشد یا قابل خواندن نیست و احتمال می رود که مشکلی در حال "
1646
- "حاظر وجود نداشته که گزارش شود."
1647
-
1648
- #: views/tools/logging.php:142
1649
- msgid ""
1650
- "Try to create a package, since no log files were found in the snapshots "
1651
- "directory with the extension *.log"
1652
- msgstr ""
1653
- "سعی کنید به ایجاد یک بسته، بدون ورود به سیستم فایل در دایرکتوری فوری با فرمت "
1654
- "*.log یافت شد"
1655
-
1656
- #: views/tools/logging.php:144
1657
- msgid "Reasons for log file not showing"
1658
- msgstr "دلایلی برای نمایش ندادن فایل گزارشات"
1659
-
1660
- #: views/tools/logging.php:145
1661
- msgid "The web server does not support returning .log file extentions"
1662
- msgstr ""
1663
- "سرور وب شما از پسوند .log پشتیبانی نمی کند. بنا بر این می توانید به سرور خود "
1664
- "اطلاع دهید تا مشکل را بررسی و رفع نمایند"
1665
-
1666
- #: views/tools/logging.php:146
1667
- msgid ""
1668
- "The snapshots directory does not have the correct permissions to write "
1669
- "files. Try setting the permissions to 755"
1670
- msgstr ""
1671
- "احتمالا دایکرکتوری wp-snapshots سطح دسترسی لازم را ندارد برای نوشتن را "
1672
- "ندارد. بنا بر این به هاست خود بروید و سطح دسترسی این پوشه را روی 755 تنظیم "
1673
- "کنید"
1674
-
1675
- #: views/tools/logging.php:147
1676
- msgid ""
1677
- "The process that PHP runs under does not have enough permissions to create "
1678
- "files. Please contact your hosting provider for more details"
1679
- msgstr ""
1680
- "پی اچی پی امکان اجرای دستورات لازم را ندارد بنا بر این با هاستینگ خود تماس "
1681
- "بگیرید و مشکل را جهت رفع آن ارجاع دهید"
1682
-
1683
- #: views/tools/logging.php:156 views/tools/logging.php:161
1684
- msgid "Options"
1685
- msgstr "تنظیمات"
1686
-
1687
- #: views/tools/logging.php:163
1688
- msgid "Refresh"
1689
- msgstr "بازسازی"
1690
-
1691
- #: views/tools/logging.php:168
1692
- msgid "Auto Refresh"
1693
- msgstr "بازسازی اتوماتیک"
1694
-
1695
- #: views/tools/logging.php:174
1696
- msgid "Last 20 Logs"
1697
- msgstr "20 گزارش اخیر"
1698
-
1699
- #. Plugin Name of the plugin/theme
1700
- msgid "Duplicator"
1701
- msgstr "ایجاد کننده بسته نصبی"
1702
-
1703
- #. Plugin URI of the plugin/theme
1704
- msgid "http://www.lifeinthegrid.com/duplicator/"
1705
- msgstr ""
1706
-
1707
- #. Description of the plugin/theme
1708
- msgid ""
1709
- "Create a backup of your WordPress files and database. Duplicate and move an "
1710
- "entire site from one location to another in a few steps. Create a full "
1711
- "snapshot of your site at any point in time."
1712
- msgstr ""
1713
-
1714
- #. Author of the plugin/theme
1715
- msgid "LifeInTheGrid"
1716
- msgstr ""
1717
-
1718
- #. Author URI of the plugin/theme
1719
- msgid "http://www.lifeinthegrid.com"
1720
- msgstr ""
1721
-
1722
- #~ msgid "PHP Version:"
1723
- #~ msgstr "نسخه پی اچ پی"
1724
-
1725
- #~ msgid "Backup and Move Made Easy!"
1726
- #~ msgstr "پشتیبان گیری و حرکت آسان ساخته شده!"
1727
-
1728
- #~ msgid "The top-rated Duplicator plugin is going professional!"
1729
- #~ msgstr "دارای امتیاز بالا تکثیر پلاگین حرفه ای می گذرد!"
1730
-
1731
- #~ msgid "Schedules"
1732
- #~ msgstr "زمان‌بندی"
1733
-
1734
- #~ msgid "Custom Templates"
1735
- #~ msgstr "قالب های سفارشی"
1736
-
1737
- #~ msgid "Cloud Storage"
1738
- #~ msgstr "ذخیره سازی ابری"
1739
-
1740
- #~ msgid "Queued Processing"
1741
- #~ msgstr "صف پردازش"
1742
-
1743
- #~ msgid "Pass"
1744
- #~ msgstr "همه چیز مورد تایید می باشد"
1745
-
1746
- #~ msgid "Fail"
1747
- #~ msgstr "مواردی مورد تایید نمی باشد"
1748
-
1749
- #~ msgid "Format"
1750
- #~ msgstr "نوع"
1751
-
1752
- #~ msgid "localhost"
1753
- #~ msgstr ""
1754
- #~ "سرور محلی مثال ( localhost یا 127.0.0.1 یا آی پی که هاستینگ برای لوکال "
1755
- #~ "هاست به شما داده )"
1756
-
1757
- #~ msgid "mydatabaseName"
1758
- #~ msgstr "نام پایگاه داده"
1759
-
1760
- #~ msgid "databaseUserName"
1761
- #~ msgstr "نام کاربری پایگاه داده"
1762
-
1763
- #~ msgid "http://mynewsite.com"
1764
- #~ msgstr "https://www.amoozesh98.com"
1765
-
1766
- #~ msgid "PHP Settings"
1767
- #~ msgstr "تنظیمات پی اچ پی"
1768
-
1769
- #~ msgid "WordPress Settings"
1770
- #~ msgstr "تنظیمات وردپرس"
1771
-
1772
- #~ msgid "Missing"
1773
- #~ msgstr "گم"
1774
-
1775
- #~ msgid "Invalid Names"
1776
- #~ msgstr "نامهای بی اعتبار"
1777
-
1778
- #~ msgid "No name length issues."
1779
- #~ msgstr "بدون مسائل طول نام."
1780
-
1781
- #~ msgid "Support"
1782
- #~ msgstr "پشتیبانی"
1783
-
1784
- #~ msgid "Yes"
1785
- #~ msgstr "بله"
1786
-
1787
- #~ msgid "No"
1788
- #~ msgstr "نه"
1789
-
1790
- #~ msgid "PHP"
1791
- #~ msgstr "پی اچ پی"
1792
-
1793
- #~ msgid "MySQL"
1794
- #~ msgstr "مای اس کیوال"
1795
-
1796
- #~ msgid "Good"
1797
- #~ msgstr "خوب"
1798
-
1799
- #~ msgid "Warn"
1800
- #~ msgstr ""
1801
- #~ "اخطار ( البته به این معنی نمی باشد که مشکل در ایجاد بسته نصبی وجود خواهد "
1802
- #~ "داشت )"
1803
-
1804
- #~ msgid "unable to read"
1805
- #~ msgstr "قادر به خواندن نمی باشم"
1806
-
1807
- #~ msgid "Goods"
1808
- #~ msgstr "خوب"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/duplicator-fr_FR.mo DELETED
Binary file
lang/duplicator-fr_FR.po DELETED
@@ -1,2869 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPDuplicator v1.1.2\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
5
- "POT-Creation-Date: 2015-12-25 09:52+0100\n"
6
- "PO-Revision-Date: 2015-12-25 11:45+0100\n"
7
- "Last-Translator: Nicolas Richer <contact@nicolasricher.fr>\n"
8
- "Language-Team: Nicolas Richer <contact@nicolasricher.fr>\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
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
- "X-Generator: Poedit 1.7.1\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Textdomain-Support: yes\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: assets\n"
24
-
25
- #: classes/ui.php:107 classes/ui.php:112
26
- msgid ""
27
- "Reserved Duplicator install files have been detected in the root directory. "
28
- "Please delete these reserved files to avoid security issues."
29
- msgstr ""
30
- "Les fichiers d'installation de Duplicator sont toujours présents à la racine "
31
- "de votre serveur. Merci de supprimer ces fichiers pour éviter toute faille "
32
- "de sécurité."
33
-
34
- #: classes/ui.php:113
35
- msgid "Take me to the cleanup page!"
36
- msgstr "Aller à la page de nettoyage"
37
-
38
- #: classes/utility.php:258
39
- msgid "You do not have sufficient permissions to access this page."
40
- msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page"
41
-
42
- #: duplicator.php:103
43
- msgid "Get Help"
44
- msgstr "Contactez le support"
45
-
46
- #: duplicator.php:103 duplicator.php:195 views/help/help.php:29
47
- msgid "Help"
48
- msgstr "Support"
49
-
50
- #: duplicator.php:104
51
- msgid "Support the Plugin"
52
- msgstr "Soutenez l'extension"
53
-
54
- #: duplicator.php:104 duplicator.php:199 views/help/about.php:41
55
- msgid "About"
56
- msgstr "A propos"
57
-
58
- #: duplicator.php:183 views/packages/main/packages.php:240
59
- msgid "Packages"
60
- msgstr "Paquets"
61
-
62
- #: duplicator.php:187 views/settings/controller.php:19
63
- msgid "Settings"
64
- msgstr "Paramètres"
65
-
66
- #: duplicator.php:191 views/tools/controller.php:14
67
- msgid "Tools"
68
- msgstr "Outils"
69
-
70
- #: duplicator.php:202
71
- msgid "Go Pro!"
72
- msgstr "Version premium"
73
-
74
- #: duplicator.php:253
75
- msgid "Manage"
76
- msgstr "Gérer"
77
-
78
- #: views/help/about.php:54
79
- msgid ""
80
- "Created for Admins, Developers and Designers the Duplicator can streamline "
81
- "your workflows and help you quickly clone a WordPress application. "
82
- "Migrating a WordPress site manually can be very time consuming. The "
83
- "Duplicator was made to help you speed up the migration process. Please help "
84
- "us to continue the development effort of this plugin."
85
- msgstr ""
86
- "Créé pour les webmasters, développeurs et designers, Duplicator va accélérer "
87
- "votre travail en vous permettant de cloner rapidement une installation "
88
- "WordPress. Faire une migration manuelle peut vite devenir très long, c'est "
89
- "pourquoi Duplicator vient l'automatiser. Merci de nous aider pour continuer "
90
- "les efforts de développement de l'extension."
91
-
92
- #: views/help/about.php:64
93
- msgid "Support Duplicator"
94
- msgstr "Aide de Duplicator"
95
-
96
- #: views/help/about.php:71
97
- msgid "Partner with Us"
98
- msgstr "Soutenez-nous"
99
-
100
- #: views/help/about.php:83
101
- msgid "Keep Active and Online"
102
- msgstr "Pour que Duplicator soit activement développé"
103
-
104
- #: views/help/about.php:90
105
- msgid "Leave 5 Stars"
106
- msgstr "Nous donner 5 étoiles"
107
-
108
- #: views/help/about.php:107
109
- msgid "Spread the Word"
110
- msgstr "Faites passer le mot"
111
-
112
- #: views/help/about.php:113
113
- msgid "Duplicate Your WordPress"
114
- msgstr "Dupliquer votre WordPress"
115
-
116
- #: views/help/about.php:114
117
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
118
- msgstr "Duplication rapide pour WordPress par LifeInTheGrid.com"
119
-
120
- #: views/help/about.php:131
121
- msgid "Get More Great Tools"
122
- msgstr "Obtenez d'autres super outils"
123
-
124
- #: views/help/gopro.php:40
125
- msgid "Duplicator Professional"
126
- msgstr "Duplicator Pro"
127
-
128
- #: views/help/gopro.php:43
129
- msgid "The simplicity of Duplicator"
130
- msgstr "La simplicité de Duplicator"
131
-
132
- #: views/help/gopro.php:44
133
- msgid "with power for the professional."
134
- msgstr "avec la puissance dont les pros ont besoin."
135
-
136
- #: views/help/gopro.php:140
137
- msgid "Check It Out!"
138
- msgstr "Découvrez la version Pro"
139
-
140
- #: views/help/help.php:38
141
- msgid ""
142
- "Migrating WordPress is a complex process and the logic to make all the magic "
143
- "happen smoothly may not work quickly with every site. With over 30,000 "
144
- "plugins and a very complex server eco-system some migrations may run into "
145
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
146
- "can help with many common issues. Resources to additional support, approved "
147
- "hosting, and alternatives to fit your needs can be found below."
148
- msgstr ""
149
- "Migrer un site WordPress est un processus complexe et il n'est pas facile de "
150
- "rendre cette opération fiable à 100%. Avec plus de 30 000 extensions et un "
151
- "écosystème serveur complexe, il est courant que tout ne fonctionne pas comme "
152
- "prévu. C'est pourquoi Duplicator contient une documentation détaillée (en "
153
- "anglais seulement) pour vous aider à résoudre les problèmes les plus "
154
- "fréquents. Les liens pour du support additionnel (en anglais), les "
155
- "hébergeurs \"approuvés\" et les solutions alternatives se trouvent également "
156
- "ci-dessous."
157
-
158
- #: views/help/help.php:50
159
- msgid "Knowledgebase"
160
- msgstr "Documentation"
161
-
162
- #: views/help/help.php:53
163
- msgid "Complete Online Documentation"
164
- msgstr "Documentation en ligne"
165
-
166
- #: views/help/help.php:55
167
- msgid "Choose A Section"
168
- msgstr "Choisissez une section"
169
-
170
- #: views/help/help.php:56
171
- msgid "Quick Start"
172
- msgstr "Démarrage rapide"
173
-
174
- #: views/help/help.php:57
175
- msgid "User Guide"
176
- msgstr "Guide utilisateur"
177
-
178
- #: views/help/help.php:58
179
- msgid "FAQs"
180
- msgstr "FAQs"
181
-
182
- #: views/help/help.php:59
183
- msgid "Change Log"
184
- msgstr "Notes de version"
185
-
186
- #: views/help/help.php:60
187
- msgid "Product Page"
188
- msgstr "Page produit"
189
-
190
- #: views/help/help.php:69
191
- msgid "Online Support"
192
- msgstr "Support"
193
-
194
- #: views/help/help.php:72
195
- msgid "Get Help From IT Professionals"
196
- msgstr "Obtenez l'aide de professionnels"
197
-
198
- #: views/help/help.php:76
199
- msgid "Get Support!"
200
- msgstr "Demandez de l'aide"
201
-
202
- #: views/help/help.php:88
203
- msgid "Approved Hosting"
204
- msgstr "Hébergeurs recommandés"
205
-
206
- #: views/help/help.php:91
207
- msgid "Servers That Work With Duplicator"
208
- msgstr "Les serveurs qui fonctionnent avec Duplicator"
209
-
210
- #: views/help/help.php:94
211
- msgid "Trusted Providers!"
212
- msgstr "Partenaires de confiance"
213
-
214
- #: views/help/help.php:104
215
- msgid "Alternatives"
216
- msgstr "Alternatives"
217
-
218
- #: views/help/help.php:107
219
- msgid "Other Commercial Resources"
220
- msgstr "Autres ressources (commerciales)"
221
-
222
- #: views/help/help.php:110
223
- msgid "Pro Solutions!"
224
- msgstr "Solutions Pro"
225
-
226
- #: views/packages/details/controller.php:12
227
- #: views/packages/main/new3.base.php:140
228
- msgid "Package Log"
229
- msgstr "Journaux"
230
-
231
- #: views/packages/details/controller.php:13
232
- msgid "FAQ Pages"
233
- msgstr "Foire Aux Questions"
234
-
235
- #: views/packages/details/controller.php:14
236
- msgid "Help Ticket"
237
- msgstr "Ticket de support"
238
-
239
- #: views/packages/details/controller.php:34
240
- msgid "An error was detected while creating this package. Please review the "
241
- msgstr "Une erreur a été détectée lors de la création du paquet. Vérifiez le"
242
-
243
- #: views/packages/details/controller.php:34
244
- msgid " for more details."
245
- msgstr "pour plus de détails."
246
-
247
- #: views/packages/details/controller.php:35
248
- msgid "Additional help is available online via the "
249
- msgstr "Pour plus d'aide, allez sur"
250
-
251
- #: views/packages/details/controller.php:35
252
- msgid " or just contact support via a "
253
- msgstr "ou contactez le support par un"
254
-
255
- #: views/packages/details/controller.php:41
256
- #: views/packages/main/packages.php:88 views/packages/main/new3.base.php:112
257
- msgid "Details"
258
- msgstr "Détails"
259
-
260
- #: views/packages/details/controller.php:42
261
- msgid "Transfer"
262
- msgstr "Transférer"
263
-
264
- #: views/packages/details/controller.php:44
265
- #: views/packages/main/packages.php:63 views/packages/main/new1.base.php:100
266
- #: views/packages/main/new2.base.php:88 views/packages/main/new3.base.php:47
267
- #: views/packages/main/new3.base.php:94
268
- msgid "All Packages"
269
- msgstr "Tous les paquets"
270
-
271
- #: views/packages/details/controller.php:60
272
- msgid "No package in default location so transfer is disabled."
273
- msgstr ""
274
- "Il n'y a pas de paquet dans l'emplacement par défaut, le transfert est "
275
- "désactivé."
276
-
277
- #: views/packages/details/detail.php:44
278
- msgid "Invlaid Package ID request. Please try again!"
279
- msgstr "Numéro de paquet incorrect. Merci de réessayer."
280
-
281
- #: views/packages/details/detail.php:56 views/tools/diagnostics.php:87
282
- msgid "General"
283
- msgstr "Général"
284
-
285
- #: views/packages/details/detail.php:62 views/packages/details/detail.php:139
286
- #: views/packages/main/packages.php:91
287
- #: views/packages/main/new1.inc.form.php:6
288
- #: views/packages/main/new1.inc.form.php:31
289
- #: views/packages/main/new3.base.php:78
290
- msgid "Name"
291
- msgstr "Nom du paquet"
292
-
293
- #: views/packages/details/detail.php:66
294
- msgid "ID"
295
- msgstr "ID"
296
-
297
- #: views/packages/details/detail.php:67 views/packages/main/packages.php:162
298
- #: views/packages/main/packages.php:207
299
- msgid "Hash"
300
- msgstr "Numéro de paquet"
301
-
302
- #: views/packages/details/detail.php:68
303
- msgid "Full Name"
304
- msgstr "Nom"
305
-
306
- #: views/packages/details/detail.php:73 views/packages/main/packages.php:163
307
- #: views/packages/main/packages.php:212
308
- #: views/packages/main/new1.inc.form.php:8
309
- #: views/packages/main/new1.inc.form.php:13
310
- msgid "Notes"
311
- msgstr "Notes"
312
-
313
- #: views/packages/details/detail.php:74
314
- msgid "- no notes -"
315
- msgstr "- pas de note -"
316
-
317
- #: views/packages/details/detail.php:78 views/packages/main/packages.php:160
318
- #: views/packages/main/packages.php:205 views/settings/general.php:86
319
- #: views/tools/diagnostics.php:141 views/tools/diagnostics.php:160
320
- #: views/tools/diagnostics.php:204
321
- msgid "Version"
322
- msgstr "Version"
323
-
324
- #: views/packages/details/detail.php:82
325
- msgid "Runtime"
326
- msgstr "Temps d'exécution"
327
-
328
- #: views/packages/details/detail.php:83
329
- msgid "error running"
330
- msgstr "erreurs trouvées"
331
-
332
- #: views/packages/details/detail.php:86
333
- msgid "Status"
334
- msgstr "Statut"
335
-
336
- #: views/packages/details/detail.php:87
337
- msgid "completed"
338
- msgstr "terminé"
339
-
340
- #: views/packages/details/detail.php:87
341
- msgid "in-complete"
342
- msgstr "en cours de finalisation"
343
-
344
- #: views/packages/details/detail.php:90 views/packages/details/detail.php:213
345
- #: views/packages/main/new1.inc.form.php:75
346
- #: views/packages/main/new2.base.php:230
347
- msgid "Files"
348
- msgstr "Fichiers"
349
-
350
- #: views/packages/details/detail.php:105 views/packages/details/detail.php:176
351
- #: views/packages/main/packages.php:151
352
- #: views/packages/main/new1.inc.form.php:63
353
- #: views/packages/main/new2.base.php:222 views/packages/main/new3.base.php:87
354
- msgid "Archive"
355
- msgstr "Archive"
356
-
357
- #: views/packages/details/detail.php:109 views/packages/details/detail.php:261
358
- #: views/packages/main/packages.php:148
359
- #: views/packages/main/new1.inc.form.php:234
360
- #: views/packages/main/new3.base.php:83
361
- msgid "Installer"
362
- msgstr "Installeur"
363
-
364
- #: views/packages/details/detail.php:113 views/packages/details/detail.php:271
365
- #: views/packages/main/new1.inc.form.php:76
366
- #: views/packages/main/new1.inc.form.php:253
367
- #: views/packages/main/new2.base.php:354
368
- msgid "Database"
369
- msgstr "Base de données"
370
-
371
- #: views/packages/details/detail.php:132
372
- #: views/packages/main/new1.inc.form.php:23 views/settings/general.php:101
373
- msgid "Storage"
374
- msgstr "Répertoire de stockage"
375
-
376
- #: views/packages/details/detail.php:140 views/packages/details/detail.php:222
377
- #: views/packages/main/new1.inc.form.php:32
378
- msgid "Type"
379
- msgstr "Type"
380
-
381
- #: views/packages/details/detail.php:141
382
- #: views/packages/main/new1.inc.form.php:33
383
- msgid "Location"
384
- msgstr "Emplacement"
385
-
386
- #: views/packages/details/detail.php:146
387
- #: views/packages/main/new1.inc.form.php:38
388
- msgid "Default"
389
- msgstr "Défaut"
390
-
391
- #: views/packages/details/detail.php:147
392
- #: views/packages/main/new1.inc.form.php:39
393
- msgid "Local"
394
- msgstr "Local"
395
-
396
- #: views/packages/details/detail.php:157
397
- #: views/packages/main/new1.inc.form.php:49
398
- #, php-format
399
- msgid "%1$s, %2$s, %3$s and other storage options available in"
400
- msgstr ""
401
- "%1$s, %2$s, %3$s et d'autres options de stockage sont disponibles avec "
402
-
403
- #: views/packages/details/detail.php:182
404
- msgid "FILES"
405
- msgstr "FICHIERS"
406
-
407
- #: views/packages/details/detail.php:185 views/packages/details/detail.php:226
408
- #: views/packages/main/new1.inc.form.php:127
409
- msgid "Build Mode"
410
- msgstr "Mode de construction"
411
-
412
- #: views/packages/details/detail.php:186
413
- msgid "ZipArchive"
414
- msgstr "ZipArchive"
415
-
416
- #: views/packages/details/detail.php:189 views/packages/details/detail.php:239
417
- msgid "Filters"
418
- msgstr "Filtres"
419
-
420
- #: views/packages/details/detail.php:193
421
- #: views/packages/main/new1.inc.form.php:92
422
- msgid "Directories"
423
- msgstr "Répertoires"
424
-
425
- #: views/packages/details/detail.php:198 views/packages/details/detail.php:208
426
- #: views/packages/details/detail.php:248
427
- msgid "- no filters -"
428
- msgstr "- aucun filtre -"
429
-
430
- #: views/packages/details/detail.php:203
431
- msgid "Extensions"
432
- msgstr "Extensions"
433
-
434
- #: views/packages/details/detail.php:214
435
- msgid "Available in Duplicator Pro"
436
- msgstr "Disponible avec Duplicator Pro"
437
-
438
- #: views/packages/details/detail.php:219 views/packages/main/packages.php:341
439
- msgid "DATABASE"
440
- msgstr "BASE DE DONNEES"
441
-
442
- #: views/packages/details/detail.php:232 views/packages/main/new2.base.php:411
443
- msgid "MySQL Compatibility Mode Enabled"
444
- msgstr "Mode de compatibilité MySQL activé"
445
-
446
- #: views/packages/details/detail.php:233
447
- #: views/packages/main/new1.inc.form.php:188
448
- #: views/packages/main/new2.base.php:156 views/packages/main/new2.base.php:166
449
- #: views/packages/main/new2.base.php:173 views/packages/main/new2.base.php:182
450
- #: views/packages/main/new2.base.php:263 views/packages/main/new2.base.php:412
451
- msgid "details"
452
- msgstr "détails"
453
-
454
- #: views/packages/details/detail.php:243 views/packages/main/new2.base.php:374
455
- msgid "Tables"
456
- msgstr "Tables"
457
-
458
- #: views/packages/details/detail.php:267
459
- #: views/packages/main/new1.inc.form.php:245
460
- msgid "Host"
461
- msgstr "Adresse"
462
-
463
- #: views/packages/details/detail.php:268 views/packages/details/detail.php:272
464
- #: views/packages/details/detail.php:276 views/packages/details/detail.php:280
465
- msgid "- not set -"
466
- msgstr " - aucun réglage -"
467
-
468
- #: views/packages/details/detail.php:275 views/packages/main/packages.php:161
469
- #: views/packages/main/packages.php:206
470
- #: views/packages/main/new1.inc.form.php:257 views/tools/diagnostics.php:168
471
- msgid "User"
472
- msgstr "Utilisateur"
473
-
474
- #: views/packages/details/detail.php:279
475
- #: views/packages/main/new1.inc.form.php:297
476
- msgid "New URL"
477
- msgstr "Nouvelle URL"
478
-
479
- #: views/packages/details/detail.php:288 views/packages/main/packages.php:171
480
- msgid "View Package Object"
481
- msgstr "Voir le paquet"
482
-
483
- #: views/packages/details/transfer.php:30
484
- msgid "Manual Transfer"
485
- msgstr "Transfert manuel"
486
-
487
- #: views/packages/details/transfer.php:36
488
- msgid "This option is available only in the professional version."
489
- msgstr "Cette option n'est disponible qu'avec la version Pro."
490
-
491
- #: views/packages/details/transfer.php:38
492
- msgid ""
493
- "Manual Transfer allows you to copy any package to another location such as "
494
- "Dropbox, Google Drive, FTP, or another directory on this server."
495
- msgstr ""
496
- "Le transfert manuel vous permet de copier vos paquets à un autre emplacement "
497
- "tel que Dropbox, Google Drive, FTP ou un autre répertoire du serveur."
498
-
499
- #: views/packages/details/transfer.php:40
500
- msgid ""
501
- "Simply check the destination checkbox you would like to transfer the package "
502
- "files to and hit the transfer button and thats it."
503
- msgstr ""
504
- "Vérifiez la destination à laquelle vous souhaitez transférer les fichiers du "
505
- "paquet, appuyez sur Transfert, et c'est fait."
506
-
507
- #: views/packages/main/controller.php:38
508
- msgid "Packages &raquo; All"
509
- msgstr "Paquets &raquo; Tous"
510
-
511
- #: views/packages/main/controller.php:42 views/packages/main/controller.php:46
512
- #: views/packages/main/controller.php:50
513
- msgid "Packages &raquo; New"
514
- msgstr "Paquets &raquo; Nouveau"
515
-
516
- #: views/packages/main/list-nodata.php:7
517
- msgid "No Packages Found."
518
- msgstr "Aucun paquet trouvé."
519
-
520
- #: views/packages/main/list-nodata.php:8
521
- msgid "Click the 'Create New' button to build a package."
522
- msgstr "Cliquez sur le bouton 'Créer un paquet' pour en générer un."
523
-
524
- #: views/packages/main/list-nodata.php:13
525
- msgid "Please visit the"
526
- msgstr "Allez donc sur"
527
-
528
- #: views/packages/main/list-nodata.php:14
529
- #: views/packages/main/list-nodata.php:28
530
- #: views/packages/main/new1.base.php:240
531
- msgid "help page"
532
- msgstr "la page de support"
533
-
534
- #: views/packages/main/list-nodata.php:15
535
- msgid "for additional support"
536
- msgstr "pour de l'aide supplémentaire"
537
-
538
- #: views/packages/main/list-nodata.php:24
539
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
540
- msgstr ""
541
- "Les paquets antérieurs à la version 0.5.0 ne sont plus compatibles avec "
542
- "cette version."
543
-
544
- #: views/packages/main/list-nodata.php:27
545
- msgid "To get an older package please visit the"
546
- msgstr "Pour obtenir une version antérieure, allez donc sur "
547
-
548
- #: views/packages/main/list-nodata.php:29
549
- msgid "and look for the Change Log link for additional instructions."
550
- msgstr ""
551
- "et lisez les notes de version (Change Log) pour des instructions "
552
- "additionnelles."
553
-
554
- #: views/packages/main/list-nodata.php:33
555
- msgid "Hide this message"
556
- msgstr "Cacher ce message"
557
-
558
- #: views/packages/main/packages.php:41
559
- msgid "Help Support Duplicator"
560
- msgstr "Support de Duplicator"
561
-
562
- #: views/packages/main/packages.php:52
563
- msgid "Bulk Actions"
564
- msgstr "Actions groupées"
565
-
566
- #: views/packages/main/packages.php:53
567
- msgid "Delete selected package(s)"
568
- msgstr "Effacer le(s) paquet(s) sélectionné(s)"
569
-
570
- #: views/packages/main/packages.php:53
571
- msgid "Delete"
572
- msgstr "Effacer"
573
-
574
- #: views/packages/main/packages.php:55
575
- msgid "Apply"
576
- msgstr "Appliquer"
577
-
578
- #: views/packages/main/packages.php:60
579
- msgid "Package Logs"
580
- msgstr "Journaux des paquets"
581
-
582
- #: views/packages/main/packages.php:64 views/packages/main/new1.base.php:101
583
- #: views/packages/main/new2.base.php:89 views/packages/main/new3.base.php:48
584
- msgid "Create New"
585
- msgstr "Créer un paquet"
586
-
587
- #: views/packages/main/packages.php:87
588
- msgid "Select all packages"
589
- msgstr "Sélectionner tous les paquets"
590
-
591
- #: views/packages/main/packages.php:89
592
- msgid "Created"
593
- msgstr "Créé"
594
-
595
- #: views/packages/main/packages.php:90 views/packages/main/new2.base.php:249
596
- #: views/packages/main/new2.base.php:376
597
- msgid "Size"
598
- msgstr "Taille"
599
-
600
- #: views/packages/main/packages.php:93 views/settings/general.php:117
601
- msgid "Package"
602
- msgstr "Paquet"
603
-
604
- #: views/packages/main/packages.php:124
605
- msgid "(No Notes Taken)"
606
- msgstr "(Aucun note générée)"
607
-
608
- #: views/packages/main/packages.php:142 views/packages/main/packages.php:192
609
- msgid "View"
610
- msgstr "Voir"
611
-
612
- #: views/packages/main/packages.php:153
613
- msgid "Package Details"
614
- msgstr "Détails du paquet"
615
-
616
- #: views/packages/main/packages.php:165
617
- msgid "Links"
618
- msgstr "Liens"
619
-
620
- #: views/packages/main/packages.php:166
621
- msgid "SQL"
622
- msgstr "SQL"
623
-
624
- #: views/packages/main/packages.php:167
625
- msgid "Log"
626
- msgstr "Journal"
627
-
628
- #: views/packages/main/packages.php:170
629
- msgid "Open Scan Report"
630
- msgstr "Ouvrir le rapport de scan"
631
-
632
- #: views/packages/main/packages.php:198
633
- msgid "View Error Details"
634
- msgstr "Voir le détail des erreurs"
635
-
636
- #: views/packages/main/packages.php:210
637
- msgid "Unrecoverable Error! Please remove this package."
638
- msgstr "Erreur : contenu non récupérable ! Merci de supprimer ce paquet."
639
-
640
- #: views/packages/main/packages.php:215
641
- msgid ""
642
- "This package has encountered errors. Click 'View Log' for more details. "
643
- "For additional support see the "
644
- msgstr ""
645
- "Ce paquet a généré des erreurs. Cliquez sur 'Voir les journaux' pour plus de "
646
- "détails. Pour une aide supplémentaire allez donc sur"
647
-
648
- #: views/packages/main/packages.php:216
649
- msgid "online knowledgebase"
650
- msgstr "notre documentation en ligne"
651
-
652
- #: views/packages/main/packages.php:218
653
- msgid "View Log"
654
- msgstr "Voir les journaux"
655
-
656
- #: views/packages/main/packages.php:241 views/packages/main/new2.base.php:246
657
- #: views/packages/main/new2.base.php:370
658
- msgid "Total Size"
659
- msgstr "Taille totale"
660
-
661
- #: views/packages/main/packages.php:260
662
- msgid "Download Links"
663
- msgstr "Liens de téléchargement"
664
-
665
- #: views/packages/main/packages.php:263
666
- msgid "The following links contain sensitive data. Please share with caution!"
667
- msgstr ""
668
- "Les liens suivants contiennent des informations sensibles. Gardez-les "
669
- "confidentiels."
670
-
671
- #: views/packages/main/packages.php:269
672
- msgid ""
673
- "The database SQL script is a quick link to your database backup script. An "
674
- "exact copy is also stored in the package."
675
- msgstr ""
676
- "Le script de base de données SQL est un lien rapide vers votre script de "
677
- "sauvegarde de base de données. Une copie exacte est également dans le paquet."
678
-
679
- #: views/packages/main/packages.php:292
680
- msgid ""
681
- "Please select an action from the bulk action drop down menu to perform a "
682
- "specific action."
683
- msgstr "Merci de sélectionner une action de la liste des actions par lot"
684
-
685
- #: views/packages/main/packages.php:300
686
- msgid "Please select at least one package to delete."
687
- msgstr "Merci de sélectionner au moins un paquet à effacer."
688
-
689
- #: views/packages/main/packages.php:304
690
- msgid "Are you sure, you want to delete the selected package(s)?"
691
- msgstr "Êtes-vous sûr de vouloir effacer le paquet sélectionné ?"
692
-
693
- #: views/packages/main/packages.php:338
694
- msgid "Package File Links"
695
- msgstr "Liens vers les paquets"
696
-
697
- #: views/packages/main/packages.php:342
698
- msgid "PACKAGE"
699
- msgstr "PAQUET"
700
-
701
- #: views/packages/main/packages.php:343
702
- msgid "INSTALLER"
703
- msgstr "INSTALLEUR"
704
-
705
- #: views/packages/main/packages.php:344
706
- msgid "LOG"
707
- msgstr "JOURNAL"
708
-
709
- #: views/packages/main/packages.php:345
710
- msgid "REPORT"
711
- msgstr "RAPPORT"
712
-
713
- #: views/packages/main/new1.base.php:13
714
- msgid "Package settings have been reset."
715
- msgstr "Les paramètres du paquet ont été remis à zéro."
716
-
717
- #: views/packages/main/new1.base.php:90 views/packages/main/new2.base.php:78
718
- #: views/packages/main/new3.base.php:37
719
- msgid "Setup"
720
- msgstr "Configuration"
721
-
722
- #: views/packages/main/new1.base.php:91 views/packages/main/new2.base.php:79
723
- #: views/packages/main/new3.base.php:38
724
- msgid "Scan"
725
- msgstr "Scan"
726
-
727
- #: views/packages/main/new1.base.php:92 views/packages/main/new2.base.php:80
728
- #: views/packages/main/new2.base.php:460 views/packages/main/new3.base.php:39
729
- msgid "Build"
730
- msgstr "Création"
731
-
732
- #: views/packages/main/new1.base.php:95
733
- msgid "Step 1: Package Setup"
734
- msgstr "Étape 1 : Configurer un paquet"
735
-
736
- #: views/packages/main/new1.base.php:119
737
- msgid "Requirements:"
738
- msgstr "Exigences Système :"
739
-
740
- #: views/packages/main/new1.base.php:128
741
- msgid ""
742
- "System requirements must pass for the Duplicator to work properly. Click "
743
- "each link for details."
744
- msgstr ""
745
- "Les exigences système doivent être correctes pour que Duplicator fonctionne "
746
- "convenablement. Cliquez sur chaque lien pour en voir le détail."
747
-
748
- #: views/packages/main/new1.base.php:134
749
- msgid "PHP Support"
750
- msgstr "Support de PHP"
751
-
752
- #: views/packages/main/new1.base.php:140
753
- msgid "PHP Version"
754
- msgstr "Version de PHP"
755
-
756
- #: views/packages/main/new1.base.php:144
757
- msgid "Zip Archive Enabled"
758
- msgstr "Archivage Zip Activé"
759
-
760
- #: views/packages/main/new1.base.php:148
761
- msgid "Safe Mode Off"
762
- msgstr "Mode de sécurité désactivé"
763
-
764
- #: views/packages/main/new1.base.php:152 views/packages/main/new1.base.php:156
765
- #: views/packages/main/new1.base.php:160
766
- msgid "Function"
767
- msgstr "Fonction"
768
-
769
- #: views/packages/main/new1.base.php:165
770
- msgid ""
771
- "PHP versions 5.2.9+ or higher is required. For compression to work the "
772
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
773
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
774
- "this section please contact your hosting provider or server administrator. "
775
- "For additional information see our online documentation."
776
- msgstr ""
777
- "PHP dans sa version 5.2.9 ou supérieure est nécessaire. Pour que la "
778
- "compression fonctionne, l'extension ZipArchive de PHP est requise. Le mode "
779
- "sécurité (Safe Mode) doit être désactivé (Off) dans votre fichier php.ini ; "
780
- "cette fonction n'est plus supportée depuis PHP 5.3.0. En cas de problèmes, "
781
- "merci de contacter votre hébergeur ou administrateur système. Pour plus "
782
- "d'informations, veuillez vous reporter à notre documentation en ligne."
783
-
784
- #: views/packages/main/new1.base.php:173
785
- msgid "Permissions"
786
- msgstr "Permissions"
787
-
788
- #: views/packages/main/new1.base.php:176
789
- msgid "Required Paths"
790
- msgstr "Chemins"
791
-
792
- #: views/packages/main/new1.base.php:187
793
- msgid ""
794
- "Permissions can be difficult to resolve on some systems. If the plugin can "
795
- "not read the above paths here are a few things to try. 1) Set the above "
796
- "paths to have permissions of 755 for directories and 644 for files. You can "
797
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
798
- "the owner/group settings for both files and directories. The PHP script "
799
- "owner and the process owner are different. The script owner owns the PHP "
800
- "script but the process owner is the user the script is running as, thus "
801
- "determining its capabilities/privileges in the file system. For more details "
802
- "contact your host or server administrator or visit the 'Help' menu under "
803
- "Duplicator for additional online resources."
804
- msgstr ""
805
- "Les permissions sont parfois difficiles à appréhender sur certains systèmes. "
806
- "Si l'extension n'arrive pas à lire les chemins suivants, voici ce que vous "
807
- "pouvez essayer. 1) Passer les permissions à 755 pour les répertoires et 644 "
808
- "pour les fichiers. Vous pouvez également essayer de passer en 777 mais ne "
809
- "laissez pas ce paramètre par la suite. 2) Vérifier les paramètres de "
810
- "propriétaire ou de groupe pour les fichiers et répertoires. Le script PHP "
811
- "pour les propriétaires et groupes ne fonctionne pas de la même façon. Pour "
812
- "plus de détails, contactez votre hébergeur ou administrateur système. Vous "
813
- "pouvez également aller dans l'onglet 'Support' pour des ressources "
814
- "supplémentaires."
815
-
816
- #: views/packages/main/new1.base.php:195
817
- msgid "Server Support"
818
- msgstr "Compatibilité avec le serveur"
819
-
820
- #: views/packages/main/new1.base.php:201
821
- msgid "MySQL Version"
822
- msgstr "Version de MySQL"
823
-
824
- #: views/packages/main/new1.base.php:205
825
- msgid "MySQLi Support"
826
- msgstr "Compatibilité MySQLi"
827
-
828
- #: views/packages/main/new1.base.php:211
829
- msgid ""
830
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
831
- "the trailing 'i') is also required. Contact your server administrator and "
832
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
833
- "note in future versions support for other databases and extensions will be "
834
- "added."
835
- msgstr ""
836
- "Une version 5.0 ou supérieure de MySQL ainsi que l'extension MySQLi "
837
- "(remarquez bien le 'i') est nécessaire. Contactez alors votre administrateur "
838
- "pour lui demander que tout soit en règle. Nous ajouterons par la suite la "
839
- "compatibilité avec d'autres bases de données et extensions."
840
-
841
- #: views/packages/main/new1.base.php:212 views/tools/cleanup.php:109
842
- msgid "more info"
843
- msgstr "plus d'informations"
844
-
845
- #: views/packages/main/new1.base.php:221
846
- msgid "Reserved Files"
847
- msgstr "Fichiers réservés"
848
-
849
- #: views/packages/main/new1.base.php:231
850
- msgid "Remove Files Now"
851
- msgstr "Supprimer les fichiers"
852
-
853
- #: views/packages/main/new1.base.php:240
854
- msgid "For additional help please see the "
855
- msgstr "Pour plus d'aide allez sur "
856
-
857
- #: views/packages/main/new1.inc.form.php:10
858
- msgid "Create a new default name"
859
- msgstr "Créer un nouveau nom par défaut"
860
-
861
- #: views/packages/main/new1.inc.form.php:65
862
- msgid "File filter enabled"
863
- msgstr "Filtre de fichier activé"
864
-
865
- #: views/packages/main/new1.inc.form.php:66
866
- msgid "Database filter enabled"
867
- msgstr "Filtre de base de données activé"
868
-
869
- #: views/packages/main/new1.inc.form.php:88
870
- msgid "Enable File Filters"
871
- msgstr "Activer les filtres de fichiers"
872
-
873
- #: views/packages/main/new1.inc.form.php:92
874
- #: views/packages/main/new1.inc.form.php:100
875
- msgid "Separate all filters by semicolon"
876
- msgstr "Séparez tous les filtres par des points-virgules"
877
-
878
- #: views/packages/main/new1.inc.form.php:94
879
- msgid "root path"
880
- msgstr "chemin vers la racine"
881
-
882
- #: views/packages/main/new1.inc.form.php:95
883
- msgid "wp-uploads"
884
- msgstr "wp-uploads"
885
-
886
- #: views/packages/main/new1.inc.form.php:96
887
- msgid "cache"
888
- msgstr "cache"
889
-
890
- #: views/packages/main/new1.inc.form.php:97
891
- #: views/packages/main/new1.inc.form.php:104
892
- msgid "(clear)"
893
- msgstr "(effacer)"
894
-
895
- #: views/packages/main/new1.inc.form.php:100
896
- msgid "File extensions"
897
- msgstr "Extensions de fichiers"
898
-
899
- #: views/packages/main/new1.inc.form.php:102
900
- msgid "media"
901
- msgstr "media"
902
-
903
- #: views/packages/main/new1.inc.form.php:103
904
- msgid "archive"
905
- msgstr "archive"
906
-
907
- #: views/packages/main/new1.inc.form.php:109
908
- msgid ""
909
- "The directory paths and extensions above will be be excluded from the "
910
- "archive file if enabled is checked."
911
- msgstr ""
912
- "Les chemins vers le répertoire et les extensions ci-dessous seront exclus de "
913
- "l'archive si vous cochez la case 'Activer les filtres de fichiers'"
914
-
915
- #: views/packages/main/new1.inc.form.php:110
916
- msgid "Use the full path for directories and semicolons to separate all items."
917
- msgstr ""
918
- "Utilisez le chemin complet pour les répertoires et des points virgules pour "
919
- "séparer les fichiers."
920
-
921
- #: views/packages/main/new1.inc.form.php:114
922
- #, php-format
923
- msgid "%1$s are available in"
924
- msgstr "%1$s sont disponibles avec"
925
-
926
- #: views/packages/main/new1.inc.form.php:135
927
- msgid "Enable Table Filters"
928
- msgstr "Activer les filtres de tables"
929
-
930
- #: views/packages/main/new1.inc.form.php:137
931
- msgid "Enable Table Filters:"
932
- msgstr "Activer les filtres de tables :"
933
-
934
- #: views/packages/main/new1.inc.form.php:138
935
- msgid ""
936
- "Checked tables will not be added to the database script. Excluding certain "
937
- "tables can possibly cause your site or plugins to not work correctly after "
938
- "install!"
939
- msgstr ""
940
- "Les tables sélectionnées ne seront pas ajoutées au script de la base de "
941
- "données. Exclure certaines tables peut potentiellement empêcher votre ou vos "
942
- "extensions de ne pas fonctionner correctement après l'installation !"
943
-
944
- #: views/packages/main/new1.inc.form.php:145
945
- msgid "Include All"
946
- msgstr "Tout inclure"
947
-
948
- #: views/packages/main/new1.inc.form.php:146
949
- msgid "Exclude All"
950
- msgstr "Tout exclure"
951
-
952
- #: views/packages/main/new1.inc.form.php:180
953
- msgid "Compatibility Mode"
954
- msgstr "Mode de compatibilité"
955
-
956
- #: views/packages/main/new1.inc.form.php:182
957
- msgid "Compatibility Mode:"
958
- msgstr "Mode de compatibilité :"
959
-
960
- #: views/packages/main/new1.inc.form.php:183
961
- msgid ""
962
- "This is an advanced database backwards compatibility feature that should "
963
- "ONLY be used if having problems installing packages. If the database server "
964
- "version is lower than the version where the package was built then these "
965
- "options may help generate a script that is more compliant with the older "
966
- "database server. It is recommended to try each option separately starting "
967
- "with mysql40."
968
- msgstr ""
969
- "Il s'agit d'une fonctionnalité de rétro-compatibilité de base de données qui "
970
- "ne devrait être utilisée QUE si vous rencontrez des problèmes lors "
971
- "l'installation des paquets. Si la version de la base de données est "
972
- "inférieure à celle utilisée pour générer les paquets, ces options peuvent "
973
- "créer des scripts qui seront plus souples avec les versions plus anciennes. "
974
- "Il est recommandé d'essayer chaque option séparément en commençant par "
975
- "mysql40."
976
-
977
- #: views/packages/main/new1.inc.form.php:204
978
- msgid "mysql40"
979
- msgstr "mysql40"
980
-
981
- #: views/packages/main/new1.inc.form.php:208
982
- msgid "no_table_options"
983
- msgstr "no_table_options"
984
-
985
- #: views/packages/main/new1.inc.form.php:212
986
- msgid "no_key_options"
987
- msgstr "no_key_options"
988
-
989
- #: views/packages/main/new1.inc.form.php:216
990
- msgid "no_field_options"
991
- msgstr "no_fields_options"
992
-
993
- #: views/packages/main/new1.inc.form.php:221
994
- msgid "This option is only availbe with mysqldump mode."
995
- msgstr "Cette option n'est disponible qu'avec le mode mysqldump"
996
-
997
- #: views/packages/main/new1.inc.form.php:239
998
- msgid "STEP 1 - INPUTS"
999
- msgstr "ÉTAPE 1 - PARAMÈTRES DE DESTINATION"
1000
-
1001
- #: views/packages/main/new1.inc.form.php:242
1002
- msgid "MySQL Server"
1003
- msgstr "Serveur MySQL"
1004
-
1005
- #: views/packages/main/new1.inc.form.php:249
1006
- msgid "Host Port"
1007
- msgstr "Port"
1008
-
1009
- #: views/packages/main/new1.inc.form.php:261
1010
- msgid "Advanced Options"
1011
- msgstr "Options avancées"
1012
-
1013
- #: views/packages/main/new1.inc.form.php:267
1014
- msgid "SSL"
1015
- msgstr "SSL"
1016
-
1017
- #: views/packages/main/new1.inc.form.php:270
1018
- msgid "Enforce on Admin"
1019
- msgstr "Forcer à l'administration"
1020
-
1021
- #: views/packages/main/new1.inc.form.php:274
1022
- msgid "Enforce on Logins"
1023
- msgstr "Forcer aux connexions"
1024
-
1025
- #: views/packages/main/new1.inc.form.php:278
1026
- msgid "Cache"
1027
- msgstr "Cache"
1028
-
1029
- #: views/packages/main/new1.inc.form.php:281
1030
- msgid "Keep Enabled"
1031
- msgstr "Garder activé"
1032
-
1033
- #: views/packages/main/new1.inc.form.php:285
1034
- msgid "Keep Home Path"
1035
- msgstr "Garder le chemin de l'accueil"
1036
-
1037
- #: views/packages/main/new1.inc.form.php:293
1038
- msgid "STEP 2 - INPUTS"
1039
- msgstr "ÉTAPE 2 - URL DE DESTINATION"
1040
-
1041
- #: views/packages/main/new1.inc.form.php:303
1042
- msgid "The installer can have these fields pre-filled at install time."
1043
- msgstr ""
1044
- "L'installeur peut avoir ces champs pré-remplis au moment de l'installation."
1045
-
1046
- #: views/packages/main/new1.inc.form.php:303
1047
- msgid "All values are optional."
1048
- msgstr "Toutes ces valeurs sont facultatives."
1049
-
1050
- #: views/packages/main/new1.inc.form.php:312
1051
- msgid "Reset"
1052
- msgstr "Remise à zéro"
1053
-
1054
- #: views/packages/main/new1.inc.form.php:313
1055
- msgid "Next"
1056
- msgstr "Suivant"
1057
-
1058
- #: views/packages/main/new1.inc.form.php:325
1059
- msgid ""
1060
- "This will reset all of the current package settings. Would you like to "
1061
- "continue?"
1062
- msgstr ""
1063
- "Cela va remettre à zéro tous les paramètres du paquet en cours. Voulez-vous "
1064
- "continuer ?"
1065
-
1066
- #: views/packages/main/new2.base.php:83
1067
- msgid "Step 2: System Scan"
1068
- msgstr "Étape 2 : Scan du système"
1069
-
1070
- #: views/packages/main/new2.base.php:100
1071
- msgid "Scanning Site"
1072
- msgstr "Scan en cours"
1073
-
1074
- #: views/packages/main/new2.base.php:102 views/packages/main/new3.base.php:61
1075
- msgid "Please Wait..."
1076
- msgstr "Merci de patienter..."
1077
-
1078
- #: views/packages/main/new2.base.php:108
1079
- msgid "Scan Complete"
1080
- msgstr "Scan terminé"
1081
-
1082
- #: views/packages/main/new2.base.php:110
1083
- msgid "Process Time:"
1084
- msgstr "Durée du processus :"
1085
-
1086
- #: views/packages/main/new2.base.php:119
1087
- msgid "Server"
1088
- msgstr "Serveur"
1089
-
1090
- #: views/packages/main/new2.base.php:121 views/tools/controller.php:18
1091
- msgid "Diagnostics"
1092
- msgstr "Diagnostics"
1093
-
1094
- #: views/packages/main/new2.base.php:130 views/packages/main/new2.base.php:135
1095
- #: views/tools/diagnostics.php:106
1096
- msgid "Web Server"
1097
- msgstr "Serveur"
1098
-
1099
- #: views/packages/main/new2.base.php:137
1100
- msgid "Supported web servers:"
1101
- msgstr "Serveurs compatibles :"
1102
-
1103
- #: views/packages/main/new2.base.php:147
1104
- msgid "PHP Setup"
1105
- msgstr "Configuration PHP"
1106
-
1107
- #: views/packages/main/new2.base.php:153
1108
- msgid "Open Base Dir"
1109
- msgstr "Ouvrir le répertoire de base"
1110
-
1111
- #: views/packages/main/new2.base.php:155
1112
- msgid ""
1113
- "Issues might occur when [open_basedir] is enabled. Work with your server "
1114
- "admin to disable this value in the php.ini file if you’re having issues "
1115
- "building a package."
1116
- msgstr ""
1117
- "Duplicator peut rencontrer des problèmes quand [open_basedir] est activé. "
1118
- "Merci de voir avec votre administrateur réseau s'il peut désactiver cette "
1119
- "fonction dans le fichier php.ini, si vous avez des problèmes pour créer des "
1120
- "paquets."
1121
-
1122
- #: views/packages/main/new2.base.php:161 views/tools/diagnostics.php:189
1123
- msgid "Max Execution Time"
1124
- msgstr "Temps maximum d'exécution"
1125
-
1126
- #: views/packages/main/new2.base.php:163
1127
- #, php-format
1128
- msgid ""
1129
- "Issues might occur for larger packages when the [max_execution_time] value "
1130
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
1131
- "seconds or higher. An attempt is made to override this value if the server "
1132
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
1133
- msgstr ""
1134
- "Duplicator peut rencontrer des problèmes quand la valeur de "
1135
- "[max_execution_time] dans le fichier php.ini est trop faible. La valeur "
1136
- "recommandée est de \"%1$s\" secondes ou plus. Si le serveur l'autorise, "
1137
- "l'extension va essayer de forcer cette valeur. Une valeur de 0 (recommandé) "
1138
- "signifie qu'il n'y a pas de limite de temps du côté de PHP."
1139
-
1140
- #: views/packages/main/new2.base.php:165
1141
- msgid ""
1142
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
1143
- "timeout passes and you still see a build interrupt messages, then your web "
1144
- "server could be killing the process. If you are limited on processing "
1145
- "time, consider using the database or file filters to shrink the size of your "
1146
- "overall package. However use caution as excluding the wrong resources can "
1147
- "cause your install to not work properly."
1148
- msgstr ""
1149
- "Note : Le timeout peut également être utilisé comme couche de serveur. Si le "
1150
- "timeout maximum PHP est atteint et que voyez encore des messages "
1151
- "d'interruption dans le processus de création de paquet, alors votre serveur "
1152
- "doit tuer notre processus. Si vous êtes limités par ce temps de latence, "
1153
- "essayez donc d'utiliser les filtres de base de données ou de fichiers afin "
1154
- "de diminuer la taille du paquet final. Cependant, faites attention : exclure "
1155
- "les mauvaises ressources pourrait empêcher votre installation de fonctionner "
1156
- "correctement."
1157
-
1158
- #: views/packages/main/new2.base.php:171
1159
- msgid "Get faster builds with Duplicator Pro."
1160
- msgstr "Gagnez du temps avec Duplicator Pro."
1161
-
1162
- #: views/packages/main/new2.base.php:179
1163
- msgid "MySQLi"
1164
- msgstr "MySQLi"
1165
-
1166
- #: views/packages/main/new2.base.php:181
1167
- msgid ""
1168
- "Creating the package does not require the mysqli module. However the "
1169
- "installer.php file requires that the PHP module mysqli be installed on the "
1170
- "server it is deployed on."
1171
- msgstr ""
1172
- "La création du paquet ne nécessite pas le modyle mysqli. Cependant le "
1173
- "fichier installer.php requiert que mysqli soit installé sur le serveur "
1174
- "utilisé pour le déploiement."
1175
-
1176
- #: views/packages/main/new2.base.php:191
1177
- msgid "WordPress"
1178
- msgstr "WordPress"
1179
-
1180
- #: views/packages/main/new2.base.php:196
1181
- msgid "WordPress Version"
1182
- msgstr "Version de WordPress"
1183
-
1184
- #: views/packages/main/new2.base.php:198
1185
- #, php-format
1186
- msgid ""
1187
- "It is recommended to have a version of WordPress that is greater than %1$s"
1188
- msgstr ""
1189
- "Nous vous recommandons d'avoir une version de WordPress supérieure à %1$s"
1190
-
1191
- #: views/packages/main/new2.base.php:202
1192
- msgid "Core Files"
1193
- msgstr "Fichiers sources"
1194
-
1195
- #: views/packages/main/new2.base.php:204
1196
- msgid ""
1197
- "If the scanner is unable to locate the wp-config.php file in the root "
1198
- "directory, then you will need to manually copy it to its new location."
1199
- msgstr ""
1200
- "Si le scanner n'est pas en mesure de trouver le fichier wp-config.php dans "
1201
- "le répertoire racine alors vous devrez le copier manuellement à son nouvel "
1202
- "emplacement."
1203
-
1204
- #: views/packages/main/new2.base.php:210
1205
- msgid "Cache Path"
1206
- msgstr "Chemin du cache"
1207
-
1208
- #: views/packages/main/new2.base.php:212
1209
- msgid ""
1210
- "Cached data will lead to issues at install time and increases your archive "
1211
- "size. It is recommended to empty your cache directory at build time. Use "
1212
- "caution when removing data from the cache directory. If you have a cache "
1213
- "plugin review the documentation for how to empty it; simply removing files "
1214
- "might cause errors on your site. The cache size minimum threshold is "
1215
- "currently set at "
1216
- msgstr ""
1217
- "Les données en cache risquent d'entrainer des problèmes influant sur le "
1218
- "temps d'installation et la taille de l'archive. Il est fortement recommandé "
1219
- "de vider votre répertoire de cache avant de créer un paquet. Faites tout de "
1220
- "même attention quand vous retirez des données du répertoire de cache. Si "
1221
- "vous utilisez une extension de cache, merci de suivre leurs instructions "
1222
- "pour désinstaller proprement et vider les fichiers en cache. Supprimer "
1223
- "manuellement les fichiers de cache pourrait poser des conflits avec d'autres "
1224
- "plugins par la suite. La limite de taille minimale de cache est actuellement "
1225
- "fixée à "
1226
-
1227
- #: views/packages/main/new2.base.php:235 views/packages/main/new2.base.php:359
1228
- msgid "Enabled"
1229
- msgstr "Activé"
1230
-
1231
- #: views/packages/main/new2.base.php:250
1232
- msgid "File Count"
1233
- msgstr "Nombre de fichiers"
1234
-
1235
- #: views/packages/main/new2.base.php:251
1236
- msgid "Directory Count"
1237
- msgstr "Nombre de répertoires"
1238
-
1239
- #: views/packages/main/new2.base.php:254
1240
- #, php-format
1241
- msgid ""
1242
- "Total size represents all files minus any filters that have been setup. The "
1243
- "current thresholds that triggers a warning is %1$s for the total size. Some "
1244
- "budget hosts limit the amount of time a PHP/Web request process can run. "
1245
- "When working with larger sites this can cause timeout issues. Consider using "
1246
- "a file filter in step 1 to shrink and filter the overall size of your "
1247
- "package."
1248
- msgstr ""
1249
- "La taille totale est égale à celle de tous les fichiers MOINS ceux que vous "
1250
- "avez exlus. La limite actuelle d'avertissement est de %1$s pour la taille "
1251
- "totale. Certains hébergeuers limitent le temps d'exécution de certaines "
1252
- "requêtes, ce qui peut bloquer la création de paquets pour de gros sites. "
1253
- "Envisagez alors de créer des filtres à l'étape 1 pour réduire la taille "
1254
- "finale de votre paquet."
1255
-
1256
- #: views/packages/main/new2.base.php:261
1257
- msgid "Package support up to 2GB available in Duplicator Pro."
1258
- msgstr "Les paquets de plus de 2Go sont disponibles avec Duplicator Pro."
1259
-
1260
- #: views/packages/main/new2.base.php:275
1261
- msgid "Name Checks"
1262
- msgstr "Vérification des noms de fichiers"
1263
-
1264
- #: views/packages/main/new2.base.php:280
1265
- msgid ""
1266
- "File or directory names may cause issues when working across different "
1267
- "environments and servers. Names that are over 250 characters, contain "
1268
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1269
- "issues in a remote enviroment. It is recommended to remove or filter these "
1270
- "files before building the archive if you have issues at install time."
1271
- msgstr ""
1272
- "Des noms de fichiers ou de répertoires invalides peuvent poser des problèmes "
1273
- "en fonction des environnements et des serveurs. Les noms invalides dépassent "
1274
- "250 caractères ou contiennent des caractères interdits tels que * ? > < : / "
1275
- "\\ | ou encore unicodes. Il est recommandé de supprimer ou exclure ces "
1276
- "fichiers avant de créer une archive car sinon vous auriez des problèmes lors "
1277
- "de l'installation."
1278
-
1279
- #: views/packages/main/new2.base.php:283 views/packages/main/new2.base.php:301
1280
- msgid "Show Paths"
1281
- msgstr "Voir les chemins"
1282
-
1283
- #: views/packages/main/new2.base.php:292
1284
- msgid "Large Files"
1285
- msgstr "Fichiers volumineux"
1286
-
1287
- #: views/packages/main/new2.base.php:297
1288
- #, php-format
1289
- msgid ""
1290
- "Large files such as movies or other backuped data can cause issues with "
1291
- "timeouts. The current check for large files is %1$s per file. If your "
1292
- "having issues creating a package consider excluding these files with the "
1293
- "files filter and manually moving them to your new location."
1294
- msgstr ""
1295
- "Les fichiers volumineux tels que les vidéos ou autres fichiers de sauvegarde "
1296
- "peuvent causer des problèmes avec les timeouts. La valeur actuelle pour les "
1297
- "fichiers volumineux est de %1$s par fichier. Si vous rencontrez des "
1298
- "problèmes lors de la création d'un paquet, envisagez d'exclure ces fichiers "
1299
- "et de les déplacer manuellement à leur futur emplacement."
1300
-
1301
- #: views/packages/main/new2.base.php:311
1302
- msgid "Archive Details"
1303
- msgstr "Détails de l'archive"
1304
-
1305
- #: views/packages/main/new2.base.php:314
1306
- msgid "Root Directory"
1307
- msgstr "Répertoire racine"
1308
-
1309
- #: views/packages/main/new2.base.php:318
1310
- msgid "Excluded Directories"
1311
- msgstr "Répertoires exclus"
1312
-
1313
- #: views/packages/main/new2.base.php:323
1314
- msgid "No directory filters have been set."
1315
- msgstr "Aucun filtre de répertoire n'a été activé."
1316
-
1317
- #: views/packages/main/new2.base.php:328
1318
- msgid "Excluded File Extensions"
1319
- msgstr "Extensions de fichiers exclues"
1320
-
1321
- #: views/packages/main/new2.base.php:333
1322
- msgid "No file extension filters have been set."
1323
- msgstr "Aucun filtre d'extension de fichier n'a été activé."
1324
-
1325
- #: views/packages/main/new2.base.php:338
1326
- msgid ""
1327
- "The root directory is where Duplicator starts archiving files. The excluded "
1328
- "sections will be skipped during the archive process. "
1329
- msgstr ""
1330
- "Le répertoire racine est l'emplacement dans lequel Duplicator place les "
1331
- "fichiers d'archive. Les sections exclues seront retirées lors de la création "
1332
- "de paquet. "
1333
-
1334
- #: views/packages/main/new2.base.php:339
1335
- msgid "All results are stored in a json file. "
1336
- msgstr "Tous les résultats sont stockés dans un fichier json. "
1337
-
1338
- #: views/packages/main/new2.base.php:341
1339
- msgid "[view json report]"
1340
- msgstr "[voir le rapport json]"
1341
-
1342
- #: views/packages/main/new2.base.php:375
1343
- msgid "Records"
1344
- msgstr "Enregistrements"
1345
-
1346
- #: views/packages/main/new2.base.php:378
1347
- msgid "repair and optimization"
1348
- msgstr "réparer et optimiser"
1349
-
1350
- #: views/packages/main/new2.base.php:379
1351
- #, php-format
1352
- msgid ""
1353
- "Total size and row count for all database tables are approximate values. "
1354
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1355
- "databases take time to process and can cause issues with server timeout and "
1356
- "memory settings. Running a %3$s on your database can also help improve the "
1357
- "overall size and performance. If your server supports shell_exec and "
1358
- "mysqldump you can try to enable this option from the settings menu."
1359
- msgstr ""
1360
- "La taille totale et le nombre de colonnes pour les tables de toutes les "
1361
- "bases de données sont des valeurs approximatives. Les seuils qui déclenchent "
1362
- "des messages d'erreur sont %1$s et %2$s. Les base de données volumineuses "
1363
- "sont longues à traiter et peuvent poser des problèmes avec le timeout "
1364
- "serveur ainsi que les paramètres de stockage. Disposer d'un %3$s sur votre "
1365
- "base de données peut également améliorer la taille totale et les "
1366
- "performances. Si votre serveur est compatible shell_exec et mysqldump, "
1367
- "essayez d'activer cette option depuis le menu des paramètres."
1368
-
1369
- #: views/packages/main/new2.base.php:391
1370
- msgid "Table Details"
1371
- msgstr "Détails de la table"
1372
-
1373
- #: views/packages/main/new2.base.php:402
1374
- msgid "Name:"
1375
- msgstr "Nom :"
1376
-
1377
- #: views/packages/main/new2.base.php:403
1378
- msgid "Host:"
1379
- msgstr "Hébergeur :"
1380
-
1381
- #: views/packages/main/new2.base.php:405
1382
- msgid "Build Mode:"
1383
- msgstr "Mode de construction :"
1384
-
1385
- #: views/packages/main/new2.base.php:426
1386
- msgid "A warning status was detected, are you sure you want to continue?"
1387
- msgstr ""
1388
- "Il y a un ou plusieurs avertissement(s), êtes-vous sûr de vouloir continuer ?"
1389
-
1390
- #: views/packages/main/new2.base.php:431
1391
- msgid ""
1392
- "Scan checks are not required to pass, however they could cause issues on "
1393
- "some systems."
1394
- msgstr ""
1395
- "Il n'est pas nécessaire que tous les résultats du scan soient positifs, "
1396
- "cependant cela pourrait poser des problèmes sur certains systèmes."
1397
-
1398
- #: views/packages/main/new2.base.php:433
1399
- msgid ""
1400
- "Please review the details for each warning by clicking on the detail link."
1401
- msgstr "Vérifiez chaque avertissement en cliquant sur le lien de détail."
1402
-
1403
- #: views/packages/main/new2.base.php:445
1404
- msgid "Scan Error"
1405
- msgstr "Erreurs de scan"
1406
-
1407
- #: views/packages/main/new2.base.php:446
1408
- msgid "Please try again!"
1409
- msgstr "Merci de réessayer !"
1410
-
1411
- #: views/packages/main/new2.base.php:448 views/packages/main/new3.base.php:115
1412
- msgid "Server Status:"
1413
- msgstr "Statut serveur :"
1414
-
1415
- #: views/packages/main/new2.base.php:451 views/packages/main/new3.base.php:119
1416
- msgid "Error Message:"
1417
- msgstr "Message d'erreur :"
1418
-
1419
- #: views/packages/main/new2.base.php:458
1420
- msgid "Back"
1421
- msgstr "Retour"
1422
-
1423
- #: views/packages/main/new2.base.php:459
1424
- msgid "Rescan"
1425
- msgstr "Re-scanner"
1426
-
1427
- #: views/packages/main/new2.base.php:563
1428
- msgid "Unable to report on any tables"
1429
- msgstr "Impossible de récupérer des tables"
1430
-
1431
- #: views/packages/main/new2.base.php:572
1432
- msgid "Unable to report on database stats"
1433
- msgstr "Impossible de récupérer les statistiques de la base de données"
1434
-
1435
- #: views/packages/main/new2.base.php:593
1436
- msgid "DIR"
1437
- msgstr "REPERTOIRE"
1438
-
1439
- #: views/packages/main/new2.base.php:599 views/packages/main/new2.base.php:612
1440
- msgid "FILE"
1441
- msgstr "FICHIER"
1442
-
1443
- #: views/packages/main/new2.base.php:602
1444
- msgid "No name warning issues found."
1445
- msgstr "Pas de problème de nom de fichiers."
1446
-
1447
- #: views/packages/main/new2.base.php:608
1448
- msgid "No large files found."
1449
- msgstr "Aucun fichier volumineux trouvé."
1450
-
1451
- #: views/packages/main/new3.base.php:42
1452
- msgid "Step 3: Build Package"
1453
- msgstr "Étape 3 : Création du paquet"
1454
-
1455
- #: views/packages/main/new3.base.php:59
1456
- msgid "Building Package"
1457
- msgstr "Création du paquet en cours"
1458
-
1459
- #: views/packages/main/new3.base.php:62
1460
- msgid "Keep this window open during the build process."
1461
- msgstr ""
1462
- "Gardez cette fenêtre ouverte pendant le processus de création de paquet."
1463
-
1464
- #: views/packages/main/new3.base.php:63
1465
- msgid "This may take several minutes."
1466
- msgstr "Cela peut prendre plusieurs minutes."
1467
-
1468
- #: views/packages/main/new3.base.php:67
1469
- msgid "Build Status"
1470
- msgstr "Statut de la création de paquet"
1471
-
1472
- #: views/packages/main/new3.base.php:74
1473
- msgid "Package Completed"
1474
- msgstr "Paquet créé"
1475
-
1476
- #: views/packages/main/new3.base.php:79
1477
- msgid "Process Time"
1478
- msgstr "Durée du processus"
1479
-
1480
- #: views/packages/main/new3.base.php:91
1481
- msgid "click buttons to download"
1482
- msgstr "cliquez sur les boutons pour télécharger vos fichiers"
1483
-
1484
- #: views/packages/main/new3.base.php:104
1485
- msgid "Build Interrupt"
1486
- msgstr "Arrêt"
1487
-
1488
- #: views/packages/main/new3.base.php:105
1489
- msgid "The current build has experienced an issue."
1490
- msgstr "La création de paquet en cours a rencontré une erreur."
1491
-
1492
- #: views/packages/main/new3.base.php:107
1493
- msgid "Please try the process again."
1494
- msgstr "Merci de réessayer la création de paquet."
1495
-
1496
- #: views/packages/main/new3.base.php:109
1497
- msgid "Diagnose"
1498
- msgstr "Diagnostic"
1499
-
1500
- #: views/packages/main/new3.base.php:110
1501
- msgid "Try Again"
1502
- msgstr "Merci de réessayer"
1503
-
1504
- #: views/packages/main/new3.base.php:126
1505
- msgid "Notice"
1506
- msgstr "Notification"
1507
-
1508
- #: views/packages/main/new3.base.php:129
1509
- msgid "Build Folder:"
1510
- msgstr "Répertoires de création des paquets :"
1511
-
1512
- #: views/packages/main/new3.base.php:131
1513
- msgid ""
1514
- "Some servers close connections quickly; yet the build can continue to run in "
1515
- "the background. To validate if a build is still running; open the 'tmp' "
1516
- "folder above and see if the archive file is growing in size. If it is not "
1517
- "then your server has strict timeout constraints. Please visit the support "
1518
- "page for additional resources."
1519
- msgstr ""
1520
- "Certains serveurs coupent leur connexion rapidement, cependant le processus "
1521
- "continue à fonctionner en arrière-plan. Pour vérifier qu'une création de "
1522
- "paquet est en cours, ouvrez le répertoire 'tmp' ci-dessous and regardez si "
1523
- "la taille de l'archive est en train de grandir. Si ce n'est pas le cas, "
1524
- "alors votre serveur a des timeouts stricts. Vous pouvez aller voir l'onglet "
1525
- "Support pour des ressources additionnelles. "
1526
-
1527
- #: views/settings/general.php:6
1528
- msgid "Settings Saved"
1529
- msgstr "Paramètres sauvegardés"
1530
-
1531
- #: views/settings/general.php:82
1532
- msgid "Plugin"
1533
- msgstr "Extension"
1534
-
1535
- #: views/settings/general.php:90
1536
- msgid "Uninstall"
1537
- msgstr "Lors de la désinstallation"
1538
-
1539
- #: views/settings/general.php:93
1540
- msgid "Delete Plugin Settings"
1541
- msgstr "Effacer les paramètres de l'extension"
1542
-
1543
- #: views/settings/general.php:96
1544
- msgid "Delete Entire Storage Directory"
1545
- msgstr "Effacer tout le répertoire de stockage"
1546
-
1547
- #: views/settings/general.php:103
1548
- msgid "Full Path"
1549
- msgstr "Chemin complet"
1550
-
1551
- #: views/settings/general.php:106
1552
- msgid "Disable .htaccess File In Storage Directory"
1553
- msgstr "Désactiver le fichier .htaccess dans le répertoire de stockage"
1554
-
1555
- #: views/settings/general.php:108
1556
- msgid "Disable if issues occur when downloading installer/archive files."
1557
- msgstr ""
1558
- "Désactivez-le si vous n'arrivez pas à télécharger l'installeur ou les "
1559
- "fichiers d'archive."
1560
-
1561
- #: views/settings/general.php:121
1562
- msgid "Archive Flush"
1563
- msgstr "Suppression des archives"
1564
-
1565
- #: views/settings/general.php:124
1566
- msgid "Attempt Network Keep Alive"
1567
- msgstr "Tenter de garder la connexion active"
1568
-
1569
- #: views/settings/general.php:125
1570
- msgid "recommended only for large archives"
1571
- msgstr "recommandé seulement pour les archives volumineuses"
1572
-
1573
- #: views/settings/general.php:127
1574
- msgid ""
1575
- "This will attempt to keep a network connection established for large "
1576
- "archives."
1577
- msgstr ""
1578
- "Ceci va essayer de garder une connexion active pour les archives "
1579
- "volumineuses."
1580
-
1581
- #: views/settings/general.php:132
1582
- msgid "Database Build"
1583
- msgstr "Création des paquets"
1584
-
1585
- #: views/settings/general.php:135
1586
- msgid "Use PHP"
1587
- msgstr "Utiliser PHP"
1588
-
1589
- #: views/settings/general.php:138
1590
- msgid "Query Limit Size"
1591
- msgstr "Limite de taille des requêtes"
1592
-
1593
- #: views/settings/general.php:147
1594
- msgid "higher values speed up build times but uses more memory"
1595
- msgstr ""
1596
- "des valeurs élevées accélèrent le processus mais consomment plus de mémoire"
1597
-
1598
- #: views/settings/general.php:154
1599
- msgid "This server does not have shell_exec configured to run."
1600
- msgstr "Ce serveur n'a pas shell_exec de paramétré."
1601
-
1602
- #: views/settings/general.php:156
1603
- msgid "Please contact the server administrator to enable this feature."
1604
- msgstr ""
1605
- "Merci de contacter votre administrateur réseau pour activer cette "
1606
- "fonctionnalité."
1607
-
1608
- #: views/settings/general.php:161
1609
- msgid "Use mysqldump"
1610
- msgstr "Utiliser mysqldump"
1611
-
1612
- #: views/settings/general.php:162
1613
- msgid "recommended for large databases"
1614
- msgstr "recommandé pour les bases de données volumineuses"
1615
-
1616
- #: views/settings/general.php:167
1617
- msgid "Working Path:"
1618
- msgstr "Chemin fonctionnel :"
1619
-
1620
- #: views/settings/general.php:173
1621
- msgid ""
1622
- "Mysqldump was not found at its default location or the location provided. "
1623
- "Please enter a path to a valid location where mysqldump can run. If the "
1624
- "problem persist contact your server administrator."
1625
- msgstr ""
1626
- "Mysqldump n'a pas été trouvé à son emplacement par défaut ou à l'emplacement "
1627
- "fourni. Merci d'entrer le chemin vers un emplacement où mysqldump pourra "
1628
- "tourner. Si le problème persiste, contactez votre administrateur réseau."
1629
-
1630
- #: views/settings/general.php:178
1631
- msgid "Add Custom Path:"
1632
- msgstr "Ajouter un chemin personnalisé :"
1633
-
1634
- #: views/settings/general.php:182
1635
- msgid "This is the path to your mysqldump program."
1636
- msgstr "C'est le chemin vers le programme mysqldump."
1637
-
1638
- #: views/settings/general.php:191
1639
- msgid "Package Debug"
1640
- msgstr "Débogage des paquets"
1641
-
1642
- #: views/settings/general.php:194
1643
- msgid "Show Package Debug Status in Packages Screen"
1644
- msgstr "Montrer le statut de débogage dans l'écran des paquets"
1645
-
1646
- #: views/settings/general.php:202
1647
- msgid "Roles & Capabilities"
1648
- msgstr "Rôles et droits"
1649
-
1650
- #: views/settings/general.php:207
1651
- msgid "Custom Roles"
1652
- msgstr "Rôles personnalisés"
1653
-
1654
- #: views/settings/general.php:210
1655
- msgid "Enable User Role Editor Plugin Integration"
1656
- msgstr "Activer l'intégration avec l'extension User Role Editor"
1657
-
1658
- #: views/settings/general.php:217
1659
- msgid "The User Role Editor Plugin"
1660
- msgstr "L'extension User Role Editor"
1661
-
1662
- #: views/settings/general.php:218
1663
- msgid "Free"
1664
- msgstr "gratuit"
1665
-
1666
- #: views/settings/general.php:219
1667
- msgid "or"
1668
- msgstr "ou"
1669
-
1670
- #: views/settings/general.php:220
1671
- msgid "Professional"
1672
- msgstr "professionnel"
1673
-
1674
- #: views/settings/general.php:221
1675
- msgid "must be installed to use"
1676
- msgstr "doit être installé pour utiliser"
1677
-
1678
- #: views/settings/general.php:222
1679
- msgid "this feature."
1680
- msgstr "cette fonctionnalité."
1681
-
1682
- #: views/settings/general.php:234
1683
- msgid "Save Settings"
1684
- msgstr "Sauvegarder les paramètres"
1685
-
1686
- #: views/tools/cleanup.php:20
1687
- msgid "File Found"
1688
- msgstr "Fichier trouvé"
1689
-
1690
- #: views/tools/cleanup.php:21
1691
- msgid "File Removed"
1692
- msgstr "Fichier retiré"
1693
-
1694
- #: views/tools/cleanup.php:26
1695
- msgid "Installer file cleanup ran!"
1696
- msgstr "Le nettoyage des fichiers d'installation a eu lieu."
1697
-
1698
- #: views/tools/cleanup.php:31 views/tools/diagnostics.php:44
1699
- msgid "Legacy data removed."
1700
- msgstr "Version originale supprimée."
1701
-
1702
- #: views/tools/cleanup.php:35
1703
- msgid "Build cache removed."
1704
- msgstr "Cache supprimé."
1705
-
1706
- #: views/tools/cleanup.php:90
1707
- msgid ""
1708
- "If the installer files did not successfully get removed, then you WILL need "
1709
- "to remove them manually"
1710
- msgstr ""
1711
- "Si les fichiers d'installation ne sont pas supprimés, il vous faudra "
1712
- "ABSOLUMENT les enlever manuellement"
1713
-
1714
- #: views/tools/cleanup.php:91
1715
- msgid ""
1716
- "Please remove all installer files to avoid leaving open security issues on "
1717
- "your server"
1718
- msgstr ""
1719
- "Merci de retirer tous les fichiers d'installation pour éviter de laisser des "
1720
- "failles de sécurité sur votre serveur"
1721
-
1722
- #: views/tools/cleanup.php:99
1723
- msgid "Data Cleanup"
1724
- msgstr "Nettoyage des données"
1725
-
1726
- #: views/tools/cleanup.php:104
1727
- msgid "Delete Reserved Files"
1728
- msgstr "Supprimer les fichiers de Duplicator"
1729
-
1730
- #: views/tools/cleanup.php:108
1731
- msgid "Removes all reserved installer files."
1732
- msgstr "Retire tous les fichiers d'installation."
1733
-
1734
- #: views/tools/cleanup.php:113
1735
- msgid ""
1736
- "Clicking on the 'Delete Reserved Files' button will remove the following "
1737
- "reserved files. These files are typically from a previous Duplicator "
1738
- "install. If you are unsure of the source, please validate the files. These "
1739
- "files should never be left on production systems for security reasons. "
1740
- "Below is a list of all the reserved files used by Duplicator. Please be "
1741
- "sure these are removed from your server."
1742
- msgstr ""
1743
- "En cliquant sur 'Supprimer les fichiers de Duplicator', vous supprimez les "
1744
- "fichiers d'installation. Ces fichiers pourraient potentiellement créer des "
1745
- "failles de sécurité, c'est pourquoi il faut les retirer. Vous trouverez la "
1746
- "liste de tous les fichiers ci-dessous, vérifiez que vous les aurez bien "
1747
- "retiré de votre serveur."
1748
-
1749
- #: views/tools/cleanup.php:129
1750
- msgid "Delete Legacy Data"
1751
- msgstr "Supprimer les données périmées"
1752
-
1753
- #: views/tools/cleanup.php:130
1754
- msgid "Removes all legacy data and settings prior to version"
1755
- msgstr ""
1756
- "Supprimer toutes les données et paramètres antérieurs à cette version de "
1757
- "duplicator"
1758
-
1759
- #: views/tools/cleanup.php:133
1760
- msgid "Clear Build Cache"
1761
- msgstr "Supprimer le cache"
1762
-
1763
- #: views/tools/cleanup.php:134
1764
- msgid "Removes all build data from:"
1765
- msgstr "Supprimer toutes les données dans le répertoire :"
1766
-
1767
- #: views/tools/cleanup.php:143
1768
- #, php-format
1769
- msgid "This action will remove all legacy settings prior to version %1$s. "
1770
- msgstr ""
1771
- "Cette action va supprimer tous les paramètres antérieurs à la version %1$s."
1772
-
1773
- #: views/tools/cleanup.php:144
1774
- msgid ""
1775
- "Legacy settings are only needed if you plan to migrate back to an older "
1776
- "version of this plugin."
1777
- msgstr ""
1778
- "Les paramètres originaux ne sont nécessaires que si vous avez prévu de "
1779
- "migrer vers une ancienne version de Duplicator."
1780
-
1781
- #: views/tools/cleanup.php:156
1782
- msgid ""
1783
- "This process will remove all build cache files. Be sure no packages are "
1784
- "currently building or else they will be cancelled."
1785
- msgstr ""
1786
- "Ce processus va supprimer tous les fichiers de cache. Vérifiez qu'aucun "
1787
- "paquet ne soit en cours de création car sinon il serait supprimé."
1788
-
1789
- #: views/tools/controller.php:17
1790
- msgid "Logging"
1791
- msgstr "Connexion"
1792
-
1793
- #: views/tools/controller.php:19
1794
- msgid "Cleanup"
1795
- msgstr "Nettoyage"
1796
-
1797
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1798
- msgid "unknow"
1799
- msgstr "inconnu"
1800
-
1801
- #: views/tools/diagnostics.php:39
1802
- msgid "Plugin settings reset."
1803
- msgstr "Paramètres de l'extension remis à zéro."
1804
-
1805
- #: views/tools/diagnostics.php:40
1806
- msgid "View state settings reset."
1807
- msgstr "Voir l'état de la remise à zéro des paramètres."
1808
-
1809
- #: views/tools/diagnostics.php:41
1810
- msgid "Active package settings reset."
1811
- msgstr "Activer la remise à zéro des paramètres du paquet"
1812
-
1813
- #: views/tools/diagnostics.php:81
1814
- msgid "Server Settings"
1815
- msgstr "Paramètres serveur"
1816
-
1817
- #: views/tools/diagnostics.php:90
1818
- msgid "Duplicator Version"
1819
- msgstr "Version de Duplicator"
1820
-
1821
- #: views/tools/diagnostics.php:94
1822
- msgid "Operating System"
1823
- msgstr "Système d'exploitation"
1824
-
1825
- #: views/tools/diagnostics.php:98
1826
- msgid "Timezone"
1827
- msgstr "Fuseau horaire"
1828
-
1829
- #: views/tools/diagnostics.php:102
1830
- msgid "Server Time"
1831
- msgstr "Fuseau horaire du serveur"
1832
-
1833
- #: views/tools/diagnostics.php:110
1834
- msgid "APC Enabled"
1835
- msgstr "APC activé"
1836
-
1837
- #: views/tools/diagnostics.php:114
1838
- msgid "Root Path"
1839
- msgstr "Chemin vers la racine"
1840
-
1841
- #: views/tools/diagnostics.php:118
1842
- msgid "ABSPATH"
1843
- msgstr "Chemin absolu"
1844
-
1845
- #: views/tools/diagnostics.php:122
1846
- msgid "Plugins Path"
1847
- msgstr "Chemin des extensions"
1848
-
1849
- #: views/tools/diagnostics.php:126
1850
- msgid "Loaded PHP INI"
1851
- msgstr "Charger PHP INI"
1852
-
1853
- #: views/tools/diagnostics.php:130
1854
- msgid "Server IP"
1855
- msgstr "IP du serveur"
1856
-
1857
- #: views/tools/diagnostics.php:134
1858
- msgid "Client IP"
1859
- msgstr "IP client"
1860
-
1861
- #: views/tools/diagnostics.php:145
1862
- msgid "Langugage"
1863
- msgstr "Langue"
1864
-
1865
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:208
1866
- msgid "Charset"
1867
- msgstr "Jeu de caractères"
1868
-
1869
- #: views/tools/diagnostics.php:153
1870
- msgid "Memory Limit "
1871
- msgstr "Limite de mémoire "
1872
-
1873
- #: views/tools/diagnostics.php:154
1874
- msgid "Max"
1875
- msgstr "Max"
1876
-
1877
- #: views/tools/diagnostics.php:172
1878
- msgid "Safe Mode"
1879
- msgstr "Mode sécurité"
1880
-
1881
- #: views/tools/diagnostics.php:176
1882
- msgid "On"
1883
- msgstr "Activé"
1884
-
1885
- #: views/tools/diagnostics.php:176
1886
- msgid "Off"
1887
- msgstr "Désactivé"
1888
-
1889
- #: views/tools/diagnostics.php:181
1890
- msgid "Memory Limit"
1891
- msgstr "Limite de mémoire"
1892
-
1893
- #: views/tools/diagnostics.php:185
1894
- msgid "Memory In Use"
1895
- msgstr "Mémoire utilisée"
1896
-
1897
- #: views/tools/diagnostics.php:193
1898
- msgid "Shell Exec"
1899
- msgstr "Shell Exec"
1900
-
1901
- #: views/tools/diagnostics.php:194 views/tools/diagnostics.php:198
1902
- msgid "Is Supported"
1903
- msgstr "Compatible"
1904
-
1905
- #: views/tools/diagnostics.php:194 views/tools/diagnostics.php:198
1906
- msgid "Not Supported"
1907
- msgstr "Non compatible"
1908
-
1909
- #: views/tools/diagnostics.php:197
1910
- msgid "Shell Exec Zip"
1911
- msgstr "Shell Exec Zip"
1912
-
1913
- #: views/tools/diagnostics.php:212
1914
- msgid "Wait Timeout"
1915
- msgstr "Temps d'attente"
1916
-
1917
- #: views/tools/diagnostics.php:216
1918
- msgid "Max Allowed Packets"
1919
- msgstr "Nombre maximum de paquets de données"
1920
-
1921
- #: views/tools/diagnostics.php:220
1922
- msgid "msyqldump Path"
1923
- msgstr "Chemin du mysqldump"
1924
-
1925
- #: views/tools/diagnostics.php:224
1926
- msgid "Server Disk"
1927
- msgstr "Disque serveur"
1928
-
1929
- #: views/tools/diagnostics.php:227
1930
- msgid "Free space"
1931
- msgstr "Espace libre"
1932
-
1933
- #: views/tools/diagnostics.php:230
1934
- msgid "Note: This value is the physical servers hard-drive allocation."
1935
- msgstr "Note : Cette donnée correspond à la taille du serveur physique."
1936
-
1937
- #: views/tools/diagnostics.php:231
1938
- msgid ""
1939
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
1940
- "value."
1941
- msgstr ""
1942
- "Pour les hébergements mutualisés, vérifiez dans l'administration de votre "
1943
- "fournisseur la vraie valeur d'espace disque qui vous est allouée."
1944
-
1945
- #: views/tools/diagnostics.php:247
1946
- msgid "Stored Data"
1947
- msgstr "Données enregistrées"
1948
-
1949
- #: views/tools/diagnostics.php:252
1950
- msgid "Options Values"
1951
- msgstr "Valeur des options"
1952
-
1953
- #: views/tools/diagnostics.php:285
1954
- msgid "PHP Information"
1955
- msgstr "Informations PHP"
1956
-
1957
- #: views/tools/diagnostics.php:304
1958
- msgid "Delete this option value"
1959
- msgstr "Effacer cette valeur"
1960
-
1961
- #: views/tools/logging.php:141
1962
- msgid "Log file not found or unreadable"
1963
- msgstr "Fichiers journaux introuvables ou illisibles"
1964
-
1965
- #: views/tools/logging.php:143
1966
- msgid ""
1967
- "Try to create a package, since no log files were found in the snapshots "
1968
- "directory with the extension *.log"
1969
- msgstr ""
1970
- "Aucun fichier journal n'a été trouvé dans le répertoire des sauvegardes avec "
1971
- "l'extension *.log"
1972
-
1973
- #: views/tools/logging.php:145
1974
- msgid "Reasons for log file not showing"
1975
- msgstr "Raisons pour lesquelles le fichier journal ne s'affiche pas"
1976
-
1977
- #: views/tools/logging.php:146
1978
- msgid "The web server does not support returning .log file extentions"
1979
- msgstr ""
1980
- "Le serveur web ne prend pas en charge les fichiers avec les extensions .log"
1981
-
1982
- #: views/tools/logging.php:147
1983
- msgid ""
1984
- "The snapshots directory does not have the correct permissions to write "
1985
- "files. Try setting the permissions to 755"
1986
- msgstr ""
1987
- "Le répertoire des sauvegardes n'a pas les bonnes permissions pour écrire les "
1988
- "fichiers. Essayez de passer les permissions à 755"
1989
-
1990
- #: views/tools/logging.php:148
1991
- msgid ""
1992
- "The process that PHP runs under does not have enough permissions to create "
1993
- "files. Please contact your hosting provider for more details"
1994
- msgstr ""
1995
- "Le processus PHP n'a pas assez de permissions pour créer les fichiers. Merci "
1996
- "de contacter votre hébergeur pour plus de détails"
1997
-
1998
- #: views/tools/logging.php:157 views/tools/logging.php:162
1999
- msgid "Options"
2000
- msgstr "Options"
2001
-
2002
- #: views/tools/logging.php:164
2003
- msgid "Refresh"
2004
- msgstr "Rafraîchir"
2005
-
2006
- #: views/tools/logging.php:169
2007
- msgid "Auto Refresh"
2008
- msgstr "Rafraîchissement automatique"
2009
-
2010
- #: views/tools/logging.php:175
2011
- msgid "Last 20 Logs"
2012
- msgstr "Les 20 derniers rapports"
2013
-
2014
- #~ msgid "Remove file(s) now"
2015
- #~ msgstr "Supprimer les fichiers maintenant"
2016
-
2017
- #~ msgid "Dismiss this notice"
2018
- #~ msgstr "Masquer ce message"
2019
-
2020
- #~ msgid "Duplicator Pro Has Arrived!"
2021
- #~ msgstr "Duplicator Pro est arrivé !"
2022
-
2023
- #~ msgid "Duplicator Free"
2024
- #~ msgstr "Duplicator Gratuit"
2025
-
2026
- #~ msgid "Backup Files &amp; Database"
2027
- #~ msgstr "Sauvegarde des Fichiers &amp; de la Base de Données"
2028
-
2029
- #~ msgid ""
2030
- #~ "Compresses all your WordPress files and database into a compressed "
2031
- #~ "snapshot archive file."
2032
- #~ msgstr ""
2033
- #~ "Compresse les fichiers WordPress ainsi que la base de données dans un "
2034
- #~ "instantané"
2035
-
2036
- #~ msgid "Directory Filters"
2037
- #~ msgstr "Filtres de Répertoire"
2038
-
2039
- #~ msgid ""
2040
- #~ "Filter out the directories and file extensions you want to include/"
2041
- #~ "exclude in your in your archive file."
2042
- #~ msgstr ""
2043
- #~ "Filtrez les répertoires et les extensions de fichiers que vous souhaitez "
2044
- #~ "inclure ou exclure de votre instantané."
2045
-
2046
- #~ msgid "Database Table Filters"
2047
- #~ msgstr "Filtres des Tables de la Base de Données"
2048
-
2049
- #~ msgid ""
2050
- #~ "Filter out only the database tables you want to include/exclude in your "
2051
- #~ "database creation script."
2052
- #~ msgstr ""
2053
- #~ "Filtrez les tables de la base de données que vous souhaitez inclure/"
2054
- #~ "exclure de votre instantané."
2055
-
2056
- #~ msgid "Migration Wizard"
2057
- #~ msgstr "Assistant de Migration"
2058
-
2059
- #~ msgid ""
2060
- #~ "With just two files (archive &amp; installer.php) move your site to a new "
2061
- #~ "location."
2062
- #~ msgstr ""
2063
- #~ "Avec seulement deux fichiers (archive &amp; installer.php) vous pourrez "
2064
- #~ "déplacer votre site à un autre emplacement."
2065
-
2066
- #~ msgid "Scheduled Backups"
2067
- #~ msgstr "Sauvegardes Planifiées"
2068
-
2069
- #~ msgid ""
2070
- #~ "Automate the creation of your packages to run at various scheduled "
2071
- #~ "intervals."
2072
- #~ msgstr "Automatisez la création de vos paquets à intervalles réguliers"
2073
-
2074
- #~ msgid "Dropbox Support"
2075
- #~ msgstr "Compatibilité avec Dropbox"
2076
-
2077
- #~ msgid "Backup up your entire site to Dropbox."
2078
- #~ msgstr "Sauvegardez votre site sur Dropbox."
2079
-
2080
- #~ msgid "FTP Support"
2081
- #~ msgstr "Compatibilité FTP"
2082
-
2083
- #~ msgid "Backup up your entire site to an FTP server."
2084
- #~ msgstr "Sauvegardez votre site sur un serveur FTP externe."
2085
-
2086
- #~ msgid "Customer Support"
2087
- #~ msgstr "Support Client"
2088
-
2089
- #~ msgid ""
2090
- #~ "Server setups can be quite complex, with pro you get prompt help to get "
2091
- #~ "your site backed up and moved."
2092
- #~ msgstr ""
2093
- #~ "La configuration de serveurs peut être complexe. Avec la version Pro vous "
2094
- #~ "obtenez une assistance pour vous aider à sauvegarder et déplacer votre "
2095
- #~ "site."
2096
-
2097
- #~ msgid ""
2098
- #~ "None of the reserved files (installer.php, installer-data.sql and "
2099
- #~ "installer-log.txt) where found from a previous install. This means you "
2100
- #~ "are clear to create a new package."
2101
- #~ msgstr ""
2102
- #~ "Aucun des fichiers &#39réservés&#39; n&#39;a été détecté (installer.php, "
2103
- #~ "installer-data.sql et installer-log.txt). Cela signifie que vous pouvez "
2104
- #~ "créer un nouveau paquet."
2105
-
2106
- #~ msgid ""
2107
- #~ "A reserved file(s) was found in the WordPress root directory. Reserved "
2108
- #~ "file names are installer.php, installer-data.sql and installer-log.txt. "
2109
- #~ "To archive your data correctly please remove any of these files from your "
2110
- #~ "WordPress root directory. Then try creating your package again."
2111
- #~ msgstr ""
2112
- #~ "Un ou plusieurs fichier(s) réservé(s) a été trouvé à la racine du "
2113
- #~ "répertoire WordPress. Il se pourrait que cela soit par exemple installer."
2114
- #~ "php, installer-data.sql ou encore installer-log.txt. Afin d&#39;archiver "
2115
- #~ "vos données correctement, merci de retirer ces fichiers du répertoire "
2116
- #~ "racine. Ensuite, essayez de créer un nouveau paquet."
2117
-
2118
- #~ msgid ""
2119
- #~ "All packages including the archive, installer and SQL script are stored "
2120
- #~ "in the location above. "
2121
- #~ msgstr ""
2122
- #~ "Tous les paquets contenant l&#39archive, l'installeur et le script SQL "
2123
- #~ "sont stockés à l'emplacement ci-dessous. "
2124
-
2125
- #~ msgid "checked tables are excluded"
2126
- #~ msgstr "les tables cochées seront exclues"
2127
-
2128
- #~ msgid ""
2129
- #~ "Total size represents all files minus any filters that have been setup. "
2130
- #~ "The current thresholds that trigger warnings are %1$s for the entire site "
2131
- #~ "and %2$s for large files."
2132
- #~ msgstr ""
2133
- #~ "La taille totale représente tous les fichiers à l&#39;exception de ceux "
2134
- #~ "exclus par vos soins. Le seuil actuel qui déclenche les avertissements "
2135
- #~ "est de %1$s pour le site entier et de %2$s pour les fichiers volumineux."
2136
-
2137
- #~ msgid "View Filters"
2138
- #~ msgstr "Voir les Filtres"
2139
-
2140
- #~ msgid ""
2141
- #~ "The lists above are the directories and file extension that will be "
2142
- #~ "excluded from the archive."
2143
- #~ msgstr ""
2144
- #~ "Les répertoires et les extensions de fichiers ci-dessous seront exclus de "
2145
- #~ "l&#39;archive."
2146
-
2147
- #~ msgid "Backup and Move Made Easy!"
2148
- #~ msgstr "La sauvegarde et la duplication rendus faciles !"
2149
-
2150
- #~ msgid "The top-rated Duplicator plugin is going professional!"
2151
- #~ msgstr "Le plugin Duplicator passe en version pro !"
2152
-
2153
- #~ msgid "Custom Templates"
2154
- #~ msgstr "Modèles personnalisés"
2155
-
2156
- #~ msgid ""
2157
- #~ "Customize how each package is created and built with a customized "
2158
- #~ "template."
2159
- #~ msgstr ""
2160
- #~ "Personnalisez la façon dont chaque paquet sera créé avec un modèle "
2161
- #~ "prédéfini"
2162
-
2163
- #~ msgid "Cloud Storage"
2164
- #~ msgstr "Stockage sur le Cloud"
2165
-
2166
- #~ msgid ""
2167
- #~ "Backup up your entire package to the cloud with access to services like "
2168
- #~ "FTP and Dropbox."
2169
- #~ msgstr ""
2170
- #~ "Sauvegardez l&#39;intégralité de votre paquet sur le cloud au travers du "
2171
- #~ "FTP ou de Dropbox."
2172
-
2173
- #~ msgid "Queued Processing"
2174
- #~ msgstr "Traitement de la file d&#39;attente"
2175
-
2176
- #~ msgid ""
2177
- #~ "Enable the build of larger more complex packages and avoid server "
2178
- #~ "timeouts with queued processing."
2179
- #~ msgstr ""
2180
- #~ "Autorisez la construction de paquets plus gros et plus complexes et "
2181
- #~ "évitez les timeouts de votre serveur avec la file d&#39;attente"
2182
-
2183
- #~ msgid "Format"
2184
- #~ msgstr "Format"
2185
-
2186
- #~ msgid "The Duplicator currently works with these web servers:"
2187
- #~ msgstr ""
2188
- #~ "Le plugin Duplicator fonctionne actuellement avec ces serveurs web : "
2189
-
2190
- #~ msgid "PHP Settings"
2191
- #~ msgstr "Paramètres PHP"
2192
-
2193
- #~ msgid "WordPress Settings"
2194
- #~ msgstr "Paramètres WordPress"
2195
-
2196
- #~ msgid "Found"
2197
- #~ msgstr "Trouvé"
2198
-
2199
- #~ msgid "Missing"
2200
- #~ msgstr "Manquant"
2201
-
2202
- #~ msgid "The cache size minimum threshold is currently set at "
2203
- #~ msgstr "Le seuil minimum de la taille de cache est actuellement à"
2204
-
2205
- #~ msgid "Invalid Names"
2206
- #~ msgstr "Noms Invalides"
2207
-
2208
- #~ msgid "Support"
2209
- #~ msgstr "Support"
2210
-
2211
- #~ msgid "By"
2212
- #~ msgstr "Par"
2213
-
2214
- #~ msgid "SQL File"
2215
- #~ msgstr "Fichier SQL"
2216
-
2217
- #~ msgid "Report"
2218
- #~ msgstr "Signalez"
2219
-
2220
- #~ msgid "Check out other great resources"
2221
- #~ msgstr "Jetez un oeil à nos autres super ressources"
2222
-
2223
- #~ msgid "Get Help Now!"
2224
- #~ msgstr "Demander de l'aide"
2225
-
2226
- #~ msgid "support section"
2227
- #~ msgstr "le support"
2228
-
2229
- #~ msgid "support page"
2230
- #~ msgstr "le support"
2231
-
2232
- #~ msgid "Purpose of this package"
2233
- #~ msgstr "Raison d&#39;être de ce paquet"
2234
-
2235
- #~ msgid "FAQ"
2236
- #~ msgstr "FAQ"
2237
-
2238
- #~ msgid "Partner"
2239
- #~ msgstr "Partenaire"
2240
-
2241
- #~ msgid "Approved Hosts"
2242
- #~ msgstr "Hébergeurs approuvés"
2243
-
2244
- #~ msgid "PHP Script Owner"
2245
- #~ msgstr "Propriétaire du Script PHP"
2246
-
2247
- #~ msgid ""
2248
- #~ "The above paths should have permissions of 755 for directories and 644 "
2249
- #~ "for files. You can temporarily try 777 if you continue to have issues. "
2250
- #~ "Also be sure to check the owner/group settings. For more details contact "
2251
- #~ "your host or server administrator."
2252
- #~ msgstr ""
2253
- #~ "Les chemins ci-dessous devraient avoir des permissions de 755 pour les "
2254
- #~ "répertoires et 644 pour les fichiers. Vous pouvez les passer à 777 mais "
2255
- #~ "seulement de manière temporaire, si vous rencontrez des problèmes. "
2256
- #~ "Veillez également à vérifier les paramètres de propriétaire/groupe. Pour "
2257
- #~ "plus de détails, contactez votre administrateur réseau."
2258
-
2259
- #~ msgid ""
2260
- #~ "The ZipArchive extension for PHP is required for compression. Please "
2261
- #~ "contact your hosting provider if you're on a hosted server. For "
2262
- #~ "additional information see our online documentation."
2263
- #~ msgstr ""
2264
- #~ "L&#39;extension ZipArchive pour PHP est requise pour la compression. "
2265
- #~ "Merci de contacter votre hébergeur si vous êtes sur un serveur mutualité. "
2266
- #~ "Pour plus d&#39;informations, consultez notre aide en ligne."
2267
-
2268
- #~ msgid ""
2269
- #~ "Safe Mode should be set safe_mode=Off in you php.ini file. On hosted "
2270
- #~ "servers you may have to request this setting be turned off. Please note "
2271
- #~ "that Safe Mode is deprecated as of PHP 5.3.0"
2272
- #~ msgstr ""
2273
- #~ "Le Mode Sécurité devrait être réglé à safe_mode=Off dans votre fichier "
2274
- #~ "php.ini. Pour les hébergements mutualisés, vous devriez demander à ce que "
2275
- #~ "ce paramètre soit désactivé. Veuillez également noter que le Mode "
2276
- #~ "Sécurité est obsolète depuis la version 5.3.0 de PHP"
2277
-
2278
- #~ msgid ""
2279
- #~ "PHP versions 5.2.17+ or higher is required. Please note that in "
2280
- #~ "versioning logic a value such as 5.2.9 is less than 5.2.17. Please "
2281
- #~ "contact your server administrator to upgrade to a stable and secure "
2282
- #~ "version of PHP"
2283
- #~ msgstr ""
2284
- #~ "PHP dans sa version 5.2.17+ ou supérieure est requis. Veuillez noter que "
2285
- #~ "la logique des versions de PHP veut que 5.2.9 est inférieur à 5.2.17. "
2286
- #~ "Contactez alors votre administrateur pour qu&#39;il mette à jour PHP à "
2287
- #~ "une version stable et sécurisée."
2288
-
2289
- #~ msgid "Need a hosting provider that is"
2290
- #~ msgstr "Besoin d&#39;un hébergeur qui est"
2291
-
2292
- #~ msgid "duplicator approved"
2293
- #~ msgstr "compatible Duplicator"
2294
-
2295
- #~ msgid "knowledgebase"
2296
- #~ msgstr "base de connaissances"
2297
-
2298
- #~ msgid "in detail for many of the quick and common answers."
2299
- #~ msgstr "en détail pour la plupart des questions les plus courantes."
2300
-
2301
- #~ msgid "Need Help?"
2302
- #~ msgstr "Besoin d&#39;aide ?"
2303
-
2304
- #~ msgid "Get Hosting!"
2305
- #~ msgstr "Trouver un Hébergeur !"
2306
-
2307
- #~ msgid ""
2308
- #~ "Please try the process again. If the problem persists please visit the "
2309
- #~ "support page."
2310
- #~ msgstr ""
2311
- #~ "Merci de réessayer l&#39;assemblage à nouveau. Si le problème persiste, "
2312
- #~ "merci de visiter le support."
2313
-
2314
- #~ msgid "All"
2315
- #~ msgstr "Tous"
2316
-
2317
- #~ msgid "None"
2318
- #~ msgstr "Aucun"
2319
-
2320
- #~ msgid "Cached Data"
2321
- #~ msgstr "Données en Cache"
2322
-
2323
- #~ msgid "max_execution_time"
2324
- #~ msgstr "temps_execution_max"
2325
-
2326
- #~ msgid ""
2327
- #~ "Timeouts effect how long a process is allowed to run. The recommended "
2328
- #~ "timeout is \"%1$s\" seconds. An attempt is made to override this value if "
2329
- #~ "the enviroment allows it. A \"Warn\" status will not be an issue unless "
2330
- #~ "your host kills PHP processes after a certain amount of time. "
2331
- #~ msgstr ""
2332
- #~ "Les timeouts correspondent à la durée pendant laquelle un processus est "
2333
- #~ "autorisé d&#39;être actif. Le timeout conseillé est de \"%1$s\" secondes. "
2334
- #~ "Un essai va être tenté pour imposer cette valeur si l&#39;environnement "
2335
- #~ "le permet. Un message d&#39;erreur ne devrait pas poser problème tant que "
2336
- #~ "votre hébergeur ne force pas la fermeture du processus PHP après un "
2337
- #~ "certain délai."
2338
-
2339
- #~ msgid ""
2340
- #~ "Timeouts can also be set at the web server layer, please work with your "
2341
- #~ "host or server administrator to make sure there are not restrictions for "
2342
- #~ "how long a PHP process is allowed to run. If you are limited on "
2343
- #~ "processing time, consider using the database or file filters to shrink "
2344
- #~ "the size of your overall package. However use caution as excluding the "
2345
- #~ "wrong resources can cause your install to not work properly."
2346
- #~ msgstr ""
2347
- #~ "Les timeouts peuvent également être une couche du serveur web. Merci de "
2348
- #~ "vérifier avec votre hébergeur ou votre administrateur réseau qu&#39;il "
2349
- #~ "n&#39;y ait pas de restriction de durée aux processus PHP. Si vous êtes "
2350
- #~ "limité, envisagez d&#39;utiliser un filtre de base de données ou de "
2351
- #~ "fichiers afin de diminuer la taille totale du paquet. Cependant, maniez "
2352
- #~ "ces options avec minutie : exclure les mauvaises ressources empêcherait "
2353
- #~ "l&#39;installation de fonctionner correctement ensuite."
2354
-
2355
- #~ msgid "Take A Quick 60 Second Survey"
2356
- #~ msgstr "Remplir un rapide questionnaire de 60 secondes"
2357
-
2358
- #~ msgid "Dashboard"
2359
- #~ msgstr "Tableau de Bord"
2360
-
2361
- #~ msgid "All About"
2362
- #~ msgstr "A propos"
2363
-
2364
- #~ msgid "If no log file is present the try to create a package"
2365
- #~ msgstr ""
2366
- #~ "Si vous ne trouvez pas de fichier journal, essayez de créer un paquet"
2367
-
2368
- #~ msgid "Duplicator: Create Package Log"
2369
- #~ msgstr "Duplicator : Créer les fichiers journaux"
2370
-
2371
- #~ msgid ""
2372
- #~ "Processing may take several minutes, please wait for progress bar to "
2373
- #~ "complete on the main status bar"
2374
- #~ msgstr ""
2375
- #~ "Le processus peut prendre plusieurs minutes, merci d'attendre que la "
2376
- #~ "barre de progression soit remplie"
2377
-
2378
- #~ msgid ""
2379
- #~ "Do NOT post this data to public sites like the WordPress.org forums as it "
2380
- #~ "contains sensitive data."
2381
- #~ msgstr ""
2382
- #~ "NE PUBLIEZ PAS ces données sur des sites publics tels que les forums "
2383
- #~ "WordPress.com : il s'agit de données sensibles."
2384
-
2385
- #~ msgid "Saving"
2386
- #~ msgstr "Sauvegarde"
2387
-
2388
- #~ msgid "Ready to create new package."
2389
- #~ msgstr "Prêt à créer le nouveau paquet."
2390
-
2391
- #~ msgid "Please enter a backup name."
2392
- #~ msgstr "Merci d'entrer un nom de sauvegarde."
2393
-
2394
- #~ msgid "Alpanumeric characters only on package name"
2395
- #~ msgstr ""
2396
- #~ "Seuls les caractères alphanumériques sont acceptés pour les noms de "
2397
- #~ "paquets"
2398
-
2399
- #~ msgid "Evaluating WordPress Setup. Please Wait"
2400
- #~ msgstr "Etude de votre installation WordPress. Merci de patienter."
2401
-
2402
- #~ msgid "Cancel"
2403
- #~ msgstr "Abandonner"
2404
-
2405
- #~ msgid "Checking System Status. Please Wait!"
2406
- #~ msgstr "Vérification du statut système. Merci de patienter !"
2407
-
2408
- #~ msgid "unreadable"
2409
- #~ msgstr "illisible"
2410
-
2411
- #~ msgid "error scanning directory"
2412
- #~ msgstr "erreur de lecture du répertoire"
2413
-
2414
- #~ msgid "AJAX Response"
2415
- #~ msgstr "Réponse AJAX"
2416
-
2417
- #~ msgid ""
2418
- #~ "Your LifeInTheGrid should be about working smarter not harder. With the "
2419
- #~ "Duplicator you can streamline your workflows and quickly clone a "
2420
- #~ "WordPress site in minutes. From Novice to Guru this plugin is designed "
2421
- #~ "for Bloggers, Admins, Developers, Designers, Entrepreneurs and anyone who "
2422
- #~ "uses WordPress."
2423
- #~ msgstr ""
2424
- #~ "Votre 'Vie Dans la Matrice' [LifeInTheGrid] devrait être tournée vers un "
2425
- #~ "travail plus intelligent, pas plus dur. Avec le Duplicator, vous pouvez "
2426
- #~ "rationaliser votre travail et rapidement cloner un site WordPress. Que "
2427
- #~ "vous soyez novice ou expert, ce plugin a été pensé pour les blogueurs, "
2428
- #~ "webmasters, développeurs, designers, entrepreneurs et tous ceux qui "
2429
- #~ "utilisent WordPress."
2430
-
2431
- #~ msgid ""
2432
- #~ "If you run into an issue feel free to submit a support ticket and visit "
2433
- #~ "our"
2434
- #~ msgstr ""
2435
- #~ "Si vous recentrez une erreur, n'hésitez pas à nous soumettre un ticket de "
2436
- #~ "support et visiter notre"
2437
-
2438
- #~ msgid ""
2439
- #~ "We also offer premium priority support for those who need feedback within "
2440
- #~ "24-48hrs. Please visit our "
2441
- #~ msgstr ""
2442
- #~ "Nous pouvons assurer un support premium pour ceux qui ont besoin d'aide "
2443
- #~ "en 24-48 heures. Merci de visiter notre"
2444
-
2445
- #~ msgid "service page"
2446
- #~ msgstr "page 'service'"
2447
-
2448
- #~ msgid ""
2449
- #~ "Consider a donation of any amount; it will take less than 60 seconds or "
2450
- #~ "about as fast as you can duplicate a site. These proceeds help to cover "
2451
- #~ "development and support costs. Thanks for your generosity!!"
2452
- #~ msgstr ""
2453
- #~ "60 secondes c'est le temps approximatif pour cloner un site. Si vous "
2454
- #~ "aimez gagner du temps alors faites-nous un don ! Cela nous aidera à "
2455
- #~ "couvrir les frais de développement et de support. Merci de votre "
2456
- #~ "générosité !"
2457
-
2458
- #~ msgid "Help out by leaving a 5 star review on the"
2459
- #~ msgstr "Aidez-nous en nous donnant un avis à 5 étoiles dans"
2460
-
2461
- #~ msgid "WordPress plugins directory"
2462
- #~ msgstr "le répertoire des plugins WordPress"
2463
-
2464
- #~ msgid "and by giving your opinion on the survey below."
2465
- #~ msgstr "et en nous donnant votre avis grâce au questionnaire ci-dessus."
2466
-
2467
- #~ msgid "Give us your Opinion?"
2468
- #~ msgstr "Vous souhaitez nous donner votre avis ?"
2469
-
2470
- #~ msgid ""
2471
- #~ "Spreading the word gives the plugin a wider audience which helps to pool "
2472
- #~ "more resources to test/support/develop and participate to improve the "
2473
- #~ "plugin. By getting the word out the Duplicator will continue to improve "
2474
- #~ "at a faster rate and harness the power of the open community to push the "
2475
- #~ "plugin further."
2476
- #~ msgstr ""
2477
- #~ "Partagez ce plugin lui donne la chance de toucher une plus large audience "
2478
- #~ "afin de trouver plus d'utilisateurs qui pourront nous aider à tester/"
2479
- #~ "contribuer/développer et participer à l'amélioration du plugin. En "
2480
- #~ "recommandant ce plugin à vos connaissances, cela nous permettra "
2481
- #~ "d'améliorer Duplicator à vitesse grand V en bénéficiant du pouvoir de la "
2482
- #~ "communauté."
2483
-
2484
- #~ msgid "Knowledge Base"
2485
- #~ msgstr "Base de Connaissances"
2486
-
2487
- #~ msgid "Blog"
2488
- #~ msgstr "Blog"
2489
-
2490
- #~ msgid "Labs"
2491
- #~ msgstr "Labos"
2492
-
2493
- #~ msgid "Create Package"
2494
- #~ msgstr "Créer un Paquet"
2495
-
2496
- #~ msgid "System Check"
2497
- #~ msgstr "Vérification du Système"
2498
-
2499
- #~ msgid "Show Create Log"
2500
- #~ msgstr "Voir le fichier journal de création"
2501
-
2502
- #~ msgid "Ready to create new package"
2503
- #~ msgstr "Prêt à créer un nouveau paquet"
2504
-
2505
- #~ msgid "Owner"
2506
- #~ msgstr "Propriétaire"
2507
-
2508
- #~ msgid "(Download Both)"
2509
- #~ msgstr "(Tout Télécharger)"
2510
-
2511
- #~ msgid "Secure Name"
2512
- #~ msgstr "Nom Sécurisé"
2513
-
2514
- #~ msgid "Show Download Links"
2515
- #~ msgstr "Montrer les Liens de Téléchargement"
2516
-
2517
- #~ msgid "Legacy Version"
2518
- #~ msgstr "Version Originale"
2519
-
2520
- #~ msgid ""
2521
- #~ "This package was built with a version that is no longer supported. It is "
2522
- #~ "highly recommended that this package be deleted. For more details see the"
2523
- #~ msgstr ""
2524
- #~ "Ce paquet a été créé avec une version précédente de Duplicator qui n'est "
2525
- #~ "plus supportée. Il est vivement recommandé de supprimer ce paquet. Pour "
2526
- #~ "plus de détails, allez voir"
2527
-
2528
- #~ msgid "Online FAQs"
2529
- #~ msgstr "les FAQs en ligne"
2530
-
2531
- #~ msgid "To create a new package, enter a name and click the create button "
2532
- #~ msgstr ""
2533
- #~ "Pour créer un nouveau paquet, donnez-lui un nom et cliquez sur le bouton "
2534
- #~ "\"Créer\""
2535
-
2536
- #~ msgid "with the duplicator"
2537
- #~ msgstr "avec Duplicator"
2538
-
2539
- #~ msgid "This process will backup all your files and database"
2540
- #~ msgstr ""
2541
- #~ "Ce processus va sauvegarder tous vos fichiers et votre base de données"
2542
-
2543
- #~ msgid "Creating a package may take several minutes if you have a large site"
2544
- #~ msgstr ""
2545
- #~ "Créer un paquet peut prendre plusieurs minutes si vous avez un gros site"
2546
-
2547
- #~ msgid "This window should remain open for the process to complete"
2548
- #~ msgstr ""
2549
- #~ "Cette fenêtre doit rester ouverte pour que le processus puisse marcher"
2550
-
2551
- #~ msgid "Please be patient while we work through this Beta version"
2552
- #~ msgstr ""
2553
- #~ "Merci de votre patience pendant que vous utilisez cette version Beta"
2554
-
2555
- #~ msgid "Please report any issues to"
2556
- #~ msgstr "Signalez-nous tout problème à"
2557
-
2558
- #~ msgid "Total Storage Used"
2559
- #~ msgstr "Mémoire Total Utilisée"
2560
-
2561
- #~ msgid ""
2562
- #~ "For a complete rundown of the Duplicator see the online knowledgebase by "
2563
- #~ "clicking the question button or any link below. If you experience "
2564
- #~ "issues with creating or installing a package check out the FAQ page first."
2565
- #~ msgstr ""
2566
- #~ "Pour une explication exhaustive de Duplicator, allez donc voir notre base "
2567
- #~ "de connaissances en ligne en cliquant sur le bouton interrogatif ou sur "
2568
- #~ "n'importe quel lien ci-dessous. Si vous rencontrez des problèmes pour "
2569
- #~ "créer ou installer un paquet, vérifiez d'abord la page FAQ."
2570
-
2571
- #~ msgid ""
2572
- #~ "Not all hosting companies are created equal and to get the most out of "
2573
- #~ "the plugin we recommend using hosting providers that we do our own "
2574
- #~ "testing on. Please visit our"
2575
- #~ msgstr ""
2576
- #~ "Tous les hébergeurs ne sont pas égaux. Afin de profiter du maximum du "
2577
- #~ "plugin, nous recommandons les hébergeurs que nous avons déjà testé. Allez "
2578
- #~ "donc voir notre"
2579
-
2580
- #~ msgid "Approved Affiliate Hosting Program"
2581
- #~ msgstr "Programme Affilié des Hébergeurs Approuvés"
2582
-
2583
- #~ msgid ""
2584
- #~ "and consider making a switch to hosts that we trust and have experienced "
2585
- #~ "good success with when using the Duplicator"
2586
- #~ msgstr ""
2587
- #~ "et envisagez de changer pour un hébergeur de confiance avec lequel nous "
2588
- #~ "avons vérifié que Duplicator fonctionnait."
2589
-
2590
- #~ msgid ""
2591
- #~ "If you run into an issue and have already read the FAQs feel free to "
2592
- #~ "submit a support ticket and we will try our best to respond within 5-10 "
2593
- #~ "business days or sooner if possible."
2594
- #~ msgstr ""
2595
- #~ "Si vous tombez sur un problème qui n'a pas encore été traité dans les "
2596
- #~ "FAQs, n'hésitez pas à nous envoyer un ticket de support et nous ferons "
2597
- #~ "notre maximum pour répondre dans les 5 à 10 jours ouvrés ou plus tôt si "
2598
- #~ "c'est possible."
2599
-
2600
- #~ msgid "If you need priority support within 24-48hrs please visit our "
2601
- #~ msgstr ""
2602
- #~ "Si vous avez besoin d'un support prioritaire en 24-48 heures, merci de "
2603
- #~ "visiter notre"
2604
-
2605
- #~ msgid ""
2606
- #~ "for more details. Premium support is 100% refundable if we are unable to "
2607
- #~ "resolve your issue."
2608
- #~ msgstr ""
2609
- #~ "pour plus de détails. Le support Premium est remboursé à 100% si nous "
2610
- #~ "n'arrivons pas à résoudre votre problème."
2611
-
2612
- #~ msgid ""
2613
- #~ "Most issues that occur with the Duplicator revolve around how a server is "
2614
- #~ "configured. In order to diagnose your issues we will require temporary "
2615
- #~ "admin accounts to your cPanel and WordPress Admin. Please fill out the "
2616
- #~ msgstr ""
2617
- #~ "La plupart des erreurs concernant le Duplicator sont concentrées autour "
2618
- #~ "des configurations serveur. Afin de diagnostiquer vos problèmes, il va "
2619
- #~ "nous falloir un accès administrateur temporaire vers votre cPanel et "
2620
- #~ "votre administration WordPress. Merci de remplir le"
2621
-
2622
- #~ msgid "Request Quote"
2623
- #~ msgstr "formulaire de demande de devis"
2624
-
2625
- #~ msgid "form and explain your issue in detail."
2626
- #~ msgstr "et de nous expliquer en détail vos problèmes."
2627
-
2628
- #~ msgid "System"
2629
- #~ msgstr "Système"
2630
-
2631
- #~ msgid "FTP"
2632
- #~ msgstr "FTP"
2633
-
2634
- #~ msgid "seconds"
2635
- #~ msgstr "secondes"
2636
-
2637
- #~ msgid "Max Memory"
2638
- #~ msgstr "Mémoire Max"
2639
-
2640
- #~ msgid "WP-Admin email is included. Add extra emails semicolon separated."
2641
- #~ msgstr ""
2642
- #~ "L'email WP-Admin est inclus. Ajoutez d'autres adresses emails séparées "
2643
- #~ "par des points-virgules."
2644
-
2645
- #~ msgid "Enable character conversion encoding"
2646
- #~ msgstr "Activer l'encodage de la conversion des caractères"
2647
-
2648
- #~ msgid "From"
2649
- #~ msgstr "De"
2650
-
2651
- #~ msgid "to"
2652
- #~ msgstr "à"
2653
-
2654
- #~ msgid "Disable this option for extended or double byte character sets"
2655
- #~ msgstr ""
2656
- #~ "Désactivez cette option pour les jeux de caractères étendus ou à double "
2657
- #~ "octet"
2658
-
2659
- #~ msgid ""
2660
- #~ "Having issues saving these options? Temporarily disable all 'Object "
2661
- #~ "Caches' (i.e. W3C Total Object Cache)"
2662
- #~ msgstr ""
2663
- #~ "Vous rencontrez des problèmes avec ces options ? Désactivez "
2664
- #~ "temporairement tous les 'Cache Objet' (dans W3 Total Cache par exemple)"
2665
-
2666
- #~ msgid "Install URL"
2667
- #~ msgstr "URL d'installation"
2668
-
2669
- #~ msgid "Delete entire snapshot directory when removing plugin"
2670
- #~ msgstr ""
2671
- #~ "Effacer l'intégralité du répertoire des Instantanés à la désintallation "
2672
- #~ "du plugin"
2673
-
2674
- #~ msgid "Save"
2675
- #~ msgstr "Sauvegarder"
2676
-
2677
- #~ msgid "Close"
2678
- #~ msgstr "Fermer"
2679
-
2680
- #~ msgid "Pre-Zip Overview"
2681
- #~ msgstr "Aperçu avant compression"
2682
-
2683
- #~ msgid "Perform Scan"
2684
- #~ msgstr "Faire un Scan"
2685
-
2686
- #~ msgid ""
2687
- #~ "Note: A scan will provide an estimate on the size of your file system. "
2688
- #~ "The scan will exclude items in the"
2689
- #~ msgstr ""
2690
- #~ "Note : Un scan va vous indiquer la taille estimée de votre fichier "
2691
- #~ "système. Il va exclure les éléments dans"
2692
-
2693
- #~ msgid ""
2694
- #~ "Files that are not readable by the plugin will not be included in the "
2695
- #~ "overview. Directories that are empty will not be included in the final "
2696
- #~ "package. "
2697
- #~ msgstr ""
2698
- #~ "Les fichiers qui ne sont pas lisibles par le plugin ne seront pas inclus "
2699
- #~ "dans l'aperçu. Les répertoires vides ne seront pas inclus dans le paquet "
2700
- #~ "final."
2701
-
2702
- #~ msgid "System Constraint"
2703
- #~ msgstr "Contraintes du Système"
2704
-
2705
- #~ msgid "Please try again! An issue has occurred."
2706
- #~ msgstr "Merci de réessayer ! Une erreur est survenue."
2707
-
2708
- #~ msgid "Recommendations"
2709
- #~ msgstr "Recommandations"
2710
-
2711
- #~ msgid "Validate"
2712
- #~ msgstr "Valider"
2713
-
2714
- #~ msgid "your system"
2715
- #~ msgstr "votre système"
2716
-
2717
- #~ msgid "refresh"
2718
- #~ msgstr "rafraîchir"
2719
-
2720
- #~ msgid "the dashboard."
2721
- #~ msgstr "le tableau de bord."
2722
-
2723
- #~ msgid "Monitor"
2724
- #~ msgstr "Surveillez"
2725
-
2726
- #~ msgid ""
2727
- #~ "your log file a few more minutes as processing may continue on some "
2728
- #~ "systems"
2729
- #~ msgstr ""
2730
- #~ "vos fichiers journaux encore quelques minutes le temps que le processus "
2731
- #~ "passe sur d'autres systèmes"
2732
-
2733
- #~ msgid ""
2734
- #~ "Contact your server admin to have the page timeout increased (see "
2735
- #~ "duration below)"
2736
- #~ msgstr ""
2737
- #~ "Contactez votre administrateur serveur afin qu'il augmente le 'timeout' "
2738
- #~ "de la page (voir la durée ci-dessous)"
2739
-
2740
- #~ msgid ""
2741
- #~ "Consider adding a directory filter in the options dialog if the process "
2742
- #~ "continues to timeout"
2743
- #~ msgstr ""
2744
- #~ "Essayez d'ajouter un filtre de répertoire dans les options si le "
2745
- #~ "processus continue à être avorté"
2746
-
2747
- #~ msgid "Check your disk space. For hosted sites review your providers help."
2748
- #~ msgstr ""
2749
- #~ "Vérifiez votre espace disque. Pour les sites hébergés, demandez l'aide à "
2750
- #~ "votre fournisseur."
2751
-
2752
- #~ msgid "Consider using an"
2753
- #~ msgstr "Songez à passer"
2754
-
2755
- #~ msgid "approved"
2756
- #~ msgstr "chez un"
2757
-
2758
- #~ msgid "hosting provider."
2759
- #~ msgstr "hébergeur approuvé."
2760
-
2761
- #~ msgid "See online help for more details at"
2762
- #~ msgstr "Consultez l'aide en ligne pour plus de détails à"
2763
-
2764
- #~ msgid "Please validate your system configuration."
2765
- #~ msgstr "Merci de valider votre configuration système."
2766
-
2767
- #~ msgid "Click link for details"
2768
- #~ msgstr "Cliquez sur le lien pour plus de détails"
2769
-
2770
- #~ msgid "SYSTEM REQUIRMENTS"
2771
- #~ msgstr "BESOINS SYSTEME"
2772
-
2773
- #~ msgid ""
2774
- #~ "The above paths should have permissions of 755 for directories and 644 "
2775
- #~ "for files. On some hosts the permission set requires 777. Setting items "
2776
- #~ "to 777 is a security issue and should only be set temporarily. Please "
2777
- #~ "avoid any hosting company that requires this kind of setup. See the "
2778
- #~ "'Duplicator Approved' link at the bottom of this dialog for a list of "
2779
- #~ "approved hosting providers."
2780
- #~ msgstr ""
2781
- #~ "Les chemins ci-dessous devraient avoir des permissions 755 pour les "
2782
- #~ "répertoires et 644 pour les fichiers. Certains hébergeurs demandent "
2783
- #~ "également de mettre les permissions à 777. Cela représente un danger pour "
2784
- #~ "la sécurité de votre site alors ne le laissez que temporairement (à "
2785
- #~ "l'exception d'Infomaniak). Pour consulter la liste des hébergeurs "
2786
- #~ "approuvés, allez voir la section 'Approuvée par Duplicator' à la fin de "
2787
- #~ "cette boîte de dialogue."
2788
-
2789
- #~ msgid ""
2790
- #~ "Also be sure to check the Owner/Group settings and validate they are "
2791
- #~ "correct and match other successful directories/files that are "
2792
- #~ "accessible. For more details contact your host or visit their help pages "
2793
- #~ "for more information on how they implement permissions and group settings."
2794
- #~ msgstr ""
2795
- #~ "Veillez également à vérifier les paramètres de Propriétaire ou de Groupe "
2796
- #~ "pour qu'ils vous donnent bien accès aux bons répertoires/fichiers. Pour "
2797
- #~ "plus de détails, contactez votre hébergeur ou visitez leurs pages de "
2798
- #~ "support pour plus d'information sur la configuration des permissions et "
2799
- #~ "des paramètres de groupe."
2800
-
2801
- #~ msgid ""
2802
- #~ "Safe Mode needs to be disabled in order for the Duplicator to operate "
2803
- #~ "correctly. Please set safe_mode = Off in you php.ini file. If you're on "
2804
- #~ "a hosted server and don't have access to the php.ini file then you will "
2805
- #~ "need to request this setting be updated. Safe Mode is no longer in future "
2806
- #~ "versions of PHP. If your host will not work with you to resolve the "
2807
- #~ "issue then consider a higher reputable hosting provider."
2808
- #~ msgstr ""
2809
- #~ "Le Mode Sécurité doit être désactivé afin que Duplicator fonctionne "
2810
- #~ "correctement. Merci de mettre safe_mode = Off dans votre fichier php.ini. "
2811
- #~ "Si vous êtes sur un serveur mutualisé et que vous n'avez pas accès à ce "
2812
- #~ "fichier, vous devrez contacter votre hébergeur pour qu'il le mette à "
2813
- #~ "jour. Le Mode Sécurité n'existe plus dans les versions suivantes de PHP. "
2814
- #~ "Si votre hébergeur ne vous aide pas à résoudre ce problème, envisagez de "
2815
- #~ "changer de fournisseur d'hébergement."
2816
-
2817
- #~ msgid ""
2818
- #~ "In order to complete an install the mysqli extension for PHP is required. "
2819
- #~ "If you are on a hosted server please contact your host and request that "
2820
- #~ "mysqli extension be enabled. For more information visit: http://php.net/"
2821
- #~ "manual/en/mysqli.installation.php"
2822
- #~ msgstr ""
2823
- #~ "Afin de finaliser l'installation, l'extension mysqli pour PHP est "
2824
- #~ "nécessaire. Si vous êtes sur un serveur mutualisé, contactez votre "
2825
- #~ "hébergeur et demandez-leur que cette extension soit activée. Pour plus "
2826
- #~ "d'informations, allez sur : http://php.net/manual/fr/mysqli.installation."
2827
- #~ "php"
2828
-
2829
- #~ msgid "SYSTEM CHECKS"
2830
- #~ msgstr "VERIFICATIONS SYSTEME"
2831
-
2832
- #~ msgid "Good"
2833
- #~ msgstr "Correct"
2834
-
2835
- #~ msgid "OK"
2836
- #~ msgstr "OK"
2837
-
2838
- #~ msgid "PHP 5.2.17+ is required"
2839
- #~ msgstr "PHP 5.2.17+ est requis"
2840
-
2841
- #~ msgid "Fail"
2842
- #~ msgstr "Echec"
2843
-
2844
- #~ msgid "Not detected"
2845
- #~ msgstr "Non détecté"
2846
-
2847
- #~ msgid "PHP SAPI"
2848
- #~ msgstr "PHP SAPI"
2849
-
2850
- #~ msgid "Add to exclusion path now"
2851
- #~ msgstr "Ajouter aux chemins exclus maintenant"
2852
-
2853
- #~ msgid "Directory excluded"
2854
- #~ msgstr "Répertoire exclus"
2855
-
2856
- #~ msgid "Cache Directory Not Found"
2857
- #~ msgstr "Répertoire de Cache Introuvable"
2858
-
2859
- #~ msgid "ONLINE RESOURCES"
2860
- #~ msgstr "RESSOURCES EN LIGNE"
2861
-
2862
- #~ msgid ""
2863
- #~ "The following directories should have permissions of 755 and files 644. "
2864
- #~ "Keep in mind that PHP may be accessing the paths/files as the user id "
2865
- #~ "that the web server runs as."
2866
- #~ msgstr ""
2867
- #~ "Les répertoires suivants devraient avoir des permissions en 755 et les "
2868
- #~ "fichiers en 644. Gardez à l'esprit que PHP peut accéder aux chemins/"
2869
- #~ "fichiers avec le même identifiant que le serveur."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/duplicator.pot DELETED
@@ -1,1686 +0,0 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Duplicator\n"
5
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
6
- "POT-Creation-Date: 2015-07-26 23:49+0200\n"
7
- "PO-Revision-Date: 2015-04-13 09:10-0000\n"
8
- "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
9
- "Language-Team: \n"
10
- "Language: en\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
- "X-Poedit-Basepath: ..\n"
18
- "X-Generator: Poedit 1.8.2\n"
19
- "X-Poedit-SourceCharset: UTF-8\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: assets\n"
23
-
24
- #: classes/ui.php:111
25
- msgid ""
26
- "Reserved Duplicator install file(s) still exists in the root directory. "
27
- "Please delete these file(s) to avoid possible security issues."
28
- msgstr ""
29
-
30
- #: classes/ui.php:112
31
- msgid "Remove file(s) now"
32
- msgstr ""
33
-
34
- #: classes/ui.php:113
35
- msgid "Dismiss this notice"
36
- msgstr ""
37
-
38
- #: classes/utility.php:249
39
- msgid "You do not have sufficient permissions to access this page."
40
- msgstr ""
41
-
42
- #: duplicator.php:102
43
- msgid "Get Help"
44
- msgstr ""
45
-
46
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
47
- msgid "Help"
48
- msgstr ""
49
-
50
- #: duplicator.php:103
51
- msgid "Support the Plugin"
52
- msgstr ""
53
-
54
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
55
- msgid "About"
56
- msgstr ""
57
-
58
- #: duplicator.php:179 views/packages/controller.php:76
59
- #: views/packages/packages.php:235
60
- msgid "Packages"
61
- msgstr ""
62
-
63
- #: duplicator.php:183 views/settings/controller.php:19
64
- msgid "Settings"
65
- msgstr ""
66
-
67
- #: duplicator.php:187 views/tools/controller.php:13
68
- msgid "Tools"
69
- msgstr ""
70
-
71
- #: duplicator.php:246
72
- msgid "Manage"
73
- msgstr ""
74
-
75
- #: views/help/about.php:54
76
- msgid ""
77
- "Created for Admins, Developers and Designers the Duplicator can streamline "
78
- "your workflows and help you quickly clone a WordPress application. "
79
- "Migrating a WordPress site manually can be very time consuming. The "
80
- "Duplicator was made to help you speed up the migration process. Please help "
81
- "us to continue the development effort of this plugin."
82
- msgstr ""
83
-
84
- #: views/help/about.php:64
85
- msgid "Support Duplicator"
86
- msgstr ""
87
-
88
- #: views/help/about.php:71
89
- msgid "Partner with Us"
90
- msgstr ""
91
-
92
- #: views/help/about.php:83
93
- msgid "Keep Active and Online"
94
- msgstr ""
95
-
96
- #: views/help/about.php:90
97
- msgid "Leave 5 Stars"
98
- msgstr ""
99
-
100
- #: views/help/about.php:107
101
- msgid "Spread the Word"
102
- msgstr ""
103
-
104
- #: views/help/about.php:113
105
- msgid "Duplicate Your WordPress"
106
- msgstr ""
107
-
108
- #: views/help/about.php:114
109
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
110
- msgstr ""
111
-
112
- #: views/help/about.php:131
113
- msgid "Get More Great Tools"
114
- msgstr ""
115
-
116
- #: views/help/gopro.php:37
117
- msgid "Go Pro!"
118
- msgstr ""
119
-
120
- #: views/help/gopro.php:46
121
- msgid "Duplicator Pro Has Arrived!"
122
- msgstr ""
123
-
124
- #: views/help/gopro.php:49
125
- msgid "The simplicity of Duplicator"
126
- msgstr ""
127
-
128
- #: views/help/gopro.php:50
129
- msgid "with the power the professional requires."
130
- msgstr ""
131
-
132
- #: views/help/gopro.php:57
133
- msgid "Duplicator Free"
134
- msgstr ""
135
-
136
- #: views/help/gopro.php:60 views/help/gopro.php:88
137
- msgid "Backup Files &amp; Database"
138
- msgstr ""
139
-
140
- #: views/help/gopro.php:61 views/help/gopro.php:89
141
- msgid ""
142
- "Compresses all your WordPress files and database into a compressed snapshot "
143
- "archive file."
144
- msgstr ""
145
-
146
- #: views/help/gopro.php:64 views/help/gopro.php:92
147
- msgid "Directory Filters"
148
- msgstr ""
149
-
150
- #: views/help/gopro.php:65 views/help/gopro.php:93
151
- msgid ""
152
- "Filter out the directories and file extensions you want to include/exclude "
153
- "in your in your archive file."
154
- msgstr ""
155
-
156
- #: views/help/gopro.php:68 views/help/gopro.php:96
157
- msgid "Database Table Filters"
158
- msgstr ""
159
-
160
- #: views/help/gopro.php:69 views/help/gopro.php:97
161
- msgid ""
162
- "Filter out only the database tables you want to include/exclude in your "
163
- "database creation script."
164
- msgstr ""
165
-
166
- #: views/help/gopro.php:72 views/help/gopro.php:100
167
- msgid "Migration Wizard"
168
- msgstr ""
169
-
170
- #: views/help/gopro.php:73 views/help/gopro.php:101
171
- msgid ""
172
- "With just two files (archive &amp; installer.php) move your site to a new "
173
- "location."
174
- msgstr ""
175
-
176
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
177
- msgid "Duplicator Pro"
178
- msgstr ""
179
-
180
- #: views/help/gopro.php:104
181
- msgid "Scheduled Backups"
182
- msgstr ""
183
-
184
- #: views/help/gopro.php:105
185
- msgid ""
186
- "Automate the creation of your packages to run at various scheduled intervals."
187
- msgstr ""
188
-
189
- #: views/help/gopro.php:108
190
- msgid "Dropbox Support"
191
- msgstr ""
192
-
193
- #: views/help/gopro.php:109
194
- msgid "Backup up your entire site to Dropbox."
195
- msgstr ""
196
-
197
- #: views/help/gopro.php:112
198
- msgid "FTP Support"
199
- msgstr ""
200
-
201
- #: views/help/gopro.php:113
202
- msgid "Backup up your entire site to an FTP server."
203
- msgstr ""
204
-
205
- #: views/help/gopro.php:116
206
- msgid "Customer Support"
207
- msgstr ""
208
-
209
- #: views/help/gopro.php:117
210
- msgid ""
211
- "Server setups can be quite complex, with pro you get prompt help to get your "
212
- "site backed up and moved."
213
- msgstr ""
214
-
215
- #: views/help/gopro.php:124
216
- msgid "Check It Out!"
217
- msgstr ""
218
-
219
- #: views/help/help.php:38
220
- msgid ""
221
- "Migrating WordPress is a complex process and the logic to make all the magic "
222
- "happen smoothly may not work quickly with every site. With over 30,000 "
223
- "plugins and a very complex server eco-system some migrations may run into "
224
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
225
- "can help with many common issues. Resources to additional support, approved "
226
- "hosting, and alternatives to fit your needs can be found below."
227
- msgstr ""
228
-
229
- #: views/help/help.php:50
230
- msgid "Knowledgebase"
231
- msgstr ""
232
-
233
- #: views/help/help.php:53
234
- msgid "Complete Online Documentation"
235
- msgstr ""
236
-
237
- #: views/help/help.php:55
238
- msgid "Choose A Section"
239
- msgstr ""
240
-
241
- #: views/help/help.php:56
242
- msgid "Quick Start"
243
- msgstr ""
244
-
245
- #: views/help/help.php:57
246
- msgid "User Guide"
247
- msgstr ""
248
-
249
- #: views/help/help.php:58
250
- msgid "FAQs"
251
- msgstr ""
252
-
253
- #: views/help/help.php:59
254
- msgid "Change Log"
255
- msgstr ""
256
-
257
- #: views/help/help.php:60
258
- msgid "Product Page"
259
- msgstr ""
260
-
261
- #: views/help/help.php:69
262
- msgid "Online Support"
263
- msgstr ""
264
-
265
- #: views/help/help.php:72
266
- msgid "Get Help From IT Professionals"
267
- msgstr ""
268
-
269
- #: views/help/help.php:76
270
- msgid "Get Support!"
271
- msgstr ""
272
-
273
- #: views/help/help.php:88
274
- msgid "Approved Hosting"
275
- msgstr ""
276
-
277
- #: views/help/help.php:91
278
- msgid "Servers That Work With Duplicator"
279
- msgstr ""
280
-
281
- #: views/help/help.php:94
282
- msgid "Trusted Providers!"
283
- msgstr ""
284
-
285
- #: views/help/help.php:104
286
- msgid "Alternatives"
287
- msgstr ""
288
-
289
- #: views/help/help.php:107
290
- msgid "Other Commercial Resources"
291
- msgstr ""
292
-
293
- #: views/help/help.php:110
294
- msgid "Pro Solutions!"
295
- msgstr ""
296
-
297
- #: views/packages/list-nodata.php:7
298
- msgid "No Packages Found."
299
- msgstr ""
300
-
301
- #: views/packages/list-nodata.php:8
302
- msgid "Click the 'Create New' button to build a package."
303
- msgstr ""
304
-
305
- #: views/packages/list-nodata.php:13
306
- msgid "Please visit the"
307
- msgstr ""
308
-
309
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
310
- #: views/packages/new1.base.php:234
311
- msgid "help page"
312
- msgstr ""
313
-
314
- #: views/packages/list-nodata.php:15
315
- msgid "for additional support"
316
- msgstr ""
317
-
318
- #: views/packages/list-nodata.php:24
319
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
320
- msgstr ""
321
-
322
- #: views/packages/list-nodata.php:27
323
- msgid "To get an older package please visit the"
324
- msgstr ""
325
-
326
- #: views/packages/list-nodata.php:29
327
- msgid "and look for the Change Log link for additional instructions."
328
- msgstr ""
329
-
330
- #: views/packages/list-nodata.php:33
331
- msgid "Hide this message"
332
- msgstr ""
333
-
334
- #: views/packages/packages.php:39
335
- msgid "Help Support Duplicator"
336
- msgstr ""
337
-
338
- #: views/packages/packages.php:50
339
- msgid "Bulk Actions"
340
- msgstr ""
341
-
342
- #: views/packages/packages.php:51
343
- msgid "Delete selected package(s)"
344
- msgstr ""
345
-
346
- #: views/packages/packages.php:51
347
- msgid "Delete"
348
- msgstr ""
349
-
350
- #: views/packages/packages.php:53
351
- msgid "Apply"
352
- msgstr ""
353
-
354
- #: views/packages/packages.php:58
355
- msgid "Package Logs"
356
- msgstr ""
357
-
358
- #: views/packages/packages.php:61 views/packages/new1.base.php:96
359
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
360
- #: views/packages/new3.base.php:89
361
- msgid "All Packages"
362
- msgstr ""
363
-
364
- #: views/packages/packages.php:62 views/packages/new1.base.php:97
365
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
366
- msgid "Create New"
367
- msgstr ""
368
-
369
- #: views/packages/packages.php:87
370
- msgid "Select all packages"
371
- msgstr ""
372
-
373
- #: views/packages/packages.php:88 views/packages/new3.base.php:108
374
- msgid "Details"
375
- msgstr ""
376
-
377
- #: views/packages/packages.php:89
378
- msgid "Created"
379
- msgstr ""
380
-
381
- #: views/packages/packages.php:90 views/packages/new2.base.php:222
382
- #: views/packages/new2.base.php:334
383
- msgid "Size"
384
- msgstr ""
385
-
386
- #: views/packages/packages.php:91 views/packages/new1.inc.form.php:6
387
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
388
- msgid "Name"
389
- msgstr ""
390
-
391
- #: views/packages/packages.php:93 views/settings/general.php:110
392
- msgid "Package"
393
- msgstr ""
394
-
395
- #: views/packages/packages.php:124
396
- msgid "(No Notes Taken)"
397
- msgstr ""
398
-
399
- #: views/packages/packages.php:142 views/packages/packages.php:187
400
- msgid "View"
401
- msgstr ""
402
-
403
- #: views/packages/packages.php:147 views/packages/new1.inc.form.php:176
404
- #: views/packages/new3.base.php:79
405
- msgid "Installer"
406
- msgstr ""
407
-
408
- #: views/packages/packages.php:150 views/packages/new1.inc.form.php:65
409
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
410
- msgid "Archive"
411
- msgstr ""
412
-
413
- #: views/packages/packages.php:155 views/packages/packages.php:200
414
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
415
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
416
- msgid "Version"
417
- msgstr ""
418
-
419
- #: views/packages/packages.php:156 views/packages/packages.php:201
420
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
421
- msgid "User"
422
- msgstr ""
423
-
424
- #: views/packages/packages.php:157 views/packages/packages.php:202
425
- msgid "Hash"
426
- msgstr ""
427
-
428
- #: views/packages/packages.php:158 views/packages/packages.php:207
429
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
430
- msgid "Notes"
431
- msgstr ""
432
-
433
- #: views/packages/packages.php:160
434
- msgid "Links"
435
- msgstr ""
436
-
437
- #: views/packages/packages.php:161
438
- msgid "SQL"
439
- msgstr ""
440
-
441
- #: views/packages/packages.php:162
442
- msgid "Log"
443
- msgstr ""
444
-
445
- #: views/packages/packages.php:165
446
- msgid "Open Scan Report"
447
- msgstr ""
448
-
449
- #: views/packages/packages.php:166
450
- msgid "View Package Object"
451
- msgstr ""
452
-
453
- #: views/packages/packages.php:193
454
- msgid "View Error Details"
455
- msgstr ""
456
-
457
- #: views/packages/packages.php:205
458
- msgid "Unrecoverable Error! Please remove this package."
459
- msgstr ""
460
-
461
- #: views/packages/packages.php:210
462
- msgid ""
463
- "This package has encountered errors. Click 'View Log' for more details. "
464
- "For additional support see the "
465
- msgstr ""
466
-
467
- #: views/packages/packages.php:211
468
- msgid "online knowledgebase"
469
- msgstr ""
470
-
471
- #: views/packages/packages.php:213
472
- msgid "View Log"
473
- msgstr ""
474
-
475
- #: views/packages/packages.php:236 views/packages/new2.base.php:219
476
- #: views/packages/new2.base.php:328
477
- msgid "Total Size"
478
- msgstr ""
479
-
480
- #: views/packages/packages.php:255
481
- msgid "Download Links"
482
- msgstr ""
483
-
484
- #: views/packages/packages.php:258
485
- msgid "The following links contain sensitive data. Please share with caution!"
486
- msgstr ""
487
-
488
- #: views/packages/packages.php:264
489
- msgid ""
490
- "The database SQL script is a quick link to your database backup script. An "
491
- "exact copy is also stored in the package."
492
- msgstr ""
493
-
494
- #: views/packages/packages.php:287
495
- msgid ""
496
- "Please select an action from the bulk action drop down menu to perform a "
497
- "specific action."
498
- msgstr ""
499
-
500
- #: views/packages/packages.php:295
501
- msgid "Please select at least one package to delete."
502
- msgstr ""
503
-
504
- #: views/packages/packages.php:299
505
- msgid "Are you sure, you want to delete the selected package(s)?"
506
- msgstr ""
507
-
508
- #: views/packages/packages.php:333
509
- msgid "Package File Links"
510
- msgstr ""
511
-
512
- #: views/packages/packages.php:336
513
- msgid "DATABASE"
514
- msgstr ""
515
-
516
- #: views/packages/packages.php:337
517
- msgid "PACKAGE"
518
- msgstr ""
519
-
520
- #: views/packages/packages.php:338
521
- msgid "INSTALLER"
522
- msgstr ""
523
-
524
- #: views/packages/packages.php:339
525
- msgid "LOG"
526
- msgstr ""
527
-
528
- #: views/packages/packages.php:340
529
- msgid "REPORT"
530
- msgstr ""
531
-
532
- #: views/packages/new1.base.php:13
533
- msgid "Package settings have been reset."
534
- msgstr ""
535
-
536
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
537
- #: views/packages/new3.base.php:33
538
- msgid "Setup"
539
- msgstr ""
540
-
541
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
542
- #: views/packages/new3.base.php:34
543
- msgid "Scan"
544
- msgstr ""
545
-
546
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
547
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
548
- msgid "Build"
549
- msgstr ""
550
-
551
- #: views/packages/new1.base.php:91
552
- msgid "Step 1: Package Setup"
553
- msgstr ""
554
-
555
- #: views/packages/new1.base.php:115
556
- msgid "Requirements:"
557
- msgstr ""
558
-
559
- #: views/packages/new1.base.php:124
560
- msgid ""
561
- "System requirements must pass for the Duplicator to work properly. Click "
562
- "each link for details."
563
- msgstr ""
564
-
565
- #: views/packages/new1.base.php:130
566
- msgid "PHP Support"
567
- msgstr ""
568
-
569
- #: views/packages/new1.base.php:136
570
- msgid "PHP Version"
571
- msgstr ""
572
-
573
- #: views/packages/new1.base.php:140
574
- msgid "Zip Archive Enabled"
575
- msgstr ""
576
-
577
- #: views/packages/new1.base.php:144
578
- msgid "Safe Mode Off"
579
- msgstr ""
580
-
581
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
582
- #: views/packages/new1.base.php:156
583
- msgid "Function"
584
- msgstr ""
585
-
586
- #: views/packages/new1.base.php:161
587
- msgid ""
588
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
589
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
590
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
591
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
592
- "this section please contact your hosting provider or server administrator. "
593
- "For additional information see our online documentation."
594
- msgstr ""
595
-
596
- #: views/packages/new1.base.php:169
597
- msgid "Permissions"
598
- msgstr ""
599
-
600
- #: views/packages/new1.base.php:172
601
- msgid "Required Paths"
602
- msgstr ""
603
-
604
- #: views/packages/new1.base.php:183
605
- msgid ""
606
- "Permissions can be difficult to resolve on some systems. If the plugin can "
607
- "not read the above paths here are a few things to try. 1) Set the above "
608
- "paths to have permissions of 755 for directories and 644 for files. You can "
609
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
610
- "the owner/group settings for both files and directories. The PHP script "
611
- "owner and the process owner are different. The script owner owns the PHP "
612
- "script but the process owner is the user the script is running as, thus "
613
- "determining its capabilities/privileges in the file system. For more details "
614
- "contact your host or server administrator or visit the 'Help' menu under "
615
- "Duplicator for additional online resources."
616
- msgstr ""
617
-
618
- #: views/packages/new1.base.php:191
619
- msgid "Server Support"
620
- msgstr ""
621
-
622
- #: views/packages/new1.base.php:197
623
- msgid "MySQL Version"
624
- msgstr ""
625
-
626
- #: views/packages/new1.base.php:201
627
- msgid "MySQLi Support"
628
- msgstr ""
629
-
630
- #: views/packages/new1.base.php:207
631
- msgid ""
632
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
633
- "the trailing 'i') is also required. Contact your server administrator and "
634
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
635
- "note in future versions support for other databases and extensions will be "
636
- "added."
637
- msgstr ""
638
-
639
- #: views/packages/new1.base.php:208
640
- msgid "more info"
641
- msgstr ""
642
-
643
- #: views/packages/new1.base.php:217
644
- msgid "Reserved Files"
645
- msgstr ""
646
-
647
- #: views/packages/new1.base.php:221
648
- msgid ""
649
- "None of the reserved files (installer.php, installer-data.sql and installer-"
650
- "log.txt) where found from a previous install. This means you are clear to "
651
- "create a new package."
652
- msgstr ""
653
-
654
- #: views/packages/new1.base.php:224
655
- msgid ""
656
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
657
- "names are installer.php, installer-data.sql and installer-log.txt. To "
658
- "archive your data correctly please remove any of these files from your "
659
- "WordPress root directory. Then try creating your package again."
660
- msgstr ""
661
-
662
- #: views/packages/new1.base.php:225
663
- msgid "Remove Files Now"
664
- msgstr ""
665
-
666
- #: views/packages/new1.base.php:234
667
- msgid "For additional help please see the "
668
- msgstr ""
669
-
670
- #: views/packages/new1.inc.form.php:10
671
- msgid "Create a new default name"
672
- msgstr ""
673
-
674
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
675
- msgid "Storage"
676
- msgstr ""
677
-
678
- #: views/packages/new1.inc.form.php:32
679
- msgid "Type"
680
- msgstr ""
681
-
682
- #: views/packages/new1.inc.form.php:33
683
- msgid "Location"
684
- msgstr ""
685
-
686
- #: views/packages/new1.inc.form.php:38
687
- msgid "Default"
688
- msgstr ""
689
-
690
- #: views/packages/new1.inc.form.php:39
691
- msgid "Local"
692
- msgstr ""
693
-
694
- #: views/packages/new1.inc.form.php:45
695
- msgid ""
696
- "All packages including the archive, installer and SQL script are stored in "
697
- "the location above. "
698
- msgstr ""
699
-
700
- #: views/packages/new1.inc.form.php:48
701
- msgid "Dropbox, FTP and other multiple storage options available in "
702
- msgstr ""
703
-
704
- #: views/packages/new1.inc.form.php:67
705
- msgid "File filter enabled"
706
- msgstr ""
707
-
708
- #: views/packages/new1.inc.form.php:68
709
- msgid "Database filter enabled"
710
- msgstr ""
711
-
712
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
713
- msgid "Files"
714
- msgstr ""
715
-
716
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
717
- #: views/packages/new2.base.php:312
718
- msgid "Database"
719
- msgstr ""
720
-
721
- #: views/packages/new1.inc.form.php:90
722
- msgid "Enable File Filters"
723
- msgstr ""
724
-
725
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
726
- msgid "Separate all filters by semicolon"
727
- msgstr ""
728
-
729
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
730
- msgid "Directories"
731
- msgstr ""
732
-
733
- #: views/packages/new1.inc.form.php:96
734
- msgid "root path"
735
- msgstr ""
736
-
737
- #: views/packages/new1.inc.form.php:97
738
- msgid "wp-uploads"
739
- msgstr ""
740
-
741
- #: views/packages/new1.inc.form.php:98
742
- msgid "cache"
743
- msgstr ""
744
-
745
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
746
- msgid "(clear)"
747
- msgstr ""
748
-
749
- #: views/packages/new1.inc.form.php:102
750
- msgid "File extensions"
751
- msgstr ""
752
-
753
- #: views/packages/new1.inc.form.php:104
754
- msgid "media"
755
- msgstr ""
756
-
757
- #: views/packages/new1.inc.form.php:105
758
- msgid "archive"
759
- msgstr ""
760
-
761
- #: views/packages/new1.inc.form.php:111
762
- msgid ""
763
- "The directory paths and extensions above will be be excluded from the "
764
- "archive file if enabled is checked."
765
- msgstr ""
766
-
767
- #: views/packages/new1.inc.form.php:112
768
- msgid "Use the full path for directories and semicolons to separate all items."
769
- msgstr ""
770
-
771
- #: views/packages/new1.inc.form.php:123
772
- msgid "Enable Table Filters"
773
- msgstr ""
774
-
775
- #: views/packages/new1.inc.form.php:124
776
- msgid "checked tables are excluded"
777
- msgstr ""
778
-
779
- #: views/packages/new1.inc.form.php:129
780
- msgid "Include All"
781
- msgstr ""
782
-
783
- #: views/packages/new1.inc.form.php:130
784
- msgid "Exclude All"
785
- msgstr ""
786
-
787
- #: views/packages/new1.inc.form.php:163
788
- msgid ""
789
- "Checked tables will not be added to the database script. Excluding certain "
790
- "tables can possibly cause your site or plugins to not work correctly after "
791
- "install!"
792
- msgstr ""
793
-
794
- #: views/packages/new1.inc.form.php:181
795
- msgid "STEP 1 - INPUTS"
796
- msgstr ""
797
-
798
- #: views/packages/new1.inc.form.php:184
799
- msgid "MySQL Server"
800
- msgstr ""
801
-
802
- #: views/packages/new1.inc.form.php:187
803
- msgid "Host"
804
- msgstr ""
805
-
806
- #: views/packages/new1.inc.form.php:191
807
- msgid "Host Port"
808
- msgstr ""
809
-
810
- #: views/packages/new1.inc.form.php:203
811
- msgid "Advanced Options"
812
- msgstr ""
813
-
814
- #: views/packages/new1.inc.form.php:209
815
- msgid "SSL"
816
- msgstr ""
817
-
818
- #: views/packages/new1.inc.form.php:212
819
- msgid "Enforce on Admin"
820
- msgstr ""
821
-
822
- #: views/packages/new1.inc.form.php:216
823
- msgid "Enforce on Logins"
824
- msgstr ""
825
-
826
- #: views/packages/new1.inc.form.php:220
827
- msgid "Cache"
828
- msgstr ""
829
-
830
- #: views/packages/new1.inc.form.php:223
831
- msgid "Keep Enabled"
832
- msgstr ""
833
-
834
- #: views/packages/new1.inc.form.php:227
835
- msgid "Keep Home Path"
836
- msgstr ""
837
-
838
- #: views/packages/new1.inc.form.php:235
839
- msgid "STEP 2 - INPUTS"
840
- msgstr ""
841
-
842
- #: views/packages/new1.inc.form.php:239
843
- msgid "New URL"
844
- msgstr ""
845
-
846
- #: views/packages/new1.inc.form.php:245
847
- msgid "The installer can have these fields pre-filled at install time."
848
- msgstr ""
849
-
850
- #: views/packages/new1.inc.form.php:245
851
- msgid "All values are optional."
852
- msgstr ""
853
-
854
- #: views/packages/new1.inc.form.php:254
855
- msgid "Reset"
856
- msgstr ""
857
-
858
- #: views/packages/new1.inc.form.php:255
859
- msgid "Next"
860
- msgstr ""
861
-
862
- #: views/packages/new1.inc.form.php:267
863
- msgid ""
864
- "This will reset all of the current package settings. Would you like to "
865
- "continue?"
866
- msgstr ""
867
-
868
- #: views/packages/new2.base.php:64
869
- msgid "Step 2: System Scan"
870
- msgstr ""
871
-
872
- #: views/packages/new2.base.php:81
873
- msgid "Scanning Site"
874
- msgstr ""
875
-
876
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
877
- msgid "Please Wait..."
878
- msgstr ""
879
-
880
- #: views/packages/new2.base.php:89
881
- msgid "Scan Complete"
882
- msgstr ""
883
-
884
- #: views/packages/new2.base.php:91
885
- msgid ""
886
- "Scan checks are not required to pass, however they could cause issues on "
887
- "some systems."
888
- msgstr ""
889
-
890
- #: views/packages/new2.base.php:92
891
- msgid "Process Time:"
892
- msgstr ""
893
-
894
- #: views/packages/new2.base.php:101
895
- msgid "Server"
896
- msgstr ""
897
-
898
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
899
- msgid "Diagnostics"
900
- msgstr ""
901
-
902
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
903
- #: views/tools/diagnostics.php:106
904
- msgid "Web Server"
905
- msgstr ""
906
-
907
- #: views/packages/new2.base.php:119
908
- msgid "Supported web servers:"
909
- msgstr ""
910
-
911
- #: views/packages/new2.base.php:129
912
- msgid "PHP Setup"
913
- msgstr ""
914
-
915
- #: views/packages/new2.base.php:135
916
- msgid "Open Base Dir"
917
- msgstr ""
918
-
919
- #: views/packages/new2.base.php:137
920
- msgid ""
921
- "Issues might occur when [open_basedir] is enabled. Work with your server "
922
- "admin to disable this value in the php.ini file if you’re having issues "
923
- "building a package."
924
- msgstr ""
925
-
926
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
927
- #: views/packages/new2.base.php:155
928
- msgid "details"
929
- msgstr ""
930
-
931
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
932
- msgid "Max Execution Time"
933
- msgstr ""
934
-
935
- #: views/packages/new2.base.php:145
936
- #, php-format
937
- msgid ""
938
- "Issues might occur for larger packages when the [max_execution_time] value "
939
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
940
- "seconds or higher. An attempt is made to override this value if the server "
941
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
942
- msgstr ""
943
-
944
- #: views/packages/new2.base.php:147
945
- msgid ""
946
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
947
- "timeout passes and you still see a build interrupt messages, then your web "
948
- "server could be killing the process. If you are limited on processing "
949
- "time, consider using the database or file filters to shrink the size of your "
950
- "overall package. However use caution as excluding the wrong resources can "
951
- "cause your install to not work properly."
952
- msgstr ""
953
-
954
- #: views/packages/new2.base.php:152
955
- msgid "MySQLi"
956
- msgstr ""
957
-
958
- #: views/packages/new2.base.php:154
959
- msgid ""
960
- "Creating the package does not require the mysqli module. However the "
961
- "installer.php file requires that the PHP module mysqli be installed on the "
962
- "server it is deployed on."
963
- msgstr ""
964
-
965
- #: views/packages/new2.base.php:164
966
- msgid "WordPress"
967
- msgstr ""
968
-
969
- #: views/packages/new2.base.php:169
970
- msgid "WordPress Version"
971
- msgstr ""
972
-
973
- #: views/packages/new2.base.php:171
974
- #, php-format
975
- msgid ""
976
- "It is recommended to have a version of WordPress that is greater than %1$s"
977
- msgstr ""
978
-
979
- #: views/packages/new2.base.php:175
980
- msgid "Core Files"
981
- msgstr ""
982
-
983
- #: views/packages/new2.base.php:177
984
- msgid ""
985
- "If the scanner is unable to locate the wp-config.php file in the root "
986
- "directory, then you will need to manually copy it to its new location."
987
- msgstr ""
988
-
989
- #: views/packages/new2.base.php:183
990
- msgid "Cache Path"
991
- msgstr ""
992
-
993
- #: views/packages/new2.base.php:185
994
- msgid ""
995
- "Cached data will lead to issues at install time and increases your archive "
996
- "size. It is recommended to empty your cache directory at build time. Use "
997
- "caution when removing data from the cache directory. If you have a cache "
998
- "plugin review the documentation for how to empty it; simply removing files "
999
- "might cause errors on your site. The cache size minimum threshold is "
1000
- "currently set at "
1001
- msgstr ""
1002
-
1003
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1004
- msgid "Enabled"
1005
- msgstr ""
1006
-
1007
- #: views/packages/new2.base.php:223
1008
- msgid "File Count"
1009
- msgstr ""
1010
-
1011
- #: views/packages/new2.base.php:224
1012
- msgid "Directory Count"
1013
- msgstr ""
1014
-
1015
- #: views/packages/new2.base.php:227
1016
- #, php-format
1017
- msgid ""
1018
- "Total size represents all files minus any filters that have been setup. The "
1019
- "current thresholds that trigger warnings are %1$s for the entire site and "
1020
- "%2$s for large files."
1021
- msgstr ""
1022
-
1023
- #: views/packages/new2.base.php:239
1024
- msgid "Name Checks"
1025
- msgstr ""
1026
-
1027
- #: views/packages/new2.base.php:244
1028
- msgid ""
1029
- "File or directory names may cause issues when working across different "
1030
- "environments and servers. Names that are over 250 characters, contain "
1031
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1032
- "issues in a remote enviroment. It is recommended to remove or filter these "
1033
- "files before building the archive if you have issues at install time."
1034
- msgstr ""
1035
-
1036
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1037
- msgid "Show Paths"
1038
- msgstr ""
1039
-
1040
- #: views/packages/new2.base.php:256
1041
- msgid "Large Files"
1042
- msgstr ""
1043
-
1044
- #: views/packages/new2.base.php:261
1045
- #, php-format
1046
- msgid ""
1047
- "Large files such as movies or other backuped data can cause issues with "
1048
- "timeouts. The current check for large files is %1$s per file. If your "
1049
- "having issues creating a package consider excluding these files with the "
1050
- "files filter and manually moving them to your new location."
1051
- msgstr ""
1052
-
1053
- #: views/packages/new2.base.php:275
1054
- msgid "View Filters"
1055
- msgstr ""
1056
-
1057
- #: views/packages/new2.base.php:283
1058
- msgid "No directory filters have been set."
1059
- msgstr ""
1060
-
1061
- #: views/packages/new2.base.php:288
1062
- msgid "File Extensions"
1063
- msgstr ""
1064
-
1065
- #: views/packages/new2.base.php:293
1066
- msgid "No file extension filters have been set."
1067
- msgstr ""
1068
-
1069
- #: views/packages/new2.base.php:297
1070
- msgid ""
1071
- "The lists above are the directories and file extension that will be excluded "
1072
- "from the archive."
1073
- msgstr ""
1074
-
1075
- #: views/packages/new2.base.php:332
1076
- msgid "Tables"
1077
- msgstr ""
1078
-
1079
- #: views/packages/new2.base.php:333
1080
- msgid "Records"
1081
- msgstr ""
1082
-
1083
- #: views/packages/new2.base.php:336
1084
- msgid "repair and optimization"
1085
- msgstr ""
1086
-
1087
- #: views/packages/new2.base.php:337
1088
- #, php-format
1089
- msgid ""
1090
- "Total size and row count for all database tables are approximate values. "
1091
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1092
- "databases take time to process and can cause issues with server timeout and "
1093
- "memory settings. Running a %3$s on your database can also help improve the "
1094
- "overall size and performance. If your server supports shell_exec and "
1095
- "mysqldump you can try to enable this option from the settings menu."
1096
- msgstr ""
1097
-
1098
- #: views/packages/new2.base.php:349
1099
- msgid "Table Details"
1100
- msgstr ""
1101
-
1102
- #: views/packages/new2.base.php:360
1103
- msgid "Name:"
1104
- msgstr ""
1105
-
1106
- #: views/packages/new2.base.php:361
1107
- msgid "Host:"
1108
- msgstr ""
1109
-
1110
- #: views/packages/new2.base.php:362
1111
- msgid "Build Mode:"
1112
- msgstr ""
1113
-
1114
- #: views/packages/new2.base.php:373
1115
- msgid "Scan Error"
1116
- msgstr ""
1117
-
1118
- #: views/packages/new2.base.php:374
1119
- msgid "Please try again!"
1120
- msgstr ""
1121
-
1122
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1123
- msgid "Server Status:"
1124
- msgstr ""
1125
-
1126
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1127
- msgid "Error Message:"
1128
- msgstr ""
1129
-
1130
- #: views/packages/new2.base.php:386
1131
- msgid "Back"
1132
- msgstr ""
1133
-
1134
- #: views/packages/new2.base.php:387
1135
- msgid "Rescan"
1136
- msgstr ""
1137
-
1138
- #: views/packages/new2.base.php:486
1139
- msgid "Unable to report on any tables"
1140
- msgstr ""
1141
-
1142
- #: views/packages/new2.base.php:495
1143
- msgid "Unable to report on database stats"
1144
- msgstr ""
1145
-
1146
- #: views/packages/new2.base.php:514
1147
- msgid "DIR"
1148
- msgstr ""
1149
-
1150
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1151
- msgid "FILE"
1152
- msgstr ""
1153
-
1154
- #: views/packages/new2.base.php:523
1155
- msgid "No name warning issues found."
1156
- msgstr ""
1157
-
1158
- #: views/packages/new2.base.php:529
1159
- msgid "No large files found."
1160
- msgstr ""
1161
-
1162
- #: views/packages/new3.base.php:38
1163
- msgid "Step 3: Build Package"
1164
- msgstr ""
1165
-
1166
- #: views/packages/new3.base.php:55
1167
- msgid "Building Package"
1168
- msgstr ""
1169
-
1170
- #: views/packages/new3.base.php:58
1171
- msgid "Keep this window open during the build process."
1172
- msgstr ""
1173
-
1174
- #: views/packages/new3.base.php:59
1175
- msgid "This may take several minutes."
1176
- msgstr ""
1177
-
1178
- #: views/packages/new3.base.php:63
1179
- msgid "Build Status"
1180
- msgstr ""
1181
-
1182
- #: views/packages/new3.base.php:70
1183
- msgid "Package Completed"
1184
- msgstr ""
1185
-
1186
- #: views/packages/new3.base.php:75
1187
- msgid "Process Time"
1188
- msgstr ""
1189
-
1190
- #: views/packages/new3.base.php:100
1191
- msgid "Build Interrupt"
1192
- msgstr ""
1193
-
1194
- #: views/packages/new3.base.php:101
1195
- msgid "The current build has experienced an issue."
1196
- msgstr ""
1197
-
1198
- #: views/packages/new3.base.php:103
1199
- msgid "Please try the process again."
1200
- msgstr ""
1201
-
1202
- #: views/packages/new3.base.php:105
1203
- msgid "Diagnose"
1204
- msgstr ""
1205
-
1206
- #: views/packages/new3.base.php:106
1207
- msgid "Try Again"
1208
- msgstr ""
1209
-
1210
- #: views/packages/new3.base.php:122
1211
- msgid "Notice"
1212
- msgstr ""
1213
-
1214
- #: views/packages/new3.base.php:125
1215
- msgid "Build Folder:"
1216
- msgstr ""
1217
-
1218
- #: views/packages/new3.base.php:127
1219
- msgid ""
1220
- "Some servers close connections quickly; yet the build can continue to run in "
1221
- "the background. To validate if a build is still running; open the 'tmp' "
1222
- "folder above and see if the archive file is growing in size. If it is not "
1223
- "then your server has strict timeout constraints. Please visit the support "
1224
- "page for additional resources."
1225
- msgstr ""
1226
-
1227
- #: views/packages/new3.base.php:136
1228
- msgid "Package Log"
1229
- msgstr ""
1230
-
1231
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1232
- msgid "General"
1233
- msgstr ""
1234
-
1235
- #: views/settings/general.php:6
1236
- msgid "Settings Saved"
1237
- msgstr ""
1238
-
1239
- #: views/settings/general.php:75
1240
- msgid "Plugin"
1241
- msgstr ""
1242
-
1243
- #: views/settings/general.php:83
1244
- msgid "Uninstall"
1245
- msgstr ""
1246
-
1247
- #: views/settings/general.php:86
1248
- msgid "Delete Plugin Settings"
1249
- msgstr ""
1250
-
1251
- #: views/settings/general.php:89
1252
- msgid "Delete Entire Storage Directory"
1253
- msgstr ""
1254
-
1255
- #: views/settings/general.php:96
1256
- msgid "Full Path"
1257
- msgstr ""
1258
-
1259
- #: views/settings/general.php:99
1260
- msgid "Disable .htaccess File In Storage Directory"
1261
- msgstr ""
1262
-
1263
- #: views/settings/general.php:101
1264
- msgid "Disable if issues occur when downloading installer/archive files."
1265
- msgstr ""
1266
-
1267
- #: views/settings/general.php:114
1268
- msgid "Archive Flush"
1269
- msgstr ""
1270
-
1271
- #: views/settings/general.php:117
1272
- msgid "Attempt Network Keep Alive"
1273
- msgstr ""
1274
-
1275
- #: views/settings/general.php:118
1276
- msgid "recommended only for large archives"
1277
- msgstr ""
1278
-
1279
- #: views/settings/general.php:120
1280
- msgid ""
1281
- "This will attempt to keep a network connection established for large "
1282
- "archives."
1283
- msgstr ""
1284
-
1285
- #: views/settings/general.php:125
1286
- msgid "Database Build"
1287
- msgstr ""
1288
-
1289
- #: views/settings/general.php:128
1290
- msgid "Use PHP"
1291
- msgstr ""
1292
-
1293
- #: views/settings/general.php:131
1294
- msgid "Query Limit Size"
1295
- msgstr ""
1296
-
1297
- #: views/settings/general.php:140
1298
- msgid "higher values speed up build times but uses more memory"
1299
- msgstr ""
1300
-
1301
- #: views/settings/general.php:147
1302
- msgid "This server does not have shell_exec configured to run."
1303
- msgstr ""
1304
-
1305
- #: views/settings/general.php:149
1306
- msgid "Please contact the server administrator to enable this feature."
1307
- msgstr ""
1308
-
1309
- #: views/settings/general.php:154
1310
- msgid "Use mysqldump"
1311
- msgstr ""
1312
-
1313
- #: views/settings/general.php:155
1314
- msgid "recommended for large databases"
1315
- msgstr ""
1316
-
1317
- #: views/settings/general.php:160
1318
- msgid "Working Path:"
1319
- msgstr ""
1320
-
1321
- #: views/settings/general.php:166
1322
- msgid ""
1323
- "Mysqldump was not found at its default location or the location provided. "
1324
- "Please enter a path to a valid location where mysqldump can run. If the "
1325
- "problem persist contact your server administrator."
1326
- msgstr ""
1327
-
1328
- #: views/settings/general.php:171
1329
- msgid "Add Custom Path:"
1330
- msgstr ""
1331
-
1332
- #: views/settings/general.php:175
1333
- msgid "This is the path to your mysqldump program."
1334
- msgstr ""
1335
-
1336
- #: views/settings/general.php:184
1337
- msgid "Package Debug"
1338
- msgstr ""
1339
-
1340
- #: views/settings/general.php:187
1341
- msgid "Show Package Debug Status in Packages Screen"
1342
- msgstr ""
1343
-
1344
- #: views/settings/general.php:195
1345
- msgid "Roles & Capabilities"
1346
- msgstr ""
1347
-
1348
- #: views/settings/general.php:200
1349
- msgid "Custom Roles"
1350
- msgstr ""
1351
-
1352
- #: views/settings/general.php:203
1353
- msgid "Enable User Role Editor Plugin Integration"
1354
- msgstr ""
1355
-
1356
- #: views/settings/general.php:210
1357
- msgid "The User Role Editor Plugin"
1358
- msgstr ""
1359
-
1360
- #: views/settings/general.php:211
1361
- msgid "Free"
1362
- msgstr ""
1363
-
1364
- #: views/settings/general.php:212
1365
- msgid "or"
1366
- msgstr ""
1367
-
1368
- #: views/settings/general.php:213
1369
- msgid "Professional"
1370
- msgstr ""
1371
-
1372
- #: views/settings/general.php:214
1373
- msgid "must be installed to use"
1374
- msgstr ""
1375
-
1376
- #: views/settings/general.php:215
1377
- msgid "this feature."
1378
- msgstr ""
1379
-
1380
- #: views/settings/general.php:227
1381
- msgid "Save Settings"
1382
- msgstr ""
1383
-
1384
- #: views/tools/cleanup.php:8
1385
- msgid "Installer File Cleanup Ran."
1386
- msgstr ""
1387
-
1388
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1389
- msgid "Legacy data removed."
1390
- msgstr ""
1391
-
1392
- #: views/tools/cleanup.php:16
1393
- msgid "Build cache removed."
1394
- msgstr ""
1395
-
1396
- #: views/tools/cleanup.php:73
1397
- msgid ""
1398
- "If the installer files did not successfully get removed, then you WILL need "
1399
- "to remove them manually"
1400
- msgstr ""
1401
-
1402
- #: views/tools/cleanup.php:74
1403
- msgid ""
1404
- "Please remove all installer files to avoid leaving open security issues on "
1405
- "your server"
1406
- msgstr ""
1407
-
1408
- #: views/tools/cleanup.php:82
1409
- msgid "Data Cleanup"
1410
- msgstr ""
1411
-
1412
- #: views/tools/cleanup.php:85
1413
- msgid "Delete Reserved Files"
1414
- msgstr ""
1415
-
1416
- #: views/tools/cleanup.php:86
1417
- msgid "Removes all installer files from a previous install"
1418
- msgstr ""
1419
-
1420
- #: views/tools/cleanup.php:89
1421
- msgid "Delete Legacy Data"
1422
- msgstr ""
1423
-
1424
- #: views/tools/cleanup.php:90
1425
- msgid "Removes all legacy data and settings prior to version"
1426
- msgstr ""
1427
-
1428
- #: views/tools/cleanup.php:93
1429
- msgid "Clear Build Cache"
1430
- msgstr ""
1431
-
1432
- #: views/tools/cleanup.php:94
1433
- msgid "Removes all build data from:"
1434
- msgstr ""
1435
-
1436
- #: views/tools/cleanup.php:107
1437
- #, php-format
1438
- msgid "This action will remove all legacy settings prior to version %1$s. "
1439
- msgstr ""
1440
-
1441
- #: views/tools/cleanup.php:108
1442
- msgid ""
1443
- "Legacy settings are only needed if you plan to migrate back to an older "
1444
- "version of this plugin."
1445
- msgstr ""
1446
-
1447
- #: views/tools/cleanup.php:120
1448
- msgid ""
1449
- "This process will remove all build cache files. Be sure no packages are "
1450
- "currently building or else they will be cancelled."
1451
- msgstr ""
1452
-
1453
- #: views/tools/controller.php:16
1454
- msgid "Logging"
1455
- msgstr ""
1456
-
1457
- #: views/tools/controller.php:18
1458
- msgid "Cleanup"
1459
- msgstr ""
1460
-
1461
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1462
- msgid "unknow"
1463
- msgstr ""
1464
-
1465
- #: views/tools/diagnostics.php:39
1466
- msgid "Plugin settings reset."
1467
- msgstr ""
1468
-
1469
- #: views/tools/diagnostics.php:40
1470
- msgid "View state settings reset."
1471
- msgstr ""
1472
-
1473
- #: views/tools/diagnostics.php:41
1474
- msgid "Active package settings reset."
1475
- msgstr ""
1476
-
1477
- #: views/tools/diagnostics.php:81
1478
- msgid "Server Settings"
1479
- msgstr ""
1480
-
1481
- #: views/tools/diagnostics.php:90
1482
- msgid "Duplicator Version"
1483
- msgstr ""
1484
-
1485
- #: views/tools/diagnostics.php:94
1486
- msgid "Operating System"
1487
- msgstr ""
1488
-
1489
- #: views/tools/diagnostics.php:98
1490
- msgid "Timezone"
1491
- msgstr ""
1492
-
1493
- #: views/tools/diagnostics.php:102
1494
- msgid "Server Time"
1495
- msgstr ""
1496
-
1497
- #: views/tools/diagnostics.php:110
1498
- msgid "APC Enabled"
1499
- msgstr ""
1500
-
1501
- #: views/tools/diagnostics.php:114
1502
- msgid "Root Path"
1503
- msgstr ""
1504
-
1505
- #: views/tools/diagnostics.php:118
1506
- msgid "ABSPATH"
1507
- msgstr ""
1508
-
1509
- #: views/tools/diagnostics.php:122
1510
- msgid "Plugins Path"
1511
- msgstr ""
1512
-
1513
- #: views/tools/diagnostics.php:126
1514
- msgid "Loaded PHP INI"
1515
- msgstr ""
1516
-
1517
- #: views/tools/diagnostics.php:130
1518
- msgid "Server IP"
1519
- msgstr ""
1520
-
1521
- #: views/tools/diagnostics.php:134
1522
- msgid "Client IP"
1523
- msgstr ""
1524
-
1525
- #: views/tools/diagnostics.php:145
1526
- msgid "Langugage"
1527
- msgstr ""
1528
-
1529
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
1530
- msgid "Charset"
1531
- msgstr ""
1532
-
1533
- #: views/tools/diagnostics.php:153
1534
- msgid "Memory Limit "
1535
- msgstr ""
1536
-
1537
- #: views/tools/diagnostics.php:154
1538
- msgid "Max"
1539
- msgstr ""
1540
-
1541
- #: views/tools/diagnostics.php:172
1542
- msgid "Safe Mode"
1543
- msgstr ""
1544
-
1545
- #: views/tools/diagnostics.php:176
1546
- msgid "On"
1547
- msgstr ""
1548
-
1549
- #: views/tools/diagnostics.php:176
1550
- msgid "Off"
1551
- msgstr ""
1552
-
1553
- #: views/tools/diagnostics.php:181
1554
- msgid "Memory Limit"
1555
- msgstr ""
1556
-
1557
- #: views/tools/diagnostics.php:185
1558
- msgid "Memory In Use"
1559
- msgstr ""
1560
-
1561
- #: views/tools/diagnostics.php:193
1562
- msgid "Shell Exec"
1563
- msgstr ""
1564
-
1565
- #: views/tools/diagnostics.php:194
1566
- msgid "Is Supported"
1567
- msgstr ""
1568
-
1569
- #: views/tools/diagnostics.php:194
1570
- msgid "Not Supported"
1571
- msgstr ""
1572
-
1573
- #: views/tools/diagnostics.php:208
1574
- msgid "Wait Timeout"
1575
- msgstr ""
1576
-
1577
- #: views/tools/diagnostics.php:212
1578
- msgid "Max Allowed Packets"
1579
- msgstr ""
1580
-
1581
- #: views/tools/diagnostics.php:216
1582
- msgid "msyqldump Path"
1583
- msgstr ""
1584
-
1585
- #: views/tools/diagnostics.php:220
1586
- msgid "Server Disk"
1587
- msgstr ""
1588
-
1589
- #: views/tools/diagnostics.php:223
1590
- msgid "Free space"
1591
- msgstr ""
1592
-
1593
- #: views/tools/diagnostics.php:226
1594
- msgid "Note: This value is the physical servers hard-drive allocation."
1595
- msgstr ""
1596
-
1597
- #: views/tools/diagnostics.php:227
1598
- msgid ""
1599
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
1600
- "value."
1601
- msgstr ""
1602
-
1603
- #: views/tools/diagnostics.php:243
1604
- msgid "Stored Data"
1605
- msgstr ""
1606
-
1607
- #: views/tools/diagnostics.php:248
1608
- msgid "Options Values"
1609
- msgstr ""
1610
-
1611
- #: views/tools/diagnostics.php:281
1612
- msgid "PHP Information"
1613
- msgstr ""
1614
-
1615
- #: views/tools/diagnostics.php:300
1616
- msgid "Delete this option value"
1617
- msgstr ""
1618
-
1619
- #: views/tools/logging.php:140
1620
- msgid "Log file not found or unreadable"
1621
- msgstr ""
1622
-
1623
- #: views/tools/logging.php:142
1624
- msgid ""
1625
- "Try to create a package, since no log files were found in the snapshots "
1626
- "directory with the extension *.log"
1627
- msgstr ""
1628
-
1629
- #: views/tools/logging.php:144
1630
- msgid "Reasons for log file not showing"
1631
- msgstr ""
1632
-
1633
- #: views/tools/logging.php:145
1634
- msgid "The web server does not support returning .log file extentions"
1635
- msgstr ""
1636
-
1637
- #: views/tools/logging.php:146
1638
- msgid ""
1639
- "The snapshots directory does not have the correct permissions to write "
1640
- "files. Try setting the permissions to 755"
1641
- msgstr ""
1642
-
1643
- #: views/tools/logging.php:147
1644
- msgid ""
1645
- "The process that PHP runs under does not have enough permissions to create "
1646
- "files. Please contact your hosting provider for more details"
1647
- msgstr ""
1648
-
1649
- #: views/tools/logging.php:156 views/tools/logging.php:161
1650
- msgid "Options"
1651
- msgstr ""
1652
-
1653
- #: views/tools/logging.php:163
1654
- msgid "Refresh"
1655
- msgstr ""
1656
-
1657
- #: views/tools/logging.php:168
1658
- msgid "Auto Refresh"
1659
- msgstr ""
1660
-
1661
- #: views/tools/logging.php:174
1662
- msgid "Last 20 Logs"
1663
- msgstr ""
1664
-
1665
- #. Plugin Name of the plugin/theme
1666
- msgid "Duplicator"
1667
- msgstr ""
1668
-
1669
- #. Plugin URI of the plugin/theme
1670
- msgid "http://www.lifeinthegrid.com/duplicator/"
1671
- msgstr ""
1672
-
1673
- #. Description of the plugin/theme
1674
- msgid ""
1675
- "Create a backup of your WordPress files and database. Duplicate and move an "
1676
- "entire site from one location to another in a few steps. Create a full "
1677
- "snapshot of your site at any point in time."
1678
- msgstr ""
1679
-
1680
- #. Author of the plugin/theme
1681
- msgid "LifeInTheGrid"
1682
- msgstr ""
1683
-
1684
- #. Author URI of the plugin/theme
1685
- msgid "http://www.lifeinthegrid.com"
1686
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wpduplicator-de_DE.mo DELETED
Binary file
lang/wpduplicator-de_DE.po DELETED
@@ -1,2310 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Duplicator v0.5.23\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
5
- "POT-Creation-Date: 2015-07-26 23:52+0200\n"
6
- "PO-Revision-Date: 2015-07-27 00:07+0200\n"
7
- "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: de_DE\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Generator: Poedit 1.8.2\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Textdomain-Support: yes\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: assets\n"
24
-
25
- # @ wpduplicator
26
- #: classes/ui.php:111
27
- msgid ""
28
- "Reserved Duplicator install file(s) still exists in the root directory. "
29
- "Please delete these file(s) to avoid possible security issues."
30
- msgstr ""
31
- "Reservierte Duplicator Installationsdatei(en) sind noch im Root-Verzeichnis "
32
- "vorhanden. Bitte lösche diese Datei (en), um mögliche Sicherheitsprobleme zu "
33
- "vermeiden."
34
-
35
- # @ wpduplicator
36
- #: classes/ui.php:112
37
- msgid "Remove file(s) now"
38
- msgstr "Entferne die Datei(en) jetzt"
39
-
40
- # @ wpduplicator
41
- #: classes/ui.php:113
42
- msgid "Dismiss this notice"
43
- msgstr "Verwerfe diese Notiz"
44
-
45
- # @ wpduplicator
46
- #: classes/utility.php:249
47
- msgid "You do not have sufficient permissions to access this page."
48
- msgstr ""
49
- "Du verfügst nicht über ausreichende Rechte, um diese Seite zu betreten."
50
-
51
- # @ wpduplicator
52
- #: duplicator.php:102
53
- msgid "Get Help"
54
- msgstr "Hilfe bekommen"
55
-
56
- # @ wpduplicator
57
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
58
- msgid "Help"
59
- msgstr "Hilfe"
60
-
61
- # @ wpduplicator
62
- #: duplicator.php:103
63
- msgid "Support the Plugin"
64
- msgstr "Unterstütze das Plugin"
65
-
66
- # @ wpduplicator
67
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
68
- msgid "About"
69
- msgstr "Über"
70
-
71
- # @ wpduplicator
72
- #: duplicator.php:179 views/packages/controller.php:76
73
- #: views/packages/list.base.php:235
74
- msgid "Packages"
75
- msgstr "Archive"
76
-
77
- # @ wpduplicator
78
- #: duplicator.php:183 views/settings/controller.php:19
79
- msgid "Settings"
80
- msgstr "Einstellungen"
81
-
82
- # @ wpduplicator
83
- #: duplicator.php:187 views/tools/controller.php:13
84
- msgid "Tools"
85
- msgstr "Werkzeuge"
86
-
87
- # @ wpduplicator
88
- #: duplicator.php:246
89
- msgid "Manage"
90
- msgstr "Verwalten"
91
-
92
- # @ wpduplicator
93
- #: views/help/about.php:54
94
- msgid ""
95
- "Created for Admins, Developers and Designers the Duplicator can streamline "
96
- "your workflows and help you quickly clone a WordPress application. "
97
- "Migrating a WordPress site manually can be very time consuming. The "
98
- "Duplicator was made to help you speed up the migration process. Please help "
99
- "us to continue the development effort of this plugin."
100
- msgstr ""
101
- "Erstellt für Admins, Entwickler und Designer, die mit dem Duplicator Ihre "
102
- "Arbeitsabläufe optimieren und eine Wordpress-Anwendung schnell klonen "
103
- "können. Die manuell Migration eines Wordpress-Seite kann sehr zeitaufwendig "
104
- "sein. Der Duplicator wurde entwickelt, um den Migrationsprozess zu "
105
- "beschleunigen. Bitte unterstütze uns, um die Entwicklung des Plugins weiter "
106
- "zu führen."
107
-
108
- # @ wpduplicator
109
- #: views/help/about.php:64
110
- msgid "Support Duplicator"
111
- msgstr "Unterstützung Duplicator"
112
-
113
- # @ wpduplicator
114
- #: views/help/about.php:71
115
- msgid "Partner with Us"
116
- msgstr "Unsere Partner"
117
-
118
- # @ wpduplicator
119
- #: views/help/about.php:83
120
- msgid "Keep Active and Online"
121
- msgstr "Bitte unterstütze den Duplicator mit einer Spende"
122
-
123
- # @ wpduplicator
124
- #: views/help/about.php:90
125
- msgid "Leave 5 Stars"
126
- msgstr "Vergebe 5 Sterne"
127
-
128
- # @ wpduplicator
129
- #: views/help/about.php:107
130
- msgid "Spread the Word"
131
- msgstr "Verbreitung des Inhaltes"
132
-
133
- # @ wpduplicator
134
- #: views/help/about.php:113
135
- msgid "Duplicate Your WordPress"
136
- msgstr "Duplizieren dein WordPress"
137
-
138
- # @ wpduplicator
139
- #: views/help/about.php:114
140
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
141
- msgstr "Schnelle WordPress-Vervielfältigung von LifeInTheGrid.com"
142
-
143
- # @ wpduplicator
144
- #: views/help/about.php:131
145
- msgid "Get More Great Tools"
146
- msgstr "Hole Dir weitere großartige Anwendungen"
147
-
148
- # @ wpduplicator
149
- #: views/help/gopro.php:37
150
- msgid "Go Pro!"
151
- msgstr "Zur Pro-Version wechseln!"
152
-
153
- # @ wpduplicator
154
- #: views/help/gopro.php:46
155
- msgid "Duplicator Pro Has Arrived!"
156
- msgstr "Duplicator Pro ist da!"
157
-
158
- # @ wpduplicator
159
- #: views/help/gopro.php:49
160
- msgid "The simplicity of Duplicator"
161
- msgstr "Die Einfachheit des Duplicators"
162
-
163
- # @ wpduplicator
164
- #: views/help/gopro.php:50
165
- msgid "with the power the professional requires."
166
- msgstr "mit der professionellen Unterstützung."
167
-
168
- # @ wpduplicator
169
- #: views/help/gopro.php:57
170
- msgid "Duplicator Free"
171
- msgstr "Duplicator Free"
172
-
173
- # @ wpduplicator
174
- #: views/help/gopro.php:60 views/help/gopro.php:88
175
- msgid "Backup Files &amp; Database"
176
- msgstr "Backup Dateien &amp; Datenbank"
177
-
178
- # @ wpduplicator
179
- #: views/help/gopro.php:61 views/help/gopro.php:89
180
- msgid ""
181
- "Compresses all your WordPress files and database into a compressed snapshot "
182
- "archive file."
183
- msgstr ""
184
- "Komprimiert alle Wordpress-Dateien und die Datenbank in eine Snapshot-"
185
- "Archivdatei."
186
-
187
- # @ wpduplicator
188
- #: views/help/gopro.php:64 views/help/gopro.php:92
189
- msgid "Directory Filters"
190
- msgstr "Verzeichnisfilter"
191
-
192
- # @ wpduplicator
193
- #: views/help/gopro.php:65 views/help/gopro.php:93
194
- msgid ""
195
- "Filter out the directories and file extensions you want to include/exclude "
196
- "in your in your archive file."
197
- msgstr ""
198
- "Filtern der Verzeichnisse und Dateierweiterungen, welche in die Archivdatei "
199
- "eingeschlossen/ausgeschlossen werden."
200
-
201
- # @ wpduplicator
202
- #: views/help/gopro.php:68 views/help/gopro.php:96
203
- msgid "Database Table Filters"
204
- msgstr "Datenbanktabellen-Filter"
205
-
206
- # @ wpduplicator
207
- #: views/help/gopro.php:69 views/help/gopro.php:97
208
- msgid ""
209
- "Filter out only the database tables you want to include/exclude in your "
210
- "database creation script."
211
- msgstr ""
212
- "Nur eingeschlossene / ausgeschlossene Datenbanktabellen zur Erstellung des "
213
- "Datenbankscripts verwenden."
214
-
215
- # @ wpduplicator
216
- #: views/help/gopro.php:72 views/help/gopro.php:100
217
- msgid "Migration Wizard"
218
- msgstr "Migrations-Assistent"
219
-
220
- # @ wpduplicator
221
- #: views/help/gopro.php:73 views/help/gopro.php:101
222
- msgid ""
223
- "With just two files (archive &amp; installer.php) move your site to a new "
224
- "location."
225
- msgstr ""
226
- "Mit nur zwei Dateien (Archiv und installer.php) installiere die Website auf "
227
- "eine neue Position."
228
-
229
- # @ wpduplicator
230
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
231
- msgid "Duplicator Pro"
232
- msgstr "Duplicator Pro"
233
-
234
- # @ wpduplicator
235
- #: views/help/gopro.php:104
236
- msgid "Scheduled Backups"
237
- msgstr "Geplante Sicherungen"
238
-
239
- # @ wpduplicator
240
- #: views/help/gopro.php:105
241
- msgid ""
242
- "Automate the creation of your packages to run at various scheduled intervals."
243
- msgstr ""
244
- "Die Erstellung der Pakete kann automatisiert an verschiedenen geplanten "
245
- "Intervallen ausgeführt werden."
246
-
247
- # @ wpduplicator
248
- #: views/help/gopro.php:108
249
- msgid "Dropbox Support"
250
- msgstr "Dropbox-Unterstützung"
251
-
252
- # @ wpduplicator
253
- #: views/help/gopro.php:109
254
- msgid "Backup up your entire site to Dropbox."
255
- msgstr "Sichern der gesamten Website in die Dropbox."
256
-
257
- # @ wpduplicator
258
- #: views/help/gopro.php:112
259
- msgid "FTP Support"
260
- msgstr "FTP-Unterstützung"
261
-
262
- # @ wpduplicator
263
- #: views/help/gopro.php:113
264
- msgid "Backup up your entire site to an FTP server."
265
- msgstr "Sichern der gesamten Website auf einen FTP-Server."
266
-
267
- # @ wpduplicator
268
- #: views/help/gopro.php:116
269
- msgid "Customer Support"
270
- msgstr "Benutzer-Unterstützung"
271
-
272
- # @ wpduplicator
273
- #: views/help/gopro.php:117
274
- msgid ""
275
- "Server setups can be quite complex, with pro you get prompt help to get your "
276
- "site backed up and moved."
277
- msgstr ""
278
- "Server-Setups können recht komplex sein. Mit der Pro-Version gibt es "
279
- "schnelle Hilfe, um die Website zu sichern bzw. zu verschieben."
280
-
281
- # @ wpduplicator
282
- #: views/help/gopro.php:124
283
- msgid "Check It Out!"
284
- msgstr "Probiere es aus!"
285
-
286
- # @ wpduplicator
287
- #: views/help/help.php:38
288
- msgid ""
289
- "Migrating WordPress is a complex process and the logic to make all the magic "
290
- "happen smoothly may not work quickly with every site. With over 30,000 "
291
- "plugins and a very complex server eco-system some migrations may run into "
292
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
293
- "can help with many common issues. Resources to additional support, approved "
294
- "hosting, and alternatives to fit your needs can be found below."
295
- msgstr ""
296
- "Die Migration von Wordpress ist ein komplexer Prozess. Mit über 30.000 "
297
- "installierbaren Plugins kann es zu Problemen kommen. Deshalb enthält der "
298
- "Duplicator eine detaillierte Wissensdatenbank, in welcher zahlreiche Fehler "
299
- "beschrieben sind. Weitere Unterstützung, Hosting und Alternativen sind unten "
300
- "zu finden."
301
-
302
- # @ wpduplicator
303
- #: views/help/help.php:50
304
- msgid "Knowledgebase"
305
- msgstr "Wissens-Datenbank"
306
-
307
- # @ wpduplicator
308
- #: views/help/help.php:53
309
- msgid "Complete Online Documentation"
310
- msgstr "Vollständige Online-Dokumentation"
311
-
312
- # @ wpduplicator
313
- #: views/help/help.php:55
314
- msgid "Choose A Section"
315
- msgstr "Wähle eine Rubrik"
316
-
317
- # @ wpduplicator
318
- #: views/help/help.php:56
319
- msgid "Quick Start"
320
- msgstr "Schnell-Start"
321
-
322
- # @ wpduplicator
323
- #: views/help/help.php:57
324
- msgid "User Guide"
325
- msgstr "Benutzerhandbuch"
326
-
327
- # @ wpduplicator
328
- #: views/help/help.php:58
329
- msgid "FAQs"
330
- msgstr "Häufig gestellte Fragen"
331
-
332
- # @ wpduplicator
333
- #: views/help/help.php:59
334
- msgid "Change Log"
335
- msgstr "Liste der Änderungen"
336
-
337
- # @ wpduplicator
338
- #: views/help/help.php:60
339
- msgid "Product Page"
340
- msgstr "Produkt-Seite"
341
-
342
- # @ wpduplicator
343
- #: views/help/help.php:69
344
- msgid "Online Support"
345
- msgstr "Online Support"
346
-
347
- # @ wpduplicator
348
- #: views/help/help.php:72
349
- msgid "Get Help From IT Professionals"
350
- msgstr "Erhalte Hilfe von IT-Spezialisten"
351
-
352
- # @ wpduplicator
353
- #: views/help/help.php:76
354
- msgid "Get Support!"
355
- msgstr "Unterstützung bekommen!"
356
-
357
- # @ wpduplicator
358
- #: views/help/help.php:88
359
- msgid "Approved Hosting"
360
- msgstr "Empfohlene Hosting-Provider"
361
-
362
- # @ wpduplicator
363
- #: views/help/help.php:91
364
- msgid "Servers That Work With Duplicator"
365
- msgstr "Server, welche mit dem Duplicator problemlos zusammenarbeiten"
366
-
367
- # @ wpduplicator
368
- #: views/help/help.php:94
369
- msgid "Trusted Providers!"
370
- msgstr "Vertrauenswürdige Provider!"
371
-
372
- # @ wpduplicator
373
- #: views/help/help.php:104
374
- msgid "Alternatives"
375
- msgstr "Alternativen"
376
-
377
- # @ wpduplicator
378
- #: views/help/help.php:107
379
- msgid "Other Commercial Resources"
380
- msgstr "Andere kommerzielle Angebote"
381
-
382
- # @ wpduplicator
383
- #: views/help/help.php:110
384
- msgid "Pro Solutions!"
385
- msgstr "Pro-Version!"
386
-
387
- # @ wpduplicator
388
- #: views/packages/list-nodata.php:7
389
- msgid "No Packages Found."
390
- msgstr "Keine Archive gefunden."
391
-
392
- # @ wpduplicator
393
- #: views/packages/list-nodata.php:8
394
- msgid "Click the 'Create New' button to build a package."
395
- msgstr "Zum Erstellen eines Pakets auf \"Neu erzeugen\" klicken."
396
-
397
- # @ wpduplicator
398
- #: views/packages/list-nodata.php:13
399
- msgid "Please visit the"
400
- msgstr "Bitte besuche die"
401
-
402
- # @ wpduplicator
403
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
404
- #: views/packages/new1.base.php:234
405
- msgid "help page"
406
- msgstr "Hilfe-Seiten"
407
-
408
- # @ wpduplicator
409
- #: views/packages/list-nodata.php:15
410
- msgid "for additional support"
411
- msgstr "für weitere Unterstützung"
412
-
413
- # @ wpduplicator
414
- #: views/packages/list-nodata.php:24
415
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
416
- msgstr ""
417
- "Ältere Archive (vor 0.5.0) werden in dieser Version nicht mehr unterstützt."
418
-
419
- # @ wpduplicator
420
- #: views/packages/list-nodata.php:27
421
- msgid "To get an older package please visit the"
422
- msgstr "Bei älteren Archiven besuche bitte die"
423
-
424
- # @ wpduplicator
425
- #: views/packages/list-nodata.php:29
426
- msgid "and look for the Change Log link for additional instructions."
427
- msgstr "und suche im Änderungsprotokoll nach weiteren Anweisungen."
428
-
429
- # @ wpduplicator
430
- #: views/packages/list-nodata.php:33
431
- msgid "Hide this message"
432
- msgstr "Diese Nachricht ausblenden"
433
-
434
- # @ wpduplicator
435
- #: views/packages/list.base.php:39
436
- msgid "Help Support Duplicator"
437
- msgstr "Duplicator-Hilfe"
438
-
439
- # @ wpduplicator
440
- #: views/packages/list.base.php:50
441
- msgid "Bulk Actions"
442
- msgstr "Auswahl"
443
-
444
- # @ wpduplicator
445
- #: views/packages/list.base.php:51
446
- msgid "Delete selected package(s)"
447
- msgstr "Ausgewählte Archive löschen"
448
-
449
- # @ wpduplicator
450
- #: views/packages/list.base.php:51
451
- msgid "Delete"
452
- msgstr "Löschen"
453
-
454
- # @ wpduplicator
455
- #: views/packages/list.base.php:53
456
- msgid "Apply"
457
- msgstr "Anwenden"
458
-
459
- # @ wpduplicator
460
- #: views/packages/list.base.php:58
461
- msgid "Package Logs"
462
- msgstr "Archiv Logs"
463
-
464
- # @ wpduplicator
465
- #: views/packages/list.base.php:61 views/packages/new1.base.php:96
466
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
467
- #: views/packages/new3.base.php:89
468
- msgid "All Packages"
469
- msgstr "Alle Archive"
470
-
471
- # @ wpduplicator
472
- #: views/packages/list.base.php:62 views/packages/new1.base.php:97
473
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
474
- msgid "Create New"
475
- msgstr "Neu erzeugen"
476
-
477
- # @ wpduplicator
478
- #: views/packages/list.base.php:87
479
- msgid "Select all packages"
480
- msgstr "Alle Archive auswählen"
481
-
482
- # @ wpduplicator
483
- #: views/packages/list.base.php:88 views/packages/new3.base.php:108
484
- msgid "Details"
485
- msgstr "Details"
486
-
487
- # @ wpduplicator
488
- #: views/packages/list.base.php:89
489
- msgid "Created"
490
- msgstr "Erstellt"
491
-
492
- # @ wpduplicator
493
- #: views/packages/list.base.php:90 views/packages/new2.base.php:222
494
- #: views/packages/new2.base.php:334
495
- msgid "Size"
496
- msgstr "Größe"
497
-
498
- # @ wpduplicator
499
- #: views/packages/list.base.php:91 views/packages/new1.inc.form.php:6
500
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
501
- msgid "Name"
502
- msgstr "Name"
503
-
504
- # @ wpduplicator
505
- #: views/packages/list.base.php:93 views/settings/general.php:110
506
- msgid "Package"
507
- msgstr "Archiv"
508
-
509
- # @ wpduplicator
510
- #: views/packages/list.base.php:124
511
- msgid "(No Notes Taken)"
512
- msgstr "(Keine Notizen erstellt)"
513
-
514
- # @ wpduplicator
515
- #: views/packages/list.base.php:142 views/packages/list.base.php:187
516
- msgid "View"
517
- msgstr "Ansicht"
518
-
519
- # @ wpduplicator
520
- #: views/packages/list.base.php:147 views/packages/new1.inc.form.php:176
521
- #: views/packages/new3.base.php:79
522
- msgid "Installer"
523
- msgstr "Installer"
524
-
525
- # @ wpduplicator
526
- #: views/packages/list.base.php:150 views/packages/new1.inc.form.php:65
527
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
528
- msgid "Archive"
529
- msgstr "Archive"
530
-
531
- # @ wpduplicator
532
- #: views/packages/list.base.php:155 views/packages/list.base.php:200
533
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
534
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
535
- msgid "Version"
536
- msgstr "Version"
537
-
538
- # @ wpduplicator
539
- #: views/packages/list.base.php:156 views/packages/list.base.php:201
540
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
541
- msgid "User"
542
- msgstr "Benutzer"
543
-
544
- # @ wpduplicator
545
- #: views/packages/list.base.php:157 views/packages/list.base.php:202
546
- msgid "Hash"
547
- msgstr "Hash"
548
-
549
- # @ wpduplicator
550
- #: views/packages/list.base.php:158 views/packages/list.base.php:207
551
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
552
- msgid "Notes"
553
- msgstr "Anmerkungen"
554
-
555
- # @ wpduplicator
556
- #: views/packages/list.base.php:160
557
- msgid "Links"
558
- msgstr "Links"
559
-
560
- # @ wpduplicator
561
- #: views/packages/list.base.php:161
562
- msgid "SQL"
563
- msgstr "SQL"
564
-
565
- # @ wpduplicator
566
- #: views/packages/list.base.php:162
567
- msgid "Log"
568
- msgstr "Log"
569
-
570
- # @ wpduplicator
571
- #: views/packages/list.base.php:165
572
- msgid "Open Scan Report"
573
- msgstr "Scan-Bericht öffnen"
574
-
575
- # @ wpduplicator
576
- #: views/packages/list.base.php:166
577
- msgid "View Package Object"
578
- msgstr "Paket ansehen"
579
-
580
- # @ wpduplicator
581
- #: views/packages/list.base.php:193
582
- msgid "View Error Details"
583
- msgstr "Fehler-Details ansehen"
584
-
585
- # @ wpduplicator
586
- #: views/packages/list.base.php:205
587
- msgid "Unrecoverable Error! Please remove this package."
588
- msgstr "Nicht behebbarer Fehler! Bitte lösche das Paket."
589
-
590
- # @ wpduplicator
591
- #: views/packages/list.base.php:210
592
- msgid ""
593
- "This package has encountered errors. Click 'View Log' for more details. "
594
- "For additional support see the "
595
- msgstr ""
596
- "Es sind Fehler aufgetreten. Klicke auf 'Log ansehen' für weitere Details. "
597
- "Zusätzliche Unterstützung findest du in der "
598
-
599
- # @ wpduplicator
600
- #: views/packages/list.base.php:211
601
- msgid "online knowledgebase"
602
- msgstr "Online-Wissensdatenbank"
603
-
604
- # @ wpduplicator
605
- #: views/packages/list.base.php:213
606
- msgid "View Log"
607
- msgstr "Log ansehen"
608
-
609
- # @ wpduplicator
610
- #: views/packages/list.base.php:236 views/packages/new2.base.php:219
611
- #: views/packages/new2.base.php:328
612
- msgid "Total Size"
613
- msgstr "Gesamte Größe"
614
-
615
- # @ wpduplicator
616
- #: views/packages/list.base.php:255
617
- msgid "Download Links"
618
- msgstr "Download Links"
619
-
620
- # @ wpduplicator
621
- #: views/packages/list.base.php:258
622
- msgid "The following links contain sensitive data. Please share with caution!"
623
- msgstr ""
624
- "Die folgenden Links enthalten sensible Daten. Bitte verwende sie mit "
625
- "Vorsicht!"
626
-
627
- # @ wpduplicator
628
- #: views/packages/list.base.php:264
629
- msgid ""
630
- "The database SQL script is a quick link to your database backup script. An "
631
- "exact copy is also stored in the package."
632
- msgstr ""
633
- "Das Datenbank-SQL-Skript ist ein direkter Link zum Datenbank-Backup-Skript. "
634
- "Eine exakte Kopie ist auch im Archiv gespeichert."
635
-
636
- # @ wpduplicator
637
- #: views/packages/list.base.php:287
638
- msgid ""
639
- "Please select an action from the bulk action drop down menu to perform a "
640
- "specific action."
641
- msgstr "Bitte wähle eine Aktion aus dem Dropdown-Menü aus."
642
-
643
- # @ wpduplicator
644
- #: views/packages/list.base.php:295
645
- msgid "Please select at least one package to delete."
646
- msgstr "Bitte wähle mindestens ein Archiv zum Löschen."
647
-
648
- # @ wpduplicator
649
- #: views/packages/list.base.php:299
650
- msgid "Are you sure, you want to delete the selected package(s)?"
651
- msgstr "Ausgewählte Archive wirklich löschen?"
652
-
653
- # @ wpduplicator
654
- #: views/packages/list.base.php:333
655
- msgid "Package File Links"
656
- msgstr "Archiv-Datei Links"
657
-
658
- # @ wpduplicator
659
- #: views/packages/list.base.php:336
660
- msgid "DATABASE"
661
- msgstr "Datenbank"
662
-
663
- # @ wpduplicator
664
- #: views/packages/list.base.php:337
665
- msgid "PACKAGE"
666
- msgstr "Archive"
667
-
668
- # @ wpduplicator
669
- #: views/packages/list.base.php:338
670
- msgid "INSTALLER"
671
- msgstr "INSTALLER"
672
-
673
- # @ wpduplicator
674
- #: views/packages/list.base.php:339
675
- msgid "LOG"
676
- msgstr "Log"
677
-
678
- # @ wpduplicator
679
- #: views/packages/list.base.php:340
680
- msgid "REPORT"
681
- msgstr "Bericht"
682
-
683
- # @ wpduplicator
684
- #: views/packages/new1.base.php:13
685
- msgid "Package settings have been reset."
686
- msgstr "Archiveinstellungen wurden zurückgesetzt."
687
-
688
- # @ wpduplicator
689
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
690
- #: views/packages/new3.base.php:33
691
- msgid "Setup"
692
- msgstr "Setup"
693
-
694
- # @ wpduplicator
695
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
696
- #: views/packages/new3.base.php:34
697
- msgid "Scan"
698
- msgstr "Scan"
699
-
700
- # @ wpduplicator
701
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
702
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
703
- msgid "Build"
704
- msgstr "Erstellen"
705
-
706
- # @ wpduplicator
707
- #: views/packages/new1.base.php:91
708
- msgid "Step 1: Package Setup"
709
- msgstr "Schritt 1: Archiv-Setup"
710
-
711
- # @ wpduplicator
712
- #: views/packages/new1.base.php:115
713
- msgid "Requirements:"
714
- msgstr "Anforderungen:"
715
-
716
- # @ wpduplicator
717
- #: views/packages/new1.base.php:124
718
- msgid ""
719
- "System requirements must pass for the Duplicator to work properly. Click "
720
- "each link for details."
721
- msgstr ""
722
- "Damit der Duplicator richtig funktioniert, müssen die Systemanforderungen "
723
- "erfüllt sein. Klicken auf jeden beliebigen Link für weitere Details."
724
-
725
- # @ wpduplicator
726
- #: views/packages/new1.base.php:130
727
- msgid "PHP Support"
728
- msgstr "PHP-Unterstützung"
729
-
730
- # @ wpduplicator
731
- #: views/packages/new1.base.php:136
732
- msgid "PHP Version"
733
- msgstr "PHP-Version"
734
-
735
- # @ wpduplicator
736
- #: views/packages/new1.base.php:140
737
- msgid "Zip Archive Enabled"
738
- msgstr "Zip-Archiv aktiviert"
739
-
740
- # @ wpduplicator
741
- #: views/packages/new1.base.php:144
742
- msgid "Safe Mode Off"
743
- msgstr "Safe Mode Off"
744
-
745
- # @ wpduplicator
746
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
747
- #: views/packages/new1.base.php:156
748
- msgid "Function"
749
- msgstr "Funktion"
750
-
751
- # @ wpduplicator
752
- #: views/packages/new1.base.php:161
753
- msgid ""
754
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
755
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
756
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
757
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
758
- "this section please contact your hosting provider or server administrator. "
759
- "For additional information see our online documentation."
760
- msgstr ""
761
- "PHP-Versionen 5.2.17+ oder höher ist erforderlich. Bitte beachte, dass in "
762
- "der Versionslogik ein Wert wie 5.2.9 weniger ist als 5.2.17. Für die "
763
- "Kompression ist die ZipArchive-Erweiterung für PHP ist erforderlich. Der "
764
- "Safe Mode sollte auf 'Aus' in dir php.ini-Datei eingestellt werden (veraltet "
765
- "ab PHP 5.3.0). Für weitere Fragen in diesem Abschnitt wende dich an deinen "
766
- "Hosting-Provider oder Serveradministrator. Weitere Informationen befinden "
767
- "sich auf unserer Online-Dokumentation."
768
-
769
- # @ wpduplicator
770
- #: views/packages/new1.base.php:169
771
- msgid "Permissions"
772
- msgstr "Berechtigungen"
773
-
774
- # @ wpduplicator
775
- #: views/packages/new1.base.php:172
776
- msgid "Required Paths"
777
- msgstr "Erforderliche Pfade"
778
-
779
- # @ wpduplicator
780
- #: views/packages/new1.base.php:183
781
- msgid ""
782
- "Permissions can be difficult to resolve on some systems. If the plugin can "
783
- "not read the above paths here are a few things to try. 1) Set the above "
784
- "paths to have permissions of 755 for directories and 644 for files. You can "
785
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
786
- "the owner/group settings for both files and directories. The PHP script "
787
- "owner and the process owner are different. The script owner owns the PHP "
788
- "script but the process owner is the user the script is running as, thus "
789
- "determining its capabilities/privileges in the file system. For more details "
790
- "contact your host or server administrator or visit the 'Help' menu under "
791
- "Duplicator for additional online resources."
792
- msgstr ""
793
- "Berechtigungen sind auf einigen Systemen nur schwer zu ändern. Wenn das "
794
- "Plugin die oben genannten Pfade nicht lesen kann, versuche folgendes. 1) "
795
- "Setze die Berechtigungen für Verzeichnisse auf 755 und für Dateien auf 644. "
796
- "Versuche es ggf. vorübergehend mit 777. 2) Prüfe den Eigentümer / "
797
- "Gruppeneinstellungen für Dateien und Verzeichnissen. Das PHP-Skript und ein "
798
- "FTP-Benutzer erfordern unterschiedliche Eigentümer. Der Skript Eigentümer "
799
- "besitzt das PHP-Skript, aber der Prozess-Besitzer ist der Benutzer, welcher "
800
- "das Skript ausführt. Für weitere Informationen wende dich Host- oder Server-"
801
- "Administrator oder besuche das \\\"Hilfe\\\"-Menü unter Duplicator für "
802
- "zusätzliche Online-Ressourcen."
803
-
804
- # @ wpduplicator
805
- #: views/packages/new1.base.php:191
806
- msgid "Server Support"
807
- msgstr "Server-Support"
808
-
809
- # @ wpduplicator
810
- #: views/packages/new1.base.php:197
811
- msgid "MySQL Version"
812
- msgstr "MySQL-Version"
813
-
814
- # @ wpduplicator
815
- #: views/packages/new1.base.php:201
816
- msgid "MySQLi Support"
817
- msgstr "MySQLi-Support"
818
-
819
- # @ wpduplicator
820
- #: views/packages/new1.base.php:207
821
- msgid ""
822
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
823
- "the trailing 'i') is also required. Contact your server administrator and "
824
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
825
- "note in future versions support for other databases and extensions will be "
826
- "added."
827
- msgstr ""
828
- "MySQL-Version 5.0 oder höher und die PHP MySQLi-Erweiterung (beachte das "
829
- "ergänzende \\\"i\\\") ist ebenfalls erforderlich. Kontaktiere deinen Server-"
830
- "Administrator und verlange, dass mysqli-Erweiterung und MySQL Server 5.0 und "
831
- "höher installiert werden. Bitte beachte, dass in zukünftigen Versionen "
832
- "Unterstützung für andere Datenbanken und Erweiterungen hinzugefügt werden."
833
-
834
- # @ wpduplicator
835
- #: views/packages/new1.base.php:208
836
- msgid "more info"
837
- msgstr "mehr Informationen"
838
-
839
- # @ wpduplicator
840
- #: views/packages/new1.base.php:217
841
- msgid "Reserved Files"
842
- msgstr "Reservierte Dateien"
843
-
844
- # @ wpduplicator
845
- #: views/packages/new1.base.php:221
846
- msgid ""
847
- "None of the reserved files (installer.php, installer-data.sql and installer-"
848
- "log.txt) where found from a previous install. This means you are clear to "
849
- "create a new package."
850
- msgstr ""
851
- "Es wurden keine reservierte Dateien (installer.php, installer-data.sql und "
852
- "installer-log.txt) von einer früheren Installation gefunden. Ein neues Paket "
853
- "kann nun erstellt werden."
854
-
855
- # @ wpduplicator
856
- #: views/packages/new1.base.php:224
857
- msgid ""
858
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
859
- "names are installer.php, installer-data.sql and installer-log.txt. To "
860
- "archive your data correctly please remove any of these files from your "
861
- "WordPress root directory. Then try creating your package again."
862
- msgstr ""
863
- "Es wurden reservierte Datei (en) im WordPress Stammverzeichnis gefunden. "
864
- "Reservierte Dateinamen sind installer.php, installer-data.sql und installer-"
865
- "log.txt. Zum korrekten Archivieren deiner Dateien entferne bitte diese "
866
- "Dateien aus dem WordPress-Stammverzeichnis. Dann versuche erneut, das Archiv "
867
- "zu erstellen."
868
-
869
- # @ wpduplicator
870
- #: views/packages/new1.base.php:225
871
- msgid "Remove Files Now"
872
- msgstr "Dateien werden entfernt"
873
-
874
- # @ wpduplicator
875
- #: views/packages/new1.base.php:234
876
- msgid "For additional help please see the "
877
- msgstr "Weitere Hilfe befindet sich in der "
878
-
879
- # @ wpduplicator
880
- #: views/packages/new1.inc.form.php:10
881
- msgid "Create a new default name"
882
- msgstr "Erstelle einen neuen Standardnamen"
883
-
884
- # @ wpduplicator
885
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
886
- msgid "Storage"
887
- msgstr "Speicher"
888
-
889
- # @ wpduplicator
890
- #: views/packages/new1.inc.form.php:32
891
- msgid "Type"
892
- msgstr "Typ"
893
-
894
- # @ wpduplicator
895
- #: views/packages/new1.inc.form.php:33
896
- msgid "Location"
897
- msgstr "Ort"
898
-
899
- # @ wpduplicator
900
- #: views/packages/new1.inc.form.php:38
901
- msgid "Default"
902
- msgstr "Vorgabe"
903
-
904
- # @ wpduplicator
905
- #: views/packages/new1.inc.form.php:39
906
- msgid "Local"
907
- msgstr "Lokal"
908
-
909
- # @ wpduplicator
910
- #: views/packages/new1.inc.form.php:45
911
- msgid ""
912
- "All packages including the archive, installer and SQL script are stored in "
913
- "the location above. "
914
- msgstr ""
915
- "Alle Dateien einschließlich des Archivs, Installer und SQL-Skript sind im "
916
- "Ordner oberhalb gespeichert. "
917
-
918
- # @ wpduplicator
919
- #: views/packages/new1.inc.form.php:48
920
- msgid "Dropbox, FTP and other multiple storage options available in "
921
- msgstr "Dropbox, FTP und weitere Speicheroptionen sind verfügbar in "
922
-
923
- # @ wpduplicator
924
- #: views/packages/new1.inc.form.php:67
925
- msgid "File filter enabled"
926
- msgstr "Datei-Filter aktiviert"
927
-
928
- # @ wpduplicator
929
- #: views/packages/new1.inc.form.php:68
930
- msgid "Database filter enabled"
931
- msgstr "Datenbank-Filter aktiviert"
932
-
933
- # @ wpduplicator
934
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
935
- msgid "Files"
936
- msgstr "Dateien"
937
-
938
- # @ wpduplicator
939
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
940
- #: views/packages/new2.base.php:312
941
- msgid "Database"
942
- msgstr "Datenbank"
943
-
944
- # @ wpduplicator
945
- #: views/packages/new1.inc.form.php:90
946
- msgid "Enable File Filters"
947
- msgstr "Dateifilter aktivieren"
948
-
949
- # @ wpduplicator
950
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
951
- msgid "Separate all filters by semicolon"
952
- msgstr "Trenne alle Filter durch ein Semikolon"
953
-
954
- # @ wpduplicator
955
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
956
- msgid "Directories"
957
- msgstr "Verzeichnisse"
958
-
959
- # @ wpduplicator
960
- #: views/packages/new1.inc.form.php:96
961
- msgid "root path"
962
- msgstr "Root-Pfad"
963
-
964
- # @ wpduplicator
965
- #: views/packages/new1.inc.form.php:97
966
- msgid "wp-uploads"
967
- msgstr "uploads"
968
-
969
- # @ wpduplicator
970
- #: views/packages/new1.inc.form.php:98
971
- msgid "cache"
972
- msgstr "Cache"
973
-
974
- # @ wpduplicator
975
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
976
- msgid "(clear)"
977
- msgstr "(Löschen)"
978
-
979
- # @ wpduplicator
980
- #: views/packages/new1.inc.form.php:102
981
- msgid "File extensions"
982
- msgstr "Datei-Erweiterungen"
983
-
984
- # @ wpduplicator
985
- #: views/packages/new1.inc.form.php:104
986
- msgid "media"
987
- msgstr "Medien"
988
-
989
- # @ wpduplicator
990
- #: views/packages/new1.inc.form.php:105
991
- msgid "archive"
992
- msgstr "Archive"
993
-
994
- # @ wpduplicator
995
- #: views/packages/new1.inc.form.php:111
996
- msgid ""
997
- "The directory paths and extensions above will be be excluded from the "
998
- "archive file if enabled is checked."
999
- msgstr ""
1000
- "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei "
1001
- "ausgeschlossen."
1002
-
1003
- # @ wpduplicator
1004
- #: views/packages/new1.inc.form.php:112
1005
- msgid "Use the full path for directories and semicolons to separate all items."
1006
- msgstr ""
1007
- "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle "
1008
- "Elemente zu trennen."
1009
-
1010
- # @ wpduplicator
1011
- #: views/packages/new1.inc.form.php:123
1012
- msgid "Enable Table Filters"
1013
- msgstr "Tabellen-Filter aktivieren"
1014
-
1015
- # @ wpduplicator
1016
- #: views/packages/new1.inc.form.php:124
1017
- msgid "checked tables are excluded"
1018
- msgstr "Markierte Tabellen sind ausgeschlossen"
1019
-
1020
- # @ wpduplicator
1021
- #: views/packages/new1.inc.form.php:129
1022
- msgid "Include All"
1023
- msgstr "Alle einschliessen"
1024
-
1025
- # @ wpduplicator
1026
- #: views/packages/new1.inc.form.php:130
1027
- msgid "Exclude All"
1028
- msgstr "Alle ausschliessen"
1029
-
1030
- # @ wpduplicator
1031
- #: views/packages/new1.inc.form.php:163
1032
- msgid ""
1033
- "Checked tables will not be added to the database script. Excluding certain "
1034
- "tables can possibly cause your site or plugins to not work correctly after "
1035
- "install!"
1036
- msgstr ""
1037
- "Ausgewählte Tabellen werden dem Archiv nicht hinzugefügt. Ohne diese "
1038
- "Tabellen funktionieren möglicherweise die Website oder Plugins nach der "
1039
- "Installation nicht korrekt!"
1040
-
1041
- # @ default
1042
- #: views/packages/new1.inc.form.php:181
1043
- msgid "STEP 1 - INPUTS"
1044
- msgstr "Schritt 1 – Eingaben"
1045
-
1046
- # @ wpduplicator
1047
- #: views/packages/new1.inc.form.php:184
1048
- msgid "MySQL Server"
1049
- msgstr "MySQL-Server"
1050
-
1051
- # @ wpduplicator
1052
- #: views/packages/new1.inc.form.php:187
1053
- msgid "Host"
1054
- msgstr "Host"
1055
-
1056
- #: views/packages/new1.inc.form.php:191
1057
- msgid "Host Port"
1058
- msgstr "Host-Port"
1059
-
1060
- # @ wpduplicator
1061
- #: views/packages/new1.inc.form.php:203
1062
- msgid "Advanced Options"
1063
- msgstr "Erweiterte Optionen"
1064
-
1065
- # @ wpduplicator
1066
- #: views/packages/new1.inc.form.php:209
1067
- msgid "SSL"
1068
- msgstr "SSL"
1069
-
1070
- # @ wpduplicator
1071
- #: views/packages/new1.inc.form.php:212
1072
- msgid "Enforce on Admin"
1073
- msgstr "Admin erzwingen"
1074
-
1075
- # @ wpduplicator
1076
- #: views/packages/new1.inc.form.php:216
1077
- msgid "Enforce on Logins"
1078
- msgstr "Logins erzwingen"
1079
-
1080
- # @ wpduplicator
1081
- #: views/packages/new1.inc.form.php:220
1082
- msgid "Cache"
1083
- msgstr "Cache"
1084
-
1085
- # @ wpduplicator
1086
- #: views/packages/new1.inc.form.php:223
1087
- msgid "Keep Enabled"
1088
- msgstr "Aktiviert halten"
1089
-
1090
- # @ wpduplicator
1091
- #: views/packages/new1.inc.form.php:227
1092
- msgid "Keep Home Path"
1093
- msgstr "Startseite Pfad belassen"
1094
-
1095
- # @ default
1096
- #: views/packages/new1.inc.form.php:235
1097
- msgid "STEP 2 - INPUTS"
1098
- msgstr "Schritt 2 – Eingaben"
1099
-
1100
- # @ wpduplicator
1101
- #: views/packages/new1.inc.form.php:239
1102
- msgid "New URL"
1103
- msgstr "Neue URL"
1104
-
1105
- # @ wpduplicator
1106
- #: views/packages/new1.inc.form.php:245
1107
- msgid "The installer can have these fields pre-filled at install time."
1108
- msgstr ""
1109
- "Das Installationsprogramm kann diese Felder bereits vor der Installation "
1110
- "ausgefüllt haben."
1111
-
1112
- # @ wpduplicator
1113
- #: views/packages/new1.inc.form.php:245
1114
- msgid "All values are optional."
1115
- msgstr "Alle Werte sind optional."
1116
-
1117
- # @ wpduplicator
1118
- #: views/packages/new1.inc.form.php:254
1119
- msgid "Reset"
1120
- msgstr "Zurücksetzen"
1121
-
1122
- # @ wpduplicator
1123
- #: views/packages/new1.inc.form.php:255
1124
- msgid "Next"
1125
- msgstr "Weiter"
1126
-
1127
- # @ wpduplicator
1128
- #: views/packages/new1.inc.form.php:267
1129
- msgid ""
1130
- "This will reset all of the current package settings. Would you like to "
1131
- "continue?"
1132
- msgstr ""
1133
- "Dies wird alle aktuellen Archiveinstellungen zurückzusetzen. Möchtest Du "
1134
- "fortfahren?"
1135
-
1136
- # @ wpduplicator
1137
- #: views/packages/new2.base.php:64
1138
- msgid "Step 2: System Scan"
1139
- msgstr "Schritt 2: System Scan"
1140
-
1141
- # @ wpduplicator
1142
- #: views/packages/new2.base.php:81
1143
- msgid "Scanning Site"
1144
- msgstr "Scan Seite"
1145
-
1146
- # @ wpduplicator
1147
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
1148
- msgid "Please Wait..."
1149
- msgstr "Bitte warten..."
1150
-
1151
- # @ wpduplicator
1152
- #: views/packages/new2.base.php:89
1153
- msgid "Scan Complete"
1154
- msgstr "Scan vollständig"
1155
-
1156
- # @ wpduplicator
1157
- #: views/packages/new2.base.php:91
1158
- msgid ""
1159
- "Scan checks are not required to pass, however they could cause issues on "
1160
- "some systems."
1161
- msgstr ""
1162
- "Scan-Checks sind nicht unbedingt erforderlich, können jedoch auf einigen "
1163
- "Systemen Probleme verursachen."
1164
-
1165
- # @ wpduplicator
1166
- #: views/packages/new2.base.php:92
1167
- msgid "Process Time:"
1168
- msgstr "Verarbeitungs-Dauer"
1169
-
1170
- # @ wpduplicator
1171
- #: views/packages/new2.base.php:101
1172
- msgid "Server"
1173
- msgstr "Server"
1174
-
1175
- # @ wpduplicator
1176
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
1177
- msgid "Diagnostics"
1178
- msgstr "Diagnose"
1179
-
1180
- # @ wpduplicator
1181
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
1182
- #: views/tools/diagnostics.php:106
1183
- msgid "Web Server"
1184
- msgstr "Webserver"
1185
-
1186
- #: views/packages/new2.base.php:119
1187
- msgid "Supported web servers:"
1188
- msgstr "Unterstützte Webserver:"
1189
-
1190
- #: views/packages/new2.base.php:129
1191
- msgid "PHP Setup"
1192
- msgstr "PHP-Setup"
1193
-
1194
- # @ wpduplicator
1195
- #: views/packages/new2.base.php:135
1196
- msgid "Open Base Dir"
1197
- msgstr "Open Base Dir"
1198
-
1199
- #: views/packages/new2.base.php:137
1200
- msgid ""
1201
- "Issues might occur when [open_basedir] is enabled. Work with your server "
1202
- "admin to disable this value in the php.ini file if you’re having issues "
1203
- "building a package."
1204
- msgstr ""
1205
- "Es können Probleme auftreten falls [open_basedir] aktiviert ist. Für den "
1206
- "Fall, dass Du Probleme hast ein Archiv zu erstellen, kontaktiere Deinen "
1207
- "Administrator damit dieser den Wert in der php.ini Datei deaktiviert."
1208
-
1209
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
1210
- #: views/packages/new2.base.php:155
1211
- msgid "details"
1212
- msgstr "Details"
1213
-
1214
- # @ wpduplicator
1215
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
1216
- msgid "Max Execution Time"
1217
- msgstr "Maximale Ausführungs-Zeit"
1218
-
1219
- #: views/packages/new2.base.php:145
1220
- #, php-format
1221
- msgid ""
1222
- "Issues might occur for larger packages when the [max_execution_time] value "
1223
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
1224
- "seconds or higher. An attempt is made to override this value if the server "
1225
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
1226
- msgstr ""
1227
- "Es können Probleme bei größeren Archiven auftreten falls der Wert für die "
1228
- "[max_execution_time] in der php.ini zu niedrig gesetzt ist. Der kleinste "
1229
- "empfohlene Timeout-Wert liegt bei \"%1$s\" Sekunden oder mehr. Es wird ein "
1230
- "Versuch unternommen diesen Wert zu übergehen falls der Server dies erlaubt. "
1231
- "Ein Wert von 0 (empfohlen) zeigt an, dass PHP kein Zeitlimit hat."
1232
-
1233
- # @ wpduplicator
1234
- #: views/packages/new2.base.php:147
1235
- msgid ""
1236
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
1237
- "timeout passes and you still see a build interrupt messages, then your web "
1238
- "server could be killing the process. If you are limited on processing "
1239
- "time, consider using the database or file filters to shrink the size of your "
1240
- "overall package. However use caution as excluding the wrong resources can "
1241
- "cause your install to not work properly."
1242
- msgstr ""
1243
- "Hinweis: Timeouts können auch am Web-Server eingestellt werden, so dass bei "
1244
- "PHP-Timeout der Prozess abgebrochen wird. Wenn die Verarbeitungszeit "
1245
- "begrenzt ist, nutze Datenbank-oder Dateifilter, um die Größe des "
1246
- "Gesamtpakets schrumpfen. Bitte beachte, dass falsche Einstellungen dazu "
1247
- "führen können, dass die Anwendung nicht mehr richtig funktioniert."
1248
-
1249
- #: views/packages/new2.base.php:152
1250
- msgid "MySQLi"
1251
- msgstr "MySQLi"
1252
-
1253
- #: views/packages/new2.base.php:154
1254
- msgid ""
1255
- "Creating the package does not require the mysqli module. However the "
1256
- "installer.php file requires that the PHP module mysqli be installed on the "
1257
- "server it is deployed on."
1258
- msgstr ""
1259
- "Für das Erstellen eines Archivs benötigst Du nicht das MySQLi-Modul. Jedoch "
1260
- "benötigt die installer.php Datei das installierte MySQLi-Modul auf dem "
1261
- "Server auf dem das Archiv erstellt wird."
1262
-
1263
- #: views/packages/new2.base.php:164
1264
- msgid "WordPress"
1265
- msgstr "WordPress"
1266
-
1267
- # @ wpduplicator
1268
- #: views/packages/new2.base.php:169
1269
- msgid "WordPress Version"
1270
- msgstr "WordPress-Version"
1271
-
1272
- #: views/packages/new2.base.php:171
1273
- #, php-format
1274
- msgid ""
1275
- "It is recommended to have a version of WordPress that is greater than %1$s"
1276
- msgstr ""
1277
- "Es wird empfohlen eine Version von WordPress installiert zu haben die größer "
1278
- "%1$s ist"
1279
-
1280
- # @ wpduplicator
1281
- #: views/packages/new2.base.php:175
1282
- msgid "Core Files"
1283
- msgstr "Core-Dateien"
1284
-
1285
- # @ wpduplicator
1286
- #: views/packages/new2.base.php:177
1287
- msgid ""
1288
- "If the scanner is unable to locate the wp-config.php file in the root "
1289
- "directory, then you will need to manually copy it to its new location."
1290
- msgstr ""
1291
- "Wenn der Scanner die Datei wp-config.php im Root-Verzeichnis nicht findet, "
1292
- "muss sie manuell an die neue Position manuell kopiert werden."
1293
-
1294
- # @ wpduplicator
1295
- #: views/packages/new2.base.php:183
1296
- msgid "Cache Path"
1297
- msgstr "Cache-Pfad"
1298
-
1299
- #: views/packages/new2.base.php:185
1300
- msgid ""
1301
- "Cached data will lead to issues at install time and increases your archive "
1302
- "size. It is recommended to empty your cache directory at build time. Use "
1303
- "caution when removing data from the cache directory. If you have a cache "
1304
- "plugin review the documentation for how to empty it; simply removing files "
1305
- "might cause errors on your site. The cache size minimum threshold is "
1306
- "currently set at "
1307
- msgstr ""
1308
- "Gecachte Daten führen zu Problemen bei der Installation und zu einer "
1309
- "erhöhten Archiv-Größe. Es wird empfohlen das Cache-Verzeichnis vor der "
1310
- "Erstellung des Archives zu leeren. Lasse Vorsicht walten bevor Du Daten aus "
1311
- "dem Cache-Verzeichnis entfernst. Für den Fall dass Du ein Cache-Plugin "
1312
- "verwendest lies in der Anleitung nach wie Du dessen Cache sicher leerst; das "
1313
- "direkte Entfernen von Dateien kann zu Problemen mit Deiner Webseite führen. "
1314
- "Der untere Grenzwert für die Cache-Größe liegt aktuell bei "
1315
-
1316
- # @ wpduplicator
1317
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1318
- msgid "Enabled"
1319
- msgstr "Aktiviert"
1320
-
1321
- # @ wpduplicator
1322
- #: views/packages/new2.base.php:223
1323
- msgid "File Count"
1324
- msgstr "Dateianzahl"
1325
-
1326
- # @ wpduplicator
1327
- #: views/packages/new2.base.php:224
1328
- msgid "Directory Count"
1329
- msgstr "Verzeichnisanzahl"
1330
-
1331
- # @ wpduplicator
1332
- #: views/packages/new2.base.php:227
1333
- #, php-format
1334
- msgid ""
1335
- "Total size represents all files minus any filters that have been setup. The "
1336
- "current thresholds that trigger warnings are %1$s for the entire site and "
1337
- "%2$s for large files."
1338
- msgstr ""
1339
- "Die Gesamtgröße entspricht allen Dateien abzüglich der im Filter "
1340
- "festgelegten Elemente. Die aktuellen Grenzwerte, die Warnungen auslösen, "
1341
- "sind %1$s für die gesamte Site und %2$s für große Dateien."
1342
-
1343
- #: views/packages/new2.base.php:239
1344
- msgid "Name Checks"
1345
- msgstr "Namenüberprüfung"
1346
-
1347
- #: views/packages/new2.base.php:244
1348
- msgid ""
1349
- "File or directory names may cause issues when working across different "
1350
- "environments and servers. Names that are over 250 characters, contain "
1351
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1352
- "issues in a remote enviroment. It is recommended to remove or filter these "
1353
- "files before building the archive if you have issues at install time."
1354
- msgstr ""
1355
- "Datei- oder Verzeichnis-Namen können zu Problemen führen wenn in "
1356
- "unterschiedlichen Umgebungen und Servern gearbeitet wird. Namen die mehr als "
1357
- "250 Zeichen lang sind, Sonderzeichen wie z.B. * ? > < : / \\ | enthalten "
1358
- "oder aber Unicode sind können zu Problemen in entfernten Umgebungen führen. "
1359
- "Es wird empfohlen diese Dateien vor der Erstellung des Archivs zu entfernen "
1360
- "oder zu filtern, sollte es zu Problemen bei der Installation im Anschluss "
1361
- "kommen."
1362
-
1363
- # @ wpduplicator
1364
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1365
- msgid "Show Paths"
1366
- msgstr "Zeige Pfade"
1367
-
1368
- # @ wpduplicator
1369
- #: views/packages/new2.base.php:256
1370
- msgid "Large Files"
1371
- msgstr "Große Dateien"
1372
-
1373
- # @ wpduplicator
1374
- #: views/packages/new2.base.php:261
1375
- #, php-format
1376
- msgid ""
1377
- "Large files such as movies or other backuped data can cause issues with "
1378
- "timeouts. The current check for large files is %1$s per file. If your "
1379
- "having issues creating a package consider excluding these files with the "
1380
- "files filter and manually moving them to your new location."
1381
- msgstr ""
1382
- "Große Dateien wie Filme oder andere Archiv-Daten können zu Problemen mit "
1383
- "Timeouts führen. Die aktuelle Prüfung für große Dateien ist %1$s pro Datei. "
1384
- "Wenn es zu Problemen beim Erstellen des Archives kommt, bitte diese Dateien "
1385
- "mit dem Filter ausschließen und manuell auf die neue Position verschieben."
1386
-
1387
- # @ wpduplicator
1388
- #: views/packages/new2.base.php:275
1389
- msgid "View Filters"
1390
- msgstr "Filter anzeigen"
1391
-
1392
- # @ wpduplicator
1393
- #: views/packages/new2.base.php:283
1394
- msgid "No directory filters have been set."
1395
- msgstr "Es sind keine Verzeichnisfilter eingestellt."
1396
-
1397
- # @ wpduplicator
1398
- #: views/packages/new2.base.php:288
1399
- msgid "File Extensions"
1400
- msgstr "Datei-Erweiterungen"
1401
-
1402
- # @ wpduplicator
1403
- #: views/packages/new2.base.php:293
1404
- msgid "No file extension filters have been set."
1405
- msgstr "Keine Dateierweiterungs-Filter gesetzt."
1406
-
1407
- #: views/packages/new2.base.php:297
1408
- msgid ""
1409
- "The lists above are the directories and file extension that will be excluded "
1410
- "from the archive."
1411
- msgstr ""
1412
- "Die Listen darüber sind die Verzeichnisse und Dateiendungen die aus dem "
1413
- "Archiv ausgeschlossen werden."
1414
-
1415
- # @ wpduplicator
1416
- #: views/packages/new2.base.php:332
1417
- msgid "Tables"
1418
- msgstr "Tabellen"
1419
-
1420
- # @ wpduplicator
1421
- #: views/packages/new2.base.php:333
1422
- msgid "Records"
1423
- msgstr "Aufzeichnungen"
1424
-
1425
- # @ wpduplicator
1426
- #: views/packages/new2.base.php:336
1427
- msgid "repair and optimization"
1428
- msgstr "Reparatur und Optimierung"
1429
-
1430
- # @ wpduplicator
1431
- #: views/packages/new2.base.php:337
1432
- #, php-format
1433
- msgid ""
1434
- "Total size and row count for all database tables are approximate values. "
1435
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1436
- "databases take time to process and can cause issues with server timeout and "
1437
- "memory settings. Running a %3$s on your database can also help improve the "
1438
- "overall size and performance. If your server supports shell_exec and "
1439
- "mysqldump you can try to enable this option from the settings menu."
1440
- msgstr ""
1441
- "Gesamtgröße und Zeilenanzahl für alle Datenbank-Tabellen sind Richtwerte. "
1442
- "Die Schwellenwerte, die Warnungen auslösen, sind %1$s und %2$s Datensätze. "
1443
- "Große Datenbanken benötigen mehr Zeit bei der Verarbeitung und können zu "
1444
- "Problemen mit Server-Timeout und Speichereinstellungen führen. Ausführen "
1445
- "einer %3$s auf der Datenbank können auch dazu beitragen, die Gesamtgröße und "
1446
- "Leistung zu verbessern. Wenn der Server shell_exec und mysqldump "
1447
- "unterstützt, kannst du versuchen, diese Option aus dem Menü Einstellungen zu "
1448
- "aktivieren."
1449
-
1450
- # @ wpduplicator
1451
- #: views/packages/new2.base.php:349
1452
- msgid "Table Details"
1453
- msgstr "Tabellen-Details"
1454
-
1455
- # @ wpduplicator
1456
- #: views/packages/new2.base.php:360
1457
- msgid "Name:"
1458
- msgstr "Name:"
1459
-
1460
- # @ wpduplicator
1461
- #: views/packages/new2.base.php:361
1462
- msgid "Host:"
1463
- msgstr "Host:"
1464
-
1465
- # @ wpduplicator
1466
- #: views/packages/new2.base.php:362
1467
- msgid "Build Mode:"
1468
- msgstr "Erstellungs-Modus:"
1469
-
1470
- # @ wpduplicator
1471
- #: views/packages/new2.base.php:373
1472
- msgid "Scan Error"
1473
- msgstr "Scan Fehler"
1474
-
1475
- # @ wpduplicator
1476
- #: views/packages/new2.base.php:374
1477
- msgid "Please try again!"
1478
- msgstr "Bitte nochmals versuchen!"
1479
-
1480
- # @ wpduplicator
1481
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1482
- msgid "Server Status:"
1483
- msgstr "Server Status:"
1484
-
1485
- # @ wpduplicator
1486
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1487
- msgid "Error Message:"
1488
- msgstr "Fehler-Meldung:"
1489
-
1490
- # @ wpduplicator
1491
- #: views/packages/new2.base.php:386
1492
- msgid "Back"
1493
- msgstr "Zurück"
1494
-
1495
- # @ wpduplicator
1496
- #: views/packages/new2.base.php:387
1497
- msgid "Rescan"
1498
- msgstr "Erneuter Scan"
1499
-
1500
- # @ wpduplicator
1501
- #: views/packages/new2.base.php:486
1502
- msgid "Unable to report on any tables"
1503
- msgstr "Kein Bericht über die Tabellen"
1504
-
1505
- # @ wpduplicator
1506
- #: views/packages/new2.base.php:495
1507
- msgid "Unable to report on database stats"
1508
- msgstr "Kein Bericht zum Datenbank-Status"
1509
-
1510
- #: views/packages/new2.base.php:514
1511
- msgid "DIR"
1512
- msgstr "DIR"
1513
-
1514
- # @ wpduplicator
1515
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1516
- msgid "FILE"
1517
- msgstr "Datei"
1518
-
1519
- #: views/packages/new2.base.php:523
1520
- msgid "No name warning issues found."
1521
- msgstr "Es sind keine Probleme bei der Namensüberprüfung aufgetreten."
1522
-
1523
- # @ wpduplicator
1524
- #: views/packages/new2.base.php:529
1525
- msgid "No large files found."
1526
- msgstr "Keine großen Dateien gefunden."
1527
-
1528
- # @ wpduplicator
1529
- #: views/packages/new3.base.php:38
1530
- msgid "Step 3: Build Package"
1531
- msgstr "Schritt 3: Archiv erstellen"
1532
-
1533
- # @ wpduplicator
1534
- #: views/packages/new3.base.php:55
1535
- msgid "Building Package"
1536
- msgstr "Archiv erstellen"
1537
-
1538
- # @ wpduplicator
1539
- #: views/packages/new3.base.php:58
1540
- msgid "Keep this window open during the build process."
1541
- msgstr "Lass dieses Fenster während der Archiv-Erstellung geöffnet."
1542
-
1543
- # @ wpduplicator
1544
- #: views/packages/new3.base.php:59
1545
- msgid "This may take several minutes."
1546
- msgstr "Dies kann einige Minuten dauern."
1547
-
1548
- # @ wpduplicator
1549
- #: views/packages/new3.base.php:63
1550
- msgid "Build Status"
1551
- msgstr "Erstellungs-Status"
1552
-
1553
- # @ wpduplicator
1554
- #: views/packages/new3.base.php:70
1555
- msgid "Package Completed"
1556
- msgstr "Archiv komplett"
1557
-
1558
- # @ wpduplicator
1559
- #: views/packages/new3.base.php:75
1560
- msgid "Process Time"
1561
- msgstr "Verarbeitungszeit"
1562
-
1563
- # @ wpduplicator
1564
- #: views/packages/new3.base.php:100
1565
- msgid "Build Interrupt"
1566
- msgstr "Erstellung unterbrochen"
1567
-
1568
- # @ wpduplicator
1569
- #: views/packages/new3.base.php:101
1570
- msgid "The current build has experienced an issue."
1571
- msgstr "Die aktuelle Version hat ein Problem."
1572
-
1573
- # @ wpduplicator
1574
- #: views/packages/new3.base.php:103
1575
- msgid "Please try the process again."
1576
- msgstr "Bitte versuche den Vorgang erneut."
1577
-
1578
- # @ wpduplicator
1579
- #: views/packages/new3.base.php:105
1580
- msgid "Diagnose"
1581
- msgstr "Diagnose"
1582
-
1583
- # @ wpduplicator
1584
- #: views/packages/new3.base.php:106
1585
- msgid "Try Again"
1586
- msgstr "Nochmals versuchen"
1587
-
1588
- # @ wpduplicator
1589
- #: views/packages/new3.base.php:122
1590
- msgid "Notice"
1591
- msgstr "Anmerkung"
1592
-
1593
- # @ default
1594
- #: views/packages/new3.base.php:125
1595
- msgid "Build Folder:"
1596
- msgstr "Erstellungs-Verzeichnis:"
1597
-
1598
- # @ wpduplicator
1599
- #: views/packages/new3.base.php:127
1600
- msgid ""
1601
- "Some servers close connections quickly; yet the build can continue to run in "
1602
- "the background. To validate if a build is still running; open the 'tmp' "
1603
- "folder above and see if the archive file is growing in size. If it is not "
1604
- "then your server has strict timeout constraints. Please visit the support "
1605
- "page for additional resources."
1606
- msgstr ""
1607
- "Einige Server schließen die Verbindungen schnell, doch die Erstellung kann "
1608
- "auch weiterhin im Hintergrund laufen. Um zu prüfen ob derProzess noch läuft, "
1609
- "öffnen den 'tmp'-Ordner um zu sehen, ob die Archivdatei in der Größe wächst. "
1610
- "Wenn nicht, hat der Server strenge Beschränkungen im Timeout. Bitte besuche "
1611
- "die Support-Seite für weitere Lösungen."
1612
-
1613
- # @ wpduplicator
1614
- #: views/packages/new3.base.php:136
1615
- msgid "Package Log"
1616
- msgstr "Archiv Log"
1617
-
1618
- # @ wpduplicator
1619
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1620
- msgid "General"
1621
- msgstr "Allgemein"
1622
-
1623
- # @ wpduplicator
1624
- #: views/settings/general.php:6
1625
- msgid "Settings Saved"
1626
- msgstr "Einstellungen gespeichert"
1627
-
1628
- # @ wpduplicator
1629
- #: views/settings/general.php:75
1630
- msgid "Plugin"
1631
- msgstr "Plugin"
1632
-
1633
- # @ wpduplicator
1634
- #: views/settings/general.php:83
1635
- msgid "Uninstall"
1636
- msgstr "Deinstallieren"
1637
-
1638
- # @ wpduplicator
1639
- #: views/settings/general.php:86
1640
- msgid "Delete Plugin Settings"
1641
- msgstr "Plugin-Einstellungen löschen"
1642
-
1643
- # @ wpduplicator
1644
- #: views/settings/general.php:89
1645
- msgid "Delete Entire Storage Directory"
1646
- msgstr "Speicher-Verzeichnisse vollständig löschen"
1647
-
1648
- # @ wpduplicator
1649
- #: views/settings/general.php:96
1650
- msgid "Full Path"
1651
- msgstr "Vollständiger Pfad"
1652
-
1653
- # @ wpduplicator
1654
- #: views/settings/general.php:99
1655
- msgid "Disable .htaccess File In Storage Directory"
1656
- msgstr ".htaccess-Datei im Speicher-Verzeichnis deaktivieren"
1657
-
1658
- # @ wpduplicator
1659
- #: views/settings/general.php:101
1660
- msgid "Disable if issues occur when downloading installer/archive files."
1661
- msgstr ""
1662
- "Deaktivieren, wenn beim Download von Installer / Archivdateien Probleme "
1663
- "auftreten."
1664
-
1665
- # @ wpduplicator
1666
- #: views/settings/general.php:114
1667
- msgid "Archive Flush"
1668
- msgstr "Archiv erstellen"
1669
-
1670
- # @ wpduplicator
1671
- #: views/settings/general.php:117
1672
- msgid "Attempt Network Keep Alive"
1673
- msgstr ""
1674
- "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu "
1675
- "etablieren"
1676
-
1677
- # @ wpduplicator
1678
- #: views/settings/general.php:118
1679
- msgid "recommended only for large archives"
1680
- msgstr "nur empfohlen für große Archive"
1681
-
1682
- # @ wpduplicator
1683
- #: views/settings/general.php:120
1684
- msgid ""
1685
- "This will attempt to keep a network connection established for large "
1686
- "archives."
1687
- msgstr ""
1688
- "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu "
1689
- "etablieren."
1690
-
1691
- # @ wpduplicator
1692
- #: views/settings/general.php:125
1693
- msgid "Database Build"
1694
- msgstr "Datenbank erstellen"
1695
-
1696
- # @ wpduplicator
1697
- #: views/settings/general.php:128
1698
- msgid "Use PHP"
1699
- msgstr "Benutze PHP"
1700
-
1701
- # @ wpduplicator
1702
- #: views/settings/general.php:131
1703
- msgid "Query Limit Size"
1704
- msgstr "Abfragelimit-Größe"
1705
-
1706
- # @ wpduplicator
1707
- #: views/settings/general.php:140
1708
- msgid "higher values speed up build times but uses more memory"
1709
- msgstr ""
1710
- "Höhere Werte beschleunigen die Erstellung, aber sie benötigen mehr Speicher"
1711
-
1712
- # @ wpduplicator
1713
- #: views/settings/general.php:147
1714
- msgid "This server does not have shell_exec configured to run."
1715
- msgstr "Dieser Server ist nicht zur Ausführung von shell_exec konfiguriert."
1716
-
1717
- # @ wpduplicator
1718
- #: views/settings/general.php:149
1719
- msgid "Please contact the server administrator to enable this feature."
1720
- msgstr ""
1721
- "Bitte kontaktiere den Server-Administrator, um diese Funktion zu aktivieren."
1722
-
1723
- # @ wpduplicator
1724
- #: views/settings/general.php:154
1725
- msgid "Use mysqldump"
1726
- msgstr "Benutze mysqldump"
1727
-
1728
- # @ wpduplicator
1729
- #: views/settings/general.php:155
1730
- msgid "recommended for large databases"
1731
- msgstr "für große Datenbanken empfohlen"
1732
-
1733
- # @ wpduplicator
1734
- #: views/settings/general.php:160
1735
- msgid "Working Path:"
1736
- msgstr "Arbeits-Pfad"
1737
-
1738
- # @ wpduplicator
1739
- #: views/settings/general.php:166
1740
- msgid ""
1741
- "Mysqldump was not found at its default location or the location provided. "
1742
- "Please enter a path to a valid location where mysqldump can run. If the "
1743
- "problem persist contact your server administrator."
1744
- msgstr ""
1745
- "Mysqldump wurde nicht an der Standardposition gefunden. Bitte gib den Pfad "
1746
- "zu einem gültigen Ort ein, an dem mysqldump ausgeführt werden kann. Sollte "
1747
- "das Problem bestehen bleiben, kontaktiere den Server-Administrator."
1748
-
1749
- # @ wpduplicator
1750
- #: views/settings/general.php:171
1751
- msgid "Add Custom Path:"
1752
- msgstr "Benutzer-Pfad hinzufügen"
1753
-
1754
- # @ wpduplicator
1755
- #: views/settings/general.php:175
1756
- msgid "This is the path to your mysqldump program."
1757
- msgstr "Das ist der Pfad zu deinem mysqldump-Programm."
1758
-
1759
- # @ wpduplicator
1760
- #: views/settings/general.php:184
1761
- msgid "Package Debug"
1762
- msgstr "Fehlerbeseitigung Archiv"
1763
-
1764
- # @ wpduplicator
1765
- #: views/settings/general.php:187
1766
- msgid "Show Package Debug Status in Packages Screen"
1767
- msgstr "Zeige Fehlerstatus des Archives in der Anzeige"
1768
-
1769
- # @ wpduplicator
1770
- #: views/settings/general.php:195
1771
- msgid "Roles & Capabilities"
1772
- msgstr "Rollen & Funktionen"
1773
-
1774
- # @ wpduplicator
1775
- #: views/settings/general.php:200
1776
- msgid "Custom Roles"
1777
- msgstr "Benutzerdefinierte Rollen"
1778
-
1779
- # @ wpduplicator
1780
- #: views/settings/general.php:203
1781
- msgid "Enable User Role Editor Plugin Integration"
1782
- msgstr "Ermöglicht User Role Editor Plugin Integration"
1783
-
1784
- # @ wpduplicator
1785
- #: views/settings/general.php:210
1786
- msgid "The User Role Editor Plugin"
1787
- msgstr "Das User Role Editor Plugin"
1788
-
1789
- # @ wpduplicator
1790
- #: views/settings/general.php:211
1791
- msgid "Free"
1792
- msgstr "Free"
1793
-
1794
- # @ wpduplicator
1795
- #: views/settings/general.php:212
1796
- msgid "or"
1797
- msgstr "oder"
1798
-
1799
- # @ wpduplicator
1800
- #: views/settings/general.php:213
1801
- msgid "Professional"
1802
- msgstr "Professional"
1803
-
1804
- # @ wpduplicator
1805
- #: views/settings/general.php:214
1806
- msgid "must be installed to use"
1807
- msgstr "muss installiert werden zur Benutzung"
1808
-
1809
- # @ wpduplicator
1810
- #: views/settings/general.php:215
1811
- msgid "this feature."
1812
- msgstr "dieser Option."
1813
-
1814
- # @ wpduplicator
1815
- #: views/settings/general.php:227
1816
- msgid "Save Settings"
1817
- msgstr "Einstellungen speichern"
1818
-
1819
- # @ wpduplicator
1820
- #: views/tools/cleanup.php:8
1821
- msgid "Installer File Cleanup Ran."
1822
- msgstr "Installations-Dateien gelöscht."
1823
-
1824
- # @ wpduplicator
1825
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1826
- msgid "Legacy data removed."
1827
- msgstr "Daten entfernt."
1828
-
1829
- # @ wpduplicator
1830
- #: views/tools/cleanup.php:16
1831
- msgid "Build cache removed."
1832
- msgstr "Cache-Dateien entfernt"
1833
-
1834
- # @ wpduplicator
1835
- #: views/tools/cleanup.php:73
1836
- msgid ""
1837
- "If the installer files did not successfully get removed, then you WILL need "
1838
- "to remove them manually"
1839
- msgstr ""
1840
- "Wenn die Installationsdateien nicht vollständig erfolgreich entfernt wurden, "
1841
- "dann müssen sie manuell gelöscht werden"
1842
-
1843
- # @ wpduplicator
1844
- #: views/tools/cleanup.php:74
1845
- msgid ""
1846
- "Please remove all installer files to avoid leaving open security issues on "
1847
- "your server"
1848
- msgstr ""
1849
- "Bitte entferne alle Installationsdateien aus Sicherheitsgründen von deinem "
1850
- "Server"
1851
-
1852
- # @ wpduplicator
1853
- #: views/tools/cleanup.php:82
1854
- msgid "Data Cleanup"
1855
- msgstr "Daten gelöscht"
1856
-
1857
- # @ wpduplicator
1858
- #: views/tools/cleanup.php:85
1859
- msgid "Delete Reserved Files"
1860
- msgstr "Lösche reservierte Dateien"
1861
-
1862
- # @ wpduplicator
1863
- #: views/tools/cleanup.php:86
1864
- msgid "Removes all installer files from a previous install"
1865
- msgstr "Entferne alle Installations-Dateien der früheren Installation."
1866
-
1867
- # @ wpduplicator
1868
- #: views/tools/cleanup.php:89
1869
- msgid "Delete Legacy Data"
1870
- msgstr "Lösche übernommene Daten"
1871
-
1872
- # @ wpduplicator
1873
- #: views/tools/cleanup.php:90
1874
- msgid "Removes all legacy data and settings prior to version"
1875
- msgstr "Entfernt alle übernommenen Daten und Einstellungen vor Version"
1876
-
1877
- # @ wpduplicator
1878
- #: views/tools/cleanup.php:93
1879
- msgid "Clear Build Cache"
1880
- msgstr "Cache löschen"
1881
-
1882
- # @ wpduplicator
1883
- #: views/tools/cleanup.php:94
1884
- msgid "Removes all build data from:"
1885
- msgstr "Entferne alle Daten von:"
1886
-
1887
- # @ wpduplicator
1888
- #: views/tools/cleanup.php:107
1889
- #, php-format
1890
- msgid "This action will remove all legacy settings prior to version %1$s. "
1891
- msgstr ""
1892
- "Diese Aktion wird alle alten Einstellungen vor Version %1$s entfernen. "
1893
-
1894
- # @ wpduplicator
1895
- #: views/tools/cleanup.php:108
1896
- msgid ""
1897
- "Legacy settings are only needed if you plan to migrate back to an older "
1898
- "version of this plugin."
1899
- msgstr ""
1900
- "Frühere Einstellungen werden nur benötigt, wenn du zu einer älteren Version "
1901
- "des Plugins zurückgehst."
1902
-
1903
- # @ wpduplicator
1904
- #: views/tools/cleanup.php:120
1905
- msgid ""
1906
- "This process will remove all build cache files. Be sure no packages are "
1907
- "currently building or else they will be cancelled."
1908
- msgstr ""
1909
- "Dieser Vorgang wird alle erstellten Cache-Dateien entfernen. Bitte stelle "
1910
- "sicher, dass derzeit keine neuen Cache-Dateien erstellt werden."
1911
-
1912
- # @ wpduplicator
1913
- #: views/tools/controller.php:16
1914
- msgid "Logging"
1915
- msgstr "Logging"
1916
-
1917
- # @ wpduplicator
1918
- #: views/tools/controller.php:18
1919
- msgid "Cleanup"
1920
- msgstr "Löschen"
1921
-
1922
- # @ wpduplicator
1923
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1924
- msgid "unknow"
1925
- msgstr "unbekannt"
1926
-
1927
- # @ wpduplicator
1928
- #: views/tools/diagnostics.php:39
1929
- msgid "Plugin settings reset."
1930
- msgstr "Plugin-Einstellungen zurücksetzen."
1931
-
1932
- # @ wpduplicator
1933
- #: views/tools/diagnostics.php:40
1934
- msgid "View state settings reset."
1935
- msgstr "Statuseinstellungen zurücksetzen."
1936
-
1937
- # @ wpduplicator
1938
- #: views/tools/diagnostics.php:41
1939
- msgid "Active package settings reset."
1940
- msgstr "Aktive Archiv-Einstellungen zurücksetzen."
1941
-
1942
- # @ wpduplicator
1943
- #: views/tools/diagnostics.php:81
1944
- msgid "Server Settings"
1945
- msgstr "Server-Einstellungen"
1946
-
1947
- # @ wpduplicator
1948
- #: views/tools/diagnostics.php:90
1949
- msgid "Duplicator Version"
1950
- msgstr "Duplicator-Version"
1951
-
1952
- # @ wpduplicator
1953
- #: views/tools/diagnostics.php:94
1954
- msgid "Operating System"
1955
- msgstr "Betriebs-System"
1956
-
1957
- # @ wpduplicator
1958
- #: views/tools/diagnostics.php:98
1959
- msgid "Timezone"
1960
- msgstr "Zeitzone"
1961
-
1962
- # @ wpduplicator
1963
- #: views/tools/diagnostics.php:102
1964
- msgid "Server Time"
1965
- msgstr "Serverzeit"
1966
-
1967
- # @ wpduplicator
1968
- #: views/tools/diagnostics.php:110
1969
- msgid "APC Enabled"
1970
- msgstr "APC Aktiviert"
1971
-
1972
- # @ wpduplicator
1973
- #: views/tools/diagnostics.php:114
1974
- msgid "Root Path"
1975
- msgstr "Root-Pfad"
1976
-
1977
- # @ wpduplicator
1978
- #: views/tools/diagnostics.php:118
1979
- msgid "ABSPATH"
1980
- msgstr "ABSPATH"
1981
-
1982
- # @ wpduplicator
1983
- #: views/tools/diagnostics.php:122
1984
- msgid "Plugins Path"
1985
- msgstr "Plugin-Pfad"
1986
-
1987
- # @ wpduplicator
1988
- #: views/tools/diagnostics.php:126
1989
- msgid "Loaded PHP INI"
1990
- msgstr "Geladene PHP-INI"
1991
-
1992
- # @ wpduplicator
1993
- #: views/tools/diagnostics.php:130
1994
- msgid "Server IP"
1995
- msgstr "Server-IP"
1996
-
1997
- # @ wpduplicator
1998
- #: views/tools/diagnostics.php:134
1999
- msgid "Client IP"
2000
- msgstr "Client-IP"
2001
-
2002
- # @ wpduplicator
2003
- #: views/tools/diagnostics.php:145
2004
- msgid "Langugage"
2005
- msgstr "Sprache"
2006
-
2007
- # @ wpduplicator
2008
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
2009
- msgid "Charset"
2010
- msgstr "Zeichensatz"
2011
-
2012
- # @ wpduplicator
2013
- #: views/tools/diagnostics.php:153
2014
- msgid "Memory Limit "
2015
- msgstr "Speicher-Limit "
2016
-
2017
- # @ wpduplicator
2018
- #: views/tools/diagnostics.php:154
2019
- msgid "Max"
2020
- msgstr "Max"
2021
-
2022
- # @ wpduplicator
2023
- #: views/tools/diagnostics.php:172
2024
- msgid "Safe Mode"
2025
- msgstr "Safe Mode"
2026
-
2027
- # @ wpduplicator
2028
- #: views/tools/diagnostics.php:176
2029
- msgid "On"
2030
- msgstr "An"
2031
-
2032
- # @ wpduplicator
2033
- #: views/tools/diagnostics.php:176
2034
- msgid "Off"
2035
- msgstr "Aus"
2036
-
2037
- # @ wpduplicator
2038
- #: views/tools/diagnostics.php:181
2039
- msgid "Memory Limit"
2040
- msgstr "Speicher-Limit"
2041
-
2042
- # @ wpduplicator
2043
- #: views/tools/diagnostics.php:185
2044
- msgid "Memory In Use"
2045
- msgstr "Verwendeter Arbeitsspeicher"
2046
-
2047
- # @ wpduplicator
2048
- #: views/tools/diagnostics.php:193
2049
- msgid "Shell Exec"
2050
- msgstr "Shell Exec"
2051
-
2052
- # @ wpduplicator
2053
- #: views/tools/diagnostics.php:194
2054
- msgid "Is Supported"
2055
- msgstr "Wird unterstützt"
2056
-
2057
- # @ wpduplicator
2058
- #: views/tools/diagnostics.php:194
2059
- msgid "Not Supported"
2060
- msgstr "Nicht unterstützt"
2061
-
2062
- # @ wpduplicator
2063
- #: views/tools/diagnostics.php:208
2064
- msgid "Wait Timeout"
2065
- msgstr "Wartezeitsperre"
2066
-
2067
- # @ wpduplicator
2068
- #: views/tools/diagnostics.php:212
2069
- msgid "Max Allowed Packets"
2070
- msgstr "Maximal erlaubte Pakete"
2071
-
2072
- # @ wpduplicator
2073
- #: views/tools/diagnostics.php:216
2074
- msgid "msyqldump Path"
2075
- msgstr "msyqldump Pfad"
2076
-
2077
- # @ wpduplicator
2078
- #: views/tools/diagnostics.php:220
2079
- msgid "Server Disk"
2080
- msgstr "Server-Festplatte"
2081
-
2082
- # @ hyper-cache
2083
- #: views/tools/diagnostics.php:223
2084
- msgid "Free space"
2085
- msgstr "Freier Speicherplatz"
2086
-
2087
- # @ wpduplicator
2088
- #: views/tools/diagnostics.php:226
2089
- msgid "Note: This value is the physical servers hard-drive allocation."
2090
- msgstr "Hinweis: Dieser Wert ist die physische Server-Festplatte-Verteilung."
2091
-
2092
- # @ wpduplicator
2093
- #: views/tools/diagnostics.php:227
2094
- msgid ""
2095
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
2096
- "value."
2097
- msgstr ""
2098
- "Überprüfe auf freigegebenen Hosts deines Control Panels für den 'TRUE' Disk "
2099
- "Space Quote Wert."
2100
-
2101
- # @ wpduplicator
2102
- #: views/tools/diagnostics.php:243
2103
- msgid "Stored Data"
2104
- msgstr "Gespeicherte Daten"
2105
-
2106
- # @ wpduplicator
2107
- #: views/tools/diagnostics.php:248
2108
- msgid "Options Values"
2109
- msgstr "Options Werte"
2110
-
2111
- # @ wpduplicator
2112
- #: views/tools/diagnostics.php:281
2113
- msgid "PHP Information"
2114
- msgstr "PHP-Information"
2115
-
2116
- # @ wpduplicator
2117
- #: views/tools/diagnostics.php:300
2118
- msgid "Delete this option value"
2119
- msgstr "Lösche den optionalen Wert"
2120
-
2121
- # @ wpduplicator
2122
- #: views/tools/logging.php:140
2123
- msgid "Log file not found or unreadable"
2124
- msgstr "Log-Datei nicht gefunden oder nicht lesbar"
2125
-
2126
- # @ wpduplicator
2127
- #: views/tools/logging.php:142
2128
- msgid ""
2129
- "Try to create a package, since no log files were found in the snapshots "
2130
- "directory with the extension *.log"
2131
- msgstr ""
2132
- "Versuche ein Archiv zu erstellen, da keine Log-Dateien im Snapshots-"
2133
- "Verzeichnis mit der Endung *. Log gefunden wurden"
2134
-
2135
- # @ wpduplicator
2136
- #: views/tools/logging.php:144
2137
- msgid "Reasons for log file not showing"
2138
- msgstr "Die Gründe für die Log-Datei werden nicht angezeigt"
2139
-
2140
- # @ wpduplicator
2141
- #: views/tools/logging.php:145
2142
- msgid "The web server does not support returning .log file extentions"
2143
- msgstr "Der Webserver unterstützt keine .log-Datei-Erweiterungen"
2144
-
2145
- # @ wpduplicator
2146
- #: views/tools/logging.php:146
2147
- msgid ""
2148
- "The snapshots directory does not have the correct permissions to write "
2149
- "files. Try setting the permissions to 755"
2150
- msgstr ""
2151
- "In das Verzeichnis wp-snapshots kann nicht geschrieben werden. Bitte setze "
2152
- "die Berechtigung auf 755"
2153
-
2154
- # @ wpduplicator
2155
- #: views/tools/logging.php:147
2156
- msgid ""
2157
- "The process that PHP runs under does not have enough permissions to create "
2158
- "files. Please contact your hosting provider for more details"
2159
- msgstr ""
2160
- "Der Prozess hat nicht genügend Berechtigungen, um Dateien zu erstellen. "
2161
- "Bitte kontaktiere deinen Hosting-Provider für weitere Informationen"
2162
-
2163
- # @ wpduplicator
2164
- #: views/tools/logging.php:156 views/tools/logging.php:161
2165
- msgid "Options"
2166
- msgstr "Optionen"
2167
-
2168
- # @ wpduplicator
2169
- #: views/tools/logging.php:163
2170
- msgid "Refresh"
2171
- msgstr "Neu laden"
2172
-
2173
- # @ wpduplicator
2174
- #: views/tools/logging.php:168
2175
- msgid "Auto Refresh"
2176
- msgstr "Automatisch neu laden"
2177
-
2178
- # @ wpduplicator
2179
- #: views/tools/logging.php:174
2180
- msgid "Last 20 Logs"
2181
- msgstr "Letzte 20 Logs"
2182
-
2183
- #. Plugin Name of the plugin/theme
2184
- msgid "Duplicator"
2185
- msgstr "Duplicator"
2186
-
2187
- #. Plugin URI of the plugin/theme
2188
- msgid "http://www.lifeinthegrid.com/duplicator/"
2189
- msgstr "http://www.lifeinthegrid.com/duplicator/"
2190
-
2191
- #. Description of the plugin/theme
2192
- msgid ""
2193
- "Create a backup of your WordPress files and database. Duplicate and move an "
2194
- "entire site from one location to another in a few steps. Create a full "
2195
- "snapshot of your site at any point in time."
2196
- msgstr ""
2197
- "Erstelle eine Sicherungskopie Deiner WordPress-Dateien und der Datenbank. "
2198
- "Dupliziere und verschiebe in nur wenigen Schritten eine komplette Webseite "
2199
- "von einem Ort an einen Anderen. Erstelle einen vollständigen Snapshot Deiner "
2200
- "Webseite zu jedem beliebigen Zeitpunkt."
2201
-
2202
- #. Author of the plugin/theme
2203
- msgid "LifeInTheGrid"
2204
- msgstr "LifeInTheGrid"
2205
-
2206
- #. Author URI of the plugin/theme
2207
- msgid "http://www.lifeinthegrid.com"
2208
- msgstr "http://www.lifeinthegrid.com"
2209
-
2210
- # @ wpduplicator
2211
- #~ msgid "Invalid Names"
2212
- #~ msgstr "Ungültige Namen"
2213
-
2214
- # @ wpduplicator
2215
- #~ msgid ""
2216
- #~ "Invalid file or folder names can cause issues when extracting an archive "
2217
- #~ "across different environments. Invalid file names consist of lengths "
2218
- #~ "over 250 characters and illegal characters that may not work on all "
2219
- #~ "operating systems such as * ? > < : / \\ | . It is recommended to "
2220
- #~ "remove or filter these files before building the archive or else you "
2221
- #~ "might have issues at install time."
2222
- #~ msgstr ""
2223
- #~ "Ungültige Datei-oder Ordnernamen können bei einigen Umgebungen zu "
2224
- #~ "Problemen führen. Ungültige Dateinamen bestehen aus Längen über 250 "
2225
- #~ "Zeichen und illegalen Zeichen, die nicht auf allen Betriebssystemen wie "
2226
- #~ "* ? > < : / \\ | arbeiten können. Es wird empfohlen, diese Dateien vor "
2227
- #~ "dem Erstellen des Archivs zu entfernen oder durch Filtereinstellungen "
2228
- #~ "auszublenden."
2229
-
2230
- # @ wpduplicator
2231
- #~ msgid "No name length issues."
2232
- #~ msgstr "Keine lange oder ungültige Namen."
2233
-
2234
- # @ wpduplicator
2235
- #~ msgid "PHP Settings"
2236
- #~ msgstr "PHP-Einstellungen"
2237
-
2238
- # @ wpduplicator
2239
- #~ msgid ""
2240
- #~ "The Duplicator may have issues when [open_basedir] is enabled. Please "
2241
- #~ "work with your server administrator to disable this value in the php.ini "
2242
- #~ "file if you’re having issues building a package."
2243
- #~ msgstr ""
2244
- #~ "Der Duplicator kann Probleme haben, wenn [open_basedir] aktiviert ist. "
2245
- #~ "Bitte frage den Server-Administrator, ob dieser Wert in der php.ini-Datei "
2246
- #~ "deaktiviert werden kann."
2247
-
2248
- # @ wpduplicator
2249
- #~ msgid ""
2250
- #~ "The Duplicator will have issues when the [max_execution_time] value in "
2251
- #~ "the php.ini is low. Timeouts effect how long a process is allowed to "
2252
- #~ "run. The recommended timeout is \"%1$s\" seconds. An attempt is made to "
2253
- #~ "override this value if the server allows it. Please work with your "
2254
- #~ "server administrator to make sure there are no restrictions for how long "
2255
- #~ "a PHP process is allowed to run."
2256
- #~ msgstr ""
2257
- #~ "Der Duplicator wird Probleme haben, wenn der Wert [max_execution_time] in "
2258
- #~ "der php.ini ist gering. Der Timeout-Wert gibt an, wie lange ein Prozess "
2259
- #~ "ausgeführt werden darf. Die empfohlene Timeout ist \"%1$s\" Sekunden. Es "
2260
- #~ "wird versucht, diesen Wert zu überschreiben, wenn es der Server erlaubt. "
2261
- #~ "Bitte frage den Server-Administrator nach den Einschränkungen für den PHP-"
2262
- #~ "Prozess."
2263
-
2264
- # @ wpduplicator
2265
- #~ msgid "The Duplicator currently works with these web servers:"
2266
- #~ msgstr "Der Duplicator arbeitet derzeit mit diesen Web-Servern:"
2267
-
2268
- # @ wpduplicator
2269
- #~ msgid "WordPress Settings"
2270
- #~ msgstr "WordPress-Einstellungen"
2271
-
2272
- # @ wpduplicator
2273
- #~ msgid ""
2274
- #~ "It is recommended to have a version of WordPress that is greater that "
2275
- #~ msgstr "Es wird empfohlen, eine höhere Version von Wordpress zu nutzen: "
2276
-
2277
- # @ wpduplicator
2278
- #~ msgid "Found"
2279
- #~ msgstr "Gefunden"
2280
-
2281
- # @ wpduplicator
2282
- #~ msgid "Missing"
2283
- #~ msgstr "Vermisst"
2284
-
2285
- # @ wpduplicator
2286
- #~ msgid ""
2287
- #~ "Cached data will lead to issues at install time and increases your "
2288
- #~ "archive size. It is recommended to empty your cache directory at build "
2289
- #~ "time. Use caution when removing data from the cache directory. If you "
2290
- #~ "have a cache plugin review the documentation for how to empty it; simply "
2291
- #~ "removing files might cause errors on your site."
2292
- #~ msgstr ""
2293
- #~ "Cache-Daten werden zu Probleme bei der Installation führen und erhöhen "
2294
- #~ "die Archivgröße. Es wird empfohlen, das Cache-Verzeichnis bei der "
2295
- #~ "Erstellung zu leeren. Vorsicht beim Entfernen von Daten aus dem Cache-"
2296
- #~ "Verzeichnis. Beachte die Dokumentation des Cache-Plugins zum entleeren. "
2297
- #~ "Das einfache Entfernen von Dateien kann möglicherweise zu Fehlern auf der "
2298
- #~ "Website führen. "
2299
-
2300
- # @ wpduplicator
2301
- #~ msgid "The cache size minimum threshold is currently set at "
2302
- #~ msgstr "Die minimale Cache-Schwelle ist derzeit festgelegt auf "
2303
-
2304
- # @ wpduplicator
2305
- #~ msgid ""
2306
- #~ "Below is a list of the directories and file extension that will be "
2307
- #~ "excluded from the archive."
2308
- #~ msgstr ""
2309
- #~ "Unten ist eine Liste der Verzeichnisse und Dateierweiterung, die aus dem "
2310
- #~ "Archiv ausgeschlossen werden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wpduplicator-fa_IR.mo DELETED
Binary file
lang/wpduplicator-fa_IR.po DELETED
@@ -1,1808 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPDuplicator v0.5.23\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
5
- "POT-Creation-Date: 2015-07-26 23:54+0200\n"
6
- "PO-Revision-Date: 2015-07-26 23:54+0200\n"
7
- "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
8
- "Language-Team: Amoozesh98.com <Amoozesh98@gmail.com | Info@Amoozesh98.com>\n"
9
- "Language: fa_IR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.2\n"
14
- "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Textdomain-Support: yes\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: assets\n"
24
-
25
- #: classes/ui.php:111
26
- msgid ""
27
- "Reserved Duplicator install file(s) still exists in the root directory. "
28
- "Please delete these file(s) to avoid possible security issues."
29
- msgstr ""
30
-
31
- #: classes/ui.php:112
32
- msgid "Remove file(s) now"
33
- msgstr "پاک کردن پرونده"
34
-
35
- #: classes/ui.php:113
36
- msgid "Dismiss this notice"
37
- msgstr "نمایش ندادن این پیام"
38
-
39
- #: classes/utility.php:249
40
- msgid "You do not have sufficient permissions to access this page."
41
- msgstr ""
42
-
43
- #: duplicator.php:102
44
- msgid "Get Help"
45
- msgstr "رفتن به راهنما"
46
-
47
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
48
- msgid "Help"
49
- msgstr "راهنما"
50
-
51
- #: duplicator.php:103
52
- msgid "Support the Plugin"
53
- msgstr "پشتیبان افزونه"
54
-
55
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
56
- msgid "About"
57
- msgstr "درباره"
58
-
59
- #: duplicator.php:179 views/packages/controller.php:76
60
- #: views/packages/list.base.php:235
61
- msgid "Packages"
62
- msgstr "بسته های نصبی"
63
-
64
- #: duplicator.php:183 views/settings/controller.php:19
65
- msgid "Settings"
66
- msgstr "تنظیمات"
67
-
68
- #: duplicator.php:187 views/tools/controller.php:13
69
- msgid "Tools"
70
- msgstr "ابزارها"
71
-
72
- #: duplicator.php:246
73
- msgid "Manage"
74
- msgstr "مدیریت"
75
-
76
- #: views/help/about.php:54
77
- msgid ""
78
- "Created for Admins, Developers and Designers the Duplicator can streamline "
79
- "your workflows and help you quickly clone a WordPress application. "
80
- "Migrating a WordPress site manually can be very time consuming. The "
81
- "Duplicator was made to help you speed up the migration process. Please help "
82
- "us to continue the development effort of this plugin."
83
- msgstr ""
84
- "برای مدیران و توسعه دهندگان و طراحان ایجاد تکثیر گردش کار و کمک شما به سرعت "
85
- "کلون برنامه وردپرس ساده می تواند. انتقال سایت وردپرس به صورت دستی می تواند "
86
- "بسیار وقت گیر است. تکثیر شده است برای کمک به شما سرعت بخشیدن به فرایند "
87
- "انتقال. لطفا کمک به ما برای ادامه تلاش توسعه این پلاگین."
88
-
89
- #: views/help/about.php:64
90
- msgid "Support Duplicator"
91
- msgstr "پشتیبان ایجاد کننده بسته نصبی"
92
-
93
- #: views/help/about.php:71
94
- msgid "Partner with Us"
95
- msgstr "همکاری با ما"
96
-
97
- #: views/help/about.php:83
98
- msgid "Keep Active and Online"
99
- msgstr "نگه دارید فعال و آنلاین"
100
-
101
- #: views/help/about.php:90
102
- msgid "Leave 5 Stars"
103
- msgstr ""
104
-
105
- #: views/help/about.php:107
106
- msgid "Spread the Word"
107
- msgstr "ارتقا دهید (لطفا!)"
108
-
109
- #: views/help/about.php:113
110
- msgid "Duplicate Your WordPress"
111
- msgstr "تولید بسته آسان نصبی وردپرس"
112
-
113
- #: views/help/about.php:114
114
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
115
- msgstr ""
116
-
117
- #: views/help/about.php:131
118
- msgid "Get More Great Tools"
119
- msgstr "دریافت ابزارهای بیشتر"
120
-
121
- #: views/help/gopro.php:37
122
- msgid "Go Pro!"
123
- msgstr "نسخه تجاری!"
124
-
125
- #: views/help/gopro.php:46
126
- msgid "Duplicator Pro Has Arrived!"
127
- msgstr ""
128
-
129
- #: views/help/gopro.php:49
130
- msgid "The simplicity of Duplicator"
131
- msgstr ""
132
-
133
- #: views/help/gopro.php:50
134
- msgid "with the power the professional requires."
135
- msgstr ""
136
-
137
- #: views/help/gopro.php:57
138
- msgid "Duplicator Free"
139
- msgstr "ایجاد کننده بسته نصبی رایگان"
140
-
141
- #: views/help/gopro.php:60 views/help/gopro.php:88
142
- msgid "Backup Files &amp; Database"
143
- msgstr "فایل های پشتیبان و پایگاه داده"
144
-
145
- #: views/help/gopro.php:61 views/help/gopro.php:89
146
- msgid ""
147
- "Compresses all your WordPress files and database into a compressed snapshot "
148
- "archive file."
149
- msgstr ""
150
-
151
- #: views/help/gopro.php:64 views/help/gopro.php:92
152
- msgid "Directory Filters"
153
- msgstr "فیلتر های پوشه"
154
-
155
- #: views/help/gopro.php:65 views/help/gopro.php:93
156
- msgid ""
157
- "Filter out the directories and file extensions you want to include/exclude "
158
- "in your in your archive file."
159
- msgstr ""
160
-
161
- #: views/help/gopro.php:68 views/help/gopro.php:96
162
- msgid "Database Table Filters"
163
- msgstr "فعال کردن فیلتر های جدول"
164
-
165
- #: views/help/gopro.php:69 views/help/gopro.php:97
166
- msgid ""
167
- "Filter out only the database tables you want to include/exclude in your "
168
- "database creation script."
169
- msgstr ""
170
-
171
- #: views/help/gopro.php:72 views/help/gopro.php:100
172
- msgid "Migration Wizard"
173
- msgstr "برنامه جادویی انتقال"
174
-
175
- #: views/help/gopro.php:73 views/help/gopro.php:101
176
- msgid ""
177
- "With just two files (archive &amp; installer.php) move your site to a new "
178
- "location."
179
- msgstr ""
180
-
181
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
182
- msgid "Duplicator Pro"
183
- msgstr "ایجاد کننده بسته نصبی تجاری یا همان پولی"
184
-
185
- #: views/help/gopro.php:104
186
- msgid "Scheduled Backups"
187
- msgstr ""
188
-
189
- #: views/help/gopro.php:105
190
- msgid ""
191
- "Automate the creation of your packages to run at various scheduled intervals."
192
- msgstr ""
193
-
194
- #: views/help/gopro.php:108
195
- msgid "Dropbox Support"
196
- msgstr ""
197
-
198
- #: views/help/gopro.php:109
199
- msgid "Backup up your entire site to Dropbox."
200
- msgstr ""
201
-
202
- #: views/help/gopro.php:112
203
- msgid "FTP Support"
204
- msgstr ""
205
-
206
- #: views/help/gopro.php:113
207
- msgid "Backup up your entire site to an FTP server."
208
- msgstr ""
209
-
210
- #: views/help/gopro.php:116
211
- msgid "Customer Support"
212
- msgstr "پشتیبانی 24 ساعته"
213
-
214
- #: views/help/gopro.php:117
215
- msgid ""
216
- "Server setups can be quite complex, with pro you get prompt help to get your "
217
- "site backed up and moved."
218
- msgstr ""
219
-
220
- #: views/help/gopro.php:124
221
- msgid "Check It Out!"
222
- msgstr "بررسی"
223
-
224
- #: views/help/help.php:38
225
- msgid ""
226
- "Migrating WordPress is a complex process and the logic to make all the magic "
227
- "happen smoothly may not work quickly with every site. With over 30,000 "
228
- "plugins and a very complex server eco-system some migrations may run into "
229
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
230
- "can help with many common issues. Resources to additional support, approved "
231
- "hosting, and alternatives to fit your needs can be found below."
232
- msgstr ""
233
- "مهاجرت وردپرس، یک فرآیند پیچیده و منطق را به همه سحر و جادو اتفاق می افتد "
234
- "هموار ممکن است به سرعت با هر سایت کار نمی کند. با بیش از 30000 پلاگین ها و "
235
- "سرور اکو سیستم بسیار پیچیده برخی از مهاجرت ممکن است به مسائل اجرا شود. به "
236
- "همین دلیل است نسخه برداری شامل یک مرکز آموزش دقیق است که می تواند با بسیاری "
237
- "از مسائل مشترک کمک کند. منابع برای حمایت از اضافی، میزبانی تایید، و جایگزین "
238
- "های مناسب نیازهای شما می تواند زیر آمده است."
239
-
240
- #: views/help/help.php:50
241
- msgid "Knowledgebase"
242
- msgstr "مرکز آموزش"
243
-
244
- #: views/help/help.php:53
245
- msgid "Complete Online Documentation"
246
- msgstr "مستندات کامل آنلاین"
247
-
248
- #: views/help/help.php:55
249
- msgid "Choose A Section"
250
- msgstr "یک بخش را انتخاب کنید"
251
-
252
- #: views/help/help.php:56
253
- msgid "Quick Start"
254
- msgstr "شروع سریع"
255
-
256
- #: views/help/help.php:57
257
- msgid "User Guide"
258
- msgstr "راهنمای کاربر"
259
-
260
- #: views/help/help.php:58
261
- msgid "FAQs"
262
- msgstr "پرسش و پاسخ"
263
-
264
- #: views/help/help.php:59
265
- msgid "Change Log"
266
- msgstr "تغییر گزارشات"
267
-
268
- #: views/help/help.php:60
269
- msgid "Product Page"
270
- msgstr "صفحه محصولات"
271
-
272
- #: views/help/help.php:69
273
- msgid "Online Support"
274
- msgstr "پشتیبانی آنلاین"
275
-
276
- #: views/help/help.php:72
277
- msgid "Get Help From IT Professionals"
278
- msgstr "کمک گرفتن از حرفه ای های IT"
279
-
280
- #: views/help/help.php:76
281
- msgid "Get Support!"
282
- msgstr "گرفتن پشتیبانی"
283
-
284
- #: views/help/help.php:88
285
- msgid "Approved Hosting"
286
- msgstr "هاستینگ های تایید شده"
287
-
288
- #: views/help/help.php:91
289
- msgid "Servers That Work With Duplicator"
290
- msgstr "سرور های هاستینگی که از افزونه ایجاد کننده بسته نصبی پشتیبانی می کنند"
291
-
292
- #: views/help/help.php:94
293
- msgid "Trusted Providers!"
294
- msgstr "ارائه دهندگان خدمات قابل اعتماد!"
295
-
296
- #: views/help/help.php:104
297
- msgid "Alternatives"
298
- msgstr "جایگزین"
299
-
300
- #: views/help/help.php:107
301
- msgid "Other Commercial Resources"
302
- msgstr "سایر منابع تجاری"
303
-
304
- #: views/help/help.php:110
305
- msgid "Pro Solutions!"
306
- msgstr "راه حل های حرفه ای!"
307
-
308
- #: views/packages/list-nodata.php:7
309
- msgid "No Packages Found."
310
- msgstr "هیچ بسته آسان نصبی وجود ندارد."
311
-
312
- #: views/packages/list-nodata.php:8
313
- msgid "Click the 'Create New' button to build a package."
314
- msgstr ""
315
- "برای ایجاد بسته آسان نصبی از دکمه بالای صفحه یعنی ( ایجاد بسته آسان نصبی "
316
- "جدید ) استفاده نمایید."
317
-
318
- #: views/packages/list-nodata.php:13
319
- msgid "Please visit the"
320
- msgstr "در صورت نیاز لطفا از "
321
-
322
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
323
- #: views/packages/new1.base.php:234
324
- msgid "help page"
325
- msgstr "صفحه راهنما"
326
-
327
- #: views/packages/list-nodata.php:15
328
- msgid "for additional support"
329
- msgstr ""
330
- "برای پیشتیبانی بیشتر استفاده کنید.<p>برای رفتن به صفحه راهنما از منو های "
331
- "داخل افزونه کپی کننده به گزینه راهنما مراجعه نمایید!</p>"
332
-
333
- #: views/packages/list-nodata.php:24
334
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
335
- msgstr ""
336
-
337
- #: views/packages/list-nodata.php:27
338
- msgid "To get an older package please visit the"
339
- msgstr ""
340
-
341
- #: views/packages/list-nodata.php:29
342
- msgid "and look for the Change Log link for additional instructions."
343
- msgstr ""
344
-
345
- #: views/packages/list-nodata.php:33
346
- msgid "Hide this message"
347
- msgstr "این پیغام را ببند"
348
-
349
- #: views/packages/list.base.php:39
350
- msgid "Help Support Duplicator"
351
- msgstr "پشتیبان ایجاد کننده بسته نصبی"
352
-
353
- #: views/packages/list.base.php:50
354
- msgid "Bulk Actions"
355
- msgstr "انجام عملیات کلی"
356
-
357
- #: views/packages/list.base.php:51
358
- msgid "Delete selected package(s)"
359
- msgstr "حذف بسته های نصبی انتخاب شده(s)"
360
-
361
- #: views/packages/list.base.php:51
362
- msgid "Delete"
363
- msgstr "حذف"
364
-
365
- #: views/packages/list.base.php:53
366
- msgid "Apply"
367
- msgstr "اعمال"
368
-
369
- #: views/packages/list.base.php:58
370
- msgid "Package Logs"
371
- msgstr "گزارش بسته نصبی"
372
-
373
- #: views/packages/list.base.php:61 views/packages/new1.base.php:96
374
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
375
- #: views/packages/new3.base.php:89
376
- msgid "All Packages"
377
- msgstr "تمام بسته های نصبی"
378
-
379
- #: views/packages/list.base.php:62 views/packages/new1.base.php:97
380
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
381
- msgid "Create New"
382
- msgstr "ایجاد بسته نصبی جدید"
383
-
384
- #: views/packages/list.base.php:87
385
- msgid "Select all packages"
386
- msgstr "انتخاب همه بسته"
387
-
388
- #: views/packages/list.base.php:88 views/packages/new3.base.php:108
389
- msgid "Details"
390
- msgstr "جزئیات"
391
-
392
- #: views/packages/list.base.php:89
393
- msgid "Created"
394
- msgstr "زمان ایجاد"
395
-
396
- #: views/packages/list.base.php:90 views/packages/new2.base.php:222
397
- #: views/packages/new2.base.php:334
398
- msgid "Size"
399
- msgstr "حجم"
400
-
401
- #: views/packages/list.base.php:91 views/packages/new1.inc.form.php:6
402
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
403
- msgid "Name"
404
- msgstr "نام بسته "
405
-
406
- #: views/packages/list.base.php:93 views/settings/general.php:110
407
- msgid "Package"
408
- msgstr "بسته"
409
-
410
- #: views/packages/list.base.php:124
411
- msgid "(No Notes Taken)"
412
- msgstr "(بدون یادداشت ها گرفته شده)"
413
-
414
- #: views/packages/list.base.php:142 views/packages/list.base.php:187
415
- msgid "View"
416
- msgstr "مشاهده شده"
417
-
418
- #: views/packages/list.base.php:147 views/packages/new1.inc.form.php:176
419
- #: views/packages/new3.base.php:79
420
- msgid "Installer"
421
- msgstr "نصب کننده"
422
-
423
- #: views/packages/list.base.php:150 views/packages/new1.inc.form.php:65
424
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
425
- msgid "Archive"
426
- msgstr "آرشیو بسته نصبی"
427
-
428
- #: views/packages/list.base.php:155 views/packages/list.base.php:200
429
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
430
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
431
- msgid "Version"
432
- msgstr "نسخه"
433
-
434
- #: views/packages/list.base.php:156 views/packages/list.base.php:201
435
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
436
- msgid "User"
437
- msgstr "کاربر دیتابیس"
438
-
439
- #: views/packages/list.base.php:157 views/packages/list.base.php:202
440
- msgid "Hash"
441
- msgstr "Hash"
442
-
443
- #: views/packages/list.base.php:158 views/packages/list.base.php:207
444
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
445
- msgid "Notes"
446
- msgstr "توضیحات"
447
-
448
- #: views/packages/list.base.php:160
449
- msgid "Links"
450
- msgstr "لینک‌ها"
451
-
452
- #: views/packages/list.base.php:161
453
- msgid "SQL"
454
- msgstr "اس‌کیوال"
455
-
456
- #: views/packages/list.base.php:162
457
- msgid "Log"
458
- msgstr "گزارش"
459
-
460
- #: views/packages/list.base.php:165
461
- msgid "Open Scan Report"
462
- msgstr "گزارش اسکن باز"
463
-
464
- #: views/packages/list.base.php:166
465
- msgid "View Package Object"
466
- msgstr "مشاهده بسته شی"
467
-
468
- #: views/packages/list.base.php:193
469
- msgid "View Error Details"
470
- msgstr "مشاهده جزئیات خطا"
471
-
472
- #: views/packages/list.base.php:205
473
- msgid "Unrecoverable Error! Please remove this package."
474
- msgstr ""
475
-
476
- #: views/packages/list.base.php:210
477
- msgid ""
478
- "This package has encountered errors. Click 'View Log' for more details. "
479
- "For additional support see the "
480
- msgstr ""
481
-
482
- #: views/packages/list.base.php:211
483
- msgid "online knowledgebase"
484
- msgstr ""
485
-
486
- #: views/packages/list.base.php:213
487
- msgid "View Log"
488
- msgstr "نمایش گزارش"
489
-
490
- #: views/packages/list.base.php:236 views/packages/new2.base.php:219
491
- #: views/packages/new2.base.php:328
492
- msgid "Total Size"
493
- msgstr "اندازه کل"
494
-
495
- #: views/packages/list.base.php:255
496
- msgid "Download Links"
497
- msgstr "لینک دانلود"
498
-
499
- #: views/packages/list.base.php:258
500
- msgid "The following links contain sensitive data. Please share with caution!"
501
- msgstr ""
502
-
503
- #: views/packages/list.base.php:264
504
- msgid ""
505
- "The database SQL script is a quick link to your database backup script. An "
506
- "exact copy is also stored in the package."
507
- msgstr ""
508
-
509
- #: views/packages/list.base.php:287
510
- msgid ""
511
- "Please select an action from the bulk action drop down menu to perform a "
512
- "specific action."
513
- msgstr ""
514
-
515
- #: views/packages/list.base.php:295
516
- msgid "Please select at least one package to delete."
517
- msgstr ""
518
-
519
- #: views/packages/list.base.php:299
520
- msgid "Are you sure, you want to delete the selected package(s)?"
521
- msgstr "آیا مطمئنید که مایلید package(s) منتخب را حذف کنید؟"
522
-
523
- #: views/packages/list.base.php:333
524
- msgid "Package File Links"
525
- msgstr "لینک فایل های بسته"
526
-
527
- #: views/packages/list.base.php:336
528
- msgid "DATABASE"
529
- msgstr "پایگاه داده"
530
-
531
- #: views/packages/list.base.php:337
532
- msgid "PACKAGE"
533
- msgstr "بسته"
534
-
535
- #: views/packages/list.base.php:338
536
- msgid "INSTALLER"
537
- msgstr "نصب کننده"
538
-
539
- #: views/packages/list.base.php:339
540
- msgid "LOG"
541
- msgstr "گزارش"
542
-
543
- #: views/packages/list.base.php:340
544
- msgid "REPORT"
545
- msgstr "گزارش"
546
-
547
- #: views/packages/new1.base.php:13
548
- msgid "Package settings have been reset."
549
- msgstr ""
550
-
551
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
552
- #: views/packages/new3.base.php:33
553
- msgid "Setup"
554
- msgstr "نصب"
555
-
556
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
557
- #: views/packages/new3.base.php:34
558
- msgid "Scan"
559
- msgstr "آنالیز ( اسکن )"
560
-
561
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
562
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
563
- msgid "Build"
564
- msgstr "ایجاد بسته"
565
-
566
- #: views/packages/new1.base.php:91
567
- msgid "Step 1: Package Setup"
568
- msgstr "بخش 1 : تنظیمات بسته "
569
-
570
- #: views/packages/new1.base.php:115
571
- msgid "Requirements:"
572
- msgstr "موارد مورد نیاز:"
573
-
574
- #: views/packages/new1.base.php:124
575
- msgid ""
576
- "System requirements must pass for the Duplicator to work properly. Click "
577
- "each link for details."
578
- msgstr ""
579
-
580
- #: views/packages/new1.base.php:130
581
- msgid "PHP Support"
582
- msgstr "پشتیبان پی اچ پی"
583
-
584
- #: views/packages/new1.base.php:136
585
- msgid "PHP Version"
586
- msgstr "نسخه پی اچ پی"
587
-
588
- #: views/packages/new1.base.php:140
589
- msgid "Zip Archive Enabled"
590
- msgstr ""
591
-
592
- #: views/packages/new1.base.php:144
593
- msgid "Safe Mode Off"
594
- msgstr ""
595
-
596
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
597
- #: views/packages/new1.base.php:156
598
- msgid "Function"
599
- msgstr "تابع"
600
-
601
- #: views/packages/new1.base.php:161
602
- msgid ""
603
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
604
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
605
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
606
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
607
- "this section please contact your hosting provider or server administrator. "
608
- "For additional information see our online documentation."
609
- msgstr ""
610
-
611
- #: views/packages/new1.base.php:169
612
- msgid "Permissions"
613
- msgstr "دسترسی‌ها"
614
-
615
- #: views/packages/new1.base.php:172
616
- msgid "Required Paths"
617
- msgstr "مسیرهای مورد نیاز"
618
-
619
- #: views/packages/new1.base.php:183
620
- msgid ""
621
- "Permissions can be difficult to resolve on some systems. If the plugin can "
622
- "not read the above paths here are a few things to try. 1) Set the above "
623
- "paths to have permissions of 755 for directories and 644 for files. You can "
624
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
625
- "the owner/group settings for both files and directories. The PHP script "
626
- "owner and the process owner are different. The script owner owns the PHP "
627
- "script but the process owner is the user the script is running as, thus "
628
- "determining its capabilities/privileges in the file system. For more details "
629
- "contact your host or server administrator or visit the 'Help' menu under "
630
- "Duplicator for additional online resources."
631
- msgstr ""
632
-
633
- #: views/packages/new1.base.php:191
634
- msgid "Server Support"
635
- msgstr "پشتیبانی سرور"
636
-
637
- #: views/packages/new1.base.php:197
638
- msgid "MySQL Version"
639
- msgstr "نسخه MySQL"
640
-
641
- #: views/packages/new1.base.php:201
642
- msgid "MySQLi Support"
643
- msgstr "پشتیبانی از MySQLi"
644
-
645
- #: views/packages/new1.base.php:207
646
- msgid ""
647
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
648
- "the trailing 'i') is also required. Contact your server administrator and "
649
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
650
- "note in future versions support for other databases and extensions will be "
651
- "added."
652
- msgstr ""
653
-
654
- #: views/packages/new1.base.php:208
655
- msgid "more info"
656
- msgstr "اطلاعات بیشتر"
657
-
658
- #: views/packages/new1.base.php:217
659
- msgid "Reserved Files"
660
- msgstr "فایل محافظت شده"
661
-
662
- #: views/packages/new1.base.php:221
663
- msgid ""
664
- "None of the reserved files (installer.php, installer-data.sql and installer-"
665
- "log.txt) where found from a previous install. This means you are clear to "
666
- "create a new package."
667
- msgstr ""
668
-
669
- #: views/packages/new1.base.php:224
670
- msgid ""
671
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
672
- "names are installer.php, installer-data.sql and installer-log.txt. To "
673
- "archive your data correctly please remove any of these files from your "
674
- "WordPress root directory. Then try creating your package again."
675
- msgstr ""
676
-
677
- #: views/packages/new1.base.php:225
678
- msgid "Remove Files Now"
679
- msgstr "حذف فایل های حال حاضر"
680
-
681
- #: views/packages/new1.base.php:234
682
- msgid "For additional help please see the "
683
- msgstr ""
684
-
685
- #: views/packages/new1.inc.form.php:10
686
- msgid "Create a new default name"
687
- msgstr "ایجاد یک نام پیشفرض"
688
-
689
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
690
- msgid "Storage"
691
- msgstr "ذخیره سازی"
692
-
693
- #: views/packages/new1.inc.form.php:32
694
- msgid "Type"
695
- msgstr ""
696
-
697
- #: views/packages/new1.inc.form.php:33
698
- msgid "Location"
699
- msgstr ""
700
-
701
- #: views/packages/new1.inc.form.php:38
702
- msgid "Default"
703
- msgstr ""
704
-
705
- #: views/packages/new1.inc.form.php:39
706
- msgid "Local"
707
- msgstr ""
708
-
709
- #: views/packages/new1.inc.form.php:45
710
- msgid ""
711
- "All packages including the archive, installer and SQL script are stored in "
712
- "the location above. "
713
- msgstr ""
714
-
715
- #: views/packages/new1.inc.form.php:48
716
- msgid "Dropbox, FTP and other multiple storage options available in "
717
- msgstr ""
718
-
719
- #: views/packages/new1.inc.form.php:67
720
- msgid "File filter enabled"
721
- msgstr ""
722
-
723
- #: views/packages/new1.inc.form.php:68
724
- msgid "Database filter enabled"
725
- msgstr "بانک اطلاعات فیلتر فعال"
726
-
727
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
728
- msgid "Files"
729
- msgstr "فایل ها"
730
-
731
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
732
- #: views/packages/new2.base.php:312
733
- msgid "Database"
734
- msgstr "پایگاه داده"
735
-
736
- #: views/packages/new1.inc.form.php:90
737
- msgid "Enable File Filters"
738
- msgstr "فعال کردن فیلتر های پرونده"
739
-
740
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
741
- msgid "Separate all filters by semicolon"
742
- msgstr ""
743
-
744
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
745
- msgid "Directories"
746
- msgstr "پوشه ها"
747
-
748
- #: views/packages/new1.inc.form.php:96
749
- msgid "root path"
750
- msgstr "مسیر ریشه"
751
-
752
- #: views/packages/new1.inc.form.php:97
753
- msgid "wp-uploads"
754
- msgstr ""
755
-
756
- #: views/packages/new1.inc.form.php:98
757
- msgid "cache"
758
- msgstr "کش"
759
-
760
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
761
- msgid "(clear)"
762
- msgstr ""
763
-
764
- #: views/packages/new1.inc.form.php:102
765
- msgid "File extensions"
766
- msgstr "پسوند فایل ها"
767
-
768
- #: views/packages/new1.inc.form.php:104
769
- msgid "media"
770
- msgstr "فیلم یا آهنگ"
771
-
772
- #: views/packages/new1.inc.form.php:105
773
- msgid "archive"
774
- msgstr "بسته فشرده"
775
-
776
- #: views/packages/new1.inc.form.php:111
777
- msgid ""
778
- "The directory paths and extensions above will be be excluded from the "
779
- "archive file if enabled is checked."
780
- msgstr ""
781
- "مسیر دایرکتوری و پسوند بالا خواهد شد می شود محروم از آرشیو فایل اگر فعال "
782
- "بررسی می شود."
783
-
784
- #: views/packages/new1.inc.form.php:112
785
- msgid "Use the full path for directories and semicolons to separate all items."
786
- msgstr "مسیر کامل دایرکتوری و ویرگول برای جدا کردن همه موارد استفاده کنید."
787
-
788
- #: views/packages/new1.inc.form.php:123
789
- msgid "Enable Table Filters"
790
- msgstr "فعال کردن فیلتر های جدول"
791
-
792
- #: views/packages/new1.inc.form.php:124
793
- msgid "checked tables are excluded"
794
- msgstr "انتخاب جداول محروم شده"
795
-
796
- #: views/packages/new1.inc.form.php:129
797
- msgid "Include All"
798
- msgstr "حذف همه"
799
-
800
- #: views/packages/new1.inc.form.php:130
801
- msgid "Exclude All"
802
- msgstr "انتخاب همه"
803
-
804
- #: views/packages/new1.inc.form.php:163
805
- msgid ""
806
- "Checked tables will not be added to the database script. Excluding certain "
807
- "tables can possibly cause your site or plugins to not work correctly after "
808
- "install!"
809
- msgstr ""
810
- "بررسی جداول به اسکریپت بانک اطلاعاتی اضافه خواهد شد. جداول خاصی به جز "
811
- "احتمالا سایت یا افزونه هنوز کار درست پس از نصب می تواند باعث شود!"
812
-
813
- #: views/packages/new1.inc.form.php:181
814
- msgid "STEP 1 - INPUTS"
815
- msgstr "بخش 1 - ورودی ها"
816
-
817
- #: views/packages/new1.inc.form.php:184
818
- msgid "MySQL Server"
819
- msgstr "سرور مای اسکیوال"
820
-
821
- #: views/packages/new1.inc.form.php:187
822
- msgid "Host"
823
- msgstr "میزبان"
824
-
825
- #: views/packages/new1.inc.form.php:191
826
- msgid "Host Port"
827
- msgstr ""
828
-
829
- #: views/packages/new1.inc.form.php:203
830
- msgid "Advanced Options"
831
- msgstr "تنظیمات بیشتر"
832
-
833
- #: views/packages/new1.inc.form.php:209
834
- msgid "SSL"
835
- msgstr "گواهینامه SSL"
836
-
837
- #: views/packages/new1.inc.form.php:212
838
- msgid "Enforce on Admin"
839
- msgstr "اجرا توسط مدیر"
840
-
841
- #: views/packages/new1.inc.form.php:216
842
- msgid "Enforce on Logins"
843
- msgstr "اجرا بعد از ورود"
844
-
845
- #: views/packages/new1.inc.form.php:220
846
- msgid "Cache"
847
- msgstr "کش"
848
-
849
- #: views/packages/new1.inc.form.php:223
850
- msgid "Keep Enabled"
851
- msgstr "فعال نگه داشتن"
852
-
853
- #: views/packages/new1.inc.form.php:227
854
- msgid "Keep Home Path"
855
- msgstr "نگه داشتن مسیر خانه"
856
-
857
- #: views/packages/new1.inc.form.php:235
858
- msgid "STEP 2 - INPUTS"
859
- msgstr "بخش 2 - ورودی ها"
860
-
861
- #: views/packages/new1.inc.form.php:239
862
- msgid "New URL"
863
- msgstr "آدرس جدید"
864
-
865
- #: views/packages/new1.inc.form.php:245
866
- msgid "The installer can have these fields pre-filled at install time."
867
- msgstr "نصب می توانید این زمینه ها در زمان نصب از پیش پر شده است."
868
-
869
- #: views/packages/new1.inc.form.php:245
870
- msgid "All values are optional."
871
- msgstr "همه مقادیر اختیاری هستند."
872
-
873
- #: views/packages/new1.inc.form.php:254
874
- msgid "Reset"
875
- msgstr "بازگشت به تنظیمات اولیه"
876
-
877
- #: views/packages/new1.inc.form.php:255
878
- msgid "Next"
879
- msgstr "ادامه"
880
-
881
- #: views/packages/new1.inc.form.php:267
882
- msgid ""
883
- "This will reset all of the current package settings. Would you like to "
884
- "continue?"
885
- msgstr ""
886
-
887
- #: views/packages/new2.base.php:64
888
- msgid "Step 2: System Scan"
889
- msgstr "بخش 2 : آنالیز سیستم"
890
-
891
- #: views/packages/new2.base.php:81
892
- msgid "Scanning Site"
893
- msgstr "آنالیز ( اسکن ) در سایت"
894
-
895
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
896
- msgid "Please Wait..."
897
- msgstr "لطفا منتظر بمانید ...."
898
-
899
- #: views/packages/new2.base.php:89
900
- msgid "Scan Complete"
901
- msgstr "آنالیز ( اسکن ) کامل شده"
902
-
903
- #: views/packages/new2.base.php:91
904
- msgid ""
905
- "Scan checks are not required to pass, however they could cause issues on "
906
- "some systems."
907
- msgstr ""
908
- "آنالیز ( اسکن ) انجام شد تمام موارد مورد تایید می باشد با این حال بسته به "
909
- "سیستم های مختلف می تواند موارد تغییر کند."
910
-
911
- #: views/packages/new2.base.php:92
912
- msgid "Process Time:"
913
- msgstr "زمان اجرا:"
914
-
915
- #: views/packages/new2.base.php:101
916
- msgid "Server"
917
- msgstr "سرور"
918
-
919
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
920
- msgid "Diagnostics"
921
- msgstr "تشخیص"
922
-
923
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
924
- #: views/tools/diagnostics.php:106
925
- msgid "Web Server"
926
- msgstr "سرور وب"
927
-
928
- #: views/packages/new2.base.php:119
929
- msgid "Supported web servers:"
930
- msgstr ""
931
-
932
- #: views/packages/new2.base.php:129
933
- msgid "PHP Setup"
934
- msgstr ""
935
-
936
- #: views/packages/new2.base.php:135
937
- msgid "Open Base Dir"
938
- msgstr ""
939
-
940
- #: views/packages/new2.base.php:137
941
- msgid ""
942
- "Issues might occur when [open_basedir] is enabled. Work with your server "
943
- "admin to disable this value in the php.ini file if you’re having issues "
944
- "building a package."
945
- msgstr ""
946
-
947
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
948
- #: views/packages/new2.base.php:155
949
- msgid "details"
950
- msgstr ""
951
-
952
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
953
- msgid "Max Execution Time"
954
- msgstr "حداکثر زمان اجرا"
955
-
956
- #: views/packages/new2.base.php:145
957
- #, php-format
958
- msgid ""
959
- "Issues might occur for larger packages when the [max_execution_time] value "
960
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
961
- "seconds or higher. An attempt is made to override this value if the server "
962
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
963
- msgstr ""
964
-
965
- #: views/packages/new2.base.php:147
966
- msgid ""
967
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
968
- "timeout passes and you still see a build interrupt messages, then your web "
969
- "server could be killing the process. If you are limited on processing "
970
- "time, consider using the database or file filters to shrink the size of your "
971
- "overall package. However use caution as excluding the wrong resources can "
972
- "cause your install to not work properly."
973
- msgstr ""
974
-
975
- #: views/packages/new2.base.php:152
976
- msgid "MySQLi"
977
- msgstr ""
978
-
979
- #: views/packages/new2.base.php:154
980
- msgid ""
981
- "Creating the package does not require the mysqli module. However the "
982
- "installer.php file requires that the PHP module mysqli be installed on the "
983
- "server it is deployed on."
984
- msgstr ""
985
-
986
- #: views/packages/new2.base.php:164
987
- msgid "WordPress"
988
- msgstr "وردپرس"
989
-
990
- #: views/packages/new2.base.php:169
991
- msgid "WordPress Version"
992
- msgstr "ورژن وردپرس"
993
-
994
- #: views/packages/new2.base.php:171
995
- #, php-format
996
- msgid ""
997
- "It is recommended to have a version of WordPress that is greater than %1$s"
998
- msgstr ""
999
-
1000
- #: views/packages/new2.base.php:175
1001
- msgid "Core Files"
1002
- msgstr "فایل های هسته ای"
1003
-
1004
- #: views/packages/new2.base.php:177
1005
- msgid ""
1006
- "If the scanner is unable to locate the wp-config.php file in the root "
1007
- "directory, then you will need to manually copy it to its new location."
1008
- msgstr ""
1009
-
1010
- #: views/packages/new2.base.php:183
1011
- msgid "Cache Path"
1012
- msgstr ""
1013
-
1014
- #: views/packages/new2.base.php:185
1015
- msgid ""
1016
- "Cached data will lead to issues at install time and increases your archive "
1017
- "size. It is recommended to empty your cache directory at build time. Use "
1018
- "caution when removing data from the cache directory. If you have a cache "
1019
- "plugin review the documentation for how to empty it; simply removing files "
1020
- "might cause errors on your site. The cache size minimum threshold is "
1021
- "currently set at "
1022
- msgstr ""
1023
-
1024
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1025
- msgid "Enabled"
1026
- msgstr "فعال"
1027
-
1028
- #: views/packages/new2.base.php:223
1029
- msgid "File Count"
1030
- msgstr "تعداد پرونده"
1031
-
1032
- #: views/packages/new2.base.php:224
1033
- msgid "Directory Count"
1034
- msgstr "تعداد دایرکتوری"
1035
-
1036
- #: views/packages/new2.base.php:227
1037
- #, php-format
1038
- msgid ""
1039
- "Total size represents all files minus any filters that have been setup. The "
1040
- "current thresholds that trigger warnings are %1$s for the entire site and "
1041
- "%2$s for large files."
1042
- msgstr ""
1043
-
1044
- #: views/packages/new2.base.php:239
1045
- msgid "Name Checks"
1046
- msgstr ""
1047
-
1048
- #: views/packages/new2.base.php:244
1049
- msgid ""
1050
- "File or directory names may cause issues when working across different "
1051
- "environments and servers. Names that are over 250 characters, contain "
1052
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1053
- "issues in a remote enviroment. It is recommended to remove or filter these "
1054
- "files before building the archive if you have issues at install time."
1055
- msgstr ""
1056
-
1057
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1058
- msgid "Show Paths"
1059
- msgstr "نشان دادن مسیر"
1060
-
1061
- #: views/packages/new2.base.php:256
1062
- msgid "Large Files"
1063
- msgstr "فایل های بزرگ"
1064
-
1065
- #: views/packages/new2.base.php:261
1066
- #, php-format
1067
- msgid ""
1068
- "Large files such as movies or other backuped data can cause issues with "
1069
- "timeouts. The current check for large files is %1$s per file. If your "
1070
- "having issues creating a package consider excluding these files with the "
1071
- "files filter and manually moving them to your new location."
1072
- msgstr ""
1073
-
1074
- #: views/packages/new2.base.php:275
1075
- msgid "View Filters"
1076
- msgstr "مشاهده فیلتر ها"
1077
-
1078
- #: views/packages/new2.base.php:283
1079
- msgid "No directory filters have been set."
1080
- msgstr ""
1081
-
1082
- #: views/packages/new2.base.php:288
1083
- msgid "File Extensions"
1084
- msgstr "پسوند فایل ها"
1085
-
1086
- #: views/packages/new2.base.php:293
1087
- msgid "No file extension filters have been set."
1088
- msgstr ""
1089
-
1090
- #: views/packages/new2.base.php:297
1091
- msgid ""
1092
- "The lists above are the directories and file extension that will be excluded "
1093
- "from the archive."
1094
- msgstr ""
1095
-
1096
- #: views/packages/new2.base.php:332
1097
- msgid "Tables"
1098
- msgstr "جدول"
1099
-
1100
- #: views/packages/new2.base.php:333
1101
- msgid "Records"
1102
- msgstr "رکورد"
1103
-
1104
- #: views/packages/new2.base.php:336
1105
- msgid "repair and optimization"
1106
- msgstr "تعمیر و بهینه سازی"
1107
-
1108
- #: views/packages/new2.base.php:337
1109
- #, php-format
1110
- msgid ""
1111
- "Total size and row count for all database tables are approximate values. "
1112
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1113
- "databases take time to process and can cause issues with server timeout and "
1114
- "memory settings. Running a %3$s on your database can also help improve the "
1115
- "overall size and performance. If your server supports shell_exec and "
1116
- "mysqldump you can try to enable this option from the settings menu."
1117
- msgstr ""
1118
-
1119
- #: views/packages/new2.base.php:349
1120
- msgid "Table Details"
1121
- msgstr "جدول جزئیات"
1122
-
1123
- #: views/packages/new2.base.php:360
1124
- msgid "Name:"
1125
- msgstr "نام:"
1126
-
1127
- #: views/packages/new2.base.php:361
1128
- msgid "Host:"
1129
- msgstr "میزبان:"
1130
-
1131
- #: views/packages/new2.base.php:362
1132
- msgid "Build Mode:"
1133
- msgstr "نحوه ساخت:"
1134
-
1135
- #: views/packages/new2.base.php:373
1136
- msgid "Scan Error"
1137
- msgstr "خطا در آنالیز ( اسکن )"
1138
-
1139
- #: views/packages/new2.base.php:374
1140
- msgid "Please try again!"
1141
- msgstr "لطفا دوباره سعی کنید"
1142
-
1143
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1144
- msgid "Server Status:"
1145
- msgstr "وضعیت سرور:"
1146
-
1147
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1148
- msgid "Error Message:"
1149
- msgstr "پیام خطا:"
1150
-
1151
- #: views/packages/new2.base.php:386
1152
- msgid "Back"
1153
- msgstr "بازگشت"
1154
-
1155
- #: views/packages/new2.base.php:387
1156
- msgid "Rescan"
1157
- msgstr "آنالیز یا ( اسکن ) مجدد"
1158
-
1159
- #: views/packages/new2.base.php:486
1160
- msgid "Unable to report on any tables"
1161
- msgstr "قادر به گزارش هیچ کدام از جداول نمی باشم"
1162
-
1163
- #: views/packages/new2.base.php:495
1164
- msgid "Unable to report on database stats"
1165
- msgstr "قادر به گزارش آمار پایگاه داده نمی باشم"
1166
-
1167
- #: views/packages/new2.base.php:514
1168
- msgid "DIR"
1169
- msgstr ""
1170
-
1171
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1172
- msgid "FILE"
1173
- msgstr "پرونده"
1174
-
1175
- #: views/packages/new2.base.php:523
1176
- msgid "No name warning issues found."
1177
- msgstr ""
1178
-
1179
- #: views/packages/new2.base.php:529
1180
- msgid "No large files found."
1181
- msgstr "هیچ فایلی یافت یا انتخاب نشد"
1182
-
1183
- #: views/packages/new3.base.php:38
1184
- msgid "Step 3: Build Package"
1185
- msgstr "بخش 3 : ساخت بسته آسان نصبی"
1186
-
1187
- #: views/packages/new3.base.php:55
1188
- msgid "Building Package"
1189
- msgstr "در حال ساخت بسته آسان نصبی"
1190
-
1191
- #: views/packages/new3.base.php:58
1192
- msgid "Keep this window open during the build process."
1193
- msgstr "این پنجره را در طول فرایند ساخت هرگز نبندید."
1194
-
1195
- #: views/packages/new3.base.php:59
1196
- msgid "This may take several minutes."
1197
- msgstr "این ممکن است چند دقیقه طول بکشد."
1198
-
1199
- #: views/packages/new3.base.php:63
1200
- msgid "Build Status"
1201
- msgstr "وضعیت ساخت بسته آسان نصبی"
1202
-
1203
- #: views/packages/new3.base.php:70
1204
- msgid "Package Completed"
1205
- msgstr "بسته آسان نصبی با موفقییت تولید شد"
1206
-
1207
- #: views/packages/new3.base.php:75
1208
- msgid "Process Time"
1209
- msgstr "فرایند تولید بسته"
1210
-
1211
- #: views/packages/new3.base.php:100
1212
- msgid "Build Interrupt"
1213
- msgstr "ایجاد وقفه"
1214
-
1215
- #: views/packages/new3.base.php:101
1216
- msgid "The current build has experienced an issue."
1217
- msgstr ""
1218
-
1219
- #: views/packages/new3.base.php:103
1220
- msgid "Please try the process again."
1221
- msgstr "لطفا این فرآیند را دوباره امتحان کنید."
1222
-
1223
- #: views/packages/new3.base.php:105
1224
- msgid "Diagnose"
1225
- msgstr ""
1226
-
1227
- #: views/packages/new3.base.php:106
1228
- msgid "Try Again"
1229
- msgstr "دوباره امتحان کردن"
1230
-
1231
- #: views/packages/new3.base.php:122
1232
- msgid "Notice"
1233
- msgstr "هشدار"
1234
-
1235
- #: views/packages/new3.base.php:125
1236
- msgid "Build Folder:"
1237
- msgstr "پوشه ایجاد:"
1238
-
1239
- #: views/packages/new3.base.php:127
1240
- msgid ""
1241
- "Some servers close connections quickly; yet the build can continue to run in "
1242
- "the background. To validate if a build is still running; open the 'tmp' "
1243
- "folder above and see if the archive file is growing in size. If it is not "
1244
- "then your server has strict timeout constraints. Please visit the support "
1245
- "page for additional resources."
1246
- msgstr ""
1247
-
1248
- #: views/packages/new3.base.php:136
1249
- msgid "Package Log"
1250
- msgstr "گزارش بسته نصبی"
1251
-
1252
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1253
- msgid "General"
1254
- msgstr "عمومی"
1255
-
1256
- #: views/settings/general.php:6
1257
- msgid "Settings Saved"
1258
- msgstr "تنظیمات ذخیره شد"
1259
-
1260
- #: views/settings/general.php:75
1261
- msgid "Plugin"
1262
- msgstr "افزونه"
1263
-
1264
- #: views/settings/general.php:83
1265
- msgid "Uninstall"
1266
- msgstr "پاک کردن افزونه"
1267
-
1268
- #: views/settings/general.php:86
1269
- msgid "Delete Plugin Settings"
1270
- msgstr "حذف تنظیمات افزونه"
1271
-
1272
- #: views/settings/general.php:89
1273
- msgid "Delete Entire Storage Directory"
1274
- msgstr "حذف دایرکتوری ذخیره سازی کل"
1275
-
1276
- #: views/settings/general.php:96
1277
- msgid "Full Path"
1278
- msgstr "مسیر کامل"
1279
-
1280
- #: views/settings/general.php:99
1281
- msgid "Disable .htaccess File In Storage Directory"
1282
- msgstr "غیر فعال کردن فایل htaccess در دایرکتوری ذخیره سازی"
1283
-
1284
- #: views/settings/general.php:101
1285
- msgid "Disable if issues occur when downloading installer/archive files."
1286
- msgstr "اگر مسائل را رخ می دهد که دانلود نصب و آرشیو فایل ها را غیر فعال کنید."
1287
-
1288
- #: views/settings/general.php:114
1289
- msgid "Archive Flush"
1290
- msgstr "آرشیو بسته نصبی"
1291
-
1292
- #: views/settings/general.php:117
1293
- msgid "Attempt Network Keep Alive"
1294
- msgstr "زنده نگه داشتن شبکه تلاش"
1295
-
1296
- #: views/settings/general.php:118
1297
- msgid "recommended only for large archives"
1298
- msgstr "توصیه می شود تنها برای آرشیو بزرگ"
1299
-
1300
- #: views/settings/general.php:120
1301
- msgid ""
1302
- "This will attempt to keep a network connection established for large "
1303
- "archives."
1304
- msgstr "این تلاش برای حفظ یک اتصال شبکه برای آرشیو بزرگ است."
1305
-
1306
- #: views/settings/general.php:125
1307
- msgid "Database Build"
1308
- msgstr "ساخت پایگاه داده"
1309
-
1310
- #: views/settings/general.php:128
1311
- msgid "Use PHP"
1312
- msgstr "استفاده از پی اچ پی"
1313
-
1314
- #: views/settings/general.php:131
1315
- msgid "Query Limit Size"
1316
- msgstr "پرس و جو حد اندازه"
1317
-
1318
- #: views/settings/general.php:140
1319
- msgid "higher values speed up build times but uses more memory"
1320
- msgstr "مقادیر بالاتر سرعت بار ساخت اما با استفاده از حافظه بیشتر"
1321
-
1322
- #: views/settings/general.php:147
1323
- msgid "This server does not have shell_exec configured to run."
1324
- msgstr ""
1325
-
1326
- #: views/settings/general.php:149
1327
- msgid "Please contact the server administrator to enable this feature."
1328
- msgstr ""
1329
-
1330
- #: views/settings/general.php:154
1331
- msgid "Use mysqldump"
1332
- msgstr "استفاده از mysqldump"
1333
-
1334
- #: views/settings/general.php:155
1335
- msgid "recommended for large databases"
1336
- msgstr "توصیه می شود برای پایگاه های داده بزرگ"
1337
-
1338
- #: views/settings/general.php:160
1339
- msgid "Working Path:"
1340
- msgstr "مسیر در حال کار:"
1341
-
1342
- #: views/settings/general.php:166
1343
- msgid ""
1344
- "Mysqldump was not found at its default location or the location provided. "
1345
- "Please enter a path to a valid location where mysqldump can run. If the "
1346
- "problem persist contact your server administrator."
1347
- msgstr ""
1348
-
1349
- #: views/settings/general.php:171
1350
- msgid "Add Custom Path:"
1351
- msgstr "مسیر سفارشی اضافه کنید:"
1352
-
1353
- #: views/settings/general.php:175
1354
- msgid "This is the path to your mysqldump program."
1355
- msgstr "این مسیر برای برنامه mysqldump شما است."
1356
-
1357
- #: views/settings/general.php:184
1358
- msgid "Package Debug"
1359
- msgstr "اشکال زدایی بسته"
1360
-
1361
- #: views/settings/general.php:187
1362
- msgid "Show Package Debug Status in Packages Screen"
1363
- msgstr "نمایش وضعیت اشکال زدایی بسته در صفحه نمایش بسته"
1364
-
1365
- #: views/settings/general.php:195
1366
- msgid "Roles & Capabilities"
1367
- msgstr "نقش ها و قابلیت ها"
1368
-
1369
- #: views/settings/general.php:200
1370
- msgid "Custom Roles"
1371
- msgstr "نقش های سفارشی"
1372
-
1373
- #: views/settings/general.php:203
1374
- msgid "Enable User Role Editor Plugin Integration"
1375
- msgstr "فعال کردن قابلیت هماهنگ سازی با پلاگین User Role Editor"
1376
-
1377
- #: views/settings/general.php:210
1378
- msgid "The User Role Editor Plugin"
1379
- msgstr "پلاگین ویرایش نقش کاربران"
1380
-
1381
- #: views/settings/general.php:211
1382
- msgid "Free"
1383
- msgstr "رایگان"
1384
-
1385
- #: views/settings/general.php:212
1386
- msgid "or"
1387
- msgstr "یا"
1388
-
1389
- #: views/settings/general.php:213
1390
- msgid "Professional"
1391
- msgstr "تجاری"
1392
-
1393
- #: views/settings/general.php:214
1394
- msgid "must be installed to use"
1395
- msgstr "باید نصب کنید برای استفاده از"
1396
-
1397
- #: views/settings/general.php:215
1398
- msgid "this feature."
1399
- msgstr "این ویژگی"
1400
-
1401
- #: views/settings/general.php:227
1402
- msgid "Save Settings"
1403
- msgstr "ذخیره تغییرات"
1404
-
1405
- #: views/tools/cleanup.php:8
1406
- msgid "Installer File Cleanup Ran."
1407
- msgstr "نصب فایل پاک کردن ران."
1408
-
1409
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1410
- msgid "Legacy data removed."
1411
- msgstr "حذف داده های میراث."
1412
-
1413
- #: views/tools/cleanup.php:16
1414
- msgid "Build cache removed."
1415
- msgstr "پاک کردن کش"
1416
-
1417
- #: views/tools/cleanup.php:73
1418
- msgid ""
1419
- "If the installer files did not successfully get removed, then you WILL need "
1420
- "to remove them manually"
1421
- msgstr ""
1422
-
1423
- #: views/tools/cleanup.php:74
1424
- msgid ""
1425
- "Please remove all installer files to avoid leaving open security issues on "
1426
- "your server"
1427
- msgstr ""
1428
-
1429
- #: views/tools/cleanup.php:82
1430
- msgid "Data Cleanup"
1431
- msgstr "پاک کردن داده ها"
1432
-
1433
- #: views/tools/cleanup.php:85
1434
- msgid "Delete Reserved Files"
1435
- msgstr "حذف فایلها و پوشه های محافظت شده"
1436
-
1437
- #: views/tools/cleanup.php:86
1438
- msgid "Removes all installer files from a previous install"
1439
- msgstr "تمام فایل های نصب را از یک نصب قبلی حذف می کند"
1440
-
1441
- #: views/tools/cleanup.php:89
1442
- msgid "Delete Legacy Data"
1443
- msgstr "حذف داده های میراث"
1444
-
1445
- #: views/tools/cleanup.php:90
1446
- msgid "Removes all legacy data and settings prior to version"
1447
- msgstr "حذف همه داده های میراث و تنظیمات قبل از نسخه"
1448
-
1449
- #: views/tools/cleanup.php:93
1450
- msgid "Clear Build Cache"
1451
- msgstr "پاک کردن کش"
1452
-
1453
- #: views/tools/cleanup.php:94
1454
- msgid "Removes all build data from:"
1455
- msgstr "حذف همه داده ها از ساخت:"
1456
-
1457
- #: views/tools/cleanup.php:107
1458
- #, php-format
1459
- msgid "This action will remove all legacy settings prior to version %1$s. "
1460
- msgstr ""
1461
-
1462
- #: views/tools/cleanup.php:108
1463
- msgid ""
1464
- "Legacy settings are only needed if you plan to migrate back to an older "
1465
- "version of this plugin."
1466
- msgstr ""
1467
-
1468
- #: views/tools/cleanup.php:120
1469
- msgid ""
1470
- "This process will remove all build cache files. Be sure no packages are "
1471
- "currently building or else they will be cancelled."
1472
- msgstr ""
1473
-
1474
- #: views/tools/controller.php:16
1475
- msgid "Logging"
1476
- msgstr "گزارشات"
1477
-
1478
- #: views/tools/controller.php:18
1479
- msgid "Cleanup"
1480
- msgstr "گزارش های پاکسازی"
1481
-
1482
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1483
- msgid "unknow"
1484
- msgstr ""
1485
-
1486
- #: views/tools/diagnostics.php:39
1487
- msgid "Plugin settings reset."
1488
- msgstr "بازگشت به تنظیمات اولیه"
1489
-
1490
- #: views/tools/diagnostics.php:40
1491
- msgid "View state settings reset."
1492
- msgstr "تنظیمات بازنشانی شد"
1493
-
1494
- #: views/tools/diagnostics.php:41
1495
- msgid "Active package settings reset."
1496
- msgstr "تنظیم مجدد تنظیمات فعال بسته."
1497
-
1498
- #: views/tools/diagnostics.php:81
1499
- msgid "Server Settings"
1500
- msgstr "تنظیمات سرور"
1501
-
1502
- #: views/tools/diagnostics.php:90
1503
- msgid "Duplicator Version"
1504
- msgstr "نسخه ایجاد کننده بسته نصبی"
1505
-
1506
- #: views/tools/diagnostics.php:94
1507
- msgid "Operating System"
1508
- msgstr "سیستم عامل"
1509
-
1510
- #: views/tools/diagnostics.php:98
1511
- msgid "Timezone"
1512
- msgstr "منطقه زمانی"
1513
-
1514
- #: views/tools/diagnostics.php:102
1515
- msgid "Server Time"
1516
- msgstr "زمان سرور"
1517
-
1518
- #: views/tools/diagnostics.php:110
1519
- msgid "APC Enabled"
1520
- msgstr "APC فعال"
1521
-
1522
- #: views/tools/diagnostics.php:114
1523
- msgid "Root Path"
1524
- msgstr "مسیر ریشه"
1525
-
1526
- #: views/tools/diagnostics.php:118
1527
- msgid "ABSPATH"
1528
- msgstr "مسیر کامل دایرکتوری وردپرس"
1529
-
1530
- #: views/tools/diagnostics.php:122
1531
- msgid "Plugins Path"
1532
- msgstr "مسیر پلاگین ها"
1533
-
1534
- #: views/tools/diagnostics.php:126
1535
- msgid "Loaded PHP INI"
1536
- msgstr "مسیر php.ini"
1537
-
1538
- #: views/tools/diagnostics.php:130
1539
- msgid "Server IP"
1540
- msgstr "آی پی سرور"
1541
-
1542
- #: views/tools/diagnostics.php:134
1543
- msgid "Client IP"
1544
- msgstr "آی پی کاربر"
1545
-
1546
- #: views/tools/diagnostics.php:145
1547
- msgid "Langugage"
1548
- msgstr "زبان"
1549
-
1550
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
1551
- msgid "Charset"
1552
- msgstr "انکودینگ"
1553
-
1554
- #: views/tools/diagnostics.php:153
1555
- msgid "Memory Limit "
1556
- msgstr "محدوديت حافظه وردپرس"
1557
-
1558
- #: views/tools/diagnostics.php:154
1559
- msgid "Max"
1560
- msgstr "بیشترین"
1561
-
1562
- #: views/tools/diagnostics.php:172
1563
- msgid "Safe Mode"
1564
- msgstr ""
1565
-
1566
- #: views/tools/diagnostics.php:176
1567
- msgid "On"
1568
- msgstr "روشن"
1569
-
1570
- #: views/tools/diagnostics.php:176
1571
- msgid "Off"
1572
- msgstr "خاموش"
1573
-
1574
- #: views/tools/diagnostics.php:181
1575
- msgid "Memory Limit"
1576
- msgstr "محدوديت حافظه"
1577
-
1578
- #: views/tools/diagnostics.php:185
1579
- msgid "Memory In Use"
1580
- msgstr "حافظه در حال استفاده"
1581
-
1582
- #: views/tools/diagnostics.php:193
1583
- msgid "Shell Exec"
1584
- msgstr ""
1585
-
1586
- #: views/tools/diagnostics.php:194
1587
- msgid "Is Supported"
1588
- msgstr "پشتیبانی می شود"
1589
-
1590
- #: views/tools/diagnostics.php:194
1591
- msgid "Not Supported"
1592
- msgstr "پشتیبانی نمی شود"
1593
-
1594
- #: views/tools/diagnostics.php:208
1595
- msgid "Wait Timeout"
1596
- msgstr "زمان تمام شدن"
1597
-
1598
- #: views/tools/diagnostics.php:212
1599
- msgid "Max Allowed Packets"
1600
- msgstr "حداکثر مجاز بسته"
1601
-
1602
- #: views/tools/diagnostics.php:216
1603
- msgid "msyqldump Path"
1604
- msgstr "مسیر msyqldump"
1605
-
1606
- #: views/tools/diagnostics.php:220
1607
- msgid "Server Disk"
1608
- msgstr "دیسک سرویس دهنده"
1609
-
1610
- #: views/tools/diagnostics.php:223
1611
- msgid "Free space"
1612
- msgstr "فضای خالی"
1613
-
1614
- #: views/tools/diagnostics.php:226
1615
- msgid "Note: This value is the physical servers hard-drive allocation."
1616
- msgstr "توجه: این مقدار تخصیص هارد دیسک سرور فیزیکی است."
1617
-
1618
- #: views/tools/diagnostics.php:227
1619
- msgid ""
1620
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
1621
- "value."
1622
- msgstr ""
1623
- "در میزبان مشترک کنترل پنل خود را برای ارزش ظرفیت فضای دیسک 'واقعی' را بررسی "
1624
- "کنید."
1625
-
1626
- #: views/tools/diagnostics.php:243
1627
- msgid "Stored Data"
1628
- msgstr "داده های ذخیره شده"
1629
-
1630
- #: views/tools/diagnostics.php:248
1631
- msgid "Options Values"
1632
- msgstr "تنظیمات"
1633
-
1634
- #: views/tools/diagnostics.php:281
1635
- msgid "PHP Information"
1636
- msgstr "اطلاعات مربوط به پی اچ پی"
1637
-
1638
- #: views/tools/diagnostics.php:300
1639
- msgid "Delete this option value"
1640
- msgstr "حذف مقادیر این تنظیمات"
1641
-
1642
- #: views/tools/logging.php:140
1643
- msgid "Log file not found or unreadable"
1644
- msgstr ""
1645
- "فایل گزارشات یافت نشد یا قابل خواندن نیست و احتمال می رود که مشکلی در حال "
1646
- "حاظر وجود نداشته که گزارش شود."
1647
-
1648
- #: views/tools/logging.php:142
1649
- msgid ""
1650
- "Try to create a package, since no log files were found in the snapshots "
1651
- "directory with the extension *.log"
1652
- msgstr ""
1653
- "سعی کنید به ایجاد یک بسته، بدون ورود به سیستم فایل در دایرکتوری فوری با فرمت "
1654
- "*.log یافت شد"
1655
-
1656
- #: views/tools/logging.php:144
1657
- msgid "Reasons for log file not showing"
1658
- msgstr "دلایلی برای نمایش ندادن فایل گزارشات"
1659
-
1660
- #: views/tools/logging.php:145
1661
- msgid "The web server does not support returning .log file extentions"
1662
- msgstr ""
1663
- "سرور وب شما از پسوند .log پشتیبانی نمی کند. بنا بر این می توانید به سرور خود "
1664
- "اطلاع دهید تا مشکل را بررسی و رفع نمایند"
1665
-
1666
- #: views/tools/logging.php:146
1667
- msgid ""
1668
- "The snapshots directory does not have the correct permissions to write "
1669
- "files. Try setting the permissions to 755"
1670
- msgstr ""
1671
- "احتمالا دایکرکتوری wp-snapshots سطح دسترسی لازم را ندارد برای نوشتن را "
1672
- "ندارد. بنا بر این به هاست خود بروید و سطح دسترسی این پوشه را روی 755 تنظیم "
1673
- "کنید"
1674
-
1675
- #: views/tools/logging.php:147
1676
- msgid ""
1677
- "The process that PHP runs under does not have enough permissions to create "
1678
- "files. Please contact your hosting provider for more details"
1679
- msgstr ""
1680
- "پی اچی پی امکان اجرای دستورات لازم را ندارد بنا بر این با هاستینگ خود تماس "
1681
- "بگیرید و مشکل را جهت رفع آن ارجاع دهید"
1682
-
1683
- #: views/tools/logging.php:156 views/tools/logging.php:161
1684
- msgid "Options"
1685
- msgstr "تنظیمات"
1686
-
1687
- #: views/tools/logging.php:163
1688
- msgid "Refresh"
1689
- msgstr "بازسازی"
1690
-
1691
- #: views/tools/logging.php:168
1692
- msgid "Auto Refresh"
1693
- msgstr "بازسازی اتوماتیک"
1694
-
1695
- #: views/tools/logging.php:174
1696
- msgid "Last 20 Logs"
1697
- msgstr "20 گزارش اخیر"
1698
-
1699
- #. Plugin Name of the plugin/theme
1700
- msgid "Duplicator"
1701
- msgstr "ایجاد کننده بسته نصبی"
1702
-
1703
- #. Plugin URI of the plugin/theme
1704
- msgid "http://www.lifeinthegrid.com/duplicator/"
1705
- msgstr ""
1706
-
1707
- #. Description of the plugin/theme
1708
- msgid ""
1709
- "Create a backup of your WordPress files and database. Duplicate and move an "
1710
- "entire site from one location to another in a few steps. Create a full "
1711
- "snapshot of your site at any point in time."
1712
- msgstr ""
1713
-
1714
- #. Author of the plugin/theme
1715
- msgid "LifeInTheGrid"
1716
- msgstr ""
1717
-
1718
- #. Author URI of the plugin/theme
1719
- msgid "http://www.lifeinthegrid.com"
1720
- msgstr ""
1721
-
1722
- #~ msgid "PHP Version:"
1723
- #~ msgstr "نسخه پی اچ پی"
1724
-
1725
- #~ msgid "Backup and Move Made Easy!"
1726
- #~ msgstr "پشتیبان گیری و حرکت آسان ساخته شده!"
1727
-
1728
- #~ msgid "The top-rated Duplicator plugin is going professional!"
1729
- #~ msgstr "دارای امتیاز بالا تکثیر پلاگین حرفه ای می گذرد!"
1730
-
1731
- #~ msgid "Schedules"
1732
- #~ msgstr "زمان‌بندی"
1733
-
1734
- #~ msgid "Custom Templates"
1735
- #~ msgstr "قالب های سفارشی"
1736
-
1737
- #~ msgid "Cloud Storage"
1738
- #~ msgstr "ذخیره سازی ابری"
1739
-
1740
- #~ msgid "Queued Processing"
1741
- #~ msgstr "صف پردازش"
1742
-
1743
- #~ msgid "Pass"
1744
- #~ msgstr "همه چیز مورد تایید می باشد"
1745
-
1746
- #~ msgid "Fail"
1747
- #~ msgstr "مواردی مورد تایید نمی باشد"
1748
-
1749
- #~ msgid "Format"
1750
- #~ msgstr "نوع"
1751
-
1752
- #~ msgid "localhost"
1753
- #~ msgstr ""
1754
- #~ "سرور محلی مثال ( localhost یا 127.0.0.1 یا آی پی که هاستینگ برای لوکال "
1755
- #~ "هاست به شما داده )"
1756
-
1757
- #~ msgid "mydatabaseName"
1758
- #~ msgstr "نام پایگاه داده"
1759
-
1760
- #~ msgid "databaseUserName"
1761
- #~ msgstr "نام کاربری پایگاه داده"
1762
-
1763
- #~ msgid "http://mynewsite.com"
1764
- #~ msgstr "https://www.amoozesh98.com"
1765
-
1766
- #~ msgid "PHP Settings"
1767
- #~ msgstr "تنظیمات پی اچ پی"
1768
-
1769
- #~ msgid "WordPress Settings"
1770
- #~ msgstr "تنظیمات وردپرس"
1771
-
1772
- #~ msgid "Missing"
1773
- #~ msgstr "گم"
1774
-
1775
- #~ msgid "Invalid Names"
1776
- #~ msgstr "نامهای بی اعتبار"
1777
-
1778
- #~ msgid "No name length issues."
1779
- #~ msgstr "بدون مسائل طول نام."
1780
-
1781
- #~ msgid "Support"
1782
- #~ msgstr "پشتیبانی"
1783
-
1784
- #~ msgid "Yes"
1785
- #~ msgstr "بله"
1786
-
1787
- #~ msgid "No"
1788
- #~ msgstr "نه"
1789
-
1790
- #~ msgid "PHP"
1791
- #~ msgstr "پی اچ پی"
1792
-
1793
- #~ msgid "MySQL"
1794
- #~ msgstr "مای اس کیوال"
1795
-
1796
- #~ msgid "Good"
1797
- #~ msgstr "خوب"
1798
-
1799
- #~ msgid "Warn"
1800
- #~ msgstr ""
1801
- #~ "اخطار ( البته به این معنی نمی باشد که مشکل در ایجاد بسته نصبی وجود خواهد "
1802
- #~ "داشت )"
1803
-
1804
- #~ msgid "unable to read"
1805
- #~ msgstr "قادر به خواندن نمی باشم"
1806
-
1807
- #~ msgid "Goods"
1808
- #~ msgstr "خوب"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wpduplicator-fr_FR.mo DELETED
Binary file
lang/wpduplicator-fr_FR.po DELETED
@@ -1,2608 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPDuplicator v0.5.23\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
5
- "POT-Creation-Date: 2015-07-26 23:57+0200\n"
6
- "PO-Revision-Date: 2015-07-26 23:57+0200\n"
7
- "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
8
- "Language-Team: Nicolas Richer <contact@nicolasricher.fr>\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
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
- "X-Generator: Poedit 1.8.2\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Textdomain-Support: yes\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: assets\n"
24
-
25
- #: classes/ui.php:111
26
- msgid ""
27
- "Reserved Duplicator install file(s) still exists in the root directory. "
28
- "Please delete these file(s) to avoid possible security issues."
29
- msgstr ""
30
- "Les fichiers d&#39;installation de Duplicator sont toujours présents à la "
31
- "racine de votre serveur. Merci de supprimer ces fichiers pour éviter toute "
32
- "faille de sécurité."
33
-
34
- #: classes/ui.php:112
35
- msgid "Remove file(s) now"
36
- msgstr "Supprimer les fichiers maintenant"
37
-
38
- #: classes/ui.php:113
39
- msgid "Dismiss this notice"
40
- msgstr "Masquer ce message"
41
-
42
- #: classes/utility.php:249
43
- msgid "You do not have sufficient permissions to access this page."
44
- msgstr "Vous n&#39;avez pas les droits suffisants pour accéder à cette page"
45
-
46
- #: duplicator.php:102
47
- msgid "Get Help"
48
- msgstr "Contactez le support"
49
-
50
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
51
- msgid "Help"
52
- msgstr "Support"
53
-
54
- #: duplicator.php:103
55
- msgid "Support the Plugin"
56
- msgstr "Aidez le plugin"
57
-
58
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
59
- msgid "About"
60
- msgstr "A propos"
61
-
62
- #: duplicator.php:179 views/packages/controller.php:76
63
- #: views/packages/list.base.php:235
64
- msgid "Packages"
65
- msgstr "Paquets"
66
-
67
- #: duplicator.php:183 views/settings/controller.php:19
68
- msgid "Settings"
69
- msgstr "Paramètres"
70
-
71
- #: duplicator.php:187 views/tools/controller.php:13
72
- msgid "Tools"
73
- msgstr "Outils"
74
-
75
- #: duplicator.php:246
76
- msgid "Manage"
77
- msgstr "Gérer"
78
-
79
- #: views/help/about.php:54
80
- msgid ""
81
- "Created for Admins, Developers and Designers the Duplicator can streamline "
82
- "your workflows and help you quickly clone a WordPress application. "
83
- "Migrating a WordPress site manually can be very time consuming. The "
84
- "Duplicator was made to help you speed up the migration process. Please help "
85
- "us to continue the development effort of this plugin."
86
- msgstr ""
87
- "Créé pour les webmasters, développeurs et designers, Duplicator va accélérer "
88
- "votre travail en vous permettant de cloner rapidement une installation "
89
- "WordPress. Faire une migration manuelle peut vite devenir très long, c&#39;"
90
- "est pourquoi Duplicator vient l&#39;automatiser. Merci de nous aider pour "
91
- "continuer les efforts de développement du plugin."
92
-
93
- #: views/help/about.php:64
94
- msgid "Support Duplicator"
95
- msgstr "Aide de Duplicator"
96
-
97
- #: views/help/about.php:71
98
- msgid "Partner with Us"
99
- msgstr "Soutenez-nous"
100
-
101
- #: views/help/about.php:83
102
- msgid "Keep Active and Online"
103
- msgstr "Pour que Duplicator soit activement développé"
104
-
105
- #: views/help/about.php:90
106
- msgid "Leave 5 Stars"
107
- msgstr "Nous donner 5 Étoiles"
108
-
109
- #: views/help/about.php:107
110
- msgid "Spread the Word"
111
- msgstr "Faites passer le mot"
112
-
113
- #: views/help/about.php:113
114
- msgid "Duplicate Your WordPress"
115
- msgstr "Dupliquer votre WordPress"
116
-
117
- #: views/help/about.php:114
118
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
119
- msgstr "Duplication Rapide WordPress par LifeInTheGrid.com"
120
-
121
- #: views/help/about.php:131
122
- msgid "Get More Great Tools"
123
- msgstr "Obtenez d&#39;autres Super Outils"
124
-
125
- #: views/help/gopro.php:37
126
- msgid "Go Pro!"
127
- msgstr "Version Premium"
128
-
129
- #: views/help/gopro.php:46
130
- msgid "Duplicator Pro Has Arrived!"
131
- msgstr "Duplicator Pro est arrivé !"
132
-
133
- #: views/help/gopro.php:49
134
- msgid "The simplicity of Duplicator"
135
- msgstr "La simplicité de Duplicator"
136
-
137
- #: views/help/gopro.php:50
138
- msgid "with the power the professional requires."
139
- msgstr "avec la puissance dont les pros ont besoin."
140
-
141
- #: views/help/gopro.php:57
142
- msgid "Duplicator Free"
143
- msgstr "Duplicator Gratuit"
144
-
145
- #: views/help/gopro.php:60 views/help/gopro.php:88
146
- msgid "Backup Files &amp; Database"
147
- msgstr "Sauvegarde des Fichiers &amp; de la Base de Données"
148
-
149
- #: views/help/gopro.php:61 views/help/gopro.php:89
150
- msgid ""
151
- "Compresses all your WordPress files and database into a compressed snapshot "
152
- "archive file."
153
- msgstr ""
154
- "Compresse les fichiers WordPress ainsi que la base de données dans un "
155
- "instantané"
156
-
157
- #: views/help/gopro.php:64 views/help/gopro.php:92
158
- msgid "Directory Filters"
159
- msgstr "Filtres de Répertoire"
160
-
161
- #: views/help/gopro.php:65 views/help/gopro.php:93
162
- msgid ""
163
- "Filter out the directories and file extensions you want to include/exclude "
164
- "in your in your archive file."
165
- msgstr ""
166
- "Filtrez les répertoires et les extensions de fichiers que vous souhaitez "
167
- "inclure ou exclure de votre instantané."
168
-
169
- #: views/help/gopro.php:68 views/help/gopro.php:96
170
- msgid "Database Table Filters"
171
- msgstr "Filtres des Tables de la Base de Données"
172
-
173
- #: views/help/gopro.php:69 views/help/gopro.php:97
174
- msgid ""
175
- "Filter out only the database tables you want to include/exclude in your "
176
- "database creation script."
177
- msgstr ""
178
- "Filtrez les tables de la base de données que vous souhaitez inclure/exclure "
179
- "de votre instantané."
180
-
181
- #: views/help/gopro.php:72 views/help/gopro.php:100
182
- msgid "Migration Wizard"
183
- msgstr "Assistant de Migration"
184
-
185
- #: views/help/gopro.php:73 views/help/gopro.php:101
186
- msgid ""
187
- "With just two files (archive &amp; installer.php) move your site to a new "
188
- "location."
189
- msgstr ""
190
- "Avec seulement deux fichiers (archive &amp; installer.php) vous pourrez "
191
- "déplacer votre site à un autre emplacement."
192
-
193
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
194
- msgid "Duplicator Pro"
195
- msgstr "Duplicator Pro"
196
-
197
- #: views/help/gopro.php:104
198
- msgid "Scheduled Backups"
199
- msgstr "Sauvegardes Planifiées"
200
-
201
- #: views/help/gopro.php:105
202
- msgid ""
203
- "Automate the creation of your packages to run at various scheduled intervals."
204
- msgstr "Automatisez la création de vos paquets à intervalles réguliers"
205
-
206
- #: views/help/gopro.php:108
207
- msgid "Dropbox Support"
208
- msgstr "Compatibilité avec Dropbox"
209
-
210
- #: views/help/gopro.php:109
211
- msgid "Backup up your entire site to Dropbox."
212
- msgstr "Sauvegardez votre site sur Dropbox."
213
-
214
- #: views/help/gopro.php:112
215
- msgid "FTP Support"
216
- msgstr "Compatibilité FTP"
217
-
218
- #: views/help/gopro.php:113
219
- msgid "Backup up your entire site to an FTP server."
220
- msgstr "Sauvegardez votre site sur un serveur FTP externe."
221
-
222
- #: views/help/gopro.php:116
223
- msgid "Customer Support"
224
- msgstr "Support Client"
225
-
226
- #: views/help/gopro.php:117
227
- msgid ""
228
- "Server setups can be quite complex, with pro you get prompt help to get your "
229
- "site backed up and moved."
230
- msgstr ""
231
- "La configuration de serveurs peut être complexe. Avec la version Pro vous "
232
- "obtenez une assistance pour vous aider à sauvegarder et déplacer votre site."
233
-
234
- #: views/help/gopro.php:124
235
- msgid "Check It Out!"
236
- msgstr "Jetez-y un oeil !"
237
-
238
- #: views/help/help.php:38
239
- msgid ""
240
- "Migrating WordPress is a complex process and the logic to make all the magic "
241
- "happen smoothly may not work quickly with every site. With over 30,000 "
242
- "plugins and a very complex server eco-system some migrations may run into "
243
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
244
- "can help with many common issues. Resources to additional support, approved "
245
- "hosting, and alternatives to fit your needs can be found below."
246
- msgstr ""
247
- "Migrer un site WordPress est un processus complexe et il n&#39;est pas "
248
- "facile de rendre cette opération rapide à 100%. Avec plus de 30 000 plugins "
249
- "et un écosystème serveur complexe, il est courant que tout ne fonctionne pas "
250
- "comme prévu. C&#39;est pourquoi Duplicator contient une documentation "
251
- "détaillée (en anglais seulement) pour vous aider à résoudre les problèmes "
252
- "les plus fréquents. Les liens pour du support additionnel (en anglais), les "
253
- "hébergeurs \"approuvés\" et les solutions alternatives se trouvent ci-"
254
- "dessous."
255
-
256
- #: views/help/help.php:50
257
- msgid "Knowledgebase"
258
- msgstr "Base de connaissances"
259
-
260
- #: views/help/help.php:53
261
- msgid "Complete Online Documentation"
262
- msgstr "Documentation en ligne"
263
-
264
- #: views/help/help.php:55
265
- msgid "Choose A Section"
266
- msgstr "Choisissez une section"
267
-
268
- #: views/help/help.php:56
269
- msgid "Quick Start"
270
- msgstr "Démarrage Rapide"
271
-
272
- #: views/help/help.php:57
273
- msgid "User Guide"
274
- msgstr "Guide Utilisateur"
275
-
276
- #: views/help/help.php:58
277
- msgid "FAQs"
278
- msgstr "FAQs"
279
-
280
- #: views/help/help.php:59
281
- msgid "Change Log"
282
- msgstr "Notes de Version"
283
-
284
- #: views/help/help.php:60
285
- msgid "Product Page"
286
- msgstr "Page Produit"
287
-
288
- #: views/help/help.php:69
289
- msgid "Online Support"
290
- msgstr "Aide en Ligne"
291
-
292
- #: views/help/help.php:72
293
- msgid "Get Help From IT Professionals"
294
- msgstr "Obtenez l&#39;aide de professionnels"
295
-
296
- #: views/help/help.php:76
297
- msgid "Get Support!"
298
- msgstr "Demandez de l&#39;aide !"
299
-
300
- #: views/help/help.php:88
301
- msgid "Approved Hosting"
302
- msgstr "Hébergeur Approuvés"
303
-
304
- #: views/help/help.php:91
305
- msgid "Servers That Work With Duplicator"
306
- msgstr "Les serveurs qui fonctionnent avec Duplicator"
307
-
308
- #: views/help/help.php:94
309
- msgid "Trusted Providers!"
310
- msgstr "Hébergeurs approuvés"
311
-
312
- #: views/help/help.php:104
313
- msgid "Alternatives"
314
- msgstr "Alternatives"
315
-
316
- #: views/help/help.php:107
317
- msgid "Other Commercial Resources"
318
- msgstr "Autres ressources (commerciales)"
319
-
320
- #: views/help/help.php:110
321
- msgid "Pro Solutions!"
322
- msgstr "Solutions Pro !"
323
-
324
- #: views/packages/list-nodata.php:7
325
- msgid "No Packages Found."
326
- msgstr "Aucun paquet trouvé."
327
-
328
- #: views/packages/list-nodata.php:8
329
- msgid "Click the 'Create New' button to build a package."
330
- msgstr "Cliquez sur l'onglet &#34;Créer Paquet&#34; pour en générer un."
331
-
332
- #: views/packages/list-nodata.php:13
333
- msgid "Please visit the"
334
- msgstr "Allez donc sur"
335
-
336
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
337
- #: views/packages/new1.base.php:234
338
- msgid "help page"
339
- msgstr "la page de support"
340
-
341
- #: views/packages/list-nodata.php:15
342
- msgid "for additional support"
343
- msgstr "pour une aide supplémentaire"
344
-
345
- #: views/packages/list-nodata.php:24
346
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
347
- msgstr ""
348
- "Les paquets antérieurs à la version 0.5.0 ne sont plus compatibles avec "
349
- "cette version."
350
-
351
- #: views/packages/list-nodata.php:27
352
- msgid "To get an older package please visit the"
353
- msgstr "Pour obtenir une version antérieure, allez donc sur "
354
-
355
- #: views/packages/list-nodata.php:29
356
- msgid "and look for the Change Log link for additional instructions."
357
- msgstr ""
358
- "et cherchez dans le Journal des Changements (Change Log) pour des "
359
- "instructions additionnelles."
360
-
361
- #: views/packages/list-nodata.php:33
362
- msgid "Hide this message"
363
- msgstr "Cacher ce message"
364
-
365
- #: views/packages/list.base.php:39
366
- msgid "Help Support Duplicator"
367
- msgstr "Centre d&#39;Aide de Duplicator"
368
-
369
- #: views/packages/list.base.php:50
370
- msgid "Bulk Actions"
371
- msgstr "Actions par lots"
372
-
373
- #: views/packages/list.base.php:51
374
- msgid "Delete selected package(s)"
375
- msgstr "Effacer le(s) paquet(s) sélectionné(s)"
376
-
377
- #: views/packages/list.base.php:51
378
- msgid "Delete"
379
- msgstr "Effacer"
380
-
381
- #: views/packages/list.base.php:53
382
- msgid "Apply"
383
- msgstr "Appliquer"
384
-
385
- #: views/packages/list.base.php:58
386
- msgid "Package Logs"
387
- msgstr "Journaux des Paquets"
388
-
389
- #: views/packages/list.base.php:61 views/packages/new1.base.php:96
390
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
391
- #: views/packages/new3.base.php:89
392
- msgid "All Packages"
393
- msgstr "Tous les Paquets"
394
-
395
- #: views/packages/list.base.php:62 views/packages/new1.base.php:97
396
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
397
- msgid "Create New"
398
- msgstr "Créer Paquet"
399
-
400
- #: views/packages/list.base.php:87
401
- msgid "Select all packages"
402
- msgstr "Sélectionner tous les paquets"
403
-
404
- #: views/packages/list.base.php:88 views/packages/new3.base.php:108
405
- msgid "Details"
406
- msgstr "Détails"
407
-
408
- #: views/packages/list.base.php:89
409
- msgid "Created"
410
- msgstr "Créé"
411
-
412
- #: views/packages/list.base.php:90 views/packages/new2.base.php:222
413
- #: views/packages/new2.base.php:334
414
- msgid "Size"
415
- msgstr "Taille"
416
-
417
- #: views/packages/list.base.php:91 views/packages/new1.inc.form.php:6
418
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
419
- msgid "Name"
420
- msgstr "Nom"
421
-
422
- #: views/packages/list.base.php:93 views/settings/general.php:110
423
- msgid "Package"
424
- msgstr "Paquet"
425
-
426
- #: views/packages/list.base.php:124
427
- msgid "(No Notes Taken)"
428
- msgstr "(Aucun note générée)"
429
-
430
- #: views/packages/list.base.php:142 views/packages/list.base.php:187
431
- msgid "View"
432
- msgstr "Voir"
433
-
434
- #: views/packages/list.base.php:147 views/packages/new1.inc.form.php:176
435
- #: views/packages/new3.base.php:79
436
- msgid "Installer"
437
- msgstr "Installeur"
438
-
439
- #: views/packages/list.base.php:150 views/packages/new1.inc.form.php:65
440
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
441
- msgid "Archive"
442
- msgstr "Archive"
443
-
444
- #: views/packages/list.base.php:155 views/packages/list.base.php:200
445
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
446
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
447
- msgid "Version"
448
- msgstr "Version"
449
-
450
- #: views/packages/list.base.php:156 views/packages/list.base.php:201
451
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
452
- msgid "User"
453
- msgstr "Utilisateur"
454
-
455
- #: views/packages/list.base.php:157 views/packages/list.base.php:202
456
- msgid "Hash"
457
- msgstr "Découpage"
458
-
459
- #: views/packages/list.base.php:158 views/packages/list.base.php:207
460
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
461
- msgid "Notes"
462
- msgstr "Notes"
463
-
464
- #: views/packages/list.base.php:160
465
- msgid "Links"
466
- msgstr "Liens"
467
-
468
- #: views/packages/list.base.php:161
469
- msgid "SQL"
470
- msgstr "SQL"
471
-
472
- #: views/packages/list.base.php:162
473
- msgid "Log"
474
- msgstr "Journal"
475
-
476
- #: views/packages/list.base.php:165
477
- msgid "Open Scan Report"
478
- msgstr "Ouvrir le Rapport de Scan"
479
-
480
- #: views/packages/list.base.php:166
481
- msgid "View Package Object"
482
- msgstr "Voir l&#39;objet du Paquet"
483
-
484
- #: views/packages/list.base.php:193
485
- msgid "View Error Details"
486
- msgstr "Voir le détail des Erreurs"
487
-
488
- #: views/packages/list.base.php:205
489
- msgid "Unrecoverable Error! Please remove this package."
490
- msgstr "Erreur : contenu non récupérable ! Merci de supprimer ce paquet."
491
-
492
- #: views/packages/list.base.php:210
493
- msgid ""
494
- "This package has encountered errors. Click 'View Log' for more details. "
495
- "For additional support see the "
496
- msgstr ""
497
- "Ce paquet a généré des erreurs. Cliquez sur &#34;Voir les Journaux&#34; pour "
498
- "plus de détails. Pour une aide supplémentaire allez donc sur"
499
-
500
- #: views/packages/list.base.php:211
501
- msgid "online knowledgebase"
502
- msgstr "notre base de connaissances en ligne"
503
-
504
- #: views/packages/list.base.php:213
505
- msgid "View Log"
506
- msgstr "Voir les Journaux"
507
-
508
- #: views/packages/list.base.php:236 views/packages/new2.base.php:219
509
- #: views/packages/new2.base.php:328
510
- msgid "Total Size"
511
- msgstr "Taille Totale"
512
-
513
- #: views/packages/list.base.php:255
514
- msgid "Download Links"
515
- msgstr "Liens de Téléchargement"
516
-
517
- #: views/packages/list.base.php:258
518
- msgid "The following links contain sensitive data. Please share with caution!"
519
- msgstr ""
520
- "Les liens suivants contiennent des informations sensibles. Partagez-les avec "
521
- "parcimonie !"
522
-
523
- #: views/packages/list.base.php:264
524
- msgid ""
525
- "The database SQL script is a quick link to your database backup script. An "
526
- "exact copy is also stored in the package."
527
- msgstr ""
528
- "Le script de base de données SQL est un lien rapide vers votre script de "
529
- "sauvegarde de base de données. Une copie exacte est également dans le paquet."
530
-
531
- #: views/packages/list.base.php:287
532
- msgid ""
533
- "Please select an action from the bulk action drop down menu to perform a "
534
- "specific action."
535
- msgstr "Merci de sélectionner une action de la liste des actions par lot"
536
-
537
- #: views/packages/list.base.php:295
538
- msgid "Please select at least one package to delete."
539
- msgstr "Merci de sélectionner au moins un paquet à effacer."
540
-
541
- #: views/packages/list.base.php:299
542
- msgid "Are you sure, you want to delete the selected package(s)?"
543
- msgstr "Êtes-vous sûr de vouloir effacer le paquet sélectionné ?"
544
-
545
- #: views/packages/list.base.php:333
546
- msgid "Package File Links"
547
- msgstr "Liens vers les Fichiers du Paquet"
548
-
549
- #: views/packages/list.base.php:336
550
- msgid "DATABASE"
551
- msgstr "BASE DE DONNEES"
552
-
553
- #: views/packages/list.base.php:337
554
- msgid "PACKAGE"
555
- msgstr "PAQUET"
556
-
557
- #: views/packages/list.base.php:338
558
- msgid "INSTALLER"
559
- msgstr "INSTALLEUR"
560
-
561
- #: views/packages/list.base.php:339
562
- msgid "LOG"
563
- msgstr "JOURNAL"
564
-
565
- #: views/packages/list.base.php:340
566
- msgid "REPORT"
567
- msgstr "RAPPORT"
568
-
569
- #: views/packages/new1.base.php:13
570
- msgid "Package settings have been reset."
571
- msgstr "Les paramètres du paquet ont été remis à zéro."
572
-
573
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
574
- #: views/packages/new3.base.php:33
575
- msgid "Setup"
576
- msgstr "Configuration"
577
-
578
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
579
- #: views/packages/new3.base.php:34
580
- msgid "Scan"
581
- msgstr "Scan"
582
-
583
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
584
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
585
- msgid "Build"
586
- msgstr "Création"
587
-
588
- #: views/packages/new1.base.php:91
589
- msgid "Step 1: Package Setup"
590
- msgstr "Étape 1 : Configurer un Paquet"
591
-
592
- #: views/packages/new1.base.php:115
593
- msgid "Requirements:"
594
- msgstr "Exigences :"
595
-
596
- #: views/packages/new1.base.php:124
597
- msgid ""
598
- "System requirements must pass for the Duplicator to work properly. Click "
599
- "each link for details."
600
- msgstr ""
601
- "Les exigences système doivent être validées pour que Duplicator fonctionne "
602
- "convenablement. Cliquez sur chaque lien pour en voir les détails."
603
-
604
- #: views/packages/new1.base.php:130
605
- msgid "PHP Support"
606
- msgstr "Support de PHP"
607
-
608
- #: views/packages/new1.base.php:136
609
- msgid "PHP Version"
610
- msgstr "Version de PHP"
611
-
612
- #: views/packages/new1.base.php:140
613
- msgid "Zip Archive Enabled"
614
- msgstr "Archivage Zip Activé"
615
-
616
- #: views/packages/new1.base.php:144
617
- msgid "Safe Mode Off"
618
- msgstr "Mode Sécurité Désactivé"
619
-
620
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
621
- #: views/packages/new1.base.php:156
622
- msgid "Function"
623
- msgstr "Fonction"
624
-
625
- #: views/packages/new1.base.php:161
626
- msgid ""
627
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
628
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
629
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
630
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
631
- "this section please contact your hosting provider or server administrator. "
632
- "For additional information see our online documentation."
633
- msgstr ""
634
- "PHP dans ses versions 5.2.17 ou supérieures est nécessaire. La logique de "
635
- "versioning de PHP fonctionne de telle façon que 5.2.9 est inférieur à "
636
- "5.2.17. Pour que la compression soit activée, l&#39;extension ZipArchive de "
637
- "PHP est requise. Le mode sécurité (Safe Mode) doit être désactivé (Off) dans "
638
- "votre fichier php.ini ; cette fonction n&#39;est plus supportée après PHP "
639
- "5.3.0. En cas de problèmes avec cette section, merci de contacter votre "
640
- "hébergeur ou administrateur système. Pour plus d&#39;informations, veuillez "
641
- "vous reporter à notre documentation en ligne."
642
-
643
- #: views/packages/new1.base.php:169
644
- msgid "Permissions"
645
- msgstr "Permissions"
646
-
647
- #: views/packages/new1.base.php:172
648
- msgid "Required Paths"
649
- msgstr "Chemins"
650
-
651
- #: views/packages/new1.base.php:183
652
- msgid ""
653
- "Permissions can be difficult to resolve on some systems. If the plugin can "
654
- "not read the above paths here are a few things to try. 1) Set the above "
655
- "paths to have permissions of 755 for directories and 644 for files. You can "
656
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
657
- "the owner/group settings for both files and directories. The PHP script "
658
- "owner and the process owner are different. The script owner owns the PHP "
659
- "script but the process owner is the user the script is running as, thus "
660
- "determining its capabilities/privileges in the file system. For more details "
661
- "contact your host or server administrator or visit the 'Help' menu under "
662
- "Duplicator for additional online resources."
663
- msgstr ""
664
- "Les permissions sont parfois difficiles à appréhender sur certains systèmes. "
665
- "Si le plugin n&#39;arrive pas à lire les chemins suivants, voici ce que vous "
666
- "pouvez essayer. 1) Passer les permissions à 755 pour les répertoires et 644 "
667
- "pour les fichiers. Vous pouvez également essayer de passer en 777 mais ne "
668
- "laissez pas ce paramètre par la suite. 2) Vérifier les paramètres de "
669
- "propriétaire ou de groupe pour les fichiers et répertoires. Le script PHP "
670
- "pour les propriétaires et groupes ne fonctionne pas de la même façon. Pour "
671
- "plus de détails, contactez votre hébergeur ou administrateur système. Vous "
672
- "pouvez également aller dans la section &#39;Aide&#39; pour des ressources "
673
- "supplémentaires."
674
-
675
- #: views/packages/new1.base.php:191
676
- msgid "Server Support"
677
- msgstr "Compatibilité avec le Serveur"
678
-
679
- #: views/packages/new1.base.php:197
680
- msgid "MySQL Version"
681
- msgstr "Version de MySQL"
682
-
683
- #: views/packages/new1.base.php:201
684
- msgid "MySQLi Support"
685
- msgstr "Compatibilité MySQLi"
686
-
687
- #: views/packages/new1.base.php:207
688
- msgid ""
689
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
690
- "the trailing 'i') is also required. Contact your server administrator and "
691
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
692
- "note in future versions support for other databases and extensions will be "
693
- "added."
694
- msgstr ""
695
- "Une version 5.0 ou supérieure de MySQL ainsi que l&#39;extension MySQLi "
696
- "(remarquez bien le &#39;i&#39;) est nécessaire. Contactez alors votre "
697
- "administrateur pour lui demander que tout soit en règle. Nous ajouterons par "
698
- "la suite la compatibilité avec d'autres bases de données et extensions."
699
-
700
- #: views/packages/new1.base.php:208
701
- msgid "more info"
702
- msgstr "plus d&#39;information"
703
-
704
- #: views/packages/new1.base.php:217
705
- msgid "Reserved Files"
706
- msgstr "Fichiers Réservés"
707
-
708
- #: views/packages/new1.base.php:221
709
- msgid ""
710
- "None of the reserved files (installer.php, installer-data.sql and installer-"
711
- "log.txt) where found from a previous install. This means you are clear to "
712
- "create a new package."
713
- msgstr ""
714
- "Aucun des fichiers &#39réservés&#39; n&#39;a été détecté (installer.php, "
715
- "installer-data.sql et installer-log.txt). Cela signifie que vous pouvez "
716
- "créer un nouveau paquet."
717
-
718
- #: views/packages/new1.base.php:224
719
- msgid ""
720
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
721
- "names are installer.php, installer-data.sql and installer-log.txt. To "
722
- "archive your data correctly please remove any of these files from your "
723
- "WordPress root directory. Then try creating your package again."
724
- msgstr ""
725
- "Un ou plusieurs fichier(s) réservé(s) a été trouvé à la racine du répertoire "
726
- "WordPress. Il se pourrait que cela soit par exemple installer.php, installer-"
727
- "data.sql ou encore installer-log.txt. Afin d&#39;archiver vos données "
728
- "correctement, merci de retirer ces fichiers du répertoire racine. Ensuite, "
729
- "essayez de créer un nouveau paquet."
730
-
731
- #: views/packages/new1.base.php:225
732
- msgid "Remove Files Now"
733
- msgstr "Supprimer les Fichiers maintenant"
734
-
735
- #: views/packages/new1.base.php:234
736
- msgid "For additional help please see the "
737
- msgstr "Pour plus d&#39;aide en ligne, allez sur"
738
-
739
- #: views/packages/new1.inc.form.php:10
740
- msgid "Create a new default name"
741
- msgstr "Créer un nouveau nom par défaut"
742
-
743
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
744
- msgid "Storage"
745
- msgstr "Stockage"
746
-
747
- #: views/packages/new1.inc.form.php:32
748
- msgid "Type"
749
- msgstr "Type"
750
-
751
- #: views/packages/new1.inc.form.php:33
752
- msgid "Location"
753
- msgstr "Emplacement"
754
-
755
- #: views/packages/new1.inc.form.php:38
756
- msgid "Default"
757
- msgstr "Défaut"
758
-
759
- #: views/packages/new1.inc.form.php:39
760
- msgid "Local"
761
- msgstr "Local"
762
-
763
- #: views/packages/new1.inc.form.php:45
764
- msgid ""
765
- "All packages including the archive, installer and SQL script are stored in "
766
- "the location above. "
767
- msgstr ""
768
- "Tous les paquets contenant l&#39archive, l'installeur et le script SQL sont "
769
- "stockés à l'emplacement ci-dessous. "
770
-
771
- #: views/packages/new1.inc.form.php:48
772
- msgid "Dropbox, FTP and other multiple storage options available in "
773
- msgstr "Dropbox, FTP et d&#39autres options de stockage sont disponibles avec "
774
-
775
- #: views/packages/new1.inc.form.php:67
776
- msgid "File filter enabled"
777
- msgstr "Filtre de fichier activé"
778
-
779
- #: views/packages/new1.inc.form.php:68
780
- msgid "Database filter enabled"
781
- msgstr "Filtre de base de données activé"
782
-
783
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
784
- msgid "Files"
785
- msgstr "Fichiers"
786
-
787
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
788
- #: views/packages/new2.base.php:312
789
- msgid "Database"
790
- msgstr "Base de Données"
791
-
792
- #: views/packages/new1.inc.form.php:90
793
- msgid "Enable File Filters"
794
- msgstr "Activer les Filtres de Fichiers"
795
-
796
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
797
- msgid "Separate all filters by semicolon"
798
- msgstr "Séparez tous les filtres par des points-virgules"
799
-
800
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
801
- msgid "Directories"
802
- msgstr "Répertoires"
803
-
804
- #: views/packages/new1.inc.form.php:96
805
- msgid "root path"
806
- msgstr "Chemin vers la Racine"
807
-
808
- #: views/packages/new1.inc.form.php:97
809
- msgid "wp-uploads"
810
- msgstr "wp-uploads"
811
-
812
- #: views/packages/new1.inc.form.php:98
813
- msgid "cache"
814
- msgstr "cache"
815
-
816
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
817
- msgid "(clear)"
818
- msgstr "(effacer)"
819
-
820
- #: views/packages/new1.inc.form.php:102
821
- msgid "File extensions"
822
- msgstr "Extensions de Fichiers"
823
-
824
- #: views/packages/new1.inc.form.php:104
825
- msgid "media"
826
- msgstr "media"
827
-
828
- #: views/packages/new1.inc.form.php:105
829
- msgid "archive"
830
- msgstr "archive"
831
-
832
- #: views/packages/new1.inc.form.php:111
833
- msgid ""
834
- "The directory paths and extensions above will be be excluded from the "
835
- "archive file if enabled is checked."
836
- msgstr ""
837
- "Les chemins vers le répertoire et les extensions ci-dessous seront exclus de "
838
- "l&#39;archive si vous cochez la case &#34;activer&#34;"
839
-
840
- #: views/packages/new1.inc.form.php:112
841
- msgid "Use the full path for directories and semicolons to separate all items."
842
- msgstr ""
843
- "Utilisez le chemin complet pour les répertoires et des points virgules pour "
844
- "séparer les fichiers."
845
-
846
- #: views/packages/new1.inc.form.php:123
847
- msgid "Enable Table Filters"
848
- msgstr "Activer les Filtres de Tables"
849
-
850
- #: views/packages/new1.inc.form.php:124
851
- msgid "checked tables are excluded"
852
- msgstr "les tables cochées seront exclues"
853
-
854
- #: views/packages/new1.inc.form.php:129
855
- msgid "Include All"
856
- msgstr "Tout Inclure"
857
-
858
- #: views/packages/new1.inc.form.php:130
859
- msgid "Exclude All"
860
- msgstr "Tout Exclure"
861
-
862
- #: views/packages/new1.inc.form.php:163
863
- msgid ""
864
- "Checked tables will not be added to the database script. Excluding certain "
865
- "tables can possibly cause your site or plugins to not work correctly after "
866
- "install!"
867
- msgstr ""
868
- "Les tables sélectionnées ne seront pas ajoutées au script de la base de "
869
- "données. Exclure certaines tables peut potentiellement empêcher votre ou vos "
870
- "plugins de ne pas fonctionner correctement après l&#39;installation !"
871
-
872
- #: views/packages/new1.inc.form.php:181
873
- msgid "STEP 1 - INPUTS"
874
- msgstr "ÉTAPE 1 - DONNÉES"
875
-
876
- #: views/packages/new1.inc.form.php:184
877
- msgid "MySQL Server"
878
- msgstr "Serveur MySQL"
879
-
880
- #: views/packages/new1.inc.form.php:187
881
- msgid "Host"
882
- msgstr "Adresse"
883
-
884
- #: views/packages/new1.inc.form.php:191
885
- msgid "Host Port"
886
- msgstr "Port de l&#39hébergement"
887
-
888
- #: views/packages/new1.inc.form.php:203
889
- msgid "Advanced Options"
890
- msgstr "Options Avancées"
891
-
892
- #: views/packages/new1.inc.form.php:209
893
- msgid "SSL"
894
- msgstr "SSL"
895
-
896
- #: views/packages/new1.inc.form.php:212
897
- msgid "Enforce on Admin"
898
- msgstr "Forcer à l&#39;administration"
899
-
900
- #: views/packages/new1.inc.form.php:216
901
- msgid "Enforce on Logins"
902
- msgstr "Forcer aux connexions"
903
-
904
- #: views/packages/new1.inc.form.php:220
905
- msgid "Cache"
906
- msgstr "Cache"
907
-
908
- #: views/packages/new1.inc.form.php:223
909
- msgid "Keep Enabled"
910
- msgstr "Garder Activé"
911
-
912
- #: views/packages/new1.inc.form.php:227
913
- msgid "Keep Home Path"
914
- msgstr "Garder le chemin de l&#39;accueil"
915
-
916
- #: views/packages/new1.inc.form.php:235
917
- msgid "STEP 2 - INPUTS"
918
- msgstr "ÉTAPE 2 - DONNÉES"
919
-
920
- #: views/packages/new1.inc.form.php:239
921
- msgid "New URL"
922
- msgstr "Nouvelle URL"
923
-
924
- #: views/packages/new1.inc.form.php:245
925
- msgid "The installer can have these fields pre-filled at install time."
926
- msgstr ""
927
- "L&#39;installer peut avoir ces champs pré-remplis lors de l&#39;installation."
928
-
929
- #: views/packages/new1.inc.form.php:245
930
- msgid "All values are optional."
931
- msgstr "Toutes ces valeurs sont facultatives."
932
-
933
- #: views/packages/new1.inc.form.php:254
934
- msgid "Reset"
935
- msgstr "Remise à zéro"
936
-
937
- #: views/packages/new1.inc.form.php:255
938
- msgid "Next"
939
- msgstr "Suivant"
940
-
941
- #: views/packages/new1.inc.form.php:267
942
- msgid ""
943
- "This will reset all of the current package settings. Would you like to "
944
- "continue?"
945
- msgstr ""
946
- "Cela va remettre à zéro tous les paramètres du paquet en cours. Voulez-vous "
947
- "continuer ?"
948
-
949
- #: views/packages/new2.base.php:64
950
- msgid "Step 2: System Scan"
951
- msgstr "Étape 2 : Scan du Système"
952
-
953
- #: views/packages/new2.base.php:81
954
- msgid "Scanning Site"
955
- msgstr "Scan en cours"
956
-
957
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
958
- msgid "Please Wait..."
959
- msgstr "Merci de patienter..."
960
-
961
- #: views/packages/new2.base.php:89
962
- msgid "Scan Complete"
963
- msgstr "Scan Terminé"
964
-
965
- #: views/packages/new2.base.php:91
966
- msgid ""
967
- "Scan checks are not required to pass, however they could cause issues on "
968
- "some systems."
969
- msgstr ""
970
- "Il n&#39;est pas nécessaire que tous les résultats du scan soient positifs, "
971
- "cependant cela pourrait poser des problèmes sur certains systèmes."
972
-
973
- #: views/packages/new2.base.php:92
974
- msgid "Process Time:"
975
- msgstr "Durée du Processus :"
976
-
977
- #: views/packages/new2.base.php:101
978
- msgid "Server"
979
- msgstr "Serveur"
980
-
981
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
982
- msgid "Diagnostics"
983
- msgstr "Diagnostics"
984
-
985
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
986
- #: views/tools/diagnostics.php:106
987
- msgid "Web Server"
988
- msgstr "Serveur Web"
989
-
990
- #: views/packages/new2.base.php:119
991
- msgid "Supported web servers:"
992
- msgstr "Serveurs web compatibles :"
993
-
994
- #: views/packages/new2.base.php:129
995
- msgid "PHP Setup"
996
- msgstr "Configuration PHP"
997
-
998
- #: views/packages/new2.base.php:135
999
- msgid "Open Base Dir"
1000
- msgstr "Ouvrir le Répertoire de Base"
1001
-
1002
- #: views/packages/new2.base.php:137
1003
- msgid ""
1004
- "Issues might occur when [open_basedir] is enabled. Work with your server "
1005
- "admin to disable this value in the php.ini file if you’re having issues "
1006
- "building a package."
1007
- msgstr ""
1008
- "Duplicator peut rencontrer des problèmes quand [open_basedir] est activé. "
1009
- "Merci de voir avec votre administrateur réseau s&#39;il peut désactiver "
1010
- "cette fonction dans le fichier php.ini, si vous avez des problèmes pour "
1011
- "générer des paquets."
1012
-
1013
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
1014
- #: views/packages/new2.base.php:155
1015
- msgid "details"
1016
- msgstr "détails"
1017
-
1018
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
1019
- msgid "Max Execution Time"
1020
- msgstr "Temps Maximum d&#39;Exécution"
1021
-
1022
- #: views/packages/new2.base.php:145
1023
- #, php-format
1024
- msgid ""
1025
- "Issues might occur for larger packages when the [max_execution_time] value "
1026
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
1027
- "seconds or higher. An attempt is made to override this value if the server "
1028
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
1029
- msgstr ""
1030
- "Duplicator peut rencontrer des problèmes quand la valeur de "
1031
- "[max_execution_time] dans le fichier php.ini est trop faible. La valeur "
1032
- "recommandée est de \"%1$s\" secondes ou plus. Si le serveur l&#39;autorise, "
1033
- "le plugin va essayer de forcer cette valeur. Une valeur de 0 (recommandé) "
1034
- "signifie qu&#39il n'y a pas de limite temporelle du côté de PHP."
1035
-
1036
- #: views/packages/new2.base.php:147
1037
- msgid ""
1038
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
1039
- "timeout passes and you still see a build interrupt messages, then your web "
1040
- "server could be killing the process. If you are limited on processing "
1041
- "time, consider using the database or file filters to shrink the size of your "
1042
- "overall package. However use caution as excluding the wrong resources can "
1043
- "cause your install to not work properly."
1044
- msgstr ""
1045
- "Note : Le timeout peut également être utilisé comme couche de serveur. Si le "
1046
- "timeout maximum PHP est atteint et que voyez encore des messages d&#39;"
1047
- "interruption dans le processus de création de paquet, alors votre serveur "
1048
- "doit tuer notre processus. Si vous êtes limités par ce temps de latence, "
1049
- "essayez donc d&#39;utiliser les filtres de base de données ou de fichiers "
1050
- "afin de diminuer la taille du paquet final. Cependant, faites attention : "
1051
- "exclure les mauvaises ressources pourrait empêcher votre installation de "
1052
- "fonctionner correctement."
1053
-
1054
- #: views/packages/new2.base.php:152
1055
- msgid "MySQLi"
1056
- msgstr "MySQLi"
1057
-
1058
- #: views/packages/new2.base.php:154
1059
- msgid ""
1060
- "Creating the package does not require the mysqli module. However the "
1061
- "installer.php file requires that the PHP module mysqli be installed on the "
1062
- "server it is deployed on."
1063
- msgstr ""
1064
- "La création du paquet ne nécessite pas le modyle mysqli. Cependant le "
1065
- "fichier installer.php requiert que mysqli soit installé sur le serveur "
1066
- "utilisé pour le déploiement."
1067
-
1068
- #: views/packages/new2.base.php:164
1069
- msgid "WordPress"
1070
- msgstr "WordPress"
1071
-
1072
- #: views/packages/new2.base.php:169
1073
- msgid "WordPress Version"
1074
- msgstr "Version de WordPress"
1075
-
1076
- #: views/packages/new2.base.php:171
1077
- #, php-format
1078
- msgid ""
1079
- "It is recommended to have a version of WordPress that is greater than %1$s"
1080
- msgstr ""
1081
- "Nous vous recommandons d&#39;avoir une version de WordPress supérieure à %1$s"
1082
-
1083
- #: views/packages/new2.base.php:175
1084
- msgid "Core Files"
1085
- msgstr "Fichiers Source"
1086
-
1087
- #: views/packages/new2.base.php:177
1088
- msgid ""
1089
- "If the scanner is unable to locate the wp-config.php file in the root "
1090
- "directory, then you will need to manually copy it to its new location."
1091
- msgstr ""
1092
- "Si le scanner n&#39;est pas en mesure de trouver le fichier wp-config.php "
1093
- "dans le répertoire racine alors vous devrez le copier manuellement à son "
1094
- "nouvel emplacement."
1095
-
1096
- #: views/packages/new2.base.php:183
1097
- msgid "Cache Path"
1098
- msgstr "Chemin du Cache"
1099
-
1100
- #: views/packages/new2.base.php:185
1101
- msgid ""
1102
- "Cached data will lead to issues at install time and increases your archive "
1103
- "size. It is recommended to empty your cache directory at build time. Use "
1104
- "caution when removing data from the cache directory. If you have a cache "
1105
- "plugin review the documentation for how to empty it; simply removing files "
1106
- "might cause errors on your site. The cache size minimum threshold is "
1107
- "currently set at "
1108
- msgstr ""
1109
- "Les données en cache risquent d&#39;entrainer des problèmes influant sur le "
1110
- "temps d&#39;installation et la taille de l&#39;archive. Il est fortement "
1111
- "recommandé de vider votre répertoire de cache avant de créer un paquet. "
1112
- "Faites tout de même attention quand vous retirez des données du répertoire "
1113
- "de cache. Si vous utilisez un plugin de cache, merci de suivre leurs "
1114
- "instructions pour désinstaller proprement et vider les fichiers en cache. "
1115
- "Supprimer manuellement les fichiers de cache pourrait poser des conflits "
1116
- "avec d&#39;autres plugins par la suite. La limite de taille minimale de "
1117
- "cache est actuellement fixée à "
1118
-
1119
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1120
- msgid "Enabled"
1121
- msgstr "Activé"
1122
-
1123
- #: views/packages/new2.base.php:223
1124
- msgid "File Count"
1125
- msgstr "Nombre de Fichiers"
1126
-
1127
- #: views/packages/new2.base.php:224
1128
- msgid "Directory Count"
1129
- msgstr "Nombre de Répertoires"
1130
-
1131
- #: views/packages/new2.base.php:227
1132
- #, php-format
1133
- msgid ""
1134
- "Total size represents all files minus any filters that have been setup. The "
1135
- "current thresholds that trigger warnings are %1$s for the entire site and "
1136
- "%2$s for large files."
1137
- msgstr ""
1138
- "La taille totale représente tous les fichiers à l&#39;exception de ceux "
1139
- "exclus par vos soins. Le seuil actuel qui déclenche les avertissements est "
1140
- "de %1$s pour le site entier et de %2$s pour les fichiers volumineux."
1141
-
1142
- #: views/packages/new2.base.php:239
1143
- msgid "Name Checks"
1144
- msgstr "Vérification des Noms"
1145
-
1146
- #: views/packages/new2.base.php:244
1147
- msgid ""
1148
- "File or directory names may cause issues when working across different "
1149
- "environments and servers. Names that are over 250 characters, contain "
1150
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1151
- "issues in a remote enviroment. It is recommended to remove or filter these "
1152
- "files before building the archive if you have issues at install time."
1153
- msgstr ""
1154
- "Des noms de fichiers ou de répertoires invalides peuvent poser des problèmes "
1155
- "en fonction des environnements et des serveurs. Les noms invalides dépassent "
1156
- "250 caractères ou contiennent des caractères interdits tels que * ? > < : / "
1157
- "\\ | ou encore unicodes. Il est recommandé de supprimer ou exclure ces "
1158
- "fichiers avant de créer une archive car sinon vous auriez des problèmes lors "
1159
- "de l&#39;installation."
1160
-
1161
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1162
- msgid "Show Paths"
1163
- msgstr "Voir les Chemins"
1164
-
1165
- #: views/packages/new2.base.php:256
1166
- msgid "Large Files"
1167
- msgstr "Fichiers Volumineux"
1168
-
1169
- #: views/packages/new2.base.php:261
1170
- #, php-format
1171
- msgid ""
1172
- "Large files such as movies or other backuped data can cause issues with "
1173
- "timeouts. The current check for large files is %1$s per file. If your "
1174
- "having issues creating a package consider excluding these files with the "
1175
- "files filter and manually moving them to your new location."
1176
- msgstr ""
1177
- "Les fichiers volumineux tels que les vidéos ou autres fichiers de sauvegarde "
1178
- "peuvent causer des problèmes avec les timeouts. La valeur actuelle pour les "
1179
- "fichiers volumineux est de %1$s par fichier. Si vous rencontrez des "
1180
- "problèmes lors de la création d&#39;un paquet, envisagez d&#39;exclure ces "
1181
- "fichiers et de les déplacer manuellement à leur future destination."
1182
-
1183
- #: views/packages/new2.base.php:275
1184
- msgid "View Filters"
1185
- msgstr "Voir les Filtres"
1186
-
1187
- #: views/packages/new2.base.php:283
1188
- msgid "No directory filters have been set."
1189
- msgstr "Aucun filtre de répertoire n&#39;a été activé."
1190
-
1191
- #: views/packages/new2.base.php:288
1192
- msgid "File Extensions"
1193
- msgstr "Extensions de Fichiers"
1194
-
1195
- #: views/packages/new2.base.php:293
1196
- msgid "No file extension filters have been set."
1197
- msgstr "Aucun filtre d&#39;extension de fichier n&#39;a été activé."
1198
-
1199
- #: views/packages/new2.base.php:297
1200
- msgid ""
1201
- "The lists above are the directories and file extension that will be excluded "
1202
- "from the archive."
1203
- msgstr ""
1204
- "Les répertoires et les extensions de fichiers ci-dessous seront exclus de "
1205
- "l&#39;archive."
1206
-
1207
- #: views/packages/new2.base.php:332
1208
- msgid "Tables"
1209
- msgstr "Tables"
1210
-
1211
- #: views/packages/new2.base.php:333
1212
- msgid "Records"
1213
- msgstr "Enregistrements"
1214
-
1215
- #: views/packages/new2.base.php:336
1216
- msgid "repair and optimization"
1217
- msgstr "réparer et optimiser"
1218
-
1219
- #: views/packages/new2.base.php:337
1220
- #, php-format
1221
- msgid ""
1222
- "Total size and row count for all database tables are approximate values. "
1223
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1224
- "databases take time to process and can cause issues with server timeout and "
1225
- "memory settings. Running a %3$s on your database can also help improve the "
1226
- "overall size and performance. If your server supports shell_exec and "
1227
- "mysqldump you can try to enable this option from the settings menu."
1228
- msgstr ""
1229
- "La taille totale et le nombre de colonnes pour les tables de toutes les "
1230
- "bases de données sont des valeurs approximatives. Les seuils qui déclenchent "
1231
- "des messages d&#39;erreur sont %1$s et %2$s. Les base de données "
1232
- "volumineuses sont longues à traiter et peuvent poser des problèmes avec le "
1233
- "timeout serveur ainsi que les paramètres de stockage. Disposer d&#39;un %3$s "
1234
- "sur votre base de données peut également améliorer la taille totale et les "
1235
- "performances. Si votre serveur est compatible shell_exec et mysqldump, "
1236
- "essayez d&#39;activer cette option depuis le menu des paramètres."
1237
-
1238
- #: views/packages/new2.base.php:349
1239
- msgid "Table Details"
1240
- msgstr "Détails de la Table"
1241
-
1242
- #: views/packages/new2.base.php:360
1243
- msgid "Name:"
1244
- msgstr "Nom :"
1245
-
1246
- #: views/packages/new2.base.php:361
1247
- msgid "Host:"
1248
- msgstr "Hébergeur :"
1249
-
1250
- #: views/packages/new2.base.php:362
1251
- msgid "Build Mode:"
1252
- msgstr "Mode de Construction :"
1253
-
1254
- #: views/packages/new2.base.php:373
1255
- msgid "Scan Error"
1256
- msgstr "Erreurs de Scan"
1257
-
1258
- #: views/packages/new2.base.php:374
1259
- msgid "Please try again!"
1260
- msgstr "Merci de réessayer !"
1261
-
1262
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1263
- msgid "Server Status:"
1264
- msgstr "Statut Serveur :"
1265
-
1266
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1267
- msgid "Error Message:"
1268
- msgstr "Message d&#39;Erreur :"
1269
-
1270
- #: views/packages/new2.base.php:386
1271
- msgid "Back"
1272
- msgstr "Retour"
1273
-
1274
- #: views/packages/new2.base.php:387
1275
- msgid "Rescan"
1276
- msgstr "Re-Scanner"
1277
-
1278
- #: views/packages/new2.base.php:486
1279
- msgid "Unable to report on any tables"
1280
- msgstr "Impossible d&#39;acquérir une quelconque table"
1281
-
1282
- #: views/packages/new2.base.php:495
1283
- msgid "Unable to report on database stats"
1284
- msgstr "Impossible d&#39;acquérir les statistiques de la base de données"
1285
-
1286
- #: views/packages/new2.base.php:514
1287
- msgid "DIR"
1288
- msgstr "REPERTOIRE"
1289
-
1290
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1291
- msgid "FILE"
1292
- msgstr "FICHIER"
1293
-
1294
- #: views/packages/new2.base.php:523
1295
- msgid "No name warning issues found."
1296
- msgstr "Pas de problème de nom de fichiers."
1297
-
1298
- #: views/packages/new2.base.php:529
1299
- msgid "No large files found."
1300
- msgstr "Aucun fichier volumineux trouvé."
1301
-
1302
- #: views/packages/new3.base.php:38
1303
- msgid "Step 3: Build Package"
1304
- msgstr "Étape 3 : Assemblage du Paquet"
1305
-
1306
- #: views/packages/new3.base.php:55
1307
- msgid "Building Package"
1308
- msgstr "Assemblage du Paquet en cours"
1309
-
1310
- #: views/packages/new3.base.php:58
1311
- msgid "Keep this window open during the build process."
1312
- msgstr "Gardez cette fenêtre ouverte pendant le processus d&#39;assemblage."
1313
-
1314
- #: views/packages/new3.base.php:59
1315
- msgid "This may take several minutes."
1316
- msgstr "Cela peut prendre plusieurs minutes."
1317
-
1318
- #: views/packages/new3.base.php:63
1319
- msgid "Build Status"
1320
- msgstr "Statut de l&#39;Assemblage"
1321
-
1322
- #: views/packages/new3.base.php:70
1323
- msgid "Package Completed"
1324
- msgstr "Paquet Assemblé"
1325
-
1326
- #: views/packages/new3.base.php:75
1327
- msgid "Process Time"
1328
- msgstr "Temps d&#39;Exécution"
1329
-
1330
- #: views/packages/new3.base.php:100
1331
- msgid "Build Interrupt"
1332
- msgstr "Interruption de l&#39;Assemblage"
1333
-
1334
- #: views/packages/new3.base.php:101
1335
- msgid "The current build has experienced an issue."
1336
- msgstr "L&#39;assemblage en cours a rencontré une erreur."
1337
-
1338
- #: views/packages/new3.base.php:103
1339
- msgid "Please try the process again."
1340
- msgstr "Merci de réessayer l&#39;assemblage à nouveau."
1341
-
1342
- #: views/packages/new3.base.php:105
1343
- msgid "Diagnose"
1344
- msgstr "Diagnostic"
1345
-
1346
- #: views/packages/new3.base.php:106
1347
- msgid "Try Again"
1348
- msgstr "Merci de réessayer"
1349
-
1350
- #: views/packages/new3.base.php:122
1351
- msgid "Notice"
1352
- msgstr "Notification"
1353
-
1354
- #: views/packages/new3.base.php:125
1355
- msgid "Build Folder:"
1356
- msgstr "Répertoires de l&#39;Assemblage :"
1357
-
1358
- #: views/packages/new3.base.php:127
1359
- msgid ""
1360
- "Some servers close connections quickly; yet the build can continue to run in "
1361
- "the background. To validate if a build is still running; open the 'tmp' "
1362
- "folder above and see if the archive file is growing in size. If it is not "
1363
- "then your server has strict timeout constraints. Please visit the support "
1364
- "page for additional resources."
1365
- msgstr ""
1366
- "Certains serveurs coupent leur connexion rapidement, cependant le processus "
1367
- "continue à fonctionner en arrière-plan. Pour vérifier qu&#39;une création de "
1368
- "paquet est en cours, ouvrez le répertoire &#34;tmp&#34; ce-dessous and "
1369
- "regardez si l'archive est en train de grandir en taille. Si ce n&#39;est pas "
1370
- "le cas, alors votre serveur a des timeouts stricts. Vous pouvez aller voir "
1371
- "la section &#34;Aide&#34; pour des ressources additionnelles. "
1372
-
1373
- #: views/packages/new3.base.php:136
1374
- msgid "Package Log"
1375
- msgstr "Journaux des Paquets"
1376
-
1377
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1378
- msgid "General"
1379
- msgstr "Général"
1380
-
1381
- #: views/settings/general.php:6
1382
- msgid "Settings Saved"
1383
- msgstr "Paramètres Sauvegardés"
1384
-
1385
- #: views/settings/general.php:75
1386
- msgid "Plugin"
1387
- msgstr "Plugin"
1388
-
1389
- #: views/settings/general.php:83
1390
- msgid "Uninstall"
1391
- msgstr "Désinstallation"
1392
-
1393
- #: views/settings/general.php:86
1394
- msgid "Delete Plugin Settings"
1395
- msgstr "Effacer les paramètres du plugin"
1396
-
1397
- #: views/settings/general.php:89
1398
- msgid "Delete Entire Storage Directory"
1399
- msgstr "Effacer tout le Répertoire de Stockage"
1400
-
1401
- #: views/settings/general.php:96
1402
- msgid "Full Path"
1403
- msgstr "Chemin Complet"
1404
-
1405
- #: views/settings/general.php:99
1406
- msgid "Disable .htaccess File In Storage Directory"
1407
- msgstr "Désactiver le fichier .htaccess dans le Répertoire de Stockage"
1408
-
1409
- #: views/settings/general.php:101
1410
- msgid "Disable if issues occur when downloading installer/archive files."
1411
- msgstr ""
1412
- "Désactivez-le si vous n&#39;arrivez pas à télécharger l&#39;installer ou les "
1413
- "fichiers d&#39;archive."
1414
-
1415
- #: views/settings/general.php:114
1416
- msgid "Archive Flush"
1417
- msgstr "Effacement des Archives"
1418
-
1419
- #: views/settings/general.php:117
1420
- msgid "Attempt Network Keep Alive"
1421
- msgstr "Tenter de garder le réseau en ligne"
1422
-
1423
- #: views/settings/general.php:118
1424
- msgid "recommended only for large archives"
1425
- msgstr "recommandé seulement pour les archives volumineuses"
1426
-
1427
- #: views/settings/general.php:120
1428
- msgid ""
1429
- "This will attempt to keep a network connection established for large "
1430
- "archives."
1431
- msgstr ""
1432
- "Ceci va essayer de garder une connexion réseau pour les archives "
1433
- "volumineuses."
1434
-
1435
- #: views/settings/general.php:125
1436
- msgid "Database Build"
1437
- msgstr "Base de Données construite"
1438
-
1439
- #: views/settings/general.php:128
1440
- msgid "Use PHP"
1441
- msgstr "Utiliser PHP"
1442
-
1443
- #: views/settings/general.php:131
1444
- msgid "Query Limit Size"
1445
- msgstr "Limite de Taille des Requêtes"
1446
-
1447
- #: views/settings/general.php:140
1448
- msgid "higher values speed up build times but uses more memory"
1449
- msgstr ""
1450
- "des valeurs élevées accélèrent le processus mais consomment plus de mémoire"
1451
-
1452
- #: views/settings/general.php:147
1453
- msgid "This server does not have shell_exec configured to run."
1454
- msgstr "Ce serveur n&#39;a pas shell_exec de paramétré."
1455
-
1456
- #: views/settings/general.php:149
1457
- msgid "Please contact the server administrator to enable this feature."
1458
- msgstr ""
1459
- "Merci de contacter votre administrateur réseau pour activer cette "
1460
- "fonctionnalité."
1461
-
1462
- #: views/settings/general.php:154
1463
- msgid "Use mysqldump"
1464
- msgstr "Utiliser mysqldump"
1465
-
1466
- #: views/settings/general.php:155
1467
- msgid "recommended for large databases"
1468
- msgstr "recommandé pour les bases de données volumineuses"
1469
-
1470
- #: views/settings/general.php:160
1471
- msgid "Working Path:"
1472
- msgstr "Chemin Fonctionnel :"
1473
-
1474
- #: views/settings/general.php:166
1475
- msgid ""
1476
- "Mysqldump was not found at its default location or the location provided. "
1477
- "Please enter a path to a valid location where mysqldump can run. If the "
1478
- "problem persist contact your server administrator."
1479
- msgstr ""
1480
- "Mysqldump n&#39;a pas été trouvé à son emplacement par défaut ou à l&#39;"
1481
- "emplacement fourni. Merci d&#39;entrer le chemin vers un emplacement où "
1482
- "mysqldump pourra tourner. Si le problème persiste, contactez votre "
1483
- "administrateur réseau."
1484
-
1485
- #: views/settings/general.php:171
1486
- msgid "Add Custom Path:"
1487
- msgstr "Ajouter un chemin personnalisé :"
1488
-
1489
- #: views/settings/general.php:175
1490
- msgid "This is the path to your mysqldump program."
1491
- msgstr "C&#39;est le chemin vers le programme mysqldump."
1492
-
1493
- #: views/settings/general.php:184
1494
- msgid "Package Debug"
1495
- msgstr "Débogage des Paquets"
1496
-
1497
- #: views/settings/general.php:187
1498
- msgid "Show Package Debug Status in Packages Screen"
1499
- msgstr "Montrer le statut de débogage dans l&#39;écran des Paquets"
1500
-
1501
- #: views/settings/general.php:195
1502
- msgid "Roles & Capabilities"
1503
- msgstr "Rôles et Droits"
1504
-
1505
- #: views/settings/general.php:200
1506
- msgid "Custom Roles"
1507
- msgstr "Rôles personnalisés"
1508
-
1509
- #: views/settings/general.php:203
1510
- msgid "Enable User Role Editor Plugin Integration"
1511
- msgstr "Activer l&#39;intégration avec le plugin User Rôle Editor"
1512
-
1513
- #: views/settings/general.php:210
1514
- msgid "The User Role Editor Plugin"
1515
- msgstr "Le plugin User Rôle Editor"
1516
-
1517
- #: views/settings/general.php:211
1518
- msgid "Free"
1519
- msgstr "Gratuit"
1520
-
1521
- #: views/settings/general.php:212
1522
- msgid "or"
1523
- msgstr "ou"
1524
-
1525
- #: views/settings/general.php:213
1526
- msgid "Professional"
1527
- msgstr "Professionnel"
1528
-
1529
- #: views/settings/general.php:214
1530
- msgid "must be installed to use"
1531
- msgstr "doit être installé"
1532
-
1533
- #: views/settings/general.php:215
1534
- msgid "this feature."
1535
- msgstr "cette fonctionnalité."
1536
-
1537
- #: views/settings/general.php:227
1538
- msgid "Save Settings"
1539
- msgstr "Sauvegarder les Paramètres"
1540
-
1541
- #: views/tools/cleanup.php:8
1542
- msgid "Installer File Cleanup Ran."
1543
- msgstr "Le Nettoyage des Fichiers d&#39;Installation a eu lieu."
1544
-
1545
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1546
- msgid "Legacy data removed."
1547
- msgstr "Version originale supprimée."
1548
-
1549
- #: views/tools/cleanup.php:16
1550
- msgid "Build cache removed."
1551
- msgstr "Cache supprimé."
1552
-
1553
- #: views/tools/cleanup.php:73
1554
- msgid ""
1555
- "If the installer files did not successfully get removed, then you WILL need "
1556
- "to remove them manually"
1557
- msgstr ""
1558
- "Si les fichiers d&#39;nstallation ne sont pas supprimés, il vous faudra "
1559
- "ABSOLUMENT les enlever manuellement"
1560
-
1561
- #: views/tools/cleanup.php:74
1562
- msgid ""
1563
- "Please remove all installer files to avoid leaving open security issues on "
1564
- "your server"
1565
- msgstr ""
1566
- "Merci de retirer tous les fichiers d&#39;installation pour éviter de laisser "
1567
- "des failles de sécurité sur votre serveur"
1568
-
1569
- #: views/tools/cleanup.php:82
1570
- msgid "Data Cleanup"
1571
- msgstr "Nettoyage des Données"
1572
-
1573
- #: views/tools/cleanup.php:85
1574
- msgid "Delete Reserved Files"
1575
- msgstr "Supprimer les Fichiers Réservés"
1576
-
1577
- #: views/tools/cleanup.php:86
1578
- msgid "Removes all installer files from a previous install"
1579
- msgstr ""
1580
- "Retirer tous les fichiers d&#39;installation d&#39;une version antérieure"
1581
-
1582
- #: views/tools/cleanup.php:89
1583
- msgid "Delete Legacy Data"
1584
- msgstr "Supprimer les Données Originales"
1585
-
1586
- #: views/tools/cleanup.php:90
1587
- msgid "Removes all legacy data and settings prior to version"
1588
- msgstr ""
1589
- "Supprimer toutes les données originales et les paramètres antérieurs à cette "
1590
- "version"
1591
-
1592
- #: views/tools/cleanup.php:93
1593
- msgid "Clear Build Cache"
1594
- msgstr "Supprimer le Cache"
1595
-
1596
- #: views/tools/cleanup.php:94
1597
- msgid "Removes all build data from:"
1598
- msgstr "Supprimer toutes les données de :"
1599
-
1600
- #: views/tools/cleanup.php:107
1601
- #, php-format
1602
- msgid "This action will remove all legacy settings prior to version %1$s. "
1603
- msgstr ""
1604
- "Cette action va supprimer tous les paramètres antérieurs à la version %1$s."
1605
-
1606
- #: views/tools/cleanup.php:108
1607
- msgid ""
1608
- "Legacy settings are only needed if you plan to migrate back to an older "
1609
- "version of this plugin."
1610
- msgstr ""
1611
- "Les paramètres originaux ne sont nécessaires que si vous avez prévu de "
1612
- "migrer vers une ancienne version du plugin."
1613
-
1614
- #: views/tools/cleanup.php:120
1615
- msgid ""
1616
- "This process will remove all build cache files. Be sure no packages are "
1617
- "currently building or else they will be cancelled."
1618
- msgstr ""
1619
- "Ce processus va supprimer tous les fichiers de cache. Vérifiez qu&#39;aucun "
1620
- "paquet ne soit en cours de création car sinon il serait supprimé."
1621
-
1622
- #: views/tools/controller.php:16
1623
- msgid "Logging"
1624
- msgstr "Connexion"
1625
-
1626
- #: views/tools/controller.php:18
1627
- msgid "Cleanup"
1628
- msgstr "Nettoyage"
1629
-
1630
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1631
- msgid "unknow"
1632
- msgstr "inconnu"
1633
-
1634
- #: views/tools/diagnostics.php:39
1635
- msgid "Plugin settings reset."
1636
- msgstr "Paramètres des plugins émis à zéro."
1637
-
1638
- #: views/tools/diagnostics.php:40
1639
- msgid "View state settings reset."
1640
- msgstr "Voir l&#39;état de la remise à zéro des paramètres."
1641
-
1642
- #: views/tools/diagnostics.php:41
1643
- msgid "Active package settings reset."
1644
- msgstr "Activer la remise à zéro des paramètres dup paquet"
1645
-
1646
- #: views/tools/diagnostics.php:81
1647
- msgid "Server Settings"
1648
- msgstr "Paramètres Serveur"
1649
-
1650
- #: views/tools/diagnostics.php:90
1651
- msgid "Duplicator Version"
1652
- msgstr "Version de Duplicator"
1653
-
1654
- #: views/tools/diagnostics.php:94
1655
- msgid "Operating System"
1656
- msgstr "Système d&#39;Exploitation"
1657
-
1658
- #: views/tools/diagnostics.php:98
1659
- msgid "Timezone"
1660
- msgstr "Fuseau Horaire"
1661
-
1662
- #: views/tools/diagnostics.php:102
1663
- msgid "Server Time"
1664
- msgstr "Fuseau du Serveur"
1665
-
1666
- #: views/tools/diagnostics.php:110
1667
- msgid "APC Enabled"
1668
- msgstr "APC Activé"
1669
-
1670
- #: views/tools/diagnostics.php:114
1671
- msgid "Root Path"
1672
- msgstr "Chemin vers la Racine"
1673
-
1674
- #: views/tools/diagnostics.php:118
1675
- msgid "ABSPATH"
1676
- msgstr "Chemin Absolu"
1677
-
1678
- #: views/tools/diagnostics.php:122
1679
- msgid "Plugins Path"
1680
- msgstr "Chemin des Plugins"
1681
-
1682
- #: views/tools/diagnostics.php:126
1683
- msgid "Loaded PHP INI"
1684
- msgstr "Charger PHP INI"
1685
-
1686
- #: views/tools/diagnostics.php:130
1687
- msgid "Server IP"
1688
- msgstr "IP du Serveur"
1689
-
1690
- #: views/tools/diagnostics.php:134
1691
- msgid "Client IP"
1692
- msgstr "IP client"
1693
-
1694
- #: views/tools/diagnostics.php:145
1695
- msgid "Langugage"
1696
- msgstr "Langue"
1697
-
1698
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
1699
- msgid "Charset"
1700
- msgstr "Jeu de Caractères"
1701
-
1702
- #: views/tools/diagnostics.php:153
1703
- msgid "Memory Limit "
1704
- msgstr "Limite de Mémoire"
1705
-
1706
- #: views/tools/diagnostics.php:154
1707
- msgid "Max"
1708
- msgstr "Max"
1709
-
1710
- #: views/tools/diagnostics.php:172
1711
- msgid "Safe Mode"
1712
- msgstr "Mode Sécurité"
1713
-
1714
- #: views/tools/diagnostics.php:176
1715
- msgid "On"
1716
- msgstr "On"
1717
-
1718
- #: views/tools/diagnostics.php:176
1719
- msgid "Off"
1720
- msgstr "Off"
1721
-
1722
- #: views/tools/diagnostics.php:181
1723
- msgid "Memory Limit"
1724
- msgstr "Limite de Mémoire"
1725
-
1726
- #: views/tools/diagnostics.php:185
1727
- msgid "Memory In Use"
1728
- msgstr "Mémoire Utilisée"
1729
-
1730
- #: views/tools/diagnostics.php:193
1731
- msgid "Shell Exec"
1732
- msgstr "Shell Exec"
1733
-
1734
- #: views/tools/diagnostics.php:194
1735
- msgid "Is Supported"
1736
- msgstr "Est Compatible"
1737
-
1738
- #: views/tools/diagnostics.php:194
1739
- msgid "Not Supported"
1740
- msgstr "N&#39;est plus Compatible"
1741
-
1742
- #: views/tools/diagnostics.php:208
1743
- msgid "Wait Timeout"
1744
- msgstr "Temps d&#39;Attente dépassé"
1745
-
1746
- #: views/tools/diagnostics.php:212
1747
- msgid "Max Allowed Packets"
1748
- msgstr "Nombre maximum de paquets de données"
1749
-
1750
- #: views/tools/diagnostics.php:216
1751
- msgid "msyqldump Path"
1752
- msgstr "Chemin du mysqldump"
1753
-
1754
- #: views/tools/diagnostics.php:220
1755
- msgid "Server Disk"
1756
- msgstr "Disque Serveur"
1757
-
1758
- #: views/tools/diagnostics.php:223
1759
- msgid "Free space"
1760
- msgstr "Espace libre"
1761
-
1762
- #: views/tools/diagnostics.php:226
1763
- msgid "Note: This value is the physical servers hard-drive allocation."
1764
- msgstr ""
1765
- "Note : Cette donnée est l&#39;allocation du disque dur dans le serveur "
1766
- "physique."
1767
-
1768
- #: views/tools/diagnostics.php:227
1769
- msgid ""
1770
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
1771
- "value."
1772
- msgstr ""
1773
- "Pour les hébergements mutualisés, vérifiez dans votre tableau de bord la "
1774
- "&#34;vraie&#34; valeur d'espace disque."
1775
-
1776
- #: views/tools/diagnostics.php:243
1777
- msgid "Stored Data"
1778
- msgstr "Donnée Enregistrée"
1779
-
1780
- #: views/tools/diagnostics.php:248
1781
- msgid "Options Values"
1782
- msgstr "Options de Valeurs"
1783
-
1784
- #: views/tools/diagnostics.php:281
1785
- msgid "PHP Information"
1786
- msgstr "Information PHP"
1787
-
1788
- #: views/tools/diagnostics.php:300
1789
- msgid "Delete this option value"
1790
- msgstr "Effacer cette option de valeur"
1791
-
1792
- #: views/tools/logging.php:140
1793
- msgid "Log file not found or unreadable"
1794
- msgstr "Fichiers journaux introuvables ou illisibles"
1795
-
1796
- #: views/tools/logging.php:142
1797
- msgid ""
1798
- "Try to create a package, since no log files were found in the snapshots "
1799
- "directory with the extension *.log"
1800
- msgstr ""
1801
- "Essayez de créer un paquet puisqu&#39;aucun fichier journal n&#39;a été "
1802
- "trouvé dans le répertoire des instantanés avec l&#39;extension *.log"
1803
-
1804
- #: views/tools/logging.php:144
1805
- msgid "Reasons for log file not showing"
1806
- msgstr "Raisons pour lesquelles le fichier journal ne s&#39;affiche pas"
1807
-
1808
- #: views/tools/logging.php:145
1809
- msgid "The web server does not support returning .log file extentions"
1810
- msgstr ""
1811
- "Le serveur web ne prend pas en charge les fichiers avec les extensions .log"
1812
-
1813
- #: views/tools/logging.php:146
1814
- msgid ""
1815
- "The snapshots directory does not have the correct permissions to write "
1816
- "files. Try setting the permissions to 755"
1817
- msgstr ""
1818
- "Le répertoire des instantanés n&#39;a pas les bonnes permissions pour écrire "
1819
- "les fichiers. Essayez de passer les permissions à 755"
1820
-
1821
- #: views/tools/logging.php:147
1822
- msgid ""
1823
- "The process that PHP runs under does not have enough permissions to create "
1824
- "files. Please contact your hosting provider for more details"
1825
- msgstr ""
1826
- "Le processus PHP n&#39;a pas assez de permissions pour créer les fichiers. "
1827
- "Merci de contacter votre hébergeur pour plus de détails"
1828
-
1829
- #: views/tools/logging.php:156 views/tools/logging.php:161
1830
- msgid "Options"
1831
- msgstr "Options"
1832
-
1833
- #: views/tools/logging.php:163
1834
- msgid "Refresh"
1835
- msgstr "Rafraîchir"
1836
-
1837
- #: views/tools/logging.php:168
1838
- msgid "Auto Refresh"
1839
- msgstr "Rafraîchissement automatique"
1840
-
1841
- #: views/tools/logging.php:174
1842
- msgid "Last 20 Logs"
1843
- msgstr "Les derniers 20 rapports"
1844
-
1845
- #. Plugin Name of the plugin/theme
1846
- msgid "Duplicator"
1847
- msgstr ""
1848
-
1849
- #. Plugin URI of the plugin/theme
1850
- msgid "http://www.lifeinthegrid.com/duplicator/"
1851
- msgstr ""
1852
-
1853
- #. Description of the plugin/theme
1854
- msgid ""
1855
- "Create a backup of your WordPress files and database. Duplicate and move an "
1856
- "entire site from one location to another in a few steps. Create a full "
1857
- "snapshot of your site at any point in time."
1858
- msgstr ""
1859
-
1860
- #. Author of the plugin/theme
1861
- msgid "LifeInTheGrid"
1862
- msgstr ""
1863
-
1864
- #. Author URI of the plugin/theme
1865
- msgid "http://www.lifeinthegrid.com"
1866
- msgstr ""
1867
-
1868
- #~ msgid "Backup and Move Made Easy!"
1869
- #~ msgstr "La sauvegarde et la duplication rendus faciles !"
1870
-
1871
- #~ msgid "The top-rated Duplicator plugin is going professional!"
1872
- #~ msgstr "Le plugin Duplicator passe en version pro !"
1873
-
1874
- #~ msgid "Custom Templates"
1875
- #~ msgstr "Modèles personnalisés"
1876
-
1877
- #~ msgid ""
1878
- #~ "Customize how each package is created and built with a customized "
1879
- #~ "template."
1880
- #~ msgstr ""
1881
- #~ "Personnalisez la façon dont chaque paquet sera créé avec un modèle "
1882
- #~ "prédéfini"
1883
-
1884
- #~ msgid "Cloud Storage"
1885
- #~ msgstr "Stockage sur le Cloud"
1886
-
1887
- #~ msgid ""
1888
- #~ "Backup up your entire package to the cloud with access to services like "
1889
- #~ "FTP and Dropbox."
1890
- #~ msgstr ""
1891
- #~ "Sauvegardez l&#39;intégralité de votre paquet sur le cloud au travers du "
1892
- #~ "FTP ou de Dropbox."
1893
-
1894
- #~ msgid "Queued Processing"
1895
- #~ msgstr "Traitement de la file d&#39;attente"
1896
-
1897
- #~ msgid ""
1898
- #~ "Enable the build of larger more complex packages and avoid server "
1899
- #~ "timeouts with queued processing."
1900
- #~ msgstr ""
1901
- #~ "Autorisez la construction de paquets plus gros et plus complexes et "
1902
- #~ "évitez les timeouts de votre serveur avec la file d&#39;attente"
1903
-
1904
- #~ msgid "Format"
1905
- #~ msgstr "Format"
1906
-
1907
- #~ msgid "The Duplicator currently works with these web servers:"
1908
- #~ msgstr ""
1909
- #~ "Le plugin Duplicator fonctionne actuellement avec ces serveurs web : "
1910
-
1911
- #~ msgid "PHP Settings"
1912
- #~ msgstr "Paramètres PHP"
1913
-
1914
- #~ msgid "WordPress Settings"
1915
- #~ msgstr "Paramètres WordPress"
1916
-
1917
- #~ msgid "Found"
1918
- #~ msgstr "Trouvé"
1919
-
1920
- #~ msgid "Missing"
1921
- #~ msgstr "Manquant"
1922
-
1923
- #~ msgid "The cache size minimum threshold is currently set at "
1924
- #~ msgstr "Le seuil minimum de la taille de cache est actuellement à"
1925
-
1926
- #~ msgid "Invalid Names"
1927
- #~ msgstr "Noms Invalides"
1928
-
1929
- #~ msgid "Support"
1930
- #~ msgstr "Support"
1931
-
1932
- #~ msgid "By"
1933
- #~ msgstr "Par"
1934
-
1935
- #~ msgid "SQL File"
1936
- #~ msgstr "Fichier SQL"
1937
-
1938
- #~ msgid "Filters"
1939
- #~ msgstr "Filtres"
1940
-
1941
- #~ msgid "Report"
1942
- #~ msgstr "Signalez"
1943
-
1944
- #~ msgid "Check out other great resources"
1945
- #~ msgstr "Jetez un oeil à nos autres super ressources"
1946
-
1947
- #~ msgid "Get Help Now!"
1948
- #~ msgstr "Demander de l'aide"
1949
-
1950
- #~ msgid "support section"
1951
- #~ msgstr "le support"
1952
-
1953
- #~ msgid "support page"
1954
- #~ msgstr "le support"
1955
-
1956
- #~ msgid "Purpose of this package"
1957
- #~ msgstr "Raison d&#39;être de ce paquet"
1958
-
1959
- #~ msgid "FAQ"
1960
- #~ msgstr "FAQ"
1961
-
1962
- #~ msgid "Partner"
1963
- #~ msgstr "Partenaire"
1964
-
1965
- #~ msgid "Approved Hosts"
1966
- #~ msgstr "Hébergeurs approuvés"
1967
-
1968
- #~ msgid "PHP Script Owner"
1969
- #~ msgstr "Propriétaire du Script PHP"
1970
-
1971
- #~ msgid ""
1972
- #~ "The above paths should have permissions of 755 for directories and 644 "
1973
- #~ "for files. You can temporarily try 777 if you continue to have issues. "
1974
- #~ "Also be sure to check the owner/group settings. For more details contact "
1975
- #~ "your host or server administrator."
1976
- #~ msgstr ""
1977
- #~ "Les chemins ci-dessous devraient avoir des permissions de 755 pour les "
1978
- #~ "répertoires et 644 pour les fichiers. Vous pouvez les passer à 777 mais "
1979
- #~ "seulement de manière temporaire, si vous rencontrez des problèmes. "
1980
- #~ "Veillez également à vérifier les paramètres de propriétaire/groupe. Pour "
1981
- #~ "plus de détails, contactez votre administrateur réseau."
1982
-
1983
- #~ msgid "Status Code"
1984
- #~ msgstr "Code Statut"
1985
-
1986
- #~ msgid ""
1987
- #~ "The ZipArchive extension for PHP is required for compression. Please "
1988
- #~ "contact your hosting provider if you're on a hosted server. For "
1989
- #~ "additional information see our online documentation."
1990
- #~ msgstr ""
1991
- #~ "L&#39;extension ZipArchive pour PHP est requise pour la compression. "
1992
- #~ "Merci de contacter votre hébergeur si vous êtes sur un serveur mutualité. "
1993
- #~ "Pour plus d&#39;informations, consultez notre aide en ligne."
1994
-
1995
- #~ msgid ""
1996
- #~ "Safe Mode should be set safe_mode=Off in you php.ini file. On hosted "
1997
- #~ "servers you may have to request this setting be turned off. Please note "
1998
- #~ "that Safe Mode is deprecated as of PHP 5.3.0"
1999
- #~ msgstr ""
2000
- #~ "Le Mode Sécurité devrait être réglé à safe_mode=Off dans votre fichier "
2001
- #~ "php.ini. Pour les hébergements mutualisés, vous devriez demander à ce que "
2002
- #~ "ce paramètre soit désactivé. Veuillez également noter que le Mode "
2003
- #~ "Sécurité est obsolète depuis la version 5.3.0 de PHP"
2004
-
2005
- #~ msgid ""
2006
- #~ "PHP versions 5.2.17+ or higher is required. Please note that in "
2007
- #~ "versioning logic a value such as 5.2.9 is less than 5.2.17. Please "
2008
- #~ "contact your server administrator to upgrade to a stable and secure "
2009
- #~ "version of PHP"
2010
- #~ msgstr ""
2011
- #~ "PHP dans sa version 5.2.17+ ou supérieure est requis. Veuillez noter que "
2012
- #~ "la logique des versions de PHP veut que 5.2.9 est inférieur à 5.2.17. "
2013
- #~ "Contactez alors votre administrateur pour qu&#39;il mette à jour PHP à "
2014
- #~ "une version stable et sécurisée."
2015
-
2016
- #~ msgid "Need a hosting provider that is"
2017
- #~ msgstr "Besoin d&#39;un hébergeur qui est"
2018
-
2019
- #~ msgid "duplicator approved"
2020
- #~ msgstr "compatible Duplicator"
2021
-
2022
- #~ msgid "knowledgebase"
2023
- #~ msgstr "base de connaissances"
2024
-
2025
- #~ msgid "in detail for many of the quick and common answers."
2026
- #~ msgstr "en détail pour la plupart des questions les plus courantes."
2027
-
2028
- #~ msgid "Need Help?"
2029
- #~ msgstr "Besoin d&#39;aide ?"
2030
-
2031
- #~ msgid "Get Hosting!"
2032
- #~ msgstr "Trouver un Hébergeur !"
2033
-
2034
- #~ msgid ""
2035
- #~ "Please try the process again. If the problem persists please visit the "
2036
- #~ "support page."
2037
- #~ msgstr ""
2038
- #~ "Merci de réessayer l&#39;assemblage à nouveau. Si le problème persiste, "
2039
- #~ "merci de visiter le support."
2040
-
2041
- #~ msgid "All"
2042
- #~ msgstr "Tous"
2043
-
2044
- #~ msgid "None"
2045
- #~ msgstr "Aucun"
2046
-
2047
- #~ msgid "Cached Data"
2048
- #~ msgstr "Données en Cache"
2049
-
2050
- #~ msgid "max_execution_time"
2051
- #~ msgstr "temps_execution_max"
2052
-
2053
- #~ msgid ""
2054
- #~ "Timeouts effect how long a process is allowed to run. The recommended "
2055
- #~ "timeout is \"%1$s\" seconds. An attempt is made to override this value if "
2056
- #~ "the enviroment allows it. A \"Warn\" status will not be an issue unless "
2057
- #~ "your host kills PHP processes after a certain amount of time. "
2058
- #~ msgstr ""
2059
- #~ "Les timeouts correspondent à la durée pendant laquelle un processus est "
2060
- #~ "autorisé d&#39;être actif. Le timeout conseillé est de \"%1$s\" secondes. "
2061
- #~ "Un essai va être tenté pour imposer cette valeur si l&#39;environnement "
2062
- #~ "le permet. Un message d&#39;erreur ne devrait pas poser problème tant que "
2063
- #~ "votre hébergeur ne force pas la fermeture du processus PHP après un "
2064
- #~ "certain délai."
2065
-
2066
- #~ msgid ""
2067
- #~ "Timeouts can also be set at the web server layer, please work with your "
2068
- #~ "host or server administrator to make sure there are not restrictions for "
2069
- #~ "how long a PHP process is allowed to run. If you are limited on "
2070
- #~ "processing time, consider using the database or file filters to shrink "
2071
- #~ "the size of your overall package. However use caution as excluding the "
2072
- #~ "wrong resources can cause your install to not work properly."
2073
- #~ msgstr ""
2074
- #~ "Les timeouts peuvent également être une couche du serveur web. Merci de "
2075
- #~ "vérifier avec votre hébergeur ou votre administrateur réseau qu&#39;il "
2076
- #~ "n&#39;y ait pas de restriction de durée aux processus PHP. Si vous êtes "
2077
- #~ "limité, envisagez d&#39;utiliser un filtre de base de données ou de "
2078
- #~ "fichiers afin de diminuer la taille totale du paquet. Cependant, maniez "
2079
- #~ "ces options avec minutie : exclure les mauvaises ressources empêcherait "
2080
- #~ "l&#39;installation de fonctionner correctement ensuite."
2081
-
2082
- #~ msgid "Snapshot Directory"
2083
- #~ msgstr "Répertoire des instantanés"
2084
-
2085
- #~ msgid "Take A Quick 60 Second Survey"
2086
- #~ msgstr "Remplir un rapide questionnaire de 60 secondes"
2087
-
2088
- #~ msgid "Dashboard"
2089
- #~ msgstr "Tableau de Bord"
2090
-
2091
- #~ msgid "All About"
2092
- #~ msgstr "A propos"
2093
-
2094
- #~ msgid "If no log file is present the try to create a package"
2095
- #~ msgstr ""
2096
- #~ "Si vous ne trouvez pas de fichier journal, essayez de créer un paquet"
2097
-
2098
- #~ msgid "Duplicator: Create Package Log"
2099
- #~ msgstr "Duplicator : Créer les fichiers journaux"
2100
-
2101
- #~ msgid ""
2102
- #~ "Processing may take several minutes, please wait for progress bar to "
2103
- #~ "complete on the main status bar"
2104
- #~ msgstr ""
2105
- #~ "Le processus peut prendre plusieurs minutes, merci d'attendre que la "
2106
- #~ "barre de progression soit remplie"
2107
-
2108
- #~ msgid ""
2109
- #~ "Do NOT post this data to public sites like the WordPress.org forums as it "
2110
- #~ "contains sensitive data."
2111
- #~ msgstr ""
2112
- #~ "NE PUBLIEZ PAS ces données sur des sites publics tels que les forums "
2113
- #~ "WordPress.com : il s'agit de données sensibles."
2114
-
2115
- #~ msgid "Saving"
2116
- #~ msgstr "Sauvegarde"
2117
-
2118
- #~ msgid "Ready to create new package."
2119
- #~ msgstr "Prêt à créer le nouveau paquet."
2120
-
2121
- #~ msgid "Please enter a backup name."
2122
- #~ msgstr "Merci d'entrer un nom de sauvegarde."
2123
-
2124
- #~ msgid "Alpanumeric characters only on package name"
2125
- #~ msgstr ""
2126
- #~ "Seuls les caractères alphanumériques sont acceptés pour les noms de "
2127
- #~ "paquets"
2128
-
2129
- #~ msgid "Evaluating WordPress Setup. Please Wait"
2130
- #~ msgstr "Etude de votre installation WordPress. Merci de patienter."
2131
-
2132
- #~ msgid "Cancel"
2133
- #~ msgstr "Abandonner"
2134
-
2135
- #~ msgid "Checking System Status. Please Wait!"
2136
- #~ msgstr "Vérification du statut système. Merci de patienter !"
2137
-
2138
- #~ msgid "unreadable"
2139
- #~ msgstr "illisible"
2140
-
2141
- #~ msgid "error scanning directory"
2142
- #~ msgstr "erreur de lecture du répertoire"
2143
-
2144
- #~ msgid "AJAX Response"
2145
- #~ msgstr "Réponse AJAX"
2146
-
2147
- #~ msgid ""
2148
- #~ "Your LifeInTheGrid should be about working smarter not harder. With the "
2149
- #~ "Duplicator you can streamline your workflows and quickly clone a "
2150
- #~ "WordPress site in minutes. From Novice to Guru this plugin is designed "
2151
- #~ "for Bloggers, Admins, Developers, Designers, Entrepreneurs and anyone who "
2152
- #~ "uses WordPress."
2153
- #~ msgstr ""
2154
- #~ "Votre 'Vie Dans la Matrice' [LifeInTheGrid] devrait être tournée vers un "
2155
- #~ "travail plus intelligent, pas plus dur. Avec le Duplicator, vous pouvez "
2156
- #~ "rationaliser votre travail et rapidement cloner un site WordPress. Que "
2157
- #~ "vous soyez novice ou expert, ce plugin a été pensé pour les blogueurs, "
2158
- #~ "webmasters, développeurs, designers, entrepreneurs et tous ceux qui "
2159
- #~ "utilisent WordPress."
2160
-
2161
- #~ msgid ""
2162
- #~ "If you run into an issue feel free to submit a support ticket and visit "
2163
- #~ "our"
2164
- #~ msgstr ""
2165
- #~ "Si vous recentrez une erreur, n'hésitez pas à nous soumettre un ticket de "
2166
- #~ "support et visiter notre"
2167
-
2168
- #~ msgid ""
2169
- #~ "We also offer premium priority support for those who need feedback within "
2170
- #~ "24-48hrs. Please visit our "
2171
- #~ msgstr ""
2172
- #~ "Nous pouvons assurer un support premium pour ceux qui ont besoin d'aide "
2173
- #~ "en 24-48 heures. Merci de visiter notre"
2174
-
2175
- #~ msgid "service page"
2176
- #~ msgstr "page 'service'"
2177
-
2178
- #~ msgid "for more details."
2179
- #~ msgstr "pour plus de détails"
2180
-
2181
- #~ msgid ""
2182
- #~ "Consider a donation of any amount; it will take less than 60 seconds or "
2183
- #~ "about as fast as you can duplicate a site. These proceeds help to cover "
2184
- #~ "development and support costs. Thanks for your generosity!!"
2185
- #~ msgstr ""
2186
- #~ "60 secondes c'est le temps approximatif pour cloner un site. Si vous "
2187
- #~ "aimez gagner du temps alors faites-nous un don ! Cela nous aidera à "
2188
- #~ "couvrir les frais de développement et de support. Merci de votre "
2189
- #~ "générosité !"
2190
-
2191
- #~ msgid "Help out by leaving a 5 star review on the"
2192
- #~ msgstr "Aidez-nous en nous donnant un avis à 5 étoiles dans"
2193
-
2194
- #~ msgid "WordPress plugins directory"
2195
- #~ msgstr "le répertoire des plugins WordPress"
2196
-
2197
- #~ msgid "and by giving your opinion on the survey below."
2198
- #~ msgstr "et en nous donnant votre avis grâce au questionnaire ci-dessus."
2199
-
2200
- #~ msgid "Give us your Opinion?"
2201
- #~ msgstr "Vous souhaitez nous donner votre avis ?"
2202
-
2203
- #~ msgid ""
2204
- #~ "Spreading the word gives the plugin a wider audience which helps to pool "
2205
- #~ "more resources to test/support/develop and participate to improve the "
2206
- #~ "plugin. By getting the word out the Duplicator will continue to improve "
2207
- #~ "at a faster rate and harness the power of the open community to push the "
2208
- #~ "plugin further."
2209
- #~ msgstr ""
2210
- #~ "Partagez ce plugin lui donne la chance de toucher une plus large audience "
2211
- #~ "afin de trouver plus d'utilisateurs qui pourront nous aider à tester/"
2212
- #~ "contribuer/développer et participer à l'amélioration du plugin. En "
2213
- #~ "recommandant ce plugin à vos connaissances, cela nous permettra "
2214
- #~ "d'améliorer Duplicator à vitesse grand V en bénéficiant du pouvoir de la "
2215
- #~ "communauté."
2216
-
2217
- #~ msgid "Knowledge Base"
2218
- #~ msgstr "Base de Connaissances"
2219
-
2220
- #~ msgid "Blog"
2221
- #~ msgstr "Blog"
2222
-
2223
- #~ msgid "Labs"
2224
- #~ msgstr "Labos"
2225
-
2226
- #~ msgid "Package Name"
2227
- #~ msgstr "Nom du Paquet"
2228
-
2229
- #~ msgid "Create Package"
2230
- #~ msgstr "Créer un Paquet"
2231
-
2232
- #~ msgid "System Check"
2233
- #~ msgstr "Vérification du Système"
2234
-
2235
- #~ msgid "Show Create Log"
2236
- #~ msgstr "Voir le fichier journal de création"
2237
-
2238
- #~ msgid "Ready to create new package"
2239
- #~ msgstr "Prêt à créer un nouveau paquet"
2240
-
2241
- #~ msgid "Owner"
2242
- #~ msgstr "Propriétaire"
2243
-
2244
- #~ msgid "(Download Both)"
2245
- #~ msgstr "(Tout Télécharger)"
2246
-
2247
- #~ msgid "Secure Name"
2248
- #~ msgstr "Nom Sécurisé"
2249
-
2250
- #~ msgid "Show Download Links"
2251
- #~ msgstr "Montrer les Liens de Téléchargement"
2252
-
2253
- #~ msgid "Legacy Version"
2254
- #~ msgstr "Version Originale"
2255
-
2256
- #~ msgid ""
2257
- #~ "This package was built with a version that is no longer supported. It is "
2258
- #~ "highly recommended that this package be deleted. For more details see the"
2259
- #~ msgstr ""
2260
- #~ "Ce paquet a été créé avec une version précédente de Duplicator qui n'est "
2261
- #~ "plus supportée. Il est vivement recommandé de supprimer ce paquet. Pour "
2262
- #~ "plus de détails, allez voir"
2263
-
2264
- #~ msgid "Online FAQs"
2265
- #~ msgstr "les FAQs en ligne"
2266
-
2267
- #~ msgid "To create a new package, enter a name and click the create button "
2268
- #~ msgstr ""
2269
- #~ "Pour créer un nouveau paquet, donnez-lui un nom et cliquez sur le bouton "
2270
- #~ "\"Créer\""
2271
-
2272
- #~ msgid "server's compatibility"
2273
- #~ msgstr "compatibilité de votre serveur"
2274
-
2275
- #~ msgid "with the duplicator"
2276
- #~ msgstr "avec Duplicator"
2277
-
2278
- #~ msgid "This process will backup all your files and database"
2279
- #~ msgstr ""
2280
- #~ "Ce processus va sauvegarder tous vos fichiers et votre base de données"
2281
-
2282
- #~ msgid "Creating a package may take several minutes if you have a large site"
2283
- #~ msgstr ""
2284
- #~ "Créer un paquet peut prendre plusieurs minutes si vous avez un gros site"
2285
-
2286
- #~ msgid "This window should remain open for the process to complete"
2287
- #~ msgstr ""
2288
- #~ "Cette fenêtre doit rester ouverte pour que le processus puisse marcher"
2289
-
2290
- #~ msgid "Please be patient while we work through this Beta version"
2291
- #~ msgstr ""
2292
- #~ "Merci de votre patience pendant que vous utilisez cette version Beta"
2293
-
2294
- #~ msgid "Please report any issues to"
2295
- #~ msgstr "Signalez-nous tout problème à"
2296
-
2297
- #~ msgid "Total Storage Used"
2298
- #~ msgstr "Mémoire Total Utilisée"
2299
-
2300
- #~ msgid ""
2301
- #~ "For a complete rundown of the Duplicator see the online knowledgebase by "
2302
- #~ "clicking the question button or any link below. If you experience "
2303
- #~ "issues with creating or installing a package check out the FAQ page first."
2304
- #~ msgstr ""
2305
- #~ "Pour une explication exhaustive de Duplicator, allez donc voir notre base "
2306
- #~ "de connaissances en ligne en cliquant sur le bouton interrogatif ou sur "
2307
- #~ "n'importe quel lien ci-dessous. Si vous rencontrez des problèmes pour "
2308
- #~ "créer ou installer un paquet, vérifiez d'abord la page FAQ."
2309
-
2310
- #~ msgid ""
2311
- #~ "Not all hosting companies are created equal and to get the most out of "
2312
- #~ "the plugin we recommend using hosting providers that we do our own "
2313
- #~ "testing on. Please visit our"
2314
- #~ msgstr ""
2315
- #~ "Tous les hébergeurs ne sont pas égaux. Afin de profiter du maximum du "
2316
- #~ "plugin, nous recommandons les hébergeurs que nous avons déjà testé. Allez "
2317
- #~ "donc voir notre"
2318
-
2319
- #~ msgid "Approved Affiliate Hosting Program"
2320
- #~ msgstr "Programme Affilié des Hébergeurs Approuvés"
2321
-
2322
- #~ msgid ""
2323
- #~ "and consider making a switch to hosts that we trust and have experienced "
2324
- #~ "good success with when using the Duplicator"
2325
- #~ msgstr ""
2326
- #~ "et envisagez de changer pour un hébergeur de confiance avec lequel nous "
2327
- #~ "avons vérifié que Duplicator fonctionnait."
2328
-
2329
- #~ msgid ""
2330
- #~ "If you run into an issue and have already read the FAQs feel free to "
2331
- #~ "submit a support ticket and we will try our best to respond within 5-10 "
2332
- #~ "business days or sooner if possible."
2333
- #~ msgstr ""
2334
- #~ "Si vous tombez sur un problème qui n'a pas encore été traité dans les "
2335
- #~ "FAQs, n'hésitez pas à nous envoyer un ticket de support et nous ferons "
2336
- #~ "notre maximum pour répondre dans les 5 à 10 jours ouvrés ou plus tôt si "
2337
- #~ "c'est possible."
2338
-
2339
- #~ msgid "If you need priority support within 24-48hrs please visit our "
2340
- #~ msgstr ""
2341
- #~ "Si vous avez besoin d'un support prioritaire en 24-48 heures, merci de "
2342
- #~ "visiter notre"
2343
-
2344
- #~ msgid ""
2345
- #~ "for more details. Premium support is 100% refundable if we are unable to "
2346
- #~ "resolve your issue."
2347
- #~ msgstr ""
2348
- #~ "pour plus de détails. Le support Premium est remboursé à 100% si nous "
2349
- #~ "n'arrivons pas à résoudre votre problème."
2350
-
2351
- #~ msgid ""
2352
- #~ "Most issues that occur with the Duplicator revolve around how a server is "
2353
- #~ "configured. In order to diagnose your issues we will require temporary "
2354
- #~ "admin accounts to your cPanel and WordPress Admin. Please fill out the "
2355
- #~ msgstr ""
2356
- #~ "La plupart des erreurs concernant le Duplicator sont concentrées autour "
2357
- #~ "des configurations serveur. Afin de diagnostiquer vos problèmes, il va "
2358
- #~ "nous falloir un accès administrateur temporaire vers votre cPanel et "
2359
- #~ "votre administration WordPress. Merci de remplir le"
2360
-
2361
- #~ msgid "Request Quote"
2362
- #~ msgstr "formulaire de demande de devis"
2363
-
2364
- #~ msgid "form and explain your issue in detail."
2365
- #~ msgstr "et de nous expliquer en détail vos problèmes."
2366
-
2367
- #~ msgid "System"
2368
- #~ msgstr "Système"
2369
-
2370
- #~ msgid "FTP"
2371
- #~ msgstr "FTP"
2372
-
2373
- #~ msgid "seconds"
2374
- #~ msgstr "secondes"
2375
-
2376
- #~ msgid "Max Memory"
2377
- #~ msgstr "Mémoire Max"
2378
-
2379
- #~ msgid "WP-Admin email is included. Add extra emails semicolon separated."
2380
- #~ msgstr ""
2381
- #~ "L'email WP-Admin est inclus. Ajoutez d'autres adresses emails séparées "
2382
- #~ "par des points-virgules."
2383
-
2384
- #~ msgid "Enable character conversion encoding"
2385
- #~ msgstr "Activer l'encodage de la conversion des caractères"
2386
-
2387
- #~ msgid "From"
2388
- #~ msgstr "De"
2389
-
2390
- #~ msgid "to"
2391
- #~ msgstr "à"
2392
-
2393
- #~ msgid "Disable this option for extended or double byte character sets"
2394
- #~ msgstr ""
2395
- #~ "Désactivez cette option pour les jeux de caractères étendus ou à double "
2396
- #~ "octet"
2397
-
2398
- #~ msgid ""
2399
- #~ "Having issues saving these options? Temporarily disable all 'Object "
2400
- #~ "Caches' (i.e. W3C Total Object Cache)"
2401
- #~ msgstr ""
2402
- #~ "Vous rencontrez des problèmes avec ces options ? Désactivez "
2403
- #~ "temporairement tous les 'Cache Objet' (dans W3 Total Cache par exemple)"
2404
-
2405
- #~ msgid "Install URL"
2406
- #~ msgstr "URL d'installation"
2407
-
2408
- #~ msgid "Delete entire snapshot directory when removing plugin"
2409
- #~ msgstr ""
2410
- #~ "Effacer l'intégralité du répertoire des Instantanés à la désintallation "
2411
- #~ "du plugin"
2412
-
2413
- #~ msgid "Save"
2414
- #~ msgstr "Sauvegarder"
2415
-
2416
- #~ msgid "Close"
2417
- #~ msgstr "Fermer"
2418
-
2419
- #~ msgid "Pre-Zip Overview"
2420
- #~ msgstr "Aperçu avant compression"
2421
-
2422
- #~ msgid "Perform Scan"
2423
- #~ msgstr "Faire un Scan"
2424
-
2425
- #~ msgid ""
2426
- #~ "Note: A scan will provide an estimate on the size of your file system. "
2427
- #~ "The scan will exclude items in the"
2428
- #~ msgstr ""
2429
- #~ "Note : Un scan va vous indiquer la taille estimée de votre fichier "
2430
- #~ "système. Il va exclure les éléments dans"
2431
-
2432
- #~ msgid ""
2433
- #~ "Files that are not readable by the plugin will not be included in the "
2434
- #~ "overview. Directories that are empty will not be included in the final "
2435
- #~ "package. "
2436
- #~ msgstr ""
2437
- #~ "Les fichiers qui ne sont pas lisibles par le plugin ne seront pas inclus "
2438
- #~ "dans l'aperçu. Les répertoires vides ne seront pas inclus dans le paquet "
2439
- #~ "final."
2440
-
2441
- #~ msgid "System Constraint"
2442
- #~ msgstr "Contraintes du Système"
2443
-
2444
- #~ msgid "Please try again! An issue has occurred."
2445
- #~ msgstr "Merci de réessayer ! Une erreur est survenue."
2446
-
2447
- #~ msgid "Recommendations"
2448
- #~ msgstr "Recommandations"
2449
-
2450
- #~ msgid "Validate"
2451
- #~ msgstr "Valider"
2452
-
2453
- #~ msgid "your system"
2454
- #~ msgstr "votre système"
2455
-
2456
- #~ msgid "refresh"
2457
- #~ msgstr "rafraîchir"
2458
-
2459
- #~ msgid "the dashboard."
2460
- #~ msgstr "le tableau de bord."
2461
-
2462
- #~ msgid "Monitor"
2463
- #~ msgstr "Surveillez"
2464
-
2465
- #~ msgid ""
2466
- #~ "your log file a few more minutes as processing may continue on some "
2467
- #~ "systems"
2468
- #~ msgstr ""
2469
- #~ "vos fichiers journaux encore quelques minutes le temps que le processus "
2470
- #~ "passe sur d'autres systèmes"
2471
-
2472
- #~ msgid ""
2473
- #~ "Contact your server admin to have the page timeout increased (see "
2474
- #~ "duration below)"
2475
- #~ msgstr ""
2476
- #~ "Contactez votre administrateur serveur afin qu'il augmente le 'timeout' "
2477
- #~ "de la page (voir la durée ci-dessous)"
2478
-
2479
- #~ msgid ""
2480
- #~ "Consider adding a directory filter in the options dialog if the process "
2481
- #~ "continues to timeout"
2482
- #~ msgstr ""
2483
- #~ "Essayez d'ajouter un filtre de répertoire dans les options si le "
2484
- #~ "processus continue à être avorté"
2485
-
2486
- #~ msgid "Check your disk space. For hosted sites review your providers help."
2487
- #~ msgstr ""
2488
- #~ "Vérifiez votre espace disque. Pour les sites hébergés, demandez l'aide à "
2489
- #~ "votre fournisseur."
2490
-
2491
- #~ msgid "Consider using an"
2492
- #~ msgstr "Songez à passer"
2493
-
2494
- #~ msgid "approved"
2495
- #~ msgstr "chez un"
2496
-
2497
- #~ msgid "hosting provider."
2498
- #~ msgstr "hébergeur approuvé."
2499
-
2500
- #~ msgid "See online help for more details at"
2501
- #~ msgstr "Consultez l'aide en ligne pour plus de détails à"
2502
-
2503
- #~ msgid "Please validate your system configuration."
2504
- #~ msgstr "Merci de valider votre configuration système."
2505
-
2506
- #~ msgid "Click link for details"
2507
- #~ msgstr "Cliquez sur le lien pour plus de détails"
2508
-
2509
- #~ msgid "SYSTEM REQUIRMENTS"
2510
- #~ msgstr "BESOINS SYSTEME"
2511
-
2512
- #~ msgid ""
2513
- #~ "The above paths should have permissions of 755 for directories and 644 "
2514
- #~ "for files. On some hosts the permission set requires 777. Setting items "
2515
- #~ "to 777 is a security issue and should only be set temporarily. Please "
2516
- #~ "avoid any hosting company that requires this kind of setup. See the "
2517
- #~ "'Duplicator Approved' link at the bottom of this dialog for a list of "
2518
- #~ "approved hosting providers."
2519
- #~ msgstr ""
2520
- #~ "Les chemins ci-dessous devraient avoir des permissions 755 pour les "
2521
- #~ "répertoires et 644 pour les fichiers. Certains hébergeurs demandent "
2522
- #~ "également de mettre les permissions à 777. Cela représente un danger pour "
2523
- #~ "la sécurité de votre site alors ne le laissez que temporairement (à "
2524
- #~ "l'exception d'Infomaniak). Pour consulter la liste des hébergeurs "
2525
- #~ "approuvés, allez voir la section 'Approuvée par Duplicator' à la fin de "
2526
- #~ "cette boîte de dialogue."
2527
-
2528
- #~ msgid ""
2529
- #~ "Also be sure to check the Owner/Group settings and validate they are "
2530
- #~ "correct and match other successful directories/files that are "
2531
- #~ "accessible. For more details contact your host or visit their help pages "
2532
- #~ "for more information on how they implement permissions and group settings."
2533
- #~ msgstr ""
2534
- #~ "Veillez également à vérifier les paramètres de Propriétaire ou de Groupe "
2535
- #~ "pour qu'ils vous donnent bien accès aux bons répertoires/fichiers. Pour "
2536
- #~ "plus de détails, contactez votre hébergeur ou visitez leurs pages de "
2537
- #~ "support pour plus d'information sur la configuration des permissions et "
2538
- #~ "des paramètres de groupe."
2539
-
2540
- #~ msgid ""
2541
- #~ "Safe Mode needs to be disabled in order for the Duplicator to operate "
2542
- #~ "correctly. Please set safe_mode = Off in you php.ini file. If you're on "
2543
- #~ "a hosted server and don't have access to the php.ini file then you will "
2544
- #~ "need to request this setting be updated. Safe Mode is no longer in future "
2545
- #~ "versions of PHP. If your host will not work with you to resolve the "
2546
- #~ "issue then consider a higher reputable hosting provider."
2547
- #~ msgstr ""
2548
- #~ "Le Mode Sécurité doit être désactivé afin que Duplicator fonctionne "
2549
- #~ "correctement. Merci de mettre safe_mode = Off dans votre fichier php.ini. "
2550
- #~ "Si vous êtes sur un serveur mutualisé et que vous n'avez pas accès à ce "
2551
- #~ "fichier, vous devrez contacter votre hébergeur pour qu'il le mette à "
2552
- #~ "jour. Le Mode Sécurité n'existe plus dans les versions suivantes de PHP. "
2553
- #~ "Si votre hébergeur ne vous aide pas à résoudre ce problème, envisagez de "
2554
- #~ "changer de fournisseur d'hébergement."
2555
-
2556
- #~ msgid ""
2557
- #~ "In order to complete an install the mysqli extension for PHP is required. "
2558
- #~ "If you are on a hosted server please contact your host and request that "
2559
- #~ "mysqli extension be enabled. For more information visit: http://php.net/"
2560
- #~ "manual/en/mysqli.installation.php"
2561
- #~ msgstr ""
2562
- #~ "Afin de finaliser l'installation, l'extension mysqli pour PHP est "
2563
- #~ "nécessaire. Si vous êtes sur un serveur mutualisé, contactez votre "
2564
- #~ "hébergeur et demandez-leur que cette extension soit activée. Pour plus "
2565
- #~ "d'informations, allez sur : http://php.net/manual/fr/mysqli.installation."
2566
- #~ "php"
2567
-
2568
- #~ msgid "SYSTEM CHECKS"
2569
- #~ msgstr "VERIFICATIONS SYSTEME"
2570
-
2571
- #~ msgid "Good"
2572
- #~ msgstr "Correct"
2573
-
2574
- #~ msgid "OK"
2575
- #~ msgstr "OK"
2576
-
2577
- #~ msgid "PHP 5.2.17+ is required"
2578
- #~ msgstr "PHP 5.2.17+ est requis"
2579
-
2580
- #~ msgid "Fail"
2581
- #~ msgstr "Echec"
2582
-
2583
- #~ msgid "Not detected"
2584
- #~ msgstr "Non détecté"
2585
-
2586
- #~ msgid "PHP SAPI"
2587
- #~ msgstr "PHP SAPI"
2588
-
2589
- #~ msgid "Add to exclusion path now"
2590
- #~ msgstr "Ajouter aux chemins exclus maintenant"
2591
-
2592
- #~ msgid "Directory excluded"
2593
- #~ msgstr "Répertoire exclus"
2594
-
2595
- #~ msgid "Cache Directory Not Found"
2596
- #~ msgstr "Répertoire de Cache Introuvable"
2597
-
2598
- #~ msgid "ONLINE RESOURCES"
2599
- #~ msgstr "RESSOURCES EN LIGNE"
2600
-
2601
- #~ msgid ""
2602
- #~ "The following directories should have permissions of 755 and files 644. "
2603
- #~ "Keep in mind that PHP may be accessing the paths/files as the user id "
2604
- #~ "that the web server runs as."
2605
- #~ msgstr ""
2606
- #~ "Les répertoires suivants devraient avoir des permissions en 755 et les "
2607
- #~ "fichiers en 644. Gardez à l'esprit que PHP peut accéder aux chemins/"
2608
- #~ "fichiers avec le même identifiant que le serveur."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wpduplicator.mo DELETED
Binary file
lang/wpduplicator.po DELETED
@@ -1,772 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPDuplicator\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-08-16 06:56-0700\n"
6
- "PO-Revision-Date: 2012-08-16 06:56-0700\n"
7
- "Last-Translator: Cory Lamle <cory@lifeinthegrid.com>\n"
8
- "Language-Team: \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-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: ./\n"
14
- "X-Poedit-SearchPath-0: ..\n"
15
-
16
- #: ../duplicator.php:195
17
- msgid "FAQ"
18
- msgstr ""
19
-
20
- #: ../duplicator.php:196
21
- msgid "Partner"
22
- msgstr ""
23
-
24
- #: ../duplicator.php:197
25
- msgid "Approved Hosts"
26
- msgstr ""
27
-
28
- #: ../duplicator.php:248
29
- msgid "Dashboard"
30
- msgstr ""
31
-
32
- #: ../duplicator.php:250
33
- msgid "Diagnostics"
34
- msgstr ""
35
-
36
- #: ../duplicator.php:281
37
- msgid "Manage"
38
- msgstr ""
39
-
40
- #: ../installer/log-read.php:42
41
- msgid "Log file not found or unreadable"
42
- msgstr ""
43
-
44
- #: ../installer/log-read.php:44
45
- msgid ""
46
- "The log file for the Duplicator Plugin can be found in the snapshots "
47
- "directory with the extension *.log"
48
- msgstr ""
49
-
50
- #: ../installer/log-read.php:45
51
- msgid "If no log file is present the try to create a package"
52
- msgstr ""
53
-
54
- #: ../installer/log-read.php:47
55
- msgid "Reasons for log file not showing"
56
- msgstr ""
57
-
58
- #: ../installer/log-read.php:48
59
- msgid "The web server does not support returning .log file extentions"
60
- msgstr ""
61
-
62
- #: ../installer/log-read.php:49
63
- msgid ""
64
- "The snapshots directory does not have the correct permissions to write "
65
- "files. Try setting the permissions to 755"
66
- msgstr ""
67
-
68
- #: ../installer/log-read.php:50
69
- msgid ""
70
- "The process that PHP runs under does not have enough permissions to create "
71
- "files. Please contact your hosting provider for more details"
72
- msgstr ""
73
-
74
- #: ../installer/log-view.php:100
75
- msgid "Duplicator: Create Package Log"
76
- msgstr ""
77
-
78
- #: ../installer/log-view.php:103
79
- msgid ""
80
- "Processing may take several minutes, please wait for progress bar to "
81
- "complete on the main status bar"
82
- msgstr ""
83
-
84
- #: ../installer/log-view.php:108
85
- msgid "Auto Refresh"
86
- msgstr ""
87
-
88
- #: ../installer/log-view.php:109
89
- msgid "Refresh"
90
- msgstr ""
91
-
92
- #: ../installer/log-view.php:117
93
- msgid "Support Center"
94
- msgstr ""
95
-
96
- #: ../installer/log-view.php:118
97
- msgid ""
98
- "Do NOT post this data to public sites like the WordPress.org forums as it "
99
- "contains sensitive data."
100
- msgstr ""
101
-
102
- #: ../inc/javascript.php:133
103
- msgid "Saving"
104
- msgstr ""
105
-
106
- #: ../inc/javascript.php:154
107
- msgid "Please select at least one package to delete."
108
- msgstr ""
109
-
110
- #: ../inc/javascript.php:158
111
- msgid "Are you sure, you want to delete the selected package(s)?"
112
- msgstr ""
113
-
114
- #: ../inc/javascript.php:174 ../inc/javascript.php:213
115
- #: ../inc/javascript.php:322 ../inc/javascript.php:422
116
- #: ../inc/javascript.php:441
117
- msgid "Ready to create new package."
118
- msgstr ""
119
-
120
- #: ../inc/javascript.php:189
121
- msgid "Please enter a backup name."
122
- msgstr ""
123
-
124
- #: ../inc/javascript.php:197
125
- msgid "Alpanumeric characters only on package name"
126
- msgstr ""
127
-
128
- #: ../inc/javascript.php:210
129
- msgid "Evaluating WordPress Setup. Please Wait"
130
- msgstr ""
131
-
132
- #: ../inc/javascript.php:276
133
- msgid "Cancel"
134
- msgstr ""
135
-
136
- #: ../inc/javascript.php:282
137
- msgid "Create Package Set"
138
- msgstr ""
139
-
140
- #: ../inc/javascript.php:327
141
- msgid "Checking System Status. Please Wait!"
142
- msgstr ""
143
-
144
- #: ../inc/javascript.php:353
145
- msgid "Scanning Please Wait"
146
- msgstr ""
147
-
148
- #: ../inc/javascript.php:358 ../inc/javascript.php:359
149
- #: ../inc/javascript.php:360
150
- msgid "unreadable"
151
- msgstr ""
152
-
153
- #: ../inc/javascript.php:361
154
- msgid "*Scan Error"
155
- msgstr ""
156
-
157
- #: ../inc/javascript.php:362
158
- msgid "Files"
159
- msgstr ""
160
-
161
- #: ../inc/javascript.php:362
162
- msgid "Folders"
163
- msgstr ""
164
-
165
- #: ../inc/javascript.php:367
166
- msgid "error scanning directory"
167
- msgstr ""
168
-
169
- #: ../inc/javascript.php:397
170
- msgid "DATABASE"
171
- msgstr ""
172
-
173
- #: ../inc/javascript.php:398
174
- msgid "PACKAGE"
175
- msgstr ""
176
-
177
- #: ../inc/javascript.php:399
178
- msgid "INSTALLER"
179
- msgstr ""
180
-
181
- #: ../inc/javascript.php:418
182
- msgid "AJAX Response"
183
- msgstr ""
184
-
185
- #: ../inc/javascript.php:436
186
- msgid "Creating package may take several minutes. Please Wait... "
187
- msgstr ""
188
-
189
- #: ../inc/javascript.php:437
190
- msgid "Preview Log"
191
- msgstr ""
192
-
193
- #: ../inc/page.main.php:31
194
- msgid "By"
195
- msgstr ""
196
-
197
- #: ../inc/page.main.php:38 ../inc/page.main.php:82
198
- msgid "Package Name"
199
- msgstr ""
200
-
201
- #: ../inc/page.main.php:41
202
- msgid "Create Package"
203
- msgstr ""
204
-
205
- #: ../inc/page.main.php:42
206
- msgid "Delete selected package(s)"
207
- msgstr ""
208
-
209
- #: ../inc/page.main.php:45
210
- msgid "Options"
211
- msgstr ""
212
-
213
- #: ../inc/page.main.php:46
214
- msgid "System Check"
215
- msgstr ""
216
-
217
- #: ../inc/page.main.php:47
218
- msgid "Show Create Log"
219
- msgstr ""
220
-
221
- #: ../inc/page.main.php:50
222
- msgid "Help"
223
- msgstr ""
224
-
225
- #: ../inc/page.main.php:51
226
- msgid "Partner with us"
227
- msgstr ""
228
-
229
- #: ../inc/page.main.php:60
230
- msgid "Status"
231
- msgstr ""
232
-
233
- #: ../inc/page.main.php:61
234
- msgid "Ready to create new package"
235
- msgstr ""
236
-
237
- #: ../inc/page.main.php:77
238
- msgid "Select all packages"
239
- msgstr ""
240
-
241
- #: ../inc/page.main.php:78
242
- msgid "Information"
243
- msgstr ""
244
-
245
- #: ../inc/page.main.php:79
246
- msgid "Owner"
247
- msgstr ""
248
-
249
- #: ../inc/page.main.php:80
250
- msgid "Created"
251
- msgstr ""
252
-
253
- #: ../inc/page.main.php:81
254
- msgid "Size"
255
- msgstr ""
256
-
257
- #: ../inc/page.main.php:84
258
- msgid "Package Set"
259
- msgstr ""
260
-
261
- #: ../inc/page.main.php:85
262
- msgid "(Download Both)"
263
- msgstr ""
264
-
265
- #: ../inc/page.main.php:116 ../inc/page.main.php:144
266
- msgid "View"
267
- msgstr ""
268
-
269
- #: ../inc/page.main.php:122 ../inc/view.options.php:10
270
- msgid "Installer"
271
- msgstr ""
272
-
273
- #: ../inc/page.main.php:123 ../inc/page.main.php:152 ../inc/view.options.php:9
274
- msgid "Package"
275
- msgstr ""
276
-
277
- #: ../inc/page.main.php:129
278
- msgid "Version"
279
- msgstr ""
280
-
281
- #: ../inc/page.main.php:130
282
- msgid "Secure Name"
283
- msgstr ""
284
-
285
- #: ../inc/page.main.php:131
286
- msgid "Download SQL File"
287
- msgstr ""
288
-
289
- #: ../inc/page.main.php:132
290
- msgid "Show Download Links"
291
- msgstr ""
292
-
293
- #: ../inc/page.main.php:158
294
- msgid "Legacy Version"
295
- msgstr ""
296
-
297
- #: ../inc/page.main.php:161
298
- msgid ""
299
- "This package was built with a version that is no longer supported. It is "
300
- "highly recommended that this package be deleted. For more details see the"
301
- msgstr ""
302
-
303
- #: ../inc/page.main.php:162
304
- msgid "Online FAQs"
305
- msgstr ""
306
-
307
- #: ../inc/page.main.php:174
308
- msgid "No packages found"
309
- msgstr ""
310
-
311
- #: ../inc/page.main.php:175
312
- msgid "To create a new package, enter a name and click the create button "
313
- msgstr ""
314
-
315
- #: ../inc/page.main.php:177
316
- msgid "Check Your"
317
- msgstr ""
318
-
319
- #: ../inc/page.main.php:178
320
- msgid "servers compatability"
321
- msgstr ""
322
-
323
- #: ../inc/page.main.php:179
324
- msgid "with the duplicator"
325
- msgstr ""
326
-
327
- #: ../inc/page.main.php:180
328
- msgid "This process will backup all your files and database"
329
- msgstr ""
330
-
331
- #: ../inc/page.main.php:181
332
- msgid "Creating a package may take several minutes if you have a large site"
333
- msgstr ""
334
-
335
- #: ../inc/page.main.php:182
336
- msgid "This window should remain open for the process to complete"
337
- msgstr ""
338
-
339
- #: ../inc/page.main.php:183
340
- msgid "Please be patient while we work through this Beta version"
341
- msgstr ""
342
-
343
- #: ../inc/page.main.php:184
344
- msgid "Please report any issues to"
345
- msgstr ""
346
-
347
- #: ../inc/page.main.php:201
348
- msgid "Total Storage Used"
349
- msgstr ""
350
-
351
- #: ../inc/view.options.php:4
352
- msgid "Duplicator Options"
353
- msgstr ""
354
-
355
- #: ../inc/view.options.php:11
356
- msgid "System"
357
- msgstr ""
358
-
359
- #: ../inc/view.options.php:12
360
- msgid "FTP"
361
- msgstr ""
362
-
363
- #: ../inc/view.options.php:22
364
- msgid "Processing"
365
- msgstr ""
366
-
367
- #: ../inc/view.options.php:36
368
- msgid "Max Time"
369
- msgstr ""
370
-
371
- #: ../inc/view.options.php:36
372
- msgid "seconds"
373
- msgstr ""
374
-
375
- #: ../inc/view.options.php:37
376
- msgid "Max Memory"
377
- msgstr ""
378
-
379
- #: ../inc/view.options.php:45
380
- msgid "Email when completed"
381
- msgstr ""
382
-
383
- #: ../inc/view.options.php:46
384
- msgid "WP-Admin email is included. Add extra emails semicolon separated."
385
- msgstr ""
386
-
387
- #: ../inc/view.options.php:55
388
- msgid "Exclusion Filters"
389
- msgstr ""
390
-
391
- #: ../inc/view.options.php:57
392
- msgid "Directories"
393
- msgstr ""
394
-
395
- #: ../inc/view.options.php:59
396
- msgid "Root Path"
397
- msgstr ""
398
-
399
- #: ../inc/view.options.php:61
400
- msgid "File extensions"
401
- msgstr ""
402
-
403
- #: ../inc/view.options.php:64
404
- msgid "Separate all filters by semicolon"
405
- msgstr ""
406
-
407
- #: ../inc/view.options.php:69
408
- msgid "Database Encoding"
409
- msgstr ""
410
-
411
- #: ../inc/view.options.php:72
412
- msgid "Enable character conversion encoding"
413
- msgstr ""
414
-
415
- #: ../inc/view.options.php:77
416
- msgid "From"
417
- msgstr ""
418
-
419
- #: ../inc/view.options.php:78
420
- msgid "to"
421
- msgstr ""
422
-
423
- #: ../inc/view.options.php:79
424
- msgid "Disable this option for extended or double byte character sets"
425
- msgstr ""
426
-
427
- #: ../inc/view.options.php:86
428
- msgid ""
429
- "Having issues saving these options? Temporarily disable all 'Object "
430
- "Caches' (i.e. W3C Total Object Cache)"
431
- msgstr ""
432
-
433
- #: ../inc/view.options.php:96
434
- msgid "Settings Defaults"
435
- msgstr ""
436
-
437
- #: ../inc/view.options.php:99
438
- msgid "Install URL"
439
- msgstr ""
440
-
441
- #: ../inc/view.options.php:106
442
- msgid "Database Defaults"
443
- msgstr ""
444
-
445
- #: ../inc/view.options.php:109
446
- msgid "Host"
447
- msgstr ""
448
-
449
- #: ../inc/view.options.php:113 ../inc/view.system.php:8
450
- msgid "Name"
451
- msgstr ""
452
-
453
- #: ../inc/view.options.php:117
454
- msgid "User"
455
- msgstr ""
456
-
457
- #: ../inc/view.options.php:122
458
- msgid ""
459
- "The installer can have these fields pre-filled at install time. These "
460
- "values are optional."
461
- msgstr ""
462
-
463
- #: ../inc/view.options.php:129
464
- msgid "Uninstall Options"
465
- msgstr ""
466
-
467
- #: ../inc/view.options.php:132
468
- msgid "Delete Entire Snapshot Directory"
469
- msgstr ""
470
-
471
- #: ../inc/view.options.php:133
472
- msgid "Snapshot Directory"
473
- msgstr ""
474
-
475
- #: ../inc/view.options.php:161
476
- msgid "Save"
477
- msgstr ""
478
-
479
- #: ../inc/view.options.php:162
480
- msgid "Close"
481
- msgstr ""
482
-
483
- #: ../inc/view.system.php:3
484
- msgid "Package Creation"
485
- msgstr ""
486
-
487
- #: ../inc/view.system.php:5
488
- msgid "Create a new Package Set?"
489
- msgstr ""
490
-
491
- #: ../inc/view.system.php:10 ../inc/view.system.php:205
492
- msgid "Pre-Zip Overview"
493
- msgstr ""
494
-
495
- #: ../inc/view.system.php:12
496
- msgid "Perform Scan"
497
- msgstr ""
498
-
499
- #: ../inc/view.system.php:18
500
- msgid ""
501
- "Note: A scan will provide an estimate on the size of your file system. The "
502
- "scan will exclude items in the"
503
- msgstr ""
504
-
505
- #: ../inc/view.system.php:19
506
- msgid "directory filter list"
507
- msgstr ""
508
-
509
- #: ../inc/view.system.php:20
510
- msgid ""
511
- "Files that are not readable by the plugin will not be included in the "
512
- "overview. Directories that are empty will not be included in the final "
513
- "package. "
514
- msgstr ""
515
-
516
- #: ../inc/view.system.php:29
517
- msgid "System Constraint"
518
- msgstr ""
519
-
520
- #: ../inc/view.system.php:32
521
- msgid "Please try again! An issue has occurred."
522
- msgstr ""
523
-
524
- #: ../inc/view.system.php:36
525
- msgid "Recommendations"
526
- msgstr ""
527
-
528
- #: ../inc/view.system.php:41
529
- msgid "Validate"
530
- msgstr ""
531
-
532
- #: ../inc/view.system.php:42
533
- msgid "your system"
534
- msgstr ""
535
-
536
- #: ../inc/view.system.php:43
537
- msgid "refresh"
538
- msgstr ""
539
-
540
- #: ../inc/view.system.php:44
541
- msgid "the dashboard."
542
- msgstr ""
543
-
544
- #: ../inc/view.system.php:48
545
- msgid "Monitor"
546
- msgstr ""
547
-
548
- #: ../inc/view.system.php:49
549
- msgid ""
550
- "your log file a few more minutes as processing may continue on some systems"
551
- msgstr ""
552
-
553
- #: ../inc/view.system.php:52
554
- msgid ""
555
- "Contact your server admin to have the page timeout increased (see duration "
556
- "below)"
557
- msgstr ""
558
-
559
- #: ../inc/view.system.php:53
560
- msgid ""
561
- "Consider adding a directory filter in the options dialog if the process "
562
- "continues to timeout"
563
- msgstr ""
564
-
565
- #: ../inc/view.system.php:54
566
- msgid "Check your disk space. For hosted sites review your providers help."
567
- msgstr ""
568
-
569
- #: ../inc/view.system.php:57
570
- msgid "Consider using an"
571
- msgstr ""
572
-
573
- #: ../inc/view.system.php:59
574
- msgid "approved"
575
- msgstr ""
576
-
577
- #: ../inc/view.system.php:60
578
- msgid "hosting provider."
579
- msgstr ""
580
-
581
- #: ../inc/view.system.php:64
582
- msgid "Server Response"
583
- msgstr ""
584
-
585
- #: ../inc/view.system.php:69
586
- msgid "See online help for more details at"
587
- msgstr ""
588
-
589
- #: ../inc/view.system.php:79
590
- msgid "System Checks"
591
- msgstr ""
592
-
593
- #: ../inc/view.system.php:82
594
- msgid "Please validate your system configuration."
595
- msgstr ""
596
-
597
- #: ../inc/view.system.php:83
598
- msgid "Click link for details"
599
- msgstr ""
600
-
601
- #: ../inc/view.system.php:92
602
- msgid "SYSTEM REQUIRMENTS"
603
- msgstr ""
604
-
605
- #: ../inc/view.system.php:93
606
- msgid "File Permissions"
607
- msgstr ""
608
-
609
- #: ../inc/view.system.php:96
610
- msgid ""
611
- "The following directories should have permissions of 755 and files 644. "
612
- "Keep in mind that PHP may be accessing the paths/files as the user id that "
613
- "the web server runs as."
614
- msgstr ""
615
-
616
- #: ../inc/view.system.php:116
617
- msgid "Reserved Files"
618
- msgstr ""
619
-
620
- #: ../inc/view.system.php:119
621
- msgid ""
622
- "If this check fails then a reserved file was found in the WordPress root "
623
- "directory. The following are reserved file names installer.php, installer-"
624
- "data.sql and installer-log.txt. In order to archive your data correctly "
625
- "please remove any of these files from your WordPress root directory. Then "
626
- "try creating your package again."
627
- msgstr ""
628
-
629
- #: ../inc/view.system.php:124
630
- msgid "Zip Archive Enabled"
631
- msgstr ""
632
-
633
- #: ../inc/view.system.php:127
634
- msgid ""
635
- "The ZipArchive extension for PHP is required for compression. Please "
636
- "contact your hosting provider if you're on a hosted server. For additional "
637
- "information see our online documentation."
638
- msgstr ""
639
-
640
- #: ../inc/view.system.php:132
641
- msgid "Safe Mode Off"
642
- msgstr ""
643
-
644
- #: ../inc/view.system.php:135
645
- msgid ""
646
- "Safe Mode needs to be disabled in order for the Duplicator to operate "
647
- "correctly. Please set safe_mode = Off in you php.ini file. If you're on a "
648
- "hosted server and don't have access to the php.ini file then you will need "
649
- "to request this setting be updated. Safe Mode is no longer in future "
650
- "versions of PHP. If your host will not work with you to resolve the issue "
651
- "then consider a higher reputable hosting provider."
652
- msgstr ""
653
-
654
- #: ../inc/view.system.php:140
655
- msgid "MySQLi Support"
656
- msgstr ""
657
-
658
- #: ../inc/view.system.php:143
659
- msgid ""
660
- "In order to complete an install the mysqli extension for PHP is required. If "
661
- "you are on a hosted server please contact your host and request that mysqli "
662
- "extension be enabled. For more information visit: http://php.net/manual/en/"
663
- "mysqli.installation.php"
664
- msgstr ""
665
-
666
- #: ../inc/view.system.php:152
667
- msgid "SYSTEM CHECKS"
668
- msgstr ""
669
-
670
- #: ../inc/view.system.php:155
671
- msgid "PHP Version"
672
- msgstr ""
673
-
674
- #: ../inc/view.system.php:157 ../inc/view.system.php:169
675
- #: ../inc/view.system.php:193
676
- msgid "Good"
677
- msgstr ""
678
-
679
- #: ../inc/view.system.php:159 ../inc/view.system.php:172
680
- #: ../inc/view.system.php:175 ../inc/view.system.php:178
681
- #: ../inc/view.system.php:181
682
- msgid "OK"
683
- msgstr ""
684
-
685
- #: ../inc/view.system.php:160
686
- msgid "PHP 5.2.17+ is required"
687
- msgstr ""
688
-
689
- #: ../inc/view.system.php:162 ../inc/view.system.php:184
690
- #: ../inc/view.system.php:196
691
- msgid "Fail"
692
- msgstr ""
693
-
694
- #: ../inc/view.system.php:168 ../inc/view.system.php:171
695
- #: ../inc/view.system.php:174 ../inc/view.system.php:177
696
- #: ../inc/view.system.php:180 ../inc/view.system.php:183
697
- msgid "Web Server"
698
- msgstr ""
699
-
700
- #: ../inc/view.system.php:183
701
- msgid "Not detected"
702
- msgstr ""
703
-
704
- #: ../inc/view.system.php:192 ../inc/view.system.php:195
705
- msgid "Open Base Dir"
706
- msgstr ""
707
-
708
- #: ../inc/view.system.php:192
709
- msgid "Off"
710
- msgstr ""
711
-
712
- #: ../inc/view.system.php:195
713
- msgid "On"
714
- msgstr ""
715
-
716
- #: ../inc/view.system.php:202
717
- msgid "PHP SAPI"
718
- msgstr ""
719
-
720
- #: ../inc/view.system.php:207
721
- msgid "Scan Now"
722
- msgstr ""
723
-
724
- #: ../inc/view.system.php:216
725
- msgid "Cache Directory Found"
726
- msgstr ""
727
-
728
- #: ../inc/view.system.php:217
729
- msgid "Add to exclusion path now"
730
- msgstr ""
731
-
732
- #: ../inc/view.system.php:219
733
- msgid "Directory excluded"
734
- msgstr ""
735
-
736
- #: ../inc/view.system.php:220
737
- msgid "Path"
738
- msgstr ""
739
-
740
- #: ../inc/view.system.php:222
741
- msgid "Cache Directory Not Found"
742
- msgstr ""
743
-
744
- #: ../inc/view.system.php:228
745
- msgid "ONLINE RESOURCES"
746
- msgstr ""
747
-
748
- #: ../inc/view.system.php:233
749
- msgid "For additional online help please visit"
750
- msgstr ""
751
-
752
- #: ../inc/view.system.php:239
753
- msgid "Need a hosting provider that is"
754
- msgstr ""
755
-
756
- #: ../inc/view.system.php:241
757
- msgid "Duplicator Approved"
758
- msgstr ""
759
-
760
- #: ../inc/view.system.php:252
761
- msgid "Download Links"
762
- msgstr ""
763
-
764
- #: ../inc/view.system.php:255
765
- msgid "The following links contain sensitive data. Please share with caution!"
766
- msgstr ""
767
-
768
- #: ../inc/view.system.php:261
769
- msgid ""
770
- "The database SQL script is a quick link to your database backup script. An "
771
- "exact copy is also stored in the package."
772
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wpduplicator.pot DELETED
@@ -1,1686 +0,0 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: WPDuplicator\n"
5
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicator\n"
6
- "POT-Creation-Date: 2015-07-26 23:49+0200\n"
7
- "PO-Revision-Date: 2015-04-13 09:10-0000\n"
8
- "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
9
- "Language-Team: \n"
10
- "Language: en\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
- "X-Poedit-Basepath: ..\n"
18
- "X-Generator: Poedit 1.8.2\n"
19
- "X-Poedit-SourceCharset: UTF-8\n"
20
- "X-Poedit-WPHeader: duplicator.php\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: assets\n"
23
-
24
- #: classes/ui.php:111
25
- msgid ""
26
- "Reserved Duplicator install file(s) still exists in the root directory. "
27
- "Please delete these file(s) to avoid possible security issues."
28
- msgstr ""
29
-
30
- #: classes/ui.php:112
31
- msgid "Remove file(s) now"
32
- msgstr ""
33
-
34
- #: classes/ui.php:113
35
- msgid "Dismiss this notice"
36
- msgstr ""
37
-
38
- #: classes/utility.php:249
39
- msgid "You do not have sufficient permissions to access this page."
40
- msgstr ""
41
-
42
- #: duplicator.php:102
43
- msgid "Get Help"
44
- msgstr ""
45
-
46
- #: duplicator.php:102 duplicator.php:191 views/help/help.php:29
47
- msgid "Help"
48
- msgstr ""
49
-
50
- #: duplicator.php:103
51
- msgid "Support the Plugin"
52
- msgstr ""
53
-
54
- #: duplicator.php:103 duplicator.php:195 views/help/about.php:41
55
- msgid "About"
56
- msgstr ""
57
-
58
- #: duplicator.php:179 views/packages/controller.php:76
59
- #: views/packages/list.base.php:235
60
- msgid "Packages"
61
- msgstr ""
62
-
63
- #: duplicator.php:183 views/settings/controller.php:19
64
- msgid "Settings"
65
- msgstr ""
66
-
67
- #: duplicator.php:187 views/tools/controller.php:13
68
- msgid "Tools"
69
- msgstr ""
70
-
71
- #: duplicator.php:246
72
- msgid "Manage"
73
- msgstr ""
74
-
75
- #: views/help/about.php:54
76
- msgid ""
77
- "Created for Admins, Developers and Designers the Duplicator can streamline "
78
- "your workflows and help you quickly clone a WordPress application. "
79
- "Migrating a WordPress site manually can be very time consuming. The "
80
- "Duplicator was made to help you speed up the migration process. Please help "
81
- "us to continue the development effort of this plugin."
82
- msgstr ""
83
-
84
- #: views/help/about.php:64
85
- msgid "Support Duplicator"
86
- msgstr ""
87
-
88
- #: views/help/about.php:71
89
- msgid "Partner with Us"
90
- msgstr ""
91
-
92
- #: views/help/about.php:83
93
- msgid "Keep Active and Online"
94
- msgstr ""
95
-
96
- #: views/help/about.php:90
97
- msgid "Leave 5 Stars"
98
- msgstr ""
99
-
100
- #: views/help/about.php:107
101
- msgid "Spread the Word"
102
- msgstr ""
103
-
104
- #: views/help/about.php:113
105
- msgid "Duplicate Your WordPress"
106
- msgstr ""
107
-
108
- #: views/help/about.php:114
109
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
110
- msgstr ""
111
-
112
- #: views/help/about.php:131
113
- msgid "Get More Great Tools"
114
- msgstr ""
115
-
116
- #: views/help/gopro.php:37
117
- msgid "Go Pro!"
118
- msgstr ""
119
-
120
- #: views/help/gopro.php:46
121
- msgid "Duplicator Pro Has Arrived!"
122
- msgstr ""
123
-
124
- #: views/help/gopro.php:49
125
- msgid "The simplicity of Duplicator"
126
- msgstr ""
127
-
128
- #: views/help/gopro.php:50
129
- msgid "with the power the professional requires."
130
- msgstr ""
131
-
132
- #: views/help/gopro.php:57
133
- msgid "Duplicator Free"
134
- msgstr ""
135
-
136
- #: views/help/gopro.php:60 views/help/gopro.php:88
137
- msgid "Backup Files &amp; Database"
138
- msgstr ""
139
-
140
- #: views/help/gopro.php:61 views/help/gopro.php:89
141
- msgid ""
142
- "Compresses all your WordPress files and database into a compressed snapshot "
143
- "archive file."
144
- msgstr ""
145
-
146
- #: views/help/gopro.php:64 views/help/gopro.php:92
147
- msgid "Directory Filters"
148
- msgstr ""
149
-
150
- #: views/help/gopro.php:65 views/help/gopro.php:93
151
- msgid ""
152
- "Filter out the directories and file extensions you want to include/exclude "
153
- "in your in your archive file."
154
- msgstr ""
155
-
156
- #: views/help/gopro.php:68 views/help/gopro.php:96
157
- msgid "Database Table Filters"
158
- msgstr ""
159
-
160
- #: views/help/gopro.php:69 views/help/gopro.php:97
161
- msgid ""
162
- "Filter out only the database tables you want to include/exclude in your "
163
- "database creation script."
164
- msgstr ""
165
-
166
- #: views/help/gopro.php:72 views/help/gopro.php:100
167
- msgid "Migration Wizard"
168
- msgstr ""
169
-
170
- #: views/help/gopro.php:73 views/help/gopro.php:101
171
- msgid ""
172
- "With just two files (archive &amp; installer.php) move your site to a new "
173
- "location."
174
- msgstr ""
175
-
176
- #: views/help/gopro.php:85 views/packages/new1.inc.form.php:50
177
- msgid "Duplicator Pro"
178
- msgstr ""
179
-
180
- #: views/help/gopro.php:104
181
- msgid "Scheduled Backups"
182
- msgstr ""
183
-
184
- #: views/help/gopro.php:105
185
- msgid ""
186
- "Automate the creation of your packages to run at various scheduled intervals."
187
- msgstr ""
188
-
189
- #: views/help/gopro.php:108
190
- msgid "Dropbox Support"
191
- msgstr ""
192
-
193
- #: views/help/gopro.php:109
194
- msgid "Backup up your entire site to Dropbox."
195
- msgstr ""
196
-
197
- #: views/help/gopro.php:112
198
- msgid "FTP Support"
199
- msgstr ""
200
-
201
- #: views/help/gopro.php:113
202
- msgid "Backup up your entire site to an FTP server."
203
- msgstr ""
204
-
205
- #: views/help/gopro.php:116
206
- msgid "Customer Support"
207
- msgstr ""
208
-
209
- #: views/help/gopro.php:117
210
- msgid ""
211
- "Server setups can be quite complex, with pro you get prompt help to get your "
212
- "site backed up and moved."
213
- msgstr ""
214
-
215
- #: views/help/gopro.php:124
216
- msgid "Check It Out!"
217
- msgstr ""
218
-
219
- #: views/help/help.php:38
220
- msgid ""
221
- "Migrating WordPress is a complex process and the logic to make all the magic "
222
- "happen smoothly may not work quickly with every site. With over 30,000 "
223
- "plugins and a very complex server eco-system some migrations may run into "
224
- "issues. This is why the Duplicator includes a detailed knowledgebase that "
225
- "can help with many common issues. Resources to additional support, approved "
226
- "hosting, and alternatives to fit your needs can be found below."
227
- msgstr ""
228
-
229
- #: views/help/help.php:50
230
- msgid "Knowledgebase"
231
- msgstr ""
232
-
233
- #: views/help/help.php:53
234
- msgid "Complete Online Documentation"
235
- msgstr ""
236
-
237
- #: views/help/help.php:55
238
- msgid "Choose A Section"
239
- msgstr ""
240
-
241
- #: views/help/help.php:56
242
- msgid "Quick Start"
243
- msgstr ""
244
-
245
- #: views/help/help.php:57
246
- msgid "User Guide"
247
- msgstr ""
248
-
249
- #: views/help/help.php:58
250
- msgid "FAQs"
251
- msgstr ""
252
-
253
- #: views/help/help.php:59
254
- msgid "Change Log"
255
- msgstr ""
256
-
257
- #: views/help/help.php:60
258
- msgid "Product Page"
259
- msgstr ""
260
-
261
- #: views/help/help.php:69
262
- msgid "Online Support"
263
- msgstr ""
264
-
265
- #: views/help/help.php:72
266
- msgid "Get Help From IT Professionals"
267
- msgstr ""
268
-
269
- #: views/help/help.php:76
270
- msgid "Get Support!"
271
- msgstr ""
272
-
273
- #: views/help/help.php:88
274
- msgid "Approved Hosting"
275
- msgstr ""
276
-
277
- #: views/help/help.php:91
278
- msgid "Servers That Work With Duplicator"
279
- msgstr ""
280
-
281
- #: views/help/help.php:94
282
- msgid "Trusted Providers!"
283
- msgstr ""
284
-
285
- #: views/help/help.php:104
286
- msgid "Alternatives"
287
- msgstr ""
288
-
289
- #: views/help/help.php:107
290
- msgid "Other Commercial Resources"
291
- msgstr ""
292
-
293
- #: views/help/help.php:110
294
- msgid "Pro Solutions!"
295
- msgstr ""
296
-
297
- #: views/packages/list-nodata.php:7
298
- msgid "No Packages Found."
299
- msgstr ""
300
-
301
- #: views/packages/list-nodata.php:8
302
- msgid "Click the 'Create New' button to build a package."
303
- msgstr ""
304
-
305
- #: views/packages/list-nodata.php:13
306
- msgid "Please visit the"
307
- msgstr ""
308
-
309
- #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
310
- #: views/packages/new1.base.php:234
311
- msgid "help page"
312
- msgstr ""
313
-
314
- #: views/packages/list-nodata.php:15
315
- msgid "for additional support"
316
- msgstr ""
317
-
318
- #: views/packages/list-nodata.php:24
319
- msgid "Older packages prior to 0.5.0 are no longer supported in this version."
320
- msgstr ""
321
-
322
- #: views/packages/list-nodata.php:27
323
- msgid "To get an older package please visit the"
324
- msgstr ""
325
-
326
- #: views/packages/list-nodata.php:29
327
- msgid "and look for the Change Log link for additional instructions."
328
- msgstr ""
329
-
330
- #: views/packages/list-nodata.php:33
331
- msgid "Hide this message"
332
- msgstr ""
333
-
334
- #: views/packages/list.base.php:39
335
- msgid "Help Support Duplicator"
336
- msgstr ""
337
-
338
- #: views/packages/list.base.php:50
339
- msgid "Bulk Actions"
340
- msgstr ""
341
-
342
- #: views/packages/list.base.php:51
343
- msgid "Delete selected package(s)"
344
- msgstr ""
345
-
346
- #: views/packages/list.base.php:51
347
- msgid "Delete"
348
- msgstr ""
349
-
350
- #: views/packages/list.base.php:53
351
- msgid "Apply"
352
- msgstr ""
353
-
354
- #: views/packages/list.base.php:58
355
- msgid "Package Logs"
356
- msgstr ""
357
-
358
- #: views/packages/list.base.php:61 views/packages/new1.base.php:96
359
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:43
360
- #: views/packages/new3.base.php:89
361
- msgid "All Packages"
362
- msgstr ""
363
-
364
- #: views/packages/list.base.php:62 views/packages/new1.base.php:97
365
- #: views/packages/new2.base.php:70 views/packages/new3.base.php:44
366
- msgid "Create New"
367
- msgstr ""
368
-
369
- #: views/packages/list.base.php:87
370
- msgid "Select all packages"
371
- msgstr ""
372
-
373
- #: views/packages/list.base.php:88 views/packages/new3.base.php:108
374
- msgid "Details"
375
- msgstr ""
376
-
377
- #: views/packages/list.base.php:89
378
- msgid "Created"
379
- msgstr ""
380
-
381
- #: views/packages/list.base.php:90 views/packages/new2.base.php:222
382
- #: views/packages/new2.base.php:334
383
- msgid "Size"
384
- msgstr ""
385
-
386
- #: views/packages/list.base.php:91 views/packages/new1.inc.form.php:6
387
- #: views/packages/new1.inc.form.php:31 views/packages/new3.base.php:74
388
- msgid "Name"
389
- msgstr ""
390
-
391
- #: views/packages/list.base.php:93 views/settings/general.php:110
392
- msgid "Package"
393
- msgstr ""
394
-
395
- #: views/packages/list.base.php:124
396
- msgid "(No Notes Taken)"
397
- msgstr ""
398
-
399
- #: views/packages/list.base.php:142 views/packages/list.base.php:187
400
- msgid "View"
401
- msgstr ""
402
-
403
- #: views/packages/list.base.php:147 views/packages/new1.inc.form.php:176
404
- #: views/packages/new3.base.php:79
405
- msgid "Installer"
406
- msgstr ""
407
-
408
- #: views/packages/list.base.php:150 views/packages/new1.inc.form.php:65
409
- #: views/packages/new2.base.php:195 views/packages/new3.base.php:83
410
- msgid "Archive"
411
- msgstr ""
412
-
413
- #: views/packages/list.base.php:155 views/packages/list.base.php:200
414
- #: views/settings/general.php:79 views/tools/diagnostics.php:141
415
- #: views/tools/diagnostics.php:160 views/tools/diagnostics.php:200
416
- msgid "Version"
417
- msgstr ""
418
-
419
- #: views/packages/list.base.php:156 views/packages/list.base.php:201
420
- #: views/packages/new1.inc.form.php:199 views/tools/diagnostics.php:168
421
- msgid "User"
422
- msgstr ""
423
-
424
- #: views/packages/list.base.php:157 views/packages/list.base.php:202
425
- msgid "Hash"
426
- msgstr ""
427
-
428
- #: views/packages/list.base.php:158 views/packages/list.base.php:207
429
- #: views/packages/new1.inc.form.php:8 views/packages/new1.inc.form.php:13
430
- msgid "Notes"
431
- msgstr ""
432
-
433
- #: views/packages/list.base.php:160
434
- msgid "Links"
435
- msgstr ""
436
-
437
- #: views/packages/list.base.php:161
438
- msgid "SQL"
439
- msgstr ""
440
-
441
- #: views/packages/list.base.php:162
442
- msgid "Log"
443
- msgstr ""
444
-
445
- #: views/packages/list.base.php:165
446
- msgid "Open Scan Report"
447
- msgstr ""
448
-
449
- #: views/packages/list.base.php:166
450
- msgid "View Package Object"
451
- msgstr ""
452
-
453
- #: views/packages/list.base.php:193
454
- msgid "View Error Details"
455
- msgstr ""
456
-
457
- #: views/packages/list.base.php:205
458
- msgid "Unrecoverable Error! Please remove this package."
459
- msgstr ""
460
-
461
- #: views/packages/list.base.php:210
462
- msgid ""
463
- "This package has encountered errors. Click 'View Log' for more details. "
464
- "For additional support see the "
465
- msgstr ""
466
-
467
- #: views/packages/list.base.php:211
468
- msgid "online knowledgebase"
469
- msgstr ""
470
-
471
- #: views/packages/list.base.php:213
472
- msgid "View Log"
473
- msgstr ""
474
-
475
- #: views/packages/list.base.php:236 views/packages/new2.base.php:219
476
- #: views/packages/new2.base.php:328
477
- msgid "Total Size"
478
- msgstr ""
479
-
480
- #: views/packages/list.base.php:255
481
- msgid "Download Links"
482
- msgstr ""
483
-
484
- #: views/packages/list.base.php:258
485
- msgid "The following links contain sensitive data. Please share with caution!"
486
- msgstr ""
487
-
488
- #: views/packages/list.base.php:264
489
- msgid ""
490
- "The database SQL script is a quick link to your database backup script. An "
491
- "exact copy is also stored in the package."
492
- msgstr ""
493
-
494
- #: views/packages/list.base.php:287
495
- msgid ""
496
- "Please select an action from the bulk action drop down menu to perform a "
497
- "specific action."
498
- msgstr ""
499
-
500
- #: views/packages/list.base.php:295
501
- msgid "Please select at least one package to delete."
502
- msgstr ""
503
-
504
- #: views/packages/list.base.php:299
505
- msgid "Are you sure, you want to delete the selected package(s)?"
506
- msgstr ""
507
-
508
- #: views/packages/list.base.php:333
509
- msgid "Package File Links"
510
- msgstr ""
511
-
512
- #: views/packages/list.base.php:336
513
- msgid "DATABASE"
514
- msgstr ""
515
-
516
- #: views/packages/list.base.php:337
517
- msgid "PACKAGE"
518
- msgstr ""
519
-
520
- #: views/packages/list.base.php:338
521
- msgid "INSTALLER"
522
- msgstr ""
523
-
524
- #: views/packages/list.base.php:339
525
- msgid "LOG"
526
- msgstr ""
527
-
528
- #: views/packages/list.base.php:340
529
- msgid "REPORT"
530
- msgstr ""
531
-
532
- #: views/packages/new1.base.php:13
533
- msgid "Package settings have been reset."
534
- msgstr ""
535
-
536
- #: views/packages/new1.base.php:86 views/packages/new2.base.php:59
537
- #: views/packages/new3.base.php:33
538
- msgid "Setup"
539
- msgstr ""
540
-
541
- #: views/packages/new1.base.php:87 views/packages/new2.base.php:60
542
- #: views/packages/new3.base.php:34
543
- msgid "Scan"
544
- msgstr ""
545
-
546
- #: views/packages/new1.base.php:88 views/packages/new2.base.php:61
547
- #: views/packages/new2.base.php:388 views/packages/new3.base.php:35
548
- msgid "Build"
549
- msgstr ""
550
-
551
- #: views/packages/new1.base.php:91
552
- msgid "Step 1: Package Setup"
553
- msgstr ""
554
-
555
- #: views/packages/new1.base.php:115
556
- msgid "Requirements:"
557
- msgstr ""
558
-
559
- #: views/packages/new1.base.php:124
560
- msgid ""
561
- "System requirements must pass for the Duplicator to work properly. Click "
562
- "each link for details."
563
- msgstr ""
564
-
565
- #: views/packages/new1.base.php:130
566
- msgid "PHP Support"
567
- msgstr ""
568
-
569
- #: views/packages/new1.base.php:136
570
- msgid "PHP Version"
571
- msgstr ""
572
-
573
- #: views/packages/new1.base.php:140
574
- msgid "Zip Archive Enabled"
575
- msgstr ""
576
-
577
- #: views/packages/new1.base.php:144
578
- msgid "Safe Mode Off"
579
- msgstr ""
580
-
581
- #: views/packages/new1.base.php:148 views/packages/new1.base.php:152
582
- #: views/packages/new1.base.php:156
583
- msgid "Function"
584
- msgstr ""
585
-
586
- #: views/packages/new1.base.php:161
587
- msgid ""
588
- "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
589
- "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
590
- "ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
591
- "in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
592
- "this section please contact your hosting provider or server administrator. "
593
- "For additional information see our online documentation."
594
- msgstr ""
595
-
596
- #: views/packages/new1.base.php:169
597
- msgid "Permissions"
598
- msgstr ""
599
-
600
- #: views/packages/new1.base.php:172
601
- msgid "Required Paths"
602
- msgstr ""
603
-
604
- #: views/packages/new1.base.php:183
605
- msgid ""
606
- "Permissions can be difficult to resolve on some systems. If the plugin can "
607
- "not read the above paths here are a few things to try. 1) Set the above "
608
- "paths to have permissions of 755 for directories and 644 for files. You can "
609
- "temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
610
- "the owner/group settings for both files and directories. The PHP script "
611
- "owner and the process owner are different. The script owner owns the PHP "
612
- "script but the process owner is the user the script is running as, thus "
613
- "determining its capabilities/privileges in the file system. For more details "
614
- "contact your host or server administrator or visit the 'Help' menu under "
615
- "Duplicator for additional online resources."
616
- msgstr ""
617
-
618
- #: views/packages/new1.base.php:191
619
- msgid "Server Support"
620
- msgstr ""
621
-
622
- #: views/packages/new1.base.php:197
623
- msgid "MySQL Version"
624
- msgstr ""
625
-
626
- #: views/packages/new1.base.php:201
627
- msgid "MySQLi Support"
628
- msgstr ""
629
-
630
- #: views/packages/new1.base.php:207
631
- msgid ""
632
- "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
633
- "the trailing 'i') is also required. Contact your server administrator and "
634
- "request that mysqli extension and MySQL Server 5.0+ be installed. Please "
635
- "note in future versions support for other databases and extensions will be "
636
- "added."
637
- msgstr ""
638
-
639
- #: views/packages/new1.base.php:208
640
- msgid "more info"
641
- msgstr ""
642
-
643
- #: views/packages/new1.base.php:217
644
- msgid "Reserved Files"
645
- msgstr ""
646
-
647
- #: views/packages/new1.base.php:221
648
- msgid ""
649
- "None of the reserved files (installer.php, installer-data.sql and installer-"
650
- "log.txt) where found from a previous install. This means you are clear to "
651
- "create a new package."
652
- msgstr ""
653
-
654
- #: views/packages/new1.base.php:224
655
- msgid ""
656
- "A reserved file(s) was found in the WordPress root directory. Reserved file "
657
- "names are installer.php, installer-data.sql and installer-log.txt. To "
658
- "archive your data correctly please remove any of these files from your "
659
- "WordPress root directory. Then try creating your package again."
660
- msgstr ""
661
-
662
- #: views/packages/new1.base.php:225
663
- msgid "Remove Files Now"
664
- msgstr ""
665
-
666
- #: views/packages/new1.base.php:234
667
- msgid "For additional help please see the "
668
- msgstr ""
669
-
670
- #: views/packages/new1.inc.form.php:10
671
- msgid "Create a new default name"
672
- msgstr ""
673
-
674
- #: views/packages/new1.inc.form.php:23 views/settings/general.php:94
675
- msgid "Storage"
676
- msgstr ""
677
-
678
- #: views/packages/new1.inc.form.php:32
679
- msgid "Type"
680
- msgstr ""
681
-
682
- #: views/packages/new1.inc.form.php:33
683
- msgid "Location"
684
- msgstr ""
685
-
686
- #: views/packages/new1.inc.form.php:38
687
- msgid "Default"
688
- msgstr ""
689
-
690
- #: views/packages/new1.inc.form.php:39
691
- msgid "Local"
692
- msgstr ""
693
-
694
- #: views/packages/new1.inc.form.php:45
695
- msgid ""
696
- "All packages including the archive, installer and SQL script are stored in "
697
- "the location above. "
698
- msgstr ""
699
-
700
- #: views/packages/new1.inc.form.php:48
701
- msgid "Dropbox, FTP and other multiple storage options available in "
702
- msgstr ""
703
-
704
- #: views/packages/new1.inc.form.php:67
705
- msgid "File filter enabled"
706
- msgstr ""
707
-
708
- #: views/packages/new1.inc.form.php:68
709
- msgid "Database filter enabled"
710
- msgstr ""
711
-
712
- #: views/packages/new1.inc.form.php:77 views/packages/new2.base.php:203
713
- msgid "Files"
714
- msgstr ""
715
-
716
- #: views/packages/new1.inc.form.php:78 views/packages/new1.inc.form.php:195
717
- #: views/packages/new2.base.php:312
718
- msgid "Database"
719
- msgstr ""
720
-
721
- #: views/packages/new1.inc.form.php:90
722
- msgid "Enable File Filters"
723
- msgstr ""
724
-
725
- #: views/packages/new1.inc.form.php:94 views/packages/new1.inc.form.php:102
726
- msgid "Separate all filters by semicolon"
727
- msgstr ""
728
-
729
- #: views/packages/new1.inc.form.php:94 views/packages/new2.base.php:278
730
- msgid "Directories"
731
- msgstr ""
732
-
733
- #: views/packages/new1.inc.form.php:96
734
- msgid "root path"
735
- msgstr ""
736
-
737
- #: views/packages/new1.inc.form.php:97
738
- msgid "wp-uploads"
739
- msgstr ""
740
-
741
- #: views/packages/new1.inc.form.php:98
742
- msgid "cache"
743
- msgstr ""
744
-
745
- #: views/packages/new1.inc.form.php:99 views/packages/new1.inc.form.php:106
746
- msgid "(clear)"
747
- msgstr ""
748
-
749
- #: views/packages/new1.inc.form.php:102
750
- msgid "File extensions"
751
- msgstr ""
752
-
753
- #: views/packages/new1.inc.form.php:104
754
- msgid "media"
755
- msgstr ""
756
-
757
- #: views/packages/new1.inc.form.php:105
758
- msgid "archive"
759
- msgstr ""
760
-
761
- #: views/packages/new1.inc.form.php:111
762
- msgid ""
763
- "The directory paths and extensions above will be be excluded from the "
764
- "archive file if enabled is checked."
765
- msgstr ""
766
-
767
- #: views/packages/new1.inc.form.php:112
768
- msgid "Use the full path for directories and semicolons to separate all items."
769
- msgstr ""
770
-
771
- #: views/packages/new1.inc.form.php:123
772
- msgid "Enable Table Filters"
773
- msgstr ""
774
-
775
- #: views/packages/new1.inc.form.php:124
776
- msgid "checked tables are excluded"
777
- msgstr ""
778
-
779
- #: views/packages/new1.inc.form.php:129
780
- msgid "Include All"
781
- msgstr ""
782
-
783
- #: views/packages/new1.inc.form.php:130
784
- msgid "Exclude All"
785
- msgstr ""
786
-
787
- #: views/packages/new1.inc.form.php:163
788
- msgid ""
789
- "Checked tables will not be added to the database script. Excluding certain "
790
- "tables can possibly cause your site or plugins to not work correctly after "
791
- "install!"
792
- msgstr ""
793
-
794
- #: views/packages/new1.inc.form.php:181
795
- msgid "STEP 1 - INPUTS"
796
- msgstr ""
797
-
798
- #: views/packages/new1.inc.form.php:184
799
- msgid "MySQL Server"
800
- msgstr ""
801
-
802
- #: views/packages/new1.inc.form.php:187
803
- msgid "Host"
804
- msgstr ""
805
-
806
- #: views/packages/new1.inc.form.php:191
807
- msgid "Host Port"
808
- msgstr ""
809
-
810
- #: views/packages/new1.inc.form.php:203
811
- msgid "Advanced Options"
812
- msgstr ""
813
-
814
- #: views/packages/new1.inc.form.php:209
815
- msgid "SSL"
816
- msgstr ""
817
-
818
- #: views/packages/new1.inc.form.php:212
819
- msgid "Enforce on Admin"
820
- msgstr ""
821
-
822
- #: views/packages/new1.inc.form.php:216
823
- msgid "Enforce on Logins"
824
- msgstr ""
825
-
826
- #: views/packages/new1.inc.form.php:220
827
- msgid "Cache"
828
- msgstr ""
829
-
830
- #: views/packages/new1.inc.form.php:223
831
- msgid "Keep Enabled"
832
- msgstr ""
833
-
834
- #: views/packages/new1.inc.form.php:227
835
- msgid "Keep Home Path"
836
- msgstr ""
837
-
838
- #: views/packages/new1.inc.form.php:235
839
- msgid "STEP 2 - INPUTS"
840
- msgstr ""
841
-
842
- #: views/packages/new1.inc.form.php:239
843
- msgid "New URL"
844
- msgstr ""
845
-
846
- #: views/packages/new1.inc.form.php:245
847
- msgid "The installer can have these fields pre-filled at install time."
848
- msgstr ""
849
-
850
- #: views/packages/new1.inc.form.php:245
851
- msgid "All values are optional."
852
- msgstr ""
853
-
854
- #: views/packages/new1.inc.form.php:254
855
- msgid "Reset"
856
- msgstr ""
857
-
858
- #: views/packages/new1.inc.form.php:255
859
- msgid "Next"
860
- msgstr ""
861
-
862
- #: views/packages/new1.inc.form.php:267
863
- msgid ""
864
- "This will reset all of the current package settings. Would you like to "
865
- "continue?"
866
- msgstr ""
867
-
868
- #: views/packages/new2.base.php:64
869
- msgid "Step 2: System Scan"
870
- msgstr ""
871
-
872
- #: views/packages/new2.base.php:81
873
- msgid "Scanning Site"
874
- msgstr ""
875
-
876
- #: views/packages/new2.base.php:83 views/packages/new3.base.php:57
877
- msgid "Please Wait..."
878
- msgstr ""
879
-
880
- #: views/packages/new2.base.php:89
881
- msgid "Scan Complete"
882
- msgstr ""
883
-
884
- #: views/packages/new2.base.php:91
885
- msgid ""
886
- "Scan checks are not required to pass, however they could cause issues on "
887
- "some systems."
888
- msgstr ""
889
-
890
- #: views/packages/new2.base.php:92
891
- msgid "Process Time:"
892
- msgstr ""
893
-
894
- #: views/packages/new2.base.php:101
895
- msgid "Server"
896
- msgstr ""
897
-
898
- #: views/packages/new2.base.php:103 views/tools/controller.php:17
899
- msgid "Diagnostics"
900
- msgstr ""
901
-
902
- #: views/packages/new2.base.php:112 views/packages/new2.base.php:117
903
- #: views/tools/diagnostics.php:106
904
- msgid "Web Server"
905
- msgstr ""
906
-
907
- #: views/packages/new2.base.php:119
908
- msgid "Supported web servers:"
909
- msgstr ""
910
-
911
- #: views/packages/new2.base.php:129
912
- msgid "PHP Setup"
913
- msgstr ""
914
-
915
- #: views/packages/new2.base.php:135
916
- msgid "Open Base Dir"
917
- msgstr ""
918
-
919
- #: views/packages/new2.base.php:137
920
- msgid ""
921
- "Issues might occur when [open_basedir] is enabled. Work with your server "
922
- "admin to disable this value in the php.ini file if you’re having issues "
923
- "building a package."
924
- msgstr ""
925
-
926
- #: views/packages/new2.base.php:138 views/packages/new2.base.php:148
927
- #: views/packages/new2.base.php:155
928
- msgid "details"
929
- msgstr ""
930
-
931
- #: views/packages/new2.base.php:143 views/tools/diagnostics.php:189
932
- msgid "Max Execution Time"
933
- msgstr ""
934
-
935
- #: views/packages/new2.base.php:145
936
- #, php-format
937
- msgid ""
938
- "Issues might occur for larger packages when the [max_execution_time] value "
939
- "in the php.ini is too low. The minimum recommended timeout is \"%1$s\" "
940
- "seconds or higher. An attempt is made to override this value if the server "
941
- "allows it. A value of 0 (recommended) indicates that PHP has no time limits."
942
- msgstr ""
943
-
944
- #: views/packages/new2.base.php:147
945
- msgid ""
946
- "Note: Timeouts can also be set at the web server layer, so if the PHP max "
947
- "timeout passes and you still see a build interrupt messages, then your web "
948
- "server could be killing the process. If you are limited on processing "
949
- "time, consider using the database or file filters to shrink the size of your "
950
- "overall package. However use caution as excluding the wrong resources can "
951
- "cause your install to not work properly."
952
- msgstr ""
953
-
954
- #: views/packages/new2.base.php:152
955
- msgid "MySQLi"
956
- msgstr ""
957
-
958
- #: views/packages/new2.base.php:154
959
- msgid ""
960
- "Creating the package does not require the mysqli module. However the "
961
- "installer.php file requires that the PHP module mysqli be installed on the "
962
- "server it is deployed on."
963
- msgstr ""
964
-
965
- #: views/packages/new2.base.php:164
966
- msgid "WordPress"
967
- msgstr ""
968
-
969
- #: views/packages/new2.base.php:169
970
- msgid "WordPress Version"
971
- msgstr ""
972
-
973
- #: views/packages/new2.base.php:171
974
- #, php-format
975
- msgid ""
976
- "It is recommended to have a version of WordPress that is greater than %1$s"
977
- msgstr ""
978
-
979
- #: views/packages/new2.base.php:175
980
- msgid "Core Files"
981
- msgstr ""
982
-
983
- #: views/packages/new2.base.php:177
984
- msgid ""
985
- "If the scanner is unable to locate the wp-config.php file in the root "
986
- "directory, then you will need to manually copy it to its new location."
987
- msgstr ""
988
-
989
- #: views/packages/new2.base.php:183
990
- msgid "Cache Path"
991
- msgstr ""
992
-
993
- #: views/packages/new2.base.php:185
994
- msgid ""
995
- "Cached data will lead to issues at install time and increases your archive "
996
- "size. It is recommended to empty your cache directory at build time. Use "
997
- "caution when removing data from the cache directory. If you have a cache "
998
- "plugin review the documentation for how to empty it; simply removing files "
999
- "might cause errors on your site. The cache size minimum threshold is "
1000
- "currently set at "
1001
- msgstr ""
1002
-
1003
- #: views/packages/new2.base.php:208 views/packages/new2.base.php:317
1004
- msgid "Enabled"
1005
- msgstr ""
1006
-
1007
- #: views/packages/new2.base.php:223
1008
- msgid "File Count"
1009
- msgstr ""
1010
-
1011
- #: views/packages/new2.base.php:224
1012
- msgid "Directory Count"
1013
- msgstr ""
1014
-
1015
- #: views/packages/new2.base.php:227
1016
- #, php-format
1017
- msgid ""
1018
- "Total size represents all files minus any filters that have been setup. The "
1019
- "current thresholds that trigger warnings are %1$s for the entire site and "
1020
- "%2$s for large files."
1021
- msgstr ""
1022
-
1023
- #: views/packages/new2.base.php:239
1024
- msgid "Name Checks"
1025
- msgstr ""
1026
-
1027
- #: views/packages/new2.base.php:244
1028
- msgid ""
1029
- "File or directory names may cause issues when working across different "
1030
- "environments and servers. Names that are over 250 characters, contain "
1031
- "special characters (such as * ? > < : / \\ |) or are unicode might cause "
1032
- "issues in a remote enviroment. It is recommended to remove or filter these "
1033
- "files before building the archive if you have issues at install time."
1034
- msgstr ""
1035
-
1036
- #: views/packages/new2.base.php:247 views/packages/new2.base.php:265
1037
- msgid "Show Paths"
1038
- msgstr ""
1039
-
1040
- #: views/packages/new2.base.php:256
1041
- msgid "Large Files"
1042
- msgstr ""
1043
-
1044
- #: views/packages/new2.base.php:261
1045
- #, php-format
1046
- msgid ""
1047
- "Large files such as movies or other backuped data can cause issues with "
1048
- "timeouts. The current check for large files is %1$s per file. If your "
1049
- "having issues creating a package consider excluding these files with the "
1050
- "files filter and manually moving them to your new location."
1051
- msgstr ""
1052
-
1053
- #: views/packages/new2.base.php:275
1054
- msgid "View Filters"
1055
- msgstr ""
1056
-
1057
- #: views/packages/new2.base.php:283
1058
- msgid "No directory filters have been set."
1059
- msgstr ""
1060
-
1061
- #: views/packages/new2.base.php:288
1062
- msgid "File Extensions"
1063
- msgstr ""
1064
-
1065
- #: views/packages/new2.base.php:293
1066
- msgid "No file extension filters have been set."
1067
- msgstr ""
1068
-
1069
- #: views/packages/new2.base.php:297
1070
- msgid ""
1071
- "The lists above are the directories and file extension that will be excluded "
1072
- "from the archive."
1073
- msgstr ""
1074
-
1075
- #: views/packages/new2.base.php:332
1076
- msgid "Tables"
1077
- msgstr ""
1078
-
1079
- #: views/packages/new2.base.php:333
1080
- msgid "Records"
1081
- msgstr ""
1082
-
1083
- #: views/packages/new2.base.php:336
1084
- msgid "repair and optimization"
1085
- msgstr ""
1086
-
1087
- #: views/packages/new2.base.php:337
1088
- #, php-format
1089
- msgid ""
1090
- "Total size and row count for all database tables are approximate values. "
1091
- "The thresholds that trigger warnings are %1$s and %2$s records. Large "
1092
- "databases take time to process and can cause issues with server timeout and "
1093
- "memory settings. Running a %3$s on your database can also help improve the "
1094
- "overall size and performance. If your server supports shell_exec and "
1095
- "mysqldump you can try to enable this option from the settings menu."
1096
- msgstr ""
1097
-
1098
- #: views/packages/new2.base.php:349
1099
- msgid "Table Details"
1100
- msgstr ""
1101
-
1102
- #: views/packages/new2.base.php:360
1103
- msgid "Name:"
1104
- msgstr ""
1105
-
1106
- #: views/packages/new2.base.php:361
1107
- msgid "Host:"
1108
- msgstr ""
1109
-
1110
- #: views/packages/new2.base.php:362
1111
- msgid "Build Mode:"
1112
- msgstr ""
1113
-
1114
- #: views/packages/new2.base.php:373
1115
- msgid "Scan Error"
1116
- msgstr ""
1117
-
1118
- #: views/packages/new2.base.php:374
1119
- msgid "Please try again!"
1120
- msgstr ""
1121
-
1122
- #: views/packages/new2.base.php:376 views/packages/new3.base.php:111
1123
- msgid "Server Status:"
1124
- msgstr ""
1125
-
1126
- #: views/packages/new2.base.php:379 views/packages/new3.base.php:115
1127
- msgid "Error Message:"
1128
- msgstr ""
1129
-
1130
- #: views/packages/new2.base.php:386
1131
- msgid "Back"
1132
- msgstr ""
1133
-
1134
- #: views/packages/new2.base.php:387
1135
- msgid "Rescan"
1136
- msgstr ""
1137
-
1138
- #: views/packages/new2.base.php:486
1139
- msgid "Unable to report on any tables"
1140
- msgstr ""
1141
-
1142
- #: views/packages/new2.base.php:495
1143
- msgid "Unable to report on database stats"
1144
- msgstr ""
1145
-
1146
- #: views/packages/new2.base.php:514
1147
- msgid "DIR"
1148
- msgstr ""
1149
-
1150
- #: views/packages/new2.base.php:520 views/packages/new2.base.php:533
1151
- msgid "FILE"
1152
- msgstr ""
1153
-
1154
- #: views/packages/new2.base.php:523
1155
- msgid "No name warning issues found."
1156
- msgstr ""
1157
-
1158
- #: views/packages/new2.base.php:529
1159
- msgid "No large files found."
1160
- msgstr ""
1161
-
1162
- #: views/packages/new3.base.php:38
1163
- msgid "Step 3: Build Package"
1164
- msgstr ""
1165
-
1166
- #: views/packages/new3.base.php:55
1167
- msgid "Building Package"
1168
- msgstr ""
1169
-
1170
- #: views/packages/new3.base.php:58
1171
- msgid "Keep this window open during the build process."
1172
- msgstr ""
1173
-
1174
- #: views/packages/new3.base.php:59
1175
- msgid "This may take several minutes."
1176
- msgstr ""
1177
-
1178
- #: views/packages/new3.base.php:63
1179
- msgid "Build Status"
1180
- msgstr ""
1181
-
1182
- #: views/packages/new3.base.php:70
1183
- msgid "Package Completed"
1184
- msgstr ""
1185
-
1186
- #: views/packages/new3.base.php:75
1187
- msgid "Process Time"
1188
- msgstr ""
1189
-
1190
- #: views/packages/new3.base.php:100
1191
- msgid "Build Interrupt"
1192
- msgstr ""
1193
-
1194
- #: views/packages/new3.base.php:101
1195
- msgid "The current build has experienced an issue."
1196
- msgstr ""
1197
-
1198
- #: views/packages/new3.base.php:103
1199
- msgid "Please try the process again."
1200
- msgstr ""
1201
-
1202
- #: views/packages/new3.base.php:105
1203
- msgid "Diagnose"
1204
- msgstr ""
1205
-
1206
- #: views/packages/new3.base.php:106
1207
- msgid "Try Again"
1208
- msgstr ""
1209
-
1210
- #: views/packages/new3.base.php:122
1211
- msgid "Notice"
1212
- msgstr ""
1213
-
1214
- #: views/packages/new3.base.php:125
1215
- msgid "Build Folder:"
1216
- msgstr ""
1217
-
1218
- #: views/packages/new3.base.php:127
1219
- msgid ""
1220
- "Some servers close connections quickly; yet the build can continue to run in "
1221
- "the background. To validate if a build is still running; open the 'tmp' "
1222
- "folder above and see if the archive file is growing in size. If it is not "
1223
- "then your server has strict timeout constraints. Please visit the support "
1224
- "page for additional resources."
1225
- msgstr ""
1226
-
1227
- #: views/packages/new3.base.php:136
1228
- msgid "Package Log"
1229
- msgstr ""
1230
-
1231
- #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1232
- msgid "General"
1233
- msgstr ""
1234
-
1235
- #: views/settings/general.php:6
1236
- msgid "Settings Saved"
1237
- msgstr ""
1238
-
1239
- #: views/settings/general.php:75
1240
- msgid "Plugin"
1241
- msgstr ""
1242
-
1243
- #: views/settings/general.php:83
1244
- msgid "Uninstall"
1245
- msgstr ""
1246
-
1247
- #: views/settings/general.php:86
1248
- msgid "Delete Plugin Settings"
1249
- msgstr ""
1250
-
1251
- #: views/settings/general.php:89
1252
- msgid "Delete Entire Storage Directory"
1253
- msgstr ""
1254
-
1255
- #: views/settings/general.php:96
1256
- msgid "Full Path"
1257
- msgstr ""
1258
-
1259
- #: views/settings/general.php:99
1260
- msgid "Disable .htaccess File In Storage Directory"
1261
- msgstr ""
1262
-
1263
- #: views/settings/general.php:101
1264
- msgid "Disable if issues occur when downloading installer/archive files."
1265
- msgstr ""
1266
-
1267
- #: views/settings/general.php:114
1268
- msgid "Archive Flush"
1269
- msgstr ""
1270
-
1271
- #: views/settings/general.php:117
1272
- msgid "Attempt Network Keep Alive"
1273
- msgstr ""
1274
-
1275
- #: views/settings/general.php:118
1276
- msgid "recommended only for large archives"
1277
- msgstr ""
1278
-
1279
- #: views/settings/general.php:120
1280
- msgid ""
1281
- "This will attempt to keep a network connection established for large "
1282
- "archives."
1283
- msgstr ""
1284
-
1285
- #: views/settings/general.php:125
1286
- msgid "Database Build"
1287
- msgstr ""
1288
-
1289
- #: views/settings/general.php:128
1290
- msgid "Use PHP"
1291
- msgstr ""
1292
-
1293
- #: views/settings/general.php:131
1294
- msgid "Query Limit Size"
1295
- msgstr ""
1296
-
1297
- #: views/settings/general.php:140
1298
- msgid "higher values speed up build times but uses more memory"
1299
- msgstr ""
1300
-
1301
- #: views/settings/general.php:147
1302
- msgid "This server does not have shell_exec configured to run."
1303
- msgstr ""
1304
-
1305
- #: views/settings/general.php:149
1306
- msgid "Please contact the server administrator to enable this feature."
1307
- msgstr ""
1308
-
1309
- #: views/settings/general.php:154
1310
- msgid "Use mysqldump"
1311
- msgstr ""
1312
-
1313
- #: views/settings/general.php:155
1314
- msgid "recommended for large databases"
1315
- msgstr ""
1316
-
1317
- #: views/settings/general.php:160
1318
- msgid "Working Path:"
1319
- msgstr ""
1320
-
1321
- #: views/settings/general.php:166
1322
- msgid ""
1323
- "Mysqldump was not found at its default location or the location provided. "
1324
- "Please enter a path to a valid location where mysqldump can run. If the "
1325
- "problem persist contact your server administrator."
1326
- msgstr ""
1327
-
1328
- #: views/settings/general.php:171
1329
- msgid "Add Custom Path:"
1330
- msgstr ""
1331
-
1332
- #: views/settings/general.php:175
1333
- msgid "This is the path to your mysqldump program."
1334
- msgstr ""
1335
-
1336
- #: views/settings/general.php:184
1337
- msgid "Package Debug"
1338
- msgstr ""
1339
-
1340
- #: views/settings/general.php:187
1341
- msgid "Show Package Debug Status in Packages Screen"
1342
- msgstr ""
1343
-
1344
- #: views/settings/general.php:195
1345
- msgid "Roles & Capabilities"
1346
- msgstr ""
1347
-
1348
- #: views/settings/general.php:200
1349
- msgid "Custom Roles"
1350
- msgstr ""
1351
-
1352
- #: views/settings/general.php:203
1353
- msgid "Enable User Role Editor Plugin Integration"
1354
- msgstr ""
1355
-
1356
- #: views/settings/general.php:210
1357
- msgid "The User Role Editor Plugin"
1358
- msgstr ""
1359
-
1360
- #: views/settings/general.php:211
1361
- msgid "Free"
1362
- msgstr ""
1363
-
1364
- #: views/settings/general.php:212
1365
- msgid "or"
1366
- msgstr ""
1367
-
1368
- #: views/settings/general.php:213
1369
- msgid "Professional"
1370
- msgstr ""
1371
-
1372
- #: views/settings/general.php:214
1373
- msgid "must be installed to use"
1374
- msgstr ""
1375
-
1376
- #: views/settings/general.php:215
1377
- msgid "this feature."
1378
- msgstr ""
1379
-
1380
- #: views/settings/general.php:227
1381
- msgid "Save Settings"
1382
- msgstr ""
1383
-
1384
- #: views/tools/cleanup.php:8
1385
- msgid "Installer File Cleanup Ran."
1386
- msgstr ""
1387
-
1388
- #: views/tools/cleanup.php:12 views/tools/diagnostics.php:44
1389
- msgid "Legacy data removed."
1390
- msgstr ""
1391
-
1392
- #: views/tools/cleanup.php:16
1393
- msgid "Build cache removed."
1394
- msgstr ""
1395
-
1396
- #: views/tools/cleanup.php:73
1397
- msgid ""
1398
- "If the installer files did not successfully get removed, then you WILL need "
1399
- "to remove them manually"
1400
- msgstr ""
1401
-
1402
- #: views/tools/cleanup.php:74
1403
- msgid ""
1404
- "Please remove all installer files to avoid leaving open security issues on "
1405
- "your server"
1406
- msgstr ""
1407
-
1408
- #: views/tools/cleanup.php:82
1409
- msgid "Data Cleanup"
1410
- msgstr ""
1411
-
1412
- #: views/tools/cleanup.php:85
1413
- msgid "Delete Reserved Files"
1414
- msgstr ""
1415
-
1416
- #: views/tools/cleanup.php:86
1417
- msgid "Removes all installer files from a previous install"
1418
- msgstr ""
1419
-
1420
- #: views/tools/cleanup.php:89
1421
- msgid "Delete Legacy Data"
1422
- msgstr ""
1423
-
1424
- #: views/tools/cleanup.php:90
1425
- msgid "Removes all legacy data and settings prior to version"
1426
- msgstr ""
1427
-
1428
- #: views/tools/cleanup.php:93
1429
- msgid "Clear Build Cache"
1430
- msgstr ""
1431
-
1432
- #: views/tools/cleanup.php:94
1433
- msgid "Removes all build data from:"
1434
- msgstr ""
1435
-
1436
- #: views/tools/cleanup.php:107
1437
- #, php-format
1438
- msgid "This action will remove all legacy settings prior to version %1$s. "
1439
- msgstr ""
1440
-
1441
- #: views/tools/cleanup.php:108
1442
- msgid ""
1443
- "Legacy settings are only needed if you plan to migrate back to an older "
1444
- "version of this plugin."
1445
- msgstr ""
1446
-
1447
- #: views/tools/cleanup.php:120
1448
- msgid ""
1449
- "This process will remove all build cache files. Be sure no packages are "
1450
- "currently building or else they will be cancelled."
1451
- msgstr ""
1452
-
1453
- #: views/tools/controller.php:16
1454
- msgid "Logging"
1455
- msgstr ""
1456
-
1457
- #: views/tools/controller.php:18
1458
- msgid "Cleanup"
1459
- msgstr ""
1460
-
1461
- #: views/tools/diagnostics.php:18 views/tools/diagnostics.php:19
1462
- msgid "unknow"
1463
- msgstr ""
1464
-
1465
- #: views/tools/diagnostics.php:39
1466
- msgid "Plugin settings reset."
1467
- msgstr ""
1468
-
1469
- #: views/tools/diagnostics.php:40
1470
- msgid "View state settings reset."
1471
- msgstr ""
1472
-
1473
- #: views/tools/diagnostics.php:41
1474
- msgid "Active package settings reset."
1475
- msgstr ""
1476
-
1477
- #: views/tools/diagnostics.php:81
1478
- msgid "Server Settings"
1479
- msgstr ""
1480
-
1481
- #: views/tools/diagnostics.php:90
1482
- msgid "Duplicator Version"
1483
- msgstr ""
1484
-
1485
- #: views/tools/diagnostics.php:94
1486
- msgid "Operating System"
1487
- msgstr ""
1488
-
1489
- #: views/tools/diagnostics.php:98
1490
- msgid "Timezone"
1491
- msgstr ""
1492
-
1493
- #: views/tools/diagnostics.php:102
1494
- msgid "Server Time"
1495
- msgstr ""
1496
-
1497
- #: views/tools/diagnostics.php:110
1498
- msgid "APC Enabled"
1499
- msgstr ""
1500
-
1501
- #: views/tools/diagnostics.php:114
1502
- msgid "Root Path"
1503
- msgstr ""
1504
-
1505
- #: views/tools/diagnostics.php:118
1506
- msgid "ABSPATH"
1507
- msgstr ""
1508
-
1509
- #: views/tools/diagnostics.php:122
1510
- msgid "Plugins Path"
1511
- msgstr ""
1512
-
1513
- #: views/tools/diagnostics.php:126
1514
- msgid "Loaded PHP INI"
1515
- msgstr ""
1516
-
1517
- #: views/tools/diagnostics.php:130
1518
- msgid "Server IP"
1519
- msgstr ""
1520
-
1521
- #: views/tools/diagnostics.php:134
1522
- msgid "Client IP"
1523
- msgstr ""
1524
-
1525
- #: views/tools/diagnostics.php:145
1526
- msgid "Langugage"
1527
- msgstr ""
1528
-
1529
- #: views/tools/diagnostics.php:149 views/tools/diagnostics.php:204
1530
- msgid "Charset"
1531
- msgstr ""
1532
-
1533
- #: views/tools/diagnostics.php:153
1534
- msgid "Memory Limit "
1535
- msgstr ""
1536
-
1537
- #: views/tools/diagnostics.php:154
1538
- msgid "Max"
1539
- msgstr ""
1540
-
1541
- #: views/tools/diagnostics.php:172
1542
- msgid "Safe Mode"
1543
- msgstr ""
1544
-
1545
- #: views/tools/diagnostics.php:176
1546
- msgid "On"
1547
- msgstr ""
1548
-
1549
- #: views/tools/diagnostics.php:176
1550
- msgid "Off"
1551
- msgstr ""
1552
-
1553
- #: views/tools/diagnostics.php:181
1554
- msgid "Memory Limit"
1555
- msgstr ""
1556
-
1557
- #: views/tools/diagnostics.php:185
1558
- msgid "Memory In Use"
1559
- msgstr ""
1560
-
1561
- #: views/tools/diagnostics.php:193
1562
- msgid "Shell Exec"
1563
- msgstr ""
1564
-
1565
- #: views/tools/diagnostics.php:194
1566
- msgid "Is Supported"
1567
- msgstr ""
1568
-
1569
- #: views/tools/diagnostics.php:194
1570
- msgid "Not Supported"
1571
- msgstr ""
1572
-
1573
- #: views/tools/diagnostics.php:208
1574
- msgid "Wait Timeout"
1575
- msgstr ""
1576
-
1577
- #: views/tools/diagnostics.php:212
1578
- msgid "Max Allowed Packets"
1579
- msgstr ""
1580
-
1581
- #: views/tools/diagnostics.php:216
1582
- msgid "msyqldump Path"
1583
- msgstr ""
1584
-
1585
- #: views/tools/diagnostics.php:220
1586
- msgid "Server Disk"
1587
- msgstr ""
1588
-
1589
- #: views/tools/diagnostics.php:223
1590
- msgid "Free space"
1591
- msgstr ""
1592
-
1593
- #: views/tools/diagnostics.php:226
1594
- msgid "Note: This value is the physical servers hard-drive allocation."
1595
- msgstr ""
1596
-
1597
- #: views/tools/diagnostics.php:227
1598
- msgid ""
1599
- "On shared hosts check your control panel for the 'TRUE' disk space quota "
1600
- "value."
1601
- msgstr ""
1602
-
1603
- #: views/tools/diagnostics.php:243
1604
- msgid "Stored Data"
1605
- msgstr ""
1606
-
1607
- #: views/tools/diagnostics.php:248
1608
- msgid "Options Values"
1609
- msgstr ""
1610
-
1611
- #: views/tools/diagnostics.php:281
1612
- msgid "PHP Information"
1613
- msgstr ""
1614
-
1615
- #: views/tools/diagnostics.php:300
1616
- msgid "Delete this option value"
1617
- msgstr ""
1618
-
1619
- #: views/tools/logging.php:140
1620
- msgid "Log file not found or unreadable"
1621
- msgstr ""
1622
-
1623
- #: views/tools/logging.php:142
1624
- msgid ""
1625
- "Try to create a package, since no log files were found in the snapshots "
1626
- "directory with the extension *.log"
1627
- msgstr ""
1628
-
1629
- #: views/tools/logging.php:144
1630
- msgid "Reasons for log file not showing"
1631
- msgstr ""
1632
-
1633
- #: views/tools/logging.php:145
1634
- msgid "The web server does not support returning .log file extentions"
1635
- msgstr ""
1636
-
1637
- #: views/tools/logging.php:146
1638
- msgid ""
1639
- "The snapshots directory does not have the correct permissions to write "
1640
- "files. Try setting the permissions to 755"
1641
- msgstr ""
1642
-
1643
- #: views/tools/logging.php:147
1644
- msgid ""
1645
- "The process that PHP runs under does not have enough permissions to create "
1646
- "files. Please contact your hosting provider for more details"
1647
- msgstr ""
1648
-
1649
- #: views/tools/logging.php:156 views/tools/logging.php:161
1650
- msgid "Options"
1651
- msgstr ""
1652
-
1653
- #: views/tools/logging.php:163
1654
- msgid "Refresh"
1655
- msgstr ""
1656
-
1657
- #: views/tools/logging.php:168
1658
- msgid "Auto Refresh"
1659
- msgstr ""
1660
-
1661
- #: views/tools/logging.php:174
1662
- msgid "Last 20 Logs"
1663
- msgstr ""
1664
-
1665
- #. Plugin Name of the plugin/theme
1666
- msgid "Duplicator"
1667
- msgstr ""
1668
-
1669
- #. Plugin URI of the plugin/theme
1670
- msgid "http://www.lifeinthegrid.com/duplicator/"
1671
- msgstr ""
1672
-
1673
- #. Description of the plugin/theme
1674
- msgid ""
1675
- "Create a backup of your WordPress files and database. Duplicate and move an "
1676
- "entire site from one location to another in a few steps. Create a full "
1677
- "snapshot of your site at any point in time."
1678
- msgstr ""
1679
-
1680
- #. Author of the plugin/theme
1681
- msgid "LifeInTheGrid"
1682
- msgstr ""
1683
-
1684
- #. Author URI of the plugin/theme
1685
- msgid "http://www.lifeinthegrid.com"
1686
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,112 +1,112 @@
1
- === Duplicator ===
2
- Contributors: corylamleorg, bobriley
3
- Donate link: www.lifeinthegrid.com/partner
4
- Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
5
- Requires at least: 3.9
6
- Tested up to: 4.4.2
7
- Stable tag: 1.1.6
8
- License: GPLv2
9
-
10
- Duplicate, clone, backup, move and transfer an entire site from one location to another.
11
-
12
- == Description ==
13
-
14
- > The Duplicator gives WordPress administrators the ability to migrate, copy or clone a site from one location to another. The plugin also serves as a simple backup utility. The Duplicator supports both serialized and base64 serialized string replacement. If you need to move WordPress or backup WordPress this plugin can help simplify the process. For complete details visit [lifeinthegrid.com](http://lifeinthegrid.com/).
15
-
16
- = Quick Video Demo =
17
- http://www.youtube.com/watch?v=yZ7pHmR9JC8
18
-
19
- = Admins/Developers/Designers =
20
- This tool is great to move or backup Wordpress sites and for pulling production sites down to your local machine for testing and validation. It also works good for developing locally and then pushing up to a production server for site releases/updates or just demoing a site.
21
-
22
- = Duplicator Pro =
23
- Take Duplicator to the next level with the [premium version](http://snapcreek.com/duplicator?wpo-premium) of the plugin. With professional features like, scheduling, cloud storage to Dropbox, Google Drive, FTP and a long list of other enhancements. For a full breakdown of the features found in the professional version checkout the [comparison page](https://snapcreek.com/duplicator/comparison?wpo-compare) .
24
-
25
- = Please Note =
26
- The underlying logic to backup WordPress, move WordPress and transfer WordPress are very complex. It's impossible to know how each system is setup; this is why your feedback is important to us. Thanks for helping us to make WordPress the best blogging platform in the world.
27
-
28
- = Disclaimer =
29
- This plugin does require some technical knowledge. If you plan to move WordPress or backup WordPress please use it at your own risk and do not forget to back up your files and databases beforehand. If you're new to WordPress or have a very limited technical background you may consider seeking out professional help your first time using the plugin. If you need to move or backup WordPress and would like additional help please visit the Duplicator [resources page](http://lifeinthegrid.com/labs/duplicator/) .
30
-
31
-
32
-
33
- = Active Contributors =
34
- <li>[Paal Joachim Romdahl](http://www.easywebdesigntutorials.com) (Training)</li>
35
- <li>[Hans-M. Herbrand](http://www.web266.de) (German) </li>
36
- <li>[Nicolas Richer](http://nicolasricher.fr) (French)</li>
37
-
38
- = Donate =
39
- Enjoy using *Duplicator*? Please consider [making a donation](http://lifeinthegrid.com/partner/) to support the project's continued development.
40
-
41
-
42
-
43
-
44
- == Installation ==
45
-
46
- 1. Upload `duplicator` folder to the `/wp-content/plugins/` directory
47
- 2. Activate the plugin through the 'Plugins' menu in WordPress
48
- 3. Click on the Duplicator link from the main menu
49
- 4. Check out the help by clicking the help icon and create your first package.
50
-
51
- The Duplicator requires php 5.3 or higher.
52
-
53
- == Frequently Asked Questions ==
54
-
55
- = I'm having issues getting the plugin to work what should I do? =
56
-
57
- See the [FAQs](http://lifeinthegrid.com/duplicator-faq) page for a detailed rundown of common issues
58
-
59
- = Are there any videos I can watch? =
60
-
61
- Yes. Please see the [tutorial section](http://lifeinthegrid.com/duplicator-tutorials] on the user guide for videos.
62
-
63
-
64
- = Where can I get more information and support for this plugin? =
65
-
66
- Visit the [Duplicator Page](http://lifeinthegrid.com/duplicator) at lifeinthegrid.com
67
-
68
-
69
- = Can I test this in a non-production environment? =
70
-
71
- Yes. Put WordPress on [your computer](http://lifeinthegrid.com/xampp) by watching the video below.
72
-
73
- http://www.youtube.com/watch?v=-hF7FbTQIkk
74
-
75
- = Is this plugin compatible with WordPress Multi-Site (MU)? =
76
-
77
- No. Hopefully in future versions we will support MU
78
-
79
-
80
- == Screenshots ==
81
-
82
- 1. Main Interface for all Packages
83
- 2. Create Package Step 1
84
- 3. Create Package Step 2
85
- 4. Build Process
86
- 5. Installer Screen
87
-
88
-
89
- == Changelog ==
90
-
91
- Please see the following url:
92
- http://lifeinthegrid.com/duplicator-log
93
-
94
-
95
-
96
-
97
- == Upgrade Notice ==
98
-
99
- Please use our ticketing system when submitting your logs. Please do not post to the forums.
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
1
+ === Duplicator ===
2
+ Contributors: corylamleorg, bobriley
3
+ Donate link: www.lifeinthegrid.com/partner
4
+ Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
5
+ Requires at least: 4.0
6
+ Tested up to: 4.5.2
7
+ Stable tag: 1.1.8
8
+ License: GPLv2
9
+
10
+ Duplicate, clone, backup, move and transfer an entire site from one location to another.
11
+
12
+ == Description ==
13
+
14
+ > The Duplicator gives WordPress administrators the ability to migrate, copy or clone a site from one location to another. The plugin also serves as a simple backup utility. The Duplicator supports both serialized and base64 serialized string replacement. If you need to move WordPress or backup WordPress this plugin can help simplify the process. For complete details visit [lifeinthegrid.com](http://lifeinthegrid.com/).
15
+
16
+ = Quick Video Demo =
17
+ http://www.youtube.com/watch?v=yZ7pHmR9JC8
18
+
19
+ = Admins/Developers/Designers =
20
+ This tool is great to move or backup Wordpress sites and for pulling production sites down to your local machine for testing and validation. It also works good for developing locally and then pushing up to a production server for site releases/updates or just demoing a site.
21
+
22
+ = Duplicator Pro =
23
+ Take Duplicator to the next level with the [premium version](http://snapcreek.com/duplicator?wpo-premium) of the plugin. With professional features like, scheduling, cloud storage to Dropbox, Google Drive, FTP and a long list of other enhancements. For a full breakdown of the features found in the professional version checkout the [comparison page](https://snapcreek.com/duplicator/comparison?wpo-compare) .
24
+
25
+ = Please Note =
26
+ The underlying logic to backup WordPress, move WordPress and transfer WordPress are very complex. It's impossible to know how each system is setup; this is why your feedback is important to us. Thanks for helping us to make WordPress the best blogging platform in the world.
27
+
28
+ = Disclaimer =
29
+ This plugin does require some technical knowledge. If you plan to move WordPress or backup WordPress please use it at your own risk and do not forget to back up your files and databases beforehand. If you're new to WordPress or have a very limited technical background you may consider seeking out professional help your first time using the plugin. If you need to move or backup WordPress and would like additional help please visit the Duplicator [resources page](http://lifeinthegrid.com/labs/duplicator/) .
30
+
31
+
32
+
33
+ = Active Contributors =
34
+ <li>[Paal Joachim Romdahl](http://www.easywebdesigntutorials.com) (Training)</li>
35
+ <li>[Hans-M. Herbrand](http://www.web266.de) (German) </li>
36
+ <li>[Nicolas Richer](http://nicolasricher.fr) (French)</li>
37
+
38
+ = Donate =
39
+ Enjoy using *Duplicator*? Please consider [making a donation](http://lifeinthegrid.com/partner/) to support the project's continued development.
40
+
41
+
42
+
43
+
44
+ == Installation ==
45
+
46
+ 1. Upload `duplicator` folder to the `/wp-content/plugins/` directory
47
+ 2. Activate the plugin through the 'Plugins' menu in WordPress
48
+ 3. Click on the Duplicator link from the main menu
49
+ 4. Check out the help by clicking the help icon and create your first package.
50
+
51
+ The Duplicator requires php 5.3 or higher.
52
+
53
+ == Frequently Asked Questions ==
54
+
55
+ = I'm having issues getting the plugin to work what should I do? =
56
+
57
+ See the [FAQs](http://lifeinthegrid.com/duplicator-faq) page for a detailed rundown of common issues
58
+
59
+ = Are there any videos I can watch? =
60
+
61
+ Yes. Please see the [tutorial section](http://lifeinthegrid.com/duplicator-tutorials] on the user guide for videos.
62
+
63
+
64
+ = Where can I get more information and support for this plugin? =
65
+
66
+ Visit the [Duplicator Page](http://lifeinthegrid.com/duplicator) at lifeinthegrid.com
67
+
68
+
69
+ = Can I test this in a non-production environment? =
70
+
71
+ Yes. Put WordPress on [your computer](http://lifeinthegrid.com/xampp) by watching the video below.
72
+
73
+ http://www.youtube.com/watch?v=-hF7FbTQIkk
74
+
75
+ = Is this plugin compatible with WordPress Multi-Site (MU)? =
76
+
77
+ No. Hopefully in future versions we will support MU
78
+
79
+
80
+ == Screenshots ==
81
+
82
+ 1. Main Interface for all Packages
83
+ 2. Create Package Step 1
84
+ 3. Create Package Step 2
85
+ 4. Build Process
86
+ 5. Installer Screen
87
+
88
+
89
+ == Changelog ==
90
+
91
+ Please see the following url:
92
+ http://lifeinthegrid.com/duplicator-log
93
+
94
+
95
+
96
+
97
+ == Upgrade Notice ==
98
+
99
+ Please use our ticketing system when submitting your logs. Please do not post to the forums.
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
views/help/gopro.php CHANGED
@@ -31,8 +31,8 @@ require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
31
  <div class="dup-pro-area">
32
  <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo-dpro-300x50-nosnap.png" />
33
  <div style="font-size:18px; font-style:italic; color:gray">
34
- <?php DUP_Util::_e('The simplicity of Duplicator') ?>
35
- <?php DUP_Util::_e('with power for the professional.') ?>
36
  </div>
37
 
38
  <table id="comparison-table">
@@ -141,13 +141,18 @@ require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
141
  <td class="feature-column"><?php _e('Active Customer Support', 'duplicator') ?></td>
142
  <td class="check-column"></td>
143
  <td class="check-column"><i class="fa fa-check"></i></td>
144
- </tr>
 
 
 
 
 
145
  </table>
146
 
147
  <br style="clear:both" />
148
  <p style="text-align:center">
149
  <a href="http://snapcreek.com/duplicator?free-go-pro" target="_blank" class="button button-primary button-large dup-check-it-btn" >
150
- <?php DUP_Util::_e('Check It Out!') ?>
151
  </a>
152
  </p>
153
  <br/><br/>
31
  <div class="dup-pro-area">
32
  <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo-dpro-300x50-nosnap.png" />
33
  <div style="font-size:18px; font-style:italic; color:gray">
34
+ <?php _e('The simplicity of Duplicator', 'duplicator') ?>
35
+ <?php _e('with power for the professional.', 'duplicator') ?>
36
  </div>
37
 
38
  <table id="comparison-table">
141
  <td class="feature-column"><?php _e('Active Customer Support', 'duplicator') ?></td>
142
  <td class="check-column"></td>
143
  <td class="check-column"><i class="fa fa-check"></i></td>
144
+ </tr>
145
+ <tr>
146
+ <td class="feature-column"><?php _e('Plus Many Other Features...', 'duplicator') ?></td>
147
+ <td class="check-column"></td>
148
+ <td class="check-column"><i class="fa fa-check"></i></td>
149
+ </tr>
150
  </table>
151
 
152
  <br style="clear:both" />
153
  <p style="text-align:center">
154
  <a href="http://snapcreek.com/duplicator?free-go-pro" target="_blank" class="button button-primary button-large dup-check-it-btn" >
155
+ <?php _e('Check It Out!', 'duplicator') ?>
156
  </a>
157
  </p>
158
  <br/><br/>
views/packages/details/controller.php CHANGED
@@ -9,10 +9,9 @@ $package_id = isset($_REQUEST["id"]) ? $_REQUEST["id"] : 0;
9
  $package = DUP_Package::GetByID($package_id);
10
  $err_found = ($package == null || $package->Status < 100);
11
  $link_log = "{$package->StoreURL}{$package->NameHash}.log";
12
- $err_link_log = "<a target='_blank' href='{$link_log}' >" . DUP_Util::__('package log') . '</a>';
13
- $err_link_faq = '<a target="_blank" href="http://lifeinthegrid.com/duplicator-faq">' . DUP_Util::__('FAQ') . '</a>';
14
- $err_link_ticket = '<a target="_blank" href="http://lifeinthegrid.com/labs/duplicator/resources/">' . DUP_Util::__('resources page') . '</a>';
15
-
16
  ?>
17
 
18
  <style>
@@ -25,23 +24,27 @@ $err_link_ticket = '<a target="_blank" href="http://lifeinthegrid.com/labs/dupli
25
 
26
  <div class="wrap">
27
  <?php
28
- duplicator_header(DUP_Util::__("Package Details &raquo; {$package->Name}"));
29
  ?>
30
 
31
  <?php if ($err_found) :?>
32
  <div class="error">
33
  <p>
34
- <?php echo DUP_Util::__('This package contains an error. Please review the ') . $err_link_log . DUP_Util::__(' for details.') ; ?>
35
- <?php echo DUP_Util::__('For help visit the ') . $err_link_faq . DUP_Util::__(' and ') . $err_link_ticket; ?>
36
  </p>
37
  </div>
38
  <?php endif; ?>
39
 
40
  <h2 class="nav-tab-wrapper">
41
- <a href="?page=duplicator&action=detail&tab=detail&id=<?php echo $package_id ?>" class="nav-tab <?php echo ($current_tab == 'detail') ? 'nav-tab-active' : '' ?>"> <?php DUP_Util::_e('Details'); ?></a>
42
- <a <?php if($enable_transfer_tab === false) { echo 'onclick="Duplicator.Pack.TransferDisabled(); return false;"';} ?> href="?page=duplicator&action=detail&tab=transfer&id=<?php echo $package_id ?>" class="nav-tab <?php echo ($current_tab == 'transfer') ? 'nav-tab-active' : '' ?>"> <?php DUP_Util::_e('Transfer'); ?></a>
 
 
 
 
43
  </h2>
44
- <div class="all-packages"><a href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php DUP_Util::_e('All Packages'); ?></a></div>
45
 
46
  <?php
47
  switch ($current_tab) {
@@ -52,9 +55,3 @@ $err_link_ticket = '<a target="_blank" href="http://lifeinthegrid.com/labs/dupli
52
  }
53
  ?>
54
  </div>
55
-
56
- <script type="text/javascript">
57
- Duplicator.Pack.TransferDisabled = function() {
58
- alert("<?php DUP_Util::_e('No package in default location so transfer is disabled.');?>")
59
- }
60
- </script>
9
  $package = DUP_Package::GetByID($package_id);
10
  $err_found = ($package == null || $package->Status < 100);
11
  $link_log = "{$package->StoreURL}{$package->NameHash}.log";
12
+ $err_link_log = "<a target='_blank' href='{$link_log}' >" . __('package log', 'duplicator') . '</a>';
13
+ $err_link_faq = '<a target="_blank" href="http://lifeinthegrid.com/duplicator-faq">' . __('FAQ', 'duplicator') . '</a>';
14
+ $err_link_ticket = '<a target="_blank" href="http://lifeinthegrid.com/labs/duplicator/resources/">' . __('resources page', 'duplicator') . '</a>';
 
15
  ?>
16
 
17
  <style>
24
 
25
  <div class="wrap">
26
  <?php
27
+ duplicator_header(__("Package Details &raquo; {$package->Name}", 'duplicator'));
28
  ?>
29
 
30
  <?php if ($err_found) :?>
31
  <div class="error">
32
  <p>
33
+ <?php echo __('This package contains an error. Please review the ', 'duplicator') . $err_link_log . __(' for details.', 'duplicator'); ?>
34
+ <?php echo __('For help visit the ', 'duplicator') . $err_link_faq . __(' and ', 'duplicator') . $err_link_ticket; ?>
35
  </p>
36
  </div>
37
  <?php endif; ?>
38
 
39
  <h2 class="nav-tab-wrapper">
40
+ <a href="?page=duplicator&action=detail&tab=detail&id=<?php echo $package_id ?>" class="nav-tab <?php echo ($current_tab == 'detail') ? 'nav-tab-active' : '' ?>">
41
+ <?php _e('Details', 'duplicator'); ?>
42
+ </a>
43
+ <a href="?page=duplicator&action=detail&tab=transfer&id=<?php echo $package_id ?>" class="nav-tab <?php echo ($current_tab == 'transfer') ? 'nav-tab-active' : '' ?>">
44
+ <?php _e('Transfer', 'duplicator'); ?>
45
+ </a>
46
  </h2>
47
+ <div class="all-packages"><a href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php _e('All Packages', 'duplicator'); ?></a></div>
48
 
49
  <?php
50
  switch ($current_tab) {
55
  }
56
  ?>
57
  </div>
 
 
 
 
 
 
views/packages/details/detail.php CHANGED
@@ -46,7 +46,7 @@ $dbbuild_mode = ($mysqldump_on) ? 'mysqldump (fast)' : 'PHP (slow)';
46
  </style>
47
 
48
  <?php if ($package_id == 0) :?>
49
- <div class="error below-h2"><p><?php DUP_Util::_e("Invlaid Package ID request. Please try again!"); ?></p></div>
50
  <?php endif; ?>
51
 
52
  <div class="toggle-box">
@@ -58,51 +58,51 @@ $dbbuild_mode = ($mysqldump_on) ? 'mysqldump (fast)' : 'PHP (slow)';
58
  GENERAL -->
59
  <div class="dup-box">
60
  <div class="dup-box-title">
61
- <i class="fa fa-archive"></i> <?php DUP_Util::_e('General') ?>
62
  <div class="dup-box-arrow"></div>
63
  </div>
64
  <div class="dup-box-panel" id="dup-package-dtl-general-panel" style="<?php echo $ui_css_general ?>">
65
  <table class='dup-dtl-data-tbl'>
66
  <tr>
67
- <td><?php DUP_Util::_e("Name") ?>:</td>
68
  <td>
69
  <a href="javascript:void(0);" onclick="jQuery('#dup-name-info').toggle()"><?php echo $package->Name ?></a>
70
  <div id="dup-name-info">
71
- <b><?php DUP_Util::_e("ID") ?>:</b> <?php echo $package->ID ?><br/>
72
- <b><?php DUP_Util::_e("Hash") ?>:</b> <?php echo $package->Hash ?><br/>
73
- <b><?php DUP_Util::_e("Full Name") ?>:</b> <?php echo $package->NameHash ?><br/>
74
  </div>
75
  </td>
76
  </tr>
77
  <tr>
78
- <td><?php DUP_Util::_e("Notes") ?>:</td>
79
- <td><?php echo strlen($package->Notes) ? $package->Notes : DUP_Util::__("- no notes -") ?></td>
80
  </tr>
81
  <tr>
82
- <td><?php DUP_Util::_e("Versions") ?>:</td>
83
  <td>
84
  <a href="javascript:void(0);" onclick="jQuery('#dup-version-info').toggle()"><?php echo $package->Version ?></a>
85
  <div id="dup-version-info">
86
- <b><?php DUP_Util::_e("WordPress") ?>:</b> <?php echo strlen($package->VersionWP) ? $package->VersionWP : DUP_Util::__("- unknown -") ?><br/>
87
- <b><?php DUP_Util::_e("Mysql") ?>:</b> <?php echo strlen($package->VersionDB) ? $package->VersionDB : DUP_Util::__("- unknown -") ?><br/>
88
- <b><?php DUP_Util::_e("PHP") ?>:</b> <?php echo strlen($package->VersionPHP) ? $package->VersionPHP : DUP_Util::__("- unknown -") ?><br/>
89
  </div>
90
  </td>
91
  </tr>
92
  <tr>
93
- <td><?php DUP_Util::_e("Runtime") ?>:</td>
94
- <td><?php echo strlen($package->Runtime) ? $package->Runtime : DUP_Util::__("error running"); ?></td>
95
  </tr>
96
  <tr>
97
- <td><?php DUP_Util::_e("Status") ?>:</td>
98
- <td><?php echo ($package->Status >= 100) ? DUP_Util::__("completed") : DUP_Util::__("in-complete") ?></td>
99
  </tr>
100
  <tr>
101
- <td><?php DUP_Util::_e("User") ?>:</td>
102
- <td><?php echo strlen($package->WPUser) ? $package->WPUser : DUP_Util::__("- unknown -") ?></td>
103
  </tr>
104
  <tr>
105
- <td><?php DUP_Util::_e("Files") ?>: </td>
106
  <td>
107
  <div id="dup-downloads-area">
108
  <?php if (!$err_found) :?>
@@ -119,15 +119,15 @@ GENERAL -->
119
  <?php if (!$err_found) :?>
120
  <table class="dup-sub-list">
121
  <tr>
122
- <td><?php DUP_Util::_e("Archive") ?>: </td>
123
  <td><?php echo $package->Archive->File ?></td>
124
  </tr>
125
  <tr>
126
- <td><?php DUP_Util::_e("Installer") ?>: </td>
127
  <td><?php echo $package->Installer->File ?></td>
128
  </tr>
129
  <tr>
130
- <td><?php DUP_Util::_e("Database") ?>: </td>
131
  <td><?php echo $package->Database->File ?></td>
132
  </tr>
133
  </table>
@@ -162,16 +162,16 @@ STORAGE -->
162
  ?>
163
  <div class="dup-box">
164
  <div class="dup-box-title">
165
- <i class="fa fa-database"></i> <?php DUP_Util::_e('Storage') ?>
166
  <div class="dup-box-arrow"></div>
167
  </div>
168
  <div class="dup-box-panel" id="dup-package-dtl-storage-panel" style="<?php echo $ui_css_storage ?>">
169
  <table class="widefat package-tbl">
170
  <thead>
171
  <tr>
172
- <th style='width:150px'><?php DUP_Util::_e('Name') ?></th>
173
- <th style='width:100px'><?php DUP_Util::_e('Type') ?></th>
174
- <th style="white-space: nowrap"><?php DUP_Util::_e('Location') ?></th>
175
  </tr>
176
  </thead>
177
  <tbody>
@@ -190,9 +190,9 @@ STORAGE -->
190
  <?php echo sprintf(__('%1$s, %2$s, %3$s, %4$s and more storage options available in', 'duplicator'), 'Amazon', 'Dropbox', 'Google Drive', 'FTP'); ?>
191
  <a href="http://snapcreek.com/duplicator/?free-storage-detail" target="_blank"><?php _e('Professional', 'duplicator');?></a>
192
  <i class="fa fa-lightbulb-o"
193
- data-tooltip-title="<?php DUP_Util::_e("Additional Storage:"); ?>"
194
- data-tooltip="<?php DUP_Util::_e('Professional allows you to create a package and then store it at a custom location on this server or to a cloud '
195
- . 'based location such as Google Drive, Amazon, Dropbox or FTP.'); ?>">
196
  </i>
197
  </div>
198
  </td>
@@ -211,88 +211,88 @@ ARCHIVE -->
211
  ?>
212
  <div class="dup-box">
213
  <div class="dup-box-title">
214
- <i class="fa fa-file-archive-o"></i> <?php DUP_Util::_e('Archive') ?>
215
  <div class="dup-box-arrow"></div>
216
  </div>
217
  <div class="dup-box-panel" id="dup-package-dtl-archive-panel" style="<?php echo $ui_css_archive ?>">
218
 
219
  <!-- FILES -->
220
- <div class="dup-box-panel-hdr"><i class="fa fa-files-o"></i> <?php DUP_Util::_e('FILES'); ?></div>
221
  <table class='dup-dtl-data-tbl'>
222
  <tr>
223
- <td><?php DUP_Util::_e("Build Mode") ?>: </td>
224
- <td><?php DUP_Util::_e('ZipArchive'); ?></td>
225
  </tr>
226
  <tr>
227
- <td><?php DUP_Util::_e("Filters") ?>: </td>
228
  <td><?php echo $package->Archive->FilterOn == 1 ? 'On' : 'Off'; ?></td>
229
  </tr>
230
  <tr class="sub-item <?php echo $css_file_filter_on ?>">
231
- <td><?php DUP_Util::_e("Directories") ?>: </td>
232
  <td>
233
  <?php
234
  echo strlen($package->Archive->FilterDirs)
235
  ? str_replace(';', '<br/>', $package->Archive->FilterDirs)
236
- : DUP_Util::__('- no filters -');
237
  ?>
238
  </td>
239
  </tr>
240
  <tr class="sub-item <?php echo $css_file_filter_on ?>">
241
- <td><?php DUP_Util::_e("Extensions") ?>: </td>
242
  <td>
243
  <?php
244
  echo isset($package->Archive->FilterExts) && strlen($package->Archive->FilterExts)
245
  ? $package->Archive->FilterExts
246
- : DUP_Util::__('- no filters -');
247
  ?>
248
  </td>
249
  </tr>
250
  <tr class="sub-item <?php echo $css_file_filter_on ?>">
251
- <td><?php DUP_Util::_e("Files") ?>: </td>
252
  <td>
253
  <i>
254
- <?php DUP_Util::_e("Available in") ?>
255
  <a href="http://snapcreek.com/duplicator/?free-file-filters" target="_blank"><?php _e('Professional', 'duplicator');?></a>
256
  </i>
257
  <i class="fa fa-lightbulb-o"
258
- data-tooltip-title="<?php DUP_Util::_e("File Filters:"); ?>"
259
- data-tooltip="<?php DUP_Util::_e('File filters allows you to select individual files and add them to an exclusion list that will filter them from the package.'); ?>">
260
  </i>
261
  </td>
262
  </tr>
263
  </table><br/>
264
 
265
  <!-- DATABASE -->
266
- <div class="dup-box-panel-hdr"><i class="fa fa-table"></i> <?php DUP_Util::_e('DATABASE'); ?></div>
267
  <table class='dup-dtl-data-tbl'>
268
  <tr>
269
- <td><?php DUP_Util::_e("Type") ?>: </td>
270
  <td><?php echo $package->Database->Type ?></td>
271
  </tr>
272
  <tr>
273
- <td><?php DUP_Util::_e("Build Mode") ?>: </td>
274
  <td>
275
  <a href="?page=duplicator-settings" target="_blank"><?php echo $dbbuild_mode; ?></a>
276
  <?php if ($mysqlcompat_on) : ?>
277
  <br/>
278
  <small style="font-style:italic; color:maroon">
279
- <i class="fa fa-exclamation-circle"></i> <?php DUP_Util::_e('MySQL Compatibility Mode Enabled'); ?>
280
- <a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php DUP_Util::_e('details'); ?>]</a>
281
  </small>
282
  <?php endif; ?>
283
  </td>
284
  </tr>
285
  <tr>
286
- <td><?php DUP_Util::_e("Filters") ?>: </td>
287
  <td><?php echo $package->Database->FilterOn == 1 ? 'On' : 'Off'; ?></td>
288
  </tr>
289
  <tr class="sub-item <?php echo $css_db_filter_on ?>">
290
- <td><?php DUP_Util::_e("Tables") ?>: </td>
291
  <td>
292
  <?php
293
  echo isset($package->Database->FilterTables) && strlen($package->Database->FilterTables)
294
  ? str_replace(',', '&nbsp;|&nbsp;', $package->Database->FilterTables)
295
- : DUP_Util::__('- no filters -');
296
  ?>
297
  </td>
298
  </tr>
@@ -305,26 +305,26 @@ ARCHIVE -->
305
  INSTALLER -->
306
  <div class="dup-box" style="margin-bottom: 50px">
307
  <div class="dup-box-title">
308
- <i class="fa fa-bolt"></i> <?php DUP_Util::_e('Installer') ?>
309
  <div class="dup-box-arrow"></div>
310
  </div>
311
  <div class="dup-box-panel" id="dup-package-dtl-install-panel" style="<?php echo $ui_css_install ?>">
312
  <table class='dup-dtl-data-tbl'>
313
  <tr>
314
- <td><?php DUP_Util::_e("Host") ?>:</td>
315
- <td><?php echo strlen($package->Installer->OptsDBHost) ? $package->Installer->OptsDBHost : DUP_Util::__("- not set -") ?></td>
316
  </tr>
317
  <tr>
318
- <td><?php DUP_Util::_e("Database") ?>:</td>
319
- <td><?php echo strlen($package->Installer->OptsDBName) ? $package->Installer->OptsDBName : DUP_Util::__("- not set -") ?></td>
320
  </tr>
321
  <tr>
322
- <td><?php DUP_Util::_e("User") ?>:</td>
323
- <td><?php echo strlen($package->Installer->OptsDBUser) ? $package->Installer->OptsDBUser : DUP_Util::__("- not set -") ?></td>
324
  </tr>
325
  <tr>
326
- <td><?php DUP_Util::_e("New URL") ?>:</td>
327
- <td><?php echo strlen($package->Installer->OptsURLNew) ? $package->Installer->OptsURLNew : DUP_Util::__("- not set -") ?></td>
328
  </tr>
329
  </table>
330
  </div>
@@ -332,7 +332,7 @@ INSTALLER -->
332
 
333
  <?php if ($debug_on) : ?>
334
  <div style="margin:0">
335
- <a href="javascript:void(0)" onclick="jQuery(this).parent().find('.dup-pack-debug').toggle()">[<?php DUP_Util::_e("View Package Object") ?>]</a><br/>
336
  <pre class="dup-pack-debug" style="display:none"><?php @print_r($package); ?> </pre>
337
  </div>
338
  <?php endif; ?>
46
  </style>
47
 
48
  <?php if ($package_id == 0) :?>
49
+ <div class="error below-h2"><p><?php _e('Invlaid Package ID request. Please try again!', 'duplicator'); ?></p></div>
50
  <?php endif; ?>
51
 
52
  <div class="toggle-box">
58
  GENERAL -->
59
  <div class="dup-box">
60
  <div class="dup-box-title">
61
+ <i class="fa fa-archive"></i> <?php _e('General', 'duplicator') ?>
62
  <div class="dup-box-arrow"></div>
63
  </div>
64
  <div class="dup-box-panel" id="dup-package-dtl-general-panel" style="<?php echo $ui_css_general ?>">
65
  <table class='dup-dtl-data-tbl'>
66
  <tr>
67
+ <td><?php _e('Name', 'duplicator') ?>:</td>
68
  <td>
69
  <a href="javascript:void(0);" onclick="jQuery('#dup-name-info').toggle()"><?php echo $package->Name ?></a>
70
  <div id="dup-name-info">
71
+ <b><?php _e('ID', 'duplicator') ?>:</b> <?php echo $package->ID ?><br/>
72
+ <b><?php _e('Hash', 'duplicator') ?>:</b> <?php echo $package->Hash ?><br/>
73
+ <b><?php _e('Full Name', 'duplicator') ?>:</b> <?php echo $package->NameHash ?><br/>
74
  </div>
75
  </td>
76
  </tr>
77
  <tr>
78
+ <td><?php _e('Notes', 'duplicator') ?>:</td>
79
+ <td><?php echo strlen($package->Notes) ? $package->Notes : __('- no notes -', 'duplicator') ?></td>
80
  </tr>
81
  <tr>
82
+ <td><?php _e('Versions', 'duplicator') ?>:</td>
83
  <td>
84
  <a href="javascript:void(0);" onclick="jQuery('#dup-version-info').toggle()"><?php echo $package->Version ?></a>
85
  <div id="dup-version-info">
86
+ <b><?php _e('WordPress', 'duplicator') ?>:</b> <?php echo strlen($package->VersionWP) ? $package->VersionWP : __('- unknown -', 'duplicator') ?><br/>
87
+ <b><?php _e('Mysql', 'duplicator') ?>:</b> <?php echo strlen($package->VersionDB) ? $package->VersionDB : __('- unknown -', 'duplicator') ?><br/>
88
+ <b><?php _e('PHP', 'duplicator') ?>:</b> <?php echo strlen($package->VersionPHP) ? $package->VersionPHP : __('- unknown -', 'duplicator') ?><br/>
89
  </div>
90
  </td>
91
  </tr>
92
  <tr>
93
+ <td><?php _e('Runtime', 'duplicator') ?>:</td>
94
+ <td><?php echo strlen($package->Runtime) ? $package->Runtime : __("error running", 'duplicator'); ?></td>
95
  </tr>
96
  <tr>
97
+ <td><?php _e('Status', 'duplicator') ?>:</td>
98
+ <td><?php echo ($package->Status >= 100) ? __('completed', 'duplicator') : __('in-complete', 'duplicator') ?></td>
99
  </tr>
100
  <tr>
101
+ <td><?php _e('User', 'duplicator') ?>:</td>
102
+ <td><?php echo strlen($package->WPUser) ? $package->WPUser : __('- unknown -', 'duplicator') ?></td>
103
  </tr>
104
  <tr>
105
+ <td><?php _e('Files', 'duplicator') ?>: </td>
106
  <td>
107
  <div id="dup-downloads-area">
108
  <?php if (!$err_found) :?>
119
  <?php if (!$err_found) :?>
120
  <table class="dup-sub-list">
121
  <tr>
122
+ <td><?php _e('Archive', 'duplicator') ?>: </td>
123
  <td><?php echo $package->Archive->File ?></td>
124
  </tr>
125
  <tr>
126
+ <td><?php _e('Installer', 'duplicator') ?>: </td>
127
  <td><?php echo $package->Installer->File ?></td>
128
  </tr>
129
  <tr>
130
+ <td><?php _e('Database', 'duplicator') ?>: </td>
131
  <td><?php echo $package->Database->File ?></td>
132
  </tr>
133
  </table>
162
  ?>
163
  <div class="dup-box">
164
  <div class="dup-box-title">
165
+ <i class="fa fa-database"></i> <?php _e('Storage', 'duplicator') ?>
166
  <div class="dup-box-arrow"></div>
167
  </div>
168
  <div class="dup-box-panel" id="dup-package-dtl-storage-panel" style="<?php echo $ui_css_storage ?>">
169
  <table class="widefat package-tbl">
170
  <thead>
171
  <tr>
172
+ <th style='width:150px'><?php _e('Name', 'duplicator') ?></th>
173
+ <th style='width:100px'><?php _e('Type', 'duplicator') ?></th>
174
+ <th style="white-space: nowrap"><?php _e('Location', 'duplicator') ?></th>
175
  </tr>
176
  </thead>
177
  <tbody>
190
  <?php echo sprintf(__('%1$s, %2$s, %3$s, %4$s and more storage options available in', 'duplicator'), 'Amazon', 'Dropbox', 'Google Drive', 'FTP'); ?>
191
  <a href="http://snapcreek.com/duplicator/?free-storage-detail" target="_blank"><?php _e('Professional', 'duplicator');?></a>
192
  <i class="fa fa-lightbulb-o"
193
+ data-tooltip-title="<?php _e('Additional Storage:', 'duplicator'); ?>"
194
+ data-tooltip="<?php _e('Professional allows you to create a package and then store it at a custom location on this server or to a cloud '
195
+ . 'based location such as Google Drive, Amazon, Dropbox or FTP.', 'duplicator'); ?>">
196
  </i>
197
  </div>
198
  </td>
211
  ?>
212
  <div class="dup-box">
213
  <div class="dup-box-title">
214
+ <i class="fa fa-file-archive-o"></i> <?php _e('Archive', 'duplicator') ?>
215
  <div class="dup-box-arrow"></div>
216
  </div>
217
  <div class="dup-box-panel" id="dup-package-dtl-archive-panel" style="<?php echo $ui_css_archive ?>">
218
 
219
  <!-- FILES -->
220
+ <div class="dup-box-panel-hdr"><i class="fa fa-files-o"></i> <?php _e('FILES', 'duplicator'); ?></div>
221
  <table class='dup-dtl-data-tbl'>
222
  <tr>
223
+ <td><?php _e('Build Mode', 'duplicator') ?>: </td>
224
+ <td><?php _e('ZipArchive', 'duplicator'); ?></td>
225
  </tr>
226
  <tr>
227
+ <td><?php _e('Filters', 'duplicator') ?>: </td>
228
  <td><?php echo $package->Archive->FilterOn == 1 ? 'On' : 'Off'; ?></td>
229
  </tr>
230
  <tr class="sub-item <?php echo $css_file_filter_on ?>">
231
+ <td><?php _e('Directories', 'duplicator') ?>: </td>
232
  <td>
233
  <?php
234
  echo strlen($package->Archive->FilterDirs)
235
  ? str_replace(';', '<br/>', $package->Archive->FilterDirs)
236
+ : __('- no filters -', 'duplicator');
237
  ?>
238
  </td>
239
  </tr>
240
  <tr class="sub-item <?php echo $css_file_filter_on ?>">
241
+ <td><?php _e('Extensions', 'duplicator') ?>: </td>
242
  <td>
243
  <?php
244
  echo isset($package->Archive->FilterExts) && strlen($package->Archive->FilterExts)
245
  ? $package->Archive->FilterExts
246
+ : __('- no filters -', 'duplicator');
247
  ?>
248
  </td>
249
  </tr>
250
  <tr class="sub-item <?php echo $css_file_filter_on ?>">
251
+ <td><?php _e('Files', 'duplicator') ?>: </td>
252
  <td>
253
  <i>
254
+ <?php _e('Available in', 'duplicator') ?>
255
  <a href="http://snapcreek.com/duplicator/?free-file-filters" target="_blank"><?php _e('Professional', 'duplicator');?></a>
256
  </i>
257
  <i class="fa fa-lightbulb-o"
258
+ data-tooltip-title="<?php _e('File Filters:', 'duplicator'); ?>"
259
+ data-tooltip="<?php _e('File filters allows you to select individual files and add them to an exclusion list that will filter them from the package.', 'duplicator'); ?>">
260
  </i>
261
  </td>
262
  </tr>
263
  </table><br/>
264
 
265
  <!-- DATABASE -->
266
+ <div class="dup-box-panel-hdr"><i class="fa fa-table"></i> <?php _e('DATABASE', 'duplicator'); ?></div>
267
  <table class='dup-dtl-data-tbl'>
268
  <tr>
269
+ <td><?php _e('Type', 'duplicator') ?>: </td>
270
  <td><?php echo $package->Database->Type ?></td>
271
  </tr>
272
  <tr>
273
+ <td><?php _e('Build Mode', 'duplicator') ?>: </td>
274
  <td>
275
  <a href="?page=duplicator-settings" target="_blank"><?php echo $dbbuild_mode; ?></a>
276
  <?php if ($mysqlcompat_on) : ?>
277
  <br/>
278
  <small style="font-style:italic; color:maroon">
279
+ <i class="fa fa-exclamation-circle"></i> <?php _e('MySQL Compatibility Mode Enabled', 'duplicator'); ?>
280
+ <a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php _e('details', 'duplicator'); ?>]</a>
281
  </small>
282
  <?php endif; ?>
283
  </td>
284
  </tr>
285
  <tr>
286
+ <td><?php _e('Filters', 'duplicator') ?>: </td>
287
  <td><?php echo $package->Database->FilterOn == 1 ? 'On' : 'Off'; ?></td>
288
  </tr>
289
  <tr class="sub-item <?php echo $css_db_filter_on ?>">
290
+ <td><?php _e('Tables', 'duplicator') ?>: </td>
291
  <td>
292
  <?php
293
  echo isset($package->Database->FilterTables) && strlen($package->Database->FilterTables)
294
  ? str_replace(',', '&nbsp;|&nbsp;', $package->Database->FilterTables)
295
+ : __('- no filters -', 'duplicator');
296
  ?>
297
  </td>
298
  </tr>
305
  INSTALLER -->
306
  <div class="dup-box" style="margin-bottom: 50px">
307
  <div class="dup-box-title">
308
+ <i class="fa fa-bolt"></i> <?php _e('Installer', 'duplicator') ?>
309
  <div class="dup-box-arrow"></div>
310
  </div>
311
  <div class="dup-box-panel" id="dup-package-dtl-install-panel" style="<?php echo $ui_css_install ?>">
312
  <table class='dup-dtl-data-tbl'>
313
  <tr>
314
+ <td><?php _e('Host', 'duplicator') ?>:</td>
315
+ <td><?php echo strlen($package->Installer->OptsDBHost) ? $package->Installer->OptsDBHost : __('- not set -', 'duplicator') ?></td>
316
  </tr>
317
  <tr>
318
+ <td><?php _e('Database', 'duplicator') ?>:</td>
319
+ <td><?php echo strlen($package->Installer->OptsDBName) ? $package->Installer->OptsDBName : __('- not set -', 'duplicator') ?></td>
320
  </tr>
321
  <tr>
322
+ <td><?php _e('User', 'duplicator') ?>:</td>
323
+ <td><?php echo strlen($package->Installer->OptsDBUser) ? $package->Installer->OptsDBUser : __('- not set -', 'duplicator') ?></td>
324
  </tr>
325
  <tr>
326
+ <td><?php _e('New URL', 'duplicator') ?>:</td>
327
+ <td><?php echo strlen($package->Installer->OptsURLNew) ? $package->Installer->OptsURLNew : __('- not set -', 'duplicator') ?></td>
328
  </tr>
329
  </table>
330
  </div>
332
 
333
  <?php if ($debug_on) : ?>
334
  <div style="margin:0">
335
+ <a href="javascript:void(0)" onclick="jQuery(this).parent().find('.dup-pack-debug').toggle()">[<?php _e('View Package Object', 'duplicator') ?>]</a><br/>
336
  <pre class="dup-pack-debug" style="display:none"><?php @print_r($package); ?> </pre>
337
  </div>
338
  <?php endif; ?>
views/packages/details/transfer.php CHANGED
@@ -6,22 +6,22 @@
6
 
7
  <div class="transfer-panel">
8
  <div class="transfer-hdr">
9
- <h2><i class="fa fa-arrow-circle-right"></i> <?php DUP_Util::_e('Manual Transfer'); ?></h2>
10
  </div>
11
  <br/>
12
 
13
  <div style="font-size:16px; text-align: center; line-height: 30px">
14
  <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo-dpro-300x50.png" />
15
  <?php
16
- echo '<h2>' . DUP_Util::__('This option is available only in Duplicator Professional.') . '</h2>';
17
- DUP_Util::_e('Manual transfer lets you copy a package to Amazon S3, Dropbox, Google Drive, FTP or another directory.');
18
  echo '<br/>';
19
- DUP_Util::_e('Simply choose your destination and hit the transfer button and your done.');
20
  ?>
21
  </div>
22
  <p style="text-align:center">
23
  <a href="http://snapcreek.com/duplicator?free-manual-transfer" target="_blank" class="button button-primary button-large dup-check-it-btn" >
24
- <?php DUP_Util::_e('Learn More') ?>
25
  </a>
26
  </p>
27
  </div>
6
 
7
  <div class="transfer-panel">
8
  <div class="transfer-hdr">
9
+ <h2><i class="fa fa-arrow-circle-right"></i> <?php _e('Manual Transfer', 'duplicator'); ?></h2>
10
  </div>
11
  <br/>
12
 
13
  <div style="font-size:16px; text-align: center; line-height: 30px">
14
  <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo-dpro-300x50.png" />
15
  <?php
16
+ echo '<h2>' . __('This option is available only in Duplicator Professional.', 'duplicator') . '</h2>';
17
+ _e('Manual transfer lets you copy a package to Amazon S3, Dropbox, Google Drive, FTP or another directory.', 'duplicator');
18
  echo '<br/>';
19
+ _e('Simply choose your destination and hit the transfer button.', 'duplicator');
20
  ?>
21
  </div>
22
  <p style="text-align:center">
23
  <a href="http://snapcreek.com/duplicator?free-manual-transfer" target="_blank" class="button button-primary button-large dup-check-it-btn" >
24
+ <?php _e('Learn More', 'duplicator') ?>
25
  </a>
26
  </p>
27
  </div>
views/packages/main/new1.base.php CHANGED
@@ -184,7 +184,10 @@ SYSTEM REQUIREMENTS -->
184
  </div>
185
  <div class="dup-sys-info dup-info-box">
186
  <?php if ($dup_tests['RES']['INSTALL'] == 'Pass') : ?>
187
- <?php _e("None of the reserved files [{$dup_intaller_files}] where found from a previous install. This means you are clear to create a new package.", 'duplicator'); ?>
 
 
 
188
  <?php else:
189
  $duplicator_nonce = wp_create_nonce('duplicator_cleanup_page');
190
  ?>
184
  </div>
185
  <div class="dup-sys-info dup-info-box">
186
  <?php if ($dup_tests['RES']['INSTALL'] == 'Pass') : ?>
187
+ <?php
188
+ _e("None of the reserved files where found from a previous install. This means you are clear to create a new package.", 'duplicator');
189
+ echo " [{$dup_intaller_files}]";
190
+ ?>
191
  <?php else:
192
  $duplicator_nonce = wp_create_nonce('duplicator_cleanup_page');
193
  ?>
views/packages/main/new1.inc.form.php CHANGED
@@ -90,9 +90,9 @@ STORAGE -->
90
  <?php echo sprintf(__('%1$s, %2$s, %3$s, %4$s and other storage options available in', 'duplicator'), 'Amazon', 'Dropbox', 'Google Drive', 'FTP'); ?>
91
  <a href="http://snapcreek.com/duplicator/?free-storage" target="_blank"><?php _e('Professional', 'duplicator');?></a>
92
  <i class="fa fa-lightbulb-o"
93
- data-tooltip-title="<?php DUP_Util::_e("Additional Storage:"); ?>"
94
- data-tooltip="<?php DUP_Util::_e('Professional allows you to create a package and then store it at a custom location on this server or to a cloud '
95
- . 'based location such as Google Drive, Amazon, Dropbox or FTP.'); ?>">
96
  </i>
97
  </span>
98
  </div>
@@ -165,11 +165,11 @@ ARCHIVE -->
165
  </div>
166
  <br/>
167
  <span class="dup-pro-text">
168
- <?php echo sprintf(DUP_Util::__('%1$s are available in'), 'Individual file filters'); ?>
169
  <a href="http://snapcreek.com/duplicator/?free-file-filters" target="_blank"><?php _e('Professional', 'duplicator');?></a>
170
  <i class="fa fa-lightbulb-o"
171
- data-tooltip-title="<?php DUP_Util::_e("File Filters:"); ?>"
172
- data-tooltip="<?php DUP_Util::_e('File filters allows you to select individual files and add them to an exclusion list that will filter them from the package.'); ?>">
173
  </i>
174
  </span>
175
  </div>
@@ -189,8 +189,8 @@ ARCHIVE -->
189
  <td>
190
  <label for="dbfilter-on"><?php _e("Enable Table Filters", 'duplicator') ?> &nbsp;</label>
191
  <i class="fa fa-question-circle"
192
- data-tooltip-title="<?php DUP_Util::_e("Enable Table Filters:"); ?>"
193
- data-tooltip="<?php DUP_Util::_e('Checked tables will not be added to the database script. Excluding certain tables can possibly cause your site or plugins to not work correctly after install!'); ?>">
194
  </i>
195
  </td>
196
  </tr>
@@ -232,15 +232,15 @@ ARCHIVE -->
232
  </div>
233
  </div>
234
  <br/>
235
- <?php DUP_Util::_e("Compatibility Mode") ?> &nbsp;
236
  <i class="fa fa-question-circle"
237
- data-tooltip-title="<?php DUP_Util::_e("Compatibility Mode:"); ?>"
238
- data-tooltip="<?php DUP_Util::_e('This is an advanced database backwards compatibility feature that should ONLY be used if having problems installing packages.'
239
  . ' If the database server version is lower than the version where the package was built then these options may help generate a script that is more compliant'
240
- . ' with the older database server. It is recommended to try each option separately starting with mysql40.'); ?>">
241
  </i> &nbsp;
242
  <small style="font-style:italic">
243
- <a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php DUP_Util::_e('details'); ?>]</a>
244
  </small>
245
  <br/>
246
 
@@ -256,24 +256,24 @@ ARCHIVE -->
256
  <tr>
257
  <td>
258
  <input type="checkbox" name="dbcompat[]" id="dbcompat-mysql40" value="mysql40" <?php echo $is_mysql40 ? 'checked="true"' :''; ?> >
259
- <label for="dbcompat-mysql40"><?php DUP_Util::_e("mysql40") ?></label>
260
  </td>
261
  <td>
262
  <input type="checkbox" name="dbcompat[]" id="dbcompat-no_table_options" value="no_table_options" <?php echo $is_no_table ? 'checked="true"' :''; ?>>
263
- <label for="dbcompat-no_table_options"><?php DUP_Util::_e("no_table_options") ?></label>
264
  </td>
265
  <td>
266
  <input type="checkbox" name="dbcompat[]" id="dbcompat-no_key_options" value="no_key_options" <?php echo $is_no_key ? 'checked="true"' :''; ?>>
267
- <label for="dbcompat-no_key_options"><?php DUP_Util::_e("no_key_options") ?></label>
268
  </td>
269
  <td>
270
  <input type="checkbox" name="dbcompat[]" id="dbcompat-no_field_options" value="no_field_options" <?php echo $is_no_field ? 'checked="true"' :''; ?>>
271
- <label for="dbcompat-no_field_options"><?php DUP_Util::_e("no_field_options") ?></label>
272
  </td>
273
  </tr>
274
  </table>
275
  <?php else :?>
276
- <i><?php DUP_Util::_e("This option is only availbe with mysqldump mode."); ?></i>
277
  <?php endif; ?>
278
 
279
  </div>
@@ -362,8 +362,8 @@ INSTALLER -->
362
  <?php _e("Connect to a cPanel database with.", 'duplicator'); ?>
363
  <a href="http://snapcreek.com/duplicator/?free-file-filters" target="_blank"><?php _e('Professional', 'duplicator');?></a>
364
  <i class="fa fa-lightbulb-o"
365
- data-tooltip-title="<?php DUP_Util::_e("cPanel Access:"); ?>"
366
- data-tooltip="<?php DUP_Util::_e('If your server supports cPanel API access then you can create new databases and select existing ones with Duplicator Professional at install time.'); ?>">
367
  </i>
368
  </span>
369
  </div>
90
  <?php echo sprintf(__('%1$s, %2$s, %3$s, %4$s and other storage options available in', 'duplicator'), 'Amazon', 'Dropbox', 'Google Drive', 'FTP'); ?>
91
  <a href="http://snapcreek.com/duplicator/?free-storage" target="_blank"><?php _e('Professional', 'duplicator');?></a>
92
  <i class="fa fa-lightbulb-o"
93
+ data-tooltip-title="<?php _e("Additional Storage:", 'duplicator', 'duplicator'); ?>"
94
+ data-tooltip="<?php _e('Professional allows you to create a package and then store it at a custom location on this server or to a cloud '
95
+ . 'based location such as Google Drive, Amazon, Dropbox or FTP.', 'duplicator'); ?>">
96
  </i>
97
  </span>
98
  </div>
165
  </div>
166
  <br/>
167
  <span class="dup-pro-text">
168
+ <?php echo sprintf(__('%1$s are available in', 'duplicator'), 'Individual file filters'); ?>
169
  <a href="http://snapcreek.com/duplicator/?free-file-filters" target="_blank"><?php _e('Professional', 'duplicator');?></a>
170
  <i class="fa fa-lightbulb-o"
171
+ data-tooltip-title="<?php _e("File Filters:", 'duplicator'); ?>"
172
+ data-tooltip="<?php _e('File filters allows you to select individual files and add them to an exclusion list that will filter them from the package.', 'duplicator'); ?>">
173
  </i>
174
  </span>
175
  </div>
189
  <td>
190
  <label for="dbfilter-on"><?php _e("Enable Table Filters", 'duplicator') ?> &nbsp;</label>
191
  <i class="fa fa-question-circle"
192
+ data-tooltip-title="<?php _e("Enable Table Filters:", 'duplicator'); ?>"
193
+ data-tooltip="<?php _e('Checked tables will not be added to the database script. Excluding certain tables can possibly cause your site or plugins to not work correctly after install!', 'duplicator'); ?>">
194
  </i>
195
  </td>
196
  </tr>
232
  </div>
233
  </div>
234
  <br/>
235
+ <?php _e("Compatibility Mode", 'duplicator') ?> &nbsp;
236
  <i class="fa fa-question-circle"
237
+ data-tooltip-title="<?php _e("Compatibility Mode:", 'duplicator'); ?>"
238
+ data-tooltip="<?php _e('This is an advanced database backwards compatibility feature that should ONLY be used if having problems installing packages.'
239
  . ' If the database server version is lower than the version where the package was built then these options may help generate a script that is more compliant'
240
+ . ' with the older database server. It is recommended to try each option separately starting with mysql40.', 'duplicator'); ?>">
241
  </i> &nbsp;
242
  <small style="font-style:italic">
243
+ <a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php _e('details', 'duplicator'); ?>]</a>
244
  </small>
245
  <br/>
246
 
256
  <tr>
257
  <td>
258
  <input type="checkbox" name="dbcompat[]" id="dbcompat-mysql40" value="mysql40" <?php echo $is_mysql40 ? 'checked="true"' :''; ?> >
259
+ <label for="dbcompat-mysql40"><?php _e("mysql40", 'duplicator') ?></label>
260
  </td>
261
  <td>
262
  <input type="checkbox" name="dbcompat[]" id="dbcompat-no_table_options" value="no_table_options" <?php echo $is_no_table ? 'checked="true"' :''; ?>>
263
+ <label for="dbcompat-no_table_options"><?php _e("no_table_options", 'duplicator') ?></label>
264
  </td>
265
  <td>
266
  <input type="checkbox" name="dbcompat[]" id="dbcompat-no_key_options" value="no_key_options" <?php echo $is_no_key ? 'checked="true"' :''; ?>>
267
+ <label for="dbcompat-no_key_options"><?php _e("no_key_options", 'duplicator') ?></label>
268
  </td>
269
  <td>
270
  <input type="checkbox" name="dbcompat[]" id="dbcompat-no_field_options" value="no_field_options" <?php echo $is_no_field ? 'checked="true"' :''; ?>>
271
+ <label for="dbcompat-no_field_options"><?php _e("no_field_options", 'duplicator') ?></label>
272
  </td>
273
  </tr>
274
  </table>
275
  <?php else :?>
276
+ <i><?php _e("This option is only availbe with mysqldump mode.", 'duplicator'); ?></i>
277
  <?php endif; ?>
278
 
279
  </div>
362
  <?php _e("Connect to a cPanel database with.", 'duplicator'); ?>
363
  <a href="http://snapcreek.com/duplicator/?free-file-filters" target="_blank"><?php _e('Professional', 'duplicator');?></a>
364
  <i class="fa fa-lightbulb-o"
365
+ data-tooltip-title="<?php _e("cPanel Access:", 'duplicator'); ?>"
366
+ data-tooltip="<?php _e('If your server supports cPanel API access then you can create new databases and select existing ones with Duplicator Professional at install time.', 'duplicator'); ?>">
367
  </i>
368
  </span>
369
  </div>
views/packages/main/new2.base.php CHANGED
@@ -82,18 +82,18 @@ TOOL BAR: STEPS -->
82
  <td style="white-space: nowrap">
83
  <div id="dup-wiz">
84
  <div id="dup-wiz-steps">
85
- <div class="completed-step"><a><span>1</span> <?php DUP_Util::_e('Setup'); ?></a></div>
86
- <div class="active-step"><a><span>2</span> <?php DUP_Util::_e('Scan'); ?> </a></div>
87
- <div><a><span>3</span> <?php DUP_Util::_e('Build'); ?> </a></div>
88
  </div>
89
  <div id="dup-wiz-title">
90
- <?php DUP_Util::_e('Step 2: System Scan'); ?>
91
  </div>
92
  </div>
93
  </td>
94
  <td class="dup-toolbar-btns">
95
- <a id="dup-pro-create-new" href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php DUP_Util::_e("All Packages"); ?></a> &nbsp;
96
- <span> <?php DUP_Util::_e("Create New"); ?></span>
97
  </td>
98
  </tr>
99
  </table>
@@ -104,17 +104,17 @@ TOOL BAR: STEPS -->
104
  <div id="dup-progress-area">
105
  <!-- PROGRESS BAR -->
106
  <div id="dup-progress-bar-area">
107
- <div class="dup-progress-title"><i class="fa fa-spinner fa-spin"></i> <?php DUP_Util::_e('Scanning Site'); ?></div>
108
  <div id="dup-progress-bar"></div>
109
- <b><?php DUP_Util::_e('Please Wait...'); ?></b>
110
  </div>
111
 
112
  <!-- SUCCESS MESSAGE -->
113
  <div id="dup-msg-success" style="display:none">
114
  <div style="text-align:center">
115
- <div class="dup-hdr-success"><i class="fa fa-check-square-o fa-lg"></i> <?php DUP_Util::_e('Scan Complete'); ?></div>
116
  <div id="dup-msg-success-subtitle">
117
- <?php DUP_Util::_e("Process Time:"); ?> <span id="data-rpt-scantime"></span>
118
  </div>
119
  </div><br/>
120
 
@@ -123,9 +123,9 @@ TOOL BAR: STEPS -->
123
  ================================================================ -->
124
  <div class="dup-panel">
125
  <div class="dup-panel-title">
126
- <i class="fa fa-hdd-o"></i> <?php DUP_Util::_e("Server"); ?>
127
  <div style="float:right; margin:-1px 10px 0px 0px">
128
- <small><a href="?page=duplicator-tools&tab=diagnostics" target="_blank"><?php DUP_Util::_e('Diagnostics');?></a></small>
129
  </div>
130
 
131
  </div>
@@ -134,14 +134,14 @@ TOOL BAR: STEPS -->
134
  WEB SERVER -->
135
  <div>
136
  <div class='dup-scan-title'>
137
- <a><?php DUP_Util::_e('Web Server');?></a> <div id="data-srv-web-all"></div>
138
  </div>
139
  <div class='dup-scan-info dup-info-box'>
140
  <?php
141
  $web_servers = implode(', ', $GLOBALS['DUPLICATOR_SERVER_LIST']);
142
- echo '<span id="data-srv-web-model"></span>&nbsp;<b>' . DUP_Util::__('Web Server') . ":</b>&nbsp; '{$_SERVER['SERVER_SOFTWARE']}'";
143
  echo '<small>';
144
- DUP_Util::_e("Supported web servers:");
145
  echo "{$web_servers}";
146
  echo '</small>';
147
  ?>
@@ -151,42 +151,42 @@ TOOL BAR: STEPS -->
151
  PHP SETTINGS -->
152
  <div>
153
  <div class='dup-scan-title'>
154
- <a><?php DUP_Util::_e('PHP Setup');?></a> <div id="data-srv-php-all"></div>
155
  </div>
156
  <div class='dup-scan-info dup-info-box'>
157
  <?php
158
  //OPEN_BASEDIR
159
  $test = ini_get("open_basedir");
160
- echo '<span id="data-srv-php-openbase"></span>&nbsp;<b>' . DUP_Util::__('Open Base Dir') . ":</b>&nbsp; '{$test}' <br/>";
161
  echo '<small>';
162
- DUP_Util::_e('Issues might occur when [open_basedir] is enabled. Work with your server admin to disable this value in the php.ini file if you’re having issues building a package.');
163
- echo "&nbsp;<i><a href='http://www.php.net/manual/en/ini.core.php#ini.open-basedir' target='_blank'>[" . DUP_Util::__('details') . "]</a></i><br/>";
164
  echo '</small>';
165
 
166
  //MAX_EXECUTION_TIME
167
  $test = (set_time_limit(0)) ? 0 : ini_get("max_execution_time");
168
- echo '<hr size="1" /><span id="data-srv-php-maxtime"></span>&nbsp;<b>' . DUP_Util::__('Max Execution Time') . ":</b>&nbsp; '{$test}' <br/>";
169
  echo '<small>';
170
- printf(DUP_Util::__('Issues might occur for larger packages when the [max_execution_time] value in the php.ini is too low. The minimum recommended timeout is "%1$s" seconds or higher. An attempt is made to override this value if the server allows it. A value of 0 (recommended) indicates that PHP has no time limits.'), DUPLICATOR_SCAN_TIMEOUT);
171
  echo '<br/><br/>';
172
- DUP_Util::_e('Note: Timeouts can also be set at the web server layer, so if the PHP max timeout passes and you still see a build interrupt messages, then your web server could be killing the process. If you are limited on processing time, consider using the database or file filters to shrink the size of your overall package. However use caution as excluding the wrong resources can cause your install to not work properly.');
173
- echo "&nbsp;<i><a href='http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time' target='_blank'>[" .DUP_Util::__('details') . "]</a></i>";
174
 
175
  if ($zip_check != null) {
176
  echo '<br/><br/>';
177
  echo '<span style="font-weight:bold">';
178
- DUP_Util::_e('Get faster builds with Duplicator Pro.');
179
  echo '</span>';
180
- echo "&nbsp;<i><a href='http://snapcreek.com/duplicator?free-max-execution-time-warn' target='_blank'>[" . DUP_Util::__('details') . "]</a></i>";
181
  }
182
 
183
  echo '</small>';
184
 
185
  //MYSQLI
186
- echo '<hr size="1" /><span id="data-srv-php-mysqli"></span>&nbsp;<b>' . DUP_Util::__('MySQLi') . "</b> <br/>";
187
  echo '<small>';
188
- DUP_Util::_e('Creating the package does not require the mysqli module. However the installer.php file requires that the PHP module mysqli be installed on the server it is deployed on.');
189
- echo "&nbsp;<i><a href='http://php.net/manual/en/mysqli.installation.php' target='_blank'>[" . DUP_Util::__('details') . "]</a></i>";
190
  echo '</small>';
191
  ?>
192
  </div>
@@ -195,28 +195,28 @@ TOOL BAR: STEPS -->
195
  WORDPRESS SETTINGS -->
196
  <div>
197
  <div class='dup-scan-title'>
198
- <a><?php DUP_Util::_e('WordPress');?></a> <div id="data-srv-wp-all"></div>
199
  </div>
200
  <div class='dup-scan-info dup-info-box'>
201
  <?php
202
  //VERSION CHECK
203
- echo '<span id="data-srv-wp-version"></span>&nbsp;<b>' . DUP_Util::__('WordPress Version') . ":</b>&nbsp; '{$wp_version}' <br/>";
204
  echo '<small>';
205
- printf(DUP_Util::__('It is recommended to have a version of WordPress that is greater than %1$s'), DUPLICATOR_SCAN_MIN_WP);
206
  echo '</small>';
207
 
208
  //CORE FILES
209
- echo '<hr size="1" /><span id="data-srv-wp-core"></span>&nbsp;<b>' . DUP_Util::__('Core Files') . "</b> <br/>";
210
  echo '<small>';
211
- DUP_Util::_e("If the scanner is unable to locate the wp-config.php file in the root directory, then you will need to manually copy it to its new location.");
212
  echo '</small>';
213
 
214
  //CACHE DIR
215
  $cache_path = $cache_path = DUP_Util::SafePath(WP_CONTENT_DIR) . '/cache';
216
  $cache_size = DUP_Util::ByteSize(DUP_Util::GetDirectorySize($cache_path));
217
- echo '<hr size="1" /><span id="data-srv-wp-cache"></span>&nbsp;<b>' . DUP_Util::__('Cache Path') . ":</b>&nbsp; '{$cache_path}' ({$cache_size}) <br/>";
218
  echo '<small>';
219
- DUP_Util::_e("Cached data will lead to issues at install time and increases your archive size. It is recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you have a cache plugin review the documentation for how to empty it; simply removing files might cause errors on your site. The cache size minimum threshold is currently set at ");
220
  echo DUP_Util::ByteSize(DUPLICATOR_SCAN_CACHESIZE) . '.';
221
  echo '</small>';
222
 
@@ -226,7 +226,7 @@ TOOL BAR: STEPS -->
226
  </div><!-- end .dup-panel -->
227
  </div><!-- end .dup-panel-panel -->
228
 
229
- <h2 style="font-size:18px; font-weight:bold; margin:-15px 0 0 10px"><i class="fa fa-file-archive-o"></i>&nbsp;<?php DUP_Util::_e('Archive');?> </h2>
230
 
231
  <!-- ================================================================
232
  FILES
@@ -234,12 +234,12 @@ TOOL BAR: STEPS -->
234
  <div class="dup-panel">
235
  <div class="dup-panel-title">
236
  <i class="fa fa-files-o"></i>
237
- <?php DUP_Util::_e("Files"); ?>
238
  <div id="data-arc-size1"></div>
239
  <div class="dup-scan-filter-status">
240
  <?php
241
  if ($Package->Archive->FilterOn) {
242
- echo '<i class="fa fa-filter"></i> '; DUP_Util::_e('Enabled');
243
  }
244
  ?>
245
  </div>
@@ -250,24 +250,24 @@ TOOL BAR: STEPS -->
250
  TOTAL SIZE -->
251
  <div>
252
  <div class='dup-scan-title'>
253
- <a><?php DUP_Util::_e('Total Size');?></a> <div id="data-arc-status-size"></div>
254
  </div>
255
  <div class='dup-scan-info dup-info-box'>
256
- <b><?php DUP_Util::_e('Size');?>:</b> <span id="data-arc-size2"></span> &nbsp; | &nbsp;
257
- <b><?php DUP_Util::_e('File Count');?>:</b> <span id="data-arc-files"></span> &nbsp; | &nbsp;
258
- <b><?php DUP_Util::_e('Directory Count');?>:</b> <span id="data-arc-dirs"></span>
259
  <small>
260
  <?php
261
- printf(DUP_Util::__('Total size represents all files minus any filters that have been setup. The current thresholds that triggers a warning is %1$s for the total size. Some budget hosts limit the amount of time a PHP/Web request process can run. When working with larger sites this can cause timeout issues. Consider using a file filter in step 1 to shrink and filter the overall size of your package.'),
262
  DUP_Util::ByteSize(DUPLICATOR_SCAN_SITE),
263
  DUP_Util::ByteSize(DUPLICATOR_SCAN_WARNFILESIZE));
264
 
265
  if ($zip_check != null) {
266
  echo '<br/><br/>';
267
  echo '<span style="font-weight:bold">';
268
- DUP_Util::_e('Package support up to 2GB available in Duplicator Pro.');
269
  echo '</span>';
270
- echo "&nbsp;<i><a href='http://snapcreek.com/duplicator?free-size-warn' target='_blank'>[" . DUP_Util::__('details') . "]</a></i>";
271
  }
272
 
273
  ?>
@@ -279,15 +279,15 @@ TOOL BAR: STEPS -->
279
  FILE NAME LENGTHS -->
280
  <div>
281
  <div class='dup-scan-title'>
282
- <a><?php DUP_Util::_e('Name Checks');?></a> <div id="data-arc-status-names"></div>
283
  </div>
284
  <div class='dup-scan-info dup-info-box'>
285
  <small>
286
  <?php
287
- DUP_Util::_e('File or directory names may cause issues when working across different environments and servers. Names that are over 250 characters, contain special characters (such as * ? > < : / \ |) or are unicode might cause issues in a remote enviroment. It is recommended to remove or filter these files before building the archive if you have issues at install time.');
288
  ?>
289
  </small><br/>
290
- <a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php DUP_Util::_e('Show Paths');?>]</a>
291
  <div id="data-arc-names-data"></div>
292
  </div>
293
  </div>
@@ -296,16 +296,16 @@ TOOL BAR: STEPS -->
296
  LARGE FILES -->
297
  <div>
298
  <div class='dup-scan-title'>
299
- <a><?php DUP_Util::_e('Large Files');?></a> <div id="data-arc-status-big"></div>
300
  </div>
301
  <div class='dup-scan-info dup-info-box'>
302
  <small>
303
  <?php
304
- printf(DUP_Util::__('Large files such as movies or other backuped data can cause issues with timeouts. The current check for large files is %1$s per file. If your having issues creating a package consider excluding these files with the files filter and manually moving them to your new location.'),
305
  DUP_Util::ByteSize(DUPLICATOR_SCAN_WARNFILESIZE));
306
  ?>
307
  </small><br/>
308
- <a href="javascript:void(0)" onclick="jQuery('#data-arc-big-data').toggle()">[<?php DUP_Util::_e('Show Paths');?>]</a>
309
  <div id="data-arc-big-data"></div>
310
  </div>
311
  </div>
@@ -315,37 +315,37 @@ TOOL BAR: STEPS -->
315
  <?php if ($Package->Archive->FilterOn) : ?>
316
  <div>
317
  <div class='dup-scan-title'>
318
- <a style='font-weight: normal'><?php DUP_Util::_e('Archive Details');?></a>
319
  </div>
320
  <div class='dup-scan-info dup-info-box'>
321
- <b>[<?php DUP_Util::_e('Root Directory');?>]</b><br/>
322
  <?php echo DUPLICATOR_WPROOTPATH;?>
323
  <br/><br/>
324
 
325
- <b>[<?php DUP_Util::_e('Excluded Directories');?>]</b><br/>
326
  <?php
327
  if (strlen( $Package->Archive->FilterDirs)) {
328
  echo str_replace(";", "<br/>", $Package->Archive->FilterDirs);
329
  } else {
330
- DUP_Util::_e('No directory filters have been set.');
331
  }
332
  ?>
333
  <br/>
334
 
335
- <b>[<?php DUP_Util::_e('Excluded File Extensions');?>]</b><br/>
336
  <?php
337
  if (strlen( $Package->Archive->FilterExts)) {
338
  echo $Package->Archive->FilterExts;
339
  } else {
340
- DUP_Util::_e('No file extension filters have been set.');
341
  }
342
  ?>
343
  <small>
344
  <?php
345
- DUP_Util::_e('The root directory is where Duplicator starts archiving files. The excluded sections will be skipped during the archive process. ');
346
- DUP_Util::_e('All results are stored in a json file. ');
347
  ?>
348
- <a href="<?php echo DUPLICATOR_SITE_URL ?>/wp-admin/admin-ajax.php?action=duplicator_package_scan" target="dup_report"><?php DUP_Util::_e('[view json report]');?></a>
349
  </small><br/>
350
  </div>
351
  </div>
@@ -358,12 +358,12 @@ TOOL BAR: STEPS -->
358
  ================================================================ -->
359
  <div class="dup-panel-title">
360
  <i class="fa fa-table"></i>
361
- <?php DUP_Util::_e("Database"); ?>
362
  <div id="data-db-size1"></div>
363
  <div class="dup-scan-filter-status">
364
  <?php
365
  if ($Package->Database->FilterOn) {
366
- echo '<i class="fa fa-filter"></i> '; DUP_Util::_e('Enabled');
367
  }
368
  ?>
369
  </div>
@@ -374,16 +374,16 @@ TOOL BAR: STEPS -->
374
  TOTAL SIZE -->
375
  <div>
376
  <div class='dup-scan-title'>
377
- <a><?php DUP_Util::_e('Total Size');?></a>
378
  <div id="data-db-status-size1"></div>
379
  </div>
380
  <div class='dup-scan-info dup-info-box'>
381
- <b><?php DUP_Util::_e('Tables');?>:</b> <span id="data-db-tablecount"></span> &nbsp; | &nbsp;
382
- <b><?php DUP_Util::_e('Records');?>:</b> <span id="data-db-rows"></span> &nbsp; | &nbsp;
383
- <b><?php DUP_Util::_e('Size');?>:</b> <span id="data-db-size2"></span> <br/><br/>
384
  <?php
385
- $lnk = '<a href="maint/repair.php" target="_blank">' . DUP_Util::__('repair and optimization') . '</a>';
386
- printf(DUP_Util::__('Total size and row count for all database tables are approximate values. The thresholds that trigger warnings are %1$s and %2$s records. Large databases take time to process and can cause issues with server timeout and memory settings. Running a %3$s on your database can also help improve the overall size and performance. If your server supports shell_exec and mysqldump you can try to enable this option from the settings menu.'),
387
  DUP_Util::ByteSize(DUPLICATOR_SCAN_DBSIZE),
388
  number_format(DUPLICATOR_SCAN_DBROWS),
389
  $lnk);
@@ -395,7 +395,7 @@ TOOL BAR: STEPS -->
395
  TABLE DETAILS -->
396
  <div>
397
  <div class='dup-scan-title'>
398
- <a><?php DUP_Util::_e('Table Details');?></a>
399
  <div id="data-db-status-size2"></div>
400
  </div>
401
  <div class='dup-scan-info dup-info-box'>
@@ -406,17 +406,17 @@ TOOL BAR: STEPS -->
406
  </div>
407
 
408
  <table id="dup-scan-db-details">
409
- <tr><td><b><?php DUP_Util::_e('Name:');?></b></td><td><?php echo DB_NAME ;?> </td></tr>
410
- <tr><td><b><?php DUP_Util::_e('Host:');?></b></td><td><?php echo DB_HOST ;?> </td></tr>
411
  <tr>
412
- <td style="vertical-align: top"><b><?php DUP_Util::_e('Build Mode:');?></b></td>
413
  <td style="line-height:18px">
414
  <a href="?page=duplicator-settings" target="_blank"><?php echo $dbbuild_mode ;?></a>
415
  <?php if ($mysqlcompat_on) :?>
416
  <br/>
417
  <small style="font-style:italic; color:maroon">
418
- <i class="fa fa-exclamation-circle"></i> <?php DUP_Util::_e('MySQL Compatibility Mode Enabled'); ?>
419
- <a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php DUP_Util::_e('details'); ?>]</a>
420
  </small>
421
  <?php endif;?>
422
  </td>
@@ -430,14 +430,14 @@ TOOL BAR: STEPS -->
430
  <div id="dup-scan-warning-continue">
431
  <div class="msg1">
432
  <input type="checkbox" id="dup-scan-warning-continue-checkbox" onclick="Duplicator.Pack.WarningContinue(this)"/>
433
- <label for="dup-scan-warning-continue-checkbox"><?php DUP_Util::_e('A warning status was detected, are you sure you want to continue?');?></label>
434
  </div>
435
  <div class="msg2">
436
  <label for="dup-scan-warning-continue-checkbox">
437
  <?php
438
- DUP_Util::_e("Scan checks are not required to pass, however they could cause issues on some systems.");
439
  echo '<br/>';
440
- DUP_Util::_e("Please review the details for each warning by clicking on the detail link.");
441
  ?>
442
  </label>
443
  </div>
@@ -449,22 +449,22 @@ TOOL BAR: STEPS -->
449
 
450
  <!-- ERROR MESSAGE -->
451
  <div id="dup-msg-error" style="display:none">
452
- <div class="dup-hdr-error"><i class="fa fa-exclamation-circle"></i> <?php DUP_Util::_e('Scan Error'); ?></div>
453
- <i><?php DUP_Util::_e('Please try again!'); ?></i><br/>
454
  <div style="text-align:left">
455
- <b><?php DUP_Util::_e("Server Status:"); ?></b> &nbsp;
456
  <div id="dup-msg-error-response-status" style="display:inline-block"></div><br/>
457
 
458
- <b><?php DUP_Util::_e("Error Message:"); ?></b>
459
  <div id="dup-msg-error-response-text"></div>
460
  </div>
461
  </div>
462
  </div> <!-- end #dup-progress-area -->
463
 
464
  <div class="dup-button-footer" style="display:none">
465
- <input type="button" value="&#9668; <?php DUP_Util::_e("Back") ?>" onclick="window.location.assign('?page=duplicator&tab=new1')" class="button button-large" />
466
- <input type="button" value="<?php DUP_Util::_e("Rescan") ?>" onclick="Duplicator.Pack.Rescan()" class="button button-large" />
467
- <input type="submit" value="<?php DUP_Util::_e("Build") ?> &#9658" class="button button-primary button-large" id="dup-build-button" />
468
  <!-- Used for iMacros testing do not remove -->
469
  <div id="dup-automation-imacros"></div>
470
  </div>
@@ -567,7 +567,7 @@ jQuery(document).ready(function($) {
567
  $('#data-db-tablecount').text(data.DB.TableCount || errMsg);
568
  //Table Details
569
  if (data.DB.TableList == undefined || data.DB.TableList.length == 0) {
570
- html = '<?php DUP_Util::_e("Unable to report on any tables") ?>';
571
  } else {
572
  $.each(data.DB.TableList, function(i) {
573
  html += '<b>' + i + '</b><br/>';
@@ -576,7 +576,7 @@ jQuery(document).ready(function($) {
576
  }
577
  $('#data-db-tablelist').append(html);
578
  } else {
579
- html = '<?php DUP_Util::_e("Unable to report on database stats") ?>';
580
  $('#dup-scan-db').html(html);
581
  }
582
 
@@ -597,26 +597,26 @@ jQuery(document).ready(function($) {
597
  //Dirs
598
  if (data.ARC.FilterInfo.Dirs.Warning !== undefined && data.ARC.FilterInfo.Dirs.Warning.length > 0) {
599
  $.each(data.ARC.FilterInfo.Dirs.Warning, function (key, val) {
600
- html += '<?php DUP_Util::_e("DIR") ?> ' + key + ':<br/>[' + val + ']<br/>';
601
  });
602
  }
603
  //Files
604
  if (data.ARC.FilterInfo.Files.Warning !== undefined && data.ARC.FilterInfo.Files.Warning.length > 0) {
605
  $.each(data.ARC.FilterInfo.Files.Warning, function (key, val) {
606
- html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>[' + val + ']<br/>';
607
  });
608
  }
609
- html = (html.length == 0) ? '<?php DUP_Util::_e("No name warning issues found.") ?>' : html;
610
 
611
 
612
  $('#data-arc-names-data').html(html);
613
 
614
  //Large Files
615
- html = '<?php DUP_Util::_e("No large files found.") ?>';
616
  if (data.ARC.FilterInfo.Files.Size !== undefined && data.ARC.FilterInfo.Files.Size.length > 0) {
617
  html = '';
618
  $.each(data.ARC.FilterInfo.Files.Size, function (key, val) {
619
- html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>' + val + '<br/>';
620
  });
621
  }
622
  $('#data-arc-big-data').html(html);
82
  <td style="white-space: nowrap">
83
  <div id="dup-wiz">
84
  <div id="dup-wiz-steps">
85
+ <div class="completed-step"><a><span>1</span> <?php _e('Setup', 'duplicator'); ?></a></div>
86
+ <div class="active-step"><a><span>2</span> <?php _e('Scan', 'duplicator'); ?> </a></div>
87
+ <div><a><span>3</span> <?php _e('Build', 'duplicator'); ?> </a></div>
88
  </div>
89
  <div id="dup-wiz-title">
90
+ <?php _e('Step 2: System Scan', 'duplicator'); ?>
91
  </div>
92
  </div>
93
  </td>
94
  <td class="dup-toolbar-btns">
95
+ <a id="dup-pro-create-new" href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php _e('All Packages', 'duplicator'); ?></a> &nbsp;
96
+ <span> <?php _e('Create New', 'duplicator'); ?></span>
97
  </td>
98
  </tr>
99
  </table>
104
  <div id="dup-progress-area">
105
  <!-- PROGRESS BAR -->
106
  <div id="dup-progress-bar-area">
107
+ <div class="dup-progress-title"><i class="fa fa-spinner fa-spin"></i> <?php _e('Scanning Site', 'duplicator'); ?></div>
108
  <div id="dup-progress-bar"></div>
109
+ <b><?php _e('Please Wait...', 'duplicator'); ?></b>
110
  </div>
111
 
112
  <!-- SUCCESS MESSAGE -->
113
  <div id="dup-msg-success" style="display:none">
114
  <div style="text-align:center">
115
+ <div class="dup-hdr-success"><i class="fa fa-check-square-o fa-lg"></i> <?php _e('Scan Complete', 'duplicator'); ?></div>
116
  <div id="dup-msg-success-subtitle">
117
+ <?php _e('Process Time:', 'duplicator'); ?> <span id="data-rpt-scantime"></span>
118
  </div>
119
  </div><br/>
120
 
123
  ================================================================ -->
124
  <div class="dup-panel">
125
  <div class="dup-panel-title">
126
+ <i class="fa fa-hdd-o"></i> <?php _e("Server", 'duplicator'); ?>
127
  <div style="float:right; margin:-1px 10px 0px 0px">
128
+ <small><a href="?page=duplicator-tools&tab=diagnostics" target="_blank"><?php _e('Diagnostics', 'duplicator');?></a></small>
129
  </div>
130
 
131
  </div>
134
  WEB SERVER -->
135
  <div>
136
  <div class='dup-scan-title'>
137
+ <a><?php _e('Web Server', 'duplicator');?></a> <div id="data-srv-web-all"></div>
138
  </div>
139
  <div class='dup-scan-info dup-info-box'>
140
  <?php
141
  $web_servers = implode(', ', $GLOBALS['DUPLICATOR_SERVER_LIST']);
142
+ echo '<span id="data-srv-web-model"></span>&nbsp;<b>' . __('Web Server', 'duplicator') . ":</b>&nbsp; '{$_SERVER['SERVER_SOFTWARE']}'";
143
  echo '<small>';
144
+ _e("Supported web servers:", 'duplicator');
145
  echo "{$web_servers}";
146
  echo '</small>';
147
  ?>
151
  PHP SETTINGS -->
152
  <div>
153
  <div class='dup-scan-title'>
154
+ <a><?php _e('PHP Setup', 'duplicator');?></a> <div id="data-srv-php-all"></div>
155
  </div>
156
  <div class='dup-scan-info dup-info-box'>
157
  <?php
158
  //OPEN_BASEDIR
159
  $test = ini_get("open_basedir");
160
+ echo '<span id="data-srv-php-openbase"></span>&nbsp;<b>' . __('Open Base Dir', 'duplicator') . ":</b>&nbsp; '{$test}' <br/>";
161
  echo '<small>';
162
+ _e('Issues might occur when [open_basedir] is enabled. Work with your server admin to disable this value in the php.ini file if you’re having issues building a package.', 'duplicator');
163
+ echo "&nbsp;<i><a href='http://www.php.net/manual/en/ini.core.php#ini.open-basedir' target='_blank'>[" . __('details', 'duplicator') . "]</a></i><br/>";
164
  echo '</small>';
165
 
166
  //MAX_EXECUTION_TIME
167
  $test = (set_time_limit(0)) ? 0 : ini_get("max_execution_time");
168
+ echo '<hr size="1" /><span id="data-srv-php-maxtime"></span>&nbsp;<b>' . __('Max Execution Time', 'duplicator') . ":</b>&nbsp; '{$test}' <br/>";
169
  echo '<small>';
170
+ printf(__('Issues might occur for larger packages when the [max_execution_time] value in the php.ini is too low. The minimum recommended timeout is "%1$s" seconds or higher. An attempt is made to override this value if the server allows it. A value of 0 (recommended) indicates that PHP has no time limits.', 'duplicator'), DUPLICATOR_SCAN_TIMEOUT);
171
  echo '<br/><br/>';
172
+ _e('Note: Timeouts can also be set at the web server layer, so if the PHP max timeout passes and you still see a build interrupt messages, then your web server could be killing the process. If you are limited on processing time, consider using the database or file filters to shrink the size of your overall package. However use caution as excluding the wrong resources can cause your install to not work properly.', 'duplicator');
173
+ echo "&nbsp;<i><a href='http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time' target='_blank'>[" . __('details', 'duplicator') . "]</a></i>";
174
 
175
  if ($zip_check != null) {
176
  echo '<br/><br/>';
177
  echo '<span style="font-weight:bold">';
178
+ _e('Get faster builds with Duplicator Pro.', 'duplicator');
179
  echo '</span>';
180
+ echo "&nbsp;<i><a href='http://snapcreek.com/duplicator?free-max-execution-time-warn' target='_blank'>[" . __('details', 'duplicator') . "]</a></i>";
181
  }
182
 
183
  echo '</small>';
184
 
185
  //MYSQLI
186
+ echo '<hr size="1" /><span id="data-srv-php-mysqli"></span>&nbsp;<b>' . __('MySQLi', 'duplicator') . "</b> <br/>";
187
  echo '<small>';
188
+ _e('Creating the package does not require the mysqli module. However the installer.php file requires that the PHP module mysqli be installed on the server it is deployed on.', 'duplicator');
189
+ echo "&nbsp;<i><a href='http://php.net/manual/en/mysqli.installation.php' target='_blank'>[" . __('details', 'duplicator') . "]</a></i>";
190
  echo '</small>';
191
  ?>
192
  </div>
195
  WORDPRESS SETTINGS -->
196
  <div>
197
  <div class='dup-scan-title'>
198
+ <a><?php _e('WordPress', 'duplicator');?></a> <div id="data-srv-wp-all"></div>
199
  </div>
200
  <div class='dup-scan-info dup-info-box'>
201
  <?php
202
  //VERSION CHECK
203
+ echo '<span id="data-srv-wp-version"></span>&nbsp;<b>' . __('WordPress Version', 'duplicator') . ":</b>&nbsp; '{$wp_version}' <br/>";
204
  echo '<small>';
205
+ printf(__('It is recommended to have a version of WordPress that is greater than %1$s', 'duplicator'), DUPLICATOR_SCAN_MIN_WP);
206
  echo '</small>';
207
 
208
  //CORE FILES
209
+ echo '<hr size="1" /><span id="data-srv-wp-core"></span>&nbsp;<b>' . __('Core Files', 'duplicator') . "</b> <br/>";
210
  echo '<small>';
211
+ _e("If the scanner is unable to locate the wp-config.php file in the root directory, then you will need to manually copy it to its new location.", 'duplicator');
212
  echo '</small>';
213
 
214
  //CACHE DIR
215
  $cache_path = $cache_path = DUP_Util::SafePath(WP_CONTENT_DIR) . '/cache';
216
  $cache_size = DUP_Util::ByteSize(DUP_Util::GetDirectorySize($cache_path));
217
+ echo '<hr size="1" /><span id="data-srv-wp-cache"></span>&nbsp;<b>' . __('Cache Path', 'duplicator') . ":</b>&nbsp; '{$cache_path}' ({$cache_size}) <br/>";
218
  echo '<small>';
219
+ _e("Cached data will lead to issues at install time and increases your archive size. It is recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you have a cache plugin review the documentation for how to empty it; simply removing files might cause errors on your site. The cache size minimum threshold is currently set at ", 'duplicator');
220
  echo DUP_Util::ByteSize(DUPLICATOR_SCAN_CACHESIZE) . '.';
221
  echo '</small>';
222
 
226
  </div><!-- end .dup-panel -->
227
  </div><!-- end .dup-panel-panel -->
228
 
229
+ <h2 style="font-size:18px; font-weight:bold; margin:-15px 0 0 10px"><i class="fa fa-file-archive-o"></i>&nbsp;<?php _e('Archive', 'duplicator');?> </h2>
230
 
231
  <!-- ================================================================
232
  FILES
234
  <div class="dup-panel">
235
  <div class="dup-panel-title">
236
  <i class="fa fa-files-o"></i>
237
+ <?php _e("Files", 'duplicator'); ?>
238
  <div id="data-arc-size1"></div>
239
  <div class="dup-scan-filter-status">
240
  <?php
241
  if ($Package->Archive->FilterOn) {
242
+ echo '<i class="fa fa-filter"></i> '; _e('Enabled', 'duplicator');
243
  }
244
  ?>
245
  </div>
250
  TOTAL SIZE -->
251
  <div>
252
  <div class='dup-scan-title'>
253
+ <a><?php _e('Total Size', 'duplicator');?></a> <div id="data-arc-status-size"></div>
254
  </div>
255
  <div class='dup-scan-info dup-info-box'>
256
+ <b><?php _e('Size', 'duplicator');?>:</b> <span id="data-arc-size2"></span> &nbsp; | &nbsp;
257
+ <b><?php _e('File Count', 'duplicator');?>:</b> <span id="data-arc-files"></span> &nbsp; | &nbsp;
258
+ <b><?php _e('Directory Count', 'duplicator');?>:</b> <span id="data-arc-dirs"></span>
259
  <small>
260
  <?php
261
+ printf(__('Total size represents all files minus any filters that have been setup. The current thresholds that triggers a warning is %1$s for the total size. Some budget hosts limit the amount of time a PHP/Web request process can run. When working with larger sites this can cause timeout issues. Consider using a file filter in step 1 to shrink and filter the overall size of your package.', 'duplicator'),
262
  DUP_Util::ByteSize(DUPLICATOR_SCAN_SITE),
263
  DUP_Util::ByteSize(DUPLICATOR_SCAN_WARNFILESIZE));
264
 
265
  if ($zip_check != null) {
266
  echo '<br/><br/>';
267
  echo '<span style="font-weight:bold">';
268
+ _e('Package support up to 2GB available in Duplicator Pro.', 'duplicator');
269
  echo '</span>';
270
+ echo "&nbsp;<i><a href='http://snapcreek.com/duplicator?free-size-warn' target='_blank'>[" . __('details', 'duplicator') . "]</a></i>";
271
  }
272
 
273
  ?>
279
  FILE NAME LENGTHS -->
280
  <div>
281
  <div class='dup-scan-title'>
282
+ <a><?php _e('Name Checks', 'duplicator');?></a> <div id="data-arc-status-names"></div>
283
  </div>
284
  <div class='dup-scan-info dup-info-box'>
285
  <small>
286
  <?php
287
+ _e('File or directory names may cause issues when working across different environments and servers. Names that are over 250 characters, contain special characters (such as * ? > < : / \ |) or are unicode might cause issues in a remote enviroment. It is recommended to remove or filter these files before building the archive if you have issues at install time.', 'duplicator');
288
  ?>
289
  </small><br/>
290
+ <a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php _e('Show Paths', 'duplicator');?>]</a>
291
  <div id="data-arc-names-data"></div>
292
  </div>
293
  </div>
296
  LARGE FILES -->
297
  <div>
298
  <div class='dup-scan-title'>
299
+ <a><?php _e('Large Files', 'duplicator');?></a> <div id="data-arc-status-big"></div>
300
  </div>
301
  <div class='dup-scan-info dup-info-box'>
302
  <small>
303
  <?php
304
+ printf(__('Large files such as movies or other backuped data can cause issues with timeouts. The current check for large files is %1$s per file. If your having issues creating a package consider excluding these files with the files filter and manually moving them to your new location.', 'duplicator'),
305
  DUP_Util::ByteSize(DUPLICATOR_SCAN_WARNFILESIZE));
306
  ?>
307
  </small><br/>
308
+ <a href="javascript:void(0)" onclick="jQuery('#data-arc-big-data').toggle()">[<?php _e('Show Paths', 'duplicator');?>]</a>
309
  <div id="data-arc-big-data"></div>
310
  </div>
311
  </div>
315
  <?php if ($Package->Archive->FilterOn) : ?>
316
  <div>
317
  <div class='dup-scan-title'>
318
+ <a style='font-weight: normal'><?php _e('Archive Details', 'duplicator');?></a>
319
  </div>
320
  <div class='dup-scan-info dup-info-box'>
321
+ <b>[<?php _e('Root Directory', 'duplicator');?>]</b><br/>
322
  <?php echo DUPLICATOR_WPROOTPATH;?>
323
  <br/><br/>
324
 
325
+ <b>[<?php _e('Excluded Directories', 'duplicator');?>]</b><br/>
326
  <?php
327
  if (strlen( $Package->Archive->FilterDirs)) {
328
  echo str_replace(";", "<br/>", $Package->Archive->FilterDirs);
329
  } else {
330
+ _e('No directory filters have been set.', 'duplicator');
331
  }
332
  ?>
333
  <br/>
334
 
335
+ <b>[<?php _e('Excluded File Extensions', 'duplicator');?>]</b><br/>
336
  <?php
337
  if (strlen( $Package->Archive->FilterExts)) {
338
  echo $Package->Archive->FilterExts;
339
  } else {
340
+ _e('No file extension filters have been set.', 'duplicator');
341
  }
342
  ?>
343
  <small>
344
  <?php
345
+ _e('The root directory is where Duplicator starts archiving files. The excluded sections will be skipped during the archive process. ', 'duplicator');
346
+ _e('All results are stored in a json file. ', 'duplicator');
347
  ?>
348
+ <a href="<?php echo DUPLICATOR_SITE_URL ?>/wp-admin/admin-ajax.php?action=duplicator_package_scan" target="dup_report"><?php _e('[view json report]', 'duplicator');?></a>
349
  </small><br/>
350
  </div>
351
  </div>
358
  ================================================================ -->
359
  <div class="dup-panel-title">
360
  <i class="fa fa-table"></i>
361
+ <?php _e("Database", 'duplicator'); ?>
362
  <div id="data-db-size1"></div>
363
  <div class="dup-scan-filter-status">
364
  <?php
365
  if ($Package->Database->FilterOn) {
366
+ echo '<i class="fa fa-filter"></i> '; _e('Enabled', 'duplicator');
367
  }
368
  ?>
369
  </div>
374
  TOTAL SIZE -->
375
  <div>
376
  <div class='dup-scan-title'>
377
+ <a><?php _e('Total Size', 'duplicator');?></a>
378
  <div id="data-db-status-size1"></div>
379
  </div>
380
  <div class='dup-scan-info dup-info-box'>
381
+ <b><?php _e('Tables', 'duplicator');?>:</b> <span id="data-db-tablecount"></span> &nbsp; | &nbsp;
382
+ <b><?php _e('Records', 'duplicator');?>:</b> <span id="data-db-rows"></span> &nbsp; | &nbsp;
383
+ <b><?php _e('Size', 'duplicator');?>:</b> <span id="data-db-size2"></span> <br/><br/>
384
  <?php
385
+ $lnk = '<a href="maint/repair.php" target="_blank">' . __('repair and optimization', 'duplicator') . '</a>';
386
+ printf(__('Total size and row count for all database tables are approximate values. The thresholds that trigger warnings are %1$s and %2$s records. Large databases take time to process and can cause issues with server timeout and memory settings. Running a %3$s on your database can also help improve the overall size and performance. If your server supports shell_exec and mysqldump you can try to enable this option from the settings menu.', 'duplicator'),
387
  DUP_Util::ByteSize(DUPLICATOR_SCAN_DBSIZE),
388
  number_format(DUPLICATOR_SCAN_DBROWS),
389
  $lnk);
395
  TABLE DETAILS -->
396
  <div>
397
  <div class='dup-scan-title'>
398
+ <a><?php _e('Table Details', 'duplicator');?></a>
399
  <div id="data-db-status-size2"></div>
400
  </div>
401
  <div class='dup-scan-info dup-info-box'>
406
  </div>
407
 
408
  <table id="dup-scan-db-details">
409
+ <tr><td><b><?php _e('Name:', 'duplicator');?></b></td><td><?php echo DB_NAME ;?> </td></tr>
410
+ <tr><td><b><?php _e('Host:', 'duplicator');?></b></td><td><?php echo DB_HOST ;?> </td></tr>
411
  <tr>
412
+ <td style="vertical-align: top"><b><?php _e('Build Mode:', 'duplicator');?></b></td>
413
  <td style="line-height:18px">
414
  <a href="?page=duplicator-settings" target="_blank"><?php echo $dbbuild_mode ;?></a>
415
  <?php if ($mysqlcompat_on) :?>
416
  <br/>
417
  <small style="font-style:italic; color:maroon">
418
+ <i class="fa fa-exclamation-circle"></i> <?php _e('MySQL Compatibility Mode Enabled', 'duplicator'); ?>
419
+ <a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php _e('details', 'duplicator'); ?>]</a>
420
  </small>
421
  <?php endif;?>
422
  </td>
430
  <div id="dup-scan-warning-continue">
431
  <div class="msg1">
432
  <input type="checkbox" id="dup-scan-warning-continue-checkbox" onclick="Duplicator.Pack.WarningContinue(this)"/>
433
+ <label for="dup-scan-warning-continue-checkbox"><?php _e('A warning status was detected, are you sure you want to continue?', 'duplicator');?></label>
434
  </div>
435
  <div class="msg2">
436
  <label for="dup-scan-warning-continue-checkbox">
437
  <?php
438
+ _e("Scan checks are not required to pass, however they could cause issues on some systems.", 'duplicator');
439
  echo '<br/>';
440
+ _e("Please review the details for each warning by clicking on the detail link.", 'duplicator');
441
  ?>
442
  </label>
443
  </div>
449
 
450
  <!-- ERROR MESSAGE -->
451
  <div id="dup-msg-error" style="display:none">
452
+ <div class="dup-hdr-error"><i class="fa fa-exclamation-circle"></i> <?php _e('Scan Error', 'duplicator'); ?></div>
453
+ <i><?php _e('Please try again!', 'duplicator'); ?></i><br/>
454
  <div style="text-align:left">
455
+ <b><?php _e("Server Status:", 'duplicator'); ?></b> &nbsp;
456
  <div id="dup-msg-error-response-status" style="display:inline-block"></div><br/>
457
 
458
+ <b><?php _e("Error Message:", 'duplicator'); ?></b>
459
  <div id="dup-msg-error-response-text"></div>
460
  </div>
461
  </div>
462
  </div> <!-- end #dup-progress-area -->
463
 
464
  <div class="dup-button-footer" style="display:none">
465
+ <input type="button" value="&#9668; <?php _e("Back", 'duplicator') ?>" onclick="window.location.assign('?page=duplicator&tab=new1')" class="button button-large" />
466
+ <input type="button" value="<?php _e("Rescan", 'duplicator') ?>" onclick="Duplicator.Pack.Rescan()" class="button button-large" />
467
+ <input type="submit" value="<?php _e("Build", 'duplicator') ?> &#9658" class="button button-primary button-large" id="dup-build-button" />
468
  <!-- Used for iMacros testing do not remove -->
469
  <div id="dup-automation-imacros"></div>
470
  </div>
567
  $('#data-db-tablecount').text(data.DB.TableCount || errMsg);
568
  //Table Details
569
  if (data.DB.TableList == undefined || data.DB.TableList.length == 0) {
570
+ html = '<?php _e("Unable to report on any tables", 'duplicator') ?>';
571
  } else {
572
  $.each(data.DB.TableList, function(i) {
573
  html += '<b>' + i + '</b><br/>';
576
  }
577
  $('#data-db-tablelist').append(html);
578
  } else {
579
+ html = '<?php _e("Unable to report on database stats", 'duplicator') ?>';
580
  $('#dup-scan-db').html(html);
581
  }
582
 
597
  //Dirs
598
  if (data.ARC.FilterInfo.Dirs.Warning !== undefined && data.ARC.FilterInfo.Dirs.Warning.length > 0) {
599
  $.each(data.ARC.FilterInfo.Dirs.Warning, function (key, val) {
600
+ html += '<?php _e("DIR", 'duplicator') ?> ' + key + ':<br/>[' + val + ']<br/>';
601
  });
602
  }
603
  //Files
604
  if (data.ARC.FilterInfo.Files.Warning !== undefined && data.ARC.FilterInfo.Files.Warning.length > 0) {
605
  $.each(data.ARC.FilterInfo.Files.Warning, function (key, val) {
606
+ html += '<?php _e("FILE", 'duplicator') ?> ' + key + ':<br/>[' + val + ']<br/>';
607
  });
608
  }
609
+ html = (html.length == 0) ? '<?php _e("No name warning issues found.", 'duplicator') ?>' : html;
610
 
611
 
612
  $('#data-arc-names-data').html(html);
613
 
614
  //Large Files
615
+ html = '<?php _e("No large files found.", 'duplicator') ?>';
616
  if (data.ARC.FilterInfo.Files.Size !== undefined && data.ARC.FilterInfo.Files.Size.length > 0) {
617
  html = '';
618
  $.each(data.ARC.FilterInfo.Files.Size, function (key, val) {
619
+ html += '<?php _e("FILE", 'duplicator') ?> ' + key + ':<br/>' + val + '<br/>';
620
  });
621
  }
622
  $('#data-arc-big-data').html(html);
views/packages/main/packages.php CHANGED
@@ -150,7 +150,7 @@ TOOL-BAR -->
150
  <button id="<?php echo "{$uniqueid}_archive.zip" ?>" class="button no-select" onclick="Duplicator.Pack.DownloadFile('<?php echo $packagepath; ?>', this); return false;">
151
  <i class="fa fa-file-archive-o"></i> <?php _e("Archive", 'duplicator') ?>
152
  </button>
153
- <button type="button" class="button no-select" title="<?php DUP_Util::_e("Package Details") ?>" onclick="Duplicator.Pack.OpenPackageDetails(<?php echo "{$row['id']}"; ?>);">
154
  <i class="fa fa-archive" ></i>
155
  </button>
156
  </td>
@@ -179,7 +179,7 @@ TOOL-BAR -->
179
  <i class="fa fa-exclamation-triangle"></i>
180
  <a href="<?php echo $error_url; ?>"><?php _e("Error Processing", 'duplicator') ?></a>
181
  </span>
182
- <a class="button no-select" title="<?php DUP_Util::_e("Package Details") ?>" href="<?php echo $error_url; ?>">
183
  <i class="fa fa-archive"></i>
184
  </a>
185
  </td>
150
  <button id="<?php echo "{$uniqueid}_archive.zip" ?>" class="button no-select" onclick="Duplicator.Pack.DownloadFile('<?php echo $packagepath; ?>', this); return false;">
151
  <i class="fa fa-file-archive-o"></i> <?php _e("Archive", 'duplicator') ?>
152
  </button>
153
+ <button type="button" class="button no-select" title="<?php _e("Package Details", 'duplicator') ?>" onclick="Duplicator.Pack.OpenPackageDetails(<?php echo "{$row['id']}"; ?>);">
154
  <i class="fa fa-archive" ></i>
155
  </button>
156
  </td>
179
  <i class="fa fa-exclamation-triangle"></i>
180
  <a href="<?php echo $error_url; ?>"><?php _e("Error Processing", 'duplicator') ?></a>
181
  </span>
182
+ <a class="button no-select" title="<?php _e("Package Details", 'duplicator') ?>" href="<?php echo $error_url; ?>">
183
  <i class="fa fa-archive"></i>
184
  </a>
185
  </td>
views/tools/cleanup.php CHANGED
@@ -17,8 +17,9 @@
17
  }
18
  }
19
 
20
- $txt_found = DUP_Util::__("File Found");
21
- $txt_not_found = DUP_Util::__("File Removed");
 
22
  $installer_files = DUP_Server::GetInstallerFiles();
23
 
24
  switch ($_GET['action']) {
@@ -87,8 +88,8 @@
87
  ?>
88
 
89
  <i><br/>
90
- <?php DUP_Util::_e('If the installer files did not successfully get removed, then you WILL need to remove them manually')?>. <br/>
91
- <?php DUP_Util::_e('Please remove all installer files to avoid leaving open security issues on your server')?>. <br/><br/>
92
  </i>
93
 
94
  <?php endif; ?>
@@ -96,23 +97,23 @@
96
  <?php endif; ?>
97
 
98
 
99
- <h2><?php DUP_Util::_e('Data Cleanup')?><hr size="1"/></h2>
100
  <table class="dup-reset-opts">
101
  <tr style="vertical-align:text-top">
102
  <td>
103
  <a class="button button-small dup-fixed-btn" href="?page=duplicator-tools&tab=cleanup&action=installer&_wpnonce=<?php echo $nonce; ?>">
104
- <?php DUP_Util::_e("Delete Reserved Files"); ?>
105
  </a>
106
  </td>
107
  <td>
108
- <?php DUP_Util::_e("Removes all reserved installer files."); ?>
109
- <a href="javascript:void(0)" onclick="jQuery('#dup-tools-delete-moreinfo').toggle()">[<?php DUP_Util::_e("more info"); ?>]</a>
110
  <br/>
111
  <div id="dup-tools-delete-moreinfo">
112
  <?php
113
- DUP_Util::_e("Clicking on the 'Delete Reserved Files' button will remove the following reserved files. These files are typically from a previous Duplicator install. "
114
  . "If you are unsure of the source, please validate the files. These files should never be left on production systems for security reasons. "
115
- . "Below is a list of all the reserved files used by Duplicator. Please be sure these are removed from your server.");
116
  echo "<br/><br/>";
117
 
118
  foreach($installer_files as $file => $path)
@@ -126,12 +127,12 @@
126
  </td>
127
  </tr>
128
  <tr>
129
- <td><a class="button button-small dup-fixed-btn" href="javascript:void(0)" onclick="Duplicator.Tools.DeleteLegacy()"><?php DUP_Util::_e("Delete Legacy Data"); ?></a></td>
130
- <td><?php DUP_Util::_e("Removes all legacy data and settings prior to version"); ?> [<?php echo DUPLICATOR_VERSION ?>].</td>
131
  </tr>
132
  <tr>
133
- <td><a class="button button-small dup-fixed-btn" href="javascript:void(0)" onclick="Duplicator.Tools.ClearBuildCache()"><?php DUP_Util::_e("Clear Build Cache"); ?></a></td>
134
- <td><?php DUP_Util::_e("Removes all build data from:"); ?> [<?php echo DUPLICATOR_SSDIR_PATH_TMP ?>].</td>
135
  </tr>
136
  </table>
137
  </form>
17
  }
18
  }
19
 
20
+
21
+ $txt_found = __('File Found', 'duplicator');
22
+ $txt_not_found = __('File Removed', 'duplicator');
23
  $installer_files = DUP_Server::GetInstallerFiles();
24
 
25
  switch ($_GET['action']) {
88
  ?>
89
 
90
  <i><br/>
91
+ <?php _e('If the installer files did not successfully get removed, then you WILL need to remove them manually', 'duplicator')?>. <br/>
92
+ <?php _e('Please remove all installer files to avoid leaving open security issues on your server', 'duplicator')?>. <br/><br/>
93
  </i>
94
 
95
  <?php endif; ?>
97
  <?php endif; ?>
98
 
99
 
100
+ <h2><?php _e('Data Cleanup', 'duplicator')?><hr size="1"/></h2>
101
  <table class="dup-reset-opts">
102
  <tr style="vertical-align:text-top">
103
  <td>
104
  <a class="button button-small dup-fixed-btn" href="?page=duplicator-tools&tab=cleanup&action=installer&_wpnonce=<?php echo $nonce; ?>">
105
+ <?php _e("Delete Reserved Files", 'duplicator'); ?>
106
  </a>
107
  </td>
108
  <td>
109
+ <?php _e("Removes all reserved installer files.", 'duplicator'); ?>
110
+ <a href="javascript:void(0)" onclick="jQuery('#dup-tools-delete-moreinfo').toggle()">[<?php _e("more info", 'duplicator'); ?>]</a>
111
  <br/>
112
  <div id="dup-tools-delete-moreinfo">
113
  <?php
114
+ _e("Clicking on the 'Delete Reserved Files' button will remove the following reserved files. These files are typically from a previous Duplicator install. "
115
  . "If you are unsure of the source, please validate the files. These files should never be left on production systems for security reasons. "
116
+ . "Below is a list of all the reserved files used by Duplicator. Please be sure these are removed from your server.", 'duplicator');
117
  echo "<br/><br/>";
118
 
119
  foreach($installer_files as $file => $path)
127
  </td>
128
  </tr>
129
  <tr>
130
+ <td><a class="button button-small dup-fixed-btn" href="javascript:void(0)" onclick="Duplicator.Tools.DeleteLegacy()"><?php _e("Delete Legacy Data", 'duplicator'); ?></a></td>
131
+ <td><?php _e("Removes all legacy data and settings prior to version", 'duplicator'); ?> [<?php echo DUPLICATOR_VERSION ?>].</td>
132
  </tr>
133
  <tr>
134
+ <td><a class="button button-small dup-fixed-btn" href="javascript:void(0)" onclick="Duplicator.Tools.ClearBuildCache()"><?php _e("Clear Build Cache", 'duplicator'); ?></a></td>
135
+ <td><?php _e("Removes all build data from:", 'duplicator'); ?> [<?php echo DUPLICATOR_SSDIR_PATH_TMP ?>].</td>
136
  </tr>
137
  </table>
138
  </form>