Duplicator – WordPress Migration Plugin - Version 0.5.2

Version Description

Download this release

Release Info

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

Code changes from version 0.5.1 to 0.5.2

classes/package.archive.php CHANGED
@@ -110,7 +110,10 @@ class DUP_Archive {
110
  if (!$file->isDot()) {
111
  $nextpath = "{$currentPath}/{$file}";
112
  if ($file->isDir()) {
113
- if (! in_array($nextpath, $this->filterDirsArray)) {
 
 
 
114
  $result = $this->runDirStats($nextpath);
115
  $this->DirCount++;
116
  }
@@ -123,7 +126,7 @@ class DUP_Archive {
123
  $this->FileCount++;
124
  if (strlen($nextpath) > 200 || preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $file))
125
  array_push($this->InvalidFileList, $nextpath);
126
- if ($file->getSize() > DUPLICATOR_SCAN_BIGFILE)
127
  array_push($this->BigFileList, $nextpath . ' [' . DUP_Util::ByteSize($fileSize) . ']');
128
  }
129
  } else if ($file->isLink()) {
@@ -131,6 +134,7 @@ class DUP_Archive {
131
  }
132
  }
133
  }
 
134
  }
135
 
136
  }
110
  if (!$file->isDot()) {
111
  $nextpath = "{$currentPath}/{$file}";
112
  if ($file->isDir()) {
113
+ if (! in_array($nextpath, $this->filterDirsArray)) {
114
+ if (preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $file) || trim($file) == "") {
115
+ array_push($this->InvalidFileList, $nextpath);
116
+ }
117
  $result = $this->runDirStats($nextpath);
118
  $this->DirCount++;
119
  }
126
  $this->FileCount++;
127
  if (strlen($nextpath) > 200 || preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $file))
128
  array_push($this->InvalidFileList, $nextpath);
129
+ if ($fileSize > DUPLICATOR_SCAN_BIGFILE)
130
  array_push($this->BigFileList, $nextpath . ' [' . DUP_Util::ByteSize($fileSize) . ']');
131
  }
132
  } else if ($file->isLink()) {
134
  }
135
  }
136
  }
137
+ @closedir($dh);
138
  }
139
 
140
  }
classes/package.archive.zip.php CHANGED
@@ -144,11 +144,15 @@ class DUP_Zip extends DUP_Archive {
144
  $zipPath = str_replace(self::$compressDir, '', $currentPath);
145
  $zipPath = empty($zipPath) ? $file : ltrim("{$zipPath}/{$file}", '/');
146
  if ($file->isDir()) {
147
- if ($file->isReadable() && self::$zipArchive->addEmptyDir($zipPath)) {
148
- self::$countDirs++;
149
- self::recurseDirs($fullPath);
150
  } else {
151
- DUP_Log::Info("WARNING: Unable to add directory: {$fullPath}");
 
 
 
 
 
152
  }
153
  } else if ($file->isFile() && $file->isReadable()) {
154
  (self::$zipArchive->addFile($fullPath, $zipPath))
@@ -158,7 +162,9 @@ class DUP_Zip extends DUP_Archive {
158
  self::$countLinks++;
159
  }
160
  self::$limitItems++;
161
- self::$size = self::$size + $file->getSize();
 
 
162
  }
163
  }
164
 
@@ -188,11 +194,15 @@ class DUP_Zip extends DUP_Archive {
188
  $zipPath = empty($zipPath) ? $file : ltrim("{$zipPath}/{$file}", '/');
189
  if ($file->isDir()) {
190
  if (! in_array($fullPath, self::$filterDirsArray)) {
191
- if ($file->isReadable() && self::$zipArchive->addEmptyDir($zipPath)) {
192
- self::$countDirs++;
193
- self::recurseDirsWithFilters($fullPath);
194
  } else {
195
- DUP_Log::Info("WARNING: Unable to add directory: {$fullPath}");
 
 
 
 
 
196
  }
197
  } else {
198
  DUP_Log::Info("- filter@ [{$fullPath}]");
@@ -213,7 +223,9 @@ class DUP_Zip extends DUP_Archive {
213
  self::$countLinks++;
214
  }
215
  self::$limitItems++;
216
- self::$size = self::$size + $file->getSize();
 
 
217
  }
218
  }
219
  @closedir($dh);
144
  $zipPath = str_replace(self::$compressDir, '', $currentPath);
145
  $zipPath = empty($zipPath) ? $file : ltrim("{$zipPath}/{$file}", '/');
146
  if ($file->isDir()) {
147
+ if (preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $file) || trim($file) == "") {
148
+ DUP_Log::Info("WARNING: Excluding invalid directory - [{$fullPath}]");
 
149
  } else {
150
+ if ($file->isReadable() && self::$zipArchive->addEmptyDir($zipPath)) {
151
+ self::$countDirs++;
152
+ self::recurseDirs($fullPath);
153
+ } else {
154
+ DUP_Log::Info("WARNING: Unable to add directory: {$fullPath}");
155
+ }
156
  }
157
  } else if ($file->isFile() && $file->isReadable()) {
158
  (self::$zipArchive->addFile($fullPath, $zipPath))
162
  self::$countLinks++;
163
  }
164
  self::$limitItems++;
165
+ $fileSize = filesize($fullPath);
166
+ $fileSize = ($fileSize) ? $fileSize : 0;
167
+ self::$size = self::$size + $fileSize;
168
  }
169
  }
170
 
194
  $zipPath = empty($zipPath) ? $file : ltrim("{$zipPath}/{$file}", '/');
195
  if ($file->isDir()) {
196
  if (! in_array($fullPath, self::$filterDirsArray)) {
197
+ if (preg_match('/(\/|\*|\?|\>|\<|\:|\\|\|)/', $file) || trim($file) == "") {
198
+ DUP_Log::Info("WARNING: Excluding invalid directory - [{$fullPath}]");
 
199
  } else {
200
+ if ($file->isReadable() && self::$zipArchive->addEmptyDir($zipPath)) {
201
+ self::$countDirs++;
202
+ self::recurseDirsWithFilters($fullPath);
203
+ } else {
204
+ DUP_Log::Info("WARNING: Unable to add directory: {$fullPath}");
205
+ }
206
  }
207
  } else {
208
  DUP_Log::Info("- filter@ [{$fullPath}]");
223
  self::$countLinks++;
224
  }
225
  self::$limitItems++;
226
+ $fileSize = filesize($fullPath);
227
+ $fileSize = ($fileSize) ? $fileSize : 0;
228
+ self::$size = self::$size + $fileSize;
229
  }
230
  }
231
  @closedir($dh);
classes/package.php CHANGED
@@ -53,13 +53,10 @@ class DUP_Package {
53
  */
54
  function __construct() {
55
 
56
- $name = date('Ymd') . '_' . sanitize_title(get_bloginfo( 'name', 'display' ));
57
- $name = substr(str_replace('-', '', sanitize_file_name($name)), 0 , 40);
58
-
59
  $this->ID = null;
60
  $this->Version = DUPLICATOR_VERSION;
61
  $this->Type = DUP_PackageType::MANUAL;
62
- $this->Name = $name;
63
  $this->Notes = null;
64
  $this->StoreURL = DUP_Util::SSDirURL();
65
  $this->StorePath = DUPLICATOR_SSDIR_PATH_TMP;
@@ -185,11 +182,12 @@ class DUP_Package {
185
 
186
  if (isset($post)) {
187
  $post = stripslashes_deep($post);
188
- $name = ( isset($post['package-name']) && ! empty($post['package-name']))
189
- ? $post['package-name']
190
- : date('Ymd') . '_' . sanitize_title(get_bloginfo( 'name', 'display' ));
191
 
192
- $name = substr(str_replace('-', '', sanitize_file_name($name)), 0 , 40);
 
 
 
 
193
  $filter_dirs = isset($post['filter-dirs']) ? $this->parseDirectoryFilter($post['filter-dirs']) : '';
194
  $filter_exts = isset($post['filter-exts']) ? $this->parseExtensionFilter($post['filter-exts']) : '';
195
  $tablelist = isset($post['dbtables']) ? implode(',', $post['dbtables']) : '';
@@ -227,27 +225,22 @@ class DUP_Package {
227
  public function SetStatus($status) {
228
  global $wpdb;
229
 
230
- if ( ! isset($status)) {
231
- return false;
 
 
232
  }
233
 
234
- $packageObj = serialize($this);
235
  if (! $packageObj) {
236
- DUP_Log::Error("Unable to serialize pacakge object while updating record.");
237
  }
238
 
239
- $result = $wpdb->update(
240
- $wpdb->prefix . "duplicator_packages",
241
- array(
242
- 'status' => $status,
243
- 'package' => $packageObj
244
- ),
245
- array( 'ID' => $this->ID )
246
- );
247
-
248
-
249
- return $result;
250
- }
251
 
252
 
253
  /**
@@ -319,6 +312,20 @@ class DUP_Package {
319
  $logFile = file_exists(DUPLICATOR_WPROOTPATH . DUPLICATOR_INSTALL_LOG);
320
  return ($phpFile || $sqlFile || $logFile);
321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  }
323
 
324
 
53
  */
54
  function __construct() {
55
 
 
 
 
56
  $this->ID = null;
57
  $this->Version = DUPLICATOR_VERSION;
58
  $this->Type = DUP_PackageType::MANUAL;
59
+ $this->Name = self::GetDefaultName();
60
  $this->Notes = null;
61
  $this->StoreURL = DUP_Util::SSDirURL();
62
  $this->StorePath = DUPLICATOR_SSDIR_PATH_TMP;
182
 
183
  if (isset($post)) {
184
  $post = stripslashes_deep($post);
 
 
 
185
 
186
+ $name_chars = array(".", "-");
187
+ $name = ( isset($post['package-name']) && ! empty($post['package-name'])) ? $post['package-name'] : self::GetDefaultName();
188
+ $name = substr(sanitize_file_name($name), 0 , 40);
189
+ $name = str_replace($name_chars, '', $name);
190
+
191
  $filter_dirs = isset($post['filter-dirs']) ? $this->parseDirectoryFilter($post['filter-dirs']) : '';
192
  $filter_exts = isset($post['filter-exts']) ? $this->parseExtensionFilter($post['filter-exts']) : '';
193
  $tablelist = isset($post['dbtables']) ? implode(',', $post['dbtables']) : '';
225
  public function SetStatus($status) {
226
  global $wpdb;
227
 
228
+ $packageObj = serialize($this);
229
+
230
+ if (! isset($status)) {
231
+ DUP_Log::Error("Package SetStatus did not receive a proper code.");
232
  }
233
 
 
234
  if (! $packageObj) {
235
+ DUP_Log::Error("Package SetStatus was unable to serialize package object while updating record.");
236
  }
237
 
238
+ $wpdb->flush();
239
+ $table = $wpdb->prefix . "duplicator_packages";
240
+ $sql = "UPDATE `{$table}` SET status = {$status}, package = '{$packageObj}' WHERE ID = {$this->ID}";
241
+ $wpdb->query($sql);
242
+ }
243
+
 
 
 
 
 
 
244
 
245
 
246
  /**
312
  $logFile = file_exists(DUPLICATOR_WPROOTPATH . DUPLICATOR_INSTALL_LOG);
313
  return ($phpFile || $sqlFile || $logFile);
314
 
315
+ }
316
+
317
+ /**
318
+ * Creates a default name
319
+ * @return string A default packagename
320
+ */
321
+ public static function GetDefaultName() {
322
+ //Remove specail_chars from final result
323
+ $special_chars = array(".", "-");
324
+ $name = date('Ymd') . '_' . sanitize_title(get_bloginfo( 'name', 'display' ));
325
+ $name = substr(sanitize_file_name($name), 0 , 40);
326
+ $name = str_replace($special_chars, '', $name);
327
+ return $name;
328
+
329
  }
330
 
331
 
classes/utility.php CHANGED
@@ -119,11 +119,17 @@ class DUP_Util {
119
  * Size of the directory recuresivly
120
  */
121
  static public function GetDirectorySize($dir) {
122
- if(!file_exists($dir)) return 0;
123
- if(is_file($dir)) return filesize($dir);
 
 
 
124
  $size = 0;
125
- foreach(glob($dir."/*") as $fn)
126
- $size += self::GetDirectorySize($fn);
 
 
 
127
  return $size;
128
  }
129
 
119
  * Size of the directory recuresivly
120
  */
121
  static public function GetDirectorySize($dir) {
122
+ if(!file_exists($dir))
123
+ return 0;
124
+ if(is_file($dir))
125
+ return filesize($dir);
126
+
127
  $size = 0;
128
+ $list = glob($dir."/*");
129
+ if (! empty($list)) {
130
+ foreach($list as $file)
131
+ $size += self::GetDirectorySize($file);
132
+ }
133
  return $size;
134
  }
135
 
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.1');
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");
1
  <?php
2
  //Prevent directly browsing to the file
3
  if (function_exists('plugin_dir_url')) {
4
+ define('DUPLICATOR_VERSION', '0.5.2');
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");
duplicator.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Duplicator
4
  Plugin URI: http://www.lifeinthegrid.com/duplicator/
5
  Description: Create a backup of your WordPress files and database. Duplicate and move an entire site from one location to another in a few steps. Create a full snapshot of your site at any point in time.
6
- Version: 0.5.1
7
  Author: LifeInTheGrid
8
  Author URI: http://www.lifeinthegrid.com
9
  License: GPLv2 or later
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.2
7
  Author: LifeInTheGrid
8
  Author URI: http://www.lifeinthegrid.com
9
  License: GPLv2 or later
installer/build/ajax.step2.php CHANGED
@@ -75,8 +75,9 @@ mysqli_query($dbh, "UPDATE `{$GLOBALS['FW_TABLEPREFIX']}options` SET option_valu
75
 
76
  $log = "--------------------------------------\n";
77
  $log .= "SERIALIZER ENGINE\n";
78
- $log .= "[*] scanning every column\n";
79
- $log .= "[~] scanning-only-text-columns\n";
 
80
  $log .= "--------------------------------------";
81
  DUPX_Log::Info($log);
82
 
75
 
76
  $log = "--------------------------------------\n";
77
  $log .= "SERIALIZER ENGINE\n";
78
+ $log .= "[*] scan every column\n";
79
+ $log .= "[~] scan only text columns\n";
80
+ $log .= "[^] no searchable columns\n";
81
  $log .= "--------------------------------------";
82
  DUPX_Log::Info($log);
83
 
installer/build/assets/inc.libs.css.php CHANGED
@@ -1,5 +1,5 @@
1
- <?php if( DupUtil::is_url_active("ajax.googleapis.com") ): ?>
2
- <link rel='stylesheet' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css' type='text/css' media='all' />
3
  <?php else: ?>
4
  <style type="text/css">
5
  /*! jQuery UI - v1.10.3 - 2013-07-24
1
+ <?php if( DupUtil::is_url_active("ajax.googleapis.com", 443) ): ?>
2
+ <link rel='stylesheet' href='//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css' type='text/css' media='all' />
3
  <?php else: ?>
4
  <style type="text/css">
5
  /*! jQuery UI - v1.10.3 - 2013-07-24
installer/build/assets/inc.libs.js.php CHANGED
@@ -1,8 +1,8 @@
1
  <!-- ========================================
2
  JQUERY ASSETS -->
3
- <?php if(DupUtil::is_url_active("ajax.googleapis.com") ): ?>
4
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
5
- <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
6
  <?php else: ?>
7
  <script type="text/javascript">
8
  /*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license
@@ -31,8 +31,8 @@ JQUERY ASSETS -->
31
 
32
  <!-- ========================================
33
  KNOCKOUT ASSETS -->
34
- <?php if( DupUtil::is_url_active("ajax.aspnetcdn.com") ): ?>
35
- <script src="http://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js"></script>
36
  <?php else: ?>
37
 
38
  <script type="text/javascript">
1
  <!-- ========================================
2
  JQUERY ASSETS -->
3
+ <?php if(DupUtil::is_url_active("ajax.googleapis.com", 443) ): ?>
4
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
5
+ <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
6
  <?php else: ?>
7
  <script type="text/javascript">
8
  /*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license
31
 
32
  <!-- ========================================
33
  KNOCKOUT ASSETS -->
34
+ <?php if( DupUtil::is_url_active("ajax.aspnetcdn.com", 443) ): ?>
35
+ <script src="//ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js"></script>
36
  <?php else: ?>
37
 
38
  <script type="text/javascript">
installer/build/classes/class.serializer.php CHANGED
@@ -121,12 +121,14 @@ class DUPX_Serializer {
121
  }
122
 
123
  // Count the number of rows we have in the table if large we'll split into blocks
124
- $row_count = mysqli_query($conn, 'SELECT COUNT(*) FROM ' . $table);
125
  $rows_result = mysqli_fetch_array($row_count);
126
  @mysqli_free_result($row_count);
127
  $row_count = $rows_result[0];
128
- if ($row_count == 0)
 
129
  continue;
 
130
 
131
  $page_size = 25000;
132
  $offset = ($page_size + 1);
@@ -135,23 +137,30 @@ class DUPX_Serializer {
135
  // Grab the columns of the table. Only grab text based columns because
136
  // they are the only data types that should allow any type of search/replace logic
137
  $colList = '*';
138
- $filterMsg = '*';
139
  if (! $fullsearch) {
140
  $colList = self::getTextColumns($conn, $table);
141
- $colList = ($colList != null && is_array($colList)) ? implode(',', $colList) : '';
142
- $filterMsg = (empty($colList)) ? '*' : '~';
 
 
 
143
  }
144
-
145
- DUPX_Log::Info("{$table}{$filterMsg}: ({$row_count})");
146
 
 
 
 
 
 
 
 
147
  //Paged Records
148
  for ($page = 0; $page < $pages; $page++) {
149
 
150
-
151
  $current_row = 0;
152
  $start = $page * $page_size;
153
  $end = $start + $page_size;
154
- $sql = sprintf("SELECT {$colList} FROM %s LIMIT %d, %d", $table, $start, $offset);
155
  $data = mysqli_query($conn, $sql);
156
 
157
  if (!$data)
@@ -230,7 +239,7 @@ class DUPX_Serializer {
230
  $sql = "UPDATE `{$table}` SET " . implode(', ', $upd_sql) . ' WHERE ' . implode(' AND ', array_filter($where_sql));
231
  $result = mysqli_query($conn, $sql) or $report['errsql'][] = mysqli_error($conn);
232
  //DEBUG ONLY:
233
- //DUPX_Log::Info("\t{$sql}", 3);
234
  if ($result) {
235
  if ($serial_err > 0) {
236
  $report['errser'][] = "SELECT " . implode(', ', $upd_col) . " FROM `{$table}` WHERE " . implode(' AND ', array_filter($where_sql)) . ';';
121
  }
122
 
123
  // Count the number of rows we have in the table if large we'll split into blocks
124
+ $row_count = mysqli_query($conn, "SELECT COUNT(*) FROM `{$table}`");
125
  $rows_result = mysqli_fetch_array($row_count);
126
  @mysqli_free_result($row_count);
127
  $row_count = $rows_result[0];
128
+ if ($row_count == 0) {
129
+ DUPX_Log::Info("{$table}^ ({$row_count})");
130
  continue;
131
+ }
132
 
133
  $page_size = 25000;
134
  $offset = ($page_size + 1);
137
  // Grab the columns of the table. Only grab text based columns because
138
  // they are the only data types that should allow any type of search/replace logic
139
  $colList = '*';
140
+ $colMsg = '*';
141
  if (! $fullsearch) {
142
  $colList = self::getTextColumns($conn, $table);
143
+ if ($colList != null && is_array($colList)) {
144
+ array_walk($colList, create_function('&$str', '$str = "`$str`";'));
145
+ $colList = implode(',', $colList);
146
+ }
147
+ $colMsg = (empty($colList)) ? '*' : '~';
148
  }
 
 
149
 
150
+ if (empty($colList)) {
151
+ DUPX_Log::Info("{$table}^ ({$row_count})");
152
+ continue;
153
+ } else {
154
+ DUPX_Log::Info("{$table}{$colMsg} ({$row_count})");
155
+ }
156
+
157
  //Paged Records
158
  for ($page = 0; $page < $pages; $page++) {
159
 
 
160
  $current_row = 0;
161
  $start = $page * $page_size;
162
  $end = $start + $page_size;
163
+ $sql = sprintf("SELECT {$colList} FROM `%s` LIMIT %d, %d", $table, $start, $offset);
164
  $data = mysqli_query($conn, $sql);
165
 
166
  if (!$data)
239
  $sql = "UPDATE `{$table}` SET " . implode(', ', $upd_sql) . ' WHERE ' . implode(' AND ', array_filter($where_sql));
240
  $result = mysqli_query($conn, $sql) or $report['errsql'][] = mysqli_error($conn);
241
  //DEBUG ONLY:
242
+ DUPX_Log::Info("\t{$sql}", 3);
243
  if ($result) {
244
  if ($serial_err > 0) {
245
  $report['errser'][] = "SELECT " . implode(', ', $upd_col) . " FROM `{$table}` WHERE " . implode(' AND ', array_filter($where_sql)) . ';';
installer/build/classes/class.utils.php CHANGED
@@ -262,11 +262,13 @@ class DupUtil {
262
  * IS_WEB_CONNECTED
263
  * Check to see if the internet is accessable
264
  * @param string $url A url e.g without prefix "ajax.googleapis.com"
 
265
  * @return bool
266
  */
267
- static public function is_url_active($url) {
268
  if (function_exists('fsockopen')) {
269
- $connected = @fsockopen($url, 80); //website and port
 
270
  if ($connected){
271
  $is_conn = true;
272
  @fclose($connected);
262
  * IS_WEB_CONNECTED
263
  * Check to see if the internet is accessable
264
  * @param string $url A url e.g without prefix "ajax.googleapis.com"
265
+ * @param string $port A valid port number
266
  * @return bool
267
  */
268
+ static public function is_url_active($url, $port) {
269
  if (function_exists('fsockopen')) {
270
+ $port = isset($port) && is_integer($port) ? $port : 80;
271
+ $connected = @fsockopen($url, $port); //website and port
272
  if ($connected){
273
  $is_conn = true;
274
  @fclose($connected);
installer/build/main.installer.php CHANGED
@@ -101,6 +101,7 @@ $GLOBALS['FW_PACKAGE_NAME'] = '%fwrite_package_name%';
101
  $GLOBALS['FW_PACKAGE_NOTES'] = '%fwrite_package_notes%';
102
  $GLOBALS['FW_SECURE_NAME'] = '%fwrite_secure_name%';
103
  $GLOBALS['FW_DBHOST'] = '%fwrite_dbhost%';
 
104
  $GLOBALS['FW_DBNAME'] = '%fwrite_dbname%';
105
  $GLOBALS['FW_DBUSER'] = '%fwrite_dbuser%';
106
  $GLOBALS['FW_DBPASS'] = '%fwrite_dbpass%';
@@ -141,7 +142,7 @@ $GLOBALS['REPLACE_LIST'] = array();
141
  define("DUPLICATOR_SSDIR_NAME", 'wp-snapshots'); //This should match DUPLICATOR_SSDIR_NAME in duplicator.php
142
 
143
  //SHARED POST PARMS
144
- $_POST['action_step'] = isset($_POST['action_step']) ? $_POST['action_step'] : "0";
145
  $_POST['dbhost'] = isset($_POST['dbhost']) ? trim($_POST['dbhost']) : null;
146
  $_POST['dbuser'] = isset($_POST['dbuser']) ? trim($_POST['dbuser']) : null;
147
  $_POST['dbpass'] = isset($_POST['dbpass']) ? trim($_POST['dbpass']) : null;
@@ -276,9 +277,6 @@ if (isset($_POST['action_ajax'])) {
276
 
277
  if (! isset($_GET['help'])) {
278
  switch ($_POST['action_step']) {
279
- case "0" :
280
- ?> @@VIEW.STEP1.PHP@@ <?php
281
- break;
282
  case "1" :
283
  ?> @@VIEW.STEP1.PHP@@ <?php
284
  break;
101
  $GLOBALS['FW_PACKAGE_NOTES'] = '%fwrite_package_notes%';
102
  $GLOBALS['FW_SECURE_NAME'] = '%fwrite_secure_name%';
103
  $GLOBALS['FW_DBHOST'] = '%fwrite_dbhost%';
104
+ $GLOBALS['FW_DBHOST'] = empty($GLOBALS['FW_DBHOST']) ? 'localhost' : $GLOBALS['FW_DBHOST'];
105
  $GLOBALS['FW_DBNAME'] = '%fwrite_dbname%';
106
  $GLOBALS['FW_DBUSER'] = '%fwrite_dbuser%';
107
  $GLOBALS['FW_DBPASS'] = '%fwrite_dbpass%';
142
  define("DUPLICATOR_SSDIR_NAME", 'wp-snapshots'); //This should match DUPLICATOR_SSDIR_NAME in duplicator.php
143
 
144
  //SHARED POST PARMS
145
+ $_POST['action_step'] = isset($_POST['action_step']) ? $_POST['action_step'] : "1";
146
  $_POST['dbhost'] = isset($_POST['dbhost']) ? trim($_POST['dbhost']) : null;
147
  $_POST['dbuser'] = isset($_POST['dbuser']) ? trim($_POST['dbuser']) : null;
148
  $_POST['dbpass'] = isset($_POST['dbpass']) ? trim($_POST['dbpass']) : null;
277
 
278
  if (! isset($_GET['help'])) {
279
  switch ($_POST['action_step']) {
 
 
 
280
  case "1" :
281
  ?> @@VIEW.STEP1.PHP@@ <?php
282
  break;
installer/build/view.help.php CHANGED
@@ -109,7 +109,11 @@ HELP FORM -->
109
 
110
  <b>Post GUID:</b><br/>
111
  If your moving a site keep this value checked. For more details see the <a href="http://codex.wordpress.org/Changing_The_Site_URL#Important_GUID_Note" target="_blank">notes on GUIDS</a>. Changing values in the posts table GUID column can change RSS readers to evaluate that the posts are new and may show them in feeds again.
112
- <br/>
 
 
 
 
113
  </fieldset>
114
 
115
  </div>
109
 
110
  <b>Post GUID:</b><br/>
111
  If your moving a site keep this value checked. For more details see the <a href="http://codex.wordpress.org/Changing_The_Site_URL#Important_GUID_Note" target="_blank">notes on GUIDS</a>. Changing values in the posts table GUID column can change RSS readers to evaluate that the posts are new and may show them in feeds again.
112
+ <br/><br/>
113
+
114
+ <b>Full Search:</b><br/>
115
+ Full search forces a scan of every single cell in the database. If it is not checked then only text based columns are searched which makes the update process much faster.
116
+ <br/>
117
  </fieldset>
118
 
119
  </div>
installer/build/view.step1.php CHANGED
@@ -231,12 +231,11 @@ VIEW: STEP 1- INPUT -->
231
  <!-- !!DO NOT CHANGE/EDIT OR REMOVE THIS SECTION!!
232
  If your interested in Private Label Rights please contact us at the URL below to discuss
233
  customizations to product labeling: http://lifeinthegrid.com -->
234
- <a href="javascript:void(0)" onclick="$('#dup-step1-cpanel').toggle(250)"><b>Database Setup Help...</b></a>
235
  <div id='dup-step1-cpanel' style="display:none">
236
  <div style="padding:10px 0px 0px 10px;line-height:22px">
237
- <b>Need cPanel Database Help?</b> <br/>
238
- &raquo; See the online <a href="http://lifeinthegrid.com/duplicator-tutorials" target="_blank">video tutorials &amp; guides</a> <br/>
239
- &raquo; Need a host that supports cPanel? See the Duplicator <a href="http://lifeinthegrid.com/duplicator-hosts" target="_blank">approved hosting</a> page.
240
  </div>
241
  </div><br/><br/>
242
 
@@ -372,7 +371,7 @@ PANEL: SERVER CHECKS -->
372
  <td class="<?php echo ($req02 == 'Pass') ? 'dup-pass' : 'dup-fail' ?>"><?php echo $req02; ?></td>
373
  </tr>
374
  <tr>
375
- <td>MySQL Support</td>
376
  <td class="<?php echo ($req03 == 'Pass') ? 'dup-pass' : 'dup-fail' ?>"><?php echo $req03; ?></td>
377
  </tr>
378
  <tr>
@@ -430,7 +429,8 @@ PANEL: SERVER CHECKS -->
430
  <!-- SAPI -->
431
  <b>PHP SAPI:</b> <?php echo php_sapi_name(); ?><br/>
432
  <b>PHP ZIP Archive:</b> <?php echo class_exists('ZipArchive') ? 'Is Installed' : 'Not Installed'; ?> <br/>
433
- <b>CDN Accessible:</b> <?php echo ( DupUtil::is_url_active("ajax.aspnetcdn.com") && DupUtil::is_url_active("ajax.googleapis.com")) ? 'Yes' : 'No'; ?>
 
434
 
435
  </div>
436
  </div>
231
  <!-- !!DO NOT CHANGE/EDIT OR REMOVE THIS SECTION!!
232
  If your interested in Private Label Rights please contact us at the URL below to discuss
233
  customizations to product labeling: http://lifeinthegrid.com -->
234
+ <a href="javascript:void(0)" onclick="$('#dup-step1-cpanel').toggle(250)"><b>Need Setup Help...</b></a>
235
  <div id='dup-step1-cpanel' style="display:none">
236
  <div style="padding:10px 0px 0px 10px;line-height:22px">
237
+ &raquo; Check out the <a href="http://lifeinthegrid.com/duplicator-tutorials" target="_blank">video tutorials &amp; guides</a> <br/>
238
+ &raquo; Get help from our <a href="http://lifeinthegrid.com/labs/duplicator/resources/" target="_blank">resources page</a>
 
239
  </div>
240
  </div><br/><br/>
241
 
371
  <td class="<?php echo ($req02 == 'Pass') ? 'dup-pass' : 'dup-fail' ?>"><?php echo $req02; ?></td>
372
  </tr>
373
  <tr>
374
+ <td><a href="http://us2.php.net/manual/en/mysqli.installation.php" target="_blank">MySQLi Support</a></td>
375
  <td class="<?php echo ($req03 == 'Pass') ? 'dup-pass' : 'dup-fail' ?>"><?php echo $req03; ?></td>
376
  </tr>
377
  <tr>
429
  <!-- SAPI -->
430
  <b>PHP SAPI:</b> <?php echo php_sapi_name(); ?><br/>
431
  <b>PHP ZIP Archive:</b> <?php echo class_exists('ZipArchive') ? 'Is Installed' : 'Not Installed'; ?> <br/>
432
+ <b>CDN Accessible:</b> <?php echo ( DupUtil::is_url_active("ajax.aspnetcdn.com", 443) && DupUtil::is_url_active("ajax.googleapis.com", 443)) ? 'Yes' : 'No'; ?> <br/>
433
+ Need an <a href='http://lifeinthegrid.com/duplicator-hosts' target='_blank'>approved</a> Duplicator hosting provider?
434
 
435
  </div>
436
  </div>
installer/build/view.step3.php CHANGED
@@ -36,29 +36,30 @@ VIEW: STEP 3- INPUT -->
36
 
37
  <table class="dup-step3-final-step">
38
  <tr>
39
- <td>1. <a href="javascript:void(0)" onclick="$('#dup-step3-install-report').toggle(400)">Read Install Report</a>
40
  </td>
41
  <td>
42
- <i style='font-size:11px; color:#BE2323'>
43
- <span data-bind="with: status.step1">Deploy Errors: <span data-bind="text: query_errs"></span></span> &nbsp; &nbsp;
44
- <span data-bind="with: status.step2">Update Errors: <span data-bind="text: err_all"></span></span> &nbsp; &nbsp;
45
- <span data-bind="with: status.step2">Warnings: <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'> Resave Permalinks</a>
52
  </td>
53
- <td><i style='font-size:11px'>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 Entire Site</a></td>
57
- <td><i style='font-size:11px'>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 style='font-size:11px'>Removes all installer files (requires login)</i></td>
62
  </tr>
63
  </table><br/>
64
 
@@ -103,10 +104,10 @@ VIEW: STEP 3- INPUT -->
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)">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)">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>
@@ -191,7 +192,7 @@ VIEW: STEP 3- INPUT -->
191
  Please consider <a href='http://lifeinthegrid.com/partner/' target='_blank'>Partnering or a Donation</a>! <br/>
192
  <a href="javascript:void(0)" onclick="Duplicator.dlgTips()">Troubleshoot</a> |
193
  <a href='http://support.lifeinthegrid.com/knowledgebase.php' target='_blank'>FAQs</a> |
194
- <a href='http://support.lifeinthegrid.com' target='_blank'>Support</a>
195
  </div><br/>
196
  </form>
197
 
@@ -202,7 +203,7 @@ DIALOG: TROUBLSHOOTING DIALOG -->
202
  <div style="padding: 0px 10px 10px 10px;">
203
  <b>Common Quick Fix Issues:</b>
204
  <ul>
205
- <li>Use an <a href='http://lifeinthegrid.com/duplicator-certified' target='_blank'>approved hosting provider</a></li>
206
  <li>Validate directory and file permissions (see below)</li>
207
  <li>Validate web server configuration file (see below)</li>
208
  <li>Clear your browsers cache</li>
@@ -233,9 +234,6 @@ DIALOG: TROUBLSHOOTING DIALOG -->
233
  If you have a large log file that needs evaluated please email the file, or attach it to a help ticket.
234
  <br/><br/>
235
 
236
- <b>Approved Hosts:</b><br/>
237
- Please check out our <a href='http://lifeinthegrid.com/duplicator-certified' target='_blank'>approved hosts page</a> as it has a list of hosting providers and themes that have been tested
238
- successfully with the Duplicator plugin.<br/><br/>
239
  </div>
240
  </div>
241
 
36
 
37
  <table class="dup-step3-final-step">
38
  <tr>
39
+ <td>1. <a href="javascript:void(0)" onclick="$('#dup-step3-install-report').toggle(400)">Install Report</a>
40
  </td>
41
  <td>
42
+ <i style='color:#BE2323'>
43
+ <b>Errors:</b>
44
+ <span data-bind="with: status.step1">Deploy (<span data-bind="text: query_errs"></span>)</span> &nbsp;
45
+ <span data-bind="with: status.step2">Update (<span data-bind="text: err_all"></span>)</span> &nbsp; &nbsp;
46
+ <span data-bind="with: status.step2" style="color:#888"><b>Warnings:</b> (<span data-bind="text: warn_all"></span>)</span>
47
  </i>
48
  </td>
49
  </tr>
50
  <tr>
51
  <td style="width:170px">
52
+ 2. <a href='<?php echo rtrim($_POST['url_new'], "/"); ?>/wp-admin/options-permalink.php' target='_blank'> Save Permalinks</a>
53
  </td>
54
+ <td><i>Updates URL rewrite rules in .htaccess (requires login)</i></td>
55
  </tr>
56
  <tr>
57
+ <td>3. <a href='<?php echo $_POST['url_new']; ?>' target='_blank'>Test Site</a></td>
58
+ <td><i>Validate all pages, links images and plugins</i></td>
59
  </tr>
60
  <tr>
61
  <td>4. <a href="javascript:void(0)" onclick="Duplicator.removeInstallerFiles('<?php echo $_POST['package_name'] ?>')">File Cleanup</a></td>
62
+ <td><i>Removes all installer files (requires login)</i></td>
63
  </tr>
64
  </table><br/>
65
 
104
  <tr><th colspan="4">Errors &amp; Warnings <br/> <i style="font-size:10px; font-weight:normal">(click links below to view details)</i></th></tr>
105
  <tr>
106
  <td data-bind="with: status.step1">
107
+ <a href="javascript:void(0);" onclick="$('#dup-step3-errs-create').toggle(400)">Step1: Deploy Errors (<span data-bind="text: query_errs"></span>)</a><br/>
108
  </td>
109
  <td data-bind="with: status.step2">
110
+ <a href="javascript:void(0);" onclick="$('#dup-step3-errs-upd').toggle(400)">Step2: Update Errors (<span data-bind="text: err_all"></span>)</a>
111
  </td>
112
  <td data-bind="with: status.step2">
113
  <a href="#dup-step2-errs-warn-anchor" onclick="$('#dup-step3-warnlist').toggle(400)">General Warnings (<span data-bind="text: warn_all"></span>)</a>
192
  Please consider <a href='http://lifeinthegrid.com/partner/' target='_blank'>Partnering or a Donation</a>! <br/>
193
  <a href="javascript:void(0)" onclick="Duplicator.dlgTips()">Troubleshoot</a> |
194
  <a href='http://support.lifeinthegrid.com/knowledgebase.php' target='_blank'>FAQs</a> |
195
+ <a href='http://lifeinthegrid.com/duplicator' target='_blank'>Support</a>
196
  </div><br/>
197
  </form>
198
 
203
  <div style="padding: 0px 10px 10px 10px;">
204
  <b>Common Quick Fix Issues:</b>
205
  <ul>
206
+ <li>Use an <a href='http://lifeinthegrid.com/duplicator-hosts' target='_blank'>approved hosting provider</a></li>
207
  <li>Validate directory and file permissions (see below)</li>
208
  <li>Validate web server configuration file (see below)</li>
209
  <li>Clear your browsers cache</li>
234
  If you have a large log file that needs evaluated please email the file, or attach it to a help ticket.
235
  <br/><br/>
236
 
 
 
 
237
  </div>
238
  </div>
239
 
lang/wpduplicator-de_DE.mo CHANGED
Binary file
lang/wpduplicator-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Duplicator v0.5.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2014-01-08 21:27-0700\n"
6
- "PO-Revision-Date: 2014-01-27 11:35:13+0000\n"
7
  "Last-Translator: Cory Lamle <cory@lifeinthegrid.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -292,14 +292,14 @@ msgid "Size"
292
  msgstr "Größe"
293
 
294
  #: views/packages/list.base.php:86
295
- #: views/packages/new1.inc-b.form.php:8
296
  #: views/packages/new3.base.php:69
297
  #@ wpduplicator
298
  msgid "Name"
299
  msgstr "Name"
300
 
301
  #: views/packages/list.base.php:88
302
- #: views/packages/new1.inc-b.form.php:5
303
  #: views/settings/general.php:79
304
  #@ wpduplicator
305
  msgid "Package"
@@ -317,14 +317,14 @@ msgid "View"
317
  msgstr "Ansicht"
318
 
319
  #: views/packages/list.base.php:141
320
- #: views/packages/new1.inc-b.form.php:127
321
  #: views/packages/new3.base.php:74
322
  #@ wpduplicator
323
  msgid "Installer"
324
  msgstr "Installer"
325
 
326
  #: views/packages/list.base.php:144
327
- #: views/packages/new1.inc-b.form.php:16
328
  #: views/packages/new2.base.php:153
329
  #: views/packages/new3.base.php:78
330
  #@ wpduplicator
@@ -342,7 +342,7 @@ msgstr "Version"
342
 
343
  #: views/packages/list.base.php:150
344
  #: views/packages/list.base.php:194
345
- #: views/packages/new1.inc-b.form.php:146
346
  #: views/settings/diagnostics.php:149
347
  #@ wpduplicator
348
  msgid "User"
@@ -356,7 +356,7 @@ msgstr "Hash"
356
 
357
  #: views/packages/list.base.php:152
358
  #: views/packages/list.base.php:200
359
- #: views/packages/new1.inc-b.form.php:10
360
  #@ wpduplicator
361
  msgid "Notes"
362
  msgstr "Anmerkungen"
@@ -454,21 +454,21 @@ msgstr "INSTALLER"
454
  msgid "LOG"
455
  msgstr "Log"
456
 
457
- #: views/packages/new1.base.php:68
458
  #: views/packages/new2.base.php:54
459
  #: views/packages/new3.base.php:37
460
  #@ wpduplicator
461
  msgid "Setup"
462
  msgstr "Setup"
463
 
464
- #: views/packages/new1.base.php:69
465
  #: views/packages/new2.base.php:55
466
  #: views/packages/new3.base.php:38
467
  #@ wpduplicator
468
  msgid "Scan"
469
  msgstr "Scan"
470
 
471
- #: views/packages/new1.base.php:70
472
  #: views/packages/new2.base.php:56
473
  #: views/packages/new2.base.php:309
474
  #: views/packages/new3.base.php:39
@@ -476,7 +476,7 @@ msgstr "Scan"
476
  msgid "Build"
477
  msgstr "Erstellen"
478
 
479
- #: views/packages/new1.base.php:73
480
  #@ wpduplicator
481
  msgid "Step 1: Package Setup"
482
  msgstr "Schritt 1: Archiv-Setup"
@@ -613,199 +613,199 @@ msgstr "Benötigst du einen für Duplicator zertifizierten Hosting-Anbieter?"
613
  msgid "duplicator approved"
614
  msgstr "Empfohlene Provider"
615
 
616
- #: views/packages/new1.inc-b.form.php:11
617
  #@ wpduplicator
618
  msgid "Purpose of this package"
619
  msgstr "Zweck dieses Pakets"
620
 
621
- #: views/packages/new1.inc-b.form.php:18
622
  #@ wpduplicator
623
  msgid "File filter enabled"
624
  msgstr "Datei-Filter aktiviert"
625
 
626
- #: views/packages/new1.inc-b.form.php:19
627
  #@ wpduplicator
628
  msgid "Database filter enabled"
629
  msgstr "Datenbank-Filter aktiviert"
630
 
631
- #: views/packages/new1.inc-b.form.php:26
632
  #@ wpduplicator
633
  msgid "Format"
634
  msgstr "Format"
635
 
636
- #: views/packages/new1.inc-b.form.php:35
637
  #: views/packages/new2.base.php:162
638
  #@ wpduplicator
639
  msgid "Files"
640
  msgstr "Dateien"
641
 
642
- #: views/packages/new1.inc-b.form.php:36
643
- #: views/packages/new1.inc-b.form.php:142
644
  #: views/packages/new2.base.php:232
645
  #@ wpduplicator
646
  msgid "Database"
647
  msgstr "Datenbank"
648
 
649
- #: views/packages/new1.inc-b.form.php:47
650
- #: views/packages/new1.inc-b.form.php:82
651
  #@ wpduplicator
652
  msgid "Filters"
653
  msgstr "Filter"
654
 
655
- #: views/packages/new1.inc-b.form.php:51
656
- #: views/packages/new1.inc-b.form.php:86
657
  #@ wpduplicator
658
  msgid "Enable Filters"
659
  msgstr "Filter aktivieren"
660
 
661
- #: views/packages/new1.inc-b.form.php:55
662
- #: views/packages/new1.inc-b.form.php:62
663
  #@ wpduplicator
664
  msgid "Separate all filters by semicolon"
665
  msgstr "Trenne alle Filter durch ein Semikolon"
666
 
667
- #: views/packages/new1.inc-b.form.php:55
668
  #@ wpduplicator
669
  msgid "Directories"
670
  msgstr "Verzeichnisse"
671
 
672
- #: views/packages/new1.inc-b.form.php:57
673
  #@ wpduplicator
674
  msgid "root path"
675
  msgstr "Root-Pfad"
676
 
677
- #: views/packages/new1.inc-b.form.php:58
678
  #@ wpduplicator
679
  msgid "wp-uploads"
680
  msgstr "uploads"
681
 
682
- #: views/packages/new1.inc-b.form.php:59
683
- #: views/packages/new1.inc-b.form.php:66
684
  #@ wpduplicator
685
  msgid "(clear)"
686
  msgstr "(Löschen)"
687
 
688
- #: views/packages/new1.inc-b.form.php:62
689
  #@ wpduplicator
690
  msgid "File extensions"
691
  msgstr "Datei-Erweiterungen"
692
 
693
- #: views/packages/new1.inc-b.form.php:64
694
  #@ wpduplicator
695
  msgid "media"
696
  msgstr "Medien"
697
 
698
- #: views/packages/new1.inc-b.form.php:65
699
  #@ wpduplicator
700
  msgid "archive"
701
  msgstr "Archive"
702
 
703
- #: views/packages/new1.inc-b.form.php:71
704
  #@ wpduplicator
705
  msgid "The directory paths and extensions above will be be excluded from the archive file if enabled is checked."
706
  msgstr "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei ausgeschlossen."
707
 
708
- #: views/packages/new1.inc-b.form.php:72
709
  #@ wpduplicator
710
  msgid "Use the full path for directories and semicolons to separate all items."
711
  msgstr "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle Elemente zu trennen."
712
 
713
- #: views/packages/new1.inc-b.form.php:90
714
  #@ wpduplicator
715
  msgid "All"
716
  msgstr "Alle"
717
 
718
- #: views/packages/new1.inc-b.form.php:91
719
  #@ wpduplicator
720
  msgid "None"
721
  msgstr "Keine"
722
 
723
- #: views/packages/new1.inc-b.form.php:113
724
  #@ wpduplicator
725
  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!"
726
  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!"
727
 
728
- #: views/packages/new1.inc-b.form.php:132
729
  #@ default
730
  msgid "STEP 1 - INPUTS"
731
  msgstr ""
732
 
733
- #: views/packages/new1.inc-b.form.php:135
734
  #@ wpduplicator
735
  msgid "MySQL Server"
736
  msgstr "MySQL-Server"
737
 
738
- #: views/packages/new1.inc-b.form.php:138
739
  #@ wpduplicator
740
  msgid "Host"
741
  msgstr "Host"
742
 
743
- #: views/packages/new1.inc-b.form.php:150
744
  #@ wpduplicator
745
  msgid "Advanced Options"
746
  msgstr "Erweiterte Optionen"
747
 
748
- #: views/packages/new1.inc-b.form.php:156
749
  #@ wpduplicator
750
  msgid "SSL"
751
  msgstr "SSL"
752
 
753
- #: views/packages/new1.inc-b.form.php:159
754
  #@ wpduplicator
755
  msgid "Enforce on Admin"
756
  msgstr "Auf Admin durchsetzen"
757
 
758
- #: views/packages/new1.inc-b.form.php:163
759
  #@ wpduplicator
760
  msgid "Enforce on Logins"
761
  msgstr "Erzwingen auf Logins"
762
 
763
- #: views/packages/new1.inc-b.form.php:167
764
  #@ wpduplicator
765
  msgid "Cache"
766
  msgstr "Cache"
767
 
768
- #: views/packages/new1.inc-b.form.php:170
769
  #@ wpduplicator
770
  msgid "Keep Enabled"
771
  msgstr "Halten Aktiviert"
772
 
773
- #: views/packages/new1.inc-b.form.php:174
774
  #@ wpduplicator
775
  msgid "Keep Home Path"
776
  msgstr "Halten Startseite Pfad"
777
 
778
- #: views/packages/new1.inc-b.form.php:182
779
  #@ default
780
  msgid "STEP 2 - INPUTS"
781
  msgstr ""
782
 
783
- #: views/packages/new1.inc-b.form.php:186
784
  #@ wpduplicator
785
  msgid "New URL"
786
  msgstr "Neue URL"
787
 
788
- #: views/packages/new1.inc-b.form.php:193
789
  #@ wpduplicator
790
  msgid "The installer can have these fields pre-filled at install time."
791
  msgstr "Das Installationsprogramm kann diese Felder bereits vor der Installation ausgefüllt haben."
792
 
793
- #: views/packages/new1.inc-b.form.php:193
794
  #@ wpduplicator
795
  msgid "All values are optional."
796
  msgstr "Alle Werte sind optional."
797
 
798
- #: views/packages/new1.inc-b.form.php:202
799
  #@ wpduplicator
800
  msgid "Skip Scan"
801
  msgstr "Scan überspringen"
802
 
803
- #: views/packages/new1.inc-b.form.php:202
804
  #@ wpduplicator
805
  msgid "step 2"
806
  msgstr "Schritt 2"
807
 
808
- #: views/packages/new1.inc-b.form.php:207
809
  #@ wpduplicator
810
  msgid "Next"
811
  msgstr "Weiter"
@@ -898,12 +898,6 @@ msgstr "Verzeichnisanzahl"
898
  msgid "Invalid Names"
899
  msgstr "Ungültige Namen"
900
 
901
- #: views/packages/new2.base.php:201
902
- #: views/packages/new2.base.php:217
903
- #@ wpduplicator
904
- msgid "Show File Locations"
905
- msgstr "Zeige Dateispeicherorte"
906
-
907
  #: views/packages/new2.base.php:211
908
  #@ wpduplicator
909
  msgid "Large Files"
@@ -1227,17 +1221,17 @@ msgstr "Überprüfe auf freigegebenen Hosts deines Control Panels für den 'TRUE
1227
  msgid "Stored Data"
1228
  msgstr "Gespeicherte Daten"
1229
 
1230
- #: views/settings/diagnostics.php:233
1231
  #@ wpduplicator
1232
  msgid "Options Values"
1233
  msgstr "Options Werte"
1234
 
1235
- #: views/settings/diagnostics.php:266
1236
  #@ wpduplicator
1237
  msgid "PHP Information"
1238
  msgstr "PHP-Information"
1239
 
1240
- #: views/settings/diagnostics.php:285
1241
  #@ wpduplicator
1242
  msgid "Delete this option value"
1243
  msgstr "Lösche den optionalen Wert"
@@ -1394,53 +1388,43 @@ msgstr "Löschen"
1394
  msgid "Log file not found or unreadable"
1395
  msgstr "Log-Datei nicht gefunden oder nicht lesbar"
1396
 
1397
- #: views/tools/logging.php:142
1398
- #@ wpduplicator
1399
- msgid "No log files were found in the snapshots directory with the extension *.log"
1400
- msgstr "Im Snapshots-Verzeichnis wurden keine Log-Dateien mit der Endung *.log gefunden"
1401
-
1402
- #: views/tools/logging.php:143
1403
- #@ wpduplicator
1404
- msgid "If no log file is present the try to create a package"
1405
- msgstr "Wenn keine Log-Datei vorhanden ist, erstelle zuerst ein Archiv"
1406
-
1407
- #: views/tools/logging.php:145
1408
  #@ wpduplicator
1409
  msgid "Reasons for log file not showing"
1410
  msgstr "Die Gründe für die Log-Datei werden nicht angezeigt"
1411
 
1412
- #: views/tools/logging.php:146
1413
  #@ wpduplicator
1414
  msgid "The web server does not support returning .log file extentions"
1415
  msgstr "Der Webserver unterstützt keine .log-Datei-Erweiterungen"
1416
 
1417
- #: views/tools/logging.php:147
1418
  #@ wpduplicator
1419
  msgid "The snapshots directory does not have the correct permissions to write files. Try setting the permissions to 755"
1420
  msgstr "In das Verzeichnis wp-snapshots kann nicht geschrieben werden. Bitte setze die Berechtigung auf 755"
1421
 
1422
- #: views/tools/logging.php:148
1423
  #@ wpduplicator
1424
  msgid "The process that PHP runs under does not have enough permissions to create files. Please contact your hosting provider for more details"
1425
  msgstr "Der Prozess hat nicht genügend Berechtigungen, um Dateien zu erstellen. Bitte kontaktiere deinen Hosting-Provider für weitere Informationen"
1426
 
1427
- #: views/tools/logging.php:157
1428
- #: views/tools/logging.php:162
1429
  #@ wpduplicator
1430
  msgid "Options"
1431
  msgstr "Optionen"
1432
 
1433
- #: views/tools/logging.php:164
1434
  #@ wpduplicator
1435
  msgid "Refresh"
1436
  msgstr "Neu laden"
1437
 
1438
- #: views/tools/logging.php:169
1439
  #@ wpduplicator
1440
  msgid "Auto Refresh"
1441
  msgstr "Automatisch neu laden"
1442
 
1443
- #: views/tools/logging.php:175
1444
  #@ wpduplicator
1445
  msgid "Last 20 Logs"
1446
  msgstr "Letzte 20 Logs"
@@ -1464,12 +1448,12 @@ msgstr "Der Duplicator hat einige Probleme mit den oben genannten Einstellungen.
1464
  #, php-format
1465
  #@ wpduplicator
1466
  msgid "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 enviroment allows it. A \"Warn\" status will not be an issue unless your host kills PHP processes after a certain amount of time. "
1467
- msgstr "Timeouts geben an, wie lange ein Prozess ausgeführt werden darf. Die empfohlene Timeout ist \"%1$s\" Sekunden. Es wird ein Versuch gemacht, diesen Wert zu überschreiben, wenn es die Umgebung zulässt. Ein \"Warn \"-Status wird kein Problem sein, es sei denn, der Hoster beendet PHP-Prozesse nach einer gewissen Zeit."
1468
 
1469
  #: views/packages/new2.base.php:141
1470
  #@ wpduplicator
1471
  msgid "Timeouts can also be set at the web server layer, please work with your host or server administrator to make sure there are not restrictions for how long a PHP process is allowed to run. 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."
1472
- msgstr "Timeouts können auch auf dem Web-Server eingestellt werden. Bitte arbeite mit dem Host-oder Server-Administrator zusammen, um sicherzustellen, dass es keine Beschränkungen gibt, für wie lange ein PHP-Prozess ausgeführt werden darf. Wenn die Verarbeitungszeit begrenzt ist, sollte mit denDatenbank-oder Dateifiltern die Größe des Gesamtpakets verkleinert werden. Benutze die Einstellungen mit Vorsicht, denn falsche Einstellungen können dazu führen, dass die Installation nicht richtig funktioniert."
1473
 
1474
  #: views/packages/new2.base.php:185
1475
  #, php-format
@@ -1486,13 +1470,13 @@ msgstr "Ungültige Datei-oder Ordnernamen können zu Problemen führen, wenn das
1486
  #, php-format
1487
  #@ wpduplicator
1488
  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."
1489
- 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 Paketes kommt, bitte diese Dateien mit dem Filter ausschließen und manuell auf die neue Position verschieben."
1490
 
1491
  #: views/packages/new2.base.php:257
1492
  #, php-format
1493
  #@ wpduplicator
1494
  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."
1495
- 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 eines %3$s auf der Datenbank kann 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."
1496
 
1497
  #: views/packages/new3.base.php:95
1498
  #@ wpduplicator
@@ -1547,7 +1531,7 @@ msgstr ""
1547
  #: views/settings/general.php:96
1548
  #@ wpduplicator
1549
  msgid "Attempt Network Keep Alive"
1550
- msgstr ""
1551
 
1552
  #: views/settings/general.php:97
1553
  #@ wpduplicator
@@ -1567,7 +1551,7 @@ msgstr "Datenbank erstellen"
1567
  #: views/settings/general.php:128
1568
  #@ wpduplicator
1569
  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."
1570
- msgstr "Mysqldump wurde nicht an der Standardposition oder der Ort 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."
1571
 
1572
  #: views/support.php:57
1573
  #@ wpduplicator
@@ -1599,3 +1583,34 @@ msgstr "Unterstützung durch IT-Experten!"
1599
  msgid "Get Help!"
1600
  msgstr "Hilfe bekommen"
1601
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Duplicator v0.5.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2014-01-08 21:27-0700\n"
6
+ "PO-Revision-Date: 2014-02-13 23:47:59+0000\n"
7
  "Last-Translator: Cory Lamle <cory@lifeinthegrid.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
292
  msgstr "Größe"
293
 
294
  #: views/packages/list.base.php:86
295
+ #: views/packages/new1.inc-b.form.php:9
296
  #: views/packages/new3.base.php:69
297
  #@ wpduplicator
298
  msgid "Name"
299
  msgstr "Name"
300
 
301
  #: views/packages/list.base.php:88
302
+ #: views/packages/new1.inc-b.form.php:6
303
  #: views/settings/general.php:79
304
  #@ wpduplicator
305
  msgid "Package"
317
  msgstr "Ansicht"
318
 
319
  #: views/packages/list.base.php:141
320
+ #: views/packages/new1.inc-b.form.php:129
321
  #: views/packages/new3.base.php:74
322
  #@ wpduplicator
323
  msgid "Installer"
324
  msgstr "Installer"
325
 
326
  #: views/packages/list.base.php:144
327
+ #: views/packages/new1.inc-b.form.php:18
328
  #: views/packages/new2.base.php:153
329
  #: views/packages/new3.base.php:78
330
  #@ wpduplicator
342
 
343
  #: views/packages/list.base.php:150
344
  #: views/packages/list.base.php:194
345
+ #: views/packages/new1.inc-b.form.php:148
346
  #: views/settings/diagnostics.php:149
347
  #@ wpduplicator
348
  msgid "User"
356
 
357
  #: views/packages/list.base.php:152
358
  #: views/packages/list.base.php:200
359
+ #: views/packages/new1.inc-b.form.php:12
360
  #@ wpduplicator
361
  msgid "Notes"
362
  msgstr "Anmerkungen"
454
  msgid "LOG"
455
  msgstr "Log"
456
 
457
+ #: views/packages/new1.base.php:78
458
  #: views/packages/new2.base.php:54
459
  #: views/packages/new3.base.php:37
460
  #@ wpduplicator
461
  msgid "Setup"
462
  msgstr "Setup"
463
 
464
+ #: views/packages/new1.base.php:79
465
  #: views/packages/new2.base.php:55
466
  #: views/packages/new3.base.php:38
467
  #@ wpduplicator
468
  msgid "Scan"
469
  msgstr "Scan"
470
 
471
+ #: views/packages/new1.base.php:80
472
  #: views/packages/new2.base.php:56
473
  #: views/packages/new2.base.php:309
474
  #: views/packages/new3.base.php:39
476
  msgid "Build"
477
  msgstr "Erstellen"
478
 
479
+ #: views/packages/new1.base.php:83
480
  #@ wpduplicator
481
  msgid "Step 1: Package Setup"
482
  msgstr "Schritt 1: Archiv-Setup"
613
  msgid "duplicator approved"
614
  msgstr "Empfohlene Provider"
615
 
616
+ #: views/packages/new1.inc-b.form.php:13
617
  #@ wpduplicator
618
  msgid "Purpose of this package"
619
  msgstr "Zweck dieses Pakets"
620
 
621
+ #: views/packages/new1.inc-b.form.php:20
622
  #@ wpduplicator
623
  msgid "File filter enabled"
624
  msgstr "Datei-Filter aktiviert"
625
 
626
+ #: views/packages/new1.inc-b.form.php:21
627
  #@ wpduplicator
628
  msgid "Database filter enabled"
629
  msgstr "Datenbank-Filter aktiviert"
630
 
631
+ #: views/packages/new1.inc-b.form.php:28
632
  #@ wpduplicator
633
  msgid "Format"
634
  msgstr "Format"
635
 
636
+ #: views/packages/new1.inc-b.form.php:37
637
  #: views/packages/new2.base.php:162
638
  #@ wpduplicator
639
  msgid "Files"
640
  msgstr "Dateien"
641
 
642
+ #: views/packages/new1.inc-b.form.php:38
643
+ #: views/packages/new1.inc-b.form.php:144
644
  #: views/packages/new2.base.php:232
645
  #@ wpduplicator
646
  msgid "Database"
647
  msgstr "Datenbank"
648
 
649
+ #: views/packages/new1.inc-b.form.php:49
650
+ #: views/packages/new1.inc-b.form.php:84
651
  #@ wpduplicator
652
  msgid "Filters"
653
  msgstr "Filter"
654
 
655
+ #: views/packages/new1.inc-b.form.php:53
656
+ #: views/packages/new1.inc-b.form.php:88
657
  #@ wpduplicator
658
  msgid "Enable Filters"
659
  msgstr "Filter aktivieren"
660
 
661
+ #: views/packages/new1.inc-b.form.php:57
662
+ #: views/packages/new1.inc-b.form.php:64
663
  #@ wpduplicator
664
  msgid "Separate all filters by semicolon"
665
  msgstr "Trenne alle Filter durch ein Semikolon"
666
 
667
+ #: views/packages/new1.inc-b.form.php:57
668
  #@ wpduplicator
669
  msgid "Directories"
670
  msgstr "Verzeichnisse"
671
 
672
+ #: views/packages/new1.inc-b.form.php:59
673
  #@ wpduplicator
674
  msgid "root path"
675
  msgstr "Root-Pfad"
676
 
677
+ #: views/packages/new1.inc-b.form.php:60
678
  #@ wpduplicator
679
  msgid "wp-uploads"
680
  msgstr "uploads"
681
 
682
+ #: views/packages/new1.inc-b.form.php:61
683
+ #: views/packages/new1.inc-b.form.php:68
684
  #@ wpduplicator
685
  msgid "(clear)"
686
  msgstr "(Löschen)"
687
 
688
+ #: views/packages/new1.inc-b.form.php:64
689
  #@ wpduplicator
690
  msgid "File extensions"
691
  msgstr "Datei-Erweiterungen"
692
 
693
+ #: views/packages/new1.inc-b.form.php:66
694
  #@ wpduplicator
695
  msgid "media"
696
  msgstr "Medien"
697
 
698
+ #: views/packages/new1.inc-b.form.php:67
699
  #@ wpduplicator
700
  msgid "archive"
701
  msgstr "Archive"
702
 
703
+ #: views/packages/new1.inc-b.form.php:73
704
  #@ wpduplicator
705
  msgid "The directory paths and extensions above will be be excluded from the archive file if enabled is checked."
706
  msgstr "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei ausgeschlossen."
707
 
708
+ #: views/packages/new1.inc-b.form.php:74
709
  #@ wpduplicator
710
  msgid "Use the full path for directories and semicolons to separate all items."
711
  msgstr "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle Elemente zu trennen."
712
 
713
+ #: views/packages/new1.inc-b.form.php:92
714
  #@ wpduplicator
715
  msgid "All"
716
  msgstr "Alle"
717
 
718
+ #: views/packages/new1.inc-b.form.php:93
719
  #@ wpduplicator
720
  msgid "None"
721
  msgstr "Keine"
722
 
723
+ #: views/packages/new1.inc-b.form.php:115
724
  #@ wpduplicator
725
  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!"
726
  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!"
727
 
728
+ #: views/packages/new1.inc-b.form.php:134
729
  #@ default
730
  msgid "STEP 1 - INPUTS"
731
  msgstr ""
732
 
733
+ #: views/packages/new1.inc-b.form.php:137
734
  #@ wpduplicator
735
  msgid "MySQL Server"
736
  msgstr "MySQL-Server"
737
 
738
+ #: views/packages/new1.inc-b.form.php:140
739
  #@ wpduplicator
740
  msgid "Host"
741
  msgstr "Host"
742
 
743
+ #: views/packages/new1.inc-b.form.php:152
744
  #@ wpduplicator
745
  msgid "Advanced Options"
746
  msgstr "Erweiterte Optionen"
747
 
748
+ #: views/packages/new1.inc-b.form.php:158
749
  #@ wpduplicator
750
  msgid "SSL"
751
  msgstr "SSL"
752
 
753
+ #: views/packages/new1.inc-b.form.php:161
754
  #@ wpduplicator
755
  msgid "Enforce on Admin"
756
  msgstr "Auf Admin durchsetzen"
757
 
758
+ #: views/packages/new1.inc-b.form.php:165
759
  #@ wpduplicator
760
  msgid "Enforce on Logins"
761
  msgstr "Erzwingen auf Logins"
762
 
763
+ #: views/packages/new1.inc-b.form.php:169
764
  #@ wpduplicator
765
  msgid "Cache"
766
  msgstr "Cache"
767
 
768
+ #: views/packages/new1.inc-b.form.php:172
769
  #@ wpduplicator
770
  msgid "Keep Enabled"
771
  msgstr "Halten Aktiviert"
772
 
773
+ #: views/packages/new1.inc-b.form.php:176
774
  #@ wpduplicator
775
  msgid "Keep Home Path"
776
  msgstr "Halten Startseite Pfad"
777
 
778
+ #: views/packages/new1.inc-b.form.php:184
779
  #@ default
780
  msgid "STEP 2 - INPUTS"
781
  msgstr ""
782
 
783
+ #: views/packages/new1.inc-b.form.php:188
784
  #@ wpduplicator
785
  msgid "New URL"
786
  msgstr "Neue URL"
787
 
788
+ #: views/packages/new1.inc-b.form.php:195
789
  #@ wpduplicator
790
  msgid "The installer can have these fields pre-filled at install time."
791
  msgstr "Das Installationsprogramm kann diese Felder bereits vor der Installation ausgefüllt haben."
792
 
793
+ #: views/packages/new1.inc-b.form.php:195
794
  #@ wpduplicator
795
  msgid "All values are optional."
796
  msgstr "Alle Werte sind optional."
797
 
798
+ #: views/packages/new1.inc-b.form.php:204
799
  #@ wpduplicator
800
  msgid "Skip Scan"
801
  msgstr "Scan überspringen"
802
 
803
+ #: views/packages/new1.inc-b.form.php:204
804
  #@ wpduplicator
805
  msgid "step 2"
806
  msgstr "Schritt 2"
807
 
808
+ #: views/packages/new1.inc-b.form.php:209
809
  #@ wpduplicator
810
  msgid "Next"
811
  msgstr "Weiter"
898
  msgid "Invalid Names"
899
  msgstr "Ungültige Namen"
900
 
 
 
 
 
 
 
901
  #: views/packages/new2.base.php:211
902
  #@ wpduplicator
903
  msgid "Large Files"
1221
  msgid "Stored Data"
1222
  msgstr "Gespeicherte Daten"
1223
 
1224
+ #: views/settings/diagnostics.php:229
1225
  #@ wpduplicator
1226
  msgid "Options Values"
1227
  msgstr "Options Werte"
1228
 
1229
+ #: views/settings/diagnostics.php:262
1230
  #@ wpduplicator
1231
  msgid "PHP Information"
1232
  msgstr "PHP-Information"
1233
 
1234
+ #: views/settings/diagnostics.php:281
1235
  #@ wpduplicator
1236
  msgid "Delete this option value"
1237
  msgstr "Lösche den optionalen Wert"
1388
  msgid "Log file not found or unreadable"
1389
  msgstr "Log-Datei nicht gefunden oder nicht lesbar"
1390
 
1391
+ #: views/tools/logging.php:144
 
 
 
 
 
 
 
 
 
 
1392
  #@ wpduplicator
1393
  msgid "Reasons for log file not showing"
1394
  msgstr "Die Gründe für die Log-Datei werden nicht angezeigt"
1395
 
1396
+ #: views/tools/logging.php:145
1397
  #@ wpduplicator
1398
  msgid "The web server does not support returning .log file extentions"
1399
  msgstr "Der Webserver unterstützt keine .log-Datei-Erweiterungen"
1400
 
1401
+ #: views/tools/logging.php:146
1402
  #@ wpduplicator
1403
  msgid "The snapshots directory does not have the correct permissions to write files. Try setting the permissions to 755"
1404
  msgstr "In das Verzeichnis wp-snapshots kann nicht geschrieben werden. Bitte setze die Berechtigung auf 755"
1405
 
1406
+ #: views/tools/logging.php:147
1407
  #@ wpduplicator
1408
  msgid "The process that PHP runs under does not have enough permissions to create files. Please contact your hosting provider for more details"
1409
  msgstr "Der Prozess hat nicht genügend Berechtigungen, um Dateien zu erstellen. Bitte kontaktiere deinen Hosting-Provider für weitere Informationen"
1410
 
1411
+ #: views/tools/logging.php:156
1412
+ #: views/tools/logging.php:161
1413
  #@ wpduplicator
1414
  msgid "Options"
1415
  msgstr "Optionen"
1416
 
1417
+ #: views/tools/logging.php:163
1418
  #@ wpduplicator
1419
  msgid "Refresh"
1420
  msgstr "Neu laden"
1421
 
1422
+ #: views/tools/logging.php:168
1423
  #@ wpduplicator
1424
  msgid "Auto Refresh"
1425
  msgstr "Automatisch neu laden"
1426
 
1427
+ #: views/tools/logging.php:174
1428
  #@ wpduplicator
1429
  msgid "Last 20 Logs"
1430
  msgstr "Letzte 20 Logs"
1448
  #, php-format
1449
  #@ wpduplicator
1450
  msgid "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 enviroment allows it. A \"Warn\" status will not be an issue unless your host kills PHP processes after a certain amount of time. "
1451
+ msgstr "Timeouts geben an, wie lange ein Prozess ausgeführt werden darf. Die empfohlene Timeout ist \"%1$s\" Sekunden. Es wird ein Versuch gemacht, diesen Wert zu überschreiben, wenn es die Umgebung zulässt. Ein \"Warn\"-Status wird kein Problem sein, es sei denn, der Hoster beendet PHP-Prozesse nach einer gewissen Zeit. "
1452
 
1453
  #: views/packages/new2.base.php:141
1454
  #@ wpduplicator
1455
  msgid "Timeouts can also be set at the web server layer, please work with your host or server administrator to make sure there are not restrictions for how long a PHP process is allowed to run. 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."
1456
+ msgstr "Timeouts können auch auf dem Web-Server eingestellt werden. Bitte arbeite mit dem Host-oder Server-Administrator zusammen, um sicherzustellen, dass es keine Beschränkungen gibt, für wie lange ein PHP-Prozess ausgeführt werden darf. Wenn die Verarbeitungszeit begrenzt ist, sollte mit den Datenbank- oder Dateifiltern die Größe des Gesamtpakets verkleinert werden. Benutze die Einstellungen mit Vorsicht, denn falsche Einstellungen können dazu führen, dass die Installation nicht richtig funktioniert."
1457
 
1458
  #: views/packages/new2.base.php:185
1459
  #, php-format
1470
  #, php-format
1471
  #@ wpduplicator
1472
  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."
1473
+ 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."
1474
 
1475
  #: views/packages/new2.base.php:257
1476
  #, php-format
1477
  #@ wpduplicator
1478
  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."
1479
+ 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."
1480
 
1481
  #: views/packages/new3.base.php:95
1482
  #@ wpduplicator
1531
  #: views/settings/general.php:96
1532
  #@ wpduplicator
1533
  msgid "Attempt Network Keep Alive"
1534
+ msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren"
1535
 
1536
  #: views/settings/general.php:97
1537
  #@ wpduplicator
1551
  #: views/settings/general.php:128
1552
  #@ wpduplicator
1553
  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."
1554
+ 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."
1555
 
1556
  #: views/support.php:57
1557
  #@ wpduplicator
1583
  msgid "Get Help!"
1584
  msgstr "Hilfe bekommen"
1585
 
1586
+ #: views/packages/new1.base.php:11
1587
+ #@ wpduplicator
1588
+ msgid "Package settings have been reset."
1589
+ msgstr "Archiveinstellungen wurden zurückgesetzt."
1590
+
1591
+ #: views/packages/new1.inc-b.form.php:10
1592
+ #@ wpduplicator
1593
+ msgid "Create a new default name"
1594
+ msgstr "Erstelle einen neuen Standardnamen"
1595
+
1596
+ #: views/packages/new1.inc-b.form.php:208
1597
+ #@ wpduplicator
1598
+ msgid "Reset"
1599
+ msgstr "Zurücksetzen"
1600
+
1601
+ #: views/packages/new1.inc-b.form.php:221
1602
+ #@ wpduplicator
1603
+ msgid "This will reset all of the current package settings. Would you like to continue?"
1604
+ msgstr "Dies wird alle aktuellen Archiveinstellungen zurückzusetzen. Möchtest Du fortfahren?"
1605
+
1606
+ #: views/packages/new2.base.php:201
1607
+ #: views/packages/new2.base.php:217
1608
+ #@ wpduplicator
1609
+ msgid "Show Paths"
1610
+ msgstr "Zeige Pfade"
1611
+
1612
+ #: views/tools/logging.php:142
1613
+ #@ wpduplicator
1614
+ msgid "Try to create a package, since no log files were found in the snapshots directory with the extension *.log"
1615
+ msgstr "Versuche ein Archiv zu erstellen, da keine Log-Dateien im Snapshots-Verzeichnis mit der Endung *. Log gefunden wurden"
1616
+
lang/wpduplicator-es_ES.mo CHANGED
Binary file
lang/wpduplicator-es_ES.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Duplicator v0.4.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2013-07-15 20:30:44+0000\n"
7
  "Last-Translator: basicos <emiliodefez@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -20,1475 +20,1580 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: duplicator.php:211
24
  #@ wpduplicator
25
  msgid "FAQ"
26
  msgstr "FAQ"
27
 
28
- #: duplicator.php:212
29
  #@ wpduplicator
30
  msgid "Partner"
31
  msgstr "Partner"
32
 
33
- #: duplicator.php:213
34
  #@ wpduplicator
35
  msgid "Approved Hosts"
36
  msgstr "Hosts aprobados"
37
 
38
- #: inc/settings.php:53
 
39
  #@ wpduplicator
40
  msgid "Diagnostics"
41
  msgstr "Diagnósticos"
42
 
43
- #: duplicator.php:280
44
- #: inc/support.php:14
 
45
  #@ wpduplicator
46
  msgid "Support"
47
  msgstr "Ayuda y soporte"
48
 
49
- #: duplicator.php:325
50
  #@ wpduplicator
51
  msgid "Manage"
52
  msgstr "Manejar"
53
 
54
- #: installer/log-read.php:61
55
  #@ wpduplicator
56
  msgid "Log file not found or unreadable"
57
  msgstr "Fichero log no se encuentra"
58
 
59
- #: installer/log-read.php:63
60
- #@ wpduplicator
61
- msgid "The log file for the Duplicator Plugin can be found in the snapshots directory with the extension *.log"
62
- msgstr "El fichero log puede encontrarse en el directorio de duplicados con la extensión *.log"
63
-
64
- #: installer/log-read.php:64
65
  #@ wpduplicator
66
  msgid "If no log file is present the try to create a package"
67
  msgstr "Si no hay fichero log, intente crear un duplicado"
68
 
69
- #: installer/log-read.php:66
70
  #@ wpduplicator
71
  msgid "Reasons for log file not showing"
72
  msgstr "Razones porque el fichero log no se ve"
73
 
74
- #: installer/log-read.php:67
75
  #@ wpduplicator
76
  msgid "The web server does not support returning .log file extentions"
77
  msgstr "El servidor web no soporta extensiones .log"
78
 
79
- #: installer/log-read.php:68
80
  #@ wpduplicator
81
  msgid "The snapshots directory does not have the correct permissions to write files. Try setting the permissions to 755"
82
  msgstr "El directorio de duplicados no tiene los permisos corretos para escribir ficheros. Intente poner los permisos en 755"
83
 
84
- #: installer/log-read.php:69
85
  #@ wpduplicator
86
  msgid "The process that PHP runs under does not have enough permissions to create files. Please contact your hosting provider for more details"
87
  msgstr "El proceso que corre con PHP no tiene suficientes permisos. Por favor contacte su proveedor para más detalles"
88
 
89
- #: installer/log-view.php:123
90
- #@ wpduplicator
91
- msgid "Duplicator: Create Package Log"
92
- msgstr "Duplicator: Crear Log de duplicado"
93
-
94
- #: installer/log-view.php:126
95
- #@ wpduplicator
96
- msgid "Processing may take several minutes, please wait for progress bar to complete on the main status bar"
97
- msgstr "El proceso puede tomar varios minutos, por favor espere a que la barra de progreso acabe"
98
-
99
- #: installer/log-view.php:131
100
  #@ wpduplicator
101
  msgid "Auto Refresh"
102
  msgstr "Refrescar automatico"
103
 
104
- #: installer/log-view.php:132
105
  #@ wpduplicator
106
  msgid "Refresh"
107
  msgstr "Refrescar"
108
 
109
- #: installer/log-view.php:150
110
- #@ wpduplicator
111
- msgid "Support Center"
112
- msgstr "Centro de soporte"
113
-
114
- #: installer/log-view.php:151
115
- #@ wpduplicator
116
- msgid "Do NOT post this data to public sites like the WordPress.org forums as it contains sensitive data."
117
- msgstr "No publique estos datos en sitios públicos como foros Wordpress.org porque contiene información sensible"
118
-
119
- #: inc/pack.win.options.php:147
120
- #: inc/pack.win.options.php:175
121
- #@ wpduplicator
122
- msgid "Saving"
123
- msgstr "Guardando"
124
-
125
- #: inc/pack.main.php:410
126
  #@ wpduplicator
127
  msgid "Please select at least one package to delete."
128
  msgstr "Por favor, seleccione al menos un duplicado para borrar"
129
 
130
- #: inc/pack.main.php:414
131
  #@ wpduplicator
132
  msgid "Are you sure, you want to delete the selected package(s)?"
133
  msgstr "Esta seguro de que quiere borrar lo/s duplicado/s seleccionados"
134
 
135
- #: inc/pack.main.php:346
136
- #: inc/pack.main.php:430
137
- #: inc/pack.win.error.php:67
138
- #: inc/pack.win.system.php:208
139
- #@ wpduplicator
140
- msgid "Ready to create new package."
141
- msgstr "Listo para crear un nuevo paquete"
142
-
143
- #: inc/pack.win.create.php:54
144
- #@ wpduplicator
145
- msgid "Please enter a backup name."
146
- msgstr "Por favor, introduzca un nombre de backup"
147
-
148
- #: inc/pack.main.php:343
149
- #@ wpduplicator
150
- msgid "Evaluating WordPress Setup. Please Wait"
151
- msgstr "Evaluando el setup de Wordpress. Por favor, espere"
152
-
153
- #: inc/pack.win.create.php:121
154
- #: inc/pack.win.options.php:195
155
- #@ wpduplicator
156
- msgid "Cancel"
157
- msgstr "Cancelar"
158
-
159
- #: inc/pack.win.create.php:111
160
- #@ wpduplicator
161
- msgid "Create Package Set"
162
- msgstr "Crear Duplicado"
163
-
164
- #: inc/pack.win.system.php:214
165
- #@ wpduplicator
166
- msgid "Checking System Status. Please Wait!"
167
- msgstr "Chequeando el estado del sistema. Por favor, espere"
168
-
169
- #: inc/pack.win.system.php:241
170
- #@ wpduplicator
171
- msgid "Scanning Please Wait"
172
- msgstr "Escaneando por favor, espere"
173
-
174
- #: inc/pack.win.system.php:246
175
- #: inc/pack.win.system.php:247
176
- #: inc/pack.win.system.php:248
177
- #@ wpduplicator
178
- msgid "unreadable"
179
- msgstr "no se lee"
180
-
181
- #: inc/pack.win.system.php:249
182
- #@ wpduplicator
183
- msgid "*Scan Error"
184
- msgstr "*Error de escaneo"
185
-
186
- #: inc/pack.win.system.php:250
187
  #@ wpduplicator
188
  msgid "Files"
189
  msgstr "Ficheros"
190
 
191
- #: inc/pack.win.system.php:250
192
- #@ wpduplicator
193
- msgid "Folders"
194
- msgstr "Carpetas"
195
-
196
- #: inc/pack.win.system.php:255
197
- #@ wpduplicator
198
- msgid "error scanning directory"
199
- msgstr "error escaneando el directorio"
200
-
201
- #: inc/pack.win.links.php:28
202
  #@ wpduplicator
203
  msgid "DATABASE"
204
  msgstr "BASE DE DATOS"
205
 
206
- #: inc/pack.win.links.php:29
207
  #@ wpduplicator
208
  msgid "PACKAGE"
209
  msgstr "DUPLICADO"
210
 
211
- #: inc/pack.win.links.php:30
212
  #@ wpduplicator
213
  msgid "INSTALLER"
214
  msgstr "INSTALADOR"
215
 
216
- #: inc/pack.win.error.php:63
217
- #@ wpduplicator
218
- msgid "AJAX Response"
219
- msgstr "Respuesta de AJAX"
220
-
221
- #: inc/pack.win.create.php:96
222
- #@ wpduplicator
223
- msgid "Creating package may take several minutes. Please Wait... "
224
- msgstr "Crear el paquete puede tomar varios minutos. Por favor, espere"
225
-
226
- #: inc/pack.win.create.php:97
227
- #@ wpduplicator
228
- msgid "Preview Log"
229
- msgstr "Ver Log"
230
-
231
- #: inc/inc.header.php:10
232
  #@ wpduplicator
233
  msgid "By"
234
  msgstr "Por"
235
 
236
- #: inc/support.php:22
237
  #@ wpduplicator
238
  msgid "knowledgebase"
239
  msgstr "Página de Ayuda y Documentación"
240
 
241
- #: inc/support.php:106
242
  #@ wpduplicator
243
  msgid "Support Duplicator"
244
  msgstr "Soporte Duplicator"
245
 
246
- #: inc/support.php:153
247
  #@ wpduplicator
248
  msgid "Spread the Word"
249
  msgstr "Corra la voz"
250
 
251
- #: inc/support.php:159
252
  #@ wpduplicator
253
  msgid "Duplicate Your WordPress"
254
  msgstr "Duplicar su WordPress"
255
 
256
- #: inc/support.php:160
257
  #@ wpduplicator
258
  msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
259
  msgstr "Duplicación rápida de WordPress por LifeInTheGrid.com"
260
 
261
- #: inc/support.php:195
262
- #@ wpduplicator
263
- msgid "Labs"
264
- msgstr "Laboratorio"
265
-
266
- #: inc/pack.main.php:94
267
- #@ wpduplicator
268
- msgid "Package Name"
269
- msgstr "Nombre del Duplicado"
270
-
271
- #: inc/pack.main.php:55
272
- #@ wpduplicator
273
- msgid "Create Package"
274
- msgstr "Crear Duplicado"
275
-
276
- #: inc/pack.main.php:48
277
  #@ wpduplicator
278
  msgid "Delete selected package(s)"
279
  msgstr "Borrar duplicados seleccionados"
280
 
281
- #: inc/pack.main.php:58
 
282
  #@ wpduplicator
283
  msgid "Options"
284
  msgstr "Opciones"
285
 
286
- #: inc/pack.main.php:59
287
- #@ wpduplicator
288
- msgid "System Check"
289
- msgstr "Chequeo del sistema"
290
-
291
- #: inc/pack.main.php:60
292
- #@ wpduplicator
293
- msgid "Show Create Log"
294
- msgstr "Ver Log de Creación"
295
-
296
- #: inc/pack.main.php:75
297
- #@ wpduplicator
298
- msgid "Status"
299
- msgstr "Estado"
300
-
301
- #: inc/pack.main.php:76
302
- #@ wpduplicator
303
- msgid "Ready to create new package"
304
- msgstr "Listo para crear nuevo duplicado"
305
-
306
- #: inc/pack.main.php:89
307
  #@ wpduplicator
308
  msgid "Select all packages"
309
  msgstr "Seleccione todos los duplicados"
310
 
311
- #: inc/pack.main.php:92
312
  #@ wpduplicator
313
  msgid "Created"
314
  msgstr "Creado"
315
 
316
- #: inc/pack.main.php:93
 
 
317
  #@ wpduplicator
318
  msgid "Size"
319
  msgstr "Tamaño"
320
 
321
- #: inc/pack.main.php:96
322
- #@ wpduplicator
323
- msgid "Package Set"
324
- msgstr "Archivos del Duplicado"
325
-
326
- #: inc/pack.main.php:97
327
- #@ wpduplicator
328
- msgid "(Download Both)"
329
- msgstr "(Bajar ambos)"
330
-
331
- #: inc/pack.main.php:133
332
- #: inc/pack.main.php:158
333
- #: inc/pack.main.php:188
334
  #@ wpduplicator
335
  msgid "View"
336
  msgstr "Ver"
337
 
338
- #: inc/pack.main.php:139
339
- #: inc/pack.win.options.php:10
 
340
  #@ wpduplicator
341
  msgid "Installer"
342
  msgstr "Instalador"
343
 
344
- #: inc/pack.main.php:140
345
- #: inc/pack.win.create.php:8
346
- #: inc/pack.win.options.php:9
347
  #@ wpduplicator
348
  msgid "Package"
349
  msgstr "Duplicado"
350
 
351
- #: inc/pack.main.php:146
352
- #: inc/pack.main.php:172
353
- #: inc/settings.php:142
354
- #: inc/settings.php:165
355
- #: inc/settings.php:201
356
  #@ wpduplicator
357
  msgid "Version"
358
  msgstr "Version"
359
 
360
- #: inc/pack.main.php:147
361
- #: inc/pack.main.php:173
362
- #@ wpduplicator
363
- msgid "Secure Name"
364
- msgstr "Nombre seguro"
365
-
366
- #: inc/pack.main.php:202
367
- #@ wpduplicator
368
- msgid "Legacy Version"
369
- msgstr "Versión oficial"
370
-
371
- #: inc/pack.main.php:205
372
- #@ wpduplicator
373
- msgid "This package was built with a version that is no longer supported. It is highly recommended that this package be deleted. For more details see the"
374
- msgstr "Este duplicado se creó por una versión no soportada. Se recomienda que borre el duplicado. Para más detalles vea "
375
-
376
- #: inc/pack.main.php:206
377
- #: inc/pack.win.create.php:39
378
- #@ wpduplicator
379
- msgid "Online FAQs"
380
- msgstr "FAQ Online"
381
-
382
- #: inc/pack.main.php:217
383
- #@ wpduplicator
384
- msgid "No packages found"
385
- msgstr "No se encontraron ficheros de duplicado"
386
-
387
- #: inc/pack.main.php:220
388
- #@ wpduplicator
389
- msgid "Check your"
390
- msgstr "Chequee su"
391
-
392
- #: inc/pack.main.php:221
393
- #@ wpduplicator
394
- msgid "server's compatibility"
395
- msgstr "Compatibilidad del servidor"
396
-
397
- #: inc/pack.main.php:224
398
- #@ wpduplicator
399
- msgid "This window should remain open for the process to complete"
400
- msgstr "Deje esta ventana ABIERTA para dejar que acabe el proceso. Gracias."
401
-
402
- #: inc/support.php:52
403
  #@ wpduplicator
404
  msgid "Quick Start"
405
  msgstr "Comienzo rápido"
406
 
407
- #: inc/support.php:53
408
  #@ wpduplicator
409
  msgid "User Guide"
410
  msgstr "Guia de usuario"
411
 
412
- #: inc/support.php:54
413
  #@ wpduplicator
414
  msgid "FAQs"
415
  msgstr "FAQs"
416
 
417
- #: inc/support.php:56
418
  #@ wpduplicator
419
  msgid "Product Page"
420
  msgstr "Página de producto"
421
 
422
- #: inc/support.php:67
423
  #@ wpduplicator
424
  msgid "Approved Hosting"
425
  msgstr "Hosting aprobado"
426
 
427
- #: inc/support.php:84
428
  #@ wpduplicator
429
  msgid "Online Support"
430
  msgstr "Soporte Online Profesional"
431
 
432
- #: inc/pack.win.options.php:20
433
- #@ wpduplicator
434
- msgid "Processing"
435
- msgstr "Procesando"
436
-
437
- #: inc/pack.win.options.php:32
438
- #@ wpduplicator
439
- msgid "Exclusion Filters"
440
- msgstr "Filtros de excluidos"
441
-
442
- #: inc/pack.win.options.php:33
443
  #@ wpduplicator
444
  msgid "Directories"
445
  msgstr "Directorios"
446
 
447
- #: inc/pack.win.options.php:40
448
  #@ wpduplicator
449
  msgid "File extensions"
450
  msgstr "Extensiones de fichero"
451
 
452
- #: inc/pack.win.options.php:33
453
- #: inc/pack.win.options.php:40
454
  #@ wpduplicator
455
  msgid "Separate all filters by semicolon"
456
  msgstr "Separar todos los filtros por punto y coma."
457
 
458
- #: inc/pack.win.options.php:52
459
- #@ wpduplicator
460
- msgid "Having issues saving these options? Temporarily disable all 'Object Caches' (i.e. W3C Total Object Cache)"
461
- msgstr "¿Tiene problemas para estas opciones? Disabilite temporalmente todos los 'Caches de objeto' (i.e. W3C Total Object Cache)"
462
-
463
- #: inc/pack.win.options.php:68
464
  #@ wpduplicator
465
  msgid "Host"
466
  msgstr "Host"
467
 
468
- #: inc/pack.main.php:91
469
- #: inc/pack.win.options.php:76
470
- #: inc/settings.php:173
 
471
  #@ wpduplicator
472
  msgid "User"
473
  msgstr "Usuario"
474
 
475
- #: inc/settings.php:74
476
  #@ wpduplicator
477
  msgid "Uninstall Options"
478
  msgstr "Opciones de desinstalación"
479
 
480
- #: inc/settings.php:77
481
- #@ wpduplicator
482
- msgid "Delete entire snapshot directory when removing plugin"
483
- msgstr "Borrar el directorio de duplicados cuando borre el plugin."
484
-
485
- #: inc/settings.php:78
486
  #@ wpduplicator
487
  msgid "Snapshot Directory"
488
  msgstr "Directorio de Duplicados"
489
 
490
- #: inc/pack.win.options.php:190
491
- #@ wpduplicator
492
- msgid "Save"
493
- msgstr "Guardar"
494
-
495
- #: inc/pack.win.system.php:279
496
- #@ wpduplicator
497
- msgid "Close"
498
- msgstr "Cerrar"
499
-
500
- #: inc/pack.win.system.php:149
501
- #@ wpduplicator
502
- msgid "Pre-Zip Overview"
503
- msgstr "Precálculo antes del ZIP"
504
-
505
- #: inc/pack.win.error.php:3
506
- #@ wpduplicator
507
- msgid "System Constraint"
508
- msgstr "Limitación del sistema"
509
-
510
- #: inc/pack.win.error.php:6
511
- #@ wpduplicator
512
- msgid "Please try again! An issue has occurred."
513
- msgstr "Por favor, intentelo de nuevo! Ha habido un problema"
514
-
515
- #: inc/pack.win.error.php:10
516
- #@ wpduplicator
517
- msgid "Recommendations"
518
- msgstr "Recomendaciones"
519
-
520
- #: inc/pack.win.error.php:15
521
- #@ wpduplicator
522
- msgid "Validate"
523
- msgstr "Validar"
524
-
525
- #: inc/pack.win.error.php:16
526
- #@ wpduplicator
527
- msgid "your system"
528
- msgstr "su sistema"
529
-
530
- #: inc/pack.win.error.php:17
531
- #@ wpduplicator
532
- msgid "refresh"
533
- msgstr "refrescar"
534
-
535
- #: inc/pack.win.error.php:18
536
- #@ wpduplicator
537
- msgid "the dashboard."
538
- msgstr "el escritorio."
539
-
540
- #: inc/pack.win.error.php:22
541
- #@ wpduplicator
542
- msgid "Monitor"
543
- msgstr "Monitor"
544
-
545
- #: inc/pack.win.error.php:23
546
- #@ wpduplicator
547
- msgid "your log file a few more minutes as processing may continue on some systems"
548
- msgstr "su fichero log, porque el proceso puede continuar en algunos sistemas"
549
-
550
- #: inc/pack.win.error.php:26
551
- #@ wpduplicator
552
- msgid "Contact your server admin to have the page timeout increased (see duration below)"
553
- msgstr "Contacte a su administrador para incrementar su limitación de timeout (ver duración abajo)"
554
-
555
- #: inc/pack.win.error.php:27
556
- #@ wpduplicator
557
- msgid "Consider adding a directory filter in the options dialog if the process continues to timeout"
558
- msgstr "Considere añadir un filtro de directorio en el diálogo de opciones si el proceso sigue parandose"
559
-
560
- #: inc/pack.win.error.php:28
561
- #@ wpduplicator
562
- msgid "Check your disk space. For hosted sites review your providers help."
563
- msgstr "Chequee su espacio de disco. Revise la ayuda de su proveedor."
564
-
565
- #: inc/pack.win.error.php:31
566
- #@ wpduplicator
567
- msgid "Consider using an"
568
- msgstr "Considere usar un"
569
-
570
- #: inc/pack.win.error.php:33
571
- #@ wpduplicator
572
- msgid "approved"
573
- msgstr "aprobado"
574
-
575
- #: inc/pack.win.error.php:34
576
- #@ wpduplicator
577
- msgid "hosting provider."
578
- msgstr "Proveedor de Hosting Aprobado."
579
-
580
- #: inc/pack.win.error.php:38
581
- #@ wpduplicator
582
- msgid "Server Response"
583
- msgstr "Respuesta del servidor"
584
-
585
- #: inc/pack.win.error.php:43
586
- #@ wpduplicator
587
- msgid "See online help for more details at"
588
- msgstr "Mire la ayuda online para mas detalles en"
589
-
590
- #: inc/pack.win.system.php:3
591
- #@ wpduplicator
592
- msgid "System Status"
593
- msgstr "Estado del sistema"
594
-
595
- #: inc/pack.win.system.php:6
596
- #@ wpduplicator
597
- msgid "Please validate your system configuration."
598
- msgstr "Por favor, valide su configuración del sistema"
599
-
600
- #: inc/pack.win.system.php:7
601
- #@ wpduplicator
602
- msgid "Click link for details"
603
- msgstr "Click enlace para detalles"
604
-
605
- #: inc/pack.win.system.php:16
606
- #@ wpduplicator
607
- msgid "SYSTEM REQUIRMENTS"
608
- msgstr "REQUERIMIENTOS DEL SISTEMA"
609
-
610
- #: inc/pack.win.system.php:17
611
- #@ wpduplicator
612
- msgid "File Permissions"
613
- msgstr "Permisos de fichero"
614
-
615
- #: inc/pack.win.system.php:20
616
- #@ wpduplicator
617
- msgid "Required permissions"
618
- msgstr "Permisos requeridos"
619
-
620
- #: inc/pack.win.system.php:35
621
- #@ wpduplicator
622
- msgid "The above paths should have permissions of 755 for directories and 644 for files. On some hosts the permission set requires 777. Setting items to 777 is a security issue and should only be set temporarily. Please avoid any hosting company that requires this kind of setup. See the 'Duplicator Approved' link at the bottom of this dialog for a list of approved hosting providers."
623
- msgstr "Las rutas de arriba deben tener permisos 755 de directorios, y 644 de ficheros. En algunos hosts se requiere 777. Colocar el 777 puede generar problemas de seguridad y debe ser temporal. Por favor, evite el hosting con este nivel 777. Mire el enlace de servidor aprobado en el final de este texto."
624
-
625
- #: inc/pack.win.system.php:38
626
- #@ wpduplicator
627
- msgid "Also be sure to check the Owner/Group settings and validate they are correct and match other successful directories/files that are accessible. For more details contact your host or visit their help pages for more information on how they implement permissions and group settings."
628
- msgstr "También asegurese de revisar la configuració nde Grupo/Propietario y validar que sean correctas y que se ajustan a otros dirs/ficheros que sean accesibles. Para más detalles contacte a su hosting o visite sus páginas de ayuda para implementar permisos y configs de grupo."
629
-
630
- #: inc/pack.win.system.php:45
631
  #@ wpduplicator
632
  msgid "Reserved Files"
633
  msgstr "Ficheros reservados"
634
 
635
- #: inc/pack.win.system.php:54
636
  #@ wpduplicator
637
  msgid "Zip Archive Enabled"
638
  msgstr "Permitido archivo en Zip"
639
 
640
- #: inc/pack.win.system.php:57
641
  #@ wpduplicator
642
  msgid "The ZipArchive extension for PHP is required for compression. Please contact your hosting provider if you're on a hosted server. For additional information see our online documentation."
643
  msgstr "La extensión del Archivo Zip para PHP está requerido para compresión. Por favor, contacte con su proveedor de hosting. Para más info mirar nuestra documentación online."
644
 
645
- #: inc/pack.win.system.php:62
646
  #@ wpduplicator
647
  msgid "Safe Mode Off"
648
  msgstr "Modo Seguro Off (Safe Mode)"
649
 
650
- #: inc/pack.win.system.php:65
651
- #@ wpduplicator
652
- msgid "Safe Mode needs to be disabled in order for the Duplicator to operate correctly. Please set safe_mode = Off in you php.ini file. If you're on a hosted server and don't have access to the php.ini file then you will need to request this setting be updated. Safe Mode is no longer in future versions of PHP. If your host will not work with you to resolve the issue then consider a higher reputable hosting provider."
653
- msgstr "Modo seguro necesita ser deshabilitado para que el Duplicator funcione perfectamente. Poner safe_mode=Off en su php.ini. Si no tiene acceso a su php.ini, entonces necesitará pedir que se lo habiliten. Safe Mode no está en las ultimas versiones de PHP y es obsoleto."
654
-
655
- #: inc/pack.win.system.php:70
656
  #@ wpduplicator
657
  msgid "MySQL Support"
658
  msgstr "Soporte MySQL"
659
 
660
- #: inc/pack.win.system.php:75
661
- #@ wpduplicator
662
- msgid "The version of MySQL on this server is "
663
- msgstr "La versión de MySQL en este servidor es"
664
-
665
- #: inc/pack.win.system.php:77
666
- #@ wpduplicator
667
- msgid "The Duplicator requires MySQL version 4.1+ or better."
668
- msgstr "El Duplicator requiere MySQL version 4.1+ o superior."
669
-
670
- #: inc/pack.win.system.php:80
671
- #@ wpduplicator
672
- msgid "If the MySQL server version is valid and this requirement fails then the mysqli extension is not installed. If you are on a hosted server please contact your host and request that mysqli extension and MySQL Server 4.1+ be installed. For more info visit: http://php.net/manual/en/mysqli.installation.php"
673
- msgstr "Si la versión de MySQL es correcta, debe instalar la extesión mysqli. Requiera que se le instale. http://php.net/manual/en/mysqli.installation.php"
674
-
675
- #: inc/pack.win.system.php:85
676
  #@ wpduplicator
677
  msgid "PHP Support"
678
  msgstr "Soporte PHP"
679
 
680
- #: inc/pack.win.system.php:89
681
- #@ wpduplicator
682
- msgid "The version of PHP on this server is "
683
- msgstr "La versión de PHP en este servidor es"
684
-
685
- #: inc/pack.win.system.php:108
686
- #@ wpduplicator
687
- msgid "SYSTEM CHECKS"
688
- msgstr "CHEQUEO DEL SISTEMA"
689
-
690
- #: inc/pack.win.system.php:113
691
- #: inc/pack.win.system.php:116
692
- #: inc/pack.win.system.php:119
693
- #: inc/pack.win.system.php:122
694
- #: inc/pack.win.system.php:125
695
- #: inc/pack.win.system.php:128
696
- #: inc/settings.php:118
697
  #@ wpduplicator
698
  msgid "Web Server"
699
  msgstr "Servidor Web"
700
 
701
- #: inc/pack.win.system.php:114
702
- #: inc/pack.win.system.php:138
703
- #@ wpduplicator
704
- msgid "Good"
705
- msgstr "Bueno"
706
-
707
- #: inc/pack.win.system.php:117
708
- #: inc/pack.win.system.php:120
709
- #: inc/pack.win.system.php:123
710
- #: inc/pack.win.system.php:126
711
- #@ wpduplicator
712
- msgid "OK"
713
- msgstr "OK"
714
-
715
- #: inc/pack.win.system.php:128
716
- #@ wpduplicator
717
- msgid "Not detected"
718
- msgstr "No detectado"
719
-
720
- #: inc/pack.win.system.php:129
721
- #: inc/pack.win.system.php:141
722
- #@ wpduplicator
723
- msgid "Fail"
724
- msgstr "Fallo"
725
-
726
- #: inc/pack.win.system.php:137
727
- #: inc/pack.win.system.php:140
728
  #@ wpduplicator
729
  msgid "Open Base Dir"
730
  msgstr "Dir Open Base"
731
 
732
- #: inc/pack.win.system.php:137
733
- #: inc/settings.php:181
734
  #@ wpduplicator
735
  msgid "Off"
736
  msgstr "Off"
737
 
738
- #: inc/pack.win.system.php:140
739
- #: inc/settings.php:181
740
  #@ wpduplicator
741
  msgid "On"
742
  msgstr "On"
743
 
744
- #: inc/pack.win.system.php:151
745
- #@ wpduplicator
746
- msgid "Scan Now"
747
- msgstr "Escanear ahora"
748
-
749
- #: inc/pack.win.system.php:160
750
- #@ wpduplicator
751
- msgid "Cache Directory Found"
752
- msgstr "Encontrado Cache de directorio"
753
-
754
- #: inc/pack.win.system.php:161
755
- #@ wpduplicator
756
- msgid "Add to exclusion path now"
757
- msgstr "Añadir ruta de exclusión ahora"
758
-
759
- #: inc/pack.win.system.php:163
760
- #@ wpduplicator
761
- msgid "Directory excluded"
762
- msgstr "Directorio excluido"
763
-
764
- #: inc/pack.win.system.php:164
765
- #@ wpduplicator
766
- msgid "Path"
767
- msgstr "Ruta"
768
-
769
- #: inc/pack.win.system.php:166
770
- #@ wpduplicator
771
- msgid "Cache Directory Not Found"
772
- msgstr "Directorio de Cache no encontrado"
773
-
774
- #: inc/pack.win.system.php:172
775
- #@ wpduplicator
776
- msgid "ONLINE RESOURCES"
777
- msgstr "RECURSOS ONLINE"
778
-
779
- #: inc/pack.win.system.php:177
780
  #@ wpduplicator
781
  msgid "For additional online help please visit"
782
  msgstr "Para ayuda online, por favor visite"
783
 
784
- #: inc/pack.win.system.php:183
785
  #@ wpduplicator
786
  msgid "Need a hosting provider that is"
787
  msgstr "Necesita un proveeder de hosting que"
788
 
789
- #: inc/pack.win.system.php:185
790
- #@ wpduplicator
791
- msgid "Duplicator Approved"
792
- msgstr "cumpla los requerimientos y aprobado"
793
-
794
- #: inc/pack.win.links.php:3
795
  #@ wpduplicator
796
  msgid "Download Links"
797
  msgstr "Enlaces de bajada"
798
 
799
- #: inc/pack.win.links.php:6
800
  #@ wpduplicator
801
  msgid "The following links contain sensitive data. Please share with caution!"
802
  msgstr "Los siguiente enlaces tienen datos sensibles. Compartir con precaución."
803
 
804
- #: inc/pack.win.links.php:12
805
  #@ wpduplicator
806
  msgid "The database SQL script is a quick link to your database backup script. An exact copy is also stored in the package."
807
  msgstr "El script SQL es un enlace rápido del backup de la base de datos. Otra copia exacta está guarda tambien dentro el duplicado"
808
 
809
- #: inc/pack.win.options.php:23
810
- #@ wpduplicator
811
- msgid "WP-admin email is included. Add extra emails semicolon separated."
812
- msgstr "El mail del Wp-Admin está incluido. Añada emails adicionales separados por punto y coma."
813
-
814
- #: inc/pack.win.options.php:35
815
  #@ wpduplicator
816
  msgid "root path"
817
  msgstr "ruta raíz"
818
 
819
- #: inc/pack.win.options.php:36
820
  #@ wpduplicator
821
  msgid "wp-uploads"
822
  msgstr "carpeta de subidos (wp-uploads)"
823
 
824
- #: inc/pack.win.options.php:37
825
- #: inc/pack.win.options.php:44
826
  #@ wpduplicator
827
  msgid "(clear)"
828
  msgstr "(limpiar)"
829
 
830
- #: inc/pack.win.options.php:42
831
  #@ wpduplicator
832
  msgid "media"
833
  msgstr "video-multimedia"
834
 
835
- #: inc/pack.win.options.php:43
836
  #@ wpduplicator
837
  msgid "archive"
838
  msgstr "comprimidos"
839
 
840
- #: duplicator.php:277
841
- #: inc/pack.main.php:39
842
- #: inc/pack.main.php:246
 
843
  #@ wpduplicator
844
  msgid "Packages"
845
  msgstr "Paquetes"
846
 
847
- #: duplicator.php:279
848
- #: inc/settings.php:43
849
  #@ wpduplicator
850
  msgid "Settings"
851
  msgstr "Opciones"
852
 
853
- #: inc/pack.main.php:47
854
  #@ wpduplicator
855
  msgid "Bulk Actions"
856
  msgstr "Acciones en Bloque"
857
 
858
- #: inc/pack.main.php:48
859
  #@ wpduplicator
860
  msgid "Delete"
861
  msgstr "Borrar"
862
 
863
- #: inc/pack.main.php:50
864
  #@ wpduplicator
865
  msgid "Apply"
866
  msgstr "Aplicar"
867
 
868
- #: inc/pack.main.php:90
 
869
  #@ wpduplicator
870
  msgid "Details"
871
  msgstr "Detalles"
872
 
873
- #: inc/pack.main.php:218
874
- #@ wpduplicator
875
- msgid "To create a new package click the create button "
876
- msgstr "Para crear un paquete nuevo cliquee el botón crear"
877
-
878
- #: inc/pack.main.php:222
879
- #@ wpduplicator
880
- msgid "with the Duplicator"
881
- msgstr "con el Duplicator"
882
-
883
- #: inc/pack.main.php:401
884
  #@ wpduplicator
885
  msgid "Please select an action from the bulk action drop down menu to perform a specific action."
886
  msgstr "Por favor seleccione una acción en bloque del menú para ejecutarla"
887
 
888
- #: inc/pack.win.create.php:21
889
- #@ wpduplicator
890
- msgid "Pre-Zip Size"
891
- msgstr "Tamaño antes de comprimir"
892
-
893
- #: inc/pack.win.create.php:23
894
- #@ wpduplicator
895
- msgid "Check Application Size"
896
- msgstr "Chequear Tamaño de la Aplicación"
897
-
898
- #: inc/pack.win.create.php:33
899
- #@ wpduplicator
900
- msgid "Pre-Zip provides the size of your application and will exclude items in the"
901
- msgstr "Pre-Zip proporciona el tamaño de su aplicación y ejecutará elementos en el "
902
-
903
- #: inc/pack.win.create.php:34
904
- #@ wpduplicator
905
- msgid "directory filter"
906
- msgstr "filtro de directorio"
907
-
908
- #: inc/pack.win.create.php:37
909
- #@ wpduplicator
910
- msgid "Please note that some hosts will kill any process after 45-60 seconds."
911
- msgstr "Por favor, tenga en cuenta que algunos hosts paran los procesos despues de 45-50 segundos"
912
-
913
- #: inc/pack.win.create.php:38
914
- #@ wpduplicator
915
- msgid "If your hosting provider performs this practice ask them how to extend the PHP timeout. For more details see the"
916
- msgstr "Si su proveedor de Hosting le limita, pida que le incrementen el tiempo de ejecución PHP. Para más detalles ver"
917
-
918
- #: inc/pack.win.create.php:62
919
- #@ wpduplicator
920
- msgid "Alpanumeric characters only on package name."
921
- msgstr "Solo carácteres alfanuméricos en el nombre de paquete"
922
-
923
- #: inc/pack.win.options.php:4
924
- #@ wpduplicator
925
- msgid "Package Options"
926
- msgstr "Opciones de Paquete"
927
-
928
- #: inc/pack.win.system.php:48
929
  #@ wpduplicator
930
  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."
931
  msgstr "Un fichero/s reservado/s está en el directorio raíz de Wordpress. Ficheros reservados: installer.php, installer-data.sql and installer-log.txt. Para guardar sus datos correctamente, por favor elimine estos ficheros del Worpress. Intente la creación del paquete de nuevo."
932
 
933
- #: inc/pack.win.system.php:49
934
  #@ wpduplicator
935
  msgid "Remove Files Now"
936
  msgstr "Eliminar Fichers Ahora"
937
 
938
- #: inc/pack.win.system.php:91
939
- #@ wpduplicator
940
- msgid "The Duplicator requires PHP version 5.2.17+ or higher. Please contact your host and have them upgrade to this stable secure version."
941
- msgstr "Duplicator necesita PHP version 5.2.17+ o superior. Por favor contacte con su host y actualice la versión del PHP."
942
-
943
- #: inc/pack.win.system.php:94
944
- #@ wpduplicator
945
- msgid "Requried PHP functions"
946
- msgstr "Funciones PHP requeridas"
947
-
948
- #: inc/settings.php:12
949
  #@ wpduplicator
950
  msgid "Settings Saved"
951
  msgstr "Opciones Salvadas"
952
 
953
- #: inc/settings.php:15
954
- #: inc/settings.php:16
955
  #@ wpduplicator
956
  msgid "unknow"
957
  msgstr "desconocido"
958
 
959
- #: inc/settings.php:52
960
- #: inc/settings.php:107
961
  #@ wpduplicator
962
  msgid "General"
963
  msgstr "General"
964
 
965
- #: inc/settings.php:66
966
- #@ wpduplicator
967
- msgid "Plugin Settings"
968
- msgstr "Opciones de Plugin"
969
-
970
- #: inc/settings.php:70
971
- #: inc/settings.php:110
972
  #@ wpduplicator
973
  msgid "Duplicator Version"
974
  msgstr "Duplicadora Version"
975
 
976
- #: inc/settings.php:86
977
  #@ wpduplicator
978
  msgid "Save Settings"
979
  msgstr "Guardar Opciones"
980
 
981
- #: inc/settings.php:96
982
  #@ wpduplicator
983
  msgid "Server Settings"
984
  msgstr "Opciones del Servidor"
985
 
986
- #: inc/settings.php:101
987
- #@ wpduplicator
988
- msgid "Setting"
989
- msgstr "Opción"
990
-
991
- #: inc/settings.php:102
992
- #@ wpduplicator
993
- msgid "Value"
994
- msgstr "Valor"
995
-
996
- #: inc/settings.php:114
997
  #@ wpduplicator
998
  msgid "Operating System"
999
  msgstr "Sistema Operativo"
1000
 
1001
- #: inc/settings.php:122
1002
  #@ wpduplicator
1003
  msgid "Root Path"
1004
  msgstr "Ruta raiz"
1005
 
1006
- #: inc/settings.php:146
1007
  #@ wpduplicator
1008
  msgid "Langugage"
1009
  msgstr "Lenguaje"
1010
 
1011
- #: inc/settings.php:150
1012
- #: inc/settings.php:205
1013
  #@ wpduplicator
1014
  msgid "Charset"
1015
  msgstr "Juego de Carácteres"
1016
 
1017
- #: inc/settings.php:154
1018
  #@ wpduplicator
1019
  msgid "Memory Limit "
1020
- msgstr "Limite de Memoria"
1021
-
1022
- #: inc/settings.php:158
1023
- #@ wpduplicator
1024
- msgid "Memory Limit Max"
1025
- msgstr "Max. Límite de Memoria"
1026
 
1027
- #: inc/settings.php:177
1028
  #@ wpduplicator
1029
  msgid "Safe Mode"
1030
  msgstr "Modo Seguro"
1031
 
1032
- #: inc/settings.php:186
1033
  #@ wpduplicator
1034
  msgid "Memory Limit"
1035
  msgstr "Límite de Memoria"
1036
 
1037
- #: inc/settings.php:190
1038
  #@ wpduplicator
1039
  msgid "Memory In Use"
1040
  msgstr "Memoria en Uso"
1041
 
1042
- #: inc/settings.php:194
1043
  #@ wpduplicator
1044
  msgid "Max Execution Time"
1045
  msgstr "Tiempo Máximo de ejecución"
1046
 
1047
- #: inc/settings.php:209
1048
- #@ wpduplicator
1049
- msgid "wait_timeout"
1050
- msgstr ""
1051
-
1052
- #: inc/settings.php:213
1053
- #@ wpduplicator
1054
- msgid "max_allowed_packet"
1055
- msgstr ""
1056
-
1057
- #: inc/settings.php:232
1058
- #@ wpduplicator
1059
- msgid "Show/Hide All PHP Information"
1060
- msgstr "Mostrar/Esconder PHP Info"
1061
-
1062
- #: inc/support.php:21
1063
  #@ wpduplicator
1064
  msgid "Created for Admins, Developers and Designers the Duplicator will streamline your workflows and help you quickly clone a WordPress application. If you run into an issue please read through the"
1065
  msgstr "Creado para Admin, Desarrolladores y Diseñadores, Duplicator facilitará sus flujos de trabajo y ayudará a clonar rápidamente una instalación Wordpress. Si tiene algún problema por favor contacte "
1066
 
1067
- #: inc/support.php:23
1068
- #@ wpduplicator
1069
- msgid "in detail as it will have answers to most of your questions and issues."
1070
- msgstr "en detalle, tendrá respuestas a la mayoría de sus preguntas y problemas."
1071
-
1072
- #: inc/support.php:38
1073
  #@ wpduplicator
1074
  msgid "Need Help?"
1075
  msgstr "¿Necesita Ayuda?"
1076
 
1077
- #: inc/support.php:45
1078
  #@ wpduplicator
1079
  msgid "Knowledgebase"
1080
  msgstr "Base de Conocimientos"
1081
 
1082
- #: inc/support.php:49
1083
- #@ wpduplicator
1084
- msgid "Please review the online documentation for complete usage of the plugin."
1085
- msgstr "Por favor, revise la documentaicón online para un uso avanzado"
1086
-
1087
- #: inc/support.php:51
1088
  #@ wpduplicator
1089
  msgid "Choose A Section"
1090
  msgstr "Elija una sección"
1091
 
1092
- #: inc/support.php:55
1093
  #@ wpduplicator
1094
  msgid "Change Log"
1095
  msgstr "Cambiar Log"
1096
 
1097
- #: inc/support.php:71
1098
- #@ wpduplicator
1099
- msgid "Need a solid hosting provider that will work well with the Duplicator?"
1100
- msgstr "¿Necesita un proveedor de hosting que trabaje con Duplicator?"
1101
-
1102
- #: inc/support.php:73
1103
- #@ wpduplicator
1104
- msgid "Approved Hosting Program"
1105
- msgstr "Programa Aprobado de Hosting"
1106
-
1107
- #: inc/support.php:88
1108
- #@ wpduplicator
1109
- msgid "Online support is available for issues not covered in the knowledgebase."
1110
- msgstr "Soporte online para problemas no cubiertos por la base de conocimientos"
1111
-
1112
- #: inc/support.php:90
1113
- #@ wpduplicator
1114
- msgid "Basic"
1115
- msgstr "Básico"
1116
-
1117
- #: inc/support.php:91
1118
- #@ wpduplicator
1119
- msgid "Premium"
1120
- msgstr "Prima"
1121
-
1122
- #: inc/support.php:94
1123
- #@ wpduplicator
1124
- msgid "Basic: 2-5 business days"
1125
- msgstr "Básico: 2-5 dias laborales"
1126
-
1127
- #: inc/support.php:95
1128
- #@ wpduplicator
1129
- msgid "Premium: 24-48hrs"
1130
- msgstr "Prima: 24-48hrs"
1131
-
1132
- #: inc/support.php:115
1133
  #@ wpduplicator
1134
  msgid "Partner with Us"
1135
  msgstr "Cuente con nosotros"
1136
 
1137
- #: inc/support.php:127
1138
  #@ wpduplicator
1139
  msgid "Keep Active and Online"
1140
  msgstr "Quedarse Activo y Online"
1141
 
1142
- #: inc/support.php:134
1143
  #@ wpduplicator
1144
  msgid "Leave 5 Stars"
1145
  msgstr "Deje 5 estrellas"
1146
 
1147
- #: inc/support.php:140
1148
  #@ wpduplicator
1149
  msgid "Take A Quick 60 Second Survey"
1150
  msgstr "Tome un cursito de 60 segundos"
1151
 
1152
- #: inc/pack.main.php:223
1153
- #@ wpduplicator
1154
- msgid "Creating a package may take several minutes"
1155
- msgstr "Crear un paquete puede tardar varios minutos"
1156
-
1157
- #: inc/support.php:204
1158
- #@ wpduplicator
1159
- msgid "Basic Support"
1160
- msgstr "Soporte básico"
1161
-
1162
- #: inc/support.php:209
1163
- #@ wpduplicator
1164
- msgid "Support Tips"
1165
- msgstr "Consejos de apoyo"
1166
-
1167
- #: inc/support.php:211
1168
- #@ wpduplicator
1169
- msgid "Read all knowledgebase articles before asking a question"
1170
- msgstr "Lea todos los artículos de base de datos antes de hacer una pregunta"
1171
-
1172
- #: inc/support.php:212
1173
- #@ wpduplicator
1174
- msgid "Check the WordPress forums for similar issues"
1175
- msgstr "Compruebe los foros de WordPress para problemas similares"
1176
-
1177
- #: inc/support.php:219
1178
- #@ wpduplicator
1179
- msgid "Continue with Basic Support"
1180
- msgstr "Continuar con el soporte básico"
1181
-
1182
- #: inc/support.php:207
1183
- #@ wpduplicator
1184
- msgid "This is a free courtesy we offer to the WordPress community, but it is clear that some people do abuse the service. Please put time and thought into what you’re asking and do not ask every question that comes to mind without trying to find an answer first. Thank you for being thoughtful of this free service!"
1185
- msgstr "Esta es una cortesía gratuito que ofrecemos a la comunidad de WordPress, pero está claro que algunas personas abusen del servicio. Por favor, ponga el tiempo y el pensamiento en lo que estás pidiendo y no hacer todas las preguntas que se le ocurra, sin tratar de encontrar una primera respuesta. Gracias por estar atento de este servicio gratuito!"
1186
-
1187
- #: inc/support.php:213
1188
- #@ wpduplicator
1189
- msgid "Read the Duplicator log files for clues"
1190
- msgstr "Lea los archivos de registro en busca de pistas duplicadora"
1191
-
1192
- #: inc/support.php:214
1193
- #@ wpduplicator
1194
- msgid "Do a Google search including errors from the log files"
1195
- msgstr "Haga una búsqueda en Google, incluidos los errores de los archivos de registro"
1196
-
1197
- #: inc/support.php:215
1198
- #@ wpduplicator
1199
- msgid "Contact your hosting provider for permission and timeout issues"
1200
- msgstr "Póngase en contacto con su proveedor de alojamiento para el permiso y los problemas de tiempo de espera"
1201
-
1202
- #: inc/pack.win.options.php:62
1203
  #@ default
1204
  msgid "STEP 1 - INPUTS"
1205
  msgstr ""
1206
 
1207
- #: inc/pack.win.options.php:65
1208
  #@ wpduplicator
1209
  msgid "MySQL Server"
1210
  msgstr "Servidor MYSQL"
1211
 
1212
- #: inc/pack.win.options.php:72
 
 
1213
  #@ wpduplicator
1214
  msgid "Database"
1215
  msgstr "base de datos"
1216
 
1217
- #: inc/pack.win.options.php:80
1218
  #@ wpduplicator
1219
  msgid "Advanced Options"
1220
  msgstr "Opciones avanzadas"
1221
 
1222
- #: inc/pack.win.options.php:87
1223
  #@ wpduplicator
1224
  msgid "SSL"
1225
  msgstr ""
1226
 
1227
- #: inc/pack.win.options.php:90
1228
  #@ wpduplicator
1229
  msgid "Enforce on Admin"
1230
  msgstr "Hacer cumplir el Administrador"
1231
 
1232
- #: inc/pack.win.options.php:94
1233
  #@ wpduplicator
1234
  msgid "Enforce on Logins"
1235
  msgstr "Hacer cumplir en Inicios de sesión"
1236
 
1237
- #: inc/pack.win.options.php:98
1238
  #@ wpduplicator
1239
  msgid "Cache"
1240
  msgstr ""
1241
 
1242
- #: inc/pack.win.options.php:101
1243
  #@ wpduplicator
1244
  msgid "Keep Enabled"
1245
  msgstr "Mantenga Activado"
1246
 
1247
- #: inc/pack.win.options.php:105
1248
  #@ wpduplicator
1249
  msgid "Keep Home Path"
1250
  msgstr "Mantenga Portada Camino"
1251
 
1252
- #: inc/pack.win.options.php:113
1253
  #@ default
1254
  msgid "STEP 2 - INPUTS"
1255
  msgstr ""
1256
 
1257
- #: inc/pack.win.options.php:117
1258
  #@ wpduplicator
1259
  msgid "New URL"
1260
  msgstr "Nueva URL"
1261
 
1262
- #: inc/pack.win.options.php:123
1263
- #@ default
1264
  msgid "The installer can have these fields pre-filled at install time."
1265
- msgstr ""
1266
 
1267
- #: inc/pack.win.options.php:123
1268
- #@ default
1269
  msgid "All values are optional."
1270
- msgstr ""
1271
 
1272
- #: inc/settings.php:217
1273
  #@ wpduplicator
1274
  msgid "Server Disk"
1275
  msgstr "Disco del Servidor"
1276
 
1277
- #: inc/settings.php:220
1278
  #@ hyper-cache
1279
  msgid "Free space"
1280
  msgstr ""
1281
 
1282
- #: inc/settings.php:223
1283
  #@ wpduplicator
1284
  msgid "Note: This value is the physical servers hard-drive allocation."
1285
  msgstr "Nota: Este valor es la asignación de servidores físicos en el disco duro."
1286
 
1287
- #: inc/settings.php:224
1288
  #@ wpduplicator
1289
  msgid "On shared hosts check your control panel for the 'TRUE' disk space quota value."
1290
  msgstr "En los servidores compartidos comprobar su panel de control para el valor de la cuota de espacio en disco verdadero."
1291
 
1292
- #: duplicator.php:281
1293
  #@ wpduplicator
1294
  msgid "Cleanup"
1295
  msgstr "Limpieza"
1296
 
1297
- #: installer/log-view.php:127
1298
- #@ default
1299
- msgid "log:"
1300
- msgstr ""
1301
-
1302
- #: installer/log-view.php:133
1303
- #@ default
1304
- msgid "Last"
1305
- msgstr ""
1306
-
1307
- #: installer/log-view.php:133
1308
- #@ default
1309
- msgid "logs"
1310
- msgstr ""
1311
-
1312
- #: inc/cleanup.php:16
1313
- #: inc/cleanup.php:24
1314
- #@ wpduplicator
1315
- msgid "Installer Cleanup"
1316
- msgstr "Limpieza Ficheros Instalador"
1317
-
1318
- #: inc/cleanup.php:58
1319
  #@ wpduplicator
1320
  msgid "If the installer files did not successfully get removed, then you WILL need to remove them manually"
1321
  msgstr "Si los ficheros de instalación no se eliminan correctamente, entonces TENDRÁ que eliminarlos manualmente."
1322
 
1323
- #: inc/cleanup.php:59
1324
  #@ wpduplicator
1325
  msgid "Please remove all installer files to avoid leaving open security issues on your server"
1326
  msgstr "Por favor elimine todos los ficheros del instalador para evitar errores en la seguridad de su sistema"
1327
 
1328
- #: inc/pack.main.php:66
1329
- #@ wpduplicator
1330
- msgid "We hope you are enjoying the Duplicator! Would you consider helping in the continued development of the plugin"
1331
- msgstr "Deseamos que se divierta con the Duplicator! Considere respondernos y ayudarnos a continuar el desarrollo"
1332
-
1333
- #: inc/pack.main.php:67
1334
- #@ wpduplicator
1335
- msgid "Donate"
1336
- msgstr "Donar"
1337
-
1338
- #: inc/pack.main.php:68
1339
- #@ wpduplicator
1340
- msgid "Rate It"
1341
- msgstr "Calificar"
1342
-
1343
- #: inc/pack.main.php:69
1344
- #@ wpduplicator
1345
- msgid "Share It"
1346
- msgstr "Compartir"
1347
-
1348
- #: inc/pack.main.php:70
1349
- #@ wpduplicator
1350
- msgid "Not Now"
1351
- msgstr "Ahora no"
1352
-
1353
- #: inc/pack.main.php:115
1354
- #@ wpduplicator
1355
- msgid "No notes were given for this package"
1356
- msgstr "No hay notas para esta copia"
1357
-
1358
- #: inc/pack.main.php:148
1359
- #: inc/pack.win.create.php:16
1360
  #@ wpduplicator
1361
  msgid "Notes"
1362
  msgstr "Notas"
1363
 
1364
- #: inc/pack.main.php:149
1365
  #@ wpduplicator
1366
  msgid "SQL File"
1367
  msgstr "Fichero SQL"
1368
 
1369
- #: inc/pack.main.php:150
1370
- #@ wpduplicator
1371
- msgid "Show Links"
1372
- msgstr "Enseñe enlaces"
1373
-
1374
- #: inc/pack.main.php:151
1375
- #: inc/pack.main.php:179
1376
  #@ wpduplicator
1377
  msgid "View Log"
1378
  msgstr "Ver Log"
1379
 
1380
- #: inc/pack.main.php:165
1381
  #@ wpduplicator
1382
  msgid "View Error Details"
1383
  msgstr "Ver detalles de error"
1384
 
1385
- #: inc/pack.main.php:176
1386
  #@ wpduplicator
1387
  msgid "This package has encountered errors. Click 'View Log' for more details. For additional support see the "
1388
  msgstr "Esta copia contiene errores. Cliquee \\\"Ver Log\\\" para más detalles. Más soporte en "
1389
 
1390
- #: inc/pack.main.php:177
1391
  #@ wpduplicator
1392
  msgid "online knowledgebase"
1393
  msgstr "Base de conocimientos online"
1394
 
1395
- #: inc/pack.main.php:195
1396
  #@ wpduplicator
1397
  msgid "Not Supported"
1398
  msgstr "No soportado"
1399
 
1400
- #: inc/pack.main.php:226
1401
  #@ wpduplicator
1402
  msgid "Please visit the"
1403
  msgstr "Por favor visite"
1404
 
1405
- #: inc/pack.main.php:227
1406
  #@ wpduplicator
1407
  msgid "support page"
1408
  msgstr "página de soporte"
1409
 
1410
- #: inc/pack.main.php:228
1411
  #@ wpduplicator
1412
  msgid "for additional help topics"
1413
  msgstr "para temas de ayuda adicional"
1414
 
1415
- #: inc/pack.main.php:247
 
 
1416
  #@ wpduplicator
1417
  msgid "Total Size"
1418
  msgstr "Tamaño total"
1419
 
1420
- #: inc/pack.main.php:364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1421
  #@ wpduplicator
1422
- msgid "Also check-out the support link for additional ways to help."
1423
- msgstr "También chequee el enlace de soporte para maneras adicionales de ayudar."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1424
 
1425
- #: inc/pack.main.php:365
 
1426
  #@ wpduplicator
1427
- msgid "This message will disappear after refreshing the page."
1428
- msgstr "Este mensaje desaparecerá después de refrescar la página"
1429
 
1430
- #: inc/pack.main.php:373
1431
  #@ wpduplicator
1432
- msgid "Thanks for donating to the Duplicator! Your contribution really does make a difference!"
1433
- msgstr "¡Gracias por donar a the Duplicator! ¡Su contribución marca la diferencia!"
1434
 
1435
- #: inc/pack.main.php:378
1436
  #@ wpduplicator
1437
- msgid "Thanks for giving a 5 star rating! A huge amount of time and effort has gone into creating this plugin."
1438
- msgstr "¡Gracias por darnos 5 estrellas! Una cantidad ingente de tiempo y esfuerzo ha ido en crear este plugin."
1439
 
1440
- #: inc/pack.main.php:383
1441
  #@ wpduplicator
1442
- msgid "Thanks for sharing the Duplicator and spreading the word! We have definitly enjoyed helping this awesome community!"
1443
- msgstr "¡Gracias por compartir the Duplicator y correr la voz! ¡Hemos conseguido ayudar a esta comunidad!"
1444
 
1445
- #: inc/pack.win.create.php:3
 
 
 
1446
  #@ wpduplicator
1447
- msgid "Create New Package"
1448
- msgstr "Crear nuevo paquete-copia"
1449
 
1450
- #: inc/pack.win.create.php:12
 
1451
  #@ wpduplicator
1452
- msgid "Name"
1453
- msgstr "Nombre"
1454
 
1455
- #: inc/pack.win.create.php:17
1456
  #@ wpduplicator
1457
- msgid "Purpose of this package"
1458
- msgstr "Proposito de esta copia"
1459
 
1460
- #: inc/pack.win.links.php:31
1461
  #@ wpduplicator
1462
- msgid "LOG"
1463
- msgstr "LOG"
1464
 
1465
- #: inc/pack.win.options.php:22
1466
  #@ wpduplicator
1467
- msgid "Email a notice when completed"
1468
- msgstr "Email un aviso cuando se complete"
1469
 
1470
- #: inc/pack.win.options.php:48
1471
  #@ wpduplicator
1472
- msgid "This will exclude all directories and extensions from the package file. This will slow down package creation times."
1473
- msgstr "Esto va a excluir todos los directorios y extensiones del fichero de copia. Bajará la duración de la copia."
1474
 
1475
- #: inc/pack.win.system.php:155
1476
  #@ wpduplicator
1477
- msgid "Cached Data"
1478
- msgstr "Data en cache"
1479
 
1480
- #: inc/settings.php:126
1481
  #@ wpduplicator
1482
- msgid "Plugins Path"
1483
- msgstr "Ruta de Plugins"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1484
 
1485
- #: inc/settings.php:130
1486
  #@ wpduplicator
1487
- msgid "Packages Built"
1488
- msgstr "Copias construidas"
1489
 
1490
- #: inc/settings.php:134
1491
  #@ wpduplicator
1492
- msgid "The number of successful packages created."
1493
- msgstr "Número de copias creadas correctamente."
1494
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Duplicator v0.5.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-01-27 22:30:29+0000\n"
7
  "Last-Translator: basicos <emiliodefez@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: duplicator.php:97
24
  #@ wpduplicator
25
  msgid "FAQ"
26
  msgstr "FAQ"
27
 
28
+ #: duplicator.php:98
29
  #@ wpduplicator
30
  msgid "Partner"
31
  msgstr "Partner"
32
 
33
+ #: duplicator.php:99
34
  #@ wpduplicator
35
  msgid "Approved Hosts"
36
  msgstr "Hosts aprobados"
37
 
38
+ #: views/packages/new2.base.php:86
39
+ #: views/settings/controller.php:22
40
  #@ wpduplicator
41
  msgid "Diagnostics"
42
  msgstr "Diagnósticos"
43
 
44
+ #: duplicator.php:162
45
+ #: views/packages/new3.base.php:131
46
+ #: views/support.php:47
47
  #@ wpduplicator
48
  msgid "Support"
49
  msgstr "Ayuda y soporte"
50
 
51
+ #: duplicator.php:205
52
  #@ wpduplicator
53
  msgid "Manage"
54
  msgstr "Manejar"
55
 
56
+ #: views/tools/logging.php:140
57
  #@ wpduplicator
58
  msgid "Log file not found or unreadable"
59
  msgstr "Fichero log no se encuentra"
60
 
61
+ #: views/tools/logging.php:143
 
 
 
 
 
62
  #@ wpduplicator
63
  msgid "If no log file is present the try to create a package"
64
  msgstr "Si no hay fichero log, intente crear un duplicado"
65
 
66
+ #: views/tools/logging.php:145
67
  #@ wpduplicator
68
  msgid "Reasons for log file not showing"
69
  msgstr "Razones porque el fichero log no se ve"
70
 
71
+ #: views/tools/logging.php:146
72
  #@ wpduplicator
73
  msgid "The web server does not support returning .log file extentions"
74
  msgstr "El servidor web no soporta extensiones .log"
75
 
76
+ #: views/tools/logging.php:147
77
  #@ wpduplicator
78
  msgid "The snapshots directory does not have the correct permissions to write files. Try setting the permissions to 755"
79
  msgstr "El directorio de duplicados no tiene los permisos corretos para escribir ficheros. Intente poner los permisos en 755"
80
 
81
+ #: views/tools/logging.php:148
82
  #@ wpduplicator
83
  msgid "The process that PHP runs under does not have enough permissions to create files. Please contact your hosting provider for more details"
84
  msgstr "El proceso que corre con PHP no tiene suficientes permisos. Por favor contacte su proveedor para más detalles"
85
 
86
+ #: views/tools/logging.php:169
 
 
 
 
 
 
 
 
 
 
87
  #@ wpduplicator
88
  msgid "Auto Refresh"
89
  msgstr "Refrescar automatico"
90
 
91
+ #: views/tools/logging.php:164
92
  #@ wpduplicator
93
  msgid "Refresh"
94
  msgstr "Refrescar"
95
 
96
+ #: views/packages/list.base.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  #@ wpduplicator
98
  msgid "Please select at least one package to delete."
99
  msgstr "Por favor, seleccione al menos un duplicado para borrar"
100
 
101
+ #: views/packages/list.base.php:292
102
  #@ wpduplicator
103
  msgid "Are you sure, you want to delete the selected package(s)?"
104
  msgstr "Esta seguro de que quiere borrar lo/s duplicado/s seleccionados"
105
 
106
+ #: views/packages/new1.inc-b.form.php:35
107
+ #: views/packages/new2.base.php:162
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  #@ wpduplicator
109
  msgid "Files"
110
  msgstr "Ficheros"
111
 
112
+ #: views/packages/list.base.php:329
 
 
 
 
 
 
 
 
 
 
113
  #@ wpduplicator
114
  msgid "DATABASE"
115
  msgstr "BASE DE DATOS"
116
 
117
+ #: views/packages/list.base.php:330
118
  #@ wpduplicator
119
  msgid "PACKAGE"
120
  msgstr "DUPLICADO"
121
 
122
+ #: views/packages/list.base.php:331
123
  #@ wpduplicator
124
  msgid "INSTALLER"
125
  msgstr "INSTALADOR"
126
 
127
+ #: views/inc.header.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  #@ wpduplicator
129
  msgid "By"
130
  msgstr "Por"
131
 
132
+ #: views/support.php:56
133
  #@ wpduplicator
134
  msgid "knowledgebase"
135
  msgstr "Página de Ayuda y Documentación"
136
 
137
+ #: views/support.php:138
138
  #@ wpduplicator
139
  msgid "Support Duplicator"
140
  msgstr "Soporte Duplicator"
141
 
142
+ #: views/support.php:182
143
  #@ wpduplicator
144
  msgid "Spread the Word"
145
  msgstr "Corra la voz"
146
 
147
+ #: views/support.php:188
148
  #@ wpduplicator
149
  msgid "Duplicate Your WordPress"
150
  msgstr "Duplicar su WordPress"
151
 
152
+ #: views/support.php:189
153
  #@ wpduplicator
154
  msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
155
  msgstr "Duplicación rápida de WordPress por LifeInTheGrid.com"
156
 
157
+ #: views/packages/list.base.php:63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  #@ wpduplicator
159
  msgid "Delete selected package(s)"
160
  msgstr "Borrar duplicados seleccionados"
161
 
162
+ #: views/tools/logging.php:157
163
+ #: views/tools/logging.php:162
164
  #@ wpduplicator
165
  msgid "Options"
166
  msgstr "Opciones"
167
 
168
+ #: views/packages/list.base.php:82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  #@ wpduplicator
170
  msgid "Select all packages"
171
  msgstr "Seleccione todos los duplicados"
172
 
173
+ #: views/packages/list.base.php:84
174
  #@ wpduplicator
175
  msgid "Created"
176
  msgstr "Creado"
177
 
178
+ #: views/packages/list.base.php:85
179
+ #: views/packages/new2.base.php:181
180
+ #: views/packages/new2.base.php:254
181
  #@ wpduplicator
182
  msgid "Size"
183
  msgstr "Tamaño"
184
 
185
+ #: views/packages/list.base.php:136
186
+ #: views/packages/list.base.php:180
 
 
 
 
 
 
 
 
 
 
 
187
  #@ wpduplicator
188
  msgid "View"
189
  msgstr "Ver"
190
 
191
+ #: views/packages/list.base.php:141
192
+ #: views/packages/new1.inc-b.form.php:127
193
+ #: views/packages/new3.base.php:74
194
  #@ wpduplicator
195
  msgid "Installer"
196
  msgstr "Instalador"
197
 
198
+ #: views/packages/list.base.php:88
199
+ #: views/packages/new1.inc-b.form.php:5
200
+ #: views/settings/general.php:79
201
  #@ wpduplicator
202
  msgid "Package"
203
  msgstr "Duplicado"
204
 
205
+ #: views/packages/list.base.php:149
206
+ #: views/packages/list.base.php:193
207
+ #: views/settings/diagnostics.php:122
208
+ #: views/settings/diagnostics.php:141
209
+ #: views/settings/diagnostics.php:181
210
  #@ wpduplicator
211
  msgid "Version"
212
  msgstr "Version"
213
 
214
+ #: views/support.php:86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  #@ wpduplicator
216
  msgid "Quick Start"
217
  msgstr "Comienzo rápido"
218
 
219
+ #: views/support.php:87
220
  #@ wpduplicator
221
  msgid "User Guide"
222
  msgstr "Guia de usuario"
223
 
224
+ #: views/support.php:88
225
  #@ wpduplicator
226
  msgid "FAQs"
227
  msgstr "FAQs"
228
 
229
+ #: views/support.php:90
230
  #@ wpduplicator
231
  msgid "Product Page"
232
  msgstr "Página de producto"
233
 
234
+ #: views/support.php:101
235
  #@ wpduplicator
236
  msgid "Approved Hosting"
237
  msgstr "Hosting aprobado"
238
 
239
+ #: views/support.php:119
240
  #@ wpduplicator
241
  msgid "Online Support"
242
  msgstr "Soporte Online Profesional"
243
 
244
+ #: views/packages/new1.inc-b.form.php:55
 
 
 
 
 
 
 
 
 
 
245
  #@ wpduplicator
246
  msgid "Directories"
247
  msgstr "Directorios"
248
 
249
+ #: views/packages/new1.inc-b.form.php:62
250
  #@ wpduplicator
251
  msgid "File extensions"
252
  msgstr "Extensiones de fichero"
253
 
254
+ #: views/packages/new1.inc-b.form.php:55
255
+ #: views/packages/new1.inc-b.form.php:62
256
  #@ wpduplicator
257
  msgid "Separate all filters by semicolon"
258
  msgstr "Separar todos los filtros por punto y coma."
259
 
260
+ #: views/packages/new1.inc-b.form.php:138
 
 
 
 
 
261
  #@ wpduplicator
262
  msgid "Host"
263
  msgstr "Host"
264
 
265
+ #: views/packages/list.base.php:150
266
+ #: views/packages/list.base.php:194
267
+ #: views/packages/new1.inc-b.form.php:146
268
+ #: views/settings/diagnostics.php:149
269
  #@ wpduplicator
270
  msgid "User"
271
  msgstr "Usuario"
272
 
273
+ #: views/settings/general.php:64
274
  #@ wpduplicator
275
  msgid "Uninstall Options"
276
  msgstr "Opciones de desinstalación"
277
 
278
+ #: views/settings/general.php:71
 
 
 
 
 
279
  #@ wpduplicator
280
  msgid "Snapshot Directory"
281
  msgstr "Directorio de Duplicados"
282
 
283
+ #: views/packages/new1.inc-a.reqs.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  #@ wpduplicator
285
  msgid "Reserved Files"
286
  msgstr "Ficheros reservados"
287
 
288
+ #: views/packages/new1.inc-a.reqs.php:59
289
  #@ wpduplicator
290
  msgid "Zip Archive Enabled"
291
  msgstr "Permitido archivo en Zip"
292
 
293
+ #: views/packages/new1.inc-a.reqs.php:62
294
  #@ wpduplicator
295
  msgid "The ZipArchive extension for PHP is required for compression. Please contact your hosting provider if you're on a hosted server. For additional information see our online documentation."
296
  msgstr "La extensión del Archivo Zip para PHP está requerido para compresión. Por favor, contacte con su proveedor de hosting. Para más info mirar nuestra documentación online."
297
 
298
+ #: views/packages/new1.inc-a.reqs.php:70
299
  #@ wpduplicator
300
  msgid "Safe Mode Off"
301
  msgstr "Modo Seguro Off (Safe Mode)"
302
 
303
+ #: views/packages/new1.inc-a.reqs.php:86
 
 
 
 
 
304
  #@ wpduplicator
305
  msgid "MySQL Support"
306
  msgstr "Soporte MySQL"
307
 
308
+ #: views/packages/new1.inc-a.reqs.php:104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  #@ wpduplicator
310
  msgid "PHP Support"
311
  msgstr "Soporte PHP"
312
 
313
+ #: views/packages/new1.inc-a.reqs.php:126
314
+ #: views/packages/new1.inc-a.reqs.php:133
315
+ #: views/settings/diagnostics.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  #@ wpduplicator
317
  msgid "Web Server"
318
  msgstr "Servidor Web"
319
 
320
+ #: views/packages/new2.base.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  #@ wpduplicator
322
  msgid "Open Base Dir"
323
  msgstr "Dir Open Base"
324
 
325
+ #: views/settings/diagnostics.php:157
 
326
  #@ wpduplicator
327
  msgid "Off"
328
  msgstr "Off"
329
 
330
+ #: views/settings/diagnostics.php:157
 
331
  #@ wpduplicator
332
  msgid "On"
333
  msgstr "On"
334
 
335
+ #: views/packages/new1.inc-a.reqs.php:146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  #@ wpduplicator
337
  msgid "For additional online help please visit"
338
  msgstr "Para ayuda online, por favor visite"
339
 
340
+ #: views/packages/new1.inc-a.reqs.php:149
341
  #@ wpduplicator
342
  msgid "Need a hosting provider that is"
343
  msgstr "Necesita un proveeder de hosting que"
344
 
345
+ #: views/packages/list.base.php:248
 
 
 
 
 
346
  #@ wpduplicator
347
  msgid "Download Links"
348
  msgstr "Enlaces de bajada"
349
 
350
+ #: views/packages/list.base.php:251
351
  #@ wpduplicator
352
  msgid "The following links contain sensitive data. Please share with caution!"
353
  msgstr "Los siguiente enlaces tienen datos sensibles. Compartir con precaución."
354
 
355
+ #: views/packages/list.base.php:257
356
  #@ wpduplicator
357
  msgid "The database SQL script is a quick link to your database backup script. An exact copy is also stored in the package."
358
  msgstr "El script SQL es un enlace rápido del backup de la base de datos. Otra copia exacta está guarda tambien dentro el duplicado"
359
 
360
+ #: views/packages/new1.inc-b.form.php:57
 
 
 
 
 
361
  #@ wpduplicator
362
  msgid "root path"
363
  msgstr "ruta raíz"
364
 
365
+ #: views/packages/new1.inc-b.form.php:58
366
  #@ wpduplicator
367
  msgid "wp-uploads"
368
  msgstr "carpeta de subidos (wp-uploads)"
369
 
370
+ #: views/packages/new1.inc-b.form.php:59
371
+ #: views/packages/new1.inc-b.form.php:66
372
  #@ wpduplicator
373
  msgid "(clear)"
374
  msgstr "(limpiar)"
375
 
376
+ #: views/packages/new1.inc-b.form.php:64
377
  #@ wpduplicator
378
  msgid "media"
379
  msgstr "video-multimedia"
380
 
381
+ #: views/packages/new1.inc-b.form.php:65
382
  #@ wpduplicator
383
  msgid "archive"
384
  msgstr "comprimidos"
385
 
386
+ #: duplicator.php:159
387
+ #: views/packages/controller.php:73
388
+ #: views/packages/controller.php:76
389
+ #: views/packages/list.base.php:228
390
  #@ wpduplicator
391
  msgid "Packages"
392
  msgstr "Paquetes"
393
 
394
+ #: duplicator.php:160
395
+ #: views/settings/controller.php:18
396
  #@ wpduplicator
397
  msgid "Settings"
398
  msgstr "Opciones"
399
 
400
+ #: views/packages/list.base.php:62
401
  #@ wpduplicator
402
  msgid "Bulk Actions"
403
  msgstr "Acciones en Bloque"
404
 
405
+ #: views/packages/list.base.php:63
406
  #@ wpduplicator
407
  msgid "Delete"
408
  msgstr "Borrar"
409
 
410
+ #: views/packages/list.base.php:65
411
  #@ wpduplicator
412
  msgid "Apply"
413
  msgstr "Aplicar"
414
 
415
+ #: views/packages/list.base.php:83
416
+ #: views/packages/new3.base.php:102
417
  #@ wpduplicator
418
  msgid "Details"
419
  msgstr "Detalles"
420
 
421
+ #: views/packages/list.base.php:280
 
 
 
 
 
 
 
 
 
 
422
  #@ wpduplicator
423
  msgid "Please select an action from the bulk action drop down menu to perform a specific action."
424
  msgstr "Por favor seleccione una acción en bloque del menú para ejecutarla"
425
 
426
+ #: views/packages/new1.inc-a.reqs.php:49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  #@ wpduplicator
428
  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."
429
  msgstr "Un fichero/s reservado/s está en el directorio raíz de Wordpress. Ficheros reservados: installer.php, installer-data.sql and installer-log.txt. Para guardar sus datos correctamente, por favor elimine estos ficheros del Worpress. Intente la creación del paquete de nuevo."
430
 
431
+ #: views/packages/new1.inc-a.reqs.php:50
432
  #@ wpduplicator
433
  msgid "Remove Files Now"
434
  msgstr "Eliminar Fichers Ahora"
435
 
436
+ #: views/settings/general.php:6
 
 
 
 
 
 
 
 
 
 
437
  #@ wpduplicator
438
  msgid "Settings Saved"
439
  msgstr "Opciones Salvadas"
440
 
441
+ #: views/settings/diagnostics.php:18
442
+ #: views/settings/diagnostics.php:19
443
  #@ wpduplicator
444
  msgid "unknow"
445
  msgstr "desconocido"
446
 
447
+ #: views/settings/controller.php:21
448
+ #: views/settings/diagnostics.php:84
449
  #@ wpduplicator
450
  msgid "General"
451
  msgstr "General"
452
 
453
+ #: views/settings/diagnostics.php:87
454
+ #: views/settings/general.php:60
 
 
 
 
 
455
  #@ wpduplicator
456
  msgid "Duplicator Version"
457
  msgstr "Duplicadora Version"
458
 
459
+ #: views/settings/general.php:157
460
  #@ wpduplicator
461
  msgid "Save Settings"
462
  msgstr "Guardar Opciones"
463
 
464
+ #: views/settings/diagnostics.php:78
465
  #@ wpduplicator
466
  msgid "Server Settings"
467
  msgstr "Opciones del Servidor"
468
 
469
+ #: views/settings/diagnostics.php:91
 
 
 
 
 
 
 
 
 
 
470
  #@ wpduplicator
471
  msgid "Operating System"
472
  msgstr "Sistema Operativo"
473
 
474
+ #: views/settings/diagnostics.php:103
475
  #@ wpduplicator
476
  msgid "Root Path"
477
  msgstr "Ruta raiz"
478
 
479
+ #: views/settings/diagnostics.php:126
480
  #@ wpduplicator
481
  msgid "Langugage"
482
  msgstr "Lenguaje"
483
 
484
+ #: views/settings/diagnostics.php:130
485
+ #: views/settings/diagnostics.php:185
486
  #@ wpduplicator
487
  msgid "Charset"
488
  msgstr "Juego de Carácteres"
489
 
490
+ #: views/settings/diagnostics.php:134
491
  #@ wpduplicator
492
  msgid "Memory Limit "
493
+ msgstr "Limite de Memoria "
 
 
 
 
 
494
 
495
+ #: views/settings/diagnostics.php:153
496
  #@ wpduplicator
497
  msgid "Safe Mode"
498
  msgstr "Modo Seguro"
499
 
500
+ #: views/settings/diagnostics.php:162
501
  #@ wpduplicator
502
  msgid "Memory Limit"
503
  msgstr "Límite de Memoria"
504
 
505
+ #: views/settings/diagnostics.php:166
506
  #@ wpduplicator
507
  msgid "Memory In Use"
508
  msgstr "Memoria en Uso"
509
 
510
+ #: views/settings/diagnostics.php:170
511
  #@ wpduplicator
512
  msgid "Max Execution Time"
513
  msgstr "Tiempo Máximo de ejecución"
514
 
515
+ #: views/support.php:55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
516
  #@ wpduplicator
517
  msgid "Created for Admins, Developers and Designers the Duplicator will streamline your workflows and help you quickly clone a WordPress application. If you run into an issue please read through the"
518
  msgstr "Creado para Admin, Desarrolladores y Diseñadores, Duplicator facilitará sus flujos de trabajo y ayudará a clonar rápidamente una instalación Wordpress. Si tiene algún problema por favor contacte "
519
 
520
+ #: views/support.php:72
 
 
 
 
 
521
  #@ wpduplicator
522
  msgid "Need Help?"
523
  msgstr "¿Necesita Ayuda?"
524
 
525
+ #: views/support.php:79
526
  #@ wpduplicator
527
  msgid "Knowledgebase"
528
  msgstr "Base de Conocimientos"
529
 
530
+ #: views/support.php:85
 
 
 
 
 
531
  #@ wpduplicator
532
  msgid "Choose A Section"
533
  msgstr "Elija una sección"
534
 
535
+ #: views/support.php:89
536
  #@ wpduplicator
537
  msgid "Change Log"
538
  msgstr "Cambiar Log"
539
 
540
+ #: views/support.php:145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  #@ wpduplicator
542
  msgid "Partner with Us"
543
  msgstr "Cuente con nosotros"
544
 
545
+ #: views/support.php:157
546
  #@ wpduplicator
547
  msgid "Keep Active and Online"
548
  msgstr "Quedarse Activo y Online"
549
 
550
+ #: views/support.php:164
551
  #@ wpduplicator
552
  msgid "Leave 5 Stars"
553
  msgstr "Deje 5 estrellas"
554
 
555
+ #: views/support.php:170
556
  #@ wpduplicator
557
  msgid "Take A Quick 60 Second Survey"
558
  msgstr "Tome un cursito de 60 segundos"
559
 
560
+ #: views/packages/new1.inc-b.form.php:132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
  #@ default
562
  msgid "STEP 1 - INPUTS"
563
  msgstr ""
564
 
565
+ #: views/packages/new1.inc-b.form.php:135
566
  #@ wpduplicator
567
  msgid "MySQL Server"
568
  msgstr "Servidor MYSQL"
569
 
570
+ #: views/packages/new1.inc-b.form.php:36
571
+ #: views/packages/new1.inc-b.form.php:142
572
+ #: views/packages/new2.base.php:232
573
  #@ wpduplicator
574
  msgid "Database"
575
  msgstr "base de datos"
576
 
577
+ #: views/packages/new1.inc-b.form.php:150
578
  #@ wpduplicator
579
  msgid "Advanced Options"
580
  msgstr "Opciones avanzadas"
581
 
582
+ #: views/packages/new1.inc-b.form.php:156
583
  #@ wpduplicator
584
  msgid "SSL"
585
  msgstr ""
586
 
587
+ #: views/packages/new1.inc-b.form.php:159
588
  #@ wpduplicator
589
  msgid "Enforce on Admin"
590
  msgstr "Hacer cumplir el Administrador"
591
 
592
+ #: views/packages/new1.inc-b.form.php:163
593
  #@ wpduplicator
594
  msgid "Enforce on Logins"
595
  msgstr "Hacer cumplir en Inicios de sesión"
596
 
597
+ #: views/packages/new1.inc-b.form.php:167
598
  #@ wpduplicator
599
  msgid "Cache"
600
  msgstr ""
601
 
602
+ #: views/packages/new1.inc-b.form.php:170
603
  #@ wpduplicator
604
  msgid "Keep Enabled"
605
  msgstr "Mantenga Activado"
606
 
607
+ #: views/packages/new1.inc-b.form.php:174
608
  #@ wpduplicator
609
  msgid "Keep Home Path"
610
  msgstr "Mantenga Portada Camino"
611
 
612
+ #: views/packages/new1.inc-b.form.php:182
613
  #@ default
614
  msgid "STEP 2 - INPUTS"
615
  msgstr ""
616
 
617
+ #: views/packages/new1.inc-b.form.php:186
618
  #@ wpduplicator
619
  msgid "New URL"
620
  msgstr "Nueva URL"
621
 
622
+ #: views/packages/new1.inc-b.form.php:193
623
+ #@ wpduplicator
624
  msgid "The installer can have these fields pre-filled at install time."
625
+ msgstr "El instalador puede tener estos campos rellenos al instalarse."
626
 
627
+ #: views/packages/new1.inc-b.form.php:193
628
+ #@ wpduplicator
629
  msgid "All values are optional."
630
+ msgstr "Todos los valores son opcionales."
631
 
632
+ #: views/settings/diagnostics.php:201
633
  #@ wpduplicator
634
  msgid "Server Disk"
635
  msgstr "Disco del Servidor"
636
 
637
+ #: views/settings/diagnostics.php:204
638
  #@ hyper-cache
639
  msgid "Free space"
640
  msgstr ""
641
 
642
+ #: views/settings/diagnostics.php:207
643
  #@ wpduplicator
644
  msgid "Note: This value is the physical servers hard-drive allocation."
645
  msgstr "Nota: Este valor es la asignación de servidores físicos en el disco duro."
646
 
647
+ #: views/settings/diagnostics.php:208
648
  #@ wpduplicator
649
  msgid "On shared hosts check your control panel for the 'TRUE' disk space quota value."
650
  msgstr "En los servidores compartidos comprobar su panel de control para el valor de la cuota de espacio en disco verdadero."
651
 
652
+ #: views/tools/controller.php:17
653
  #@ wpduplicator
654
  msgid "Cleanup"
655
  msgstr "Limpieza"
656
 
657
+ #: views/tools/cleanup.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
  #@ wpduplicator
659
  msgid "If the installer files did not successfully get removed, then you WILL need to remove them manually"
660
  msgstr "Si los ficheros de instalación no se eliminan correctamente, entonces TENDRÁ que eliminarlos manualmente."
661
 
662
+ #: views/tools/cleanup.php:59
663
  #@ wpduplicator
664
  msgid "Please remove all installer files to avoid leaving open security issues on your server"
665
  msgstr "Por favor elimine todos los ficheros del instalador para evitar errores en la seguridad de su sistema"
666
 
667
+ #: views/packages/list.base.php:152
668
+ #: views/packages/list.base.php:200
669
+ #: views/packages/new1.inc-b.form.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
670
  #@ wpduplicator
671
  msgid "Notes"
672
  msgstr "Notas"
673
 
674
+ #: views/packages/list.base.php:155
675
  #@ wpduplicator
676
  msgid "SQL File"
677
  msgstr "Fichero SQL"
678
 
679
+ #: views/packages/list.base.php:156
680
+ #: views/packages/list.base.php:206
 
 
 
 
 
681
  #@ wpduplicator
682
  msgid "View Log"
683
  msgstr "Ver Log"
684
 
685
+ #: views/packages/list.base.php:186
686
  #@ wpduplicator
687
  msgid "View Error Details"
688
  msgstr "Ver detalles de error"
689
 
690
+ #: views/packages/list.base.php:203
691
  #@ wpduplicator
692
  msgid "This package has encountered errors. Click 'View Log' for more details. For additional support see the "
693
  msgstr "Esta copia contiene errores. Cliquee \\\"Ver Log\\\" para más detalles. Más soporte en "
694
 
695
+ #: views/packages/list.base.php:204
696
  #@ wpduplicator
697
  msgid "online knowledgebase"
698
  msgstr "Base de conocimientos online"
699
 
700
+ #: views/settings/diagnostics.php:175
701
  #@ wpduplicator
702
  msgid "Not Supported"
703
  msgstr "No soportado"
704
 
705
+ #: views/packages/list-nodata.php:13
706
  #@ wpduplicator
707
  msgid "Please visit the"
708
  msgstr "Por favor visite"
709
 
710
+ #: views/packages/list-nodata.php:28
711
  #@ wpduplicator
712
  msgid "support page"
713
  msgstr "página de soporte"
714
 
715
+ #: views/packages/list-nodata.php:15
716
  #@ wpduplicator
717
  msgid "for additional help topics"
718
  msgstr "para temas de ayuda adicional"
719
 
720
+ #: views/packages/list.base.php:229
721
+ #: views/packages/new2.base.php:178
722
+ #: views/packages/new2.base.php:248
723
  #@ wpduplicator
724
  msgid "Total Size"
725
  msgstr "Tamaño total"
726
 
727
+ #: views/packages/list.base.php:86
728
+ #: views/packages/new1.inc-b.form.php:8
729
+ #: views/packages/new3.base.php:69
730
+ #@ wpduplicator
731
+ msgid "Name"
732
+ msgstr "Nombre"
733
+
734
+ #: views/packages/new1.inc-b.form.php:11
735
+ #@ wpduplicator
736
+ msgid "Purpose of this package"
737
+ msgstr "Proposito de esta copia"
738
+
739
+ #: views/packages/list.base.php:332
740
+ #@ wpduplicator
741
+ msgid "LOG"
742
+ msgstr "LOG"
743
+
744
+ #: views/packages/new2.base.php:113
745
+ #@ wpduplicator
746
+ msgid "Cached Data"
747
+ msgstr "Data en cache"
748
+
749
+ #: views/settings/diagnostics.php:111
750
  #@ wpduplicator
751
+ msgid "Plugins Path"
752
+ msgstr "Ruta de Plugins"
753
+
754
+ #: classes/ui.php:105
755
+ #@ default
756
+ msgid "Reserved Duplicator install file(s) still exsist in the root directory. Please delete these file(s) to avoid possible security issues."
757
+ msgstr ""
758
+
759
+ #: classes/ui.php:106
760
+ #@ default
761
+ msgid "Remove file(s) now"
762
+ msgstr ""
763
+
764
+ #: classes/ui.php:107
765
+ #@ default
766
+ msgid "Dismiss this notice"
767
+ msgstr ""
768
 
769
+ #: duplicator.php:161
770
+ #: views/tools/controller.php:13
771
  #@ wpduplicator
772
+ msgid "Tools"
773
+ msgstr "Herramientas"
774
 
775
+ #: views/packages/controller.php:77
776
  #@ wpduplicator
777
+ msgid "Create New"
778
+ msgstr "Crear Nuevo"
779
 
780
+ #: views/packages/list.base.php:72
781
  #@ wpduplicator
782
+ msgid "Package Logs"
783
+ msgstr "Log de Paquete"
784
 
785
+ #: views/packages/list.base.php:119
786
  #@ wpduplicator
787
+ msgid "(No Notes Taken)"
788
+ msgstr "(Sin notas)"
789
 
790
+ #: views/packages/list.base.php:144
791
+ #: views/packages/new1.inc-b.form.php:16
792
+ #: views/packages/new2.base.php:153
793
+ #: views/packages/new3.base.php:78
794
  #@ wpduplicator
795
+ msgid "Archive"
796
+ msgstr "Archivo"
797
 
798
+ #: views/packages/list.base.php:151
799
+ #: views/packages/list.base.php:195
800
  #@ wpduplicator
801
+ msgid "Hash"
802
+ msgstr "Hash"
803
 
804
+ #: views/packages/list.base.php:154
805
  #@ wpduplicator
806
+ msgid "Links"
807
+ msgstr "Enlaces"
808
 
809
+ #: views/packages/list.base.php:198
810
  #@ wpduplicator
811
+ msgid "Unrecoverable Error! Please remove this package."
812
+ msgstr "Error no recuperable! Por favor borre este paquete."
813
 
814
+ #: views/packages/list.base.php:326
815
  #@ wpduplicator
816
+ msgid "Package File Links"
817
+ msgstr "Enlaces de Fichero de Paquete"
818
 
819
+ #: views/packages/list-nodata.php:7
820
  #@ wpduplicator
821
+ msgid "No Packages Found."
822
+ msgstr "No se encontraron paquetes."
823
 
824
+ #: views/packages/list-nodata.php:8
825
  #@ wpduplicator
826
+ msgid "Click the 'Create New' tab to build a package."
827
+ msgstr "Click el tab 'Crear Nuevo' y cree un paquete. "
828
 
829
+ #: views/packages/list-nodata.php:14
830
  #@ wpduplicator
831
+ msgid "support section"
832
+ msgstr "sección de soporte"
833
+
834
+ #: views/packages/list-nodata.php:24
835
+ #@ wpduplicator
836
+ msgid "Older packages prior to 0.5.0 are no longer supported in this version."
837
+ msgstr "Paquetes más antiguos de 0.5.0 no son compatibles con esta versión."
838
+
839
+ #: views/packages/list-nodata.php:27
840
+ #@ wpduplicator
841
+ msgid "To get an older package please visit the"
842
+ msgstr "Para conseguir paqutes más antiguos visite "
843
+
844
+ #: views/packages/list-nodata.php:29
845
+ #@ wpduplicator
846
+ msgid "and look for the Change Log link for additional instructions."
847
+ msgstr "y mire el enlace Change Log para instrucciones adicionales."
848
+
849
+ #: views/packages/list-nodata.php:33
850
+ #@ wpduplicator
851
+ msgid "Hide this message"
852
+ msgstr "Oculte este mensaje"
853
+
854
+ #: views/packages/new1.base.php:68
855
+ #: views/packages/new2.base.php:54
856
+ #: views/packages/new3.base.php:37
857
+ #@ wpduplicator
858
+ msgid "Setup"
859
+ msgstr "Setup"
860
+
861
+ #: views/packages/new1.base.php:69
862
+ #: views/packages/new2.base.php:55
863
+ #: views/packages/new3.base.php:38
864
+ #@ wpduplicator
865
+ msgid "Scan"
866
+ msgstr "Escanear"
867
+
868
+ #: views/packages/new1.base.php:70
869
+ #: views/packages/new2.base.php:56
870
+ #: views/packages/new2.base.php:309
871
+ #: views/packages/new3.base.php:39
872
+ #@ wpduplicator
873
+ msgid "Build"
874
+ msgstr "Construir"
875
+
876
+ #: views/packages/new1.base.php:73
877
+ #@ wpduplicator
878
+ msgid "Step 1: Package Setup"
879
+ msgstr "Paso 1: Instale Paquete"
880
+
881
+ #: views/packages/new1.inc-a.reqs.php:7
882
+ #@ wpduplicator
883
+ msgid "Requirements:"
884
+ msgstr "Requerimientos: "
885
+
886
+ #: views/packages/new1.inc-a.reqs.php:16
887
+ #@ wpduplicator
888
+ msgid "System requirments must pass for the Duplicator to work properly. Click each link for details."
889
+ msgstr "Debe pasar los requerimientos de Sistema para que Duplicator funcione bien. Click en enlace para info."
890
+
891
+ #: views/packages/new1.inc-a.reqs.php:22
892
+ #@ wpduplicator
893
+ msgid "Permissions"
894
+ msgstr "Permisos"
895
+
896
+ #: views/packages/new1.inc-a.reqs.php:26
897
+ #@ wpduplicator
898
+ msgid "Required Paths"
899
+ msgstr "Rutas Requeridas"
900
+
901
+ #: views/packages/new1.inc-a.reqs.php:35
902
+ #@ wpduplicator
903
+ msgid "PHP Script Owner"
904
+ msgstr "Propietario de Script Php"
905
+
906
+ #: views/packages/new1.inc-a.reqs.php:36
907
+ #@ wpduplicator
908
+ msgid "The above paths should have permissions of 755 for directories and 644 for files. You can temporarily try 777 if you continue to have issues. Also be sure to check the owner/group settings. For more details contact your host or server administrator."
909
+ msgstr "Las rutas arriba deben tener permisos de 755 para directorios y 644 para ficheros. Puede intentar temporalmente 777 si sigue teniendo problemas. Revise los ajustes de propietario/grupo. Para más detalles contacte su administrador de host o servidor."
910
+
911
+ #: views/packages/new1.inc-a.reqs.php:38
912
+ #: views/packages/new1.inc-a.reqs.php:52
913
+ #: views/packages/new1.inc-a.reqs.php:63
914
+ #: views/packages/new1.inc-a.reqs.php:79
915
+ #: views/packages/new1.inc-a.reqs.php:97
916
+ #: views/packages/new1.inc-a.reqs.php:119
917
+ #: views/packages/new1.inc-a.reqs.php:138
918
+ #: views/packages/new2.base.php:105
919
+ #: views/packages/new2.base.php:121
920
+ #: views/packages/new2.base.php:144
921
+ #: views/packages/new2.base.php:187
922
+ #: views/packages/new2.base.php:203
923
+ #: views/packages/new2.base.php:219
924
+ #: views/packages/new2.base.php:262
925
+ #@ wpduplicator
926
+ msgid "Status Code"
927
+ msgstr "Código de Status"
928
+
929
+ #: views/packages/new1.inc-a.reqs.php:91
930
+ #@ wpduplicator
931
+ msgid "MySQL version"
932
+ msgstr "Versión Mysql"
933
+
934
+ #: views/packages/new1.inc-a.reqs.php:95
935
+ #: views/packages/new2.base.php:103
936
+ #: views/packages/new2.base.php:142
937
+ #@ wpduplicator
938
+ msgid "more info"
939
+ msgstr "más info"
940
+
941
+ #: views/packages/new1.inc-a.reqs.php:111
942
+ #@ wpduplicator
943
+ msgid "PHP version"
944
+ msgstr "Versión PHP"
945
+
946
+ #: views/packages/new1.inc-a.reqs.php:112
947
+ #@ wpduplicator
948
+ msgid "Requried Functions"
949
+ msgstr "Funciones Requeridas"
950
+
951
+ #: views/packages/new1.inc-a.reqs.php:151
952
+ #@ wpduplicator
953
+ msgid "duplicator approved"
954
+ msgstr "aprobado duplicator"
955
+
956
+ #: views/packages/new1.inc-b.form.php:18
957
+ #@ wpduplicator
958
+ msgid "File filter enabled"
959
+ msgstr "Habilitado filtro de fichero"
960
+
961
+ #: views/packages/new1.inc-b.form.php:19
962
+ #@ wpduplicator
963
+ msgid "Database filter enabled"
964
+ msgstr "Habilitado filtro de Base de datos"
965
+
966
+ #: views/packages/new1.inc-b.form.php:26
967
+ #@ wpduplicator
968
+ msgid "Format"
969
+ msgstr "Formato"
970
+
971
+ #: views/packages/new1.inc-b.form.php:47
972
+ #: views/packages/new1.inc-b.form.php:82
973
+ #@ wpduplicator
974
+ msgid "Filters"
975
+ msgstr "Filtros"
976
+
977
+ #: views/packages/new1.inc-b.form.php:51
978
+ #: views/packages/new1.inc-b.form.php:86
979
+ #@ wpduplicator
980
+ msgid "Enable Filters"
981
+ msgstr "Habilita filtros"
982
+
983
+ #: views/packages/new1.inc-b.form.php:71
984
+ #@ wpduplicator
985
+ msgid "The directory paths and extensions above will be be excluded from the archive file if enabled is checked."
986
+ msgstr "Las rutas de directorio y extensiones arriba serán excluidos del fichero archivo si está elegido."
987
+
988
+ #: views/packages/new1.inc-b.form.php:72
989
+ #@ wpduplicator
990
+ msgid "Use the full path for directories and semicolons to separate all items."
991
+ msgstr "Use la ruta completa para directorios y punto y coma para separar los elementos."
992
+
993
+ #: views/packages/new1.inc-b.form.php:90
994
+ #@ wpduplicator
995
+ msgid "All"
996
+ msgstr "Todos"
997
+
998
+ #: views/packages/new1.inc-b.form.php:91
999
+ #@ wpduplicator
1000
+ msgid "None"
1001
+ msgstr "Ninguno"
1002
+
1003
+ #: views/packages/new1.inc-b.form.php:113
1004
+ #@ wpduplicator
1005
+ 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!"
1006
+ msgstr "Tabladas elegidas no se añadirán al script de database. Excluyendo ciertas tablas puede hacer que su web o plugins no funcionen bien después de la instalación!"
1007
+
1008
+ #: views/packages/new1.inc-b.form.php:202
1009
+ #@ wpduplicator
1010
+ msgid "Skip Scan"
1011
+ msgstr "Saltar Escaneo"
1012
+
1013
+ #: views/packages/new1.inc-b.form.php:202
1014
+ #@ wpduplicator
1015
+ msgid "step 2"
1016
+ msgstr "paso 2"
1017
+
1018
+ #: views/packages/new1.inc-b.form.php:207
1019
+ #@ wpduplicator
1020
+ msgid "Next"
1021
+ msgstr "Siguiente"
1022
+
1023
+ #: views/packages/new2.base.php:59
1024
+ #@ wpduplicator
1025
+ msgid "Step 2: System Scan"
1026
+ msgstr "Paso 2: Escaneo de Sistema"
1027
+
1028
+ #: views/packages/new2.base.php:67
1029
+ #@ wpduplicator
1030
+ msgid "Scanning Site"
1031
+ msgstr "Escaneando Sitio"
1032
+
1033
+ #: views/packages/new2.base.php:69
1034
+ #: views/packages/new3.base.php:52
1035
+ #@ wpduplicator
1036
+ msgid "Please Wait..."
1037
+ msgstr "Por favor Espere..."
1038
+
1039
+ #: views/packages/new2.base.php:75
1040
+ #@ wpduplicator
1041
+ msgid "Scan Complete"
1042
+ msgstr "Escaneo Completado"
1043
+
1044
+ #: views/packages/new2.base.php:76
1045
+ #@ wpduplicator
1046
+ msgid "Scan checks are not required to pass, however they could cause issues on some systems."
1047
+ msgstr "Los escaneos no son obligados para pasar, sin embargo ellos pueden causar problemas en algún sistema."
1048
+
1049
+ #: views/packages/new2.base.php:84
1050
+ #@ wpduplicator
1051
+ msgid "Server"
1052
+ msgstr "Servidor"
1053
+
1054
+ #: views/packages/new2.base.php:95
1055
+ #@ wpduplicator
1056
+ msgid "PHP Settings"
1057
+ msgstr "Ajustes PHP"
1058
+
1059
+ #: views/packages/new2.base.php:102
1060
+ #@ wpduplicator
1061
+ msgid "The Duplicator has been known to have issues with some of the settings above. Please work with your host or server administrator to disable this value in the php.ini file if you’re having issues with building a package."
1062
+ msgstr "Duplicator puede tener problemas con alguno de los ajustes de arriba. Por favor, trabaje con su administrador de host o servidor para deshabilitar este valor en el php.ini si está teniendo problemas al construir un paquete."
1063
+
1064
+ #: views/packages/new2.base.php:118
1065
+ #@ wpduplicator
1066
+ msgid "Cache Path"
1067
+ msgstr "Ruta de Cache"
1068
+
1069
+ #: views/packages/new2.base.php:119
1070
+ #@ wpduplicator
1071
+ msgid "Cached data will lead to issues at install time and increases your archive size. It is highly recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you’re using a cache plugin please read the directions for how to properly clean the cache directory; simply removing the files can cause errors with some cache plugins."
1072
+ msgstr "El Caché llevará a problemas en la instalación e incrementa su tamaño final. Se recomienda vaciar el directorio de cache al construir. Use con precaución cuando borre datos del directorio caché. Si está usando un plugin de cache por favor lea las direccioens de como limpiar debidamente el cache; simplemente quitando los ficheros puede causar errores con algunos plugins de cache."
1073
+
1074
+ #: views/packages/new2.base.php:129
1075
+ #@ wpduplicator
1076
+ msgid "Timeouts"
1077
+ msgstr "Timeouts"
1078
+
1079
+ #: views/packages/new2.base.php:134
1080
+ #@ wpduplicator
1081
+ msgid "max_execution_time"
1082
+ msgstr "max_execution_time"
1083
+
1084
+ #: views/packages/new2.base.php:138
1085
+ #, php-format
1086
+ #@ wpduplicator
1087
+ msgid "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 enviroment allows it. A \"Warn\" status will not be an issue unless your host kills PHP processes after a certain amount of time. "
1088
+ msgstr "Timeouts afecta cuanto tiempo corre un proceso. El timeout recomendado es \"%1$s\" segundos. Se intentará saltarse este valor si el entorno lo permite. Un status \"Warn\" no será un problema a menos que su host mate los procesos después de cierto periodo de tiempo. "
1089
+
1090
+ #: views/packages/new2.base.php:141
1091
+ #@ wpduplicator
1092
+ msgid "Timeouts can also be set at the web server layer, please work with your host or server administrator to make sure there are not restrictions for how long a PHP process is allowed to run. 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."
1093
+ msgstr "Timeouts tambien se puede poner en la capa del servidor web, por favor trabaje con su admin de host o servidor para asegurarse que no hay restricciones para procesos largos PHP. Si usted está limitado en tiempo de proceso, considere usar los filtros de database o fichero para bajar el tamaño de su paquete. Sin embargo con cuidado ya que excluir algunos recursos puede hacer que la instalación tenga error."
1094
+
1095
+ #: views/packages/new2.base.php:167
1096
+ #: views/packages/new2.base.php:237
1097
+ #@ wpduplicator
1098
+ msgid "Enabled"
1099
+ msgstr "Habilitado"
1100
+
1101
+ #: views/packages/new2.base.php:182
1102
+ #@ wpduplicator
1103
+ msgid "File Count"
1104
+ msgstr "Cuenta de Ficheros"
1105
+
1106
+ #: views/packages/new2.base.php:183
1107
+ #@ wpduplicator
1108
+ msgid "Directory Count"
1109
+ msgstr "Cuenta de Directorios"
1110
+
1111
+ #: views/packages/new2.base.php:185
1112
+ #, php-format
1113
+ #@ wpduplicator
1114
+ msgid "Total size reprents 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."
1115
+ msgstr "El tamaño total representa todos los ficheros menos los filtros. Los umbrales que dan warnings avisos son %1$s para todo el sitio y %2$s para ficheros grandes."
1116
+
1117
+ #: views/packages/new2.base.php:195
1118
+ #@ wpduplicator
1119
+ msgid "Invalid Names"
1120
+ msgstr "Nombres inválidos"
1121
+
1122
+ #: views/packages/new2.base.php:199
1123
+ #@ wpduplicator
1124
+ msgid "Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 200 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."
1125
+ msgstr "Nombres de Ficheros o directorios inválidos pueden causar problemas cuando se extraiga el paquete entre sistemas. Nombres inválidos consisten en longitudes de más de 200 caracteres y caracteres ilegales que puede que no vayan bien entre sistemas como * ? > < : / \\ | . Se recomienda borrar o filtrar estos ficheros antes de construir el paquete o puede tener problemas."
1126
+
1127
+ #: views/packages/new2.base.php:201
1128
+ #: views/packages/new2.base.php:217
1129
+ #@ wpduplicator
1130
+ msgid "Show File Locations"
1131
+ msgstr "Muetra Lugares de Ficheros"
1132
+
1133
+ #: views/packages/new2.base.php:211
1134
+ #@ wpduplicator
1135
+ msgid "Large Files"
1136
+ msgstr "Ficheros grandes"
1137
+
1138
+ #: views/packages/new2.base.php:215
1139
+ #, php-format
1140
+ #@ wpduplicator
1141
+ 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."
1142
+ msgstr "Ficheros grandes como películas y otros backups pueden causar problemas de timeout. El chequeo actual para ficheros grandes es %1$s por fichero. Si tiene problemas al crear un paquete, considere excluir estos ficheros con el filtro y moverlos manualmente a su nueva sitio."
1143
+
1144
+ #: views/packages/new2.base.php:252
1145
+ #@ wpduplicator
1146
+ msgid "Tables"
1147
+ msgstr "Tablas"
1148
+
1149
+ #: views/packages/new2.base.php:253
1150
+ #@ wpduplicator
1151
+ msgid "Records"
1152
+ msgstr "Registros"
1153
+
1154
+ #: views/packages/new2.base.php:256
1155
+ #@ wpduplicator
1156
+ msgid "repair and optimization"
1157
+ msgstr "reparación y optimización"
1158
+
1159
+ #: views/packages/new2.base.php:257
1160
+ #, php-format
1161
+ #@ wpduplicator
1162
+ 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."
1163
+ msgstr "El tamaño total y el número de filas de todas las tablas de bases de datos son valores aproximados. Los umbrales que desencadenan las advertencias son %1$s y registros %2$s. Grandes bases de datos necesitan tiempo para procesar y pueden causar problemas con el tiempo de espera del servidor y la config de memoria. Ejecución de un %3$s en su base de datos también puede ayudar a mejorar el tamaño y el rendimiento general. Si su servidor soporta shell_exec y mysqldump puede intentar activar esta opción en el menú de ajustes."
1164
+
1165
+ #: views/packages/new2.base.php:270
1166
+ #@ wpduplicator
1167
+ msgid "Table Details"
1168
+ msgstr "Detalles de Tabla"
1169
+
1170
+ #: views/packages/new2.base.php:281
1171
+ #@ wpduplicator
1172
+ msgid "Name:"
1173
+ msgstr "Nombre:"
1174
+
1175
+ #: views/packages/new2.base.php:282
1176
+ #@ wpduplicator
1177
+ msgid "Host:"
1178
+ msgstr "Host"
1179
+
1180
+ #: views/packages/new2.base.php:283
1181
+ #@ wpduplicator
1182
+ msgid "Build Mode:"
1183
+ msgstr "Modo Construcción:"
1184
+
1185
+ #: views/packages/new2.base.php:294
1186
+ #@ wpduplicator
1187
+ msgid "Scan Error"
1188
+ msgstr "Error de Escaneo"
1189
+
1190
+ #: views/packages/new2.base.php:295
1191
+ #@ wpduplicator
1192
+ msgid "Please try again!"
1193
+ msgstr "Por favor inténtelo de nuevo!"
1194
+
1195
+ #: views/packages/new2.base.php:297
1196
+ #: views/packages/new3.base.php:105
1197
+ #@ wpduplicator
1198
+ msgid "Server Status:"
1199
+ msgstr "Status del Servidor:"
1200
+
1201
+ #: views/packages/new2.base.php:300
1202
+ #: views/packages/new3.base.php:109
1203
+ #@ wpduplicator
1204
+ msgid "Error Message:"
1205
+ msgstr "Mensaje de Error"
1206
+
1207
+ #: views/packages/new2.base.php:307
1208
+ #@ wpduplicator
1209
+ msgid "Back"
1210
+ msgstr "Atrás"
1211
+
1212
+ #: views/packages/new2.base.php:308
1213
+ #@ wpduplicator
1214
+ msgid "Rescan"
1215
+ msgstr "Rescaneo"
1216
+
1217
+ #: views/packages/new2.base.php:372
1218
+ #@ wpduplicator
1219
+ msgid "Unable to report on any tables"
1220
+ msgstr "Incapaz de crear report de cualquier tabla"
1221
+
1222
+ #: views/packages/new2.base.php:381
1223
+ #@ wpduplicator
1224
+ msgid "Unable to report on database stats"
1225
+ msgstr "No puedo informar de estadísticas de database"
1226
+
1227
+ #: views/packages/new2.base.php:396
1228
+ #@ wpduplicator
1229
+ msgid "No name length issues."
1230
+ msgstr "No hay problemas de nombres largos."
1231
+
1232
+ #: views/packages/new2.base.php:399
1233
+ #: views/packages/new2.base.php:407
1234
+ #@ wpduplicator
1235
+ msgid "FILE"
1236
+ msgstr "FICHERO"
1237
+
1238
+ #: views/packages/new2.base.php:404
1239
+ #@ wpduplicator
1240
+ msgid "No large files found."
1241
+ msgstr "No se encuentran ficheros grandes"
1242
+
1243
+ #: views/packages/new3.base.php:42
1244
+ #@ wpduplicator
1245
+ msgid "Step 3: Build Package"
1246
+ msgstr "Step 3: Construye Paquete"
1247
+
1248
+ #: views/packages/new3.base.php:50
1249
+ #@ wpduplicator
1250
+ msgid "Building Package"
1251
+ msgstr "Construyendo Paquete"
1252
+
1253
+ #: views/packages/new3.base.php:53
1254
+ #@ wpduplicator
1255
+ msgid "Keep this window open during the build process."
1256
+ msgstr "Mantenga abierta esta ventana durante el proceso."
1257
+
1258
+ #: views/packages/new3.base.php:54
1259
+ #@ wpduplicator
1260
+ msgid "This may take several minutes."
1261
+ msgstr "Esto necesitará algunos minutos."
1262
+
1263
+ #: views/packages/new3.base.php:58
1264
+ #@ wpduplicator
1265
+ msgid "Build Status"
1266
+ msgstr "Estado de Construcción"
1267
+
1268
+ #: views/packages/new3.base.php:65
1269
+ #@ wpduplicator
1270
+ msgid "Package Completed"
1271
+ msgstr "Paquete Completado"
1272
+
1273
+ #: views/packages/new3.base.php:70
1274
+ #@ wpduplicator
1275
+ msgid "Process Time"
1276
+ msgstr "Tiempo de Proceso"
1277
+
1278
+ #: views/packages/new3.base.php:84
1279
+ #@ wpduplicator
1280
+ msgid "All Packages"
1281
+ msgstr "Todos los Paquetes"
1282
+
1283
+ #: views/packages/new3.base.php:95
1284
+ #@ wpduplicator
1285
+ msgid "Build Interrupt"
1286
+ msgstr "Interrupción de Construcción"
1287
+
1288
+ #: views/packages/new3.base.php:96
1289
+ #@ wpduplicator
1290
+ msgid "The current build has experienced an issue."
1291
+ msgstr "El paquete actual tiene un problema."
1292
+
1293
+ #: views/packages/new3.base.php:98
1294
+ #@ wpduplicator
1295
+ msgid "Please try the process again. If the problem persists please visit the support page."
1296
+ msgstr "Por favor inténtelo de nuevo. Si el problema persiste visite la página de soporte."
1297
+
1298
+ #: views/packages/new3.base.php:100
1299
+ #@ wpduplicator
1300
+ msgid "Try Again"
1301
+ msgstr "Intente de Nuevo"
1302
+
1303
+ #: views/packages/new3.base.php:116
1304
+ #@ wpduplicator
1305
+ msgid "Notice"
1306
+ msgstr "Aviso"
1307
+
1308
+ #: views/packages/new3.base.php:119
1309
+ #@ default
1310
+ msgid "Build Folder:"
1311
+ msgstr ""
1312
+
1313
+ #: views/packages/new3.base.php:121
1314
+ #@ wpduplicator
1315
+ 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."
1316
+ msgstr "Algunos servidores cierran conexiones rápido; la construcción puede continuar en segundo plano. Para validar si una construcción está todavía corriendo, abra la carpeta 'tmp' arriba y mire si el archivo está creciendo en problemas. Si no es así entonces su servidor tiene tiempos restringidos. Visite la página de soporte para recursos adicionales."
1317
+
1318
+ #: views/packages/new3.base.php:130
1319
+ #@ wpduplicator
1320
+ msgid "Package Log"
1321
+ msgstr "Log de Paquete"
1322
+
1323
+ #: views/settings/diagnostics.php:36
1324
+ #@ wpduplicator
1325
+ msgid "Plugin settings reset."
1326
+ msgstr "Reseteo de ajustes de Plugin."
1327
+
1328
+ #: views/settings/diagnostics.php:37
1329
+ #@ wpduplicator
1330
+ msgid "View state settings reset."
1331
+ msgstr "Ver ajustes de reseteo "
1332
+
1333
+ #: views/settings/diagnostics.php:38
1334
+ #@ wpduplicator
1335
+ msgid "Active package settings reset."
1336
+ msgstr "Reseteo de ajustes de paquete activo."
1337
+
1338
+ #: views/settings/diagnostics.php:41
1339
+ #: views/tools/cleanup.php:12
1340
+ #@ wpduplicator
1341
+ msgid "Legacy data removed."
1342
+ msgstr "Quitados datos base. "
1343
+
1344
+ #: views/settings/diagnostics.php:99
1345
+ #@ wpduplicator
1346
+ msgid "APC Enabled"
1347
+ msgstr "Habilitado APC"
1348
+
1349
+ #: views/settings/diagnostics.php:107
1350
+ #@ wpduplicator
1351
+ msgid "ABSPATH"
1352
+ msgstr "ABSPATH"
1353
+
1354
+ #: views/settings/diagnostics.php:115
1355
+ #@ wpduplicator
1356
+ msgid "Loaded PHP INI"
1357
+ msgstr "Cargado PHP INI"
1358
+
1359
+ #: views/settings/diagnostics.php:135
1360
+ #@ wpduplicator
1361
+ msgid "Max"
1362
+ msgstr "Max"
1363
+
1364
+ #: views/settings/diagnostics.php:174
1365
+ #@ wpduplicator
1366
+ msgid "Shell Exec"
1367
+ msgstr "Shell Exec"
1368
+
1369
+ #: views/settings/diagnostics.php:175
1370
+ #@ wpduplicator
1371
+ msgid "Is Supported"
1372
+ msgstr "Se Soporta"
1373
+
1374
+ #: views/settings/diagnostics.php:189
1375
+ #@ wpduplicator
1376
+ msgid "Wait Timeout"
1377
+ msgstr "Timeout de Espera "
1378
+
1379
+ #: views/settings/diagnostics.php:193
1380
+ #@ wpduplicator
1381
+ msgid "Max Allowed Packets"
1382
+ msgstr "Paquetes Max Permitidos"
1383
+
1384
+ #: views/settings/diagnostics.php:197
1385
+ #@ wpduplicator
1386
+ msgid "msyqldump Path"
1387
+ msgstr "Ruta mysqldump"
1388
+
1389
+ #: views/settings/diagnostics.php:224
1390
+ #@ wpduplicator
1391
+ msgid "Stored Data"
1392
+ msgstr "Datos Almacenados"
1393
+
1394
+ #: views/settings/diagnostics.php:233
1395
+ #@ wpduplicator
1396
+ msgid "Options Values"
1397
+ msgstr "Valores Opcionales"
1398
+
1399
+ #: views/settings/diagnostics.php:266
1400
+ #@ wpduplicator
1401
+ msgid "PHP Information"
1402
+ msgstr "Información de PHP"
1403
+
1404
+ #: views/settings/diagnostics.php:285
1405
+ #@ wpduplicator
1406
+ msgid "Delete this option value"
1407
+ msgstr "Borre este valor de opción"
1408
+
1409
+ #: views/settings/general.php:56
1410
+ #@ wpduplicator
1411
+ msgid "Plugin"
1412
+ msgstr "Plugin"
1413
+
1414
+ #: views/settings/general.php:67
1415
+ #@ wpduplicator
1416
+ msgid "Delete Plugin Settings"
1417
+ msgstr "Borre Ajustes de Plugin"
1418
+
1419
+ #: views/settings/general.php:70
1420
+ #@ wpduplicator
1421
+ msgid "Delete Entire Snapshot Directory"
1422
+ msgstr "Borre Todo el Dir de Snapshot"
1423
+
1424
+ #: views/settings/general.php:83
1425
+ #@ wpduplicator
1426
+ msgid "Auto Skip Scanner"
1427
+ msgstr "Auto Saltar Escaneado"
1428
+
1429
+ #: views/settings/general.php:86
1430
+ #@ wpduplicator
1431
+ msgid "Skip Scanner Step"
1432
+ msgstr "Saltar Paso de Escaneo"
1433
+
1434
+ #: views/settings/general.php:88
1435
+ #@ wpduplicator
1436
+ msgid "Keeps the 'Skip Scan (step 2)' option checked."
1437
+ msgstr "Guarda el 'Saltar Escaneo (paso 2)' opción elegida."
1438
+
1439
+ #: views/settings/general.php:93
1440
+ #@ wpduplicator
1441
+ msgid "Archive Flush"
1442
+ msgstr "Flush de Fichero"
1443
+
1444
+ #: views/settings/general.php:96
1445
+ #@ wpduplicator
1446
+ msgid "Attempt Network Keep Alive"
1447
+ msgstr "Intentar Mantener la Conexión de Red"
1448
+
1449
+ #: views/settings/general.php:97
1450
+ #@ wpduplicator
1451
+ msgid "recommended only for large archives"
1452
+ msgstr "recomendado solo para ficheros grandes"
1453
+
1454
+ #: views/settings/general.php:99
1455
+ #@ wpduplicator
1456
+ msgid "This will attempt to keep a network connection established for large archives."
1457
+ msgstr "Ahora intentaremos mantener la conexión de red para archivos grandes."
1458
+
1459
+ #: views/settings/general.php:104
1460
+ #@ wpduplicator
1461
+ msgid "Database Build"
1462
+ msgstr "Construcción de Database"
1463
+
1464
+ #: views/settings/general.php:110
1465
+ #@ wpduplicator
1466
+ msgid "This server does not have shell_exec configured to run."
1467
+ msgstr "Este servidor no tiene configurado shell_exec para ejecutar."
1468
+
1469
+ #: views/settings/general.php:111
1470
+ #@ wpduplicator
1471
+ msgid "Please contact the server administrator to enable this feature."
1472
+ msgstr "Por favor contacte el admin del servidor para habilitar esto."
1473
+
1474
+ #: views/settings/general.php:116
1475
+ #@ wpduplicator
1476
+ msgid "Use mysqldump"
1477
+ msgstr "Use mysqldump"
1478
+
1479
+ #: views/settings/general.php:117
1480
+ #@ wpduplicator
1481
+ msgid "recommended for large databases"
1482
+ msgstr "recomendado para bases de datos grandes"
1483
+
1484
+ #: views/settings/general.php:122
1485
+ #@ wpduplicator
1486
+ msgid "Working Path:"
1487
+ msgstr "Ruta de Trabajo:"
1488
+
1489
+ #: views/settings/general.php:128
1490
+ #@ wpduplicator
1491
+ 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."
1492
+ msgstr "Mysqldump no se ha encontrado en su ubicación por defecto o la ubicación proporcionada. Por favor, introduzca una ruta a una ubicación válida donde mysqldump se puede ejecutar. Si el problema persiste póngase en contacto con el admin del servidor."
1493
+
1494
+ #: views/settings/general.php:133
1495
+ #@ wpduplicator
1496
+ msgid "Add Custom Path:"
1497
+ msgstr "Añadir Ruta Personalizada:"
1498
+
1499
+ #: views/settings/general.php:137
1500
+ #@ wpduplicator
1501
+ msgid "This is the path to your mysqldump program."
1502
+ msgstr "Esta es la ruta de su programa mysqldump."
1503
+
1504
+ #: views/settings/general.php:146
1505
+ #@ wpduplicator
1506
+ msgid "Package Debug"
1507
+ msgstr "Debug de Paquete"
1508
+
1509
+ #: views/settings/general.php:149
1510
+ #@ wpduplicator
1511
+ msgid "Show Package Debug Status in Packages Screen"
1512
+ msgstr "Mostrar Paquete de Depuración de Estado en la Pantalla de Paquetes"
1513
+
1514
+ #: views/support.php:57
1515
+ #@ wpduplicator
1516
+ msgid "in detail for many of the quick and common answers."
1517
+ msgstr "en detalle para muchas de las preguntas rápidas y comunes."
1518
+
1519
+ #: views/support.php:83
1520
+ #@ wpduplicator
1521
+ msgid "Complete online documentation!"
1522
+ msgstr "Documentación online completa!"
1523
+
1524
+ #: views/support.php:105
1525
+ #@ wpduplicator
1526
+ msgid "Servers that work with Duplicator!"
1527
+ msgstr "Servidores que trabajan con Duplicator!"
1528
+
1529
+ #: views/support.php:108
1530
+ #@ wpduplicator
1531
+ msgid "Get Hosting!"
1532
+ msgstr "Consiga Hosting!"
1533
+
1534
+ #: views/support.php:123
1535
+ #@ wpduplicator
1536
+ msgid "Work with IT Profressionals!"
1537
+ msgstr "Trabaje con profesionales de IT!"
1538
+
1539
+ #: views/support.php:127
1540
+ #@ wpduplicator
1541
+ msgid "Get Help!"
1542
+ msgstr "Consiga Ayuda!"
1543
+
1544
+ #: views/tools/cleanup.php:8
1545
+ #@ wpduplicator
1546
+ msgid "Installer File Cleanup Ran."
1547
+ msgstr "Ejecutar Limpieza de Archivos Setup."
1548
+
1549
+ #: views/tools/cleanup.php:67
1550
+ #@ wpduplicator
1551
+ msgid "Data Cleanup"
1552
+ msgstr "Limpieza de Datos"
1553
+
1554
+ #: views/tools/cleanup.php:70
1555
+ #@ wpduplicator
1556
+ msgid "Delete Reserved Files"
1557
+ msgstr "Borrar Ficheros Reservados"
1558
+
1559
+ #: views/tools/cleanup.php:71
1560
+ #@ wpduplicator
1561
+ msgid "Removes all installer files from a previous install"
1562
+ msgstr "Quitar todos los ficheros de la instalación previa"
1563
+
1564
+ #: views/tools/cleanup.php:74
1565
+ #@ wpduplicator
1566
+ msgid "Delete Legacy Data"
1567
+ msgstr "Borrar Datos Antiguos"
1568
+
1569
+ #: views/tools/cleanup.php:75
1570
+ #@ wpduplicator
1571
+ msgid "Removes all legacy data and settings prior to version"
1572
+ msgstr "Elimina todos los datos antiguos y los ajustes anteriores a la versión"
1573
+
1574
+ #: views/tools/cleanup.php:90
1575
+ #, php-format
1576
+ #@ wpduplicator
1577
+ msgid "This action will remove all legacy settings prior to version %1$s. "
1578
+ msgstr "Esta acción eliminará todos los ajustes antiguos anteriores a la versión %1$s. "
1579
+
1580
+ #: views/tools/cleanup.php:91
1581
+ #@ wpduplicator
1582
+ msgid "Legacy settings are only needed if you plan to migrate back to an older version of this plugin."
1583
+ msgstr "Ajustes antiguos sólo son necesarios si va a migrar de nuevo a una versión anterior de este plugin."
1584
+
1585
+ #: views/tools/controller.php:16
1586
+ #@ wpduplicator
1587
+ msgid "Logging"
1588
+ msgstr "Logging"
1589
 
1590
+ #: views/tools/logging.php:142
1591
  #@ wpduplicator
1592
+ msgid "No log files were found in the snapshots directory with the extension *.log"
1593
+ msgstr "No hay archivos de registro en el directorio de snapshots con la extensión *.log"
1594
 
1595
+ #: views/tools/logging.php:175
1596
  #@ wpduplicator
1597
+ msgid "Last 20 Logs"
1598
+ msgstr "Últimos 20 Logs"
1599
 
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.7
6
  Tested up to: 3.8.1
7
- Stable tag: 0.5.1
8
  License: GPLv2
9
 
10
  Duplicate, clone, backup, move and transfer an entire site from one location to another.
@@ -12,12 +12,12 @@ Duplicate, clone, backup, move and transfer an entire site from one location to
12
 
13
  == Description ==
14
 
15
- The Duplicator plugin gives Wordpress Administrators and Developers the ability to migrate/clone a site from one location to another location. First create a package, download it and install. No need to change your settings and re-run import/export scripts. The plugin also serves as a simple backup utility. The Duplicator also supports both serialized and base64 serialized string replacement.
16
 
17
- A Quick Overview:
18
- http://www.youtube.com/watch?v=nyHNV6D2w2c
19
 
20
- DISCLAIMER: This plugin has been heavily tested, however it does require above average technical knowledge. Please use it at your own risk and do not forget to back up your files and databases beforehand. If you consider yourself a WordPress newbie please seek assistance from your system administrator when using this plugin. Please do not attempt to use the plugin if you're new to WordPress or have a limited technical background.
21
 
22
  DEVELOPERS: This tool is great for pulling a production site down onto your local machine for testing and validation. It also works great for developing locally and then pushing up to a production server for a first time site release.
23
 
@@ -26,18 +26,18 @@ NOTE: This project is currently in Beta, the underlying logic to perform all the
26
  For complete details see:
27
  [lifeinthegrid.com](http://lifeinthegrid.com/)
28
 
29
- Contributors:
30
  <li>[Paal Joachim Romdahl](http://www.easywebdesigntutorials.com)</li>
31
- <li>Jonathan Foote</li>
32
- <li>Tomas Gurny</li>
33
- <li>Aaron Crawford</li>
34
-
35
 
36
  Localization:
37
  <li>[Hans-M. Herbrand](http://www.web266.de) (German) </li>
38
  <li>[Marco Andrei Kichalowsky](http://www.arsnovasolucoes.com) (Portuguese)</li>
39
  <li>[Emilio De Fez](http://www.canaryas.com) (Spanish) </li>
40
 
 
 
 
 
41
 
42
  == Installation ==
43
 
4
  Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
5
  Requires at least: 3.7
6
  Tested up to: 3.8.1
7
+ Stable tag: 0.5.2
8
  License: GPLv2
9
 
10
  Duplicate, clone, backup, move and transfer an entire site from one location to another.
12
 
13
  == Description ==
14
 
15
+ The Duplicator gives WordPress administrators the ability to migrate, copy or clone a site from one location to another. The plugin also serves as a simple backup utility. The Duplicator supports both serialized and base64 serialized string replacement.
16
 
17
+ QUICK DEMO VIDEO:
18
+ http://www.youtube.com/watch?v=yZ7pHmR9JC8
19
 
20
+ DISCLAIMER: This plugin has been heavily tested, however it does require above average technical knowledge. Please use it at your own risk and do not forget to back up your files and databases beforehand with other backup system. Please do not attempt to use the plugin if you're new to WordPress or have a limited technical background. Please seek out professional help if your in question of anything.
21
 
22
  DEVELOPERS: This tool is great for pulling a production site down onto your local machine for testing and validation. It also works great for developing locally and then pushing up to a production server for a first time site release.
23
 
26
  For complete details see:
27
  [lifeinthegrid.com](http://lifeinthegrid.com/)
28
 
29
+ Active Contributors:
30
  <li>[Paal Joachim Romdahl](http://www.easywebdesigntutorials.com)</li>
 
 
 
 
31
 
32
  Localization:
33
  <li>[Hans-M. Herbrand](http://www.web266.de) (German) </li>
34
  <li>[Marco Andrei Kichalowsky](http://www.arsnovasolucoes.com) (Portuguese)</li>
35
  <li>[Emilio De Fez](http://www.canaryas.com) (Spanish) </li>
36
 
37
+ Past Contributors:
38
+
39
+ Jonathan Foote, Tomas Gurny, Aaron Crawford
40
+
41
 
42
  == Installation ==
43
 
uninstall.php CHANGED
@@ -80,5 +80,7 @@ if (DUP_Settings::Get('uninstall_files')) {
80
  //Remove all Settings
81
  if (DUP_Settings::Get('uninstall_settings')) {
82
  DUP_Settings::Delete();
 
 
83
  }
84
  ?>
80
  //Remove all Settings
81
  if (DUP_Settings::Get('uninstall_settings')) {
82
  DUP_Settings::Delete();
83
+ delete_option('duplicator_ui_view_state');
84
+ delete_option('duplicator_package_active');
85
  }
86
  ?>
views/actions.php CHANGED
@@ -9,15 +9,13 @@ function duplicator_package_create() {
9
  DUP_Util::InitSnapshotDirectory();
10
 
11
  $Task = new DUP_Task();
12
-
13
  $Task->Create();
14
 
15
-
16
  //JSON:Debug Response
17
  //Pass = 1, Warn = 2, Fail = 3
18
  $json = array();
19
- $json['Package'] = $Task->Package;
20
- $json['Status'] = 1;
21
  $json['Runtime'] = $Task->Package->Runtime;
22
  $json['ExeSize'] = $Task->Package->ExeSize;
23
  $json['ZipSize'] = $Task->Package->ZipSize;
@@ -40,6 +38,8 @@ function duplicator_package_create() {
40
  function duplicator_package_scan() {
41
 
42
  @set_time_limit(0);
 
 
43
 
44
  $json = array();
45
  $Package = new DUP_Package();
@@ -73,6 +73,7 @@ function duplicator_package_scan() {
73
 
74
  ///die(str_repeat("To force error message uncomment this line", 100));
75
  $json_response = json_encode($json);
 
76
  die($json_response);
77
  }
78
 
9
  DUP_Util::InitSnapshotDirectory();
10
 
11
  $Task = new DUP_Task();
 
12
  $Task->Create();
13
 
 
14
  //JSON:Debug Response
15
  //Pass = 1, Warn = 2, Fail = 3
16
  $json = array();
17
+ $json['Status'] = 1;
18
+ $json['Package'] = $Task->Package;
19
  $json['Runtime'] = $Task->Package->Runtime;
20
  $json['ExeSize'] = $Task->Package->ExeSize;
21
  $json['ZipSize'] = $Task->Package->ZipSize;
38
  function duplicator_package_scan() {
39
 
40
  @set_time_limit(0);
41
+ $errLevel = error_reporting();
42
+ error_reporting(E_ERROR);
43
 
44
  $json = array();
45
  $Package = new DUP_Package();
73
 
74
  ///die(str_repeat("To force error message uncomment this line", 100));
75
  $json_response = json_encode($json);
76
+ error_reporting($errLevel);
77
  die($json_response);
78
  }
79
 
views/packages/new1.base.php CHANGED
@@ -2,20 +2,30 @@
2
  require_once (DUPLICATOR_PLUGIN_PATH . 'classes/package.php');
3
 
4
  global $wpdb;
5
-
 
 
 
 
 
 
 
 
 
 
6
  DUP_Util::InitSnapshotDirectory();
7
  $Package = new DUP_Package();
8
  $Package = $Package->GetActive();
9
 
10
  $dup_tests = array();
11
  $dup_tests = DUP_Package::GetSystemRequirments();
 
12
 
13
  $view_state = DUP_UI::GetViewStateArray();
14
  $ui_css_archive = (isset($view_state['dup-pack-archive-panel']) && $view_state['dup-pack-archive-panel']) ? 'display:block' : 'display:none';
15
  $ui_css_installer = (isset($view_state['dup-pack-installer-panel']) && $view_state['dup-pack-installer-panel']) ? 'display:block' : 'display:none';
16
  $package_skip_scanner = DUP_Settings::Get('package_skip_scanner');
17
 
18
-
19
  ?>
20
 
21
  <style>
@@ -74,6 +84,10 @@ WIZARD STEP TABS -->
74
  </div> <hr/>
75
  </div>
76
 
 
 
 
 
77
  <?php include('new1.inc-a.reqs.php'); ?>
78
 
79
  <div style="padding:2px 5px 2px 5px">
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
+ $action_result = DUP_Settings::DeleteWPOption($_POST['action']);
10
+ switch ($_POST['action']) {
11
+ case 'duplicator_package_active' : $action_response = __('Package settings have been reset.', 'wpduplicator'); break;
12
+ }
13
+ }
14
+
15
+
16
  DUP_Util::InitSnapshotDirectory();
17
  $Package = new DUP_Package();
18
  $Package = $Package->GetActive();
19
 
20
  $dup_tests = array();
21
  $dup_tests = DUP_Package::GetSystemRequirments();
22
+ $default_name = DUP_Package::GetDefaultName();
23
 
24
  $view_state = DUP_UI::GetViewStateArray();
25
  $ui_css_archive = (isset($view_state['dup-pack-archive-panel']) && $view_state['dup-pack-archive-panel']) ? 'display:block' : 'display:none';
26
  $ui_css_installer = (isset($view_state['dup-pack-installer-panel']) && $view_state['dup-pack-installer-panel']) ? 'display:block' : 'display:none';
27
  $package_skip_scanner = DUP_Settings::Get('package_skip_scanner');
28
 
 
29
  ?>
30
 
31
  <style>
84
  </div> <hr/>
85
  </div>
86
 
87
+ <?php if (! empty($action_response)) : ?>
88
+ <div id="message" class="updated below-h2"><p><?php echo $action_response; ?></p></div>
89
+ <?php endif; ?>
90
+
91
  <?php include('new1.inc-a.reqs.php'); ?>
92
 
93
  <div style="padding:2px 5px 2px 5px">
views/packages/new1.inc-b.form.php CHANGED
@@ -1,11 +1,13 @@
1
  <!-- =========================================
2
  META-BOX2: PACKAGE OPTIONS -->
3
  <form id="dup-form-opts" method="post" action="?page=duplicator&tab=new2" data-validate="parsley">
 
4
 
5
  <b style="font-size:15px"><i class="fa fa-archive"></i> <?php _e('Package', 'wpduplicator') ?></b>
6
  <hr size="1" />
7
 
8
- <label for="package-name"><b><?php _e('Name', 'wpduplicator') ?>:</b></label><br/>
 
9
  <input id="package-name" name="package-name" type="text" value="<?php echo $Package->Name ?>" maxlength="40" data-required="true" data-regexp="^[0-9A-Za-z|_]+$" /> <br/>
10
  <label><b><?php _e('Notes', 'wpduplicator') ?>:</b></label> <br/>
11
  <textarea id="package-notes" name="package-notes" type="text" maxlength="300" placeholder="<?php _e('Purpose of this package', 'wpduplicator') ?>" /><?php echo $Package->Notes ?></textarea>
@@ -203,8 +205,31 @@ META-BOX2: PACKAGE OPTIONS -->
203
  </div><br style="clear:both" /><br/>
204
 
205
  <div class="dup-button-footer">
206
-
207
  <input type="submit" value="<?php _e("Next", 'wpduplicator') ?> &#9658;" class="button button-primary button-large" <?php echo ($dup_tests['Success']) ? '' : 'disabled="disabled"';?> />
208
  </div>
209
 
210
  </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!-- =========================================
2
  META-BOX2: PACKAGE OPTIONS -->
3
  <form id="dup-form-opts" method="post" action="?page=duplicator&tab=new2" data-validate="parsley">
4
+ <input type="hidden" id="dup-form-opts-action" name="action" value="">
5
 
6
  <b style="font-size:15px"><i class="fa fa-archive"></i> <?php _e('Package', 'wpduplicator') ?></b>
7
  <hr size="1" />
8
 
9
+ <label for="package-name"><b><?php _e('Name', 'wpduplicator') ?>:</b> </label>
10
+ <a href="javascript:void(0)" onclick="Duplicator.Pack.ResetName()" title="<?php _e('Create a new default name', 'wpduplicator') ?>"><i class="fa fa-undo"></i></a> <br/>
11
  <input id="package-name" name="package-name" type="text" value="<?php echo $Package->Name ?>" maxlength="40" data-required="true" data-regexp="^[0-9A-Za-z|_]+$" /> <br/>
12
  <label><b><?php _e('Notes', 'wpduplicator') ?>:</b></label> <br/>
13
  <textarea id="package-notes" name="package-notes" type="text" maxlength="300" placeholder="<?php _e('Purpose of this package', 'wpduplicator') ?>" /><?php echo $Package->Notes ?></textarea>
205
  </div><br style="clear:both" /><br/>
206
 
207
  <div class="dup-button-footer">
208
+ <input type="button" value="<?php _e("Reset", 'wpduplicator') ?>" class="button button-large" <?php echo ($dup_tests['Success']) ? '' : 'disabled="disabled"';?> onclick="Duplicator.Pack.ResetSettings()" />
209
  <input type="submit" value="<?php _e("Next", 'wpduplicator') ?> &#9658;" class="button button-primary button-large" <?php echo ($dup_tests['Success']) ? '' : 'disabled="disabled"';?> />
210
  </div>
211
 
212
  </form>
213
+
214
+ <script>
215
+ jQuery(document).ready(function($) {
216
+ var DUP_NAMEDEFAULT = '<?php echo $default_name ?>';
217
+ var DUP_NAMELAST = $('#package-name').val();
218
+
219
+ Duplicator.Pack.ResetSettings = function () {
220
+ var key = 'duplicator_package_active';
221
+ var result = confirm('<?php _e("This will reset all of the current package settings. Would you like to continue?", "wpduplicator"); ?>');
222
+ if (! result) return;
223
+
224
+ jQuery('#dup-form-opts-action').val(key);
225
+ jQuery('#dup-form-opts').attr('action', '?page=duplicator&tab=new1')
226
+ jQuery('#dup-form-opts').submit();
227
+ }
228
+
229
+ Duplicator.Pack.ResetName = function () {
230
+ var current = $('#package-name').val();
231
+ $('#package-name').val( (current == DUP_NAMELAST) ? DUP_NAMEDEFAULT : DUP_NAMELAST)
232
+ }
233
+
234
+ });
235
+ </script>
views/packages/new2.base.php CHANGED
@@ -198,7 +198,7 @@ WIZARD STEP TABS -->
198
  <?php
199
  _e('Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 200 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.', 'wpduplicator');
200
  ?><br/><br/>
201
- <a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php _e('Show File Locations', 'wpduplicator');?>]</a>
202
  <div id="data-arc-names-data"></div>
203
  <small><?php _e('Status Code', 'wpduplicator');?>: CHK-FILE-101</small>
204
  </div>
@@ -214,7 +214,7 @@ WIZARD STEP TABS -->
214
  <?php
215
  printf(__('Large files such as movies or other backuped data can cause issues with timeouts. The current check for large files is %1$s per file. If your having issues creating a package consider excluding these files with the files filter and manually moving them to your new location.', 'wpduplicator'), DUP_Util::ByteSize(DUPLICATOR_SCAN_BIGFILE));
216
  ?><br/><br/>
217
- <a href="javascript:void(0)" onclick="jQuery('#data-arc-big-data').toggle()">[<?php _e('Show File Locations', 'wpduplicator');?>]</a>
218
  <div id="data-arc-big-data"></div>
219
  <small><?php _e('Status Code', 'wpduplicator');?>: CHK-FILE-102</small>
220
  </div>
@@ -392,11 +392,11 @@ jQuery(document).ready(function($) {
392
  $('#data-arc-files').text(data.ARC.FileCount || errMsg);
393
  $('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
394
 
395
- //Long Names
396
  html = '<?php _e("No name length issues.", 'wpduplicator') ?>';
397
  if (data.ARC.InvalidFiles != undefined && data.ARC.InvalidFiles.length > 0) {
398
  html = '';
399
- $.each(data.ARC.InvalidFiles, function(key, val) {html += '<?php _e("FILE", 'wpduplicator') ?> ' + key + ':<br/>' + val + '<br/>';});
400
  }
401
  $('#data-arc-names-data').html(html);
402
 
198
  <?php
199
  _e('Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 200 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.', 'wpduplicator');
200
  ?><br/><br/>
201
+ <a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php _e('Show Paths', 'wpduplicator');?>]</a>
202
  <div id="data-arc-names-data"></div>
203
  <small><?php _e('Status Code', 'wpduplicator');?>: CHK-FILE-101</small>
204
  </div>
214
  <?php
215
  printf(__('Large files such as movies or other backuped data can cause issues with timeouts. The current check for large files is %1$s per file. If your having issues creating a package consider excluding these files with the files filter and manually moving them to your new location.', 'wpduplicator'), DUP_Util::ByteSize(DUPLICATOR_SCAN_BIGFILE));
216
  ?><br/><br/>
217
+ <a href="javascript:void(0)" onclick="jQuery('#data-arc-big-data').toggle()">[<?php _e('Show Paths', 'wpduplicator');?>]</a>
218
  <div id="data-arc-big-data"></div>
219
  <small><?php _e('Status Code', 'wpduplicator');?>: CHK-FILE-102</small>
220
  </div>
392
  $('#data-arc-files').text(data.ARC.FileCount || errMsg);
393
  $('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
394
 
395
+ //Invalid Names
396
  html = '<?php _e("No name length issues.", 'wpduplicator') ?>';
397
  if (data.ARC.InvalidFiles != undefined && data.ARC.InvalidFiles.length > 0) {
398
  html = '';
399
+ $.each(data.ARC.InvalidFiles, function(key, val) {html += '<?php _e("FILE", 'wpduplicator') ?> ' + key + ':<br/>[' + val + ']<br/>';});
400
  }
401
  $('#data-arc-names-data').html(html);
402
 
views/settings/diagnostics.php CHANGED
@@ -150,7 +150,7 @@
150
  <td><?php echo get_current_user(); ?></td>
151
  </tr>
152
  <tr>
153
- <td><a href="" target="_blank"><?php _e("Safe Mode", 'wpduplicator'); ?></a></td>
154
  <td>
155
  <?php echo (((strtolower(@ini_get('safe_mode')) == 'on') || (strtolower(@ini_get('safe_mode')) == 'yes') ||
156
  (strtolower(@ini_get('safe_mode')) == 'true') || (ini_get("safe_mode") == 1 )))
@@ -226,32 +226,28 @@
226
  </div>
227
  <div class="dup-box-panel" id="dup-settings-diag-opts-panel" style="<?php echo $ui_css_opts_panel?>">
228
  <div style="padding:0px 20px 0px 25px">
 
229
 
230
-
231
-
232
-
233
- <h3 class="title" style="margin-left:-15px"><?php _e("Options Values", 'wpduplicator') ?> </h3>
234
-
235
- <table class="widefat" cellspacing="0">
236
- <tr>
237
- <th>Key</th>
238
- <th>Value</th>
239
- </tr>
240
- <?php
241
- $sql = "SELECT * FROM `{$wpdb->prefix}options` WHERE `option_name` LIKE '%duplicator_%' ORDER BY option_name";
242
- foreach( $wpdb->get_results("{$sql}") as $key => $row) { ?>
243
  <tr>
244
- <td>
245
- <?php
246
- echo (in_array($row->option_name, $GLOBALS['DUPLICATOR_OPTS_DELETE']))
247
- ? "<a href='javascript:void(0)' onclick='Duplicator.Settings.DeleteOption(this)'>{$row->option_name}</a>"
248
- : $row->option_name;
249
- ?>
250
- </td>
251
- <td><textarea class="dup-opts-read" readonly="readonly"><?php echo $row->option_value?></textarea></td>
252
- </tr>
253
- <?php } ?>
254
- </table>
 
 
 
 
 
 
 
255
  </div>
256
 
257
  </div> <!-- end .dup-box-panel -->
150
  <td><?php echo get_current_user(); ?></td>
151
  </tr>
152
  <tr>
153
+ <td><a href="http://php.net/manual/en/features.safe-mode.php" target="_blank"><?php _e("Safe Mode", 'wpduplicator'); ?></a></td>
154
  <td>
155
  <?php echo (((strtolower(@ini_get('safe_mode')) == 'on') || (strtolower(@ini_get('safe_mode')) == 'yes') ||
156
  (strtolower(@ini_get('safe_mode')) == 'true') || (ini_get("safe_mode") == 1 )))
226
  </div>
227
  <div class="dup-box-panel" id="dup-settings-diag-opts-panel" style="<?php echo $ui_css_opts_panel?>">
228
  <div style="padding:0px 20px 0px 25px">
229
+ <h3 class="title" style="margin-left:-15px"><?php _e("Options Values", 'wpduplicator') ?> </h3>
230
 
231
+ <table class="widefat" cellspacing="0">
 
 
 
 
 
 
 
 
 
 
 
 
232
  <tr>
233
+ <th>Key</th>
234
+ <th>Value</th>
235
+ </tr>
236
+ <?php
237
+ $sql = "SELECT * FROM `{$wpdb->prefix}options` WHERE `option_name` LIKE '%duplicator_%' ORDER BY option_name";
238
+ foreach( $wpdb->get_results("{$sql}") as $key => $row) { ?>
239
+ <tr>
240
+ <td>
241
+ <?php
242
+ echo (in_array($row->option_name, $GLOBALS['DUPLICATOR_OPTS_DELETE']))
243
+ ? "<a href='javascript:void(0)' onclick='Duplicator.Settings.DeleteOption(this)'>{$row->option_name}</a>"
244
+ : $row->option_name;
245
+ ?>
246
+ </td>
247
+ <td><textarea class="dup-opts-read" readonly="readonly"><?php echo $row->option_value?></textarea></td>
248
+ </tr>
249
+ <?php } ?>
250
+ </table>
251
  </div>
252
 
253
  </div> <!-- end .dup-box-panel -->
views/settings/general.php CHANGED
@@ -64,7 +64,7 @@
64
  <th scope="row"><label><?php _e("Uninstall Options", 'wpduplicator'); ?></label></th>
65
  <td>
66
  <input type="checkbox" name="uninstall_settings" id="uninstall_settings" <?php echo ($uninstall_settings) ? 'checked="checked"' : ''; ?> />
67
- <label for="uninstall_settings"><?php _e("Delete Plugin Settings", 'wpduplicator') ?></label><br/>
68
 
69
  <input type="checkbox" name="uninstall_files" id="uninstall_files" <?php echo ($uninstall_files) ? 'checked="checked"' : ''; ?> />
70
  <label for="uninstall_files"><?php _e("Delete Entire Snapshot Directory", 'wpduplicator') ?></label><br/>
64
  <th scope="row"><label><?php _e("Uninstall Options", 'wpduplicator'); ?></label></th>
65
  <td>
66
  <input type="checkbox" name="uninstall_settings" id="uninstall_settings" <?php echo ($uninstall_settings) ? 'checked="checked"' : ''; ?> />
67
+ <label for="uninstall_settings"><?php _e("Delete Plugin Settings", 'wpduplicator') ?> </label><br/>
68
 
69
  <input type="checkbox" name="uninstall_files" id="uninstall_files" <?php echo ($uninstall_files) ? 'checked="checked"' : ''; ?> />
70
  <label for="uninstall_files"><?php _e("Delete Entire Snapshot Directory", 'wpduplicator') ?></label><br/>
views/tools/logging.php CHANGED
@@ -4,7 +4,7 @@
4
  require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
5
 
6
  $logs = glob(DUPLICATOR_SSDIR_PATH . '/*.log') ;
7
- if (count($logs)) {
8
  usort($logs, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
9
  @chmod(DUP_Util::SafePath($logs[0]), 0644);
10
  }
@@ -139,8 +139,7 @@ jQuery(document).ready(function($) {
139
  <div style="padding:20px">
140
  <h2><?php _e("Log file not found or unreadable", 'wpduplicator') ?>.</h2>
141
 
142
- <?php _e("No log files were found in the snapshots directory with the extension *.log", 'wpduplicator') ?>.
143
- <?php _e("If no log file is present the try to create a package", 'wpduplicator') ?>.<br/><br/>
144
 
145
  <?php _e("Reasons for log file not showing", 'wpduplicator') ?>: <br/>
146
  - <?php _e("The web server does not support returning .log file extentions", 'wpduplicator') ?>. <br/>
4
  require_once(DUPLICATOR_PLUGIN_PATH . '/views/inc.header.php');
5
 
6
  $logs = glob(DUPLICATOR_SSDIR_PATH . '/*.log') ;
7
+ if ($logs != false && count($logs)) {
8
  usort($logs, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
9
  @chmod(DUP_Util::SafePath($logs[0]), 0644);
10
  }
139
  <div style="padding:20px">
140
  <h2><?php _e("Log file not found or unreadable", 'wpduplicator') ?>.</h2>
141
 
142
+ <?php _e("Try to create a package, since no log files were found in the snapshots directory with the extension *.log", 'wpduplicator') ?>.<br/><br/>
 
143
 
144
  <?php _e("Reasons for log file not showing", 'wpduplicator') ?>: <br/>
145
  - <?php _e("The web server does not support returning .log file extentions", 'wpduplicator') ?>. <br/>