Duplicator – WordPress Migration Plugin - Version 0.5.24

Version Description

Download this release

Release Info

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

Code changes from version 0.5.22 to 0.5.24

classes/package.archive.php CHANGED
@@ -3,56 +3,112 @@ if ( ! defined( 'DUPLICATOR_VERSION' ) ) exit; // Exit if accessed directly
3
 
4
  require_once (DUPLICATOR_PLUGIN_PATH . 'classes/package.archive.zip.php');
5
 
6
- class DUP_Archive {
 
 
 
 
 
 
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  //PUBLIC
9
  public $FilterDirs;
10
  public $FilterExts;
 
 
11
  public $FilterOn;
12
  public $File;
13
  public $Format;
14
  public $PackDir;
15
  public $Size = 0;
16
- public $WarnFileSize = array();
17
- public $WarnFileName = array();
18
  public $Dirs = array();
19
  public $Files = array();
20
- public $Links = array();
21
- public $OmitDirs = array();
22
- public $OmitFiles = array();
23
 
24
  //PROTECTED
25
  protected $Package;
26
 
27
- //PRIVATE
28
- private $filterDirsArray = array();
29
- private $filterExtsArray = array();
30
-
31
-
32
- public function __construct($package) {
33
  $this->Package = $package;
34
  $this->FilterOn = false;
 
35
  }
36
 
37
- public function Build($package) {
38
- try {
39
-
 
40
  $this->Package = $package;
41
-
42
  if (!isset($this->PackDir) && ! is_dir($this->PackDir)) throw new Exception("The 'PackDir' property must be a valid diretory.");
43
  if (!isset($this->File)) throw new Exception("A 'File' property must be set.");
44
 
45
  $this->Package->SetStatus(DUP_PackageStatus::ARCSTART);
46
- switch ($this->Format) {
 
47
  case 'TAR': break;
48
  case 'TAR-GZIP': break;
49
  default:
50
- if (class_exists(ZipArchive)) {
 
51
  $this->Format = 'ZIP';
52
  DUP_Zip::Create($this);
53
- } else {
54
- //TODO:PECL and SHELL FORMATS
55
- }
56
  break;
57
  }
58
 
@@ -60,66 +116,86 @@ class DUP_Archive {
60
  $this->Size = @filesize($storePath);
61
  $this->Package->SetStatus(DUP_PackageStatus::ARCDONE);
62
 
63
- } catch (Exception $e) {
 
 
64
  echo 'Caught exception: ', $e->getMessage(), "\n";
65
  }
66
  }
67
 
68
- public function GetFilterDirAsArray() {
 
69
  return array_map('DUP_Util::SafePath', explode(";", $this->FilterDirs, -1));
70
  }
71
 
72
- public function GetFilterExtsAsArray() {
 
73
  return explode(";", $this->FilterExts, -1);
74
  }
75
 
76
  /**
77
- * DIRSTATS
78
  * Get the directory size recursively, but don't calc the snapshot directory, exclusion diretories
79
- * @param string $directory The directory to calculate
80
- * @returns array An array of values for the directory stats
81
  * @link http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx Windows filename restrictions
82
  */
83
- public function Stats() {
84
-
85
- $this->filterDirsArray = array();
86
- $this->filterExtsArray = array();
87
- if ($this->FilterOn) {
88
- $this->filterDirsArray = $this->GetFilterDirAsArray();
89
- $this->filterExtsArray = $this->GetFilterExtsAsArray();
90
- }
91
-
92
  $this->getDirs();
93
  $this->getFiles();
94
  return $this;
95
  }
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  //Get All Directories then filter
98
- //SPL classes in dirsToArray_New are buggy on some PHP versions
99
- //Add back into code base once PHP 5.3.0 is minimum requirment
100
- private function getDirs() {
101
 
102
  $rootPath = DUP_Util::SafePath(rtrim(DUPLICATOR_WPROOTPATH, '//' ));
103
- array_push($this->filterDirsArray, DUPLICATOR_SSDIR_PATH);
104
 
105
  //If the root directory is a filter then we will only need the root files
106
- if (in_array($this->PackDir, $this->filterDirsArray)) {
107
- $this->Dirs = $this->PackDir;
108
- } else {
109
- $this->Dirs = (DUPLICATOR_SCAN_USELEGACY)
110
- ? $this->dirsToArray_Legacy($rootPath)
111
- : $this->dirsToArray_New($rootPath);
112
- array_push($this->Dirs, $this->PackDir);
113
- }
 
114
 
115
  //Filter Directories
116
  //Invalid test contains checks for: characters over 250, invlaid characters,
117
  //empty string and directories ending with period (Windows incompatable)
118
- foreach ($this->Dirs as $key => $val) {
 
119
  //Remove path filter directories
120
- foreach($this->filterDirsArray as $item) {
121
- if (strstr($val, $item . '/') || $val == $item) {
122
- $this->OmitDirs[] = $val;
 
123
  unset($this->Dirs[$key]);
124
  continue 2;
125
  }
@@ -132,85 +208,98 @@ class DUP_Archive {
132
  || trim($name) == ""
133
  || (strrpos($name, '.') == strlen($name) - 1 && substr($name, -1) == '.');
134
 
135
- if ($invalid_test) {
136
- $this->WarnFileName[] = $val;
137
- $this->OmitDirs[] = $val;
138
  }
 
 
 
 
 
 
 
 
139
  }
140
  }
141
 
142
  //Get all files and filter out error prone subsets
143
- private function getFiles() {
144
- foreach ($this->Dirs as $key => $val) {
 
 
145
  $files = DUP_Util::ListFiles($val);
146
- foreach ($files as $filePath) {
 
147
  $fileName = basename($filePath);
148
- $valid = true;
149
- if (!is_dir($filePath)){
150
- if (!in_array(@pathinfo($filePath, PATHINFO_EXTENSION), $this->filterExtsArray) && is_readable($filePath)) {
 
 
 
 
 
 
 
 
151
  $fileSize = @filesize($filePath);
152
  $fileSize = empty($fileSize) ? 0 : $fileSize;
153
- if (strlen($filePath) > 250 || preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $fileName)|| trim($fileName) == "") {
154
- array_push($this->WarnFileName, $filePath);
155
- $valid = false;
 
 
 
 
156
  }
157
- if ($fileSize > DUPLICATOR_SCAN_WARNFILESIZE) {
158
- array_push($this->WarnFileSize, $filePath . ' [' . DUP_Util::ByteSize($fileSize) . ']');
159
- }
160
- if ($valid) {
161
  $this->Size += $fileSize;
162
  $this->Files[] = $filePath;
163
- }
164
- else {
165
- $this->OmitFiles[] = $filePath;
166
  }
167
- } else {
168
- $this->OmitFiles[] = $filePath;
 
 
 
169
  }
170
  }
171
  }
172
  }
173
  }
174
 
175
- //Recursive function to get all Directories in a wp install
176
- //Older PHP logic which shows to be more stable on older version of PHP
177
- private function dirsToArray_Legacy($path) {
 
 
 
 
 
 
 
 
178
  $items = array();
179
- $handle = opendir($path);
180
- if ($handle) {
181
- while (($file = readdir($handle)) !== false ) {
182
- if ($file != "." && $file != "..") {
183
- $fullPath = DUP_Util::SafePath($path. "/" . $file);
184
- if (is_dir($fullPath)) {
185
- $items = array_merge($items, $this->dirsToArray_Legacy($fullPath));
186
- $items[] = $fullPath;
187
- }
188
- }
189
- }
190
- closedir($handle);
191
- }
192
- return $items;
 
 
 
 
193
  }
194
 
195
- //Recursive function to get all Directories in a wp install
196
- //Must use iterator_to_array in order to avoid the error 'too many files open' for recursion
197
- //Notes: $file->getExtension() is not reliable as it silently fails at least in php 5.2.17
198
- //when a file has a permission such as 705 falling back to pathinfo is more stable
199
- private function dirsToArray_New($path) {
200
- $iterator = new RecursiveIteratorIterator(
201
- new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::SKIP_DOTS),
202
- RecursiveIteratorIterator::SELF_FIRST,
203
- RecursiveIteratorIterator::CATCH_GET_CHILD // Ignore "Permission denied"
204
- );
205
- $files = iterator_to_array($iterator);
206
- $items = array();
207
- foreach ($files as $file) {
208
- if ($file->isDir()) {
209
- $items[] = DUP_Util::SafePath($file->getRealPath());
210
- }
211
- }
212
- return $items;
213
- }
214
-
215
  }
216
  ?>
3
 
4
  require_once (DUPLICATOR_PLUGIN_PATH . 'classes/package.archive.zip.php');
5
 
6
+ /**
7
+ * The base class for all filter types Directories/Files/Extentions
8
+ */
9
+ class DUP_Archive_Filter_Scope_Base
10
+ {
11
+ //All internal storage items that duplicator decides to filter
12
+ public $Core = array();
13
 
14
+ //Items when creating a package or template that a user decides to filter
15
+ public $Instance = array();
16
+ }
17
+
18
+ /**
19
+ * The filter types that belong to directories
20
+ */
21
+ class DUP_Archive_Filter_Scope_Directory extends DUP_Archive_Filter_Scope_Base
22
+ {
23
+ //Items that are not readable
24
+ public $Warning = array();
25
+
26
+ //Items that are not readable
27
+ public $Unreadable = array();
28
+ }
29
+
30
+ /**
31
+ * The filter types that belong to files
32
+ */
33
+ class DUP_Archive_Filter_Scope_File extends DUP_Archive_Filter_Scope_Directory
34
+ {
35
+ //Items that are too large
36
+ public $Size = array();
37
+ }
38
+
39
+ /**
40
+ * The filter information object which store all information about the filtered
41
+ * data that is gathered to the execution of a scan process
42
+ */
43
+ class DUP_Archive_Filter_Info
44
+ {
45
+ //Contains all folder filter info
46
+ public $Dirs = array();
47
+
48
+ //Contains all file filter info
49
+ public $Files = array();
50
+
51
+ //Contains all extensions filter info
52
+ public $Exts = array();
53
+
54
+ public $UDirCount = 0;
55
+ public $UFileCount = 0;
56
+ public $UExtCount = 0;
57
+
58
+ public function __construct()
59
+ {
60
+ $this->Dirs = new DUP_Archive_Filter_Scope_Directory();
61
+ $this->Files = new DUP_Archive_Filter_Scope_File();
62
+ $this->Exts = new DUP_Archive_Filter_Scope_Base();
63
+ }
64
+ }
65
+
66
+
67
+ class DUP_Archive
68
+ {
69
  //PUBLIC
70
  public $FilterDirs;
71
  public $FilterExts;
72
+ public $FilterDirsAll = array();
73
+ public $FilterExtsAll = array();
74
  public $FilterOn;
75
  public $File;
76
  public $Format;
77
  public $PackDir;
78
  public $Size = 0;
 
 
79
  public $Dirs = array();
80
  public $Files = array();
81
+ public $FilterInfo;
 
 
82
 
83
  //PROTECTED
84
  protected $Package;
85
 
86
+ public function __construct($package)
87
+ {
 
 
 
 
88
  $this->Package = $package;
89
  $this->FilterOn = false;
90
+ $this->FilterInfo = new DUP_Archive_Filter_Info();
91
  }
92
 
93
+ public function Build($package)
94
+ {
95
+ try
96
+ {
97
  $this->Package = $package;
 
98
  if (!isset($this->PackDir) && ! is_dir($this->PackDir)) throw new Exception("The 'PackDir' property must be a valid diretory.");
99
  if (!isset($this->File)) throw new Exception("A 'File' property must be set.");
100
 
101
  $this->Package->SetStatus(DUP_PackageStatus::ARCSTART);
102
+ switch ($this->Format)
103
+ {
104
  case 'TAR': break;
105
  case 'TAR-GZIP': break;
106
  default:
107
+ if (class_exists(ZipArchive))
108
+ {
109
  $this->Format = 'ZIP';
110
  DUP_Zip::Create($this);
111
+ }
 
 
112
  break;
113
  }
114
 
116
  $this->Size = @filesize($storePath);
117
  $this->Package->SetStatus(DUP_PackageStatus::ARCDONE);
118
 
119
+ }
120
+ catch (Exception $e)
121
+ {
122
  echo 'Caught exception: ', $e->getMessage(), "\n";
123
  }
124
  }
125
 
126
+ public function GetFilterDirAsArray()
127
+ {
128
  return array_map('DUP_Util::SafePath', explode(";", $this->FilterDirs, -1));
129
  }
130
 
131
+ public function GetFilterExtsAsArray()
132
+ {
133
  return explode(";", $this->FilterExts, -1);
134
  }
135
 
136
  /**
 
137
  * Get the directory size recursively, but don't calc the snapshot directory, exclusion diretories
 
 
138
  * @link http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx Windows filename restrictions
139
  */
140
+ public function Stats()
141
+ {
142
+ $this->createFilterInfo();
 
 
 
 
 
 
143
  $this->getDirs();
144
  $this->getFiles();
145
  return $this;
146
  }
147
 
148
+ //Build Filter Data
149
+ private function createFilterInfo()
150
+ {
151
+ //FILTER: INSTANCE ITEMS
152
+ //Add the items generated at create time
153
+ if ($this->FilterOn)
154
+ {
155
+ $this->FilterInfo->Dirs->Instance = array_map('DUP_Util::SafePath', explode(";", $this->FilterDirs, -1));
156
+ $this->FilterInfo->Exts->Instance = explode(";", $this->FilterExts, -1);
157
+ }
158
+
159
+ //FILTER: CORE ITMES
160
+ //Filters Duplicator free packages & All pro local directories
161
+ $this->FilterInfo->Dirs->Core[] = DUPLICATOR_SSDIR_PATH;
162
+
163
+ $this->FilterDirsAll = array_merge($this->FilterInfo->Dirs->Instance,
164
+ $this->FilterInfo->Dirs->Core);
165
+
166
+ $this->FilterExtsAll = array_merge($this->FilterInfo->Exts->Instance,
167
+ $this->FilterInfo->Exts->Core);
168
+ }
169
+
170
+
171
  //Get All Directories then filter
172
+ private function getDirs()
173
+ {
 
174
 
175
  $rootPath = DUP_Util::SafePath(rtrim(DUPLICATOR_WPROOTPATH, '//' ));
176
+ $this->Dirs = array();
177
 
178
  //If the root directory is a filter then we will only need the root files
179
+ if (in_array($this->PackDir, $this->FilterDirsAll))
180
+ {
181
+ $this->Dirs[] = $this->PackDir;
182
+ }
183
+ else
184
+ {
185
+ $this->Dirs = $this->dirsToArray($rootPath);
186
+ $this->Dirs[] = $this->PackDir;
187
+ }
188
 
189
  //Filter Directories
190
  //Invalid test contains checks for: characters over 250, invlaid characters,
191
  //empty string and directories ending with period (Windows incompatable)
192
+ foreach ($this->Dirs as $key => $val)
193
+ {
194
  //Remove path filter directories
195
+ foreach($this->FilterDirsAll as $item)
196
+ {
197
+ if (strstr($val, $item . '/') || $val == $item)
198
+ {
199
  unset($this->Dirs[$key]);
200
  continue 2;
201
  }
208
  || trim($name) == ""
209
  || (strrpos($name, '.') == strlen($name) - 1 && substr($name, -1) == '.');
210
 
211
+ if ($invalid_test || preg_match('/[^\x20-\x7f]/', $name))
212
+ {
213
+ $this->FilterInfo->Dirs->Warning[] = utf8_encode($val);
214
  }
215
+
216
+ //Dir is not readble remove and flag
217
+ if (! is_readable($this->Dirs[$key]))
218
+ {
219
+ unset($this->Dirs[$key]);
220
+ $this->FilterInfo->Dirs->Unreadable[] = $val;
221
+ $this->FilterDirsAll[] = $val;
222
+ }
223
  }
224
  }
225
 
226
  //Get all files and filter out error prone subsets
227
+ private function getFiles()
228
+ {
229
+ foreach ($this->Dirs as $key => $val)
230
+ {
231
  $files = DUP_Util::ListFiles($val);
232
+ foreach ($files as $filePath)
233
+ {
234
  $fileName = basename($filePath);
235
+ if (!is_dir($filePath))
236
+ {
237
+ if (!in_array(@pathinfo($filePath, PATHINFO_EXTENSION), $this->FilterExtsAll))
238
+ {
239
+ //Unreadable
240
+ if (!is_readable($filePath))
241
+ {
242
+ $this->FilterInfo->Files->Unreadable[] = $filePath;
243
+ continue;
244
+ }
245
+
246
  $fileSize = @filesize($filePath);
247
  $fileSize = empty($fileSize) ? 0 : $fileSize;
248
+ $invalid_test = strlen($filePath) > 250 ||
249
+ preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $fileName) ||
250
+ trim($fileName) == "";
251
+
252
+ if ($invalid_test || preg_match('/[^\x20-\x7f]/', $fileName))
253
+ {
254
+ $this->FilterInfo->Files->Warning[] = utf8_encode($filePath);
255
  }
256
+ else
257
+ {
 
 
258
  $this->Size += $fileSize;
259
  $this->Files[] = $filePath;
 
 
 
260
  }
261
+
262
+ if ($fileSize > DUPLICATOR_SCAN_WARNFILESIZE)
263
+ {
264
+ $this->FilterInfo->Files->Size[] = $filePath . ' [' . DUP_Util::ByteSize($fileSize) . ']';
265
+ }
266
  }
267
  }
268
  }
269
  }
270
  }
271
 
272
+ //Recursive function to get all Directories in a wp install
273
+ //Older PHP logic which is more stable on older version of PHP
274
+ //NOTE RecursiveIteratorIterator is problematic on some systems issues include:
275
+ // - error 'too many files open' for recursion
276
+ // - $file->getExtension() is not reliable as it silently fails at least in php 5.2.17
277
+ // - issues with when a file has a permission such as 705 and trying to get info (had to fallback to pathinfo)
278
+ // - basic conclusion wait on the SPL libs untill after php 5.4 is a requiremnt
279
+ // - since we are in a tight recursive loop lets remove the utiltiy call DUP_Util::SafePath("{$path}/{$file}") and
280
+ // squeeze out as much performance as we possible can
281
+ private function dirsToArray($path)
282
+ {
283
  $items = array();
284
+ $handle = @opendir($path);
285
+ if ($handle)
286
+ {
287
+ while (($file = readdir($handle)) !== false)
288
+ {
289
+ if ($file != '.' && $file != '..')
290
+ {
291
+ $fullPath = str_replace("\\", '/', "{$path}/{$file}");
292
+ if (is_dir($fullPath))
293
+ {
294
+ $items = array_merge($items, $this->dirsToArray($fullPath));
295
+ $items[] = $fullPath;
296
+ }
297
+ }
298
+ }
299
+ closedir($handle);
300
+ }
301
+ return $items;
302
  }
303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  }
305
  ?>
classes/package.archive.zip.php CHANGED
@@ -61,7 +61,7 @@ class DUP_Zip extends DUP_Archive {
61
  DUP_Log::Info("----------------------------------------");
62
  DUP_Log::Info("COMPRESSING");
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 . " | Links " . self::$scanReport->ARC->LinkCount);
65
 
66
  //ADD SQL
67
  $isSQLInZip = self::$zipArchive->addFile(self::$sqlPath, "database.sql");
61
  DUP_Log::Info("----------------------------------------");
62
  DUP_Log::Info("COMPRESSING");
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");
classes/package.php CHANGED
@@ -97,19 +97,26 @@ class DUP_Package {
97
 
98
  //FILES
99
  $this->Archive->Stats();
100
- $report['ARC']['Size'] = DUP_Util::ByteSize($this->Archive->Size) or "unknown";
101
- $report['ARC']['DirCount'] = number_format(count($this->Archive->Dirs));
102
- $report['ARC']['FileCount'] = number_format(count($this->Archive->Files));
103
- $report['ARC']['LinkCount'] = number_format(count($this->Archive->Links));
104
- $report['ARC']['WarnFileName'] = is_array($this->Archive->WarnFileName) ? $this->Archive->WarnFileName : "unknown";
105
- $report['ARC']['WarnFileSize'] = is_array($this->Archive->WarnFileSize) ? $this->Archive->WarnFileSize : "unknown";
106
- $report['ARC']['Status']['Size'] = ($this->Archive->Size > DUPLICATOR_SCAN_SITE) ? 'Warn' : 'Good';
107
- $report['ARC']['Status']['Names'] = count($this->Archive->WarnFileName) ? 'Warn' : 'Good';
108
- $report['ARC']['Status']['Big'] = count($this->Archive->WarnFileSize) ? 'Warn' : 'Good';
 
 
 
 
 
 
 
 
109
  $report['ARC']['Dirs'] = $this->Archive->Dirs;
110
  $report['ARC']['Files'] = $this->Archive->Files;
111
- $report['ARC']['OmitFiles'] = $this->Archive->OmitFiles;
112
- $report['ARC']['OmitDirs'] = $this->Archive->OmitDirs;
113
 
114
  //DATABASE
115
  $db = $this->Database->Stats();
97
 
98
  //FILES
99
  $this->Archive->Stats();
100
+ $dirCount = count($this->Archive->Dirs);
101
+ $fileCount = count($this->Archive->Files);
102
+ $fullCount = $dirCount + $fileCount;
103
+
104
+ $report['ARC']['Size'] = DUP_Util::ByteSize($this->Archive->Size) or "unknown";
105
+ $report['ARC']['DirCount'] = number_format($dirCount);
106
+ $report['ARC']['FileCount'] = number_format($fileCount);
107
+ $report['ARC']['FullCount'] = number_format($fullCount);
108
+
109
+ $report['ARC']['FilterInfo']['Dirs'] = $this->Archive->FilterInfo->Dirs;
110
+ $report['ARC']['FilterInfo']['Files'] = $this->Archive->FilterInfo->Files;
111
+ $report['ARC']['FilterInfo']['Exts'] = $this->Archive->FilterInfo->Exts;
112
+
113
+ $report['ARC']['Status']['Size'] = ($this->Archive->Size > DUPLICATOR_SCAN_SITE) ? 'Warn' : 'Good';
114
+ $report['ARC']['Status']['Names'] = (count($this->Archive->FilterInfo->Files->Warning) + count($this->Archive->FilterInfo->Dirs->Warning)) ? 'Warn' : 'Good';
115
+ $report['ARC']['Status']['Big'] = count($this->Archive->FilterInfo->Files->Size) ? 'Warn' : 'Good';
116
+
117
  $report['ARC']['Dirs'] = $this->Archive->Dirs;
118
  $report['ARC']['Files'] = $this->Archive->Files;
119
+
 
120
 
121
  //DATABASE
122
  $db = $this->Database->Stats();
classes/ui.php CHANGED
@@ -1,122 +1,125 @@
1
- <?php
2
- if ( ! defined('DUPLICATOR_VERSION') ) exit; // Exit if accessed directly
3
-
4
- /**
5
- * Helper Class for UI internactions
6
- * @package Dupicator\classes
7
- */
8
- class DUP_UI {
9
-
10
- /**
11
- * The key used in the wp_options table
12
- * @var string
13
- */
14
- private static $OptionsTableKey = 'duplicator_ui_view_state';
15
-
16
- /**
17
- * Save the view state of UI elements
18
- * @param string $key A unique key to define the ui element
19
- * @param string $value A generic value to use for the view state
20
- */
21
- static public function SaveViewState($key, $value) {
22
-
23
- $view_state = array();
24
- $view_state = get_option(self::$OptionsTableKey);
25
- $view_state[$key] = $value;
26
- $success = update_option(self::$OptionsTableKey, $view_state);
27
-
28
- return $success;
29
- }
30
-
31
-
32
- /**
33
- * Saves the state of a UI element via post params
34
- * @return json result string
35
- * <code>
36
- * //JavaScript Ajax Request
37
- * Duplicator.UI.SaveViewStateByPost('dup-pack-archive-panel', 1);
38
- *
39
- * //Call PHP Code
40
- * $view_state = DUP_UI::GetViewStateValue('dup-pack-archive-panel');
41
- * $ui_css_archive = ($view_state == 1) ? 'display:block' : 'display:none';
42
- * </code>
43
- */
44
- static public function SaveViewStateByPost() {
45
-
46
- DUP_Util::CheckPermissions('read');
47
-
48
- $post = stripslashes_deep($_POST);
49
- $key = esc_html($post['key']);
50
- $value = esc_html($post['value']);
51
- $success = self::SaveViewState($key, $value);
52
-
53
- //Show Results as JSON
54
- $json = array();
55
- $json['key'] = $key;
56
- $json['value'] = $value;
57
- $json['update-success'] = $success;
58
- die(json_encode($json));
59
- }
60
-
61
-
62
- /**
63
- * Gets all the values from the settings array
64
- * @return array Returns and array of all the values stored in the settings array
65
- */
66
- static public function GetViewStateArray() {
67
- return get_option(self::$OptionsTableKey);
68
- }
69
-
70
- /**
71
- * Return the value of the of view state item
72
- * @param type $searchKey The key to search on
73
- * @return string Returns the value of the key searched or null if key is not found
74
- */
75
- static public function GetViewStateValue($searchKey) {
76
- $view_state = get_option(self::$OptionsTableKey);
77
- if (is_array($view_state)) {
78
- foreach ($view_state as $key => $value) {
79
- if ($key == $searchKey) {
80
- return $value;
81
- }
82
- }
83
- }
84
- return null;
85
- }
86
-
87
- /**
88
- * Shows a display message in the wp-admin if any researved files are found
89
- * @return type void
90
- */
91
- static public function ShowReservedFilesNotice() {
92
-
93
- if (! is_plugin_active('duplicator/duplicator.php'))
94
- return;
95
-
96
- $hide = isset($_REQUEST['page']) && $_REQUEST['page'] == 'duplicator-tools' ? true : false;
97
- $perms = (current_user_can( 'install_plugins' ) && current_user_can( 'import' ));
98
- if (! $perms || $hide)
99
- return;
100
-
101
- $metaKey = 'dup-wpnotice01';
102
- if ( isset($_GET[$metaKey]) && $_GET[$metaKey] == '1') {
103
- self::SaveViewState($metaKey, true);
104
- }
105
-
106
- if (! self::GetViewStateValue($metaKey, false)) {
107
- if (DUP_Server::InstallerFilesFound()) {
108
- $queryStr = $_SERVER['QUERY_STRING'];
109
- echo '<div class="updated"><p>';
110
- @printf("%s <br/> <a href='admin.php?page=duplicator-tools&tab=cleanup&action=installer'>%s</a> | <a href='?{$queryStr}&{$metaKey}=1'>%s</a>",
111
- __('Reserved Duplicator install file(s) still exists in the root directory. Please delete these file(s) to avoid possible security issues.', 'wpduplicator'),
112
- __('Remove file(s) now', 'wpduplicator'),
113
- __('Dismiss this notice', 'wpduplicator'));
114
- echo "</p></div>";
115
- } else {
116
- self::SaveViewState($metaKey, true);
117
- }
118
- }
119
- }
120
-
121
- }
122
- ?>
 
 
 
1
+ <?php
2
+ if ( ! defined('DUPLICATOR_VERSION') ) exit; // Exit if accessed directly
3
+
4
+ /**
5
+ * Helper Class for UI internactions
6
+ * @package Dupicator\classes
7
+ */
8
+ class DUP_UI {
9
+
10
+ /**
11
+ * The key used in the wp_options table
12
+ * @var string
13
+ */
14
+ private static $OptionsTableKey = 'duplicator_ui_view_state';
15
+
16
+ /**
17
+ * Save the view state of UI elements
18
+ * @param string $key A unique key to define the ui element
19
+ * @param string $value A generic value to use for the view state
20
+ */
21
+ static public function SaveViewState($key, $value) {
22
+
23
+ $view_state = array();
24
+ $view_state = get_option(self::$OptionsTableKey);
25
+ $view_state[$key] = $value;
26
+ $success = update_option(self::$OptionsTableKey, $view_state);
27
+
28
+ return $success;
29
+ }
30
+
31
+
32
+ /**
33
+ * Saves the state of a UI element via post params
34
+ * @return json result string
35
+ * <code>
36
+ * //JavaScript Ajax Request
37
+ * Duplicator.UI.SaveViewStateByPost('dup-pack-archive-panel', 1);
38
+ *
39
+ * //Call PHP Code
40
+ * $view_state = DUP_UI::GetViewStateValue('dup-pack-archive-panel');
41
+ * $ui_css_archive = ($view_state == 1) ? 'display:block' : 'display:none';
42
+ * </code>
43
+ */
44
+ static public function SaveViewStateByPost() {
45
+
46
+ DUP_Util::CheckPermissions('read');
47
+
48
+ $post = stripslashes_deep($_POST);
49
+ $key = esc_html($post['key']);
50
+ $value = esc_html($post['value']);
51
+ $success = self::SaveViewState($key, $value);
52
+
53
+ //Show Results as JSON
54
+ $json = array();
55
+ $json['key'] = $key;
56
+ $json['value'] = $value;
57
+ $json['update-success'] = $success;
58
+ die(json_encode($json));
59
+ }
60
+
61
+
62
+ /**
63
+ * Gets all the values from the settings array
64
+ * @return array Returns and array of all the values stored in the settings array
65
+ */
66
+ static public function GetViewStateArray() {
67
+ return get_option(self::$OptionsTableKey);
68
+ }
69
+
70
+ /**
71
+ * Return the value of the of view state item
72
+ * @param type $searchKey The key to search on
73
+ * @return string Returns the value of the key searched or null if key is not found
74
+ */
75
+ static public function GetViewStateValue($searchKey) {
76
+ $view_state = get_option(self::$OptionsTableKey);
77
+ if (is_array($view_state)) {
78
+ foreach ($view_state as $key => $value) {
79
+ if ($key == $searchKey) {
80
+ return $value;
81
+ }
82
+ }
83
+ }
84
+ return null;
85
+ }
86
+
87
+ /**
88
+ * Shows a display message in the wp-admin if any researved files are found
89
+ * @return type void
90
+ */
91
+ static public function ShowReservedFilesNotice() {
92
+
93
+ if (! is_plugin_active('duplicator/duplicator.php'))
94
+ return;
95
+
96
+ $hide = isset($_REQUEST['page']) && $_REQUEST['page'] == 'duplicator-tools' ? true : false;
97
+ $perms = (current_user_can( 'install_plugins' ) && current_user_can( 'import' ));
98
+ if (! $perms || $hide)
99
+ return;
100
+
101
+ $metaKey = 'dup-wpnotice01';
102
+ if ( isset($_GET[$metaKey]) && $_GET[$metaKey] == '1') {
103
+ self::SaveViewState($metaKey, true);
104
+ }
105
+
106
+ if ( self::GetViewStateValue($metaKey) != null) {
107
+ if (DUP_Server::InstallerFilesFound()) {
108
+ $queryStr = $_SERVER['QUERY_STRING'];
109
+ echo '<div class="updated"><p>';
110
+ $duplicator_nonce = wp_create_nonce('duplicator_cleanup_page');
111
+
112
+ @printf("%s <br/> <a href='admin.php?page=duplicator-tools&tab=cleanup&action=installer&_wpnonce=%s'>%s</a> | <a href='?{$queryStr}&{$metaKey}=1'>%s</a>",
113
+ __('Reserved Duplicator install file(s) still exists in the root directory. Please delete these file(s) to avoid possible security issues.', 'wpduplicator'),
114
+ $duplicator_nonce,
115
+ __('Remove file(s) now', 'wpduplicator'),
116
+ __('Dismiss this notice', 'wpduplicator'));
117
+ echo "</p></div>";
118
+ } else {
119
+ self::SaveViewState($metaKey, true);
120
+ }
121
+ }
122
+ }
123
+
124
+ }
125
+ ?>
classes/utility.php CHANGED
@@ -164,13 +164,13 @@ class DUP_Util {
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[] = DUP_Util::SafePath($file->getPathname());
172
  }
173
- }
174
  return $files;
175
  }
176
 
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
 
define.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  //Prevent directly browsing to the file
3
  if (function_exists('plugin_dir_url')) {
4
- define('DUPLICATOR_VERSION', '0.5.22');
5
  define("DUPLICATOR_HOMEPAGE", "http://lifeinthegrid.com/labs/duplicator");
6
  define("DUPLICATOR_GIVELINK", "http://lifeinthegrid.com/partner");
7
  define("DUPLICATOR_HELPLINK", "http://lifeinthegrid.com/duplicator-docs");
@@ -10,8 +10,6 @@ if (function_exists('plugin_dir_url')) {
10
  define('DUPLICATOR_SITE_URL', get_site_url());
11
  define('DUPLICATOR_LANG_SLUG', 'wpduplicator');
12
 
13
-
14
-
15
  /* Paths should ALWAYS read "/"
16
  uni: /home/path/file.txt
17
  win: D:/home/path/file.txt
@@ -43,7 +41,6 @@ if (function_exists('plugin_dir_url')) {
43
  define("DUPLICATOR_SCAN_DBROWS", 250000);
44
  define("DUPLICATOR_SCAN_TIMEOUT", 150); //Seconds
45
  define("DUPLICATOR_SCAN_MIN_WP", "3.7.0");
46
- define("DUPLICATOR_SCAN_USELEGACY", true);
47
  $GLOBALS['DUPLICATOR_SERVER_LIST'] = array('Apache','LiteSpeed', 'Nginx', 'Lighttpd', 'IIS', 'WebServerX', 'uWSGI');
48
  $GLOBALS['DUPLICATOR_OPTS_DELETE'] = array('duplicator_ui_view_state', 'duplicator_package_active', 'duplicator_settings');
49
 
1
  <?php
2
  //Prevent directly browsing to the file
3
  if (function_exists('plugin_dir_url')) {
4
+ define('DUPLICATOR_VERSION', '0.5.24');
5
  define("DUPLICATOR_HOMEPAGE", "http://lifeinthegrid.com/labs/duplicator");
6
  define("DUPLICATOR_GIVELINK", "http://lifeinthegrid.com/partner");
7
  define("DUPLICATOR_HELPLINK", "http://lifeinthegrid.com/duplicator-docs");
10
  define('DUPLICATOR_SITE_URL', get_site_url());
11
  define('DUPLICATOR_LANG_SLUG', 'wpduplicator');
12
 
 
 
13
  /* Paths should ALWAYS read "/"
14
  uni: /home/path/file.txt
15
  win: D:/home/path/file.txt
41
  define("DUPLICATOR_SCAN_DBROWS", 250000);
42
  define("DUPLICATOR_SCAN_TIMEOUT", 150); //Seconds
43
  define("DUPLICATOR_SCAN_MIN_WP", "3.7.0");
 
44
  $GLOBALS['DUPLICATOR_SERVER_LIST'] = array('Apache','LiteSpeed', 'Nginx', 'Lighttpd', 'IIS', 'WebServerX', 'uWSGI');
45
  $GLOBALS['DUPLICATOR_OPTS_DELETE'] = array('duplicator_ui_view_state', 'duplicator_package_active', 'duplicator_settings');
46
 
duplicator.php CHANGED
@@ -3,9 +3,11 @@
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: 0.5.22
7
  Author: LifeInTheGrid
8
  Author URI: http://www.lifeinthegrid.com
 
 
9
  License: GPLv2 or later
10
  */
11
 
@@ -135,11 +137,11 @@ if (is_admin() == true) {
135
  * Init routines */
136
  function duplicator_init() {
137
  /* CSS */
138
- wp_register_style('jquery-ui', DUPLICATOR_PLUGIN_URL . 'assets/css/jquery-ui.css', null, "1.11.2");
139
- wp_register_style('font-awesome', DUPLICATOR_PLUGIN_URL . 'assets/css/font-awesome.min.css', null, '4.1.0');
140
- wp_register_style('duplicator_style', DUPLICATOR_PLUGIN_URL . 'assets/css/style.css', null, DUPLICATOR_VERSION);
141
  /* JS */
142
- wp_register_script('parsley', DUPLICATOR_PLUGIN_URL . 'assets/js/parsley-standalone.min.js', array('jquery'), '1.1.18');
143
  }
144
 
145
  //PAGE VIEWS
@@ -186,15 +188,16 @@ if (is_admin() == true) {
186
 
187
  $perms = 'manage_options';
188
  $perms = apply_filters($wpfront_caps_translator, $perms);
189
- $page_help = add_submenu_page('duplicator', __('Help', 'wpduplicator'), __('Help', 'wpduplicator'), $perms, 'duplicator-help', 'duplicator_get_menu');
190
 
191
  $perms = 'manage_options';
192
  $perms = apply_filters($wpfront_caps_translator, $perms);
193
- $page_about = add_submenu_page('duplicator', __('About', 'wpduplicator'), __('About', 'wpduplicator'), $perms, 'duplicator-about', 'duplicator_get_menu');
194
 
195
- //$perms = 'manage_options';
196
- //$perms = apply_filters($wpfront_caps_translator, $perms);
197
- //$page_gopro = add_submenu_page('duplicator', __('Go Pro!', 'wpduplicator'), __('Go Pro!', 'wpduplicator'), $perms, 'duplicator-gopro', 'duplicator_get_menu');
 
198
 
199
  //Apply Scripts
200
  add_action('admin_print_scripts-' . $page_packages, 'duplicator_scripts');
@@ -202,7 +205,7 @@ if (is_admin() == true) {
202
  add_action('admin_print_scripts-' . $page_help, 'duplicator_scripts');
203
  add_action('admin_print_scripts-' . $page_tools, 'duplicator_scripts');
204
  add_action('admin_print_scripts-' . $page_about, 'duplicator_scripts');
205
- //add_action('admin_print_scripts-' . $page_gopro, 'duplicator_scripts');
206
 
207
  //Apply Styles
208
  add_action('admin_print_styles-' . $page_packages, 'duplicator_styles');
@@ -210,7 +213,7 @@ if (is_admin() == true) {
210
  add_action('admin_print_styles-' . $page_help, 'duplicator_styles');
211
  add_action('admin_print_styles-' . $page_tools, 'duplicator_styles');
212
  add_action('admin_print_styles-' . $page_about, 'duplicator_styles');
213
- //add_action('admin_print_styles-' . $page_gopro, 'duplicator_styles');
214
  }
215
 
216
  /**
@@ -220,16 +223,16 @@ if (is_admin() == true) {
220
  wp_enqueue_script('jquery');
221
  wp_enqueue_script('jquery-ui-core');
222
  wp_enqueue_script('jquery-ui-progressbar');
223
- wp_enqueue_script('parsley');
224
  }
225
 
226
  /**
227
  * DUPLICATOR_STYLES
228
  * Loads the required css links only for this plugin */
229
  function duplicator_styles() {
230
- wp_enqueue_style('jquery-ui');
231
- wp_enqueue_style('duplicator_style');
232
- wp_enqueue_style('font-awesome');
233
  }
234
 
235
  /**
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: 0.5.24
7
  Author: LifeInTheGrid
8
  Author URI: http://www.lifeinthegrid.com
9
+ Text Domain: wpduplicator
10
+ Domain Path: /lang
11
  License: GPLv2 or later
12
  */
13
 
137
  * Init routines */
138
  function duplicator_init() {
139
  /* CSS */
140
+ wp_register_style('dup-jquery-ui', DUPLICATOR_PLUGIN_URL . 'assets/css/jquery-ui.css', null, "1.11.2");
141
+ wp_register_style('dup-font-awesome', DUPLICATOR_PLUGIN_URL . 'assets/css/font-awesome.min.css', null, '4.1.0');
142
+ wp_register_style('dup-plugin-style', DUPLICATOR_PLUGIN_URL . 'assets/css/style.css', null, DUPLICATOR_VERSION);
143
  /* JS */
144
+ wp_register_script('dup-parsley', DUPLICATOR_PLUGIN_URL . 'assets/js/parsley-standalone.min.js', array('jquery'), '1.1.18');
145
  }
146
 
147
  //PAGE VIEWS
188
 
189
  $perms = 'manage_options';
190
  $perms = apply_filters($wpfront_caps_translator, $perms);
191
+ $page_help = add_submenu_page('duplicator', DUP_Util::__('Help'), DUP_Util::__('Help'), $perms, 'duplicator-help', 'duplicator_get_menu');
192
 
193
  $perms = 'manage_options';
194
  $perms = apply_filters($wpfront_caps_translator, $perms);
195
+ $page_about = add_submenu_page('duplicator', DUP_Util::__('About'), DUP_Util::__('About'), $perms, 'duplicator-about', 'duplicator_get_menu');
196
 
197
+ $perms = 'manage_options';
198
+ $go_pro_link = '<span style="color:#f18500">' . DUP_Util::__('Go Pro!') . '</span>';
199
+ $perms = apply_filters($wpfront_caps_translator, $perms);
200
+ $page_gopro = add_submenu_page('duplicator', $go_pro_link, $go_pro_link, $perms, 'duplicator-gopro', 'duplicator_get_menu');
201
 
202
  //Apply Scripts
203
  add_action('admin_print_scripts-' . $page_packages, 'duplicator_scripts');
205
  add_action('admin_print_scripts-' . $page_help, 'duplicator_scripts');
206
  add_action('admin_print_scripts-' . $page_tools, 'duplicator_scripts');
207
  add_action('admin_print_scripts-' . $page_about, 'duplicator_scripts');
208
+ add_action('admin_print_scripts-' . $page_gopro, 'duplicator_scripts');
209
 
210
  //Apply Styles
211
  add_action('admin_print_styles-' . $page_packages, 'duplicator_styles');
213
  add_action('admin_print_styles-' . $page_help, 'duplicator_styles');
214
  add_action('admin_print_styles-' . $page_tools, 'duplicator_styles');
215
  add_action('admin_print_styles-' . $page_about, 'duplicator_styles');
216
+ add_action('admin_print_styles-' . $page_gopro, 'duplicator_styles');
217
  }
218
 
219
  /**
223
  wp_enqueue_script('jquery');
224
  wp_enqueue_script('jquery-ui-core');
225
  wp_enqueue_script('jquery-ui-progressbar');
226
+ wp_enqueue_script('dup-parsley');
227
  }
228
 
229
  /**
230
  * DUPLICATOR_STYLES
231
  * Loads the required css links only for this plugin */
232
  function duplicator_styles() {
233
+ wp_enqueue_style('dup-jquery-ui');
234
+ wp_enqueue_style('dup-font-awesome');
235
+ wp_enqueue_style('dup-plugin-style');
236
  }
237
 
238
  /**
installer/build/view.step3.php CHANGED
@@ -1,206 +1,206 @@
1
- <?php
2
- // Exit if accessed directly
3
- if (! defined('DUPLICATOR_INIT')) {
4
- $_baseURL = strlen($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST'];
5
- $_baseURL = "http://" . $_baseURL;
6
- header("HTTP/1.1 301 Moved Permanently");
7
- header("Location: $_baseURL");
8
- exit;
9
- }
10
- ?>
11
- <script type="text/javascript">
12
- /** **********************************************
13
- * METHOD: Posts to page to remove install files */
14
- Duplicator.removeInstallerFiles = function(package_name) {
15
- var msg = "Delete all installer files now? \n\nThis will remove the page you are now viewing.\nThe page will stay active until you navigate away.";
16
- if (confirm(msg)) {
17
- var nurl = '<?php echo rtrim($_POST['url_new'], "/"); ?>/wp-admin/admin.php?page=duplicator-tools&tab=cleanup&action=installer&package=' + package_name;
18
- window.open(nurl, "_blank");
19
- }
20
- };
21
- </script>
22
-
23
-
24
- <!-- =========================================
25
- 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">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)">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'] ?>')">File Cleanup</a></td>
61
- <td><i>Removes all installer files (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>
69
-
70
-
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>
78
- <td>Tables</td>
79
- <td>Rows</td>
80
- <td>Cells</td>
81
- </tr>
82
- <tr data-bind="with: status.step1">
83
- <td>Created</td>
84
- <td><span data-bind="text: table_count"></span></td>
85
- <td><span data-bind="text: table_rows"></span></td>
86
- <td>n/a</td>
87
- </tr>
88
- <tr data-bind="with: status.step2">
89
- <td>Scanned</td>
90
- <td><span data-bind="text: scan_tables"></span></td>
91
- <td><span data-bind="text: scan_rows"></span></td>
92
- <td><span data-bind="text: scan_cells"></span></td>
93
- </tr>
94
- <tr data-bind="with: status.step2">
95
- <td>Updated</td>
96
- <td><span data-bind="text: updt_tables"></span></td>
97
- <td><span data-bind="text: updt_rows"></span></td>
98
- <td><span data-bind="text: updt_cells"></span></td>
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>
113
- </td>
114
- </tr>
115
- <tr><td colspan="4"></td></tr>
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>
150
- <div data-bind="visible: status.step2.errkey.length == 0">No missing primary key errors</div>
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>
160
- <div data-bind="visible: status.step2.errser.length == 0">No serialization errors found</div>
161
- </div>
162
-
163
- </div>
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">
171
- The following is a list of warnings that may need to be fixed in order to finalize your setup. For more details about
172
- warnings see the <a href="http://codex.wordpress.org/" target="_blank">wordpress codex.</a>.
173
- </div>
174
- <div class="content">
175
- <div data-bind="foreach: status.step2.warnlist">
176
- <div data-bind="text: $data"></div>
177
- </div>
178
- <div data-bind="visible: status.step2.warnlist.length == 0">
179
- No warnings found
180
- </div>
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://lifeinthegrid.com/partner/' target='_blank'>Donate</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')
202
- };
203
- ko.applyBindings(new MyViewModel());
204
- </script>
205
-
206
 
1
+ <?php
2
+ // Exit if accessed directly
3
+ if (! defined('DUPLICATOR_INIT')) {
4
+ $_baseURL = strlen($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST'];
5
+ $_baseURL = "http://" . $_baseURL;
6
+ header("HTTP/1.1 301 Moved Permanently");
7
+ header("Location: $_baseURL");
8
+ exit;
9
+ }
10
+ ?>
11
+ <script type="text/javascript">
12
+ /** **********************************************
13
+ * METHOD: Posts to page to remove install files */
14
+ Duplicator.removeInstallerFiles = function(package_name) {
15
+ var msg = "You will now be redirected to the cleanup page.\nSelect 'Delete Reserved Files' to remove installer files.";
16
+ alert(msg);
17
+
18
+ var nurl = '<?php echo rtrim($_POST['url_new'], "/"); ?>/wp-admin/admin.php?page=duplicator-tools&tab=cleanup';
19
+ window.open(nurl, "_blank");
20
+ };
21
+ </script>
22
+
23
+
24
+ <!-- =========================================
25
+ 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">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)">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'] ?>')">File Cleanup</a></td>
61
+ <td><i>Removes all installer files (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>
69
+
70
+
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>
78
+ <td>Tables</td>
79
+ <td>Rows</td>
80
+ <td>Cells</td>
81
+ </tr>
82
+ <tr data-bind="with: status.step1">
83
+ <td>Created</td>
84
+ <td><span data-bind="text: table_count"></span></td>
85
+ <td><span data-bind="text: table_rows"></span></td>
86
+ <td>n/a</td>
87
+ </tr>
88
+ <tr data-bind="with: status.step2">
89
+ <td>Scanned</td>
90
+ <td><span data-bind="text: scan_tables"></span></td>
91
+ <td><span data-bind="text: scan_rows"></span></td>
92
+ <td><span data-bind="text: scan_cells"></span></td>
93
+ </tr>
94
+ <tr data-bind="with: status.step2">
95
+ <td>Updated</td>
96
+ <td><span data-bind="text: updt_tables"></span></td>
97
+ <td><span data-bind="text: updt_rows"></span></td>
98
+ <td><span data-bind="text: updt_cells"></span></td>
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>
113
+ </td>
114
+ </tr>
115
+ <tr><td colspan="4"></td></tr>
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>
150
+ <div data-bind="visible: status.step2.errkey.length == 0">No missing primary key errors</div>
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>
160
+ <div data-bind="visible: status.step2.errser.length == 0">No serialization errors found</div>
161
+ </div>
162
+
163
+ </div>
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">
171
+ The following is a list of warnings that may need to be fixed in order to finalize your setup. For more details about
172
+ warnings see the <a href="http://codex.wordpress.org/" target="_blank">wordpress codex.</a>.
173
+ </div>
174
+ <div class="content">
175
+ <div data-bind="foreach: status.step2.warnlist">
176
+ <div data-bind="text: $data"></div>
177
+ </div>
178
+ <div data-bind="visible: status.step2.warnlist.length == 0">
179
+ No warnings found
180
+ </div>
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://lifeinthegrid.com/partner/' target='_blank'>Donate</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')
202
+ };
203
+ ko.applyBindings(new MyViewModel());
204
+ </script>
205
+
206
 
lang/wpduplicator-de_DE.mo CHANGED
Binary file
lang/wpduplicator-de_DE.po CHANGED
@@ -1,1944 +1,2310 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Duplicator v0.5.18\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-01-08 21:27-0700\n"
6
- "PO-Revision-Date: 2015-05-06 22:50:37+0000\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
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.6.3\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
- #: duplicator.php:177
24
- #: views/packages/controller.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  #: views/packages/list.base.php:235
26
- #@ wpduplicator
27
  msgid "Packages"
28
  msgstr "Archive"
29
 
30
- #: duplicator.php:181
31
- #: views/settings/controller.php:19
32
- #@ wpduplicator
33
  msgid "Settings"
34
  msgstr "Einstellungen"
35
 
36
- #: duplicator.php:185
37
- #: views/tools/controller.php:13
38
- #@ wpduplicator
39
  msgid "Tools"
40
  msgstr "Werkzeuge"
41
 
42
- #: duplicator.php:244
43
- #@ wpduplicator
44
  msgid "Manage"
45
  msgstr "Verwalten"
46
 
47
- #: classes/ui.php:112
48
- #@ wpduplicator
49
- msgid "Remove file(s) now"
50
- msgstr "Entferne die Datei(en) jetzt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
- #: classes/ui.php:113
53
- #@ wpduplicator
54
- msgid "Dismiss this notice"
55
- msgstr "Verwerfe diese Notiz"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  #: views/help/help.php:50
58
- #@ wpduplicator
59
  msgid "Knowledgebase"
60
  msgstr "Wissens-Datenbank"
61
 
 
 
 
 
 
 
62
  #: views/help/help.php:55
63
- #@ wpduplicator
64
  msgid "Choose A Section"
65
  msgstr "Wähle eine Rubrik"
66
 
 
67
  #: views/help/help.php:56
68
- #@ wpduplicator
69
  msgid "Quick Start"
70
  msgstr "Schnell-Start"
71
 
 
72
  #: views/help/help.php:57
73
- #@ wpduplicator
74
  msgid "User Guide"
75
  msgstr "Benutzerhandbuch"
76
 
 
77
  #: views/help/help.php:58
78
- #@ wpduplicator
79
  msgid "FAQs"
80
  msgstr "Häufig gestellte Fragen"
81
 
 
82
  #: views/help/help.php:59
83
- #@ wpduplicator
84
  msgid "Change Log"
85
  msgstr "Liste der Änderungen"
86
 
 
87
  #: views/help/help.php:60
88
- #@ wpduplicator
89
  msgid "Product Page"
90
  msgstr "Produkt-Seite"
91
 
92
- #: views/help/help.php:88
93
- #@ wpduplicator
94
- msgid "Approved Hosting"
95
- msgstr "Empfohlene Hosting-Provider"
96
-
97
  #: views/help/help.php:69
98
- #@ wpduplicator
99
  msgid "Online Support"
100
  msgstr "Online Support"
101
 
102
- #: views/help/about.php:64
103
- #@ wpduplicator
104
- msgid "Support Duplicator"
105
- msgstr "Unterstützung Duplicator"
106
 
107
- #: views/help/about.php:71
108
- #@ wpduplicator
109
- msgid "Partner with Us"
110
- msgstr "Unsere Partner"
111
 
112
- #: views/help/about.php:83
113
- #@ wpduplicator
114
- msgid "Keep Active and Online"
115
- msgstr "Bitte unterstütze den Duplicator mit einer Spende"
116
 
117
- #: views/help/about.php:90
118
- #@ wpduplicator
119
- msgid "Leave 5 Stars"
120
- msgstr "Vergebe 5 Sterne"
121
 
122
- #: views/help/about.php:107
123
- #@ wpduplicator
124
- msgid "Spread the Word"
125
- msgstr "Verbreitung des Inhaltes"
126
 
127
- #: views/help/about.php:113
128
- #@ wpduplicator
129
- msgid "Duplicate Your WordPress"
130
- msgstr "Duplizieren dein WordPress"
131
 
132
- #: views/help/about.php:114
133
- #@ wpduplicator
134
- msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
135
- msgstr "Schnelle WordPress-Vervielfältigung von LifeInTheGrid.com"
136
 
137
- #: views/packages/list.base.php:62
138
- #: views/packages/new1.base.php:97
139
- #: views/packages/new2.base.php:69
140
- #: views/packages/new3.base.php:44
141
- #@ wpduplicator
142
- msgid "Create New"
143
- msgstr "Neu erzeugen"
144
 
 
145
  #: views/packages/list-nodata.php:7
146
- #@ wpduplicator
147
  msgid "No Packages Found."
148
  msgstr "Keine Archive gefunden."
149
 
 
 
 
 
 
 
150
  #: views/packages/list-nodata.php:13
151
- #@ wpduplicator
152
  msgid "Please visit the"
153
  msgstr "Bitte besuche die"
154
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  #: views/packages/list-nodata.php:24
156
- #@ wpduplicator
157
  msgid "Older packages prior to 0.5.0 are no longer supported in this version."
158
- msgstr "Ältere Archive (vor 0.5.0) werden in dieser Version nicht mehr unterstützt."
 
159
 
 
160
  #: views/packages/list-nodata.php:27
161
- #@ wpduplicator
162
  msgid "To get an older package please visit the"
163
  msgstr "Bei älteren Archiven besuche bitte die"
164
 
 
165
  #: views/packages/list-nodata.php:29
166
- #@ wpduplicator
167
  msgid "and look for the Change Log link for additional instructions."
168
  msgstr "und suche im Änderungsprotokoll nach weiteren Anweisungen."
169
 
 
170
  #: views/packages/list-nodata.php:33
171
- #@ wpduplicator
172
  msgid "Hide this message"
173
  msgstr "Diese Nachricht ausblenden"
174
 
 
 
 
 
 
 
175
  #: views/packages/list.base.php:50
176
- #@ wpduplicator
177
  msgid "Bulk Actions"
178
  msgstr "Auswahl"
179
 
 
180
  #: views/packages/list.base.php:51
181
- #@ wpduplicator
182
  msgid "Delete selected package(s)"
183
  msgstr "Ausgewählte Archive löschen"
184
 
 
185
  #: views/packages/list.base.php:51
186
- #@ wpduplicator
187
  msgid "Delete"
188
  msgstr "Löschen"
189
 
 
190
  #: views/packages/list.base.php:53
191
- #@ wpduplicator
192
  msgid "Apply"
193
  msgstr "Anwenden"
194
 
 
195
  #: views/packages/list.base.php:58
196
- #@ wpduplicator
197
  msgid "Package Logs"
198
  msgstr "Archiv Logs"
199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  #: views/packages/list.base.php:87
201
- #@ wpduplicator
202
  msgid "Select all packages"
203
  msgstr "Alle Archive auswählen"
204
 
205
- #: views/packages/list.base.php:88
206
- #: views/packages/new3.base.php:108
207
- #@ wpduplicator
208
  msgid "Details"
209
  msgstr "Details"
210
 
 
211
  #: views/packages/list.base.php:89
212
- #@ wpduplicator
213
  msgid "Created"
214
  msgstr "Erstellt"
215
 
216
- #: views/packages/list.base.php:90
217
- #: views/packages/new2.base.php:221
218
- #: views/packages/new2.base.php:323
219
- #@ wpduplicator
220
  msgid "Size"
221
  msgstr "Größe"
222
 
223
- #: views/packages/list.base.php:91
224
- #: views/packages/new1.inc.form.php:6
225
- #: views/packages/new1.inc.form.php:31
226
- #: views/packages/new3.base.php:74
227
- #@ wpduplicator
228
  msgid "Name"
229
  msgstr "Name"
230
 
231
- #: views/packages/list.base.php:93
232
- #: views/settings/general.php:110
233
- #@ wpduplicator
234
  msgid "Package"
235
  msgstr "Archiv"
236
 
 
237
  #: views/packages/list.base.php:124
238
- #@ wpduplicator
239
  msgid "(No Notes Taken)"
240
  msgstr "(Keine Notizen erstellt)"
241
 
242
- #: views/packages/list.base.php:142
243
- #: views/packages/list.base.php:187
244
- #@ wpduplicator
245
  msgid "View"
246
  msgstr "Ansicht"
247
 
248
- #: views/packages/list.base.php:147
249
- #: views/packages/new1.inc.form.php:176
250
  #: views/packages/new3.base.php:79
251
- #@ wpduplicator
252
  msgid "Installer"
253
  msgstr "Installer"
254
 
255
- #: views/packages/list.base.php:150
256
- #: views/packages/new1.inc.form.php:65
257
- #: views/packages/new2.base.php:194
258
- #: views/packages/new3.base.php:83
259
- #@ wpduplicator
260
  msgid "Archive"
261
  msgstr "Archive"
262
 
263
- #: views/packages/list.base.php:155
264
- #: views/packages/list.base.php:200
265
- #: views/settings/general.php:79
266
- #: views/tools/diagnostics.php:141
267
- #: views/tools/diagnostics.php:160
268
- #: views/tools/diagnostics.php:200
269
- #@ wpduplicator
270
  msgid "Version"
271
  msgstr "Version"
272
 
273
- #: views/packages/list.base.php:156
274
- #: views/packages/list.base.php:201
275
- #: views/packages/new1.inc.form.php:195
276
- #: views/tools/diagnostics.php:168
277
- #@ wpduplicator
278
  msgid "User"
279
  msgstr "Benutzer"
280
 
281
- #: views/packages/list.base.php:157
282
- #: views/packages/list.base.php:202
283
- #@ wpduplicator
284
  msgid "Hash"
285
  msgstr "Hash"
286
 
287
- #: views/packages/list.base.php:158
288
- #: views/packages/list.base.php:207
289
- #: views/packages/new1.inc.form.php:8
290
- #: views/packages/new1.inc.form.php:13
291
- #@ wpduplicator
292
  msgid "Notes"
293
  msgstr "Anmerkungen"
294
 
 
295
  #: views/packages/list.base.php:160
296
- #@ wpduplicator
297
  msgid "Links"
298
  msgstr "Links"
299
 
300
- #: views/packages/list.base.php:213
301
- #@ wpduplicator
302
- msgid "View Log"
303
- msgstr "Log ansehen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
 
 
305
  #: views/packages/list.base.php:193
306
- #@ wpduplicator
307
  msgid "View Error Details"
308
  msgstr "Fehler-Details ansehen"
309
 
 
 
 
 
 
 
310
  #: views/packages/list.base.php:210
311
- #@ wpduplicator
312
- msgid "This package has encountered errors. Click 'View Log' for more details. For additional support see the "
313
- msgstr "Es sind Fehler aufgetreten. Klicke auf 'Log ansehen' für weitere Details. Zusätzliche Unterstützung findest du in der "
 
 
 
314
 
 
315
  #: views/packages/list.base.php:211
316
- #@ wpduplicator
317
  msgid "online knowledgebase"
318
  msgstr "Online-Wissensdatenbank"
319
 
320
- #: views/packages/list.base.php:236
321
- #: views/packages/new2.base.php:218
322
- #: views/packages/new2.base.php:317
323
- #@ wpduplicator
324
- msgid "Total Size"
 
 
 
 
325
  msgstr "Gesamte Größe"
326
 
 
327
  #: views/packages/list.base.php:255
328
- #@ wpduplicator
329
  msgid "Download Links"
330
  msgstr "Download Links"
331
 
 
332
  #: views/packages/list.base.php:258
333
- #@ wpduplicator
334
  msgid "The following links contain sensitive data. Please share with caution!"
335
- msgstr "Die folgenden Links enthalten sensible Daten. Bitte verwende sie mit Vorsicht!"
 
 
336
 
 
337
  #: views/packages/list.base.php:264
338
- #@ wpduplicator
339
- msgid "The database SQL script is a quick link to your database backup script. An exact copy is also stored in the package."
340
- msgstr "Das Datenbank-SQL-Skript ist ein direkter Link zum Datenbank-Backup-Skript. Eine exakte Kopie ist auch im Archiv gespeichert."
 
 
 
341
 
 
342
  #: views/packages/list.base.php:287
343
- #@ wpduplicator
344
- msgid "Please select an action from the bulk action drop down menu to perform a specific action."
 
345
  msgstr "Bitte wähle eine Aktion aus dem Dropdown-Menü aus."
346
 
 
347
  #: views/packages/list.base.php:295
348
- #@ wpduplicator
349
  msgid "Please select at least one package to delete."
350
  msgstr "Bitte wähle mindestens ein Archiv zum Löschen."
351
 
 
352
  #: views/packages/list.base.php:299
353
- #@ wpduplicator
354
  msgid "Are you sure, you want to delete the selected package(s)?"
355
  msgstr "Ausgewählte Archive wirklich löschen?"
356
 
 
357
  #: views/packages/list.base.php:333
358
- #@ wpduplicator
359
  msgid "Package File Links"
360
  msgstr "Archiv-Datei Links"
361
 
 
362
  #: views/packages/list.base.php:336
363
- #@ wpduplicator
364
  msgid "DATABASE"
365
  msgstr "Datenbank"
366
 
 
367
  #: views/packages/list.base.php:337
368
- #@ wpduplicator
369
  msgid "PACKAGE"
370
  msgstr "Archive"
371
 
 
372
  #: views/packages/list.base.php:338
373
- #@ wpduplicator
374
  msgid "INSTALLER"
375
  msgstr "INSTALLER"
376
 
 
377
  #: views/packages/list.base.php:339
378
- #@ wpduplicator
379
  msgid "LOG"
380
  msgstr "Log"
381
 
382
- #: views/packages/new1.base.php:86
383
- #: views/packages/new2.base.php:58
 
 
 
 
 
 
 
 
 
 
384
  #: views/packages/new3.base.php:33
385
- #@ wpduplicator
386
  msgid "Setup"
387
  msgstr "Setup"
388
 
389
- #: views/packages/new1.base.php:87
390
- #: views/packages/new2.base.php:59
391
  #: views/packages/new3.base.php:34
392
- #@ wpduplicator
393
  msgid "Scan"
394
  msgstr "Scan"
395
 
396
- #: views/packages/new1.base.php:88
397
- #: views/packages/new2.base.php:60
398
- #: views/packages/new2.base.php:377
399
- #: views/packages/new3.base.php:35
400
- #@ wpduplicator
401
  msgid "Build"
402
  msgstr "Erstellen"
403
 
 
404
  #: views/packages/new1.base.php:91
405
- #@ wpduplicator
406
  msgid "Step 1: Package Setup"
407
  msgstr "Schritt 1: Archiv-Setup"
408
 
 
409
  #: views/packages/new1.base.php:115
410
- #@ wpduplicator
411
  msgid "Requirements:"
412
  msgstr "Anforderungen:"
413
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
  #: views/packages/new1.base.php:169
415
- #@ wpduplicator
416
  msgid "Permissions"
417
  msgstr "Berechtigungen"
418
 
 
419
  #: views/packages/new1.base.php:172
420
- #@ wpduplicator
421
  msgid "Required Paths"
422
  msgstr "Erforderliche Pfade"
423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  #: views/packages/new1.base.php:217
425
- #@ wpduplicator
426
  msgid "Reserved Files"
427
  msgstr "Reservierte Dateien"
428
 
 
 
 
 
 
 
 
 
 
 
 
 
429
  #: views/packages/new1.base.php:224
430
- #@ wpduplicator
431
- msgid "A reserved file(s) was found in the WordPress root directory. Reserved file names are installer.php, installer-data.sql and installer-log.txt. To archive your data correctly please remove any of these files from your WordPress root directory. Then try creating your package again."
432
- msgstr "Es wurden reservierte Datei (en) im WordPress Stammverzeichnis gefunden. Reservierte Dateinamen sind installer.php, installer-data.sql und installer-log.txt. Zum korrekten Archivieren deiner Dateien entferne bitte diese Dateien aus dem WordPress-Stammverzeichnis. Dann versuche erneut, das Archiv zu erstellen."
 
 
 
 
 
 
 
 
433
 
 
434
  #: views/packages/new1.base.php:225
435
- #@ wpduplicator
436
  msgid "Remove Files Now"
437
  msgstr "Dateien werden entfernt"
438
 
439
- #: views/packages/new1.base.php:140
440
- #@ wpduplicator
441
- msgid "Zip Archive Enabled"
442
- msgstr "Zip-Archiv aktiviert"
443
 
444
- #: views/packages/new1.base.php:144
445
- #@ wpduplicator
446
- msgid "Safe Mode Off"
447
- msgstr "Safe Mode Off"
448
 
449
- #: views/packages/new1.base.php:208
450
- #: views/packages/new2.base.php:136
451
- #: views/packages/new2.base.php:148
452
- #@ wpduplicator
453
- msgid "more info"
454
- msgstr "mehr Informationen"
455
 
456
- #: views/packages/new1.base.php:130
457
- #@ wpduplicator
458
- msgid "PHP Support"
459
- msgstr "PHP-Unterstützung"
460
 
461
- #: views/packages/new2.base.php:110
462
- #: views/packages/new2.base.php:116
463
- #: views/tools/diagnostics.php:106
464
- #@ wpduplicator
465
- msgid "Web Server"
466
- msgstr "Webserver"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
467
 
 
468
  #: views/packages/new1.inc.form.php:67
469
- #@ wpduplicator
470
  msgid "File filter enabled"
471
  msgstr "Datei-Filter aktiviert"
472
 
 
473
  #: views/packages/new1.inc.form.php:68
474
- #@ wpduplicator
475
  msgid "Database filter enabled"
476
  msgstr "Datenbank-Filter aktiviert"
477
 
478
- #: views/packages/new1.inc.form.php:77
479
- #: views/packages/new2.base.php:202
480
- #@ wpduplicator
481
  msgid "Files"
482
  msgstr "Dateien"
483
 
484
- #: views/packages/new1.inc.form.php:78
485
- #: views/packages/new1.inc.form.php:191
486
- #: views/packages/new2.base.php:301
487
- #@ wpduplicator
488
  msgid "Database"
489
  msgstr "Datenbank"
490
 
491
- #: views/packages/new1.inc.form.php:94
492
- #: views/packages/new1.inc.form.php:102
493
- #@ wpduplicator
 
 
 
 
494
  msgid "Separate all filters by semicolon"
495
  msgstr "Trenne alle Filter durch ein Semikolon"
496
 
497
- #: views/packages/new1.inc.form.php:94
498
- #: views/packages/new2.base.php:271
499
- #@ wpduplicator
500
  msgid "Directories"
501
  msgstr "Verzeichnisse"
502
 
 
503
  #: views/packages/new1.inc.form.php:96
504
- #@ wpduplicator
505
  msgid "root path"
506
  msgstr "Root-Pfad"
507
 
 
508
  #: views/packages/new1.inc.form.php:97
509
- #@ wpduplicator
510
  msgid "wp-uploads"
511
  msgstr "uploads"
512
 
513
- #: views/packages/new1.inc.form.php:99
514
- #: views/packages/new1.inc.form.php:106
515
- #@ wpduplicator
 
 
 
 
516
  msgid "(clear)"
517
  msgstr "(Löschen)"
518
 
 
519
  #: views/packages/new1.inc.form.php:102
520
- #@ wpduplicator
521
  msgid "File extensions"
522
  msgstr "Datei-Erweiterungen"
523
 
 
524
  #: views/packages/new1.inc.form.php:104
525
- #@ wpduplicator
526
  msgid "media"
527
  msgstr "Medien"
528
 
 
529
  #: views/packages/new1.inc.form.php:105
530
- #@ wpduplicator
531
  msgid "archive"
532
  msgstr "Archive"
533
 
 
534
  #: views/packages/new1.inc.form.php:111
535
- #@ wpduplicator
536
- msgid "The directory paths and extensions above will be be excluded from the archive file if enabled is checked."
537
- msgstr "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei ausgeschlossen."
 
 
 
538
 
 
539
  #: views/packages/new1.inc.form.php:112
540
- #@ wpduplicator
541
  msgid "Use the full path for directories and semicolons to separate all items."
542
- msgstr "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle Elemente zu trennen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
 
 
544
  #: views/packages/new1.inc.form.php:163
545
- #@ wpduplicator
546
- msgid "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!"
547
- msgstr "Ausgewählte Tabellen werden dem Archiv nicht hinzugefügt. Ohne diese Tabellen funktionieren möglicherweise die Website oder Plugins nach der Installation nicht korrekt!"
 
 
 
 
 
548
 
 
549
  #: views/packages/new1.inc.form.php:181
550
- #@ default
551
  msgid "STEP 1 - INPUTS"
552
- msgstr ""
553
 
 
554
  #: views/packages/new1.inc.form.php:184
555
- #@ wpduplicator
556
  msgid "MySQL Server"
557
  msgstr "MySQL-Server"
558
 
 
559
  #: views/packages/new1.inc.form.php:187
560
- #@ wpduplicator
561
  msgid "Host"
562
  msgstr "Host"
563
 
564
- #: views/packages/new1.inc.form.php:199
565
- #@ wpduplicator
 
 
 
 
566
  msgid "Advanced Options"
567
  msgstr "Erweiterte Optionen"
568
 
569
- #: views/packages/new1.inc.form.php:205
570
- #@ wpduplicator
571
  msgid "SSL"
572
  msgstr "SSL"
573
 
574
- #: views/packages/new1.inc.form.php:208
575
- #@ wpduplicator
576
  msgid "Enforce on Admin"
577
  msgstr "Admin erzwingen"
578
 
579
- #: views/packages/new1.inc.form.php:212
580
- #@ wpduplicator
581
  msgid "Enforce on Logins"
582
  msgstr "Logins erzwingen"
583
 
584
- #: views/packages/new1.inc.form.php:216
585
- #@ wpduplicator
586
  msgid "Cache"
587
  msgstr "Cache"
588
 
589
- #: views/packages/new1.inc.form.php:219
590
- #@ wpduplicator
591
  msgid "Keep Enabled"
592
  msgstr "Aktiviert halten"
593
 
594
- #: views/packages/new1.inc.form.php:223
595
- #@ wpduplicator
596
  msgid "Keep Home Path"
597
  msgstr "Startseite Pfad belassen"
598
 
599
- #: views/packages/new1.inc.form.php:231
600
- #@ default
601
  msgid "STEP 2 - INPUTS"
602
- msgstr ""
603
 
604
- #: views/packages/new1.inc.form.php:235
605
- #@ wpduplicator
606
  msgid "New URL"
607
  msgstr "Neue URL"
608
 
609
- #: views/packages/new1.inc.form.php:241
610
- #@ wpduplicator
611
  msgid "The installer can have these fields pre-filled at install time."
612
- msgstr "Das Installationsprogramm kann diese Felder bereits vor der Installation ausgefüllt haben."
 
 
613
 
614
- #: views/packages/new1.inc.form.php:241
615
- #@ wpduplicator
616
  msgid "All values are optional."
617
  msgstr "Alle Werte sind optional."
618
 
619
- #: views/packages/new1.inc.form.php:251
620
- #@ wpduplicator
 
 
 
 
 
621
  msgid "Next"
622
  msgstr "Weiter"
623
 
624
- #: views/packages/new2.base.php:63
625
- #@ wpduplicator
 
 
 
 
 
 
 
 
 
626
  msgid "Step 2: System Scan"
627
  msgstr "Schritt 2: System Scan"
628
 
629
- #: views/packages/new2.base.php:79
630
- #@ wpduplicator
631
  msgid "Scanning Site"
632
  msgstr "Scan Seite"
633
 
634
- #: views/packages/new2.base.php:81
635
- #: views/packages/new3.base.php:57
636
- #@ wpduplicator
637
  msgid "Please Wait..."
638
  msgstr "Bitte warten..."
639
 
640
- #: views/packages/new2.base.php:87
641
- #@ wpduplicator
642
  msgid "Scan Complete"
643
  msgstr "Scan vollständig"
644
 
645
- #: views/packages/new2.base.php:89
646
- #@ wpduplicator
647
- msgid "Scan checks are not required to pass, however they could cause issues on some systems."
648
- msgstr "Scan-Checks sind nicht unbedingt erforderlich, können jedoch auf einigen Systemen Probleme verursachen."
 
 
 
 
 
 
 
 
 
649
 
650
- #: views/packages/new2.base.php:99
651
- #@ wpduplicator
652
  msgid "Server"
653
  msgstr "Server"
654
 
655
- #: views/packages/new2.base.php:101
656
- #: views/tools/controller.php:17
657
- #@ wpduplicator
658
  msgid "Diagnostics"
659
  msgstr "Diagnose"
660
 
661
- #: views/packages/new2.base.php:133
662
- #@ wpduplicator
 
 
 
 
 
 
 
 
 
 
 
 
 
 
663
  msgid "Open Base Dir"
664
  msgstr "Open Base Dir"
665
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  #: views/packages/new2.base.php:183
667
- #@ wpduplicator
668
  msgid "Cache Path"
669
  msgstr "Cache-Pfad"
670
 
671
- #: views/packages/new2.base.php:207
672
- #: views/packages/new2.base.php:306
673
- #@ wpduplicator
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
674
  msgid "Enabled"
675
  msgstr "Aktiviert"
676
 
677
- #: views/packages/new2.base.php:222
678
- #@ wpduplicator
679
  msgid "File Count"
680
  msgstr "Dateianzahl"
681
 
682
- #: views/packages/new2.base.php:223
683
- #@ wpduplicator
684
  msgid "Directory Count"
685
  msgstr "Verzeichnisanzahl"
686
 
687
- #: views/packages/new2.base.php:234
688
- #@ wpduplicator
689
- msgid "Invalid Names"
690
- msgstr "Ungültige Namen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
 
692
- #: views/packages/new2.base.php:249
693
- #@ wpduplicator
694
  msgid "Large Files"
695
  msgstr "Große Dateien"
696
 
697
- #: views/packages/new2.base.php:321
698
- #@ wpduplicator
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
699
  msgid "Tables"
700
  msgstr "Tabellen"
701
 
702
- #: views/packages/new2.base.php:322
703
- #@ wpduplicator
704
  msgid "Records"
705
  msgstr "Aufzeichnungen"
706
 
707
- #: views/packages/new2.base.php:325
708
- #@ wpduplicator
709
  msgid "repair and optimization"
710
  msgstr "Reparatur und Optimierung"
711
 
712
- #: views/packages/new2.base.php:338
713
- #@ wpduplicator
714
- msgid "Table Details"
715
- msgstr "Tabellen-Details"
716
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
  #: views/packages/new2.base.php:349
718
- #@ wpduplicator
 
 
 
 
719
  msgid "Name:"
720
  msgstr "Name:"
721
 
722
- #: views/packages/new2.base.php:350
723
- #@ wpduplicator
724
  msgid "Host:"
725
  msgstr "Host:"
726
 
727
- #: views/packages/new2.base.php:351
728
- #@ wpduplicator
729
  msgid "Build Mode:"
730
  msgstr "Erstellungs-Modus:"
731
 
732
- #: views/packages/new2.base.php:362
733
- #@ wpduplicator
734
  msgid "Scan Error"
735
  msgstr "Scan Fehler"
736
 
737
- #: views/packages/new2.base.php:363
738
- #@ wpduplicator
739
  msgid "Please try again!"
740
  msgstr "Bitte nochmals versuchen!"
741
 
742
- #: views/packages/new2.base.php:365
743
- #: views/packages/new3.base.php:111
744
- #@ wpduplicator
745
  msgid "Server Status:"
746
  msgstr "Server Status:"
747
 
748
- #: views/packages/new2.base.php:368
749
- #: views/packages/new3.base.php:115
750
- #@ wpduplicator
751
  msgid "Error Message:"
752
  msgstr "Fehler-Meldung:"
753
 
754
- #: views/packages/new2.base.php:375
755
- #@ wpduplicator
756
  msgid "Back"
757
  msgstr "Zurück"
758
 
759
- #: views/packages/new2.base.php:376
760
- #@ wpduplicator
761
  msgid "Rescan"
762
  msgstr "Erneuter Scan"
763
 
764
- #: views/packages/new2.base.php:463
765
- #@ wpduplicator
766
  msgid "Unable to report on any tables"
767
  msgstr "Kein Bericht über die Tabellen"
768
 
769
- #: views/packages/new2.base.php:472
770
- #@ wpduplicator
771
  msgid "Unable to report on database stats"
772
  msgstr "Kein Bericht zum Datenbank-Status"
773
 
774
- #: views/packages/new2.base.php:487
775
- #@ wpduplicator
776
- msgid "No name length issues."
777
- msgstr "Keine lange oder ungültige Namen."
778
 
779
- #: views/packages/new2.base.php:490
780
- #: views/packages/new2.base.php:498
781
- #@ wpduplicator
782
  msgid "FILE"
783
  msgstr "Datei"
784
 
785
- #: views/packages/new2.base.php:495
786
- #@ wpduplicator
 
 
 
 
787
  msgid "No large files found."
788
  msgstr "Keine großen Dateien gefunden."
789
 
 
790
  #: views/packages/new3.base.php:38
791
- #@ wpduplicator
792
  msgid "Step 3: Build Package"
793
  msgstr "Schritt 3: Archiv erstellen"
794
 
 
795
  #: views/packages/new3.base.php:55
796
- #@ wpduplicator
797
  msgid "Building Package"
798
  msgstr "Archiv erstellen"
799
 
 
800
  #: views/packages/new3.base.php:58
801
- #@ wpduplicator
802
  msgid "Keep this window open during the build process."
803
  msgstr "Lass dieses Fenster während der Archiv-Erstellung geöffnet."
804
 
 
805
  #: views/packages/new3.base.php:59
806
- #@ wpduplicator
807
  msgid "This may take several minutes."
808
  msgstr "Dies kann einige Minuten dauern."
809
 
 
810
  #: views/packages/new3.base.php:63
811
- #@ wpduplicator
812
  msgid "Build Status"
813
  msgstr "Erstellungs-Status"
814
 
 
815
  #: views/packages/new3.base.php:70
816
- #@ wpduplicator
817
  msgid "Package Completed"
818
  msgstr "Archiv komplett"
819
 
 
820
  #: views/packages/new3.base.php:75
821
- #@ wpduplicator
822
  msgid "Process Time"
823
  msgstr "Verarbeitungszeit"
824
 
825
- #: views/packages/list.base.php:61
826
- #: views/packages/new1.base.php:96
827
- #: views/packages/new2.base.php:68
828
- #: views/packages/new3.base.php:43
829
- #: views/packages/new3.base.php:89
830
- #@ wpduplicator
831
- msgid "All Packages"
832
- msgstr "Alle Archive"
 
 
 
 
 
 
 
 
 
 
 
833
 
 
834
  #: views/packages/new3.base.php:106
835
- #@ wpduplicator
836
  msgid "Try Again"
837
  msgstr "Nochmals versuchen"
838
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
839
  #: views/packages/new3.base.php:136
840
- #@ wpduplicator
841
  msgid "Package Log"
842
  msgstr "Archiv Log"
843
 
844
- #: views/settings/controller.php:22
845
- #: views/tools/diagnostics.php:87
846
- #@ wpduplicator
847
  msgid "General"
848
  msgstr "Allgemein"
849
 
850
- #: views/tools/diagnostics.php:18
851
- #: views/tools/diagnostics.php:19
852
- #@ wpduplicator
853
- msgid "unknow"
854
- msgstr "unbekannt"
855
-
856
- #: views/tools/diagnostics.php:39
857
- #@ wpduplicator
858
- msgid "Plugin settings reset."
859
- msgstr "Plugin-Einstellungen zurücksetzen."
860
-
861
- #: views/tools/diagnostics.php:40
862
- #@ wpduplicator
863
- msgid "View state settings reset."
864
- msgstr "Statuseinstellungen zurücksetzen."
865
-
866
- #: views/tools/diagnostics.php:41
867
- #@ wpduplicator
868
- msgid "Active package settings reset."
869
- msgstr "Aktive Archiv-Einstellungen zurücksetzen."
870
-
871
- #: views/tools/cleanup.php:12
872
- #: views/tools/diagnostics.php:44
873
- #@ wpduplicator
874
- msgid "Legacy data removed."
875
- msgstr "Daten entfernt."
876
-
877
- #: views/tools/diagnostics.php:81
878
- #@ wpduplicator
879
- msgid "Server Settings"
880
- msgstr "Server-Einstellungen"
881
-
882
- #: views/tools/diagnostics.php:90
883
- #@ wpduplicator
884
- msgid "Duplicator Version"
885
- msgstr "Duplicator-Version"
886
-
887
- #: views/tools/diagnostics.php:94
888
- #@ wpduplicator
889
- msgid "Operating System"
890
- msgstr "Betriebs-System"
891
-
892
- #: views/tools/diagnostics.php:110
893
- #@ wpduplicator
894
- msgid "APC Enabled"
895
- msgstr "APC Aktiviert"
896
-
897
- #: views/tools/diagnostics.php:114
898
- #@ wpduplicator
899
- msgid "Root Path"
900
- msgstr "Root-Pfad"
901
-
902
- #: views/tools/diagnostics.php:122
903
- #@ wpduplicator
904
- msgid "Plugins Path"
905
- msgstr "Plugin-Pfad"
906
-
907
- #: views/tools/diagnostics.php:126
908
- #@ wpduplicator
909
- msgid "Loaded PHP INI"
910
- msgstr "Geladene PHP-INI"
911
-
912
- #: views/tools/diagnostics.php:145
913
- #@ wpduplicator
914
- msgid "Langugage"
915
- msgstr "Sprache"
916
-
917
- #: views/tools/diagnostics.php:149
918
- #: views/tools/diagnostics.php:204
919
- #@ wpduplicator
920
- msgid "Charset"
921
- msgstr "Zeichensatz"
922
-
923
- #: views/tools/diagnostics.php:153
924
- #@ wpduplicator
925
- msgid "Memory Limit "
926
- msgstr "Speicher-Limit "
927
-
928
- #: views/tools/diagnostics.php:154
929
- #@ wpduplicator
930
- msgid "Max"
931
- msgstr "Max"
932
-
933
- #: views/tools/diagnostics.php:172
934
- #@ wpduplicator
935
- msgid "Safe Mode"
936
- msgstr "Safe Mode"
937
-
938
- #: views/tools/diagnostics.php:176
939
- #@ wpduplicator
940
- msgid "On"
941
- msgstr "An"
942
-
943
- #: views/tools/diagnostics.php:176
944
- #@ wpduplicator
945
- msgid "Off"
946
- msgstr "Aus"
947
-
948
- #: views/tools/diagnostics.php:181
949
- #@ wpduplicator
950
- msgid "Memory Limit"
951
- msgstr "Speicher-Limit"
952
-
953
- #: views/tools/diagnostics.php:185
954
- #@ wpduplicator
955
- msgid "Memory In Use"
956
- msgstr "Verwendeter Arbeitsspeicher"
957
-
958
- #: views/packages/new2.base.php:140
959
- #: views/tools/diagnostics.php:189
960
- #@ wpduplicator
961
- msgid "Max Execution Time"
962
- msgstr "Maximale Ausführungs-Zeit"
963
-
964
- #: views/tools/diagnostics.php:193
965
- #@ wpduplicator
966
- msgid "Shell Exec"
967
- msgstr "Shell Exec"
968
 
969
- #: views/tools/diagnostics.php:194
970
- #@ wpduplicator
971
- msgid "Is Supported"
972
- msgstr "Wird unterstützt"
973
 
974
- #: views/tools/diagnostics.php:194
975
- #@ wpduplicator
976
- msgid "Not Supported"
977
- msgstr "Nicht unterstützt"
978
 
979
- #: views/tools/diagnostics.php:208
980
- #@ wpduplicator
981
- msgid "Wait Timeout"
982
- msgstr "Wartezeitsperre"
983
 
984
- #: views/tools/diagnostics.php:212
985
- #@ wpduplicator
986
- msgid "Max Allowed Packets"
987
- msgstr "Maximal erlaubte Pakete"
988
 
989
- #: views/tools/diagnostics.php:216
990
- #@ wpduplicator
991
- msgid "msyqldump Path"
992
- msgstr "msyqldump Pfad"
993
 
994
- #: views/tools/diagnostics.php:220
995
- #@ wpduplicator
996
- msgid "Server Disk"
997
- msgstr "Server-Festplatte"
998
 
999
- #: views/tools/diagnostics.php:223
1000
- #@ hyper-cache
1001
- msgid "Free space"
1002
  msgstr ""
 
 
1003
 
1004
- #: views/tools/diagnostics.php:226
1005
- #@ wpduplicator
1006
- msgid "Note: This value is the physical servers hard-drive allocation."
1007
- msgstr "Hinweis: Dieser Wert ist die physische Server-Festplatte-Verteilung."
1008
 
1009
- #: views/tools/diagnostics.php:227
1010
- #@ wpduplicator
1011
- msgid "On shared hosts check your control panel for the 'TRUE' disk space quota value."
1012
- msgstr "Überprüfe auf freigegebenen Hosts deines Control Panels für den 'TRUE' Disk Space Quote Wert."
 
 
1013
 
1014
- #: views/tools/diagnostics.php:243
1015
- #@ wpduplicator
1016
- msgid "Stored Data"
1017
- msgstr "Gespeicherte Daten"
1018
 
1019
- #: views/tools/diagnostics.php:248
1020
- #@ wpduplicator
1021
- msgid "Options Values"
1022
- msgstr "Options Werte"
 
 
 
 
1023
 
1024
- #: views/tools/diagnostics.php:281
1025
- #@ wpduplicator
1026
- msgid "PHP Information"
1027
- msgstr "PHP-Information"
1028
 
1029
- #: views/tools/diagnostics.php:300
1030
- #@ wpduplicator
1031
- msgid "Delete this option value"
1032
- msgstr "Lösche den optionalen Wert"
1033
 
1034
- #: views/settings/general.php:6
1035
- #@ wpduplicator
1036
- msgid "Settings Saved"
1037
- msgstr "Einstellungen gespeichert"
1038
 
1039
- #: views/settings/general.php:86
1040
- #@ wpduplicator
1041
- msgid "Delete Plugin Settings"
1042
- msgstr "Plugin-Einstellungen löschen"
 
1043
 
 
1044
  #: views/settings/general.php:147
1045
- #@ wpduplicator
1046
  msgid "This server does not have shell_exec configured to run."
1047
  msgstr "Dieser Server ist nicht zur Ausführung von shell_exec konfiguriert."
1048
 
 
1049
  #: views/settings/general.php:149
1050
- #@ wpduplicator
1051
  msgid "Please contact the server administrator to enable this feature."
1052
- msgstr "Bitte kontaktiere den Server-Administrator, um diese Funktion zu aktivieren."
 
1053
 
 
1054
  #: views/settings/general.php:154
1055
- #@ wpduplicator
1056
  msgid "Use mysqldump"
1057
  msgstr "Benutze mysqldump"
1058
 
 
1059
  #: views/settings/general.php:155
1060
- #@ wpduplicator
1061
  msgid "recommended for large databases"
1062
  msgstr "für große Datenbanken empfohlen"
1063
 
 
1064
  #: views/settings/general.php:160
1065
- #@ wpduplicator
1066
  msgid "Working Path:"
1067
  msgstr "Arbeits-Pfad"
1068
 
 
 
 
 
 
 
 
 
 
 
 
 
1069
  #: views/settings/general.php:171
1070
- #@ wpduplicator
1071
  msgid "Add Custom Path:"
1072
  msgstr "Benutzer-Pfad hinzufügen"
1073
 
 
1074
  #: views/settings/general.php:175
1075
- #@ wpduplicator
1076
  msgid "This is the path to your mysqldump program."
1077
  msgstr "Das ist der Pfad zu deinem mysqldump-Programm."
1078
 
 
1079
  #: views/settings/general.php:184
1080
- #@ wpduplicator
1081
  msgid "Package Debug"
1082
  msgstr "Fehlerbeseitigung Archiv"
1083
 
 
1084
  #: views/settings/general.php:187
1085
- #@ wpduplicator
1086
  msgid "Show Package Debug Status in Packages Screen"
1087
  msgstr "Zeige Fehlerstatus des Archives in der Anzeige"
1088
 
1089
- #: views/settings/general.php:227
1090
- #@ wpduplicator
1091
- msgid "Save Settings"
1092
- msgstr "Einstellungen speichern"
1093
 
1094
- #: views/tools/cleanup.php:8
1095
- #@ wpduplicator
1096
- msgid "Installer File Cleanup Ran."
1097
- msgstr "Installations-Dateien gelöscht."
1098
 
1099
- #: views/tools/cleanup.php:73
1100
- #@ wpduplicator
1101
- msgid "If the installer files did not successfully get removed, then you WILL need to remove them manually"
1102
- msgstr "Wenn die Installationsdateien nicht vollständig erfolgreich entfernt wurden, dann müssen sie manuell gelöscht werden"
1103
 
1104
- #: views/tools/cleanup.php:74
1105
- #@ wpduplicator
1106
- msgid "Please remove all installer files to avoid leaving open security issues on your server"
1107
- msgstr "Bitte entferne alle Installationsdateien aus Sicherheitsgründen von deinem Server"
1108
 
1109
- #: views/tools/cleanup.php:82
1110
- #@ wpduplicator
1111
- msgid "Data Cleanup"
1112
- msgstr "Daten gelöscht"
1113
 
1114
- #: views/tools/cleanup.php:85
1115
- #@ wpduplicator
1116
- msgid "Delete Reserved Files"
1117
- msgstr "Lösche reservierte Dateien"
1118
 
1119
- #: views/tools/cleanup.php:86
1120
- #@ wpduplicator
1121
- msgid "Removes all installer files from a previous install"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1122
  msgstr "Entferne alle Installations-Dateien der früheren Installation."
1123
 
 
1124
  #: views/tools/cleanup.php:89
1125
- #@ wpduplicator
1126
  msgid "Delete Legacy Data"
1127
  msgstr "Lösche übernommene Daten"
1128
 
 
1129
  #: views/tools/cleanup.php:90
1130
- #@ wpduplicator
1131
  msgid "Removes all legacy data and settings prior to version"
1132
  msgstr "Entfernt alle übernommenen Daten und Einstellungen vor Version"
1133
 
 
 
 
 
 
 
 
 
 
 
 
1134
  #: views/tools/cleanup.php:107
1135
  #, php-format
1136
- #@ wpduplicator
1137
  msgid "This action will remove all legacy settings prior to version %1$s. "
1138
- msgstr "Diese Aktion wird alle alten Einstellungen vor Version %1$s entfernen. "
 
1139
 
 
1140
  #: views/tools/cleanup.php:108
1141
- #@ wpduplicator
1142
- msgid "Legacy settings are only needed if you plan to migrate back to an older version of this plugin."
1143
- msgstr "Frühere Einstellungen werden nur benötigt, wenn du zu einer älteren Version des Plugins zurückgehst."
 
 
 
1144
 
 
 
 
 
 
 
 
 
 
 
1145
  #: views/tools/controller.php:16
1146
- #@ wpduplicator
1147
  msgid "Logging"
1148
  msgstr "Logging"
1149
 
 
1150
  #: views/tools/controller.php:18
1151
- #@ wpduplicator
1152
  msgid "Cleanup"
1153
  msgstr "Löschen"
1154
 
1155
- #: views/tools/logging.php:140
1156
- #@ wpduplicator
1157
- msgid "Log file not found or unreadable"
1158
- msgstr "Log-Datei nicht gefunden oder nicht lesbar"
1159
-
1160
- #: views/tools/logging.php:144
1161
- #@ wpduplicator
1162
- msgid "Reasons for log file not showing"
1163
- msgstr "Die Gründe für die Log-Datei werden nicht angezeigt"
1164
-
1165
- #: views/tools/logging.php:145
1166
- #@ wpduplicator
1167
- msgid "The web server does not support returning .log file extentions"
1168
- msgstr "Der Webserver unterstützt keine .log-Datei-Erweiterungen"
1169
-
1170
- #: views/tools/logging.php:146
1171
- #@ wpduplicator
1172
- msgid "The snapshots directory does not have the correct permissions to write files. Try setting the permissions to 755"
1173
- msgstr "In das Verzeichnis wp-snapshots kann nicht geschrieben werden. Bitte setze die Berechtigung auf 755"
1174
-
1175
- #: views/tools/logging.php:147
1176
- #@ wpduplicator
1177
- msgid "The process that PHP runs under does not have enough permissions to create files. Please contact your hosting provider for more details"
1178
- msgstr "Der Prozess hat nicht genügend Berechtigungen, um Dateien zu erstellen. Bitte kontaktiere deinen Hosting-Provider für weitere Informationen"
1179
-
1180
- #: views/tools/logging.php:156
1181
- #: views/tools/logging.php:161
1182
- #@ wpduplicator
1183
- msgid "Options"
1184
- msgstr "Optionen"
1185
-
1186
- #: views/tools/logging.php:163
1187
- #@ wpduplicator
1188
- msgid "Refresh"
1189
- msgstr "Neu laden"
1190
-
1191
- #: views/tools/logging.php:168
1192
- #@ wpduplicator
1193
- msgid "Auto Refresh"
1194
- msgstr "Automatisch neu laden"
1195
 
1196
- #: views/tools/logging.php:174
1197
- #@ wpduplicator
1198
- msgid "Last 20 Logs"
1199
- msgstr "Letzte 20 Logs"
1200
 
1201
- #: views/packages/list.base.php:205
1202
- #@ wpduplicator
1203
- msgid "Unrecoverable Error! Please remove this package."
1204
- msgstr "Nicht behebbarer Fehler! Bitte lösche das Paket."
1205
 
1206
- #: views/packages/new2.base.php:127
1207
- #@ wpduplicator
1208
- msgid "PHP Settings"
1209
- msgstr "PHP-Einstellungen"
1210
 
1211
- #: views/packages/new2.base.php:253
1212
- #, php-format
1213
- #@ wpduplicator
1214
- msgid "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."
1215
- msgstr "Große Dateien wie Filme oder andere Archiv-Daten können zu Problemen mit Timeouts führen. Die aktuelle Prüfung für große Dateien ist %1$s pro Datei. Wenn es zu Problemen beim Erstellen des Archives kommt, bitte diese Dateien mit dem Filter ausschließen und manuell auf die neue Position verschieben."
1216
 
1217
- #: views/packages/new2.base.php:326
1218
- #, php-format
1219
- #@ wpduplicator
1220
- msgid "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."
1221
- msgstr "Gesamtgröße und Zeilenanzahl für alle Datenbank-Tabellen sind Richtwerte. Die Schwellenwerte, die Warnungen auslösen, sind %1$s und %2$s Datensätze. Große Datenbanken benötigen mehr Zeit bei der Verarbeitung und können zu Problemen mit Server-Timeout und Speichereinstellungen führen. Ausführen einer %3$s auf der Datenbank können auch dazu beitragen, die Gesamtgröße und Leistung zu verbessern. Wenn der Server shell_exec und mysqldump unterstützt, kannst du versuchen, diese Option aus dem Menü Einstellungen zu aktivieren."
1222
 
1223
- #: views/packages/new3.base.php:100
1224
- #@ wpduplicator
1225
- msgid "Build Interrupt"
1226
- msgstr "Erstellung unterbrochen"
1227
 
1228
- #: views/packages/new3.base.php:101
1229
- #@ wpduplicator
1230
- msgid "The current build has experienced an issue."
1231
- msgstr "Die aktuelle Version hat ein Problem."
1232
 
1233
- #: views/packages/new3.base.php:122
1234
- #@ wpduplicator
1235
- msgid "Notice"
1236
- msgstr "Anmerkung"
1237
 
1238
- #: views/packages/new3.base.php:125
1239
- #@ default
1240
- msgid "Build Folder:"
1241
- msgstr ""
1242
 
1243
- #: views/packages/new3.base.php:127
1244
- #@ wpduplicator
1245
- msgid "Some servers close connections quickly; yet the build can continue to run in the background. To validate if a build is still running; open the 'tmp' folder above and see if the archive file is growing in size. If it is not then your server has strict timeout constraints. Please visit the support page for additional resources."
1246
- msgstr "Einige Server schließen die Verbindungen schnell, doch die Erstellung kann auch weiterhin im Hintergrund laufen. Um zu prüfen ob derProzess noch läuft, öffnen den 'tmp'-Ordner um zu sehen, ob die Archivdatei in der Größe wächst. Wenn nicht, hat der Server strenge Beschränkungen im Timeout. Bitte besuche die Support-Seite für weitere Lösungen."
1247
 
 
1248
  #: views/tools/diagnostics.php:118
1249
- #@ wpduplicator
1250
  msgid "ABSPATH"
1251
  msgstr "ABSPATH"
1252
 
1253
- #: views/settings/general.php:75
1254
- #@ wpduplicator
1255
- msgid "Plugin"
1256
- msgstr "Plugin"
1257
 
1258
- #: views/settings/general.php:114
1259
- #@ wpduplicator
1260
- msgid "Archive Flush"
1261
- msgstr ""
1262
 
1263
- #: views/settings/general.php:117
1264
- #@ wpduplicator
1265
- msgid "Attempt Network Keep Alive"
1266
- msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren"
1267
 
1268
- #: views/settings/general.php:118
1269
- #@ wpduplicator
1270
- msgid "recommended only for large archives"
1271
- msgstr "nur empfohlen für große Archive"
1272
 
1273
- #: views/settings/general.php:120
1274
- #@ wpduplicator
1275
- msgid "This will attempt to keep a network connection established for large archives."
1276
- msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren."
1277
 
1278
- #: views/settings/general.php:125
1279
- #@ wpduplicator
1280
- msgid "Database Build"
1281
- msgstr "Datenbank erstellen"
1282
 
1283
- #: views/settings/general.php:166
1284
- #@ wpduplicator
1285
- msgid "Mysqldump was not found at its default location or the location provided. Please enter a path to a valid location where mysqldump can run. If the problem persist contact your server administrator."
1286
- msgstr "Mysqldump wurde nicht an der Standardposition gefunden. Bitte gib den Pfad zu einem gültigen Ort ein, an dem mysqldump ausgeführt werden kann. Sollte das Problem bestehen bleiben, kontaktiere den Server-Administrator."
1287
 
1288
- #: views/packages/new1.base.php:13
1289
- #@ wpduplicator
1290
- msgid "Package settings have been reset."
1291
- msgstr "Archiveinstellungen wurden zurückgesetzt."
1292
 
1293
- #: views/packages/new1.inc.form.php:10
1294
- #@ wpduplicator
1295
- msgid "Create a new default name"
1296
- msgstr "Erstelle einen neuen Standardnamen"
1297
 
1298
- #: views/packages/new1.inc.form.php:250
1299
- #@ wpduplicator
1300
- msgid "Reset"
1301
- msgstr "Zurücksetzen"
1302
 
1303
- #: views/packages/new1.inc.form.php:263
1304
- #@ wpduplicator
1305
- msgid "This will reset all of the current package settings. Would you like to continue?"
1306
- msgstr "Dies wird alle aktuellen Archiveinstellungen zurückzusetzen. Möchtest Du fortfahren?"
1307
 
1308
- #: views/packages/new2.base.php:240
1309
- #: views/packages/new2.base.php:255
1310
- #@ wpduplicator
1311
- msgid "Show Paths"
1312
- msgstr "Zeige Pfade"
1313
 
1314
- #: views/tools/logging.php:142
1315
- #@ wpduplicator
1316
- msgid "Try to create a package, since no log files were found in the snapshots directory with the extension *.log"
1317
- msgstr "Versuche ein Archiv zu erstellen, da keine Log-Dateien im Snapshots-Verzeichnis mit der Endung *. Log gefunden wurden"
1318
 
1319
- #: views/packages/list.base.php:340
1320
- #@ wpduplicator
1321
- msgid "REPORT"
1322
- msgstr "Bericht"
1323
 
1324
- #: views/packages/new1.inc.form.php:124
1325
- #@ wpduplicator
1326
- msgid "checked tables are excluded"
1327
- msgstr "Markierte Tabellen sind ausgeschlossen"
1328
 
1329
- #: views/packages/new1.inc.form.php:129
1330
- #@ wpduplicator
1331
- msgid "Include All"
1332
- msgstr "Alle einschliessen"
1333
 
1334
- #: views/packages/new1.inc.form.php:130
1335
- #@ wpduplicator
1336
- msgid "Exclude All"
1337
- msgstr "Alle ausschliessen"
1338
 
1339
- #: views/packages/new2.base.php:90
1340
- #@ wpduplicator
1341
- msgid "Process Time:"
1342
- msgstr "Verarbeitungs-Dauer"
1343
 
1344
- #: views/packages/new2.base.php:135
1345
- #@ wpduplicator
1346
- msgid "The Duplicator may have issues when [open_basedir] is enabled. Please work with your server administrator to disable this value in the php.ini file if you’re having issues building a package."
1347
- msgstr "Der Duplicator kann Probleme haben, wenn [open_basedir] aktiviert ist. Bitte frage den Server-Administrator, ob dieser Wert in der php.ini-Datei deaktiviert werden kann."
1348
 
1349
- #: views/packages/new2.base.php:144
1350
- #, php-format
1351
- #@ wpduplicator
1352
- msgid "The Duplicator will have issues when the [max_execution_time] value in the php.ini is low. Timeouts effect how long a process is allowed to run. The recommended timeout is \"%1$s\" seconds. An attempt is made to override this value if the server allows it. Please work with your server administrator to make sure there are no restrictions for how long a PHP process is allowed to run."
1353
- msgstr "Der Duplicator wird Probleme haben, wenn der Wert [max_execution_time] in der php.ini ist gering. Der Timeout-Wert gibt an, wie lange ein Prozess ausgeführt werden darf. Die empfohlene Timeout ist \"%1$s\" Sekunden. Es wird versucht, diesen Wert zu überschreiben, wenn es der Server erlaubt. Bitte frage den Server-Administrator nach den Einschränkungen für den PHP-Prozess."
1354
 
1355
- #: views/packages/new2.base.php:147
1356
- #@ wpduplicator
1357
- msgid "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."
1358
- msgstr "Hinweis: Timeouts können auch am Web-Server eingestellt werden, so dass bei PHP-Timeout der Prozess abgebrochen wird. Wenn die Verarbeitungszeit begrenzt ist, nutze Datenbank-oder Dateifilter, um die Größe des Gesamtpakets schrumpfen. Bitte beachte, dass falsche Einstellungen dazu führen können, dass die Anwendung nicht mehr richtig funktioniert."
1359
 
1360
- #: views/packages/new2.base.php:238
1361
- #@ wpduplicator
1362
- msgid "Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 250 characters and illegal characters that may not work on all operating systems such as * ? > < : / \\ | . It is recommended to remove or filter these files before building the archive or else you might have issues at install time."
1363
- msgstr "Ungültige Datei-oder Ordnernamen können bei einigen Umgebungen zu Problemen führen. Ungültige Dateinamen bestehen aus Längen über 250 Zeichen und illegalen Zeichen, die nicht auf allen Betriebssystemen wie * ? > < : / \\ | arbeiten können. Es wird empfohlen, diese Dateien vor dem Erstellen des Archivs zu entfernen oder durch Filtereinstellungen auszublenden."
1364
 
1365
- #: views/tools/cleanup.php:16
1366
- #@ wpduplicator
1367
- msgid "Build cache removed."
1368
- msgstr "Cache-Dateien entfernt"
 
 
 
 
1369
 
1370
- #: views/tools/cleanup.php:93
1371
- #@ wpduplicator
1372
- msgid "Clear Build Cache"
1373
- msgstr "Cache löschen"
1374
-
1375
- #: views/tools/cleanup.php:94
1376
- #@ wpduplicator
1377
- msgid "Removes all build data from:"
1378
- msgstr "Entferne alle Daten von:"
1379
-
1380
- #: views/tools/cleanup.php:120
1381
- #@ wpduplicator
1382
- msgid "This process will remove all build cache files. Be sure no packages are currently building or else they will be cancelled."
1383
- msgstr "Dieser Vorgang wird alle erstellten Cache-Dateien entfernen. Bitte stelle sicher, dass derzeit keine neuen Cache-Dateien erstellt werden."
1384
-
1385
- #: views/packages/new2.base.php:118
1386
- #@ wpduplicator
1387
- msgid "The Duplicator currently works with these web servers:"
1388
- msgstr "Der Duplicator arbeitet derzeit mit diesen Web-Servern:"
1389
-
1390
- #: views/packages/list.base.php:39
1391
- #@ wpduplicator
1392
- msgid "Help Support Duplicator"
1393
- msgstr "Duplicator-Hilfe"
1394
-
1395
- #: views/packages/list.base.php:165
1396
- #@ wpduplicator
1397
- msgid "Open Scan Report"
1398
- msgstr "Scan-Bericht öffnen"
1399
-
1400
- #: views/packages/list.base.php:166
1401
- #@ wpduplicator
1402
- msgid "View Package Object"
1403
- msgstr "Paket ansehen"
1404
-
1405
- #: views/packages/new1.inc.form.php:90
1406
- #@ wpduplicator
1407
- msgid "Enable File Filters"
1408
- msgstr "Dateifilter aktivieren"
1409
-
1410
- #: views/packages/new1.inc.form.php:123
1411
- #@ wpduplicator
1412
- msgid "Enable Table Filters"
1413
- msgstr "Tabellen-Filter aktivieren"
1414
-
1415
- #: views/packages/new2.base.php:158
1416
- #@ wpduplicator
1417
- msgid "WordPress Settings"
1418
- msgstr "WordPress-Einstellungen"
1419
-
1420
- #: views/packages/new2.base.php:164
1421
- #@ wpduplicator
1422
- msgid "WordPress Version"
1423
- msgstr "WordPress-Version"
1424
-
1425
- #: views/packages/new2.base.php:166
1426
- #@ wpduplicator
1427
- msgid "It is recommended to have a version of WordPress that is greater that "
1428
- msgstr "Es wird empfohlen, eine höhere Version von Wordpress zu nutzen: "
1429
-
1430
- #: views/packages/new2.base.php:172
1431
- #@ wpduplicator
1432
- msgid "Found"
1433
- msgstr "Gefunden"
1434
-
1435
- #: views/packages/new2.base.php:172
1436
- #@ wpduplicator
1437
- msgid "Missing"
1438
- msgstr "Vermisst"
1439
-
1440
- #: views/packages/new2.base.php:174
1441
- #@ wpduplicator
1442
- msgid "Core Files"
1443
- msgstr "Core-Dateien"
1444
-
1445
- #: views/packages/new2.base.php:176
1446
- #@ wpduplicator
1447
- msgid "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."
1448
- msgstr "Wenn der Scanner die Datei wp-config.php im Root-Verzeichnis nicht findet, muss sie manuell an die neue Position manuell kopiert werden."
1449
-
1450
- #: views/packages/new2.base.php:184
1451
- #@ wpduplicator
1452
- msgid "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."
1453
- msgstr "Cache-Daten werden zu Probleme bei der Installation führen und erhöhen die Archivgröße. Es wird empfohlen, das Cache-Verzeichnis bei der Erstellung zu leeren. Vorsicht beim Entfernen von Daten aus dem Cache-Verzeichnis. Beachte die Dokumentation des Cache-Plugins zum entleeren. Das einfache Entfernen von Dateien kann möglicherweise zu Fehlern auf der Website führen. "
1454
-
1455
- #: views/packages/new2.base.php:185
1456
- #@ wpduplicator
1457
- msgid "The cache size minimum threshold is currently set at "
1458
- msgstr "Die minimale Cache-Schwelle ist derzeit festgelegt auf "
1459
-
1460
- #: views/packages/new2.base.php:265
1461
- #@ wpduplicator
1462
- msgid "View Filters"
1463
- msgstr "Filter anzeigen"
1464
-
1465
- #: views/packages/new2.base.php:268
1466
- #@ wpduplicator
1467
- msgid "Below is a list of the directories and file extension that will be excluded from the archive."
1468
- msgstr "Unten ist eine Liste der Verzeichnisse und Dateierweiterung, die aus dem Archiv ausgeschlossen werden."
1469
-
1470
- #: views/packages/new2.base.php:276
1471
- #@ wpduplicator
1472
- msgid "No directory filters have been set."
1473
- msgstr "Es sind keine Verzeichnisfilter eingestellt."
1474
-
1475
- #: views/packages/new2.base.php:281
1476
- #@ wpduplicator
1477
- msgid "File Extensions"
1478
- msgstr "Datei-Erweiterungen"
1479
-
1480
- #: views/packages/new2.base.php:286
1481
- #@ wpduplicator
1482
- msgid "No file extension filters have been set."
1483
- msgstr "Keine Dateierweiterungs-Filter gesetzt."
1484
-
1485
- #: views/settings/general.php:83
1486
- #@ wpduplicator
1487
- msgid "Uninstall"
1488
- msgstr "Deinstallieren"
1489
-
1490
- #: views/settings/general.php:89
1491
- #@ wpduplicator
1492
- msgid "Delete Entire Storage Directory"
1493
- msgstr "Speicher-Verzeichnisse vollständig löschen"
1494
-
1495
- #: views/packages/new1.inc.form.php:23
1496
- #: views/settings/general.php:94
1497
- #@ wpduplicator
1498
- msgid "Storage"
1499
- msgstr "Speicher"
1500
-
1501
- #: views/settings/general.php:96
1502
- #@ wpduplicator
1503
- msgid "Full Path"
1504
- msgstr "Vollständiger Pfad"
1505
-
1506
- #: views/settings/general.php:99
1507
- #@ wpduplicator
1508
- msgid "Disable .htaccess File In Storage Directory"
1509
- msgstr ".htaccess-Datei im Speicher-Verzeichnis deaktivieren"
1510
-
1511
- #: views/settings/general.php:101
1512
- #@ wpduplicator
1513
- msgid "Disable if issues occur when downloading installer/archive files."
1514
- msgstr "Deaktivieren, wenn beim Download von Installer / Archivdateien Probleme auftreten."
1515
-
1516
- #: classes/ui.php:111
1517
- #@ wpduplicator
1518
- msgid "Reserved Duplicator install file(s) still exists in the root directory. Please delete these file(s) to avoid possible security issues."
1519
- msgstr "Reservierte Duplicator Installationsdatei(en) sind noch im Root-Verzeichnis vorhanden. Bitte lösche diese Datei (en), um mögliche Sicherheitsprobleme zu vermeiden."
1520
-
1521
- #: duplicator.php:100
1522
- #@ wpduplicator
1523
- msgid "Get Help"
1524
- msgstr "Hilfe bekommen"
1525
-
1526
- #: duplicator.php:100
1527
- #: duplicator.php:189
1528
- #: views/help/help.php:29
1529
- #@ wpduplicator
1530
- msgid "Help"
1531
- msgstr "Hilfe"
1532
-
1533
- #: duplicator.php:101
1534
- #@ wpduplicator
1535
- msgid "Support the Plugin"
1536
- msgstr "Unterstütze das Plugin"
1537
-
1538
- #: duplicator.php:101
1539
- #: duplicator.php:193
1540
- #: views/help/about.php:41
1541
- #@ wpduplicator
1542
- msgid "About"
1543
- msgstr "Über"
1544
-
1545
- #: views/help/about.php:54
1546
- #@ wpduplicator
1547
- msgid "Created for Admins, Developers and Designers the Duplicator can streamline your workflows and help you quickly clone a WordPress application. Migrating a WordPress site manually can be very time consuming. The Duplicator was made to help you speed up the migration process. Please help us to continue the development effort of this plugin."
1548
- msgstr "Erstellt für Admins, Entwickler und Designer, die mit dem Duplicator Ihre Arbeitsabläufe optimieren und eine Wordpress-Anwendung schnell klonen können. Die manuell Migration eines Wordpress-Seite kann sehr zeitaufwendig sein. Der Duplicator wurde entwickelt, um den Migrationsprozess zu beschleunigen. Bitte unterstütze uns, um die Entwicklung des Plugins weiter zu führen."
1549
-
1550
- #: views/help/help.php:38
1551
- #@ wpduplicator
1552
- msgid "Migrating WordPress is a complex process and the logic to make all the magic happen smoothly may not work quickly with every site. With over 30,000 plugins and a very complex server eco-system some migrations may run into issues. This is why the Duplicator includes a detailed knowledgebase that can help with many common issues. Resources to additional support, approved hosting, and alternatives to fit your needs can be found below."
1553
- msgstr "Die Migration von Wordpress ist ein komplexer Prozess. Mit über 30.000 installierbaren Plugins kann es zu Problemen kommen. Deshalb enthält der Duplicator eine detaillierte Wissensdatenbank, in welcher zahlreiche Fehler beschrieben sind. Weitere Unterstützung, Hosting und Alternativen sind unten zu finden."
1554
-
1555
- #: views/help/help.php:53
1556
- #@ wpduplicator
1557
- msgid "Complete Online Documentation"
1558
- msgstr "Vollständige Online-Dokumentation"
1559
-
1560
- #: views/help/help.php:76
1561
- #@ wpduplicator
1562
- msgid "Get Support!"
1563
- msgstr "Unterstützung bekommen!"
1564
-
1565
- #: views/help/help.php:91
1566
- #@ wpduplicator
1567
- msgid "Servers That Work With Duplicator"
1568
- msgstr "Server, welche mit dem Duplicator problemlos zusammenarbeiten"
1569
-
1570
- #: views/help/help.php:94
1571
- #@ wpduplicator
1572
- msgid "Trusted Providers!"
1573
- msgstr "Vertrauenswürdige Provider!"
1574
-
1575
- #: views/help/help.php:104
1576
- #@ wpduplicator
1577
- msgid "Alternatives"
1578
- msgstr "Alternativen"
1579
-
1580
- #: views/help/help.php:107
1581
- #@ wpduplicator
1582
- msgid "Other Commercial Resources"
1583
- msgstr "Andere kommerzielle Angebote"
1584
-
1585
- #: duplicator.php:197
1586
- #: views/help/gopro.php:37
1587
- #@ wpduplicator
1588
- msgid "Go Pro!"
1589
- msgstr "Zur Pro-Version wechseln!"
1590
-
1591
- #: views/packages/list-nodata.php:14
1592
- #: views/packages/list-nodata.php:28
1593
- #: views/packages/new1.base.php:234
1594
- #@ wpduplicator
1595
- msgid "help page"
1596
- msgstr "Hilfe-Seiten"
1597
-
1598
- #: views/packages/list-nodata.php:15
1599
- #@ wpduplicator
1600
- msgid "for additional support"
1601
- msgstr "für weitere Unterstützung"
1602
-
1603
- #: views/packages/new1.base.php:136
1604
- #@ wpduplicator
1605
- msgid "PHP Version"
1606
- msgstr "PHP-Version"
1607
-
1608
- #: views/packages/new1.base.php:148
1609
- #: views/packages/new1.base.php:152
1610
- #: views/packages/new1.base.php:156
1611
- #@ wpduplicator
1612
- msgid "Function"
1613
- msgstr "Funktion"
1614
-
1615
- #: views/packages/new1.base.php:161
1616
- #@ wpduplicator
1617
- msgid "PHP versions 5.2.17+ or higher is required. Please note that in versioning logic a value such as 5.2.9 is less than 5.2.17. For compression to work the ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in this section please contact your hosting provider or server administrator. For additional information see our online documentation."
1618
- msgstr "PHP-Versionen 5.2.17+ oder höher ist erforderlich. Bitte beachte, dass in der Versionslogik ein Wert wie 5.2.9 weniger ist als 5.2.17. Für die Kompression ist die ZipArchive-Erweiterung für PHP ist erforderlich. Der Safe Mode sollte auf 'Aus' in dir php.ini-Datei eingestellt werden (veraltet ab PHP 5.3.0). Für weitere Fragen in diesem Abschnitt wende dich an deinen Hosting-Provider oder Serveradministrator. Weitere Informationen befinden sich auf unserer Online-Dokumentation."
1619
-
1620
- #: views/packages/new1.base.php:183
1621
- #@ wpduplicator
1622
- msgid "Permissions can be difficult to resolve on some systems. If the plugin can not read the above paths here are a few things to try. 1) Set the above paths to have permissions of 755 for directories and 644 for files. You can temporarily try 777 however, be sure you don’t leave them this way. 2) Check the owner/group settings for both files and directories. The PHP script owner and the process owner are different. The script owner owns the PHP script but the process owner is the user the script is running as, thus determining its capabilities/privileges in the file system. For more details contact your host or server administrator or visit the 'Help' menu under Duplicator for additional online resources."
1623
- msgstr "Berechtigungen sind auf einigen Systemen nur schwer zu ändern. Wenn das Plugin die oben genannten Pfade nicht lesen kann, versuche folgendes. 1) Setze die Berechtigungen für Verzeichnisse auf 755 und für Dateien auf 644. Versuche es ggf. vorübergehend mit 777. 2) Prüfe den Eigentümer / Gruppeneinstellungen für Dateien und Verzeichnissen. Das PHP-Skript und ein FTP-Benutzer erfordern unterschiedliche Eigentümer. Der Skript Eigentümer besitzt das PHP-Skript, aber der Prozess-Besitzer ist der Benutzer, welcher das Skript ausführt. Für weitere Informationen wende dich Host- oder Server-Administrator oder besuche das \\\"Hilfe\\\"-Menü unter Duplicator für zusätzliche Online-Ressourcen."
1624
-
1625
- #: views/packages/new1.base.php:191
1626
- #@ wpduplicator
1627
- msgid "Server Support"
1628
- msgstr "Server-Support"
1629
-
1630
- #: views/packages/new1.base.php:197
1631
- #@ wpduplicator
1632
- msgid "MySQL Version"
1633
- msgstr "MySQL-Version"
1634
-
1635
- #: views/packages/new1.base.php:201
1636
- #@ wpduplicator
1637
- msgid "MySQLi Support"
1638
- msgstr "MySQLi-Support"
1639
-
1640
- #: views/packages/new1.base.php:207
1641
- #@ wpduplicator
1642
- msgid "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note the trailing 'i') is also required. Contact your server administrator and request that mysqli extension and MySQL Server 5.0+ be installed. Please note in future versions support for other databases and extensions will be added."
1643
- msgstr "MySQL-Version 5.0 oder höher und die PHP MySQLi-Erweiterung (beachte das ergänzende \\\"i\\\") ist ebenfalls erforderlich. Kontaktiere deinen Server-Administrator und verlange, dass mysqli-Erweiterung und MySQL Server 5.0 und höher installiert werden. Bitte beachte, dass in zukünftigen Versionen Unterstützung für andere Datenbanken und Erweiterungen hinzugefügt werden."
1644
-
1645
- #: views/packages/new1.base.php:221
1646
- #@ wpduplicator
1647
- msgid "None of the reserved files (installer.php, installer-data.sql and installer-log.txt) where found from a previous install. This means you are clear to create a new package."
1648
- msgstr "Es wurden keine reservierte Dateien (installer.php, installer-data.sql und installer-log.txt) von einer früheren Installation gefunden. Ein neues Paket kann nun erstellt werden."
1649
-
1650
- #: views/packages/new1.base.php:234
1651
- #@ wpduplicator
1652
- msgid "For additional help please see the "
1653
- msgstr "Weitere Hilfe befindet sich in der "
1654
-
1655
- #: views/packages/new3.base.php:103
1656
- #@ wpduplicator
1657
- msgid "Please try the process again."
1658
- msgstr "Bitte versuche den Vorgang erneut."
1659
-
1660
- #: views/tools/diagnostics.php:130
1661
- #@ wpduplicator
1662
- msgid "Server IP"
1663
- msgstr "Server-IP"
1664
-
1665
- #: views/tools/diagnostics.php:134
1666
- #@ wpduplicator
1667
- msgid "Client IP"
1668
- msgstr "Client-IP"
1669
-
1670
- #: classes/utility.php:236
1671
- #@ wpduplicator
1672
- msgid "You do not have sufficient permissions to access this page."
1673
- msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu betreten."
1674
-
1675
- #: views/help/about.php:131
1676
- #@ wpduplicator
1677
- msgid "Get More Great Tools"
1678
- msgstr "Hole dir mehr großartige Anwendungen..."
1679
-
1680
- #: views/settings/general.php:195
1681
- #@ wpduplicator
1682
- msgid "Roles & Capabilities"
1683
- msgstr "Rollen & Funktionen"
1684
-
1685
- #: views/settings/general.php:200
1686
- #@ wpduplicator
1687
- msgid "Custom Roles"
1688
- msgstr "Benutzerdefinierte Rollen"
1689
-
1690
- #: views/settings/general.php:203
1691
- #@ wpduplicator
1692
- msgid "Enable User Role Editor Plugin Integration"
1693
- msgstr "Ermöglicht User Role Editor Plugin Integration"
1694
-
1695
- #: views/settings/general.php:210
1696
- #@ wpduplicator
1697
- msgid "The User Role Editor Plugin"
1698
- msgstr "Das User Role Editor Plugin"
1699
-
1700
- #: views/settings/general.php:211
1701
- #@ wpduplicator
1702
- msgid "Free"
1703
- msgstr "Free"
1704
-
1705
- #: views/settings/general.php:212
1706
- #@ wpduplicator
1707
- msgid "or"
1708
- msgstr "oder"
1709
-
1710
- #: views/settings/general.php:213
1711
- #@ wpduplicator
1712
- msgid "Professional"
1713
- msgstr "Professional"
1714
-
1715
- #: views/settings/general.php:214
1716
- #@ wpduplicator
1717
- msgid "must be installed to use"
1718
- msgstr "muss installiert werden zur Benutzung"
1719
-
1720
- #: views/settings/general.php:215
1721
- #@ wpduplicator
1722
- msgid "this feature."
1723
- msgstr "dieser Option."
1724
-
1725
- #: views/help/gopro.php:46
1726
- #@ wpduplicator
1727
- msgid "Duplicator Pro Has Arrived!"
1728
- msgstr "Duplicator Pro ist da!"
1729
-
1730
- #: views/help/gopro.php:49
1731
- #@ wpduplicator
1732
- msgid "The simplicity of Duplicator"
1733
- msgstr "Die Einfachheit des Duplicators"
1734
-
1735
- #: views/help/gopro.php:50
1736
- #@ wpduplicator
1737
- msgid "with the power the professional requires."
1738
- msgstr "mit der professionellen Unterstützung."
1739
-
1740
- #: views/help/gopro.php:57
1741
- #@ wpduplicator
1742
- msgid "Duplicator Free"
1743
- msgstr "Duplicator Free"
1744
-
1745
- #: views/help/gopro.php:60
1746
- #: views/help/gopro.php:88
1747
- #@ wpduplicator
1748
- msgid "Backup Files &amp; Database"
1749
- msgstr "Backup Dateien &amp; Datenbank"
1750
-
1751
- #: views/help/gopro.php:61
1752
- #: views/help/gopro.php:89
1753
- #@ wpduplicator
1754
- msgid "Compresses all your WordPress files and database into a compressed snapshot archive file."
1755
- msgstr "Komprimiert alle Wordpress-Dateien und die Datenbank in eine Snapshot-Archivdatei."
1756
-
1757
- #: views/help/gopro.php:64
1758
- #: views/help/gopro.php:92
1759
- #@ wpduplicator
1760
- msgid "Directory Filters"
1761
- msgstr "Verzeichnisfilter"
1762
-
1763
- #: views/help/gopro.php:65
1764
- #: views/help/gopro.php:93
1765
- #@ wpduplicator
1766
- msgid "Filter out the directories and file extensions you want to include/exclude in your in your archive file."
1767
- msgstr "Filtern der Verzeichnisse und Dateierweiterungen, welche in die Archivdatei eingeschlossen/ausgeschlossen werden."
1768
-
1769
- #: views/help/gopro.php:68
1770
- #: views/help/gopro.php:96
1771
- #@ wpduplicator
1772
- msgid "Database Table Filters"
1773
- msgstr "Datenbanktabellen-Filter"
1774
-
1775
- #: views/help/gopro.php:69
1776
- #: views/help/gopro.php:97
1777
- #@ wpduplicator
1778
- msgid "Filter out only the database tables you want to include/exclude in your database creation script."
1779
- msgstr "Nur eingeschlossene / ausgeschlossene Datenbanktabellen zur Erstellung des Datenbankscripts verwenden."
1780
-
1781
- #: views/help/gopro.php:72
1782
- #: views/help/gopro.php:100
1783
- #@ wpduplicator
1784
- msgid "Migration Wizard"
1785
- msgstr "Migrations-Assistent"
1786
-
1787
- #: views/help/gopro.php:73
1788
- #: views/help/gopro.php:101
1789
- #@ wpduplicator
1790
- msgid "With just two files (archive &amp; installer.php) move your site to a new location."
1791
- msgstr "Mit nur zwei Dateien (Archiv und installer.php) installiere die Website auf eine neue Position."
1792
-
1793
- #: views/help/gopro.php:85
1794
- #: views/packages/new1.inc.form.php:50
1795
- #@ wpduplicator
1796
- msgid "Duplicator Pro"
1797
- msgstr "Duplicator Pro"
1798
-
1799
- #: views/help/gopro.php:104
1800
- #@ wpduplicator
1801
- msgid "Scheduled Backups"
1802
- msgstr "Geplante Sicherungen"
1803
-
1804
- #: views/help/gopro.php:105
1805
- #@ wpduplicator
1806
- msgid "Automate the creation of your packages to run at various scheduled intervals."
1807
- msgstr "Die Erstellung der Pakete kann automatisiert an verschiedenen geplanten Intervallen ausgeführt werden."
1808
-
1809
- #: views/help/gopro.php:108
1810
- #@ wpduplicator
1811
- msgid "Dropbox Support"
1812
- msgstr "Dropbox-Unterstützung"
1813
-
1814
- #: views/help/gopro.php:109
1815
- #@ wpduplicator
1816
- msgid "Backup up your entire site to Dropbox."
1817
- msgstr "Sichern der gesamten Website in die Dropbox."
1818
-
1819
- #: views/help/gopro.php:112
1820
- #@ wpduplicator
1821
- msgid "FTP Support"
1822
- msgstr "FTP-Unterstützung"
1823
-
1824
- #: views/help/gopro.php:113
1825
- #@ wpduplicator
1826
- msgid "Backup up your entire site to an FTP server."
1827
- msgstr "Sichern der gesamten Website auf einen FTP-Server."
1828
-
1829
- #: views/help/gopro.php:116
1830
- #@ wpduplicator
1831
- msgid "Customer Support"
1832
- msgstr "Benutzer-Unterstützung"
1833
-
1834
- #: views/help/gopro.php:117
1835
- #@ wpduplicator
1836
- msgid "Server setups can be quite complex, with pro you get prompt help to get your site backed up and moved."
1837
- msgstr "Server-Setups können recht komplex sein. Mit der Pro-Version gibt es schnelle Hilfe, um die Website zu sichern bzw. zu verschieben."
1838
-
1839
- #: views/help/gopro.php:124
1840
- #@ wpduplicator
1841
- msgid "Check It Out!"
1842
- msgstr "Probiere es aus!"
1843
-
1844
- #: views/help/help.php:72
1845
- #@ wpduplicator
1846
- msgid "Get Help From IT Professionals"
1847
- msgstr "Erhalte Hilfe von IT-Spezialisten"
1848
-
1849
- #: views/help/help.php:110
1850
- #@ wpduplicator
1851
- msgid "Pro Solutions!"
1852
- msgstr "Pro-Version!"
1853
-
1854
- #: views/packages/list-nodata.php:8
1855
- #@ wpduplicator
1856
- msgid "Click the 'Create New' button to build a package."
1857
- msgstr "Zum Erstellen eines Pakets auf \"Neu erzeugen\" klicken."
1858
-
1859
- #: views/packages/list.base.php:161
1860
- #@ wpduplicator
1861
- msgid "SQL"
1862
- msgstr "SQL"
1863
-
1864
- #: views/packages/list.base.php:162
1865
- #@ wpduplicator
1866
- msgid "Log"
1867
- msgstr "Log"
1868
 
1869
- #: views/packages/new1.base.php:124
1870
- #@ wpduplicator
1871
- msgid "System requirements must pass for the Duplicator to work properly. Click each link for details."
1872
- msgstr "Damit der Duplicator richtig funktioniert, müssen die Systemanforderungen erfüllt sein. Klicken auf jeden beliebigen Link für weitere Details."
1873
 
1874
- #: views/packages/new1.inc.form.php:32
1875
- #@ wpduplicator
1876
- msgid "Type"
1877
- msgstr "Typ"
1878
 
1879
- #: views/packages/new1.inc.form.php:33
1880
- #@ wpduplicator
1881
- msgid "Location"
1882
- msgstr "Ort"
1883
 
1884
- #: views/packages/new1.inc.form.php:38
1885
- #@ wpduplicator
1886
- msgid "Default"
1887
- msgstr "Vorgabe"
1888
 
1889
- #: views/packages/new1.inc.form.php:39
1890
- #@ wpduplicator
1891
- msgid "Local"
1892
- msgstr "Lokal"
 
 
 
 
1893
 
1894
- #: views/packages/new1.inc.form.php:45
1895
- #@ wpduplicator
1896
- msgid "All packages including the archive, installer and SQL script are stored in the location above. "
1897
- msgstr "Alle Dateien einschließlich des Archivs, Installer und SQL-Skript sind im Ordner oberhalb gespeichert. "
1898
 
1899
- #: views/packages/new1.inc.form.php:48
1900
- #@ wpduplicator
1901
- msgid "Dropbox, FTP and other multiple storage options available in "
1902
- msgstr "Dropbox, FTP und weitere Speicheroptionen sind verfügbar in "
1903
 
1904
- #: views/packages/new1.inc.form.php:98
1905
- #@ wpduplicator
1906
- msgid "cache"
1907
- msgstr "Cache"
 
 
 
 
1908
 
1909
- #: views/packages/new2.base.php:225
1910
- #, php-format
1911
- #@ wpduplicator
1912
- msgid "Total size represents all files minus any filters that have been setup. The current thresholds that trigger warnings are %1$s for the entire site and %2$s for large files."
1913
- msgstr "Die Gesamtgröße entspricht allen Dateien abzüglich der im Filter festgelegten Elemente. Die aktuellen Grenzwerte, die Warnungen auslösen, sind %1$s für die gesamte Site und %2$s für große Dateien."
 
 
 
1914
 
1915
- #: views/packages/new3.base.php:105
1916
- #@ wpduplicator
1917
- msgid "Diagnose"
1918
- msgstr "Diagnose"
1919
 
1920
- #: views/settings/general.php:128
1921
- #@ wpduplicator
1922
- msgid "Use PHP"
1923
- msgstr "Benutze PHP"
1924
 
1925
- #: views/settings/general.php:131
1926
- #@ wpduplicator
1927
- msgid "Query Limit Size"
1928
- msgstr "Abfragelimit-Größe"
1929
 
1930
- #: views/settings/general.php:140
1931
- #@ wpduplicator
1932
- msgid "higher values speed up build times but uses more memory"
1933
- msgstr "Höhere Werte beschleunigen die Erstellung, aber sie benötigen mehr Speicher"
1934
 
1935
- #: views/tools/diagnostics.php:98
1936
- #@ wpduplicator
1937
- msgid "Timezone"
1938
- msgstr "Zeitzone"
1939
 
1940
- #: views/tools/diagnostics.php:102
1941
- #@ wpduplicator
1942
- msgid "Server Time"
1943
- msgstr "Serverzeit"
1944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 CHANGED
Binary file
lang/wpduplicator-fa_IR.po CHANGED
@@ -1,96 +1,79 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: 0.5.16\n"
4
- "POT-Creation-Date: 2015-04-30 19:20+0330\n"
5
- "PO-Revision-Date: 2015-04-30 19:35+0330\n"
6
- "Last-Translator: Moslem Fallah Niat <Info@amoozesh98.com>\n"
 
7
  "Language-Team: Amoozesh98.com <Amoozesh98@gmail.com | Info@Amoozesh98.com>\n"
8
  "Language: fa_IR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.4\n"
13
- "X-Poedit-Basepath: C:\\xampp\\htdocs\\www.wordpress.org\\wp-content\\plugins"
14
- "\\duplicator\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n;_n_noop;_\n"
18
- "X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\www.wordpress.org\\wp-content"
19
- "\\plugins\\duplicator\n"
20
-
21
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/ui.php:111
 
 
 
 
 
22
  msgid ""
23
  "Reserved Duplicator install file(s) still exists in the root directory. "
24
  "Please delete these file(s) to avoid possible security issues."
25
  msgstr ""
26
 
27
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/ui.php:112
28
  msgid "Remove file(s) now"
29
  msgstr "پاک کردن پرونده"
30
 
31
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/ui.php:113
32
  msgid "Dismiss this notice"
33
  msgstr "نمایش ندادن این پیام"
34
 
35
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/utility.php:236
36
  msgid "You do not have sufficient permissions to access this page."
37
  msgstr ""
38
 
39
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:100
40
  msgid "Get Help"
41
  msgstr "رفتن به راهنما"
42
 
43
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:100
44
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:189
45
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:29
46
  msgid "Help"
47
  msgstr "راهنما"
48
 
49
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:101
50
  msgid "Support the Plugin"
51
  msgstr "پشتیبان افزونه"
52
 
53
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:101
54
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:193
55
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:41
56
  msgid "About"
57
  msgstr "درباره"
58
 
59
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:173
60
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/inc.header.php:9
61
- msgid "Duplicator"
62
- msgstr "ایجاد کننده بسته نصبی"
63
-
64
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:177
65
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/controller.php:74
66
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:235
67
  msgid "Packages"
68
  msgstr "بسته های نصبی"
69
 
70
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:181
71
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/controller.php:19
72
  msgid "Settings"
73
  msgstr "تنظیمات"
74
 
75
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:185
76
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:13
77
  msgid "Tools"
78
  msgstr "ابزارها"
79
 
80
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:197
81
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:36
82
- msgid "Go Pro!"
83
- msgstr "نسخه تجاری!"
84
-
85
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:244
86
  msgid "Manage"
87
  msgstr "مدیریت"
88
 
89
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/installer/build/view.step1.php:388
90
- msgid "PHP Version:"
91
- msgstr "نسخه پی اچ پی"
92
-
93
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/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. "
@@ -103,155 +86,142 @@ msgstr ""
103
  "بسیار وقت گیر است. تکثیر شده است برای کمک به شما سرعت بخشیدن به فرایند "
104
  "انتقال. لطفا کمک به ما برای ادامه تلاش توسعه این پلاگین."
105
 
106
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:64
107
  msgid "Support Duplicator"
108
  msgstr "پشتیبان ایجاد کننده بسته نصبی"
109
 
110
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:71
111
  msgid "Partner with Us"
112
  msgstr "همکاری با ما"
113
 
114
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:83
115
  msgid "Keep Active and Online"
116
  msgstr "نگه دارید فعال و آنلاین"
117
 
118
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:90
119
  msgid "Leave 5 Stars"
120
  msgstr ""
121
 
122
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:107
123
  msgid "Spread the Word"
124
  msgstr "ارتقا دهید (لطفا!)"
125
 
126
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:113
127
  msgid "Duplicate Your WordPress"
128
  msgstr "تولید بسته آسان نصبی وردپرس"
129
 
130
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:114
131
  msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
132
  msgstr ""
133
 
134
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:131
135
  msgid "Get More Great Tools"
136
  msgstr "دریافت ابزارهای بیشتر"
137
 
138
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:46
139
- msgid "Backup and Move Made Easy!"
140
- msgstr "پشتیبان گیری و حرکت آسان ساخته شده!"
 
 
 
 
141
 
142
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:47
143
- msgid "The top-rated Duplicator plugin is going professional!"
144
- msgstr "دارای امتیاز بالا تکثیر پلاگین حرفه ای می گذرد!"
 
 
 
 
145
 
146
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:56
147
  msgid "Duplicator Free"
148
  msgstr "ایجاد کننده بسته نصبی رایگان"
149
 
150
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:61
151
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:95
152
  msgid "Backup Files &amp; Database"
153
  msgstr "فایل های پشتیبان و پایگاه داده"
154
 
155
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:62
156
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:96
157
  msgid ""
158
  "Compresses all your WordPress files and database into a compressed snapshot "
159
  "archive file."
160
  msgstr ""
161
 
162
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:65
163
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:99
164
  msgid "Directory Filters"
165
  msgstr "فیلتر های پوشه"
166
 
167
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:66
168
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:100
169
  msgid ""
170
  "Filter out the directories and file extensions you want to include/exclude "
171
  "in your in your archive file."
172
  msgstr ""
173
 
174
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:69
175
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:103
176
  msgid "Database Table Filters"
177
  msgstr "فعال کردن فیلتر های جدول"
178
 
179
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:70
180
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:104
181
  msgid ""
182
  "Filter out only the database tables you want to include/exclude in your "
183
  "database creation script."
184
  msgstr ""
185
 
186
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:73
187
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:107
188
  msgid "Migration Wizard"
189
  msgstr "برنامه جادویی انتقال"
190
 
191
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:74
192
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:108
193
  msgid ""
194
  "With just two files (archive &amp; installer.php) move your site to a new "
195
  "location."
196
  msgstr ""
197
 
198
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:89
199
  msgid "Duplicator Pro"
200
  msgstr "ایجاد کننده بسته نصبی تجاری یا همان پولی"
201
 
202
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:111
203
- msgid "Schedules"
204
- msgstr "زمان‌بندی"
205
 
206
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:112
207
  msgid ""
208
  "Automate the creation of your packages to run at various scheduled intervals."
209
  msgstr ""
210
 
211
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:115
212
- msgid "Custom Templates"
213
- msgstr "قالب های سفارشی"
214
-
215
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:116
216
- msgid ""
217
- "Customize how each package is created and built with a customized template."
218
  msgstr ""
219
 
220
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:119
221
- msgid "Cloud Storage"
222
- msgstr "ذخیره سازی ابری"
223
-
224
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:120
225
- msgid ""
226
- "Backup up your entire package to the cloud with access to services like FTP "
227
- "and Dropbox."
228
  msgstr ""
229
 
230
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:123
231
- msgid "Queued Processing"
232
- msgstr "صف پردازش"
233
 
234
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:124
235
- msgid ""
236
- "Enable the build of larger more complex packages and avoid server timeouts "
237
- "with queued processing."
238
  msgstr ""
239
 
240
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:127
241
  msgid "Customer Support"
242
  msgstr "پشتیبانی 24 ساعته"
243
 
244
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:128
245
  msgid ""
246
  "Server setups can be quite complex, with pro you get prompt help to get your "
247
  "site backed up and moved."
248
  msgstr ""
249
 
250
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:136
251
  msgid "Check It Out!"
252
  msgstr "بررسی"
253
 
254
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:38
255
  msgid ""
256
  "Migrating WordPress is a complex process and the logic to make all the magic "
257
  "happen smoothly may not work quickly with every site. With over 30,000 "
@@ -267,403 +237,368 @@ msgstr ""
267
  "از مسائل مشترک کمک کند. منابع برای حمایت از اضافی، میزبانی تایید، و جایگزین "
268
  "های مناسب نیازهای شما می تواند زیر آمده است."
269
 
270
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:50
271
  msgid "Knowledgebase"
272
  msgstr "مرکز آموزش"
273
 
274
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:53
275
  msgid "Complete Online Documentation"
276
  msgstr "مستندات کامل آنلاین"
277
 
278
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:55
279
  msgid "Choose A Section"
280
  msgstr "یک بخش را انتخاب کنید"
281
 
282
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:56
283
  msgid "Quick Start"
284
  msgstr "شروع سریع"
285
 
286
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:57
287
  msgid "User Guide"
288
  msgstr "راهنمای کاربر"
289
 
290
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:58
291
  msgid "FAQs"
292
  msgstr "پرسش و پاسخ"
293
 
294
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:59
295
  msgid "Change Log"
296
  msgstr "تغییر گزارشات"
297
 
298
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:60
299
  msgid "Product Page"
300
  msgstr "صفحه محصولات"
301
 
302
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:69
303
  msgid "Online Support"
304
  msgstr "پشتیبانی آنلاین"
305
 
306
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:72
307
  msgid "Get Help From IT Professionals"
308
  msgstr "کمک گرفتن از حرفه ای های IT"
309
 
310
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:76
311
  msgid "Get Support!"
312
  msgstr "گرفتن پشتیبانی"
313
 
314
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:88
315
  msgid "Approved Hosting"
316
  msgstr "هاستینگ های تایید شده"
317
 
318
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:91
319
  msgid "Servers That Work With Duplicator"
320
  msgstr "سرور های هاستینگی که از افزونه ایجاد کننده بسته نصبی پشتیبانی می کنند"
321
 
322
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:94
323
  msgid "Trusted Providers!"
324
  msgstr "ارائه دهندگان خدمات قابل اعتماد!"
325
 
326
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:104
327
  msgid "Alternatives"
328
  msgstr "جایگزین"
329
 
330
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:107
331
  msgid "Other Commercial Resources"
332
  msgstr "سایر منابع تجاری"
333
 
334
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:110
335
  msgid "Pro Solutions!"
336
  msgstr "راه حل های حرفه ای!"
337
 
338
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:7
339
  msgid "No Packages Found."
340
  msgstr "هیچ بسته آسان نصبی وجود ندارد."
341
 
342
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:8
343
  msgid "Click the 'Create New' button to build a package."
344
  msgstr ""
345
  "برای ایجاد بسته آسان نصبی از دکمه بالای صفحه یعنی ( ایجاد بسته آسان نصبی "
346
  "جدید ) استفاده نمایید."
347
 
348
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:13
349
  msgid "Please visit the"
350
  msgstr "در صورت نیاز لطفا از "
351
 
352
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:14
353
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:28
354
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:231
355
  msgid "help page"
356
  msgstr "صفحه راهنما"
357
 
358
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:15
359
  msgid "for additional support"
360
  msgstr ""
361
  "برای پیشتیبانی بیشتر استفاده کنید.<p>برای رفتن به صفحه راهنما از منو های "
362
  "داخل افزونه کپی کننده به گزینه راهنما مراجعه نمایید!</p>"
363
 
364
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:24
365
  msgid "Older packages prior to 0.5.0 are no longer supported in this version."
366
  msgstr ""
367
 
368
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:27
369
  msgid "To get an older package please visit the"
370
  msgstr ""
371
 
372
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:29
373
  msgid "and look for the Change Log link for additional instructions."
374
  msgstr ""
375
 
376
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:33
377
  msgid "Hide this message"
378
  msgstr "این پیغام را ببند"
379
 
380
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:39
381
  msgid "Help Support Duplicator"
382
  msgstr "پشتیبان ایجاد کننده بسته نصبی"
383
 
384
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:50
385
  msgid "Bulk Actions"
386
  msgstr "انجام عملیات کلی"
387
 
388
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:51
389
  msgid "Delete selected package(s)"
390
  msgstr "حذف بسته های نصبی انتخاب شده(s)"
391
 
392
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:51
393
  msgid "Delete"
394
  msgstr "حذف"
395
 
396
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:53
397
  msgid "Apply"
398
  msgstr "اعمال"
399
 
400
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:58
401
  msgid "Package Logs"
402
  msgstr "گزارش بسته نصبی"
403
 
404
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:61
405
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:91
406
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:68
407
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:43
408
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:89
409
  msgid "All Packages"
410
  msgstr "تمام بسته های نصبی"
411
 
412
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:62
413
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:92
414
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:69
415
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:44
416
  msgid "Create New"
417
  msgstr "ایجاد بسته نصبی جدید"
418
 
419
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:87
420
  msgid "Select all packages"
421
  msgstr "انتخاب همه بسته"
422
 
423
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:88
424
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:107
425
  msgid "Details"
426
  msgstr "جزئیات"
427
 
428
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:89
429
  msgid "Created"
430
  msgstr "زمان ایجاد"
431
 
432
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:90
433
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:221
434
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:323
435
  msgid "Size"
436
  msgstr "حجم"
437
 
438
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:91
439
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:9
440
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:74
441
  msgid "Name"
442
  msgstr "نام بسته "
443
 
444
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:93
445
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:6
446
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:110
447
  msgid "Package"
448
  msgstr "بسته"
449
 
450
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:124
451
  msgid "(No Notes Taken)"
452
  msgstr "(بدون یادداشت ها گرفته شده)"
453
 
454
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:142
455
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:187
456
  msgid "View"
457
  msgstr "مشاهده شده"
458
 
459
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:147
460
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:132
461
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:79
462
  msgid "Installer"
463
  msgstr "نصب کننده"
464
 
465
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:150
466
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:18
467
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:194
468
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:83
469
  msgid "Archive"
470
  msgstr "آرشیو بسته نصبی"
471
 
472
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:155
473
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:200
474
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:79
475
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:141
476
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:160
477
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:200
478
  msgid "Version"
479
  msgstr "نسخه"
480
 
481
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:156
482
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:201
483
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:151
484
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:168
485
  msgid "User"
486
  msgstr "کاربر دیتابیس"
487
 
488
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:157
489
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:202
490
  msgid "Hash"
491
  msgstr "Hash"
492
 
493
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:158
494
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:207
495
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:12
496
  msgid "Notes"
497
  msgstr "توضیحات"
498
 
499
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:160
500
  msgid "Links"
501
  msgstr "لینک‌ها"
502
 
503
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:161
504
  msgid "SQL"
505
  msgstr "اس‌کیوال"
506
 
507
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:162
508
  msgid "Log"
509
  msgstr "گزارش"
510
 
511
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:165
512
  msgid "Open Scan Report"
513
  msgstr "گزارش اسکن باز"
514
 
515
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:166
516
  msgid "View Package Object"
517
  msgstr "مشاهده بسته شی"
518
 
519
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:193
520
  msgid "View Error Details"
521
  msgstr "مشاهده جزئیات خطا"
522
 
523
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:205
524
  msgid "Unrecoverable Error! Please remove this package."
525
  msgstr ""
526
 
527
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:210
528
  msgid ""
529
  "This package has encountered errors. Click 'View Log' for more details. "
530
  "For additional support see the "
531
  msgstr ""
532
 
533
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:211
534
  msgid "online knowledgebase"
535
  msgstr ""
536
 
537
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:213
538
  msgid "View Log"
539
  msgstr "نمایش گزارش"
540
 
541
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:236
542
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:218
543
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:317
544
  msgid "Total Size"
545
  msgstr "اندازه کل"
546
 
547
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:255
548
  msgid "Download Links"
549
  msgstr "لینک دانلود"
550
 
551
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:258
552
  msgid "The following links contain sensitive data. Please share with caution!"
553
  msgstr ""
554
 
555
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:264
556
  msgid ""
557
  "The database SQL script is a quick link to your database backup script. An "
558
  "exact copy is also stored in the package."
559
  msgstr ""
560
 
561
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:287
562
  msgid ""
563
  "Please select an action from the bulk action drop down menu to perform a "
564
  "specific action."
565
  msgstr ""
566
 
567
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:295
568
  msgid "Please select at least one package to delete."
569
  msgstr ""
570
 
571
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:299
572
  msgid "Are you sure, you want to delete the selected package(s)?"
573
  msgstr "آیا مطمئنید که مایلید package(s) منتخب را حذف کنید؟"
574
 
575
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:333
576
  msgid "Package File Links"
577
  msgstr "لینک فایل های بسته"
578
 
579
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:336
580
  msgid "DATABASE"
581
  msgstr "پایگاه داده"
582
 
583
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:337
584
  msgid "PACKAGE"
585
  msgstr "بسته"
586
 
587
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:338
588
  msgid "INSTALLER"
589
  msgstr "نصب کننده"
590
 
591
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:339
592
  msgid "LOG"
593
  msgstr "گزارش"
594
 
595
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:340
596
  msgid "REPORT"
597
  msgstr "گزارش"
598
 
599
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:11
600
  msgid "Package settings have been reset."
601
  msgstr ""
602
 
603
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:81
604
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:58
605
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:33
606
  msgid "Setup"
607
  msgstr "نصب"
608
 
609
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:82
610
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:59
611
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:34
612
  msgid "Scan"
613
  msgstr "آنالیز ( اسکن )"
614
 
615
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:83
616
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:60
617
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:375
618
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:35
619
  msgid "Build"
620
  msgstr "ایجاد بسته"
621
 
622
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:86
623
  msgid "Step 1: Package Setup"
624
  msgstr "بخش 1 : تنظیمات بسته "
625
 
626
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:110
627
  msgid "Requirements:"
628
  msgstr "موارد مورد نیاز:"
629
 
630
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:111
631
- msgid "Pass"
632
- msgstr "همه چیز مورد تایید می باشد"
633
-
634
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:111
635
- msgid "Fail"
636
- msgstr "مواردی مورد تایید نمی باشد"
637
-
638
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:119
639
  msgid ""
640
  "System requirements must pass for the Duplicator to work properly. Click "
641
  "each link for details."
642
  msgstr ""
643
 
644
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:125
645
  msgid "PHP Support"
646
  msgstr "پشتیبان پی اچ پی"
647
 
648
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:131
649
  msgid "PHP Version"
650
  msgstr "نسخه پی اچ پی"
651
 
652
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:135
653
  msgid "Zip Archive Enabled"
654
  msgstr ""
655
 
656
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:139
657
  msgid "Safe Mode Off"
658
  msgstr ""
659
 
660
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:143
661
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:147
662
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:151
663
  msgid "Function"
664
  msgstr "تابع"
665
 
666
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:156
667
  msgid ""
668
  "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
669
  "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
@@ -673,15 +608,15 @@ msgid ""
673
  "For additional information see our online documentation."
674
  msgstr ""
675
 
676
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:164
677
  msgid "Permissions"
678
  msgstr "دسترسی‌ها"
679
 
680
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:167
681
  msgid "Required Paths"
682
  msgstr "مسیرهای مورد نیاز"
683
 
684
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:179
685
  msgid ""
686
  "Permissions can be difficult to resolve on some systems. If the plugin can "
687
  "not read the above paths here are a few things to try. 1) Set the above "
@@ -695,19 +630,19 @@ msgid ""
695
  "Duplicator for additional online resources."
696
  msgstr ""
697
 
698
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:187
699
  msgid "Server Support"
700
  msgstr "پشتیبانی سرور"
701
 
702
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:193
703
  msgid "MySQL Version"
704
  msgstr "نسخه MySQL"
705
 
706
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:197
707
  msgid "MySQLi Support"
708
  msgstr "پشتیبانی از MySQLi"
709
 
710
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:203
711
  msgid ""
712
  "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
713
  "the trailing 'i') is also required. Contact your server administrator and "
@@ -716,24 +651,22 @@ msgid ""
716
  "added."
717
  msgstr ""
718
 
719
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:204
720
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:136
721
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:148
722
  msgid "more info"
723
  msgstr "اطلاعات بیشتر"
724
 
725
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:213
726
  msgid "Reserved Files"
727
  msgstr "فایل محافظت شده"
728
 
729
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:217
730
  msgid ""
731
  "None of the reserved files (installer.php, installer-data.sql and installer-"
732
  "log.txt) where found from a previous install. This means you are clear to "
733
  "create a new package."
734
  msgstr ""
735
 
736
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:220
737
  msgid ""
738
  "A reserved file(s) was found in the WordPress root directory. Reserved file "
739
  "names are installer.php, installer-data.sql and installer-log.txt. To "
@@ -741,85 +674,106 @@ msgid ""
741
  "WordPress root directory. Then try creating your package again."
742
  msgstr ""
743
 
744
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:221
745
  msgid "Remove Files Now"
746
  msgstr "حذف فایل های حال حاضر"
747
 
748
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:231
749
  msgid "For additional help please see the "
750
  msgstr ""
751
 
752
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:10
753
  msgid "Create a new default name"
754
  msgstr "ایجاد یک نام پیشفرض"
755
 
756
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
  msgid "File filter enabled"
758
  msgstr ""
759
 
760
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:21
761
  msgid "Database filter enabled"
762
  msgstr "بانک اطلاعات فیلتر فعال"
763
 
764
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:28
765
- msgid "Format"
766
- msgstr "نوع"
767
-
768
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:38
769
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:202
770
  msgid "Files"
771
  msgstr "فایل ها"
772
 
773
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:39
774
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:147
775
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:301
776
  msgid "Database"
777
  msgstr "پایگاه داده"
778
 
779
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:51
780
  msgid "Enable File Filters"
781
  msgstr "فعال کردن فیلتر های پرونده"
782
 
783
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:55
784
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:63
785
  msgid "Separate all filters by semicolon"
786
  msgstr ""
787
 
788
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:55
789
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:271
790
  msgid "Directories"
791
  msgstr "پوشه ها"
792
 
793
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:57
794
  msgid "root path"
795
  msgstr "مسیر ریشه"
796
 
797
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:58
798
  msgid "wp-uploads"
799
  msgstr ""
800
 
801
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:59
802
  msgid "cache"
803
  msgstr "کش"
804
 
805
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:60
806
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:67
807
  msgid "(clear)"
808
  msgstr ""
809
 
810
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:63
811
  msgid "File extensions"
812
  msgstr "پسوند فایل ها"
813
 
814
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:65
815
  msgid "media"
816
  msgstr "فیلم یا آهنگ"
817
 
818
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:66
819
  msgid "archive"
820
  msgstr "بسته فشرده"
821
 
822
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:72
823
  msgid ""
824
  "The directory paths and extensions above will be be excluded from the "
825
  "archive file if enabled is checked."
@@ -827,27 +781,27 @@ msgstr ""
827
  "مسیر دایرکتوری و پسوند بالا خواهد شد می شود محروم از آرشیو فایل اگر فعال "
828
  "بررسی می شود."
829
 
830
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:73
831
  msgid "Use the full path for directories and semicolons to separate all items."
832
  msgstr "مسیر کامل دایرکتوری و ویرگول برای جدا کردن همه موارد استفاده کنید."
833
 
834
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:84
835
  msgid "Enable Table Filters"
836
  msgstr "فعال کردن فیلتر های جدول"
837
 
838
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:85
839
  msgid "checked tables are excluded"
840
  msgstr "انتخاب جداول محروم شده"
841
 
842
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:90
843
  msgid "Include All"
844
  msgstr "حذف همه"
845
 
846
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:91
847
  msgid "Exclude All"
848
  msgstr "انتخاب همه"
849
 
850
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:119
851
  msgid ""
852
  "Checked tables will not be added to the database script. Excluding certain "
853
  "tables can possibly cause your site or plugins to not work correctly after "
@@ -856,112 +810,97 @@ msgstr ""
856
  "بررسی جداول به اسکریپت بانک اطلاعاتی اضافه خواهد شد. جداول خاصی به جز "
857
  "احتمالا سایت یا افزونه هنوز کار درست پس از نصب می تواند باعث شود!"
858
 
859
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:137
860
  msgid "STEP 1 - INPUTS"
861
  msgstr "بخش 1 - ورودی ها"
862
 
863
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:140
864
  msgid "MySQL Server"
865
  msgstr "سرور مای اسکیوال"
866
 
867
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:143
868
  msgid "Host"
869
  msgstr "میزبان"
870
 
871
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:144
872
- msgid "localhost"
873
  msgstr ""
874
- "سرور محلی مثال ( localhost یا 127.0.0.1 یا آی پی که هاستینگ برای لوکال هاست "
875
- "به شما داده )"
876
-
877
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:148
878
- msgid "mydatabaseName"
879
- msgstr "نام پایگاه داده"
880
 
881
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:152
882
- msgid "databaseUserName"
883
- msgstr "نام کاربری پایگاه داده"
884
-
885
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:155
886
  msgid "Advanced Options"
887
  msgstr "تنظیمات بیشتر"
888
 
889
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:161
890
  msgid "SSL"
891
  msgstr "گواهینامه SSL"
892
 
893
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:164
894
  msgid "Enforce on Admin"
895
  msgstr "اجرا توسط مدیر"
896
 
897
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:168
898
  msgid "Enforce on Logins"
899
  msgstr "اجرا بعد از ورود"
900
 
901
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:172
902
  msgid "Cache"
903
  msgstr "کش"
904
 
905
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:175
906
  msgid "Keep Enabled"
907
  msgstr "فعال نگه داشتن"
908
 
909
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:179
910
  msgid "Keep Home Path"
911
  msgstr "نگه داشتن مسیر خانه"
912
 
913
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:187
914
  msgid "STEP 2 - INPUTS"
915
  msgstr "بخش 2 - ورودی ها"
916
 
917
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:191
918
  msgid "New URL"
919
  msgstr "آدرس جدید"
920
 
921
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:192
922
- msgid "http://mynewsite.com"
923
- msgstr "https://www.amoozesh98.com"
924
-
925
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:198
926
  msgid "The installer can have these fields pre-filled at install time."
927
  msgstr "نصب می توانید این زمینه ها در زمان نصب از پیش پر شده است."
928
 
929
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:198
930
  msgid "All values are optional."
931
  msgstr "همه مقادیر اختیاری هستند."
932
 
933
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:207
934
  msgid "Reset"
935
  msgstr "بازگشت به تنظیمات اولیه"
936
 
937
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:208
938
  msgid "Next"
939
  msgstr "ادامه"
940
 
941
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:220
942
  msgid ""
943
  "This will reset all of the current package settings. Would you like to "
944
  "continue?"
945
  msgstr ""
946
 
947
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:63
948
  msgid "Step 2: System Scan"
949
  msgstr "بخش 2 : آنالیز سیستم"
950
 
951
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:79
952
  msgid "Scanning Site"
953
  msgstr "آنالیز ( اسکن ) در سایت"
954
 
955
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:81
956
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:57
957
  msgid "Please Wait..."
958
  msgstr "لطفا منتظر بمانید ...."
959
 
960
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:87
961
  msgid "Scan Complete"
962
  msgstr "آنالیز ( اسکن ) کامل شده"
963
 
964
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:89
965
  msgid ""
966
  "Scan checks are not required to pass, however they could cause issues on "
967
  "some systems."
@@ -969,61 +908,61 @@ msgstr ""
969
  "آنالیز ( اسکن ) انجام شد تمام موارد مورد تایید می باشد با این حال بسته به "
970
  "سیستم های مختلف می تواند موارد تغییر کند."
971
 
972
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:90
973
  msgid "Process Time:"
974
  msgstr "زمان اجرا:"
975
 
976
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:99
977
  msgid "Server"
978
  msgstr "سرور"
979
 
980
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:101
981
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:17
982
  msgid "Diagnostics"
983
  msgstr "تشخیص"
984
 
985
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:110
986
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:116
987
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:106
988
  msgid "Web Server"
989
  msgstr "سرور وب"
990
 
991
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:118
992
- msgid "The Duplicator currently works with these web servers:"
993
  msgstr ""
994
 
995
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:127
996
- msgid "PHP Settings"
997
- msgstr "تنظیمات پی اچ پی"
998
 
999
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:133
1000
  msgid "Open Base Dir"
1001
  msgstr ""
1002
 
1003
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:135
1004
  msgid ""
1005
- "The Duplicator may have issues when [open_basedir] is enabled. Please work "
1006
- "with your server administrator to disable this value in the php.ini file if "
1007
- "you’re having issues building a package."
 
 
 
 
 
1008
  msgstr ""
1009
 
1010
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:140
1011
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:189
1012
  msgid "Max Execution Time"
1013
  msgstr "حداکثر زمان اجرا"
1014
 
1015
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:144
1016
  #, php-format
1017
  msgid ""
1018
- "The Duplicator will have issues when the [max_execution_time] value in the "
1019
- "php.ini is low. Timeouts effect how long a process is allowed to run. The "
1020
- "recommended timeout is \"%1$s\" seconds. An attempt is made to override this "
1021
- "value if the server allows it. Please work with your server administrator "
1022
- "to make sure there are no restrictions for how long a PHP process is allowed "
1023
- "to run."
1024
  msgstr ""
1025
 
1026
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:147
1027
  msgid ""
1028
  "Note: Timeouts can also be set at the web server layer, so if the PHP max "
1029
  "timeout passes and you still see a build interrupt messages, then your web "
@@ -1033,67 +972,68 @@ msgid ""
1033
  "cause your install to not work properly."
1034
  msgstr ""
1035
 
1036
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:158
1037
- msgid "WordPress Settings"
1038
- msgstr "تنظیمات وردپرس"
 
 
 
 
 
 
 
 
 
 
 
1039
 
1040
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:164
1041
  msgid "WordPress Version"
1042
  msgstr "ورژن وردپرس"
1043
 
1044
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:166
1045
- msgid "It is recommended to have a version of WordPress that is greater that "
1046
- msgstr ""
1047
-
1048
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:172
1049
- msgid "Found"
1050
  msgstr ""
1051
 
1052
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:172
1053
- msgid "Missing"
1054
- msgstr "گم"
1055
-
1056
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:174
1057
  msgid "Core Files"
1058
  msgstr "فایل های هسته ای"
1059
 
1060
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:176
1061
  msgid ""
1062
  "If the scanner is unable to locate the wp-config.php file in the root "
1063
  "directory, then you will need to manually copy it to its new location."
1064
  msgstr ""
1065
 
1066
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:183
1067
  msgid "Cache Path"
1068
  msgstr ""
1069
 
1070
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:184
1071
  msgid ""
1072
  "Cached data will lead to issues at install time and increases your archive "
1073
  "size. It is recommended to empty your cache directory at build time. Use "
1074
  "caution when removing data from the cache directory. If you have a cache "
1075
  "plugin review the documentation for how to empty it; simply removing files "
1076
- "might cause errors on your site."
1077
- msgstr ""
1078
-
1079
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:185
1080
- msgid "The cache size minimum threshold is currently set at "
1081
  msgstr ""
1082
 
1083
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:207
1084
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:306
1085
  msgid "Enabled"
1086
  msgstr "فعال"
1087
 
1088
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:222
1089
  msgid "File Count"
1090
  msgstr "تعداد پرونده"
1091
 
1092
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:223
1093
  msgid "Directory Count"
1094
  msgstr "تعداد دایرکتوری"
1095
 
1096
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:225
1097
  #, php-format
1098
  msgid ""
1099
  "Total size represents all files minus any filters that have been setup. The "
@@ -1101,30 +1041,28 @@ msgid ""
1101
  "%2$s for large files."
1102
  msgstr ""
1103
 
1104
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:234
1105
- msgid "Invalid Names"
1106
- msgstr "نامهای بی اعتبار"
1107
 
1108
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:238
1109
  msgid ""
1110
- "Invalid file or folder names can cause issues when extracting an archive "
1111
- "across different environments. Invalid file names consist of lengths over "
1112
- "250 characters and illegal characters that may not work on all operating "
1113
- "systems such as * ? > < : / \\ | . It is recommended to remove or filter "
1114
- "these files before building the archive or else you might have issues at "
1115
- "install time."
1116
  msgstr ""
1117
 
1118
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:240
1119
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:255
1120
  msgid "Show Paths"
1121
  msgstr "نشان دادن مسیر"
1122
 
1123
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:249
1124
  msgid "Large Files"
1125
  msgstr "فایل های بزرگ"
1126
 
1127
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:253
1128
  #, php-format
1129
  msgid ""
1130
  "Large files such as movies or other backuped data can cause issues with "
@@ -1133,41 +1071,41 @@ msgid ""
1133
  "files filter and manually moving them to your new location."
1134
  msgstr ""
1135
 
1136
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:265
1137
  msgid "View Filters"
1138
  msgstr "مشاهده فیلتر ها"
1139
 
1140
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:268
1141
- msgid ""
1142
- "Below is a list of the directories and file extension that will be excluded "
1143
- "from the archive."
1144
- msgstr ""
1145
-
1146
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:276
1147
  msgid "No directory filters have been set."
1148
  msgstr ""
1149
 
1150
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:281
1151
  msgid "File Extensions"
1152
  msgstr "پسوند فایل ها"
1153
 
1154
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:286
1155
  msgid "No file extension filters have been set."
1156
  msgstr ""
1157
 
1158
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:321
 
 
 
 
 
 
1159
  msgid "Tables"
1160
  msgstr "جدول"
1161
 
1162
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:322
1163
  msgid "Records"
1164
  msgstr "رکورد"
1165
 
1166
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:325
1167
  msgid "repair and optimization"
1168
  msgstr "تعمیر و بهینه سازی"
1169
 
1170
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:326
1171
  #, php-format
1172
  msgid ""
1173
  "Total size and row count for all database tables are approximate values. "
@@ -1178,122 +1116,127 @@ msgid ""
1178
  "mysqldump you can try to enable this option from the settings menu."
1179
  msgstr ""
1180
 
1181
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:338
1182
  msgid "Table Details"
1183
  msgstr "جدول جزئیات"
1184
 
1185
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:349
1186
  msgid "Name:"
1187
  msgstr "نام:"
1188
 
1189
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:350
1190
  msgid "Host:"
1191
  msgstr "میزبان:"
1192
 
1193
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:351
1194
  msgid "Build Mode:"
1195
  msgstr "نحوه ساخت:"
1196
 
1197
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:362
1198
  msgid "Scan Error"
1199
  msgstr "خطا در آنالیز ( اسکن )"
1200
 
1201
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:363
1202
  msgid "Please try again!"
1203
  msgstr "لطفا دوباره سعی کنید"
1204
 
1205
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:365
1206
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:110
1207
  msgid "Server Status:"
1208
  msgstr "وضعیت سرور:"
1209
 
1210
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:368
1211
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:114
1212
  msgid "Error Message:"
1213
  msgstr "پیام خطا:"
1214
 
1215
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:376
1216
- msgid "Rescan"
1217
- msgstr "آنالیز یا ( اسکن ) مجدد"
1218
-
1219
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:377
1220
  msgid "Back"
1221
  msgstr "بازگشت"
1222
 
1223
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:463
 
 
 
 
1224
  msgid "Unable to report on any tables"
1225
  msgstr "قادر به گزارش هیچ کدام از جداول نمی باشم"
1226
 
1227
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:472
1228
  msgid "Unable to report on database stats"
1229
  msgstr "قادر به گزارش آمار پایگاه داده نمی باشم"
1230
 
1231
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:487
1232
- msgid "No name length issues."
1233
- msgstr "بدون مسائل طول نام."
1234
 
1235
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:490
1236
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:498
1237
  msgid "FILE"
1238
  msgstr "پرونده"
1239
 
1240
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:495
 
 
 
 
1241
  msgid "No large files found."
1242
  msgstr "هیچ فایلی یافت یا انتخاب نشد"
1243
 
1244
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:38
1245
  msgid "Step 3: Build Package"
1246
  msgstr "بخش 3 : ساخت بسته آسان نصبی"
1247
 
1248
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:55
1249
  msgid "Building Package"
1250
  msgstr "در حال ساخت بسته آسان نصبی"
1251
 
1252
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:58
1253
  msgid "Keep this window open during the build process."
1254
  msgstr "این پنجره را در طول فرایند ساخت هرگز نبندید."
1255
 
1256
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:59
1257
  msgid "This may take several minutes."
1258
  msgstr "این ممکن است چند دقیقه طول بکشد."
1259
 
1260
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:63
1261
  msgid "Build Status"
1262
  msgstr "وضعیت ساخت بسته آسان نصبی"
1263
 
1264
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:70
1265
  msgid "Package Completed"
1266
  msgstr "بسته آسان نصبی با موفقییت تولید شد"
1267
 
1268
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:75
1269
  msgid "Process Time"
1270
  msgstr "فرایند تولید بسته"
1271
 
1272
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:100
1273
  msgid "Build Interrupt"
1274
  msgstr "ایجاد وقفه"
1275
 
1276
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:101
1277
  msgid "The current build has experienced an issue."
1278
  msgstr ""
1279
 
1280
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:103
1281
  msgid "Please try the process again."
1282
  msgstr "لطفا این فرآیند را دوباره امتحان کنید."
1283
 
1284
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:105
 
 
 
 
1285
  msgid "Try Again"
1286
  msgstr "دوباره امتحان کردن"
1287
 
1288
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:121
1289
  msgid "Notice"
1290
  msgstr "هشدار"
1291
 
1292
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:124
1293
  msgid "Build Folder:"
1294
  msgstr "پوشه ایجاد:"
1295
 
1296
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:126
1297
  msgid ""
1298
  "Some servers close connections quickly; yet the build can continue to run in "
1299
  "the background. To validate if a build is still running; open the 'tmp' "
@@ -1302,409 +1245,377 @@ msgid ""
1302
  "page for additional resources."
1303
  msgstr ""
1304
 
1305
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:135
1306
  msgid "Package Log"
1307
  msgstr "گزارش بسته نصبی"
1308
 
1309
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:136
1310
- msgid "Support"
1311
- msgstr "پشتیبانی"
1312
-
1313
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/controller.php:22
1314
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:87
1315
  msgid "General"
1316
  msgstr "عمومی"
1317
 
1318
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:6
1319
  msgid "Settings Saved"
1320
  msgstr "تنظیمات ذخیره شد"
1321
 
1322
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:75
1323
  msgid "Plugin"
1324
  msgstr "افزونه"
1325
 
1326
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:83
1327
  msgid "Uninstall"
1328
  msgstr "پاک کردن افزونه"
1329
 
1330
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:86
1331
  msgid "Delete Plugin Settings"
1332
  msgstr "حذف تنظیمات افزونه"
1333
 
1334
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:89
1335
  msgid "Delete Entire Storage Directory"
1336
  msgstr "حذف دایرکتوری ذخیره سازی کل"
1337
 
1338
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:94
1339
- msgid "Storage"
1340
- msgstr "ذخیره سازی"
1341
-
1342
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:96
1343
  msgid "Full Path"
1344
  msgstr "مسیر کامل"
1345
 
1346
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:99
1347
  msgid "Disable .htaccess File In Storage Directory"
1348
  msgstr "غیر فعال کردن فایل htaccess در دایرکتوری ذخیره سازی"
1349
 
1350
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:101
1351
  msgid "Disable if issues occur when downloading installer/archive files."
1352
  msgstr "اگر مسائل را رخ می دهد که دانلود نصب و آرشیو فایل ها را غیر فعال کنید."
1353
 
1354
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:114
1355
  msgid "Archive Flush"
1356
  msgstr "آرشیو بسته نصبی"
1357
 
1358
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:117
1359
  msgid "Attempt Network Keep Alive"
1360
  msgstr "زنده نگه داشتن شبکه تلاش"
1361
 
1362
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:118
1363
  msgid "recommended only for large archives"
1364
  msgstr "توصیه می شود تنها برای آرشیو بزرگ"
1365
 
1366
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:120
1367
  msgid ""
1368
  "This will attempt to keep a network connection established for large "
1369
  "archives."
1370
  msgstr "این تلاش برای حفظ یک اتصال شبکه برای آرشیو بزرگ است."
1371
 
1372
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:125
1373
  msgid "Database Build"
1374
  msgstr "ساخت پایگاه داده"
1375
 
1376
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:128
1377
  msgid "Use PHP"
1378
  msgstr "استفاده از پی اچ پی"
1379
 
1380
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:131
1381
  msgid "Query Limit Size"
1382
  msgstr "پرس و جو حد اندازه"
1383
 
1384
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:140
1385
  msgid "higher values speed up build times but uses more memory"
1386
  msgstr "مقادیر بالاتر سرعت بار ساخت اما با استفاده از حافظه بیشتر"
1387
 
1388
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:147
1389
  msgid "This server does not have shell_exec configured to run."
1390
  msgstr ""
1391
 
1392
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:149
1393
  msgid "Please contact the server administrator to enable this feature."
1394
  msgstr ""
1395
 
1396
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:154
1397
  msgid "Use mysqldump"
1398
  msgstr "استفاده از mysqldump"
1399
 
1400
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:155
1401
  msgid "recommended for large databases"
1402
  msgstr "توصیه می شود برای پایگاه های داده بزرگ"
1403
 
1404
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:160
1405
  msgid "Working Path:"
1406
  msgstr "مسیر در حال کار:"
1407
 
1408
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:166
1409
  msgid ""
1410
  "Mysqldump was not found at its default location or the location provided. "
1411
  "Please enter a path to a valid location where mysqldump can run. If the "
1412
  "problem persist contact your server administrator."
1413
  msgstr ""
1414
 
1415
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:171
1416
  msgid "Add Custom Path:"
1417
  msgstr "مسیر سفارشی اضافه کنید:"
1418
 
1419
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:175
1420
  msgid "This is the path to your mysqldump program."
1421
  msgstr "این مسیر برای برنامه mysqldump شما است."
1422
 
1423
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:184
1424
  msgid "Package Debug"
1425
  msgstr "اشکال زدایی بسته"
1426
 
1427
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:187
1428
  msgid "Show Package Debug Status in Packages Screen"
1429
  msgstr "نمایش وضعیت اشکال زدایی بسته در صفحه نمایش بسته"
1430
 
1431
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:195
1432
  msgid "Roles & Capabilities"
1433
  msgstr "نقش ها و قابلیت ها"
1434
 
1435
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:200
1436
  msgid "Custom Roles"
1437
  msgstr "نقش های سفارشی"
1438
 
1439
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:203
1440
  msgid "Enable User Role Editor Plugin Integration"
1441
  msgstr "فعال کردن قابلیت هماهنگ سازی با پلاگین User Role Editor"
1442
 
1443
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:210
1444
  msgid "The User Role Editor Plugin"
1445
  msgstr "پلاگین ویرایش نقش کاربران"
1446
 
1447
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:211
1448
  msgid "Free"
1449
  msgstr "رایگان"
1450
 
1451
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:212
1452
  msgid "or"
1453
  msgstr "یا"
1454
 
1455
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:213
1456
  msgid "Professional"
1457
  msgstr "تجاری"
1458
 
1459
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:214
1460
  msgid "must be installed to use"
1461
  msgstr "باید نصب کنید برای استفاده از"
1462
 
1463
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:215
1464
  msgid "this feature."
1465
  msgstr "این ویژگی"
1466
 
1467
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:227
1468
  msgid "Save Settings"
1469
  msgstr "ذخیره تغییرات"
1470
 
1471
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:8
1472
  msgid "Installer File Cleanup Ran."
1473
  msgstr "نصب فایل پاک کردن ران."
1474
 
1475
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:12
1476
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:44
1477
  msgid "Legacy data removed."
1478
  msgstr "حذف داده های میراث."
1479
 
1480
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:16
1481
  msgid "Build cache removed."
1482
  msgstr "پاک کردن کش"
1483
 
1484
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:73
1485
  msgid ""
1486
  "If the installer files did not successfully get removed, then you WILL need "
1487
  "to remove them manually"
1488
  msgstr ""
1489
 
1490
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:74
1491
  msgid ""
1492
  "Please remove all installer files to avoid leaving open security issues on "
1493
  "your server"
1494
  msgstr ""
1495
 
1496
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:82
1497
  msgid "Data Cleanup"
1498
  msgstr "پاک کردن داده ها"
1499
 
1500
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:85
1501
  msgid "Delete Reserved Files"
1502
  msgstr "حذف فایلها و پوشه های محافظت شده"
1503
 
1504
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:86
1505
  msgid "Removes all installer files from a previous install"
1506
  msgstr "تمام فایل های نصب را از یک نصب قبلی حذف می کند"
1507
 
1508
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:89
1509
  msgid "Delete Legacy Data"
1510
  msgstr "حذف داده های میراث"
1511
 
1512
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:90
1513
  msgid "Removes all legacy data and settings prior to version"
1514
  msgstr "حذف همه داده های میراث و تنظیمات قبل از نسخه"
1515
 
1516
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:93
1517
  msgid "Clear Build Cache"
1518
  msgstr "پاک کردن کش"
1519
 
1520
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:94
1521
  msgid "Removes all build data from:"
1522
  msgstr "حذف همه داده ها از ساخت:"
1523
 
1524
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:107
1525
  #, php-format
1526
  msgid "This action will remove all legacy settings prior to version %1$s. "
1527
  msgstr ""
1528
 
1529
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:108
1530
  msgid ""
1531
  "Legacy settings are only needed if you plan to migrate back to an older "
1532
  "version of this plugin."
1533
  msgstr ""
1534
 
1535
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:120
1536
  msgid ""
1537
  "This process will remove all build cache files. Be sure no packages are "
1538
  "currently building or else they will be cancelled."
1539
  msgstr ""
1540
 
1541
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:16
1542
  msgid "Logging"
1543
  msgstr "گزارشات"
1544
 
1545
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:18
1546
  msgid "Cleanup"
1547
  msgstr "گزارش های پاکسازی"
1548
 
1549
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:18
1550
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:19
1551
  msgid "unknow"
1552
  msgstr ""
1553
 
1554
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:39
1555
  msgid "Plugin settings reset."
1556
  msgstr "بازگشت به تنظیمات اولیه"
1557
 
1558
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:40
1559
  msgid "View state settings reset."
1560
  msgstr "تنظیمات بازنشانی شد"
1561
 
1562
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:41
1563
  msgid "Active package settings reset."
1564
  msgstr "تنظیم مجدد تنظیمات فعال بسته."
1565
 
1566
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:81
1567
  msgid "Server Settings"
1568
  msgstr "تنظیمات سرور"
1569
 
1570
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:90
1571
  msgid "Duplicator Version"
1572
  msgstr "نسخه ایجاد کننده بسته نصبی"
1573
 
1574
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:94
1575
  msgid "Operating System"
1576
  msgstr "سیستم عامل"
1577
 
1578
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:98
1579
  msgid "Timezone"
1580
  msgstr "منطقه زمانی"
1581
 
1582
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:102
1583
  msgid "Server Time"
1584
  msgstr "زمان سرور"
1585
 
1586
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:110
1587
  msgid "APC Enabled"
1588
  msgstr "APC فعال"
1589
 
1590
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:111
1591
- msgid "Yes"
1592
- msgstr "بله"
1593
-
1594
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:111
1595
- msgid "No"
1596
- msgstr "نه"
1597
-
1598
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:114
1599
  msgid "Root Path"
1600
  msgstr "مسیر ریشه"
1601
 
1602
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:118
1603
  msgid "ABSPATH"
1604
  msgstr "مسیر کامل دایرکتوری وردپرس"
1605
 
1606
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:122
1607
  msgid "Plugins Path"
1608
  msgstr "مسیر پلاگین ها"
1609
 
1610
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:126
1611
  msgid "Loaded PHP INI"
1612
  msgstr "مسیر php.ini"
1613
 
1614
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:130
1615
  msgid "Server IP"
1616
  msgstr "آی پی سرور"
1617
 
1618
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:134
1619
  msgid "Client IP"
1620
  msgstr "آی پی کاربر"
1621
 
1622
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:138
1623
- msgid "WordPress"
1624
- msgstr "وردپرس"
1625
-
1626
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:145
1627
  msgid "Langugage"
1628
  msgstr "زبان"
1629
 
1630
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:149
1631
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:204
1632
  msgid "Charset"
1633
  msgstr "انکودینگ"
1634
 
1635
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:153
1636
  msgid "Memory Limit "
1637
  msgstr "محدوديت حافظه وردپرس"
1638
 
1639
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:154
1640
  msgid "Max"
1641
  msgstr "بیشترین"
1642
 
1643
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:157
1644
- msgid "PHP"
1645
- msgstr "پی اچ پی"
1646
-
1647
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:172
1648
  msgid "Safe Mode"
1649
  msgstr ""
1650
 
1651
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:176
1652
  msgid "On"
1653
  msgstr "روشن"
1654
 
1655
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:176
1656
  msgid "Off"
1657
  msgstr "خاموش"
1658
 
1659
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:181
1660
  msgid "Memory Limit"
1661
  msgstr "محدوديت حافظه"
1662
 
1663
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:185
1664
  msgid "Memory In Use"
1665
  msgstr "حافظه در حال استفاده"
1666
 
1667
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:193
1668
  msgid "Shell Exec"
1669
  msgstr ""
1670
 
1671
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:194
1672
  msgid "Is Supported"
1673
  msgstr "پشتیبانی می شود"
1674
 
1675
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:194
1676
  msgid "Not Supported"
1677
  msgstr "پشتیبانی نمی شود"
1678
 
1679
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:197
1680
- msgid "MySQL"
1681
- msgstr "مای اس کیوال"
1682
-
1683
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:208
1684
  msgid "Wait Timeout"
1685
  msgstr "زمان تمام شدن"
1686
 
1687
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:212
1688
  msgid "Max Allowed Packets"
1689
  msgstr "حداکثر مجاز بسته"
1690
 
1691
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:216
1692
  msgid "msyqldump Path"
1693
  msgstr "مسیر msyqldump"
1694
 
1695
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:220
1696
  msgid "Server Disk"
1697
  msgstr "دیسک سرویس دهنده"
1698
 
1699
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:223
1700
  msgid "Free space"
1701
  msgstr "فضای خالی"
1702
 
1703
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:226
1704
  msgid "Note: This value is the physical servers hard-drive allocation."
1705
  msgstr "توجه: این مقدار تخصیص هارد دیسک سرور فیزیکی است."
1706
 
1707
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:227
1708
  msgid ""
1709
  "On shared hosts check your control panel for the 'TRUE' disk space quota "
1710
  "value."
@@ -1712,29 +1623,29 @@ msgstr ""
1712
  "در میزبان مشترک کنترل پنل خود را برای ارزش ظرفیت فضای دیسک 'واقعی' را بررسی "
1713
  "کنید."
1714
 
1715
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:243
1716
  msgid "Stored Data"
1717
  msgstr "داده های ذخیره شده"
1718
 
1719
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:248
1720
  msgid "Options Values"
1721
  msgstr "تنظیمات"
1722
 
1723
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:281
1724
  msgid "PHP Information"
1725
  msgstr "اطلاعات مربوط به پی اچ پی"
1726
 
1727
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:300
1728
  msgid "Delete this option value"
1729
  msgstr "حذف مقادیر این تنظیمات"
1730
 
1731
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:140
1732
  msgid "Log file not found or unreadable"
1733
  msgstr ""
1734
  "فایل گزارشات یافت نشد یا قابل خواندن نیست و احتمال می رود که مشکلی در حال "
1735
  "حاظر وجود نداشته که گزارش شود."
1736
 
1737
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:142
1738
  msgid ""
1739
  "Try to create a package, since no log files were found in the snapshots "
1740
  "directory with the extension *.log"
@@ -1742,17 +1653,17 @@ msgstr ""
1742
  "سعی کنید به ایجاد یک بسته، بدون ورود به سیستم فایل در دایرکتوری فوری با فرمت "
1743
  "*.log یافت شد"
1744
 
1745
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:144
1746
  msgid "Reasons for log file not showing"
1747
  msgstr "دلایلی برای نمایش ندادن فایل گزارشات"
1748
 
1749
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:145
1750
  msgid "The web server does not support returning .log file extentions"
1751
  msgstr ""
1752
  "سرور وب شما از پسوند .log پشتیبانی نمی کند. بنا بر این می توانید به سرور خود "
1753
  "اطلاع دهید تا مشکل را بررسی و رفع نمایند"
1754
 
1755
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:146
1756
  msgid ""
1757
  "The snapshots directory does not have the correct permissions to write "
1758
  "files. Try setting the permissions to 755"
@@ -1761,7 +1672,7 @@ msgstr ""
1761
  "ندارد. بنا بر این به هاست خود بروید و سطح دسترسی این پوشه را روی 755 تنظیم "
1762
  "کنید"
1763
 
1764
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:147
1765
  msgid ""
1766
  "The process that PHP runs under does not have enough permissions to create "
1767
  "files. Please contact your hosting provider for more details"
@@ -1769,23 +1680,119 @@ msgstr ""
1769
  "پی اچی پی امکان اجرای دستورات لازم را ندارد بنا بر این با هاستینگ خود تماس "
1770
  "بگیرید و مشکل را جهت رفع آن ارجاع دهید"
1771
 
1772
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:156
1773
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:161
1774
  msgid "Options"
1775
  msgstr "تنظیمات"
1776
 
1777
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:163
1778
  msgid "Refresh"
1779
  msgstr "بازسازی"
1780
 
1781
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:168
1782
  msgid "Auto Refresh"
1783
  msgstr "بازسازی اتوماتیک"
1784
 
1785
- #: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:174
1786
  msgid "Last 20 Logs"
1787
  msgstr "20 گزارش اخیر"
1788
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1789
  #~ msgid "Good"
1790
  #~ msgstr "خوب"
1791
 
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. "
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 "
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 "
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 "
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 "
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 "
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."
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 "
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."
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 "
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 "
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 "
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. "
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' "
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."
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"
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"
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"
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
 
lang/wpduplicator-fr_FR.mo CHANGED
Binary file
lang/wpduplicator-fr_FR.po CHANGED
@@ -1,20 +1,26 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WPDuplicator\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-12 21:08+0100\n"
6
- "PO-Revision-Date: 2015-04-12 21:32+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
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ./\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
- "X-Generator: Poedit 1.7.1\n"
17
- "X-Poedit-SearchPath-0: ..\n"
 
 
 
 
 
 
 
 
18
 
19
  #: classes/ui.php:111
20
  msgid ""
@@ -33,44 +39,40 @@ msgstr "Supprimer les fichiers maintenant"
33
  msgid "Dismiss this notice"
34
  msgstr "Masquer ce message"
35
 
36
- #: classes/utility.php:236
37
  msgid "You do not have sufficient permissions to access this page."
38
  msgstr "Vous n&#39;avez pas les droits suffisants pour accéder à cette page"
39
 
40
- #: duplicator.php:100
41
  msgid "Get Help"
42
  msgstr "Contactez le support"
43
 
44
- #: duplicator.php:100 duplicator.php:189 views/help/help.php:29
45
  msgid "Help"
46
  msgstr "Support"
47
 
48
- #: duplicator.php:101
49
  msgid "Support the Plugin"
50
  msgstr "Aidez le plugin"
51
 
52
- #: duplicator.php:101 duplicator.php:193 views/help/about.php:41
53
  msgid "About"
54
  msgstr "A propos"
55
 
56
- #: duplicator.php:177 views/packages/controller.php:75
57
  #: views/packages/list.base.php:235
58
  msgid "Packages"
59
  msgstr "Paquets"
60
 
61
- #: duplicator.php:181 views/settings/controller.php:19
62
  msgid "Settings"
63
  msgstr "Paramètres"
64
 
65
- #: duplicator.php:185 views/tools/controller.php:13
66
  msgid "Tools"
67
  msgstr "Outils"
68
 
69
- #: duplicator.php:197 views/help/gopro.php:36
70
- msgid "Go Pro!"
71
- msgstr "Version Premium"
72
-
73
- #: duplicator.php:244
74
  msgid "Manage"
75
  msgstr "Gérer"
76
 
@@ -120,23 +122,31 @@ msgstr "Duplication Rapide WordPress par LifeInTheGrid.com"
120
  msgid "Get More Great Tools"
121
  msgstr "Obtenez d&#39;autres Super Outils"
122
 
 
 
 
 
123
  #: views/help/gopro.php:46
124
- msgid "Backup and Move Made Easy!"
125
- msgstr "La sauvegarde et la duplication rendus faciles !"
126
 
127
- #: views/help/gopro.php:47
128
- msgid "The top-rated Duplicator plugin is going professional!"
129
- msgstr "Le plugin Duplicator passe en version pro !"
130
 
131
- #: views/help/gopro.php:56
 
 
 
 
132
  msgid "Duplicator Free"
133
  msgstr "Duplicator Gratuit"
134
 
135
- #: views/help/gopro.php:61 views/help/gopro.php:95
136
  msgid "Backup Files &amp; Database"
137
  msgstr "Sauvegarde des Fichiers &amp; de la Base de Données"
138
 
139
- #: views/help/gopro.php:62 views/help/gopro.php:96
140
  msgid ""
141
  "Compresses all your WordPress files and database into a compressed snapshot "
142
  "archive file."
@@ -144,11 +154,11 @@ msgstr ""
144
  "Compresse les fichiers WordPress ainsi que la base de données dans un "
145
  "instantané"
146
 
147
- #: views/help/gopro.php:65 views/help/gopro.php:99
148
  msgid "Directory Filters"
149
  msgstr "Filtres de Répertoire"
150
 
151
- #: views/help/gopro.php:66 views/help/gopro.php:100
152
  msgid ""
153
  "Filter out the directories and file extensions you want to include/exclude "
154
  "in your in your archive file."
@@ -156,11 +166,11 @@ msgstr ""
156
  "Filtrez les répertoires et les extensions de fichiers que vous souhaitez "
157
  "inclure ou exclure de votre instantané."
158
 
159
- #: views/help/gopro.php:69 views/help/gopro.php:103
160
  msgid "Database Table Filters"
161
  msgstr "Filtres des Tables de la Base de Données"
162
 
163
- #: views/help/gopro.php:70 views/help/gopro.php:104
164
  msgid ""
165
  "Filter out only the database tables you want to include/exclude in your "
166
  "database creation script."
@@ -168,11 +178,11 @@ msgstr ""
168
  "Filtrez les tables de la base de données que vous souhaitez inclure/exclure "
169
  "de votre instantané."
170
 
171
- #: views/help/gopro.php:73 views/help/gopro.php:107
172
  msgid "Migration Wizard"
173
  msgstr "Assistant de Migration"
174
 
175
- #: views/help/gopro.php:74 views/help/gopro.php:108
176
  msgid ""
177
  "With just two files (archive &amp; installer.php) move your site to a new "
178
  "location."
@@ -180,58 +190,40 @@ msgstr ""
180
  "Avec seulement deux fichiers (archive &amp; installer.php) vous pourrez "
181
  "déplacer votre site à un autre emplacement."
182
 
183
- #: views/help/gopro.php:89
184
  msgid "Duplicator Pro"
185
  msgstr "Duplicator Pro"
186
 
187
- #: views/help/gopro.php:111
188
- msgid "Schedules"
189
- msgstr "Programmation"
190
 
191
- #: views/help/gopro.php:112
192
  msgid ""
193
  "Automate the creation of your packages to run at various scheduled intervals."
194
  msgstr "Automatisez la création de vos paquets à intervalles réguliers"
195
 
196
- #: views/help/gopro.php:115
197
- msgid "Custom Templates"
198
- msgstr "Modèles personnalisés"
199
 
200
- #: views/help/gopro.php:116
201
- msgid ""
202
- "Customize how each package is created and built with a customized template."
203
- msgstr ""
204
- "Personnalisez la façon dont chaque paquet sera créé avec un modèle prédéfini"
205
-
206
- #: views/help/gopro.php:119
207
- msgid "Cloud Storage"
208
- msgstr "Stockage sur le Cloud"
209
 
210
- #: views/help/gopro.php:120
211
- msgid ""
212
- "Backup up your entire package to the cloud with access to services like FTP "
213
- "and Dropbox."
214
- msgstr ""
215
- "Sauvegardez l&#39;intégralité de votre paquet sur le cloud au travers du FTP "
216
- "ou de Dropbox."
217
-
218
- #: views/help/gopro.php:123
219
- msgid "Queued Processing"
220
- msgstr "Traitement de la file d&#39;attente"
221
 
222
- #: views/help/gopro.php:124
223
- msgid ""
224
- "Enable the build of larger more complex packages and avoid server timeouts "
225
- "with queued processing."
226
- msgstr ""
227
- "Autorisez la construction de paquets plus gros et plus complexes et évitez "
228
- "les timeouts de votre serveur avec la file d&#39;attente"
229
 
230
- #: views/help/gopro.php:127
231
  msgid "Customer Support"
232
  msgstr "Support Client"
233
 
234
- #: views/help/gopro.php:128
235
  msgid ""
236
  "Server setups can be quite complex, with pro you get prompt help to get your "
237
  "site backed up and moved."
@@ -239,7 +231,7 @@ msgstr ""
239
  "La configuration de serveurs peut être complexe. Avec la version Pro vous "
240
  "obtenez une assistance pour vous aider à sauvegarder et déplacer votre site."
241
 
242
- #: views/help/gopro.php:136
243
  msgid "Check It Out!"
244
  msgstr "Jetez-y un oeil !"
245
 
@@ -342,7 +334,7 @@ msgid "Please visit the"
342
  msgstr "Allez donc sur"
343
 
344
  #: views/packages/list-nodata.php:14 views/packages/list-nodata.php:28
345
- #: views/packages/new1.base.php:231
346
  msgid "help page"
347
  msgstr "la page de support"
348
 
@@ -394,14 +386,14 @@ msgstr "Appliquer"
394
  msgid "Package Logs"
395
  msgstr "Journaux des Paquets"
396
 
397
- #: views/packages/list.base.php:61 views/packages/new1.base.php:91
398
- #: views/packages/new2.base.php:68 views/packages/new3.base.php:43
399
  #: views/packages/new3.base.php:89
400
  msgid "All Packages"
401
  msgstr "Tous les Paquets"
402
 
403
- #: views/packages/list.base.php:62 views/packages/new1.base.php:92
404
- #: views/packages/new2.base.php:69 views/packages/new3.base.php:44
405
  msgid "Create New"
406
  msgstr "Créer Paquet"
407
 
@@ -409,7 +401,7 @@ msgstr "Créer Paquet"
409
  msgid "Select all packages"
410
  msgstr "Sélectionner tous les paquets"
411
 
412
- #: views/packages/list.base.php:88 views/packages/new3.base.php:107
413
  msgid "Details"
414
  msgstr "Détails"
415
 
@@ -417,18 +409,17 @@ msgstr "Détails"
417
  msgid "Created"
418
  msgstr "Créé"
419
 
420
- #: views/packages/list.base.php:90 views/packages/new2.base.php:221
421
- #: views/packages/new2.base.php:323
422
  msgid "Size"
423
  msgstr "Taille"
424
 
425
- #: views/packages/list.base.php:91 views/packages/new1.inc.form.php:9
426
- #: views/packages/new3.base.php:74
427
  msgid "Name"
428
  msgstr "Nom"
429
 
430
- #: views/packages/list.base.php:93 views/packages/new1.inc.form.php:6
431
- #: views/settings/general.php:110
432
  msgid "Package"
433
  msgstr "Paquet"
434
 
@@ -440,13 +431,13 @@ msgstr "(Aucun note générée)"
440
  msgid "View"
441
  msgstr "Voir"
442
 
443
- #: views/packages/list.base.php:147 views/packages/new1.inc.form.php:132
444
  #: views/packages/new3.base.php:79
445
  msgid "Installer"
446
  msgstr "Installeur"
447
 
448
- #: views/packages/list.base.php:150 views/packages/new1.inc.form.php:18
449
- #: views/packages/new2.base.php:194 views/packages/new3.base.php:83
450
  msgid "Archive"
451
  msgstr "Archive"
452
 
@@ -457,7 +448,7 @@ msgid "Version"
457
  msgstr "Version"
458
 
459
  #: views/packages/list.base.php:156 views/packages/list.base.php:201
460
- #: views/packages/new1.inc.form.php:151 views/tools/diagnostics.php:168
461
  msgid "User"
462
  msgstr "Utilisateur"
463
 
@@ -466,7 +457,7 @@ msgid "Hash"
466
  msgstr "Découpage"
467
 
468
  #: views/packages/list.base.php:158 views/packages/list.base.php:207
469
- #: views/packages/new1.inc.form.php:12
470
  msgid "Notes"
471
  msgstr "Notes"
472
 
@@ -514,8 +505,8 @@ msgstr "notre base de connaissances en ligne"
514
  msgid "View Log"
515
  msgstr "Voir les Journaux"
516
 
517
- #: views/packages/list.base.php:236 views/packages/new2.base.php:218
518
- #: views/packages/new2.base.php:317
519
  msgid "Total Size"
520
  msgstr "Taille Totale"
521
 
@@ -575,34 +566,34 @@ msgstr "JOURNAL"
575
  msgid "REPORT"
576
  msgstr "RAPPORT"
577
 
578
- #: views/packages/new1.base.php:11
579
  msgid "Package settings have been reset."
580
  msgstr "Les paramètres du paquet ont été remis à zéro."
581
 
582
- #: views/packages/new1.base.php:81 views/packages/new2.base.php:58
583
  #: views/packages/new3.base.php:33
584
  msgid "Setup"
585
  msgstr "Configuration"
586
 
587
- #: views/packages/new1.base.php:82 views/packages/new2.base.php:59
588
  #: views/packages/new3.base.php:34
589
  msgid "Scan"
590
  msgstr "Scan"
591
 
592
- #: views/packages/new1.base.php:83 views/packages/new2.base.php:60
593
- #: views/packages/new2.base.php:377 views/packages/new3.base.php:35
594
  msgid "Build"
595
  msgstr "Création"
596
 
597
- #: views/packages/new1.base.php:86
598
  msgid "Step 1: Package Setup"
599
  msgstr "Étape 1 : Configurer un Paquet"
600
 
601
- #: views/packages/new1.base.php:110
602
  msgid "Requirements:"
603
  msgstr "Exigences :"
604
 
605
- #: views/packages/new1.base.php:119
606
  msgid ""
607
  "System requirements must pass for the Duplicator to work properly. Click "
608
  "each link for details."
@@ -610,28 +601,28 @@ msgstr ""
610
  "Les exigences système doivent être validées pour que Duplicator fonctionne "
611
  "convenablement. Cliquez sur chaque lien pour en voir les détails."
612
 
613
- #: views/packages/new1.base.php:125
614
  msgid "PHP Support"
615
  msgstr "Support de PHP"
616
 
617
- #: views/packages/new1.base.php:131
618
  msgid "PHP Version"
619
  msgstr "Version de PHP"
620
 
621
- #: views/packages/new1.base.php:135
622
  msgid "Zip Archive Enabled"
623
  msgstr "Archivage Zip Activé"
624
 
625
- #: views/packages/new1.base.php:139
626
  msgid "Safe Mode Off"
627
  msgstr "Mode Sécurité Désactivé"
628
 
629
- #: views/packages/new1.base.php:143 views/packages/new1.base.php:147
630
- #: views/packages/new1.base.php:151
631
  msgid "Function"
632
  msgstr "Fonction"
633
 
634
- #: views/packages/new1.base.php:156
635
  msgid ""
636
  "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
637
  "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
@@ -649,15 +640,15 @@ msgstr ""
649
  "hébergeur ou administrateur système. Pour plus d&#39;informations, veuillez "
650
  "vous reporter à notre documentation en ligne."
651
 
652
- #: views/packages/new1.base.php:164
653
  msgid "Permissions"
654
  msgstr "Permissions"
655
 
656
- #: views/packages/new1.base.php:167
657
  msgid "Required Paths"
658
  msgstr "Chemins"
659
 
660
- #: views/packages/new1.base.php:179
661
  msgid ""
662
  "Permissions can be difficult to resolve on some systems. If the plugin can "
663
  "not read the above paths here are a few things to try. 1) Set the above "
@@ -681,19 +672,19 @@ msgstr ""
681
  "pouvez également aller dans la section &#39;Aide&#39; pour des ressources "
682
  "supplémentaires."
683
 
684
- #: views/packages/new1.base.php:187
685
  msgid "Server Support"
686
  msgstr "Compatibilité avec le Serveur"
687
 
688
- #: views/packages/new1.base.php:193
689
  msgid "MySQL Version"
690
  msgstr "Version de MySQL"
691
 
692
- #: views/packages/new1.base.php:197
693
  msgid "MySQLi Support"
694
  msgstr "Compatibilité MySQLi"
695
 
696
- #: views/packages/new1.base.php:203
697
  msgid ""
698
  "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
699
  "the trailing 'i') is also required. Contact your server administrator and "
@@ -706,16 +697,15 @@ msgstr ""
706
  "administrateur pour lui demander que tout soit en règle. Nous ajouterons par "
707
  "la suite la compatibilité avec d'autres bases de données et extensions."
708
 
709
- #: views/packages/new1.base.php:204 views/packages/new2.base.php:136
710
- #: views/packages/new2.base.php:148
711
  msgid "more info"
712
  msgstr "plus d&#39;information"
713
 
714
- #: views/packages/new1.base.php:213
715
  msgid "Reserved Files"
716
  msgstr "Fichiers Réservés"
717
 
718
- #: views/packages/new1.base.php:217
719
  msgid ""
720
  "None of the reserved files (installer.php, installer-data.sql and installer-"
721
  "log.txt) where found from a previous install. This means you are clear to "
@@ -725,7 +715,7 @@ msgstr ""
725
  "installer-data.sql et installer-log.txt). Cela signifie que vous pouvez "
726
  "créer un nouveau paquet."
727
 
728
- #: views/packages/new1.base.php:220
729
  msgid ""
730
  "A reserved file(s) was found in the WordPress root directory. Reserved file "
731
  "names are installer.php, installer-data.sql and installer-log.txt. To "
@@ -738,11 +728,11 @@ msgstr ""
738
  "correctement, merci de retirer ces fichiers du répertoire racine. Ensuite, "
739
  "essayez de créer un nouveau paquet."
740
 
741
- #: views/packages/new1.base.php:221
742
  msgid "Remove Files Now"
743
  msgstr "Supprimer les Fichiers maintenant"
744
 
745
- #: views/packages/new1.base.php:231
746
  msgid "For additional help please see the "
747
  msgstr "Pour plus d&#39;aide en ligne, allez sur"
748
 
@@ -750,68 +740,96 @@ msgstr "Pour plus d&#39;aide en ligne, allez sur"
750
  msgid "Create a new default name"
751
  msgstr "Créer un nouveau nom par défaut"
752
 
753
- #: views/packages/new1.inc.form.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754
  msgid "File filter enabled"
755
  msgstr "Filtre de fichier activé"
756
 
757
- #: views/packages/new1.inc.form.php:21
758
  msgid "Database filter enabled"
759
  msgstr "Filtre de base de données activé"
760
 
761
- #: views/packages/new1.inc.form.php:28
762
- msgid "Format"
763
- msgstr "Format"
764
-
765
- #: views/packages/new1.inc.form.php:38 views/packages/new2.base.php:202
766
  msgid "Files"
767
  msgstr "Fichiers"
768
 
769
- #: views/packages/new1.inc.form.php:39 views/packages/new1.inc.form.php:147
770
- #: views/packages/new2.base.php:301
771
  msgid "Database"
772
  msgstr "Base de Données"
773
 
774
- #: views/packages/new1.inc.form.php:51
775
  msgid "Enable File Filters"
776
  msgstr "Activer les Filtres de Fichiers"
777
 
778
- #: views/packages/new1.inc.form.php:55 views/packages/new1.inc.form.php:63
779
  msgid "Separate all filters by semicolon"
780
  msgstr "Séparez tous les filtres par des points-virgules"
781
 
782
- #: views/packages/new1.inc.form.php:55 views/packages/new2.base.php:271
783
  msgid "Directories"
784
  msgstr "Répertoires"
785
 
786
- #: views/packages/new1.inc.form.php:57
787
  msgid "root path"
788
  msgstr "Chemin vers la Racine"
789
 
790
- #: views/packages/new1.inc.form.php:58
791
  msgid "wp-uploads"
792
  msgstr "wp-uploads"
793
 
794
- #: views/packages/new1.inc.form.php:59
795
  msgid "cache"
796
  msgstr "cache"
797
 
798
- #: views/packages/new1.inc.form.php:60 views/packages/new1.inc.form.php:67
799
  msgid "(clear)"
800
  msgstr "(effacer)"
801
 
802
- #: views/packages/new1.inc.form.php:63
803
  msgid "File extensions"
804
  msgstr "Extensions de Fichiers"
805
 
806
- #: views/packages/new1.inc.form.php:65
807
  msgid "media"
808
  msgstr "media"
809
 
810
- #: views/packages/new1.inc.form.php:66
811
  msgid "archive"
812
  msgstr "archive"
813
 
814
- #: views/packages/new1.inc.form.php:72
815
  msgid ""
816
  "The directory paths and extensions above will be be excluded from the "
817
  "archive file if enabled is checked."
@@ -819,29 +837,29 @@ msgstr ""
819
  "Les chemins vers le répertoire et les extensions ci-dessous seront exclus de "
820
  "l&#39;archive si vous cochez la case &#34;activer&#34;"
821
 
822
- #: views/packages/new1.inc.form.php:73
823
  msgid "Use the full path for directories and semicolons to separate all items."
824
  msgstr ""
825
  "Utilisez le chemin complet pour les répertoires et des points virgules pour "
826
  "séparer les fichiers."
827
 
828
- #: views/packages/new1.inc.form.php:84
829
  msgid "Enable Table Filters"
830
  msgstr "Activer les Filtres de Tables"
831
 
832
- #: views/packages/new1.inc.form.php:85
833
  msgid "checked tables are excluded"
834
  msgstr "les tables cochées seront exclues"
835
 
836
- #: views/packages/new1.inc.form.php:90
837
  msgid "Include All"
838
  msgstr "Tout Inclure"
839
 
840
- #: views/packages/new1.inc.form.php:91
841
  msgid "Exclude All"
842
  msgstr "Tout Exclure"
843
 
844
- #: views/packages/new1.inc.form.php:119
845
  msgid ""
846
  "Checked tables will not be added to the database script. Excluding certain "
847
  "tables can possibly cause your site or plugins to not work correctly after "
@@ -851,72 +869,76 @@ msgstr ""
851
  "données. Exclure certaines tables peut potentiellement empêcher votre ou vos "
852
  "plugins de ne pas fonctionner correctement après l&#39;installation !"
853
 
854
- #: views/packages/new1.inc.form.php:137
855
  msgid "STEP 1 - INPUTS"
856
  msgstr "ÉTAPE 1 - DONNÉES"
857
 
858
- #: views/packages/new1.inc.form.php:140
859
  msgid "MySQL Server"
860
  msgstr "Serveur MySQL"
861
 
862
- #: views/packages/new1.inc.form.php:143
863
  msgid "Host"
864
  msgstr "Adresse"
865
 
866
- #: views/packages/new1.inc.form.php:155
 
 
 
 
867
  msgid "Advanced Options"
868
  msgstr "Options Avancées"
869
 
870
- #: views/packages/new1.inc.form.php:161
871
  msgid "SSL"
872
  msgstr "SSL"
873
 
874
- #: views/packages/new1.inc.form.php:164
875
  msgid "Enforce on Admin"
876
  msgstr "Forcer à l&#39;administration"
877
 
878
- #: views/packages/new1.inc.form.php:168
879
  msgid "Enforce on Logins"
880
  msgstr "Forcer aux connexions"
881
 
882
- #: views/packages/new1.inc.form.php:172
883
  msgid "Cache"
884
  msgstr "Cache"
885
 
886
- #: views/packages/new1.inc.form.php:175
887
  msgid "Keep Enabled"
888
  msgstr "Garder Activé"
889
 
890
- #: views/packages/new1.inc.form.php:179
891
  msgid "Keep Home Path"
892
  msgstr "Garder le chemin de l&#39;accueil"
893
 
894
- #: views/packages/new1.inc.form.php:187
895
  msgid "STEP 2 - INPUTS"
896
  msgstr "ÉTAPE 2 - DONNÉES"
897
 
898
- #: views/packages/new1.inc.form.php:191
899
  msgid "New URL"
900
  msgstr "Nouvelle URL"
901
 
902
- #: views/packages/new1.inc.form.php:198
903
  msgid "The installer can have these fields pre-filled at install time."
904
  msgstr ""
905
  "L&#39;installer peut avoir ces champs pré-remplis lors de l&#39;installation."
906
 
907
- #: views/packages/new1.inc.form.php:198
908
  msgid "All values are optional."
909
  msgstr "Toutes ces valeurs sont facultatives."
910
 
911
- #: views/packages/new1.inc.form.php:207
912
  msgid "Reset"
913
  msgstr "Remise à zéro"
914
 
915
- #: views/packages/new1.inc.form.php:208
916
  msgid "Next"
917
  msgstr "Suivant"
918
 
919
- #: views/packages/new1.inc.form.php:220
920
  msgid ""
921
  "This will reset all of the current package settings. Would you like to "
922
  "continue?"
@@ -924,23 +946,23 @@ msgstr ""
924
  "Cela va remettre à zéro tous les paramètres du paquet en cours. Voulez-vous "
925
  "continuer ?"
926
 
927
- #: views/packages/new2.base.php:63
928
  msgid "Step 2: System Scan"
929
  msgstr "Étape 2 : Scan du Système"
930
 
931
- #: views/packages/new2.base.php:79
932
  msgid "Scanning Site"
933
  msgstr "Scan en cours"
934
 
935
- #: views/packages/new2.base.php:81 views/packages/new3.base.php:57
936
  msgid "Please Wait..."
937
  msgstr "Merci de patienter..."
938
 
939
- #: views/packages/new2.base.php:87
940
  msgid "Scan Complete"
941
  msgstr "Scan Terminé"
942
 
943
- #: views/packages/new2.base.php:89
944
  msgid ""
945
  "Scan checks are not required to pass, however they could cause issues on "
946
  "some systems."
@@ -948,67 +970,68 @@ msgstr ""
948
  "Il n&#39;est pas nécessaire que tous les résultats du scan soient positifs, "
949
  "cependant cela pourrait poser des problèmes sur certains systèmes."
950
 
951
- #: views/packages/new2.base.php:90
952
  msgid "Process Time:"
953
  msgstr "Durée du Processus :"
954
 
955
- #: views/packages/new2.base.php:99
956
  msgid "Server"
957
  msgstr "Serveur"
958
 
959
- #: views/packages/new2.base.php:101 views/tools/controller.php:17
960
  msgid "Diagnostics"
961
  msgstr "Diagnostics"
962
 
963
- #: views/packages/new2.base.php:110 views/packages/new2.base.php:116
964
  #: views/tools/diagnostics.php:106
965
  msgid "Web Server"
966
  msgstr "Serveur Web"
967
 
968
- #: views/packages/new2.base.php:118
969
- msgid "The Duplicator currently works with these web servers:"
970
- msgstr "Le plugin Duplicator fonctionne actuellement avec ces serveurs web : "
971
 
972
- #: views/packages/new2.base.php:127
973
- msgid "PHP Settings"
974
- msgstr "Paramètres PHP"
975
 
976
- #: views/packages/new2.base.php:133
977
  msgid "Open Base Dir"
978
  msgstr "Ouvrir le Répertoire de Base"
979
 
980
- #: views/packages/new2.base.php:135
981
  msgid ""
982
- "The Duplicator may have issues when [open_basedir] is enabled. Please work "
983
- "with your server administrator to disable this value in the php.ini file if "
984
- "you’re having issues building a package."
985
  msgstr ""
986
  "Duplicator peut rencontrer des problèmes quand [open_basedir] est activé. "
987
  "Merci de voir avec votre administrateur réseau s&#39;il peut désactiver "
988
- "cette fonction dans le fichier php.ini si vous avez des problèmes pour "
989
  "générer des paquets."
990
 
991
- #: views/packages/new2.base.php:140 views/tools/diagnostics.php:189
 
 
 
 
 
992
  msgid "Max Execution Time"
993
  msgstr "Temps Maximum d&#39;Exécution"
994
 
995
- #: views/packages/new2.base.php:144
996
  #, php-format
997
  msgid ""
998
- "The Duplicator will have issues when the [max_execution_time] value in the "
999
- "php.ini is low. Timeouts effect how long a process is allowed to run. The "
1000
- "recommended timeout is \"%1$s\" seconds. An attempt is made to override this "
1001
- "value if the server allows it. Please work with your server administrator "
1002
- "to make sure there are no restrictions for how long a PHP process is allowed "
1003
- "to run."
1004
  msgstr ""
1005
  "Duplicator peut rencontrer des problèmes quand la valeur de "
1006
- "[max_execution_time] dans le fichier php.ini est trop faible. Le timeout "
1007
- "affecte la durée autorisée pour le processus. La valeur recommandée est de "
1008
- "\"%1$s\" secondes. Si le serveur l&#39;autorise, le plugin va essayer de "
1009
- "forcer cette valeur. Merci de voir avec votre administrateur réseau pour "
1010
- "s&#39;assurer qu&#39;il n&#39;y ait pas de limitation dans la durée de "
1011
- "processus PHP."
1012
 
1013
  #: views/packages/new2.base.php:147
1014
  msgid ""
@@ -1028,32 +1051,40 @@ msgstr ""
1028
  "exclure les mauvaises ressources pourrait empêcher votre installation de "
1029
  "fonctionner correctement."
1030
 
1031
- #: views/packages/new2.base.php:158
1032
- msgid "WordPress Settings"
1033
- msgstr "Paramètres WordPress"
 
 
 
 
 
 
 
 
 
 
1034
 
1035
  #: views/packages/new2.base.php:164
 
 
 
 
1036
  msgid "WordPress Version"
1037
  msgstr "Version de WordPress"
1038
 
1039
- #: views/packages/new2.base.php:166
1040
- msgid "It is recommended to have a version of WordPress that is greater that "
 
 
1041
  msgstr ""
1042
- "Nous vous recommandons d&#39;avoir une version plus récente de WordPress"
1043
-
1044
- #: views/packages/new2.base.php:172
1045
- msgid "Found"
1046
- msgstr "Trouvé"
1047
 
1048
- #: views/packages/new2.base.php:172
1049
- msgid "Missing"
1050
- msgstr "Manquant"
1051
-
1052
- #: views/packages/new2.base.php:174
1053
  msgid "Core Files"
1054
  msgstr "Fichiers Source"
1055
 
1056
- #: views/packages/new2.base.php:176
1057
  msgid ""
1058
  "If the scanner is unable to locate the wp-config.php file in the root "
1059
  "directory, then you will need to manually copy it to its new location."
@@ -1066,13 +1097,14 @@ msgstr ""
1066
  msgid "Cache Path"
1067
  msgstr "Chemin du Cache"
1068
 
1069
- #: views/packages/new2.base.php:184
1070
  msgid ""
1071
  "Cached data will lead to issues at install time and increases your archive "
1072
  "size. It is recommended to empty your cache directory at build time. Use "
1073
  "caution when removing data from the cache directory. If you have a cache "
1074
  "plugin review the documentation for how to empty it; simply removing files "
1075
- "might cause errors on your site."
 
1076
  msgstr ""
1077
  "Les données en cache risquent d&#39;entrainer des problèmes influant sur le "
1078
  "temps d&#39;installation et la taille de l&#39;archive. Il est fortement "
@@ -1081,25 +1113,22 @@ msgstr ""
1081
  "de cache. Si vous utilisez un plugin de cache, merci de suivre leurs "
1082
  "instructions pour désinstaller proprement et vider les fichiers en cache. "
1083
  "Supprimer manuellement les fichiers de cache pourrait poser des conflits "
1084
- "avec d&#39;autres plugins par la suite."
 
1085
 
1086
- #: views/packages/new2.base.php:185
1087
- msgid "The cache size minimum threshold is currently set at "
1088
- msgstr "Le seuil minimum de la taille de cache est actuellement à"
1089
-
1090
- #: views/packages/new2.base.php:207 views/packages/new2.base.php:306
1091
  msgid "Enabled"
1092
  msgstr "Activé"
1093
 
1094
- #: views/packages/new2.base.php:222
1095
  msgid "File Count"
1096
  msgstr "Nombre de Fichiers"
1097
 
1098
- #: views/packages/new2.base.php:223
1099
  msgid "Directory Count"
1100
  msgstr "Nombre de Répertoires"
1101
 
1102
- #: views/packages/new2.base.php:225
1103
  #, php-format
1104
  msgid ""
1105
  "Total size represents all files minus any filters that have been setup. The "
@@ -1110,35 +1139,34 @@ msgstr ""
1110
  "exclus par vos soins. Le seuil actuel qui déclenche les avertissements est "
1111
  "de %1$s pour le site entier et de %2$s pour les fichiers volumineux."
1112
 
1113
- #: views/packages/new2.base.php:234
1114
- msgid "Invalid Names"
1115
- msgstr "Noms Invalides"
1116
 
1117
- #: views/packages/new2.base.php:238
1118
  msgid ""
1119
- "Invalid file or folder names can cause issues when extracting an archive "
1120
- "across different environments. Invalid file names consist of lengths over "
1121
- "250 characters and illegal characters that may not work on all operating "
1122
- "systems such as * ? > < : / \\ | . It is recommended to remove or filter "
1123
- "these files before building the archive or else you might have issues at "
1124
- "install time."
1125
  msgstr ""
1126
  "Des noms de fichiers ou de répertoires invalides peuvent poser des problèmes "
1127
- "lors de l&#39;extraction d&#39;archives dans différents environnements. Les "
1128
- "noms invalides sont ceux qui dépassent 250 caractères ou contiennent des "
1129
- "caractères interdits tels que * ? > < : / \\ | . Il est recommandé de "
1130
- "supprimer ou exclure ces fichiers avant de créer une archive car sinon vous "
1131
- "auriez le même problème lors de l&#39;installation."
1132
 
1133
- #: views/packages/new2.base.php:240 views/packages/new2.base.php:255
1134
  msgid "Show Paths"
1135
  msgstr "Voir les Chemins"
1136
 
1137
- #: views/packages/new2.base.php:249
1138
  msgid "Large Files"
1139
  msgstr "Fichiers Volumineux"
1140
 
1141
- #: views/packages/new2.base.php:253
1142
  #, php-format
1143
  msgid ""
1144
  "Large files such as movies or other backuped data can cause issues with "
@@ -1152,43 +1180,43 @@ msgstr ""
1152
  "problèmes lors de la création d&#39;un paquet, envisagez d&#39;exclure ces "
1153
  "fichiers et de les déplacer manuellement à leur future destination."
1154
 
1155
- #: views/packages/new2.base.php:265
1156
  msgid "View Filters"
1157
  msgstr "Voir les Filtres"
1158
 
1159
- #: views/packages/new2.base.php:268
1160
- msgid ""
1161
- "Below is a list of the directories and file extension that will be excluded "
1162
- "from the archive."
1163
- msgstr ""
1164
- "Ci-dessous sont listés les répertoires et les extensions qui seront exclus "
1165
- "de l&#39;archive."
1166
-
1167
- #: views/packages/new2.base.php:276
1168
  msgid "No directory filters have been set."
1169
  msgstr "Aucun filtre de répertoire n&#39;a été activé."
1170
 
1171
- #: views/packages/new2.base.php:281
1172
  msgid "File Extensions"
1173
  msgstr "Extensions de Fichiers"
1174
 
1175
- #: views/packages/new2.base.php:286
1176
  msgid "No file extension filters have been set."
1177
  msgstr "Aucun filtre d&#39;extension de fichier n&#39;a été activé."
1178
 
1179
- #: views/packages/new2.base.php:321
 
 
 
 
 
 
 
 
1180
  msgid "Tables"
1181
  msgstr "Tables"
1182
 
1183
- #: views/packages/new2.base.php:322
1184
  msgid "Records"
1185
  msgstr "Enregistrements"
1186
 
1187
- #: views/packages/new2.base.php:325
1188
  msgid "repair and optimization"
1189
  msgstr "réparer et optimiser"
1190
 
1191
- #: views/packages/new2.base.php:326
1192
  #, php-format
1193
  msgid ""
1194
  "Total size and row count for all database tables are approximate values. "
@@ -1207,63 +1235,67 @@ msgstr ""
1207
  "performances. Si votre serveur est compatible shell_exec et mysqldump, "
1208
  "essayez d&#39;activer cette option depuis le menu des paramètres."
1209
 
1210
- #: views/packages/new2.base.php:338
1211
  msgid "Table Details"
1212
  msgstr "Détails de la Table"
1213
 
1214
- #: views/packages/new2.base.php:349
1215
  msgid "Name:"
1216
  msgstr "Nom :"
1217
 
1218
- #: views/packages/new2.base.php:350
1219
  msgid "Host:"
1220
  msgstr "Hébergeur :"
1221
 
1222
- #: views/packages/new2.base.php:351
1223
  msgid "Build Mode:"
1224
  msgstr "Mode de Construction :"
1225
 
1226
- #: views/packages/new2.base.php:362
1227
  msgid "Scan Error"
1228
  msgstr "Erreurs de Scan"
1229
 
1230
- #: views/packages/new2.base.php:363
1231
  msgid "Please try again!"
1232
  msgstr "Merci de réessayer !"
1233
 
1234
- #: views/packages/new2.base.php:365 views/packages/new3.base.php:110
1235
  msgid "Server Status:"
1236
  msgstr "Statut Serveur :"
1237
 
1238
- #: views/packages/new2.base.php:368 views/packages/new3.base.php:114
1239
  msgid "Error Message:"
1240
  msgstr "Message d&#39;Erreur :"
1241
 
1242
- #: views/packages/new2.base.php:375
1243
  msgid "Back"
1244
  msgstr "Retour"
1245
 
1246
- #: views/packages/new2.base.php:376
1247
  msgid "Rescan"
1248
  msgstr "Re-Scanner"
1249
 
1250
- #: views/packages/new2.base.php:463
1251
  msgid "Unable to report on any tables"
1252
  msgstr "Impossible d&#39;acquérir une quelconque table"
1253
 
1254
- #: views/packages/new2.base.php:472
1255
  msgid "Unable to report on database stats"
1256
  msgstr "Impossible d&#39;acquérir les statistiques de la base de données"
1257
 
1258
- #: views/packages/new2.base.php:487
1259
- msgid "No name length issues."
1260
- msgstr "Pas de problème de longueur de nom."
1261
 
1262
- #: views/packages/new2.base.php:490 views/packages/new2.base.php:498
1263
  msgid "FILE"
1264
  msgstr "FICHIER"
1265
 
1266
- #: views/packages/new2.base.php:495
 
 
 
 
1267
  msgid "No large files found."
1268
  msgstr "Aucun fichier volumineux trouvé."
1269
 
@@ -1308,18 +1340,22 @@ msgid "Please try the process again."
1308
  msgstr "Merci de réessayer l&#39;assemblage à nouveau."
1309
 
1310
  #: views/packages/new3.base.php:105
 
 
 
 
1311
  msgid "Try Again"
1312
  msgstr "Merci de réessayer"
1313
 
1314
- #: views/packages/new3.base.php:121
1315
  msgid "Notice"
1316
  msgstr "Notification"
1317
 
1318
- #: views/packages/new3.base.php:124
1319
  msgid "Build Folder:"
1320
  msgstr "Répertoires de l&#39;Assemblage :"
1321
 
1322
- #: views/packages/new3.base.php:126
1323
  msgid ""
1324
  "Some servers close connections quickly; yet the build can continue to run in "
1325
  "the background. To validate if a build is still running; open the 'tmp' "
@@ -1334,14 +1370,10 @@ msgstr ""
1334
  "le cas, alors votre serveur a des timeouts stricts. Vous pouvez aller voir "
1335
  "la section &#34;Aide&#34; pour des ressources additionnelles. "
1336
 
1337
- #: views/packages/new3.base.php:135
1338
  msgid "Package Log"
1339
  msgstr "Journaux des Paquets"
1340
 
1341
- #: views/packages/new3.base.php:136
1342
- msgid "Support"
1343
- msgstr "Support"
1344
-
1345
  #: views/settings/controller.php:22 views/tools/diagnostics.php:87
1346
  msgid "General"
1347
  msgstr "Général"
@@ -1366,10 +1398,6 @@ msgstr "Effacer les paramètres du plugin"
1366
  msgid "Delete Entire Storage Directory"
1367
  msgstr "Effacer tout le Répertoire de Stockage"
1368
 
1369
- #: views/settings/general.php:94
1370
- msgid "Storage"
1371
- msgstr "Stockage"
1372
-
1373
  #: views/settings/general.php:96
1374
  msgid "Full Path"
1375
  msgstr "Chemin Complet"
@@ -1814,6 +1842,93 @@ msgstr "Rafraîchissement automatique"
1814
  msgid "Last 20 Logs"
1815
  msgstr "Les derniers 20 rapports"
1816
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1817
  #~ msgid "By"
1818
  #~ msgstr "Par"
1819
 
@@ -2483,9 +2598,6 @@ msgstr "Les derniers 20 rapports"
2483
  #~ msgid "ONLINE RESOURCES"
2484
  #~ msgstr "RESSOURCES EN LIGNE"
2485
 
2486
- #~ msgid "System Checks"
2487
- #~ msgstr "Vérification du Système"
2488
-
2489
  #~ msgid ""
2490
  #~ "The following directories should have permissions of 755 and files 644. "
2491
  #~ "Keep in mind that PHP may be accessing the paths/files as the user id "
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 ""
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
 
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."
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."
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."
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."
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."
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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."
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 "
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 "
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 "
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 "
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 "
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
 
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."
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 "
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?"
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."
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 ""
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."
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 "
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 "
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 "
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. "
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
 
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' "
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"
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"
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
 
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 "
lang/wpduplicator.pot CHANGED
@@ -1,8 +1,9 @@
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPDuplicator\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-13 09:09-0000\n"
6
  "PO-Revision-Date: 2015-04-13 09:10-0000\n"
7
  "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
8
  "Language-Team: \n"
@@ -10,69 +11,68 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ./\n"
15
- "X-Generator: Poedit 1.7.5\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-SearchPath-0: ..\n"
 
 
19
 
20
- #: ../classes/ui.php:111
21
  msgid ""
22
  "Reserved Duplicator install file(s) still exists in the root directory. "
23
  "Please delete these file(s) to avoid possible security issues."
24
  msgstr ""
25
 
26
- #: ../classes/ui.php:112
27
  msgid "Remove file(s) now"
28
  msgstr ""
29
 
30
- #: ../classes/ui.php:113
31
  msgid "Dismiss this notice"
32
  msgstr ""
33
 
34
- #: ../classes/utility.php:236
35
  msgid "You do not have sufficient permissions to access this page."
36
  msgstr ""
37
 
38
- #: ../duplicator.php:100
39
  msgid "Get Help"
40
  msgstr ""
41
 
42
- #: ../duplicator.php:100 ../duplicator.php:189 ../views/help/help.php:29
43
  msgid "Help"
44
  msgstr ""
45
 
46
- #: ../duplicator.php:101
47
  msgid "Support the Plugin"
48
  msgstr ""
49
 
50
- #: ../duplicator.php:101 ../duplicator.php:193 ../views/help/about.php:41
51
  msgid "About"
52
  msgstr ""
53
 
54
- #: ../duplicator.php:177 ../views/packages/controller.php:75
55
- #: ../views/packages/list.base.php:235
56
  msgid "Packages"
57
  msgstr ""
58
 
59
- #: ../duplicator.php:181 ../views/settings/controller.php:19
60
  msgid "Settings"
61
  msgstr ""
62
 
63
- #: ../duplicator.php:185 ../views/tools/controller.php:13
64
  msgid "Tools"
65
  msgstr ""
66
 
67
- #: ../duplicator.php:197 ../views/help/gopro.php:36
68
- msgid "Go Pro!"
69
- msgstr ""
70
-
71
- #: ../duplicator.php:244
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. "
@@ -81,147 +81,142 @@ msgid ""
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:46
117
- msgid "Backup and Move Made Easy!"
118
  msgstr ""
119
 
120
- #: ../views/help/gopro.php:47
121
- msgid "The top-rated Duplicator plugin is going professional!"
122
  msgstr ""
123
 
124
- #: ../views/help/gopro.php:56
 
 
 
 
 
 
 
 
125
  msgid "Duplicator Free"
126
  msgstr ""
127
 
128
- #: ../views/help/gopro.php:61 ../views/help/gopro.php:95
129
  msgid "Backup Files &amp; Database"
130
  msgstr ""
131
 
132
- #: ../views/help/gopro.php:62 ../views/help/gopro.php:96
133
  msgid ""
134
  "Compresses all your WordPress files and database into a compressed snapshot "
135
  "archive file."
136
  msgstr ""
137
 
138
- #: ../views/help/gopro.php:65 ../views/help/gopro.php:99
139
  msgid "Directory Filters"
140
  msgstr ""
141
 
142
- #: ../views/help/gopro.php:66 ../views/help/gopro.php:100
143
  msgid ""
144
  "Filter out the directories and file extensions you want to include/exclude "
145
  "in your in your archive file."
146
  msgstr ""
147
 
148
- #: ../views/help/gopro.php:69 ../views/help/gopro.php:103
149
  msgid "Database Table Filters"
150
  msgstr ""
151
 
152
- #: ../views/help/gopro.php:70 ../views/help/gopro.php:104
153
  msgid ""
154
  "Filter out only the database tables you want to include/exclude in your "
155
  "database creation script."
156
  msgstr ""
157
 
158
- #: ../views/help/gopro.php:73 ../views/help/gopro.php:107
159
  msgid "Migration Wizard"
160
  msgstr ""
161
 
162
- #: ../views/help/gopro.php:74 ../views/help/gopro.php:108
163
  msgid ""
164
  "With just two files (archive &amp; installer.php) move your site to a new "
165
  "location."
166
  msgstr ""
167
 
168
- #: ../views/help/gopro.php:89
169
  msgid "Duplicator Pro"
170
  msgstr ""
171
 
172
- #: ../views/help/gopro.php:111
173
- msgid "Schedules"
174
  msgstr ""
175
 
176
- #: ../views/help/gopro.php:112
177
  msgid ""
178
  "Automate the creation of your packages to run at various scheduled intervals."
179
  msgstr ""
180
 
181
- #: ../views/help/gopro.php:115
182
- msgid "Custom Templates"
183
- msgstr ""
184
-
185
- #: ../views/help/gopro.php:116
186
- msgid ""
187
- "Customize how each package is created and built with a customized template."
188
  msgstr ""
189
 
190
- #: ../views/help/gopro.php:119
191
- msgid "Cloud Storage"
192
  msgstr ""
193
 
194
- #: ../views/help/gopro.php:120
195
- msgid ""
196
- "Backup up your entire package to the cloud with access to services like FTP "
197
- "and Dropbox."
198
  msgstr ""
199
 
200
- #: ../views/help/gopro.php:123
201
- msgid "Queued Processing"
202
  msgstr ""
203
 
204
- #: ../views/help/gopro.php:124
205
- msgid ""
206
- "Enable the build of larger more complex packages and avoid server timeouts "
207
- "with queued processing."
208
- msgstr ""
209
-
210
- #: ../views/help/gopro.php:127
211
  msgid "Customer Support"
212
  msgstr ""
213
 
214
- #: ../views/help/gopro.php:128
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:136
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 "
@@ -231,365 +226,364 @@ msgid ""
231
  "hosting, and alternatives to fit your needs can be found below."
232
  msgstr ""
233
 
234
- #: ../views/help/help.php:50
235
  msgid "Knowledgebase"
236
  msgstr ""
237
 
238
- #: ../views/help/help.php:53
239
  msgid "Complete Online Documentation"
240
  msgstr ""
241
 
242
- #: ../views/help/help.php:55
243
  msgid "Choose A Section"
244
  msgstr ""
245
 
246
- #: ../views/help/help.php:56
247
  msgid "Quick Start"
248
  msgstr ""
249
 
250
- #: ../views/help/help.php:57
251
  msgid "User Guide"
252
  msgstr ""
253
 
254
- #: ../views/help/help.php:58
255
  msgid "FAQs"
256
  msgstr ""
257
 
258
- #: ../views/help/help.php:59
259
  msgid "Change Log"
260
  msgstr ""
261
 
262
- #: ../views/help/help.php:60
263
  msgid "Product Page"
264
  msgstr ""
265
 
266
- #: ../views/help/help.php:69
267
  msgid "Online Support"
268
  msgstr ""
269
 
270
- #: ../views/help/help.php:72
271
  msgid "Get Help From IT Professionals"
272
  msgstr ""
273
 
274
- #: ../views/help/help.php:76
275
  msgid "Get Support!"
276
  msgstr ""
277
 
278
- #: ../views/help/help.php:88
279
  msgid "Approved Hosting"
280
  msgstr ""
281
 
282
- #: ../views/help/help.php:91
283
  msgid "Servers That Work With Duplicator"
284
  msgstr ""
285
 
286
- #: ../views/help/help.php:94
287
  msgid "Trusted Providers!"
288
  msgstr ""
289
 
290
- #: ../views/help/help.php:104
291
  msgid "Alternatives"
292
  msgstr ""
293
 
294
- #: ../views/help/help.php:107
295
  msgid "Other Commercial Resources"
296
  msgstr ""
297
 
298
- #: ../views/help/help.php:110
299
  msgid "Pro Solutions!"
300
  msgstr ""
301
 
302
- #: ../views/packages/list-nodata.php:7
303
  msgid "No Packages Found."
304
  msgstr ""
305
 
306
- #: ../views/packages/list-nodata.php:8
307
  msgid "Click the 'Create New' button to build a package."
308
  msgstr ""
309
 
310
- #: ../views/packages/list-nodata.php:13
311
  msgid "Please visit the"
312
  msgstr ""
313
 
314
- #: ../views/packages/list-nodata.php:14 ../views/packages/list-nodata.php:28
315
- #: ../views/packages/new1.base.php:231
316
  msgid "help page"
317
  msgstr ""
318
 
319
- #: ../views/packages/list-nodata.php:15
320
  msgid "for additional support"
321
  msgstr ""
322
 
323
- #: ../views/packages/list-nodata.php:24
324
  msgid "Older packages prior to 0.5.0 are no longer supported in this version."
325
  msgstr ""
326
 
327
- #: ../views/packages/list-nodata.php:27
328
  msgid "To get an older package please visit the"
329
  msgstr ""
330
 
331
- #: ../views/packages/list-nodata.php:29
332
  msgid "and look for the Change Log link for additional instructions."
333
  msgstr ""
334
 
335
- #: ../views/packages/list-nodata.php:33
336
  msgid "Hide this message"
337
  msgstr ""
338
 
339
- #: ../views/packages/list.base.php:39
340
  msgid "Help Support Duplicator"
341
  msgstr ""
342
 
343
- #: ../views/packages/list.base.php:50
344
  msgid "Bulk Actions"
345
  msgstr ""
346
 
347
- #: ../views/packages/list.base.php:51
348
  msgid "Delete selected package(s)"
349
  msgstr ""
350
 
351
- #: ../views/packages/list.base.php:51
352
  msgid "Delete"
353
  msgstr ""
354
 
355
- #: ../views/packages/list.base.php:53
356
  msgid "Apply"
357
  msgstr ""
358
 
359
- #: ../views/packages/list.base.php:58
360
  msgid "Package Logs"
361
  msgstr ""
362
 
363
- #: ../views/packages/list.base.php:61 ../views/packages/new1.base.php:91
364
- #: ../views/packages/new2.base.php:68 ../views/packages/new3.base.php:43
365
- #: ../views/packages/new3.base.php:89
366
  msgid "All Packages"
367
  msgstr ""
368
 
369
- #: ../views/packages/list.base.php:62 ../views/packages/new1.base.php:92
370
- #: ../views/packages/new2.base.php:69 ../views/packages/new3.base.php:44
371
  msgid "Create New"
372
  msgstr ""
373
 
374
- #: ../views/packages/list.base.php:87
375
  msgid "Select all packages"
376
  msgstr ""
377
 
378
- #: ../views/packages/list.base.php:88 ../views/packages/new3.base.php:107
379
  msgid "Details"
380
  msgstr ""
381
 
382
- #: ../views/packages/list.base.php:89
383
  msgid "Created"
384
  msgstr ""
385
 
386
- #: ../views/packages/list.base.php:90 ../views/packages/new2.base.php:221
387
- #: ../views/packages/new2.base.php:323
388
  msgid "Size"
389
  msgstr ""
390
 
391
- #: ../views/packages/list.base.php:91 ../views/packages/new1.inc.form.php:9
392
- #: ../views/packages/new3.base.php:74
393
  msgid "Name"
394
  msgstr ""
395
 
396
- #: ../views/packages/list.base.php:93 ../views/packages/new1.inc.form.php:6
397
- #: ../views/settings/general.php:110
398
  msgid "Package"
399
  msgstr ""
400
 
401
- #: ../views/packages/list.base.php:124
402
  msgid "(No Notes Taken)"
403
  msgstr ""
404
 
405
- #: ../views/packages/list.base.php:142 ../views/packages/list.base.php:187
406
  msgid "View"
407
  msgstr ""
408
 
409
- #: ../views/packages/list.base.php:147 ../views/packages/new1.inc.form.php:132
410
- #: ../views/packages/new3.base.php:79
411
  msgid "Installer"
412
  msgstr ""
413
 
414
- #: ../views/packages/list.base.php:150 ../views/packages/new1.inc.form.php:18
415
- #: ../views/packages/new2.base.php:194 ../views/packages/new3.base.php:83
416
  msgid "Archive"
417
  msgstr ""
418
 
419
- #: ../views/packages/list.base.php:155 ../views/packages/list.base.php:200
420
- #: ../views/settings/general.php:79 ../views/tools/diagnostics.php:141
421
- #: ../views/tools/diagnostics.php:160 ../views/tools/diagnostics.php:200
422
  msgid "Version"
423
  msgstr ""
424
 
425
- #: ../views/packages/list.base.php:156 ../views/packages/list.base.php:201
426
- #: ../views/packages/new1.inc.form.php:151 ../views/tools/diagnostics.php:168
427
  msgid "User"
428
  msgstr ""
429
 
430
- #: ../views/packages/list.base.php:157 ../views/packages/list.base.php:202
431
  msgid "Hash"
432
  msgstr ""
433
 
434
- #: ../views/packages/list.base.php:158 ../views/packages/list.base.php:207
435
- #: ../views/packages/new1.inc.form.php:12
436
  msgid "Notes"
437
  msgstr ""
438
 
439
- #: ../views/packages/list.base.php:160
440
  msgid "Links"
441
  msgstr ""
442
 
443
- #: ../views/packages/list.base.php:161
444
  msgid "SQL"
445
  msgstr ""
446
 
447
- #: ../views/packages/list.base.php:162
448
  msgid "Log"
449
  msgstr ""
450
 
451
- #: ../views/packages/list.base.php:165
452
  msgid "Open Scan Report"
453
  msgstr ""
454
 
455
- #: ../views/packages/list.base.php:166
456
  msgid "View Package Object"
457
  msgstr ""
458
 
459
- #: ../views/packages/list.base.php:193
460
  msgid "View Error Details"
461
  msgstr ""
462
 
463
- #: ../views/packages/list.base.php:205
464
  msgid "Unrecoverable Error! Please remove this package."
465
  msgstr ""
466
 
467
- #: ../views/packages/list.base.php:210
468
  msgid ""
469
  "This package has encountered errors. Click 'View Log' for more details. "
470
  "For additional support see the "
471
  msgstr ""
472
 
473
- #: ../views/packages/list.base.php:211
474
  msgid "online knowledgebase"
475
  msgstr ""
476
 
477
- #: ../views/packages/list.base.php:213
478
  msgid "View Log"
479
  msgstr ""
480
 
481
- #: ../views/packages/list.base.php:236 ../views/packages/new2.base.php:218
482
- #: ../views/packages/new2.base.php:317
483
  msgid "Total Size"
484
  msgstr ""
485
 
486
- #: ../views/packages/list.base.php:255
487
  msgid "Download Links"
488
  msgstr ""
489
 
490
- #: ../views/packages/list.base.php:258
491
  msgid "The following links contain sensitive data. Please share with caution!"
492
  msgstr ""
493
 
494
- #: ../views/packages/list.base.php:264
495
  msgid ""
496
  "The database SQL script is a quick link to your database backup script. An "
497
  "exact copy is also stored in the package."
498
  msgstr ""
499
 
500
- #: ../views/packages/list.base.php:287
501
  msgid ""
502
  "Please select an action from the bulk action drop down menu to perform a "
503
  "specific action."
504
  msgstr ""
505
 
506
- #: ../views/packages/list.base.php:295
507
  msgid "Please select at least one package to delete."
508
  msgstr ""
509
 
510
- #: ../views/packages/list.base.php:299
511
  msgid "Are you sure, you want to delete the selected package(s)?"
512
  msgstr ""
513
 
514
- #: ../views/packages/list.base.php:333
515
  msgid "Package File Links"
516
  msgstr ""
517
 
518
- #: ../views/packages/list.base.php:336
519
  msgid "DATABASE"
520
  msgstr ""
521
 
522
- #: ../views/packages/list.base.php:337
523
  msgid "PACKAGE"
524
  msgstr ""
525
 
526
- #: ../views/packages/list.base.php:338
527
  msgid "INSTALLER"
528
  msgstr ""
529
 
530
- #: ../views/packages/list.base.php:339
531
  msgid "LOG"
532
  msgstr ""
533
 
534
- #: ../views/packages/list.base.php:340
535
  msgid "REPORT"
536
  msgstr ""
537
 
538
- #: ../views/packages/new1.base.php:11
539
  msgid "Package settings have been reset."
540
  msgstr ""
541
 
542
- #: ../views/packages/new1.base.php:81 ../views/packages/new2.base.php:58
543
- #: ../views/packages/new3.base.php:33
544
  msgid "Setup"
545
  msgstr ""
546
 
547
- #: ../views/packages/new1.base.php:82 ../views/packages/new2.base.php:59
548
- #: ../views/packages/new3.base.php:34
549
  msgid "Scan"
550
  msgstr ""
551
 
552
- #: ../views/packages/new1.base.php:83 ../views/packages/new2.base.php:60
553
- #: ../views/packages/new2.base.php:377 ../views/packages/new3.base.php:35
554
  msgid "Build"
555
  msgstr ""
556
 
557
- #: ../views/packages/new1.base.php:86
558
  msgid "Step 1: Package Setup"
559
  msgstr ""
560
 
561
- #: ../views/packages/new1.base.php:110
562
  msgid "Requirements:"
563
  msgstr ""
564
 
565
- #: ../views/packages/new1.base.php:119
566
  msgid ""
567
  "System requirements must pass for the Duplicator to work properly. Click "
568
  "each link for details."
569
  msgstr ""
570
 
571
- #: ../views/packages/new1.base.php:125
572
  msgid "PHP Support"
573
  msgstr ""
574
 
575
- #: ../views/packages/new1.base.php:131
576
  msgid "PHP Version"
577
  msgstr ""
578
 
579
- #: ../views/packages/new1.base.php:135
580
  msgid "Zip Archive Enabled"
581
  msgstr ""
582
 
583
- #: ../views/packages/new1.base.php:139
584
  msgid "Safe Mode Off"
585
  msgstr ""
586
 
587
- #: ../views/packages/new1.base.php:143 ../views/packages/new1.base.php:147
588
- #: ../views/packages/new1.base.php:151
589
  msgid "Function"
590
  msgstr ""
591
 
592
- #: ../views/packages/new1.base.php:156
593
  msgid ""
594
  "PHP versions 5.2.17+ or higher is required. Please note that in versioning "
595
  "logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
@@ -599,15 +593,15 @@ msgid ""
599
  "For additional information see our online documentation."
600
  msgstr ""
601
 
602
- #: ../views/packages/new1.base.php:164
603
  msgid "Permissions"
604
  msgstr ""
605
 
606
- #: ../views/packages/new1.base.php:167
607
  msgid "Required Paths"
608
  msgstr ""
609
 
610
- #: ../views/packages/new1.base.php:179
611
  msgid ""
612
  "Permissions can be difficult to resolve on some systems. If the plugin can "
613
  "not read the above paths here are a few things to try. 1) Set the above "
@@ -621,19 +615,19 @@ msgid ""
621
  "Duplicator for additional online resources."
622
  msgstr ""
623
 
624
- #: ../views/packages/new1.base.php:187
625
  msgid "Server Support"
626
  msgstr ""
627
 
628
- #: ../views/packages/new1.base.php:193
629
  msgid "MySQL Version"
630
  msgstr ""
631
 
632
- #: ../views/packages/new1.base.php:197
633
  msgid "MySQLi Support"
634
  msgstr ""
635
 
636
- #: ../views/packages/new1.base.php:203
637
  msgid ""
638
  "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
639
  "the trailing 'i') is also required. Contact your server administrator and "
@@ -642,23 +636,22 @@ msgid ""
642
  "added."
643
  msgstr ""
644
 
645
- #: ../views/packages/new1.base.php:204 ../views/packages/new2.base.php:136
646
- #: ../views/packages/new2.base.php:148
647
  msgid "more info"
648
  msgstr ""
649
 
650
- #: ../views/packages/new1.base.php:213
651
  msgid "Reserved Files"
652
  msgstr ""
653
 
654
- #: ../views/packages/new1.base.php:217
655
  msgid ""
656
  "None of the reserved files (installer.php, installer-data.sql and installer-"
657
  "log.txt) where found from a previous install. This means you are clear to "
658
  "create a new package."
659
  msgstr ""
660
 
661
- #: ../views/packages/new1.base.php:220
662
  msgid ""
663
  "A reserved file(s) was found in the WordPress root directory. Reserved file "
664
  "names are installer.php, installer-data.sql and installer-log.txt. To "
@@ -666,258 +659,289 @@ msgid ""
666
  "WordPress root directory. Then try creating your package again."
667
  msgstr ""
668
 
669
- #: ../views/packages/new1.base.php:221
670
  msgid "Remove Files Now"
671
  msgstr ""
672
 
673
- #: ../views/packages/new1.base.php:231
674
  msgid "For additional help please see the "
675
  msgstr ""
676
 
677
- #: ../views/packages/new1.inc.form.php:10
678
  msgid "Create a new default name"
679
  msgstr ""
680
 
681
- #: ../views/packages/new1.inc.form.php:20
682
- msgid "File filter enabled"
683
  msgstr ""
684
 
685
- #: ../views/packages/new1.inc.form.php:21
686
- msgid "Database filter enabled"
687
  msgstr ""
688
 
689
- #: ../views/packages/new1.inc.form.php:28
690
- msgid "Format"
691
  msgstr ""
692
 
693
- #: ../views/packages/new1.inc.form.php:38 ../views/packages/new2.base.php:202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
  msgid "Files"
695
  msgstr ""
696
 
697
- #: ../views/packages/new1.inc.form.php:39
698
- #: ../views/packages/new1.inc.form.php:147 ../views/packages/new2.base.php:301
699
  msgid "Database"
700
  msgstr ""
701
 
702
- #: ../views/packages/new1.inc.form.php:51
703
  msgid "Enable File Filters"
704
  msgstr ""
705
 
706
- #: ../views/packages/new1.inc.form.php:55
707
- #: ../views/packages/new1.inc.form.php:63
708
  msgid "Separate all filters by semicolon"
709
  msgstr ""
710
 
711
- #: ../views/packages/new1.inc.form.php:55 ../views/packages/new2.base.php:271
712
  msgid "Directories"
713
  msgstr ""
714
 
715
- #: ../views/packages/new1.inc.form.php:57
716
  msgid "root path"
717
  msgstr ""
718
 
719
- #: ../views/packages/new1.inc.form.php:58
720
  msgid "wp-uploads"
721
  msgstr ""
722
 
723
- #: ../views/packages/new1.inc.form.php:59
724
  msgid "cache"
725
  msgstr ""
726
 
727
- #: ../views/packages/new1.inc.form.php:60
728
- #: ../views/packages/new1.inc.form.php:67
729
  msgid "(clear)"
730
  msgstr ""
731
 
732
- #: ../views/packages/new1.inc.form.php:63
733
  msgid "File extensions"
734
  msgstr ""
735
 
736
- #: ../views/packages/new1.inc.form.php:65
737
  msgid "media"
738
  msgstr ""
739
 
740
- #: ../views/packages/new1.inc.form.php:66
741
  msgid "archive"
742
  msgstr ""
743
 
744
- #: ../views/packages/new1.inc.form.php:72
745
  msgid ""
746
  "The directory paths and extensions above will be be excluded from the "
747
  "archive file if enabled is checked."
748
  msgstr ""
749
 
750
- #: ../views/packages/new1.inc.form.php:73
751
  msgid "Use the full path for directories and semicolons to separate all items."
752
  msgstr ""
753
 
754
- #: ../views/packages/new1.inc.form.php:84
755
  msgid "Enable Table Filters"
756
  msgstr ""
757
 
758
- #: ../views/packages/new1.inc.form.php:85
759
  msgid "checked tables are excluded"
760
  msgstr ""
761
 
762
- #: ../views/packages/new1.inc.form.php:90
763
  msgid "Include All"
764
  msgstr ""
765
 
766
- #: ../views/packages/new1.inc.form.php:91
767
  msgid "Exclude All"
768
  msgstr ""
769
 
770
- #: ../views/packages/new1.inc.form.php:119
771
  msgid ""
772
  "Checked tables will not be added to the database script. Excluding certain "
773
  "tables can possibly cause your site or plugins to not work correctly after "
774
  "install!"
775
  msgstr ""
776
 
777
- #: ../views/packages/new1.inc.form.php:137
778
  msgid "STEP 1 - INPUTS"
779
  msgstr ""
780
 
781
- #: ../views/packages/new1.inc.form.php:140
782
  msgid "MySQL Server"
783
  msgstr ""
784
 
785
- #: ../views/packages/new1.inc.form.php:143
786
  msgid "Host"
787
  msgstr ""
788
 
789
- #: ../views/packages/new1.inc.form.php:155
 
 
 
 
790
  msgid "Advanced Options"
791
  msgstr ""
792
 
793
- #: ../views/packages/new1.inc.form.php:161
794
  msgid "SSL"
795
  msgstr ""
796
 
797
- #: ../views/packages/new1.inc.form.php:164
798
  msgid "Enforce on Admin"
799
  msgstr ""
800
 
801
- #: ../views/packages/new1.inc.form.php:168
802
  msgid "Enforce on Logins"
803
  msgstr ""
804
 
805
- #: ../views/packages/new1.inc.form.php:172
806
  msgid "Cache"
807
  msgstr ""
808
 
809
- #: ../views/packages/new1.inc.form.php:175
810
  msgid "Keep Enabled"
811
  msgstr ""
812
 
813
- #: ../views/packages/new1.inc.form.php:179
814
  msgid "Keep Home Path"
815
  msgstr ""
816
 
817
- #: ../views/packages/new1.inc.form.php:187
818
  msgid "STEP 2 - INPUTS"
819
  msgstr ""
820
 
821
- #: ../views/packages/new1.inc.form.php:191
822
  msgid "New URL"
823
  msgstr ""
824
 
825
- #: ../views/packages/new1.inc.form.php:198
826
  msgid "The installer can have these fields pre-filled at install time."
827
  msgstr ""
828
 
829
- #: ../views/packages/new1.inc.form.php:198
830
  msgid "All values are optional."
831
  msgstr ""
832
 
833
- #: ../views/packages/new1.inc.form.php:207
834
  msgid "Reset"
835
  msgstr ""
836
 
837
- #: ../views/packages/new1.inc.form.php:208
838
  msgid "Next"
839
  msgstr ""
840
 
841
- #: ../views/packages/new1.inc.form.php:220
842
  msgid ""
843
  "This will reset all of the current package settings. Would you like to "
844
  "continue?"
845
  msgstr ""
846
 
847
- #: ../views/packages/new2.base.php:63
848
  msgid "Step 2: System Scan"
849
  msgstr ""
850
 
851
- #: ../views/packages/new2.base.php:79
852
  msgid "Scanning Site"
853
  msgstr ""
854
 
855
- #: ../views/packages/new2.base.php:81 ../views/packages/new3.base.php:57
856
  msgid "Please Wait..."
857
  msgstr ""
858
 
859
- #: ../views/packages/new2.base.php:87
860
  msgid "Scan Complete"
861
  msgstr ""
862
 
863
- #: ../views/packages/new2.base.php:89
864
  msgid ""
865
  "Scan checks are not required to pass, however they could cause issues on "
866
  "some systems."
867
  msgstr ""
868
 
869
- #: ../views/packages/new2.base.php:90
870
  msgid "Process Time:"
871
  msgstr ""
872
 
873
- #: ../views/packages/new2.base.php:99
874
  msgid "Server"
875
  msgstr ""
876
 
877
- #: ../views/packages/new2.base.php:101 ../views/tools/controller.php:17
878
  msgid "Diagnostics"
879
  msgstr ""
880
 
881
- #: ../views/packages/new2.base.php:110 ../views/packages/new2.base.php:116
882
- #: ../views/tools/diagnostics.php:106
883
  msgid "Web Server"
884
  msgstr ""
885
 
886
- #: ../views/packages/new2.base.php:118
887
- msgid "The Duplicator currently works with these web servers:"
888
  msgstr ""
889
 
890
- #: ../views/packages/new2.base.php:127
891
- msgid "PHP Settings"
892
  msgstr ""
893
 
894
- #: ../views/packages/new2.base.php:133
895
  msgid "Open Base Dir"
896
  msgstr ""
897
 
898
- #: ../views/packages/new2.base.php:135
899
  msgid ""
900
- "The Duplicator may have issues when [open_basedir] is enabled. Please work "
901
- "with your server administrator to disable this value in the php.ini file if "
902
- "you’re having issues building a package."
 
 
 
 
 
903
  msgstr ""
904
 
905
- #: ../views/packages/new2.base.php:140 ../views/tools/diagnostics.php:189
906
  msgid "Max Execution Time"
907
  msgstr ""
908
 
909
- #: ../views/packages/new2.base.php:144
910
  #, php-format
911
  msgid ""
912
- "The Duplicator will have issues when the [max_execution_time] value in the "
913
- "php.ini is low. Timeouts effect how long a process is allowed to run. The "
914
- "recommended timeout is \"%1$s\" seconds. An attempt is made to override this "
915
- "value if the server allows it. Please work with your server administrator "
916
- "to make sure there are no restrictions for how long a PHP process is allowed "
917
- "to run."
918
  msgstr ""
919
 
920
- #: ../views/packages/new2.base.php:147
921
  msgid ""
922
  "Note: Timeouts can also be set at the web server layer, so if the PHP max "
923
  "timeout passes and you still see a build interrupt messages, then your web "
@@ -927,66 +951,68 @@ msgid ""
927
  "cause your install to not work properly."
928
  msgstr ""
929
 
930
- #: ../views/packages/new2.base.php:158
931
- msgid "WordPress Settings"
932
  msgstr ""
933
 
934
- #: ../views/packages/new2.base.php:164
935
- msgid "WordPress Version"
 
 
 
936
  msgstr ""
937
 
938
- #: ../views/packages/new2.base.php:166
939
- msgid "It is recommended to have a version of WordPress that is greater that "
940
  msgstr ""
941
 
942
- #: ../views/packages/new2.base.php:172
943
- msgid "Found"
944
  msgstr ""
945
 
946
- #: ../views/packages/new2.base.php:172
947
- msgid "Missing"
 
 
948
  msgstr ""
949
 
950
- #: ../views/packages/new2.base.php:174
951
  msgid "Core Files"
952
  msgstr ""
953
 
954
- #: ../views/packages/new2.base.php:176
955
  msgid ""
956
  "If the scanner is unable to locate the wp-config.php file in the root "
957
  "directory, then you will need to manually copy it to its new location."
958
  msgstr ""
959
 
960
- #: ../views/packages/new2.base.php:183
961
  msgid "Cache Path"
962
  msgstr ""
963
 
964
- #: ../views/packages/new2.base.php:184
965
  msgid ""
966
  "Cached data will lead to issues at install time and increases your archive "
967
  "size. It is recommended to empty your cache directory at build time. Use "
968
  "caution when removing data from the cache directory. If you have a cache "
969
  "plugin review the documentation for how to empty it; simply removing files "
970
- "might cause errors on your site."
971
- msgstr ""
972
-
973
- #: ../views/packages/new2.base.php:185
974
- msgid "The cache size minimum threshold is currently set at "
975
  msgstr ""
976
 
977
- #: ../views/packages/new2.base.php:207 ../views/packages/new2.base.php:306
978
  msgid "Enabled"
979
  msgstr ""
980
 
981
- #: ../views/packages/new2.base.php:222
982
  msgid "File Count"
983
  msgstr ""
984
 
985
- #: ../views/packages/new2.base.php:223
986
  msgid "Directory Count"
987
  msgstr ""
988
 
989
- #: ../views/packages/new2.base.php:225
990
  #, php-format
991
  msgid ""
992
  "Total size represents all files minus any filters that have been setup. The "
@@ -994,29 +1020,28 @@ msgid ""
994
  "%2$s for large files."
995
  msgstr ""
996
 
997
- #: ../views/packages/new2.base.php:234
998
- msgid "Invalid Names"
999
  msgstr ""
1000
 
1001
- #: ../views/packages/new2.base.php:238
1002
  msgid ""
1003
- "Invalid file or folder names can cause issues when extracting an archive "
1004
- "across different environments. Invalid file names consist of lengths over "
1005
- "250 characters and illegal characters that may not work on all operating "
1006
- "systems such as * ? > < : / \\ | . It is recommended to remove or filter "
1007
- "these files before building the archive or else you might have issues at "
1008
- "install time."
1009
  msgstr ""
1010
 
1011
- #: ../views/packages/new2.base.php:240 ../views/packages/new2.base.php:255
1012
  msgid "Show Paths"
1013
  msgstr ""
1014
 
1015
- #: ../views/packages/new2.base.php:249
1016
  msgid "Large Files"
1017
  msgstr ""
1018
 
1019
- #: ../views/packages/new2.base.php:253
1020
  #, php-format
1021
  msgid ""
1022
  "Large files such as movies or other backuped data can cause issues with "
@@ -1025,41 +1050,41 @@ msgid ""
1025
  "files filter and manually moving them to your new location."
1026
  msgstr ""
1027
 
1028
- #: ../views/packages/new2.base.php:265
1029
  msgid "View Filters"
1030
  msgstr ""
1031
 
1032
- #: ../views/packages/new2.base.php:268
1033
- msgid ""
1034
- "Below is a list of the directories and file extension that will be excluded "
1035
- "from the archive."
1036
- msgstr ""
1037
-
1038
- #: ../views/packages/new2.base.php:276
1039
  msgid "No directory filters have been set."
1040
  msgstr ""
1041
 
1042
- #: ../views/packages/new2.base.php:281
1043
  msgid "File Extensions"
1044
  msgstr ""
1045
 
1046
- #: ../views/packages/new2.base.php:286
1047
  msgid "No file extension filters have been set."
1048
  msgstr ""
1049
 
1050
- #: ../views/packages/new2.base.php:321
 
 
 
 
 
 
1051
  msgid "Tables"
1052
  msgstr ""
1053
 
1054
- #: ../views/packages/new2.base.php:322
1055
  msgid "Records"
1056
  msgstr ""
1057
 
1058
- #: ../views/packages/new2.base.php:325
1059
  msgid "repair and optimization"
1060
  msgstr ""
1061
 
1062
- #: ../views/packages/new2.base.php:326
1063
  #, php-format
1064
  msgid ""
1065
  "Total size and row count for all database tables are approximate values. "
@@ -1070,119 +1095,127 @@ msgid ""
1070
  "mysqldump you can try to enable this option from the settings menu."
1071
  msgstr ""
1072
 
1073
- #: ../views/packages/new2.base.php:338
1074
  msgid "Table Details"
1075
  msgstr ""
1076
 
1077
- #: ../views/packages/new2.base.php:349
1078
  msgid "Name:"
1079
  msgstr ""
1080
 
1081
- #: ../views/packages/new2.base.php:350
1082
  msgid "Host:"
1083
  msgstr ""
1084
 
1085
- #: ../views/packages/new2.base.php:351
1086
  msgid "Build Mode:"
1087
  msgstr ""
1088
 
1089
- #: ../views/packages/new2.base.php:362
1090
  msgid "Scan Error"
1091
  msgstr ""
1092
 
1093
- #: ../views/packages/new2.base.php:363
1094
  msgid "Please try again!"
1095
  msgstr ""
1096
 
1097
- #: ../views/packages/new2.base.php:365 ../views/packages/new3.base.php:110
1098
  msgid "Server Status:"
1099
  msgstr ""
1100
 
1101
- #: ../views/packages/new2.base.php:368 ../views/packages/new3.base.php:114
1102
  msgid "Error Message:"
1103
  msgstr ""
1104
 
1105
- #: ../views/packages/new2.base.php:375
1106
  msgid "Back"
1107
  msgstr ""
1108
 
1109
- #: ../views/packages/new2.base.php:376
1110
  msgid "Rescan"
1111
  msgstr ""
1112
 
1113
- #: ../views/packages/new2.base.php:463
1114
  msgid "Unable to report on any tables"
1115
  msgstr ""
1116
 
1117
- #: ../views/packages/new2.base.php:472
1118
  msgid "Unable to report on database stats"
1119
  msgstr ""
1120
 
1121
- #: ../views/packages/new2.base.php:487
1122
- msgid "No name length issues."
1123
  msgstr ""
1124
 
1125
- #: ../views/packages/new2.base.php:490 ../views/packages/new2.base.php:498
1126
  msgid "FILE"
1127
  msgstr ""
1128
 
1129
- #: ../views/packages/new2.base.php:495
 
 
 
 
1130
  msgid "No large files found."
1131
  msgstr ""
1132
 
1133
- #: ../views/packages/new3.base.php:38
1134
  msgid "Step 3: Build Package"
1135
  msgstr ""
1136
 
1137
- #: ../views/packages/new3.base.php:55
1138
  msgid "Building Package"
1139
  msgstr ""
1140
 
1141
- #: ../views/packages/new3.base.php:58
1142
  msgid "Keep this window open during the build process."
1143
  msgstr ""
1144
 
1145
- #: ../views/packages/new3.base.php:59
1146
  msgid "This may take several minutes."
1147
  msgstr ""
1148
 
1149
- #: ../views/packages/new3.base.php:63
1150
  msgid "Build Status"
1151
  msgstr ""
1152
 
1153
- #: ../views/packages/new3.base.php:70
1154
  msgid "Package Completed"
1155
  msgstr ""
1156
 
1157
- #: ../views/packages/new3.base.php:75
1158
  msgid "Process Time"
1159
  msgstr ""
1160
 
1161
- #: ../views/packages/new3.base.php:100
1162
  msgid "Build Interrupt"
1163
  msgstr ""
1164
 
1165
- #: ../views/packages/new3.base.php:101
1166
  msgid "The current build has experienced an issue."
1167
  msgstr ""
1168
 
1169
- #: ../views/packages/new3.base.php:103
1170
  msgid "Please try the process again."
1171
  msgstr ""
1172
 
1173
- #: ../views/packages/new3.base.php:105
 
 
 
 
1174
  msgid "Try Again"
1175
  msgstr ""
1176
 
1177
- #: ../views/packages/new3.base.php:121
1178
  msgid "Notice"
1179
  msgstr ""
1180
 
1181
- #: ../views/packages/new3.base.php:124
1182
  msgid "Build Folder:"
1183
  msgstr ""
1184
 
1185
- #: ../views/packages/new3.base.php:126
1186
  msgid ""
1187
  "Some servers close connections quickly; yet the build can continue to run in "
1188
  "the background. To validate if a build is still running; open the 'tmp' "
@@ -1191,448 +1224,463 @@ msgid ""
1191
  "page for additional resources."
1192
  msgstr ""
1193
 
1194
- #: ../views/packages/new3.base.php:135
1195
  msgid "Package Log"
1196
  msgstr ""
1197
 
1198
- #: ../views/packages/new3.base.php:136
1199
- msgid "Support"
1200
- msgstr ""
1201
-
1202
- #: ../views/settings/controller.php:22 ../views/tools/diagnostics.php:87
1203
  msgid "General"
1204
  msgstr ""
1205
 
1206
- #: ../views/settings/general.php:6
1207
  msgid "Settings Saved"
1208
  msgstr ""
1209
 
1210
- #: ../views/settings/general.php:75
1211
  msgid "Plugin"
1212
  msgstr ""
1213
 
1214
- #: ../views/settings/general.php:83
1215
  msgid "Uninstall"
1216
  msgstr ""
1217
 
1218
- #: ../views/settings/general.php:86
1219
  msgid "Delete Plugin Settings"
1220
  msgstr ""
1221
 
1222
- #: ../views/settings/general.php:89
1223
  msgid "Delete Entire Storage Directory"
1224
  msgstr ""
1225
 
1226
- #: ../views/settings/general.php:94
1227
- msgid "Storage"
1228
- msgstr ""
1229
-
1230
- #: ../views/settings/general.php:96
1231
  msgid "Full Path"
1232
  msgstr ""
1233
 
1234
- #: ../views/settings/general.php:99
1235
  msgid "Disable .htaccess File In Storage Directory"
1236
  msgstr ""
1237
 
1238
- #: ../views/settings/general.php:101
1239
  msgid "Disable if issues occur when downloading installer/archive files."
1240
  msgstr ""
1241
 
1242
- #: ../views/settings/general.php:114
1243
  msgid "Archive Flush"
1244
  msgstr ""
1245
 
1246
- #: ../views/settings/general.php:117
1247
  msgid "Attempt Network Keep Alive"
1248
  msgstr ""
1249
 
1250
- #: ../views/settings/general.php:118
1251
  msgid "recommended only for large archives"
1252
  msgstr ""
1253
 
1254
- #: ../views/settings/general.php:120
1255
  msgid ""
1256
  "This will attempt to keep a network connection established for large "
1257
  "archives."
1258
  msgstr ""
1259
 
1260
- #: ../views/settings/general.php:125
1261
  msgid "Database Build"
1262
  msgstr ""
1263
 
1264
- #: ../views/settings/general.php:128
1265
  msgid "Use PHP"
1266
  msgstr ""
1267
 
1268
- #: ../views/settings/general.php:131
1269
  msgid "Query Limit Size"
1270
  msgstr ""
1271
 
1272
- #: ../views/settings/general.php:140
1273
  msgid "higher values speed up build times but uses more memory"
1274
  msgstr ""
1275
 
1276
- #: ../views/settings/general.php:147
1277
  msgid "This server does not have shell_exec configured to run."
1278
  msgstr ""
1279
 
1280
- #: ../views/settings/general.php:149
1281
  msgid "Please contact the server administrator to enable this feature."
1282
  msgstr ""
1283
 
1284
- #: ../views/settings/general.php:154
1285
  msgid "Use mysqldump"
1286
  msgstr ""
1287
 
1288
- #: ../views/settings/general.php:155
1289
  msgid "recommended for large databases"
1290
  msgstr ""
1291
 
1292
- #: ../views/settings/general.php:160
1293
  msgid "Working Path:"
1294
  msgstr ""
1295
 
1296
- #: ../views/settings/general.php:166
1297
  msgid ""
1298
  "Mysqldump was not found at its default location or the location provided. "
1299
  "Please enter a path to a valid location where mysqldump can run. If the "
1300
  "problem persist contact your server administrator."
1301
  msgstr ""
1302
 
1303
- #: ../views/settings/general.php:171
1304
  msgid "Add Custom Path:"
1305
  msgstr ""
1306
 
1307
- #: ../views/settings/general.php:175
1308
  msgid "This is the path to your mysqldump program."
1309
  msgstr ""
1310
 
1311
- #: ../views/settings/general.php:184
1312
  msgid "Package Debug"
1313
  msgstr ""
1314
 
1315
- #: ../views/settings/general.php:187
1316
  msgid "Show Package Debug Status in Packages Screen"
1317
  msgstr ""
1318
 
1319
- #: ../views/settings/general.php:195
1320
  msgid "Roles & Capabilities"
1321
  msgstr ""
1322
 
1323
- #: ../views/settings/general.php:200
1324
  msgid "Custom Roles"
1325
  msgstr ""
1326
 
1327
- #: ../views/settings/general.php:203
1328
  msgid "Enable User Role Editor Plugin Integration"
1329
  msgstr ""
1330
 
1331
- #: ../views/settings/general.php:210
1332
  msgid "The User Role Editor Plugin"
1333
  msgstr ""
1334
 
1335
- #: ../views/settings/general.php:211
1336
  msgid "Free"
1337
  msgstr ""
1338
 
1339
- #: ../views/settings/general.php:212
1340
  msgid "or"
1341
  msgstr ""
1342
 
1343
- #: ../views/settings/general.php:213
1344
  msgid "Professional"
1345
  msgstr ""
1346
 
1347
- #: ../views/settings/general.php:214
1348
  msgid "must be installed to use"
1349
  msgstr ""
1350
 
1351
- #: ../views/settings/general.php:215
1352
  msgid "this feature."
1353
  msgstr ""
1354
 
1355
- #: ../views/settings/general.php:227
1356
  msgid "Save Settings"
1357
  msgstr ""
1358
 
1359
- #: ../views/tools/cleanup.php:8
1360
  msgid "Installer File Cleanup Ran."
1361
  msgstr ""
1362
 
1363
- #: ../views/tools/cleanup.php:12 ../views/tools/diagnostics.php:44
1364
  msgid "Legacy data removed."
1365
  msgstr ""
1366
 
1367
- #: ../views/tools/cleanup.php:16
1368
  msgid "Build cache removed."
1369
  msgstr ""
1370
 
1371
- #: ../views/tools/cleanup.php:73
1372
  msgid ""
1373
  "If the installer files did not successfully get removed, then you WILL need "
1374
  "to remove them manually"
1375
  msgstr ""
1376
 
1377
- #: ../views/tools/cleanup.php:74
1378
  msgid ""
1379
  "Please remove all installer files to avoid leaving open security issues on "
1380
  "your server"
1381
  msgstr ""
1382
 
1383
- #: ../views/tools/cleanup.php:82
1384
  msgid "Data Cleanup"
1385
  msgstr ""
1386
 
1387
- #: ../views/tools/cleanup.php:85
1388
  msgid "Delete Reserved Files"
1389
  msgstr ""
1390
 
1391
- #: ../views/tools/cleanup.php:86
1392
  msgid "Removes all installer files from a previous install"
1393
  msgstr ""
1394
 
1395
- #: ../views/tools/cleanup.php:89
1396
  msgid "Delete Legacy Data"
1397
  msgstr ""
1398
 
1399
- #: ../views/tools/cleanup.php:90
1400
  msgid "Removes all legacy data and settings prior to version"
1401
  msgstr ""
1402
 
1403
- #: ../views/tools/cleanup.php:93
1404
  msgid "Clear Build Cache"
1405
  msgstr ""
1406
 
1407
- #: ../views/tools/cleanup.php:94
1408
  msgid "Removes all build data from:"
1409
  msgstr ""
1410
 
1411
- #: ../views/tools/cleanup.php:107
1412
  #, php-format
1413
  msgid "This action will remove all legacy settings prior to version %1$s. "
1414
  msgstr ""
1415
 
1416
- #: ../views/tools/cleanup.php:108
1417
  msgid ""
1418
  "Legacy settings are only needed if you plan to migrate back to an older "
1419
  "version of this plugin."
1420
  msgstr ""
1421
 
1422
- #: ../views/tools/cleanup.php:120
1423
  msgid ""
1424
  "This process will remove all build cache files. Be sure no packages are "
1425
  "currently building or else they will be cancelled."
1426
  msgstr ""
1427
 
1428
- #: ../views/tools/controller.php:16
1429
  msgid "Logging"
1430
  msgstr ""
1431
 
1432
- #: ../views/tools/controller.php:18
1433
  msgid "Cleanup"
1434
  msgstr ""
1435
 
1436
- #: ../views/tools/diagnostics.php:18 ../views/tools/diagnostics.php:19
1437
  msgid "unknow"
1438
  msgstr ""
1439
 
1440
- #: ../views/tools/diagnostics.php:39
1441
  msgid "Plugin settings reset."
1442
  msgstr ""
1443
 
1444
- #: ../views/tools/diagnostics.php:40
1445
  msgid "View state settings reset."
1446
  msgstr ""
1447
 
1448
- #: ../views/tools/diagnostics.php:41
1449
  msgid "Active package settings reset."
1450
  msgstr ""
1451
 
1452
- #: ../views/tools/diagnostics.php:81
1453
  msgid "Server Settings"
1454
  msgstr ""
1455
 
1456
- #: ../views/tools/diagnostics.php:90
1457
  msgid "Duplicator Version"
1458
  msgstr ""
1459
 
1460
- #: ../views/tools/diagnostics.php:94
1461
  msgid "Operating System"
1462
  msgstr ""
1463
 
1464
- #: ../views/tools/diagnostics.php:98
1465
  msgid "Timezone"
1466
  msgstr ""
1467
 
1468
- #: ../views/tools/diagnostics.php:102
1469
  msgid "Server Time"
1470
  msgstr ""
1471
 
1472
- #: ../views/tools/diagnostics.php:110
1473
  msgid "APC Enabled"
1474
  msgstr ""
1475
 
1476
- #: ../views/tools/diagnostics.php:114
1477
  msgid "Root Path"
1478
  msgstr ""
1479
 
1480
- #: ../views/tools/diagnostics.php:118
1481
  msgid "ABSPATH"
1482
  msgstr ""
1483
 
1484
- #: ../views/tools/diagnostics.php:122
1485
  msgid "Plugins Path"
1486
  msgstr ""
1487
 
1488
- #: ../views/tools/diagnostics.php:126
1489
  msgid "Loaded PHP INI"
1490
  msgstr ""
1491
 
1492
- #: ../views/tools/diagnostics.php:130
1493
  msgid "Server IP"
1494
  msgstr ""
1495
 
1496
- #: ../views/tools/diagnostics.php:134
1497
  msgid "Client IP"
1498
  msgstr ""
1499
 
1500
- #: ../views/tools/diagnostics.php:145
1501
  msgid "Langugage"
1502
  msgstr ""
1503
 
1504
- #: ../views/tools/diagnostics.php:149 ../views/tools/diagnostics.php:204
1505
  msgid "Charset"
1506
  msgstr ""
1507
 
1508
- #: ../views/tools/diagnostics.php:153
1509
  msgid "Memory Limit "
1510
  msgstr ""
1511
 
1512
- #: ../views/tools/diagnostics.php:154
1513
  msgid "Max"
1514
  msgstr ""
1515
 
1516
- #: ../views/tools/diagnostics.php:172
1517
  msgid "Safe Mode"
1518
  msgstr ""
1519
 
1520
- #: ../views/tools/diagnostics.php:176
1521
  msgid "On"
1522
  msgstr ""
1523
 
1524
- #: ../views/tools/diagnostics.php:176
1525
  msgid "Off"
1526
  msgstr ""
1527
 
1528
- #: ../views/tools/diagnostics.php:181
1529
  msgid "Memory Limit"
1530
  msgstr ""
1531
 
1532
- #: ../views/tools/diagnostics.php:185
1533
  msgid "Memory In Use"
1534
  msgstr ""
1535
 
1536
- #: ../views/tools/diagnostics.php:193
1537
  msgid "Shell Exec"
1538
  msgstr ""
1539
 
1540
- #: ../views/tools/diagnostics.php:194
1541
  msgid "Is Supported"
1542
  msgstr ""
1543
 
1544
- #: ../views/tools/diagnostics.php:194
1545
  msgid "Not Supported"
1546
  msgstr ""
1547
 
1548
- #: ../views/tools/diagnostics.php:208
1549
  msgid "Wait Timeout"
1550
  msgstr ""
1551
 
1552
- #: ../views/tools/diagnostics.php:212
1553
  msgid "Max Allowed Packets"
1554
  msgstr ""
1555
 
1556
- #: ../views/tools/diagnostics.php:216
1557
  msgid "msyqldump Path"
1558
  msgstr ""
1559
 
1560
- #: ../views/tools/diagnostics.php:220
1561
  msgid "Server Disk"
1562
  msgstr ""
1563
 
1564
- #: ../views/tools/diagnostics.php:223
1565
  msgid "Free space"
1566
  msgstr ""
1567
 
1568
- #: ../views/tools/diagnostics.php:226
1569
  msgid "Note: This value is the physical servers hard-drive allocation."
1570
  msgstr ""
1571
 
1572
- #: ../views/tools/diagnostics.php:227
1573
  msgid ""
1574
  "On shared hosts check your control panel for the 'TRUE' disk space quota "
1575
  "value."
1576
  msgstr ""
1577
 
1578
- #: ../views/tools/diagnostics.php:243
1579
  msgid "Stored Data"
1580
  msgstr ""
1581
 
1582
- #: ../views/tools/diagnostics.php:248
1583
  msgid "Options Values"
1584
  msgstr ""
1585
 
1586
- #: ../views/tools/diagnostics.php:281
1587
  msgid "PHP Information"
1588
  msgstr ""
1589
 
1590
- #: ../views/tools/diagnostics.php:300
1591
  msgid "Delete this option value"
1592
  msgstr ""
1593
 
1594
- #: ../views/tools/logging.php:140
1595
  msgid "Log file not found or unreadable"
1596
  msgstr ""
1597
 
1598
- #: ../views/tools/logging.php:142
1599
  msgid ""
1600
  "Try to create a package, since no log files were found in the snapshots "
1601
  "directory with the extension *.log"
1602
  msgstr ""
1603
 
1604
- #: ../views/tools/logging.php:144
1605
  msgid "Reasons for log file not showing"
1606
  msgstr ""
1607
 
1608
- #: ../views/tools/logging.php:145
1609
  msgid "The web server does not support returning .log file extentions"
1610
  msgstr ""
1611
 
1612
- #: ../views/tools/logging.php:146
1613
  msgid ""
1614
  "The snapshots directory does not have the correct permissions to write "
1615
  "files. Try setting the permissions to 755"
1616
  msgstr ""
1617
 
1618
- #: ../views/tools/logging.php:147
1619
  msgid ""
1620
  "The process that PHP runs under does not have enough permissions to create "
1621
  "files. Please contact your hosting provider for more details"
1622
  msgstr ""
1623
 
1624
- #: ../views/tools/logging.php:156 ../views/tools/logging.php:161
1625
  msgid "Options"
1626
  msgstr ""
1627
 
1628
- #: ../views/tools/logging.php:163
1629
  msgid "Refresh"
1630
  msgstr ""
1631
 
1632
- #: ../views/tools/logging.php:168
1633
  msgid "Auto Refresh"
1634
  msgstr ""
1635
 
1636
- #: ../views/tools/logging.php:174
1637
  msgid "Last 20 Logs"
1638
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
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. "
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 "
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 "
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 "
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 "
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 "
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 "
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 "
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 "
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. "
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' "
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
@@ -4,7 +4,7 @@ Donate link: www.lifeinthegrid.com/partner
4
  Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
- Stable tag: 0.5.22
8
  License: GPLv2
9
 
10
  Duplicate, clone, backup, move and transfer an entire site from one location to another.
4
  Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
+ Stable tag: 0.5.24
8
  License: GPLv2
9
 
10
  Duplicate, clone, backup, move and transfer an entire site from one location to another.
views/actions.php CHANGED
@@ -88,8 +88,9 @@ function duplicator_package_report() {
88
  */
89
  function duplicator_package_delete() {
90
 
91
- DUP_Util::CheckPermissions('export');
92
-
 
93
  try {
94
  global $wpdb;
95
  $json = array();
88
  */
89
  function duplicator_package_delete() {
90
 
91
+ DUP_Util::CheckPermissions('export');
92
+ check_ajax_referer( 'package_list', 'nonce' );
93
+
94
  try {
95
  global $wpdb;
96
  $json = array();
views/help/gopro.php CHANGED
@@ -19,9 +19,9 @@ require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
19
  background-image:linear-gradient(to bottom, #FFFFFF 0%, #DEDEDE 100%);
20
  }
21
  div.dup-compare-area {width:400px; float:left; border:1px solid #dfdfdf; border-radius:4px; margin:10px; line-height:18px;box-shadow: 0 8px 6px -6px #ccc;}
22
- div.feature {background: #fff; padding:18px; margin: 2px; text-align: center; min-height: 30px}
23
- div.feature a {font-size:21px; font-weight: bold;}
24
- div.dup-compare-area div.feature div.info {display:none; padding:10px 10px 5px 10px; font-style: italic; color: #555; font-size: 14px}
25
  div.dup-gopro-header {text-align: center; margin: 5px 0 15px 0; font-size:18px; line-height: 30px}
26
  div.dup-gopro-header b {font-size: 35px}
27
  a.dup-check-it-btn {box-shadow: 5px 5px 5px 0px #999 !important; font-size: 20px !important; height:50px !important; padding:10px 40px 0 40px !important;}
@@ -43,85 +43,95 @@ require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
43
 
44
  <h1 style="font-size:38px">
45
  <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo.png" style='text-align:top; margin:-8px 0' />
46
- <?php _e('Duplicator Pro Has Arrived!', 'wpduplicator') ?>
47
  </h1>
48
  <h3 style="font-size:20px">
49
- <?php _e('The simplicity of Duplicator', 'wpduplicator') ?>
50
- <?php _e('with the power the professional requires.', 'wpduplicator') ?>
51
  </h3>
52
  </div>
53
 
54
  <!-- FREE-->
55
  <div class="dup-compare-area">
56
  <div class="dup-support-hlp-hdrs">
57
- <?php _e('Duplicator Free', 'wpduplicator') ?>
58
  </div>
59
  <div class="feature">
60
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Backup Files &amp; Database', 'wpduplicator') ?></a>
61
- <div class="info"><?php _e('Compresses all your WordPress files and database into a compressed snapshot archive file.', 'wpduplicator') ?></div>
62
  </div>
63
  <div class="feature">
64
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Directory Filters', 'wpduplicator') ?></a>
65
- <div class="info"><?php _e('Filter out the directories and file extensions you want to include/exclude in your in your archive file.', 'wpduplicator') ?></div>
66
  </div>
67
  <div class="feature">
68
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Database Table Filters', 'wpduplicator') ?></a>
69
- <div class="info"><?php _e('Filter out only the database tables you want to include/exclude in your database creation script.', 'wpduplicator') ?></div>
70
  </div>
71
  <div class="feature">
72
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Migration Wizard', 'wpduplicator') ?></a>
73
- <div class="info"><?php _e('With just two files (archive &amp; installer.php) move your site to a new location.', 'wpduplicator') ?></div>
74
  </div>
75
- <div class="feature"><i class="fa fa-times fa-2x"></i></div>
76
- <div class="feature"><i class="fa fa-times fa-2x"></i></div>
77
- <div class="feature"><i class="fa fa-times fa-2x"></i></div>
78
- <div class="feature"><i class="fa fa-times fa-2x"></i></div>
 
 
79
 
80
  </div>
81
 
82
  <!-- PRO -->
83
  <div class="dup-compare-area">
84
  <div class="dup-support-hlp-hdrs">
85
- <?php _e('Duplicator Pro', 'wpduplicator') ?>
86
  </div>
87
  <div class="feature">
88
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Backup Files &amp; Database', 'wpduplicator') ?></a>
89
- <div class="info"><?php _e('Compresses all your WordPress files and database into a compressed snapshot archive file.', 'wpduplicator') ?></div>
90
  </div>
91
  <div class="feature">
92
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Directory Filters', 'wpduplicator') ?></a>
93
- <div class="info"><?php _e('Filter out the directories and file extensions you want to include/exclude in your in your archive file.', 'wpduplicator') ?></div>
94
  </div>
95
  <div class="feature">
96
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Database Table Filters', 'wpduplicator') ?></a>
97
- <div class="info"><?php _e('Filter out only the database tables you want to include/exclude in your database creation script.', 'wpduplicator') ?></div>
98
  </div>
99
  <div class="feature">
100
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Migration Wizard', 'wpduplicator') ?></a>
101
- <div class="info"><?php _e('With just two files (archive &amp; installer.php) move your site to a new location.', 'wpduplicator') ?></div>
102
  </div>
103
  <div class="feature">
104
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Scheduled Backups', 'wpduplicator') ?></a>
105
- <div class="info"><?php _e('Automate the creation of your packages to run at various scheduled intervals.', 'wpduplicator') ?></div>
106
  </div>
107
  <div class="feature">
108
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Dropbox Support', 'wpduplicator') ?></a>
109
- <div class="info"><?php _e('Backup up your entire site to Dropbox.', 'wpduplicator') ?></div>
110
  </div>
111
  <div class="feature">
112
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('FTP Support', 'wpduplicator') ?></a>
113
- <div class="info"><?php _e('Backup up your entire site to an FTP server.', 'wpduplicator') ?></div>
114
  </div>
115
  <div class="feature">
116
- <a href="javascript:void(0)" class="dup-info-click"><?php _e('Customer Support', 'wpduplicator') ?></a>
117
- <div class="info"><?php _e('Server setups can be quite complex, with pro you get prompt help to get your site backed up and moved.', 'wpduplicator') ?></div>
 
 
 
 
 
 
 
 
118
  </div>
119
 
120
  </div>
121
  <br style="clear:both" />
122
  <p style="text-align:center">
123
- <a href="http://duplicatorpro.com?go-pro" target="_blank" class="button button-primary button-large dup-check-it-btn" >
124
- <?php _e('Check It Out!', 'wpduplicator') ?>
125
  </a>
126
  </p>
127
  </div>
19
  background-image:linear-gradient(to bottom, #FFFFFF 0%, #DEDEDE 100%);
20
  }
21
  div.dup-compare-area {width:400px; float:left; border:1px solid #dfdfdf; border-radius:4px; margin:10px; line-height:18px;box-shadow: 0 8px 6px -6px #ccc;}
22
+ div.feature {background: #fff; padding:15px; margin: 2px; text-align: center; min-height: 20px}
23
+ div.feature a {font-size:18px; font-weight: bold;}
24
+ div.dup-compare-area div.feature div.info {display:none; padding:7px 7px 5px 7px; font-style: italic; color: #555; font-size: 14px}
25
  div.dup-gopro-header {text-align: center; margin: 5px 0 15px 0; font-size:18px; line-height: 30px}
26
  div.dup-gopro-header b {font-size: 35px}
27
  a.dup-check-it-btn {box-shadow: 5px 5px 5px 0px #999 !important; font-size: 20px !important; height:50px !important; padding:10px 40px 0 40px !important;}
43
 
44
  <h1 style="font-size:38px">
45
  <img src="<?php echo DUPLICATOR_PLUGIN_URL ?>assets/img/logo.png" style='text-align:top; margin:-8px 0' />
46
+ <?php DUP_Util::_e('Duplicator Pro Has Arrived!') ?>
47
  </h1>
48
  <h3 style="font-size:20px">
49
+ <?php DUP_Util::_e('The simplicity of Duplicator') ?>
50
+ <?php DUP_Util::_e('with the power the professional requires.') ?>
51
  </h3>
52
  </div>
53
 
54
  <!-- FREE-->
55
  <div class="dup-compare-area">
56
  <div class="dup-support-hlp-hdrs">
57
+ <?php DUP_Util::_e('Duplicator Free') ?>
58
  </div>
59
  <div class="feature">
60
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Backup Files &amp; Database') ?></a>
61
+ <div class="info"><?php DUP_Util::_e('Compresses all your WordPress files and database into a compressed snapshot archive file.') ?></div>
62
  </div>
63
  <div class="feature">
64
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Directory Filters') ?></a>
65
+ <div class="info"><?php DUP_Util::_e('Filter out the directories and file extensions you want to include/exclude in your in your archive file.') ?></div>
66
  </div>
67
  <div class="feature">
68
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Database Table Filters') ?></a>
69
+ <div class="info"><?php DUP_Util::_e('Filter out only the database tables you want to include/exclude in your database creation script.') ?></div>
70
  </div>
71
  <div class="feature">
72
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Migration Wizard') ?></a>
73
+ <div class="info"><?php DUP_Util::_e('With just two files (archive &amp; installer.php) move your site to a new location.') ?></div>
74
  </div>
75
+ <div class="feature"><i class="fa fa-times fa-lg"></i></div>
76
+ <div class="feature"><i class="fa fa-times fa-lg"></i></div>
77
+ <div class="feature"><i class="fa fa-times fa-lg"></i></div>
78
+ <div class="feature"><i class="fa fa-times fa-lg"></i></div>
79
+ <div class="feature"><i class="fa fa-times fa-lg"></i></div>
80
+ <div class="feature"><i class="fa fa-times fa-lg"></i></div>
81
 
82
  </div>
83
 
84
  <!-- PRO -->
85
  <div class="dup-compare-area">
86
  <div class="dup-support-hlp-hdrs">
87
+ <?php DUP_Util::_e('Duplicator Pro') ?>
88
  </div>
89
  <div class="feature">
90
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Backup Files &amp; Database') ?></a>
91
+ <div class="info"><?php DUP_Util::_e('Compresses all your WordPress files and database into a compressed snapshot archive file.') ?></div>
92
  </div>
93
  <div class="feature">
94
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Directory Filters') ?></a>
95
+ <div class="info"><?php DUP_Util::_e('Filter out the directories and file extensions you want to include/exclude in your in your archive file.') ?></div>
96
  </div>
97
  <div class="feature">
98
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Database Table Filters') ?></a>
99
+ <div class="info"><?php DUP_Util::_e('Filter out only the database tables you want to include/exclude in your database creation script.') ?></div>
100
  </div>
101
  <div class="feature">
102
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Migration Wizard') ?></a>
103
+ <div class="info"><?php DUP_Util::_e('With just two files (archive &amp; installer.php) move your site to a new location.') ?></div>
104
  </div>
105
  <div class="feature">
106
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Scheduled Backups') ?></a>
107
+ <div class="info"><?php DUP_Util::_e('Automate the creation of your packages to run at various scheduled intervals.') ?></div>
108
  </div>
109
  <div class="feature">
110
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Dropbox Support') ?></a>
111
+ <div class="info"><?php DUP_Util::_e('Backup up your entire site to Dropbox.') ?></div>
112
  </div>
113
  <div class="feature">
114
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('FTP Support') ?></a>
115
+ <div class="info"><?php DUP_Util::_e('Backup up your entire site to an FTP server.') ?></div>
116
  </div>
117
  <div class="feature">
118
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Customer Support') ?></a>
119
+ <div class="info"><?php DUP_Util::_e('Server setups can be quite complex, with pro you get prompt help to get your site backed up and moved.') ?></div>
120
+ </div>
121
+ <div class="feature">
122
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Enhanced Package Engine') ?></a>
123
+ <div class="info"><?php DUP_Util::_e('Overhauled package engine is faster and processes larger sites without timing-out.') ?></div>
124
+ </div>
125
+ <div class="feature">
126
+ <a href="javascript:void(0)" class="dup-info-click"><?php DUP_Util::_e('Package Templates') ?></a>
127
+ <div class="info"><?php DUP_Util::_e('Reusable package configurations for flexible backups and custom site generation.') ?></div>
128
  </div>
129
 
130
  </div>
131
  <br style="clear:both" />
132
  <p style="text-align:center">
133
+ <a href="http://snapcreek.com/duplicator?go-pro" target="_blank" class="button button-primary button-large dup-check-it-btn" >
134
+ <?php DUP_Util::_e('Check It Out!') ?>
135
  </a>
136
  </p>
137
  </div>
views/packages/controller.php CHANGED
@@ -15,7 +15,7 @@ $current_tab = isset($_REQUEST['tab']) ? esc_html($_REQUEST['tab']) : 'list';
15
  table#dup-toolbar td {padding:0px; white-space:nowrap;}
16
  table#dup-toolbar td.dup-toolbar-btns {width:100%; text-align: right; vertical-align: bottom}
17
  table#dup-toolbar td.dup-toolbar-btns a {font-size:16px}
18
- table#dup-toolbar td.dup-toolbar-btns span {font-size:16px}
19
  table#dup-toolbar {width:100%; border:0px solid red; padding: 0; margin:0 0 10px 0; height: 35px}
20
 
21
  /*WIZARD TABS */
15
  table#dup-toolbar td {padding:0px; white-space:nowrap;}
16
  table#dup-toolbar td.dup-toolbar-btns {width:100%; text-align: right; vertical-align: bottom}
17
  table#dup-toolbar td.dup-toolbar-btns a {font-size:16px}
18
+ table#dup-toolbar td.dup-toolbar-btns span {font-size:16px; font-weight: bold}
19
  table#dup-toolbar {width:100%; border:0px solid red; padding: 0; margin:0 0 10px 0; height: 35px}
20
 
21
  /*WIZARD TABS */
views/packages/list.base.php CHANGED
@@ -4,6 +4,8 @@
4
  $totalElements = count($qryResult);
5
  $statusCount = count($qryStatus);
6
  $package_debug = DUP_Settings::Get('package_debug');
 
 
7
  ?>
8
 
9
  <style>
@@ -302,7 +304,7 @@ jQuery(document).ready(function($) {
302
  type: "POST",
303
  url: ajaxurl,
304
  dataType: "json",
305
- data: {action : 'duplicator_package_delete', duplicator_delid : list },
306
  success: function(data) {
307
  //console.log(data); //Debug return
308
  Duplicator.ReloadWindow(data);
4
  $totalElements = count($qryResult);
5
  $statusCount = count($qryStatus);
6
  $package_debug = DUP_Settings::Get('package_debug');
7
+
8
+ $ajax_nonce = wp_create_nonce('package_list');
9
  ?>
10
 
11
  <style>
304
  type: "POST",
305
  url: ajaxurl,
306
  dataType: "json",
307
+ data: {action : 'duplicator_package_delete', duplicator_delid : list, nonce: '<?php echo $ajax_nonce; ?>' },
308
  success: function(data) {
309
  //console.log(data); //Debug return
310
  Duplicator.ReloadWindow(data);
views/packages/new1.base.php CHANGED
@@ -1,323 +1,325 @@
1
- <?php
2
- require_once (DUPLICATOR_PLUGIN_PATH . 'classes/package.php');
3
-
4
- global $wpdb;
5
-
6
- //POST BACK
7
- $action_updated = null;
8
- if (isset($_POST['action']))
9
- {
10
- $action_result = DUP_Settings::DeleteWPOption($_POST['action']);
11
- switch ($_POST['action'])
12
- {
13
- case 'duplicator_package_active' : $action_response = __('Package settings have been reset.', 'wpduplicator');
14
- break;
15
- }
16
- }
17
-
18
- DUP_Util::InitSnapshotDirectory();
19
-
20
- $Package = DUP_Package::GetActive();
21
- $package_hash = $Package->MakeHash();
22
-
23
- $dup_tests = array();
24
- $dup_tests = DUP_Server::GetRequirements();
25
- $default_name = DUP_Package::GetDefaultName();
26
-
27
- $view_state = DUP_UI::GetViewStateArray();
28
- $ui_css_storage = (isset($view_state['dup-pack-storage-panel']) && $view_state['dup-pack-storage-panel']) ? 'display:block' : 'display:none';
29
- $ui_css_archive = (isset($view_state['dup-pack-archive-panel']) && $view_state['dup-pack-archive-panel']) ? 'display:block' : 'display:none';
30
- $ui_css_installer = (isset($view_state['dup-pack-installer-panel']) && $view_state['dup-pack-installer-panel']) ? 'display:block' : 'display:none';
31
- ?>
32
-
33
- <style>
34
- /* -----------------------------
35
- REQUIREMENTS*/
36
- div.dup-sys-section {margin:1px 0px 5px 0px}
37
- div.dup-sys-title {display:inline-block; width:250px; padding:1px; }
38
- div.dup-sys-title div {display:inline-block;float:right; }
39
- div.dup-sys-info {display:none; max-width: 98%; margin:4px 4px 12px 4px}
40
- div.dup-sys-pass {display:inline-block; color:green;}
41
- div.dup-sys-fail {display:inline-block; color:#AF0000;}
42
- div.dup-sys-contact {padding:5px 0px 0px 10px; font-size:11px; font-style:italic}
43
- span.dup-toggle {float:left; margin:0 2px 2px 0; }
44
- table.dup-sys-info-results td:first-child {width:200px}
45
-
46
- /* -----------------------------
47
- PACKAGE OPTS*/
48
- form#dup-form-opts label {line-height:22px}
49
- form#dup-form-opts input[type=checkbox] {margin-top:3px}
50
- form#dup-form-opts fieldset {border-radius:4px; border-top:1px solid #dfdfdf; line-height:20px}
51
- form#dup-form-opts fieldset{padding:10px 15px 15px 15px; min-height:275px; margin:0 10px 10px 10px}
52
- form#dup-form-opts textarea, input[type="text"] {width:100%}
53
- form#dup-form-opts textarea#filter-dirs {height:85px}
54
- form#dup-form-opts textarea#filter-exts {height:27px}
55
- textarea#package_notes {height:37px;}
56
- div.dup-notes-add {float:right; margin:-4px 2px 4px 0;}
57
- div#dup-notes-area {display:none}
58
-
59
- /*ARCHIVE SECTION*/
60
- form#dup-form-opts div.tabs-panel{max-height:550px; padding:10px; min-height:280px}
61
- form#dup-form-opts ul li.tabs{font-weight:bold}
62
- ul.category-tabs li {padding:4px 15px 4px 15px}
63
- select#archive-format {min-width:100px; margin:1px 0px 4px 0px}
64
- span#dup-archive-filter-file {color:#A62426; display:none}
65
- span#dup-archive-filter-db {color:#A62426; display:none}
66
- div#dup-file-filter-items, div#dup-db-filter-items {padding:5px 0px 0px 0px}
67
- label.dup-enable-filters {display:inline-block; margin:-5px 0px 5px 0px}
68
- div.dup-quick-links {font-size:11px; float:right; display:inline-block; margin-top:2px; font-style:italic}
69
- div.dup-tabs-opts-help {font-style:italic; font-size:11px; margin:10px 0px 0px 10px; color:#777}
70
- table#dup-dbtables td {padding:1px 15px 1px 4px}
71
-
72
- /*INSTALLER SECTION*/
73
- div.dup-installer-header-1 {font-weight:bold; padding-bottom:2px; width:100%}
74
- div.dup-installer-header-2 {font-weight:bold; border-bottom:1px solid #dfdfdf; padding-bottom:2px; width:100%}
75
- label.chk-labels {display:inline-block; margin-top:1px}
76
- table.dup-installer-tbl {width:95%; margin-left:20px}
77
- </style>
78
-
79
- <!-- =========================================
80
- TOOL BAR: STEPS -->
81
- <table id="dup-toolbar">
82
- <tr valign="top">
83
- <td style="white-space: nowrap">
84
- <div id="dup-wiz">
85
- <div id="dup-wiz-steps">
86
- <div class="active-step"><a><span>1</span> <?php _e('Setup', 'wpduplicator'); ?></a></div>
87
- <div><a><span>2</span> <?php _e('Scan', 'wpduplicator'); ?> </a></div>
88
- <div><a><span>3</span> <?php _e('Build', 'wpduplicator'); ?> </a></div>
89
- </div>
90
- <div id="dup-wiz-title">
91
- <?php _e('Step 1: Package Setup', 'wpduplicator'); ?>
92
- </div>
93
- </div>
94
- </td>
95
- <td class="dup-toolbar-btns">
96
- <a id="dup-pro-create-new" href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php _e("All Packages", 'wpduplicator'); ?></a> &nbsp;
97
- <span> <?php _e("Create New", 'wpduplicator'); ?></span>
98
- </td>
99
- </tr>
100
- </table>
101
- <hr style="margin-bottom:8px">
102
-
103
-
104
-
105
- <?php if (!empty($action_response)) : ?>
106
- <div id="message" class="updated below-h2"><p><?php echo $action_response; ?></p></div>
107
- <?php endif; ?>
108
-
109
- <!-- =========================================
110
- META-BOX1: SYSTEM REQUIREMENTS -->
111
- <div class="dup-box">
112
- <div class="dup-box-title dup-box-title-fancy">
113
- <i class="fa fa-check-square-o"></i>
114
- <?php
115
- _e("Requirements:", 'wpduplicator');
116
- echo ($dup_tests['Success']) ? ' <div class="dup-sys-pass">Pass</div>' : ' <div class="dup-sys-fail">Fail</div>';
117
- ?>
118
- <div class="dup-box-arrow"></div>
119
- </div>
120
-
121
- <div class="dup-box-panel" style="<?php echo ($dup_tests['Success']) ? 'display:none' : ''; ?>">
122
-
123
- <div class="dup-sys-section">
124
- <i><?php _e("System requirements must pass for the Duplicator to work properly. Click each link for details.", 'wpduplicator'); ?></i>
125
- </div>
126
-
127
- <!-- PHP SUPPORT -->
128
- <div class='dup-sys-req'>
129
- <div class='dup-sys-title'>
130
- <a><?php _e('PHP Support', 'wpduplicator'); ?></a>
131
- <div><?php echo $dup_tests['PHP']['ALL']; ?></div>
132
- </div>
133
- <div class="dup-sys-info dup-info-box">
134
- <table class="dup-sys-info-results">
135
- <tr>
136
- <td><?php printf("%s [%s]", __("PHP Version", 'wpduplicator'), phpversion()); ?></td>
137
- <td><?php echo $dup_tests['PHP']['VERSION'] ?></td>
138
- </tr>
139
- <tr>
140
- <td><?php _e('Zip Archive Enabled', 'wpduplicator'); ?></td>
141
- <td><?php echo $dup_tests['PHP']['ZIP'] ?></td>
142
- </tr>
143
- <tr>
144
- <td><?php _e('Safe Mode Off', 'wpduplicator'); ?></td>
145
- <td><?php echo $dup_tests['PHP']['SAFE_MODE'] ?></td>
146
- </tr>
147
- <tr>
148
- <td><?php _e('Function', 'wpduplicator'); ?> <a href="http://php.net/manual/en/function.file-get-contents.php" target="_blank">file_get_contents</a></td>
149
- <td><?php echo $dup_tests['PHP']['FUNC_1'] ?></td>
150
- </tr>
151
- <tr>
152
- <td><?php _e('Function', 'wpduplicator'); ?> <a href="http://php.net/manual/en/function.file-put-contents.php" target="_blank">file_put_contents</a></td>
153
- <td><?php echo $dup_tests['PHP']['FUNC_2'] ?></td>
154
- </tr>
155
- <tr>
156
- <td><?php _e('Function', 'wpduplicator'); ?> <a href="http://php.net/manual/en/mbstring.installation.php" target="_blank">mb_strlen</a></td>
157
- <td><?php echo $dup_tests['PHP']['FUNC_3'] ?></td>
158
- </tr>
159
- </table>
160
- <small>
161
- <?php _e("PHP versions 5.2.17+ or higher is required. Please note that in versioning logic a value such as 5.2.9 is less than 5.2.17. For compression to work the ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in this section please contact your hosting provider or server administrator. For additional information see our online documentation.", 'wpduplicator'); ?>
162
- </small>
163
- </div>
164
- </div>
165
-
166
- <!-- PERMISSIONS -->
167
- <div class='dup-sys-req'>
168
- <div class='dup-sys-title'>
169
- <a><?php _e('Permissions', 'wpduplicator'); ?></a> <div><?php echo $dup_tests['IO']['ALL']; ?></div>
170
- </div>
171
- <div class="dup-sys-info dup-info-box">
172
- <b><?php _e("Required Paths", 'wpduplicator'); ?></b>
173
- <div style="padding:3px 0px 0px 15px">
174
- <?php
175
- printf("<b>%s</b> &nbsp; [%s] <br/>", $dup_tests['IO']['WPROOT'], DUPLICATOR_WPROOTPATH);
176
- printf("<b>%s</b> &nbsp; [%s] <br/>", $dup_tests['IO']['SSDIR'], DUPLICATOR_SSDIR_PATH);
177
- printf("<b>%s</b> &nbsp; [%s] <br/>", $dup_tests['IO']['SSTMP'], DUPLICATOR_SSDIR_PATH_TMP);
178
- //printf("<b>%s:</b> [%s] <br/>", __('PHP Script Owner', 'wpduplicator'), DUP_Util::GetCurrentUser());
179
- //printf("<b>%s:</b> [%s] <br/>", __('PHP Process Owner', 'wpduplicator'), DUP_Util::GetProcessOwner());
180
- ?>
181
- </div>
182
- <small>
183
- <?php _e("Permissions can be difficult to resolve on some systems. If the plugin can not read the above paths here are a few things to try. 1) Set the above paths to have permissions of 755 for directories and 644 for files. You can temporarily try 777 however, be sure you don’t leave them this way. 2) Check the owner/group settings for both files and directories. The PHP script owner and the process owner are different. The script owner owns the PHP script but the process owner is the user the script is running as, thus determining its capabilities/privileges in the file system. For more details contact your host or server administrator or visit the 'Help' menu under Duplicator for additional online resources.", 'wpduplicator'); ?>
184
- </small>
185
- </div>
186
- </div>
187
-
188
- <!-- SERVER SUPPORT -->
189
- <div class='dup-sys-req'>
190
- <div class='dup-sys-title'>
191
- <a><?php _e('Server Support', 'wpduplicator'); ?></a>
192
- <div><?php echo $dup_tests['SRV']['ALL']; ?></div>
193
- </div>
194
- <div class="dup-sys-info dup-info-box">
195
- <table class="dup-sys-info-results">
196
- <tr>
197
- <td><?php printf("%s [%s]", __("MySQL Version", 'wpduplicator'), $wpdb->db_version()); ?></td>
198
- <td><?php echo $dup_tests['SRV']['MYSQL_VER'] ?></td>
199
- </tr>
200
- <tr>
201
- <td><?php printf("%s", __("MySQLi Support", 'wpduplicator')); ?></td>
202
- <td><?php echo $dup_tests['SRV']['MYSQLi'] ?></td>
203
- </tr>
204
- </table>
205
- <small>
206
- <?php
207
- _e("MySQL version 5.0+ or better is required and the PHP MySQLi extension (note the trailing 'i') is also required. Contact your server administrator and request that mysqli extension and MySQL Server 5.0+ be installed. Please note in future versions support for other databases and extensions will be added.", 'wpduplicator');
208
- echo "&nbsp;<i><a href='http://php.net/manual/en/mysqli.installation.php' target='_blank'>[" . __('more info', 'wpduplicator') . "]</a></i>";
209
- ?>
210
- </small>
211
- </div>
212
- </div>
213
-
214
- <!-- RESERVED FILES -->
215
- <div class='dup-sys-req'>
216
- <div class='dup-sys-title'>
217
- <a><?php _e('Reserved Files', 'wpduplicator'); ?></a> <div><?php echo $dup_tests['RES']['INSTALL']; ?></div>
218
- </div>
219
- <div class="dup-sys-info dup-info-box">
220
- <?php if ($dup_tests['RES']['INSTALL'] == 'Pass') : ?>
221
- <?php _e('None of the reserved files (installer.php, installer-data.sql and installer-log.txt) where found from a previous install. This means you are clear to create a new package.', 'wpduplicator'); ?>
222
- <?php else: ?>
223
- <form method="post" action="admin.php?page=duplicator-tools&tab=cleanup&action=installer">
224
- <?php _e('A reserved file(s) was found in the WordPress root directory. Reserved file names are installer.php, installer-data.sql and installer-log.txt. To archive your data correctly please remove any of these files from your WordPress root directory. Then try creating your package again.', 'wpduplicator'); ?>
225
- <br/><input type='submit' class='button action' value='<?php _e('Remove Files Now', 'wpduplicator') ?>' style='font-size:10px; margin-top:5px;' />
226
- </form>
227
- <?php endif; ?>
228
- </div>
229
- </div>
230
-
231
- <!-- ONLINE SUPPORT -->
232
- <div class="dup-sys-contact">
233
- <?php
234
- printf("<i class='fa fa-question-circle'></i> %s <a href='admin.php?page=duplicator-help'>[%s]</a>", __("For additional help please see the ", 'wpduplicator'), __("help page", 'wpduplicator'));
235
- ?>
236
- </div>
237
-
238
- </div>
239
- </div><br/>
240
-
241
-
242
- <!-- =========================================
243
- FORM PACKAGE OPTIONS -->
244
- <div style="padding:5px 5px 2px 5px">
245
- <?php include('new1.inc.form.php'); ?>
246
- </div>
247
-
248
- <script type="text/javascript">
249
- jQuery(document).ready(function ($) {
250
-
251
- /* METHOD: Toggle Options tabs*/
252
- Duplicator.Pack.ToggleOptTabs = function (tab, label) {
253
- $('.category-tabs li').removeClass('tabs');
254
- $(label).parent().addClass('tabs');
255
- if (tab == 1) {
256
- $('#dup-pack-opts-tabs-panel-1').show();
257
- $('#dup-pack-opts-tabs-panel-2').hide();
258
- } else {
259
- $('#dup-pack-opts-tabs-panel-2').show();
260
- $('#dup-pack-opts-tabs-panel-1').hide();
261
- }
262
- }
263
-
264
- /* METHOD: Enable/Disable the file filter elements */
265
- Duplicator.Pack.ToggleFileFilters = function () {
266
- var $filterItems = $('#dup-file-filter-items');
267
- if ($("#filter-on").is(':checked')) {
268
- $filterItems.removeAttr('disabled').css({color: '#000'});
269
- $('#filter-exts,#filter-dirs').removeAttr('readonly').css({color: '#000'});
270
- $('#dup-archive-filter-file').show();
271
- } else {
272
- $filterItems.attr('disabled', 'disabled').css({color: '#999'});
273
- $('#filter-dirs, #filter-exts').attr('readonly', 'readonly').css({color: '#999'});
274
- $('#dup-archive-filter-file').hide();
275
- }
276
- };
277
-
278
- /* METHOD: Appends a path to the directory filter */
279
- Duplicator.Pack.ToggleDBFilters = function () {
280
- var $filterItems = $('#dup-db-filter-items');
281
-
282
- if ($("#dbfilter-on").is(':checked')) {
283
- $filterItems.removeAttr('disabled').css({color: '#000'});
284
- $('#dup-dbtables input').removeAttr('readonly').css({color: '#000'});
285
- $('#dup-archive-filter-db').show();
286
- } else {
287
- $filterItems.attr('disabled', 'disabled').css({color: '#999'});
288
- $('#dup-dbtables input').attr('readonly', 'readonly').css({color: '#999'});
289
- $('#dup-archive-filter-db').hide();
290
- }
291
- };
292
-
293
-
294
- /* METHOD: Appends a path to the directory filter */
295
- Duplicator.Pack.AddExcludePath = function (path) {
296
- var text = $("#filter-dirs").val() + path + ';\n';
297
- $("#filter-dirs").val(text);
298
- };
299
-
300
- /* METHOD: Appends a path to the extention filter */
301
- Duplicator.Pack.AddExcludeExts = function (path) {
302
- var text = $("#filter-exts").val() + path + ';';
303
- $("#filter-exts").val(text);
304
- };
305
-
306
-
307
- //Init: Toogle for system requirment detial links
308
- $('.dup-sys-title a').each(function () {
309
- $(this).attr('href', 'javascript:void(0)');
310
- $(this).click({selector: '.dup-sys-info'}, Duplicator.Pack.ToggleSystemDetails);
311
- $(this).prepend("<span class='ui-icon ui-icon-triangle-1-e dup-toggle' />");
312
- });
313
-
314
- //Init: Color code Pass/Fail/Warn items
315
- $('.dup-sys-title div').each(function () {
316
- $(this).addClass(($(this).text() == 'Pass') ? 'dup-sys-pass' : 'dup-sys-fail');
317
- });
318
-
319
- //Init: Toggle OptionTabs
320
- Duplicator.Pack.ToggleFileFilters();
321
- Duplicator.Pack.ToggleDBFilters();
322
- });
 
 
323
  </script>
1
+ <?php
2
+ require_once (DUPLICATOR_PLUGIN_PATH . 'classes/package.php');
3
+
4
+ global $wpdb;
5
+
6
+ //POST BACK
7
+ $action_updated = null;
8
+ if (isset($_POST['action']))
9
+ {
10
+ $action_result = DUP_Settings::DeleteWPOption($_POST['action']);
11
+ switch ($_POST['action'])
12
+ {
13
+ case 'duplicator_package_active' : $action_response = __('Package settings have been reset.', 'wpduplicator');
14
+ break;
15
+ }
16
+ }
17
+
18
+ DUP_Util::InitSnapshotDirectory();
19
+
20
+ $Package = DUP_Package::GetActive();
21
+ $package_hash = $Package->MakeHash();
22
+
23
+ $dup_tests = array();
24
+ $dup_tests = DUP_Server::GetRequirements();
25
+ $default_name = DUP_Package::GetDefaultName();
26
+
27
+ $view_state = DUP_UI::GetViewStateArray();
28
+ $ui_css_storage = (isset($view_state['dup-pack-storage-panel']) && $view_state['dup-pack-storage-panel']) ? 'display:block' : 'display:none';
29
+ $ui_css_archive = (isset($view_state['dup-pack-archive-panel']) && $view_state['dup-pack-archive-panel']) ? 'display:block' : 'display:none';
30
+ $ui_css_installer = (isset($view_state['dup-pack-installer-panel']) && $view_state['dup-pack-installer-panel']) ? 'display:block' : 'display:none';
31
+ ?>
32
+
33
+ <style>
34
+ /* -----------------------------
35
+ REQUIREMENTS*/
36
+ div.dup-sys-section {margin:1px 0px 5px 0px}
37
+ div.dup-sys-title {display:inline-block; width:250px; padding:1px; }
38
+ div.dup-sys-title div {display:inline-block;float:right; }
39
+ div.dup-sys-info {display:none; max-width: 98%; margin:4px 4px 12px 4px}
40
+ div.dup-sys-pass {display:inline-block; color:green;}
41
+ div.dup-sys-fail {display:inline-block; color:#AF0000;}
42
+ div.dup-sys-contact {padding:5px 0px 0px 10px; font-size:11px; font-style:italic}
43
+ span.dup-toggle {float:left; margin:0 2px 2px 0; }
44
+ table.dup-sys-info-results td:first-child {width:200px}
45
+
46
+ /* -----------------------------
47
+ PACKAGE OPTS*/
48
+ form#dup-form-opts label {line-height:22px}
49
+ form#dup-form-opts input[type=checkbox] {margin-top:3px}
50
+ form#dup-form-opts fieldset {border-radius:4px; border-top:1px solid #dfdfdf; line-height:20px}
51
+ form#dup-form-opts fieldset{padding:10px 15px 15px 15px; min-height:275px; margin:0 10px 10px 10px}
52
+ form#dup-form-opts textarea, input[type="text"] {width:100%}
53
+ form#dup-form-opts textarea#filter-dirs {height:85px}
54
+ form#dup-form-opts textarea#filter-exts {height:27px}
55
+ textarea#package_notes {height:37px;}
56
+ div.dup-notes-add {float:right; margin:-4px 2px 4px 0;}
57
+ div#dup-notes-area {display:none}
58
+
59
+ /*ARCHIVE SECTION*/
60
+ form#dup-form-opts div.tabs-panel{max-height:550px; padding:10px; min-height:280px}
61
+ form#dup-form-opts ul li.tabs{font-weight:bold}
62
+ ul.category-tabs li {padding:4px 15px 4px 15px}
63
+ select#archive-format {min-width:100px; margin:1px 0px 4px 0px}
64
+ span#dup-archive-filter-file {color:#A62426; display:none}
65
+ span#dup-archive-filter-db {color:#A62426; display:none}
66
+ div#dup-file-filter-items, div#dup-db-filter-items {padding:5px 0px 0px 0px}
67
+ label.dup-enable-filters {display:inline-block; margin:-5px 0px 5px 0px}
68
+ div.dup-quick-links {font-size:11px; float:right; display:inline-block; margin-top:2px; font-style:italic}
69
+ div.dup-tabs-opts-help {font-style:italic; font-size:11px; margin:10px 0px 0px 10px; color:#777}
70
+ table#dup-dbtables td {padding:1px 15px 1px 4px}
71
+
72
+ /*INSTALLER SECTION*/
73
+ div.dup-installer-header-1 {font-weight:bold; padding-bottom:2px; width:100%}
74
+ div.dup-installer-header-2 {font-weight:bold; border-bottom:1px solid #dfdfdf; padding-bottom:2px; width:100%}
75
+ label.chk-labels {display:inline-block; margin-top:1px}
76
+ table.dup-installer-tbl {width:95%; margin-left:20px}
77
+ </style>
78
+
79
+ <!-- =========================================
80
+ TOOL BAR: STEPS -->
81
+ <table id="dup-toolbar">
82
+ <tr valign="top">
83
+ <td style="white-space: nowrap">
84
+ <div id="dup-wiz">
85
+ <div id="dup-wiz-steps">
86
+ <div class="active-step"><a><span>1</span> <?php _e('Setup', 'wpduplicator'); ?></a></div>
87
+ <div><a><span>2</span> <?php _e('Scan', 'wpduplicator'); ?> </a></div>
88
+ <div><a><span>3</span> <?php _e('Build', 'wpduplicator'); ?> </a></div>
89
+ </div>
90
+ <div id="dup-wiz-title">
91
+ <?php _e('Step 1: Package Setup', 'wpduplicator'); ?>
92
+ </div>
93
+ </div>
94
+ </td>
95
+ <td class="dup-toolbar-btns">
96
+ <a id="dup-pro-create-new" href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php _e("All Packages", 'wpduplicator'); ?></a> &nbsp;
97
+ <span> <?php _e("Create New", 'wpduplicator'); ?></span>
98
+ </td>
99
+ </tr>
100
+ </table>
101
+ <hr style="margin-bottom:8px">
102
+
103
+
104
+
105
+ <?php if (!empty($action_response)) : ?>
106
+ <div id="message" class="updated below-h2"><p><?php echo $action_response; ?></p></div>
107
+ <?php endif; ?>
108
+
109
+ <!-- =========================================
110
+ META-BOX1: SYSTEM REQUIREMENTS -->
111
+ <div class="dup-box">
112
+ <div class="dup-box-title dup-box-title-fancy">
113
+ <i class="fa fa-check-square-o"></i>
114
+ <?php
115
+ _e("Requirements:", 'wpduplicator');
116
+ echo ($dup_tests['Success']) ? ' <div class="dup-sys-pass">Pass</div>' : ' <div class="dup-sys-fail">Fail</div>';
117
+ ?>
118
+ <div class="dup-box-arrow"></div>
119
+ </div>
120
+
121
+ <div class="dup-box-panel" style="<?php echo ($dup_tests['Success']) ? 'display:none' : ''; ?>">
122
+
123
+ <div class="dup-sys-section">
124
+ <i><?php _e("System requirements must pass for the Duplicator to work properly. Click each link for details.", 'wpduplicator'); ?></i>
125
+ </div>
126
+
127
+ <!-- PHP SUPPORT -->
128
+ <div class='dup-sys-req'>
129
+ <div class='dup-sys-title'>
130
+ <a><?php _e('PHP Support', 'wpduplicator'); ?></a>
131
+ <div><?php echo $dup_tests['PHP']['ALL']; ?></div>
132
+ </div>
133
+ <div class="dup-sys-info dup-info-box">
134
+ <table class="dup-sys-info-results">
135
+ <tr>
136
+ <td><?php printf("%s [%s]", __("PHP Version", 'wpduplicator'), phpversion()); ?></td>
137
+ <td><?php echo $dup_tests['PHP']['VERSION'] ?></td>
138
+ </tr>
139
+ <tr>
140
+ <td><?php _e('Zip Archive Enabled', 'wpduplicator'); ?></td>
141
+ <td><?php echo $dup_tests['PHP']['ZIP'] ?></td>
142
+ </tr>
143
+ <tr>
144
+ <td><?php _e('Safe Mode Off', 'wpduplicator'); ?></td>
145
+ <td><?php echo $dup_tests['PHP']['SAFE_MODE'] ?></td>
146
+ </tr>
147
+ <tr>
148
+ <td><?php _e('Function', 'wpduplicator'); ?> <a href="http://php.net/manual/en/function.file-get-contents.php" target="_blank">file_get_contents</a></td>
149
+ <td><?php echo $dup_tests['PHP']['FUNC_1'] ?></td>
150
+ </tr>
151
+ <tr>
152
+ <td><?php _e('Function', 'wpduplicator'); ?> <a href="http://php.net/manual/en/function.file-put-contents.php" target="_blank">file_put_contents</a></td>
153
+ <td><?php echo $dup_tests['PHP']['FUNC_2'] ?></td>
154
+ </tr>
155
+ <tr>
156
+ <td><?php _e('Function', 'wpduplicator'); ?> <a href="http://php.net/manual/en/mbstring.installation.php" target="_blank">mb_strlen</a></td>
157
+ <td><?php echo $dup_tests['PHP']['FUNC_3'] ?></td>
158
+ </tr>
159
+ </table>
160
+ <small>
161
+ <?php _e("PHP versions 5.2.17+ or higher is required. Please note that in versioning logic a value such as 5.2.9 is less than 5.2.17. For compression to work the ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in this section please contact your hosting provider or server administrator. For additional information see our online documentation.", 'wpduplicator'); ?>
162
+ </small>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- PERMISSIONS -->
167
+ <div class='dup-sys-req'>
168
+ <div class='dup-sys-title'>
169
+ <a><?php _e('Permissions', 'wpduplicator'); ?></a> <div><?php echo $dup_tests['IO']['ALL']; ?></div>
170
+ </div>
171
+ <div class="dup-sys-info dup-info-box">
172
+ <b><?php _e("Required Paths", 'wpduplicator'); ?></b>
173
+ <div style="padding:3px 0px 0px 15px">
174
+ <?php
175
+ printf("<b>%s</b> &nbsp; [%s] <br/>", $dup_tests['IO']['WPROOT'], DUPLICATOR_WPROOTPATH);
176
+ printf("<b>%s</b> &nbsp; [%s] <br/>", $dup_tests['IO']['SSDIR'], DUPLICATOR_SSDIR_PATH);
177
+ printf("<b>%s</b> &nbsp; [%s] <br/>", $dup_tests['IO']['SSTMP'], DUPLICATOR_SSDIR_PATH_TMP);
178
+ //printf("<b>%s:</b> [%s] <br/>", __('PHP Script Owner', 'wpduplicator'), DUP_Util::GetCurrentUser());
179
+ //printf("<b>%s:</b> [%s] <br/>", __('PHP Process Owner', 'wpduplicator'), DUP_Util::GetProcessOwner());
180
+ ?>
181
+ </div>
182
+ <small>
183
+ <?php _e("Permissions can be difficult to resolve on some systems. If the plugin can not read the above paths here are a few things to try. 1) Set the above paths to have permissions of 755 for directories and 644 for files. You can temporarily try 777 however, be sure you don’t leave them this way. 2) Check the owner/group settings for both files and directories. The PHP script owner and the process owner are different. The script owner owns the PHP script but the process owner is the user the script is running as, thus determining its capabilities/privileges in the file system. For more details contact your host or server administrator or visit the 'Help' menu under Duplicator for additional online resources.", 'wpduplicator'); ?>
184
+ </small>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- SERVER SUPPORT -->
189
+ <div class='dup-sys-req'>
190
+ <div class='dup-sys-title'>
191
+ <a><?php _e('Server Support', 'wpduplicator'); ?></a>
192
+ <div><?php echo $dup_tests['SRV']['ALL']; ?></div>
193
+ </div>
194
+ <div class="dup-sys-info dup-info-box">
195
+ <table class="dup-sys-info-results">
196
+ <tr>
197
+ <td><?php printf("%s [%s]", __("MySQL Version", 'wpduplicator'), $wpdb->db_version()); ?></td>
198
+ <td><?php echo $dup_tests['SRV']['MYSQL_VER'] ?></td>
199
+ </tr>
200
+ <tr>
201
+ <td><?php printf("%s", __("MySQLi Support", 'wpduplicator')); ?></td>
202
+ <td><?php echo $dup_tests['SRV']['MYSQLi'] ?></td>
203
+ </tr>
204
+ </table>
205
+ <small>
206
+ <?php
207
+ _e("MySQL version 5.0+ or better is required and the PHP MySQLi extension (note the trailing 'i') is also required. Contact your server administrator and request that mysqli extension and MySQL Server 5.0+ be installed. Please note in future versions support for other databases and extensions will be added.", 'wpduplicator');
208
+ echo "&nbsp;<i><a href='http://php.net/manual/en/mysqli.installation.php' target='_blank'>[" . __('more info', 'wpduplicator') . "]</a></i>";
209
+ ?>
210
+ </small>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- RESERVED FILES -->
215
+ <div class='dup-sys-req'>
216
+ <div class='dup-sys-title'>
217
+ <a><?php _e('Reserved Files', 'wpduplicator'); ?></a> <div><?php echo $dup_tests['RES']['INSTALL']; ?></div>
218
+ </div>
219
+ <div class="dup-sys-info dup-info-box">
220
+ <?php if ($dup_tests['RES']['INSTALL'] == 'Pass') : ?>
221
+ <?php _e('None of the reserved files (installer.php, installer-data.sql and installer-log.txt) where found from a previous install. This means you are clear to create a new package.', 'wpduplicator'); ?>
222
+ <?php else:
223
+ $duplicator_nonce = wp_create_nonce('duplicator_cleanup_page');
224
+ ?>
225
+ <form method="post" action="admin.php?page=duplicator-tools&tab=cleanup&action=installer&_wpnonce=<?php echo $duplicator_nonce; ?>">
226
+ <?php _e('A reserved file(s) was found in the WordPress root directory. Reserved file names are installer.php, installer-data.sql and installer-log.txt. To archive your data correctly please remove any of these files from your WordPress root directory. Then try creating your package again.', 'wpduplicator'); ?>
227
+ <br/><input type='submit' class='button action' value='<?php _e('Remove Files Now', 'wpduplicator') ?>' style='font-size:10px; margin-top:5px;' />
228
+ </form>
229
+ <?php endif; ?>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- ONLINE SUPPORT -->
234
+ <div class="dup-sys-contact">
235
+ <?php
236
+ printf("<i class='fa fa-question-circle'></i> %s <a href='admin.php?page=duplicator-help'>[%s]</a>", __("For additional help please see the ", 'wpduplicator'), __("help page", 'wpduplicator'));
237
+ ?>
238
+ </div>
239
+
240
+ </div>
241
+ </div><br/>
242
+
243
+
244
+ <!-- =========================================
245
+ FORM PACKAGE OPTIONS -->
246
+ <div style="padding:5px 5px 2px 5px">
247
+ <?php include('new1.inc.form.php'); ?>
248
+ </div>
249
+
250
+ <script type="text/javascript">
251
+ jQuery(document).ready(function ($) {
252
+
253
+ /* METHOD: Toggle Options tabs*/
254
+ Duplicator.Pack.ToggleOptTabs = function (tab, label) {
255
+ $('.category-tabs li').removeClass('tabs');
256
+ $(label).parent().addClass('tabs');
257
+ if (tab == 1) {
258
+ $('#dup-pack-opts-tabs-panel-1').show();
259
+ $('#dup-pack-opts-tabs-panel-2').hide();
260
+ } else {
261
+ $('#dup-pack-opts-tabs-panel-2').show();
262
+ $('#dup-pack-opts-tabs-panel-1').hide();
263
+ }
264
+ }
265
+
266
+ /* METHOD: Enable/Disable the file filter elements */
267
+ Duplicator.Pack.ToggleFileFilters = function () {
268
+ var $filterItems = $('#dup-file-filter-items');
269
+ if ($("#filter-on").is(':checked')) {
270
+ $filterItems.removeAttr('disabled').css({color: '#000'});
271
+ $('#filter-exts,#filter-dirs').removeAttr('readonly').css({color: '#000'});
272
+ $('#dup-archive-filter-file').show();
273
+ } else {
274
+ $filterItems.attr('disabled', 'disabled').css({color: '#999'});
275
+ $('#filter-dirs, #filter-exts').attr('readonly', 'readonly').css({color: '#999'});
276
+ $('#dup-archive-filter-file').hide();
277
+ }
278
+ };
279
+
280
+ /* METHOD: Appends a path to the directory filter */
281
+ Duplicator.Pack.ToggleDBFilters = function () {
282
+ var $filterItems = $('#dup-db-filter-items');
283
+
284
+ if ($("#dbfilter-on").is(':checked')) {
285
+ $filterItems.removeAttr('disabled').css({color: '#000'});
286
+ $('#dup-dbtables input').removeAttr('readonly').css({color: '#000'});
287
+ $('#dup-archive-filter-db').show();
288
+ } else {
289
+ $filterItems.attr('disabled', 'disabled').css({color: '#999'});
290
+ $('#dup-dbtables input').attr('readonly', 'readonly').css({color: '#999'});
291
+ $('#dup-archive-filter-db').hide();
292
+ }
293
+ };
294
+
295
+
296
+ /* METHOD: Appends a path to the directory filter */
297
+ Duplicator.Pack.AddExcludePath = function (path) {
298
+ var text = $("#filter-dirs").val() + path + ';\n';
299
+ $("#filter-dirs").val(text);
300
+ };
301
+
302
+ /* METHOD: Appends a path to the extention filter */
303
+ Duplicator.Pack.AddExcludeExts = function (path) {
304
+ var text = $("#filter-exts").val() + path + ';';
305
+ $("#filter-exts").val(text);
306
+ };
307
+
308
+
309
+ //Init: Toogle for system requirment detial links
310
+ $('.dup-sys-title a').each(function () {
311
+ $(this).attr('href', 'javascript:void(0)');
312
+ $(this).click({selector: '.dup-sys-info'}, Duplicator.Pack.ToggleSystemDetails);
313
+ $(this).prepend("<span class='ui-icon ui-icon-triangle-1-e dup-toggle' />");
314
+ });
315
+
316
+ //Init: Color code Pass/Fail/Warn items
317
+ $('.dup-sys-title div').each(function () {
318
+ $(this).addClass(($(this).text() == 'Pass') ? 'dup-sys-pass' : 'dup-sys-fail');
319
+ });
320
+
321
+ //Init: Toggle OptionTabs
322
+ Duplicator.Pack.ToggleFileFilters();
323
+ Duplicator.Pack.ToggleDBFilters();
324
+ });
325
  </script>
views/packages/new1.inc.form.php CHANGED
@@ -178,7 +178,7 @@ META-BOX: STORAGE -->
178
  </div>
179
 
180
  <div class="dup-box-panel" id="dup-pack-installer-panel" style="<?php echo $ui_css_installer ?>">
181
- <div class="dup-installer-header-1"><?php echo _e('STEP 1 - INPUTS'); ?></div><br/>
182
  <table class="dup-installer-tbl">
183
  <tr>
184
  <td colspan="2"><div class="dup-installer-header-2"><?php _e("MySQL Server", 'wpduplicator') ?></div></td>
@@ -232,7 +232,7 @@ META-BOX: STORAGE -->
232
  </tr>
233
  </table><br />
234
 
235
- <div class="dup-installer-header-1"><?php echo _e('STEP 2 - INPUTS'); ?></div>
236
 
237
  <table class="dup-installer-tbl">
238
  <tr>
178
  </div>
179
 
180
  <div class="dup-box-panel" id="dup-pack-installer-panel" style="<?php echo $ui_css_installer ?>">
181
+ <div class="dup-installer-header-1"><?php echo _e('STEP 1 - INPUTS', 'wpduplicator'); ?></div><br/>
182
  <table class="dup-installer-tbl">
183
  <tr>
184
  <td colspan="2"><div class="dup-installer-header-2"><?php _e("MySQL Server", 'wpduplicator') ?></div></td>
232
  </tr>
233
  </table><br />
234
 
235
+ <div class="dup-installer-header-1"><?php echo _e('STEP 2 - INPUTS', 'wpduplicator'); ?></div>
236
 
237
  <table class="dup-installer-tbl">
238
  <tr>
views/packages/new2.base.php CHANGED
@@ -236,12 +236,12 @@ TOOL BAR: STEPS -->
236
  FILE NAME LENGTHS -->
237
  <div>
238
  <div class='dup-scan-title'>
239
- <a><?php DUP_Util::_e('Invalid Names');?></a> <div id="data-arc-status-names"></div>
240
  </div>
241
  <div class='dup-scan-info dup-info-box'>
242
  <small>
243
  <?php
244
- DUP_Util::_e('Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 250 characters and illegal characters that may not work on all operating systems such as * ? > < : / \ | . It is recommended to remove or filter these files before building the archive or else you might have issues at install time.');
245
  ?>
246
  </small><br/>
247
  <a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php DUP_Util::_e('Show Paths');?>]</a>
@@ -447,7 +447,6 @@ jQuery(document).ready(function($) {
447
 
448
  var errMsg = "unable to read";
449
  $('#dup-progress-bar-area').hide();
450
- $('#dup-msg-success').show();
451
 
452
  //****************
453
  //REPORT
@@ -506,22 +505,36 @@ jQuery(document).ready(function($) {
506
  $('#data-arc-size2').text(data.ARC.Size || errMsg);
507
  $('#data-arc-files').text(data.ARC.FileCount || errMsg);
508
  $('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
509
-
510
- //Invalid Names
511
- html = '<?php DUP_Util::_e("No name length issues.") ?>';
512
- if (data.ARC.WarnFileName != undefined && data.ARC.WarnFileName.length > 0) {
513
- html = '';
514
- $.each(data.ARC.WarnFileName, function(key, val) {html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>[' + val + ']<br/>';});
 
 
 
 
 
 
 
 
515
  }
 
 
 
516
  $('#data-arc-names-data').html(html);
517
-
518
  //Large Files
519
  html = '<?php DUP_Util::_e("No large files found.") ?>';
520
- if (data.ARC.WarnFileSize != undefined && data.ARC.WarnFileSize.length > 0) {
521
  html = '';
522
- $.each(data.ARC.WarnFileSize, function(key, val) {html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>' + val + '<br/>' ;});
 
 
523
  }
524
  $('#data-arc-big-data').html(html);
 
525
 
526
  }
527
 
236
  FILE NAME LENGTHS -->
237
  <div>
238
  <div class='dup-scan-title'>
239
+ <a><?php DUP_Util::_e('Name Checks');?></a> <div id="data-arc-status-names"></div>
240
  </div>
241
  <div class='dup-scan-info dup-info-box'>
242
  <small>
243
  <?php
244
+ 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.');
245
  ?>
246
  </small><br/>
247
  <a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php DUP_Util::_e('Show Paths');?>]</a>
447
 
448
  var errMsg = "unable to read";
449
  $('#dup-progress-bar-area').hide();
 
450
 
451
  //****************
452
  //REPORT
505
  $('#data-arc-size2').text(data.ARC.Size || errMsg);
506
  $('#data-arc-files').text(data.ARC.FileCount || errMsg);
507
  $('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
508
+
509
+ //Name Checks
510
+ html = '';
511
+ //Dirs
512
+ if (data.ARC.FilterInfo.Dirs.Warning !== undefined && data.ARC.FilterInfo.Dirs.Warning.length > 0) {
513
+ $.each(data.ARC.FilterInfo.Dirs.Warning, function (key, val) {
514
+ html += '<?php DUP_Util::_e("DIR") ?> ' + key + ':<br/>[' + val + ']<br/>';
515
+ });
516
+ }
517
+ //Files
518
+ if (data.ARC.FilterInfo.Files.Warning !== undefined && data.ARC.FilterInfo.Files.Warning.length > 0) {
519
+ $.each(data.ARC.FilterInfo.Files.Warning, function (key, val) {
520
+ html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>[' + val + ']<br/>';
521
+ });
522
  }
523
+ html = (html.length == 0) ? '<?php DUP_Util::_e("No name warning issues found.") ?>' : html;
524
+
525
+
526
  $('#data-arc-names-data').html(html);
527
+
528
  //Large Files
529
  html = '<?php DUP_Util::_e("No large files found.") ?>';
530
+ if (data.ARC.FilterInfo.Files.Size !== undefined && data.ARC.FilterInfo.Files.Size.length > 0) {
531
  html = '';
532
+ $.each(data.ARC.FilterInfo.Files.Size, function (key, val) {
533
+ html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>' + val + '<br/>';
534
+ });
535
  }
536
  $('#data-arc-big-data').html(html);
537
+ $('#dup-msg-success').show();
538
 
539
  }
540
 
views/settings/general.php CHANGED
@@ -7,6 +7,13 @@ $action_response = __("Settings Saved", 'wpduplicator');
7
 
8
  //SAVE RESULTS
9
  if (isset($_POST['action']) && $_POST['action'] == 'save') {
 
 
 
 
 
 
 
10
  //General Tab
11
  //Plugin
12
  DUP_Settings::Set('uninstall_settings', isset($_POST['uninstall_settings']) ? "1" : "0");
@@ -20,7 +27,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
20
  DUP_Settings::Set('package_zip_flush', isset($_POST['package_zip_flush']) ? "1" : "0");
21
  DUP_Settings::Set('package_mysqldump', $enable_mysqldump ? "1" : "0");
22
  DUP_Settings::Set('package_phpdump_qrylimit', isset($_POST['package_phpdump_qrylimit']) ? $_POST['package_phpdump_qrylimit'] : "100");
23
- DUP_Settings::Set('package_mysqldump_path', trim($_POST['package_mysqldump_path']));
24
 
25
  //WPFront
26
  DUP_Settings::Set('wpfront_integrate', isset($_POST['wpfront_integrate']) ? "1" : "0");
@@ -61,7 +68,7 @@ $mysqlDumpFound = ($mysqlDumpPath) ? true : false;
61
 
62
  <form id="dup-settings-form" action="<?php echo admin_url('admin.php?page=duplicator-settings&tab=general'); ?>" method="post">
63
 
64
- <?php wp_nonce_field('duplicator_settings_page'); ?>
65
  <input type="hidden" name="action" value="save">
66
  <input type="hidden" name="page" value="duplicator-settings">
67
 
7
 
8
  //SAVE RESULTS
9
  if (isset($_POST['action']) && $_POST['action'] == 'save') {
10
+
11
+ //Nonce Check
12
+ if (! isset( $_POST['dup_settings_save_nonce_field'] ) || ! wp_verify_nonce( $_POST['dup_settings_save_nonce_field'], 'dup_settings_save' ) )
13
+ {
14
+ die('Invalid token permissions to perform this request.');
15
+ }
16
+
17
  //General Tab
18
  //Plugin
19
  DUP_Settings::Set('uninstall_settings', isset($_POST['uninstall_settings']) ? "1" : "0");
27
  DUP_Settings::Set('package_zip_flush', isset($_POST['package_zip_flush']) ? "1" : "0");
28
  DUP_Settings::Set('package_mysqldump', $enable_mysqldump ? "1" : "0");
29
  DUP_Settings::Set('package_phpdump_qrylimit', isset($_POST['package_phpdump_qrylimit']) ? $_POST['package_phpdump_qrylimit'] : "100");
30
+ DUP_Settings::Set('package_mysqldump_path', trim(esc_sql(strip_tags($_POST['package_mysqldump_path']))));
31
 
32
  //WPFront
33
  DUP_Settings::Set('wpfront_integrate', isset($_POST['wpfront_integrate']) ? "1" : "0");
68
 
69
  <form id="dup-settings-form" action="<?php echo admin_url('admin.php?page=duplicator-settings&tab=general'); ?>" method="post">
70
 
71
+ <?php wp_nonce_field('dup_settings_save', 'dup_settings_save_nonce_field'); ?>
72
  <input type="hidden" name="action" value="save">
73
  <input type="hidden" name="page" value="duplicator-settings">
74
 
views/tools/cleanup.php CHANGED
@@ -2,9 +2,25 @@
2
  require_once(DUPLICATOR_PLUGIN_PATH . '/views/javascript.php');
3
  require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
4
 
 
 
5
  $_GET['action'] = isset($_GET['action']) ? $_GET['action'] : 'display';
6
- switch ($_GET['action']) {
7
- case 'installer' :
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  $action_response = __('Installer File Cleanup Ran.', 'wpduplicator');
9
  break;
10
  case 'legacy':
@@ -29,7 +45,6 @@
29
 
30
 
31
  <form id="dup-settings-form" action="?page=duplicator-tools&tab=cleanup" method="post">
32
- <?php wp_nonce_field( 'duplicator_cleanup_page' ); ?>
33
 
34
  <?php if ($_GET['action'] != 'display') : ?>
35
  <div id="message" class="updated below-h2">
@@ -82,7 +97,7 @@
82
  <h3><?php _e('Data Cleanup', 'wpduplicator')?><hr size="1"/></h3>
83
  <table class="dup-reset-opts">
84
  <tr>
85
- <td><a href="?page=duplicator-tools&tab=cleanup&action=installer"><?php _e("Delete Reserved Files", 'wpduplicator'); ?></a></td>
86
  <td><?php _e("Removes all installer files from a previous install", 'wpduplicator'); ?></td>
87
  </tr>
88
  <tr>
@@ -112,7 +127,7 @@ jQuery(document).ready(function($) {
112
  if (! result)
113
  return;
114
 
115
- window.location = '?page=duplicator-tools&tab=cleanup&action=legacy';
116
  }
117
 
118
  Duplicator.Tools.ClearBuildCache = function () {
@@ -123,7 +138,8 @@ jQuery(document).ready(function($) {
123
  var result = confirm('<?php echo $msg ?>');
124
  if (! result)
125
  return;
126
- window.location = '?page=duplicator-tools&tab=cleanup&action=tmp-cache';
 
127
  }
128
 
129
 
2
  require_once(DUPLICATOR_PLUGIN_PATH . '/views/javascript.php');
3
  require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
4
 
5
+ $nonce = wp_create_nonce('duplicator_cleanup_page');
6
+
7
  $_GET['action'] = isset($_GET['action']) ? $_GET['action'] : 'display';
8
+
9
+ if(isset($_GET['action']))
10
+ {
11
+ if(($_GET['action'] == 'installer') || ($_GET['action'] == 'legacy') || ($_GET['action'] == 'tmp-cache'))
12
+ {
13
+ $verify_nonce = $_REQUEST['_wpnonce'];
14
+
15
+ if ( ! wp_verify_nonce( $verify_nonce, 'duplicator_cleanup_page' ) ) {
16
+ exit; // Get out of here, the nonce is rotten!
17
+ }
18
+ }
19
+ }
20
+
21
+ switch ($_GET['action']) {
22
+ case 'installer' :
23
+
24
  $action_response = __('Installer File Cleanup Ran.', 'wpduplicator');
25
  break;
26
  case 'legacy':
45
 
46
 
47
  <form id="dup-settings-form" action="?page=duplicator-tools&tab=cleanup" method="post">
 
48
 
49
  <?php if ($_GET['action'] != 'display') : ?>
50
  <div id="message" class="updated below-h2">
97
  <h3><?php _e('Data Cleanup', 'wpduplicator')?><hr size="1"/></h3>
98
  <table class="dup-reset-opts">
99
  <tr>
100
+ <td><a href="?page=duplicator-tools&tab=cleanup&action=installer&_wpnonce=<?php echo $nonce; ?>"><?php _e("Delete Reserved Files", 'wpduplicator'); ?></a></td>
101
  <td><?php _e("Removes all installer files from a previous install", 'wpduplicator'); ?></td>
102
  </tr>
103
  <tr>
127
  if (! result)
128
  return;
129
 
130
+ window.location = '?page=duplicator-tools&tab=cleanup&action=legacy&_wpnonce=<?php echo $nonce; ?>';
131
  }
132
 
133
  Duplicator.Tools.ClearBuildCache = function () {
138
  var result = confirm('<?php echo $msg ?>');
139
  if (! result)
140
  return;
141
+
142
+ window.location = '?page=duplicator-tools&tab=cleanup&action=tmp-cache&_wpnonce=<?php echo $nonce; ?>';
143
  }
144
 
145