Version Description
Download this release
Release Info
Developer | cory@lamle.org |
Plugin | Duplicator – WordPress Migration Plugin |
Version | 0.5.20 |
Comparing to | |
See all releases |
Code changes from version 0.5.18 to 0.5.20
- classes/package.installer.php +2 -0
- classes/package.php +13 -4
- classes/server.php +45 -39
- classes/utility.php +13 -0
- define.php +4 -2
- duplicator.php +2 -2
- installer/build/ajax.step1.php +12 -8
- installer/build/ajax.step2.php +1 -1
- installer/build/assets/inc.css.php +2 -1
- installer/build/classes/class.config.php +1 -1
- installer/build/classes/class.utils.php +6 -7
- installer/build/main.installer.php +7 -3
- installer/build/view.step1.php +31 -7
- installer/build/view.step2.php +3 -2
- lang/wpduplicator-de_DE.mo +0 -0
- lang/wpduplicator-de_DE.po +612 -435
- lang/wpduplicator-fa_IR.mo +0 -0
- lang/wpduplicator-fa_IR.po +1801 -0
- readme.txt +1 -1
- views/actions.php +3 -0
- views/packages/new1.inc.form.php +6 -2
- views/packages/new2.base.php +160 -142
classes/package.installer.php
CHANGED
@@ -8,6 +8,7 @@ class DUP_Installer {
|
|
8 |
public $File;
|
9 |
public $Size = 0;
|
10 |
public $OptsDBHost;
|
|
|
11 |
public $OptsDBName;
|
12 |
public $OptsDBUser;
|
13 |
public $OptsSSLAdmin;
|
@@ -130,6 +131,7 @@ class DUP_Installer {
|
|
130 |
"fwrite_secure_name" => $this->Package->NameHash,
|
131 |
"fwrite_url_new" => $this->Package->Installer->OptsURLNew,
|
132 |
"fwrite_dbhost" => $this->Package->Installer->OptsDBHost,
|
|
|
133 |
"fwrite_dbname" => $this->Package->Installer->OptsDBName,
|
134 |
"fwrite_dbuser" => $this->Package->Installer->OptsDBUser,
|
135 |
"fwrite_dbpass" => '',
|
8 |
public $File;
|
9 |
public $Size = 0;
|
10 |
public $OptsDBHost;
|
11 |
+
public $OptsDBPort;
|
12 |
public $OptsDBName;
|
13 |
public $OptsDBUser;
|
14 |
public $OptsSSLAdmin;
|
131 |
"fwrite_secure_name" => $this->Package->NameHash,
|
132 |
"fwrite_url_new" => $this->Package->Installer->OptsURLNew,
|
133 |
"fwrite_dbhost" => $this->Package->Installer->OptsDBHost,
|
134 |
+
"fwrite_dbport" => $this->Package->Installer->OptsDBPort,
|
135 |
"fwrite_dbname" => $this->Package->Installer->OptsDBName,
|
136 |
"fwrite_dbuser" => $this->Package->Installer->OptsDBUser,
|
137 |
"fwrite_dbpass" => '',
|
classes/package.php
CHANGED
@@ -82,10 +82,18 @@ class DUP_Package {
|
|
82 |
|
83 |
//SERVER
|
84 |
$srv = DUP_Server::GetChecks();
|
85 |
-
|
86 |
-
$report['SRV']['
|
87 |
-
|
88 |
-
$report['SRV']['
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
//FILES
|
91 |
$this->Archive->Stats();
|
@@ -269,6 +277,7 @@ class DUP_Package {
|
|
269 |
$this->Archive->FilterExts = str_replace(array('.' ,' '), "", esc_html($filter_exts));
|
270 |
//INSTALLER
|
271 |
$this->Installer->OptsDBHost = esc_html($post['dbhost']);
|
|
|
272 |
$this->Installer->OptsDBName = esc_html($post['dbname']);
|
273 |
$this->Installer->OptsDBUser = esc_html($post['dbuser']);
|
274 |
$this->Installer->OptsSSLAdmin = isset($post['ssl-admin']) ? 1 : 0;
|
82 |
|
83 |
//SERVER
|
84 |
$srv = DUP_Server::GetChecks();
|
85 |
+
$report['SRV']['WEB']['ALL'] = $srv['SRV']['WEB']['ALL'];
|
86 |
+
$report['SRV']['WEB']['model'] = $srv['SRV']['WEB']['model'];
|
87 |
+
|
88 |
+
$report['SRV']['PHP']['ALL'] = $srv['SRV']['PHP']['ALL'];
|
89 |
+
$report['SRV']['PHP']['openbase'] = $srv['SRV']['PHP']['openbase'];
|
90 |
+
$report['SRV']['PHP']['maxtime'] = $srv['SRV']['PHP']['maxtime'];
|
91 |
+
$report['SRV']['PHP']['mysqli'] = $srv['SRV']['PHP']['mysqli'];
|
92 |
+
|
93 |
+
$report['SRV']['WP']['ALL'] = $srv['SRV']['WP']['ALL'];
|
94 |
+
$report['SRV']['WP']['version'] = $srv['SRV']['WP']['version'];
|
95 |
+
$report['SRV']['WP']['core'] = $srv['SRV']['WP']['core'];
|
96 |
+
$report['SRV']['WP']['cache'] = $srv['SRV']['WP']['cache'];
|
97 |
|
98 |
//FILES
|
99 |
$this->Archive->Stats();
|
277 |
$this->Archive->FilterExts = str_replace(array('.' ,' '), "", esc_html($filter_exts));
|
278 |
//INSTALLER
|
279 |
$this->Installer->OptsDBHost = esc_html($post['dbhost']);
|
280 |
+
$this->Installer->OptsDBPort = esc_html($post['dbport']);
|
281 |
$this->Installer->OptsDBName = esc_html($post['dbname']);
|
282 |
$this->Installer->OptsDBUser = esc_html($post['dbuser']);
|
283 |
$this->Installer->OptsSSLAdmin = isset($post['ssl-admin']) ? 1 : 0;
|
classes/server.php
CHANGED
@@ -7,13 +7,15 @@ require_once (DUPLICATOR_PLUGIN_PATH . 'classes/utility.php');
|
|
7 |
* Class used to get server statis
|
8 |
* @package Dupicator\classes
|
9 |
*/
|
10 |
-
class DUP_Server
|
|
|
11 |
|
12 |
/**
|
13 |
* Gets the system requirements which must pass to buld a package
|
14 |
* @return array An array of requirements
|
15 |
*/
|
16 |
-
public static function GetRequirements()
|
|
|
17 |
|
18 |
global $wpdb;
|
19 |
$dup_tests = array();
|
@@ -28,9 +30,6 @@ class DUP_Server {
|
|
28 |
$dup_tests['PHP']['FUNC_3'] = function_exists("mb_strlen") ? 'Pass' : 'Fail';
|
29 |
$dup_tests['PHP']['ALL'] = ! in_array('Fail', $dup_tests['PHP']) ? 'Pass' : 'Fail';
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
//PERMISSIONS
|
35 |
$handle_test = @opendir(DUPLICATOR_WPROOTPATH);
|
36 |
$dup_tests['IO']['WPROOT'] = is_writeable(DUPLICATOR_WPROOTPATH) && $handle_test ? 'Pass' : 'Fail';
|
@@ -56,20 +55,41 @@ class DUP_Server {
|
|
56 |
* Gets the system checks which are not required
|
57 |
* @return array An array of system checks
|
58 |
*/
|
59 |
-
public static function GetChecks()
|
|
|
60 |
$checks = array();
|
61 |
-
|
62 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
$php_test1 = ini_get("open_basedir");
|
64 |
$php_test1 = empty($php_test1) ? true : false;
|
65 |
$php_test2 = ini_get("max_execution_time");
|
66 |
-
$php_test2
|
67 |
-
$
|
68 |
-
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
|
|
71 |
global $wp_version;
|
72 |
-
$
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
//Cache
|
75 |
$Package = DUP_Package::GetActive();
|
@@ -77,29 +97,12 @@ class DUP_Server {
|
|
77 |
$dirEmpty = DUP_Util::IsDirectoryEmpty($cache_path);
|
78 |
$dirSize = DUP_Util::GetDirectorySize($cache_path);
|
79 |
$cach_filtered = in_array($cache_path, explode(';', $Package->Archive->FilterDirs));
|
80 |
-
$
|
81 |
-
|
82 |
-
//Core Files
|
83 |
-
$files = array();
|
84 |
-
$files['wp-config.php'] = file_exists(DUP_Util::SafePath(DUPLICATOR_WPROOTPATH . '/wp-config.php'));
|
85 |
-
$files_test = $files['wp-config.php'];
|
86 |
-
|
87 |
-
$checks['CHK-SRV-101'] = $files_test && $cache_test && $version_test ? 'Good' : 'Warn';
|
88 |
-
|
89 |
-
//CHK-SRV-102: WEB SERVER
|
90 |
-
$servers = $GLOBALS['DUPLICATOR_SERVER_LIST'];
|
91 |
-
$test = false;
|
92 |
-
foreach ($servers as $value) {
|
93 |
-
if (stristr($_SERVER['SERVER_SOFTWARE'], $value)) {
|
94 |
-
$test = true;
|
95 |
-
break;
|
96 |
-
}
|
97 |
-
}
|
98 |
-
$checks['CHK-SRV-102'] = ($test) ? 'Good' : 'Warn';
|
99 |
|
100 |
-
|
101 |
-
$
|
102 |
-
$checks['
|
|
|
103 |
|
104 |
return $checks;
|
105 |
}
|
@@ -108,7 +111,8 @@ class DUP_Server {
|
|
108 |
* Check to see if duplicator installer files are present
|
109 |
* @return bool True if any reserved files are found
|
110 |
*/
|
111 |
-
public static function InstallerFilesFound()
|
|
|
112 |
|
113 |
$phpFile = file_exists(DUPLICATOR_WPROOTPATH . DUPLICATOR_INSTALL_PHP);
|
114 |
$sqlFile = file_exists(DUPLICATOR_WPROOTPATH . DUPLICATOR_INSTALL_SQL);
|
@@ -120,7 +124,8 @@ class DUP_Server {
|
|
120 |
* Get the IP of a client machine
|
121 |
* @return string IP of the client machine
|
122 |
*/
|
123 |
-
public static function GetClientIP()
|
|
|
124 |
|
125 |
if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)){
|
126 |
return $_SERVER["HTTP_X_FORWARDED_FOR"];
|
@@ -137,7 +142,8 @@ class DUP_Server {
|
|
137 |
* Get PHP memory useage
|
138 |
* @return string Returns human readable memory useage.
|
139 |
*/
|
140 |
-
public static function GetPHPMemory($peak = false)
|
|
|
141 |
|
142 |
if ($peak) {
|
143 |
$result = 'Unable to read PHP peak memory usage';
|
7 |
* Class used to get server statis
|
8 |
* @package Dupicator\classes
|
9 |
*/
|
10 |
+
class DUP_Server
|
11 |
+
{
|
12 |
|
13 |
/**
|
14 |
* Gets the system requirements which must pass to buld a package
|
15 |
* @return array An array of requirements
|
16 |
*/
|
17 |
+
public static function GetRequirements()
|
18 |
+
{
|
19 |
|
20 |
global $wpdb;
|
21 |
$dup_tests = array();
|
30 |
$dup_tests['PHP']['FUNC_3'] = function_exists("mb_strlen") ? 'Pass' : 'Fail';
|
31 |
$dup_tests['PHP']['ALL'] = ! in_array('Fail', $dup_tests['PHP']) ? 'Pass' : 'Fail';
|
32 |
|
|
|
|
|
|
|
33 |
//PERMISSIONS
|
34 |
$handle_test = @opendir(DUPLICATOR_WPROOTPATH);
|
35 |
$dup_tests['IO']['WPROOT'] = is_writeable(DUPLICATOR_WPROOTPATH) && $handle_test ? 'Pass' : 'Fail';
|
55 |
* Gets the system checks which are not required
|
56 |
* @return array An array of system checks
|
57 |
*/
|
58 |
+
public static function GetChecks()
|
59 |
+
{
|
60 |
$checks = array();
|
61 |
+
|
62 |
+
//WEB SERVER
|
63 |
+
$web_test1 = false;
|
64 |
+
foreach ($GLOBALS['DUPLICATOR_SERVER_LIST'] as $value) {
|
65 |
+
if (stristr($_SERVER['SERVER_SOFTWARE'], $value)) {
|
66 |
+
$web_test1 = true;
|
67 |
+
break;
|
68 |
+
}
|
69 |
+
}
|
70 |
+
$checks['SRV']['WEB']['model'] = $web_test1;
|
71 |
+
$checks['SRV']['WEB']['ALL'] = ($web_test1) ? 'Good' : 'Warn';
|
72 |
+
|
73 |
+
//PHP SETTINGS
|
74 |
$php_test1 = ini_get("open_basedir");
|
75 |
$php_test1 = empty($php_test1) ? true : false;
|
76 |
$php_test2 = ini_get("max_execution_time");
|
77 |
+
$php_test2 = ($php_test2 > DUPLICATOR_SCAN_TIMEOUT) || (strcmp($php_test2 , 'Off') == 0 || $php_test2 == 0) ? true : false;
|
78 |
+
$php_test3 = function_exists('mysqli_connect');
|
79 |
+
|
80 |
+
$checks['SRV']['PHP']['openbase'] = $php_test1;
|
81 |
+
$checks['SRV']['PHP']['maxtime'] = $php_test2;
|
82 |
+
$checks['SRV']['PHP']['mysqli'] = $php_test3;
|
83 |
+
$checks['SRV']['PHP']['ALL'] = ($php_test1 && $php_test2 && $php_test3) ? 'Good' : 'Warn';
|
84 |
+
|
85 |
+
//WORDPRESS SETTINGS
|
86 |
global $wp_version;
|
87 |
+
$wp_test1 = version_compare($wp_version, DUPLICATOR_SCAN_MIN_WP) >= 0 ? true : false;
|
88 |
+
|
89 |
+
//Core Files
|
90 |
+
$files = array();
|
91 |
+
$files['wp-config.php'] = file_exists(DUP_Util::SafePath(DUPLICATOR_WPROOTPATH . '/wp-config.php'));
|
92 |
+
$wp_test2 = $files['wp-config.php'];
|
93 |
|
94 |
//Cache
|
95 |
$Package = DUP_Package::GetActive();
|
97 |
$dirEmpty = DUP_Util::IsDirectoryEmpty($cache_path);
|
98 |
$dirSize = DUP_Util::GetDirectorySize($cache_path);
|
99 |
$cach_filtered = in_array($cache_path, explode(';', $Package->Archive->FilterDirs));
|
100 |
+
$wp_test3 = ($cach_filtered || $dirEmpty || $dirSize < DUPLICATOR_SCAN_CACHESIZE ) ? true : false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
+
$checks['SRV']['WP']['version'] = $wp_test1;
|
103 |
+
$checks['SRV']['WP']['core'] = $wp_test2;
|
104 |
+
$checks['SRV']['WP']['cache'] = $wp_test3;
|
105 |
+
$checks['SRV']['WP']['ALL'] = $wp_test1 && $wp_test2 && $wp_test3 ? 'Good' : 'Warn';
|
106 |
|
107 |
return $checks;
|
108 |
}
|
111 |
* Check to see if duplicator installer files are present
|
112 |
* @return bool True if any reserved files are found
|
113 |
*/
|
114 |
+
public static function InstallerFilesFound()
|
115 |
+
{
|
116 |
|
117 |
$phpFile = file_exists(DUPLICATOR_WPROOTPATH . DUPLICATOR_INSTALL_PHP);
|
118 |
$sqlFile = file_exists(DUPLICATOR_WPROOTPATH . DUPLICATOR_INSTALL_SQL);
|
124 |
* Get the IP of a client machine
|
125 |
* @return string IP of the client machine
|
126 |
*/
|
127 |
+
public static function GetClientIP()
|
128 |
+
{
|
129 |
|
130 |
if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)){
|
131 |
return $_SERVER["HTTP_X_FORWARDED_FOR"];
|
142 |
* Get PHP memory useage
|
143 |
* @return string Returns human readable memory useage.
|
144 |
*/
|
145 |
+
public static function GetPHPMemory($peak = false)
|
146 |
+
{
|
147 |
|
148 |
if ($peak) {
|
149 |
$result = 'Unable to read PHP peak memory usage';
|
classes/utility.php
CHANGED
@@ -12,6 +12,19 @@ class DUP_Util {
|
|
12 |
@flush();
|
13 |
}
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
/**
|
16 |
* returns the snapshot url
|
17 |
*/
|
12 |
@flush();
|
13 |
}
|
14 |
|
15 |
+
/**
|
16 |
+
* Language slug
|
17 |
+
*/
|
18 |
+
static public function _e($text)
|
19 |
+
{
|
20 |
+
_e($text, DUPLICATOR_LANG_SLUG);
|
21 |
+
}
|
22 |
+
|
23 |
+
static public function __($text)
|
24 |
+
{
|
25 |
+
return __($text, DUPLICATOR_LANG_SLUG);
|
26 |
+
}
|
27 |
+
|
28 |
/**
|
29 |
* returns the snapshot url
|
30 |
*/
|
define.php
CHANGED
@@ -1,13 +1,15 @@
|
|
1 |
<?php
|
2 |
//Prevent directly browsing to the file
|
3 |
if (function_exists('plugin_dir_url')) {
|
4 |
-
define('DUPLICATOR_VERSION', '0.5.
|
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");
|
8 |
define("DUPLICATOR_CERTIFIED", "http://lifeinthegrid.com/duplicator-hosts");
|
9 |
define('DUPLICATOR_PLUGIN_URL', plugin_dir_url(__FILE__));
|
10 |
define('DUPLICATOR_SITE_URL', get_site_url());
|
|
|
|
|
11 |
|
12 |
|
13 |
/* Paths should ALWAYS read "/"
|
@@ -39,7 +41,7 @@ if (function_exists('plugin_dir_url')) {
|
|
39 |
define("DUPLICATOR_SCAN_CACHESIZE", 524288); //512K
|
40 |
define("DUPLICATOR_SCAN_DBSIZE", 52428800); //50MB
|
41 |
define("DUPLICATOR_SCAN_DBROWS", 250000);
|
42 |
-
define("DUPLICATOR_SCAN_TIMEOUT",
|
43 |
define("DUPLICATOR_SCAN_MIN_WP", "3.7.0");
|
44 |
define("DUPLICATOR_SCAN_USELEGACY", true);
|
45 |
$GLOBALS['DUPLICATOR_SERVER_LIST'] = array('Apache','LiteSpeed', 'Nginx', 'Lighttpd', 'IIS', 'WebServerX', 'uWSGI');
|
1 |
<?php
|
2 |
//Prevent directly browsing to the file
|
3 |
if (function_exists('plugin_dir_url')) {
|
4 |
+
define('DUPLICATOR_VERSION', '0.5.20');
|
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");
|
8 |
define("DUPLICATOR_CERTIFIED", "http://lifeinthegrid.com/duplicator-hosts");
|
9 |
define('DUPLICATOR_PLUGIN_URL', plugin_dir_url(__FILE__));
|
10 |
define('DUPLICATOR_SITE_URL', get_site_url());
|
11 |
+
define('DUPLICATOR_LANG_SLUG', 'wpduplicator');
|
12 |
+
|
13 |
|
14 |
|
15 |
/* Paths should ALWAYS read "/"
|
41 |
define("DUPLICATOR_SCAN_CACHESIZE", 524288); //512K
|
42 |
define("DUPLICATOR_SCAN_DBSIZE", 52428800); //50MB
|
43 |
define("DUPLICATOR_SCAN_DBROWS", 250000);
|
44 |
+
define("DUPLICATOR_SCAN_TIMEOUT", 150); //Seconds
|
45 |
define("DUPLICATOR_SCAN_MIN_WP", "3.7.0");
|
46 |
define("DUPLICATOR_SCAN_USELEGACY", true);
|
47 |
$GLOBALS['DUPLICATOR_SERVER_LIST'] = array('Apache','LiteSpeed', 'Nginx', 'Lighttpd', 'IIS', 'WebServerX', 'uWSGI');
|
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.
|
7 |
Author: LifeInTheGrid
|
8 |
Author URI: http://www.lifeinthegrid.com
|
9 |
License: GPLv2 or later
|
@@ -194,7 +194,7 @@ if (is_admin() == true) {
|
|
194 |
|
195 |
$perms = 'manage_options';
|
196 |
$perms = apply_filters($wpfront_caps_translator, $perms);
|
197 |
-
|
198 |
|
199 |
//Apply Scripts
|
200 |
add_action('admin_print_scripts-' . $page_packages, 'duplicator_scripts');
|
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.20
|
7 |
Author: LifeInTheGrid
|
8 |
Author URI: http://www.lifeinthegrid.com
|
9 |
License: GPLv2 or later
|
194 |
|
195 |
$perms = 'manage_options';
|
196 |
$perms = apply_filters($wpfront_caps_translator, $perms);
|
197 |
+
//$page_gopro = add_submenu_page('duplicator', __('Go Pro!', 'wpduplicator'), __('Go Pro!', 'wpduplicator'), $perms, 'duplicator-gopro', 'duplicator_get_menu');
|
198 |
|
199 |
//Apply Scripts
|
200 |
add_action('admin_print_scripts-' . $page_packages, 'duplicator_scripts');
|
installer/build/ajax.step1.php
CHANGED
@@ -42,15 +42,17 @@ error_reporting(E_ERROR);
|
|
42 |
//===============================
|
43 |
if (isset($_GET['dbtest'])) {
|
44 |
|
45 |
-
$html
|
46 |
-
$
|
47 |
-
$
|
48 |
-
$
|
|
|
|
|
49 |
|
50 |
$tstSrv = ($dbConn) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
|
51 |
$tstDB = ($dbFound) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
|
52 |
$html .= "<div class='dup-db-test'>";
|
53 |
-
$html .= "<small style='display:block; padding:5px'>Using Connection String:<br/>
|
54 |
$html .= "<label>Server Connected:</label> {$tstSrv} <br/>";
|
55 |
$html .= "<label>Database Found:</label> {$tstDB} <br/>";
|
56 |
|
@@ -75,7 +77,7 @@ if (isset($_GET['dbtest'])) {
|
|
75 |
function_exists('mysqli_connect') or DUPX_Log::Error(ERR_MYSQLI_SUPPORT);
|
76 |
|
77 |
//ERR_DBCONNECT
|
78 |
-
$dbh = DupUtil::
|
79 |
($dbh) or DUPX_Log::Error(ERR_DBCONNECT . mysqli_connect_error());
|
80 |
if ($_POST['dbaction'] == 'empty') {
|
81 |
mysqli_select_db($dbh, $_POST['dbname']) or DUPX_Log::Error(sprintf(ERR_DBCREATE, $_POST['dbname']));
|
@@ -181,11 +183,13 @@ $patterns = array(
|
|
181 |
"/'DB_PASSWORD',\s*'.*?'/",
|
182 |
"/'DB_HOST',\s*'.*?'/");
|
183 |
|
|
|
|
|
184 |
$replace = array(
|
185 |
"'DB_NAME', " . '\'' . $_POST['dbname'] . '\'',
|
186 |
"'DB_USER', " . '\'' . $_POST['dbuser'] . '\'',
|
187 |
"'DB_PASSWORD', " . '\'' . DupUtil::preg_replacement_quote($_POST['dbpass']) . '\'',
|
188 |
-
"'DB_HOST', " . '\'' . $
|
189 |
|
190 |
//SSL CHECKS
|
191 |
if ($_POST['ssl_admin']) {
|
@@ -350,7 +354,7 @@ while ($counter < $sql_result_file_length) {
|
|
350 |
|
351 |
if (!mysqli_ping($dbh)) {
|
352 |
mysqli_close($dbh);
|
353 |
-
$dbh = DupUtil::
|
354 |
}
|
355 |
DUPX_Log::Info("**ERROR** database error write '{$err}' - [sql=" . substr($sql_result_file_data[$counter], 0, 75) . "...]");
|
356 |
$dbquery_errs++;
|
42 |
//===============================
|
43 |
if (isset($_GET['dbtest'])) {
|
44 |
|
45 |
+
$html = "";
|
46 |
+
$baseport = parse_url($_POST['dbhost'], PHP_URL_PORT);
|
47 |
+
$dbConn = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], null, $_POST['dbport']);
|
48 |
+
$dbErr = mysqli_connect_error();
|
49 |
+
$dbFound = mysqli_select_db($dbConn, $_POST['dbname']);
|
50 |
+
$port_view = (is_int($baseport) || substr($_POST['dbhost'], -1) == ":") ? "Port=[Set in Host]" : "Port={$_POST['dbport']}";
|
51 |
|
52 |
$tstSrv = ($dbConn) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
|
53 |
$tstDB = ($dbFound) ? "<div class='dup-pass'>Success</div>" : "<div class='dup-fail'>Fail</div>";
|
54 |
$html .= "<div class='dup-db-test'>";
|
55 |
+
$html .= "<small style='display:block; padding:5px'>Using Connection String:<br/>Host={$_POST['dbhost']}; Database={$_POST['dbname']}; Uid={$_POST['dbuser']}; Pwd={$_POST['dbpass']}; {$port_view}</small>";
|
56 |
$html .= "<label>Server Connected:</label> {$tstSrv} <br/>";
|
57 |
$html .= "<label>Database Found:</label> {$tstDB} <br/>";
|
58 |
|
77 |
function_exists('mysqli_connect') or DUPX_Log::Error(ERR_MYSQLI_SUPPORT);
|
78 |
|
79 |
//ERR_DBCONNECT
|
80 |
+
$dbh = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], null, $_POST['dbport']);
|
81 |
($dbh) or DUPX_Log::Error(ERR_DBCONNECT . mysqli_connect_error());
|
82 |
if ($_POST['dbaction'] == 'empty') {
|
83 |
mysqli_select_db($dbh, $_POST['dbname']) or DUPX_Log::Error(sprintf(ERR_DBCREATE, $_POST['dbname']));
|
183 |
"/'DB_PASSWORD',\s*'.*?'/",
|
184 |
"/'DB_HOST',\s*'.*?'/");
|
185 |
|
186 |
+
$db_host = ($_POST['dbport'] == 3306) ? $_POST['dbhost'] : "{$_POST['dbhost']}:{$_POST['dbport']}";
|
187 |
+
|
188 |
$replace = array(
|
189 |
"'DB_NAME', " . '\'' . $_POST['dbname'] . '\'',
|
190 |
"'DB_USER', " . '\'' . $_POST['dbuser'] . '\'',
|
191 |
"'DB_PASSWORD', " . '\'' . DupUtil::preg_replacement_quote($_POST['dbpass']) . '\'',
|
192 |
+
"'DB_HOST', " . '\'' . $db_host . '\'');
|
193 |
|
194 |
//SSL CHECKS
|
195 |
if ($_POST['ssl_admin']) {
|
354 |
|
355 |
if (!mysqli_ping($dbh)) {
|
356 |
mysqli_close($dbh);
|
357 |
+
$dbh = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], $_POST['dbname'], $_POST['dbport'] );
|
358 |
}
|
359 |
DUPX_Log::Info("**ERROR** database error write '{$err}' - [sql=" . substr($sql_result_file_data[$counter], 0, 75) . "...]");
|
360 |
$dbquery_errs++;
|
installer/build/ajax.step2.php
CHANGED
@@ -20,7 +20,7 @@ error_reporting(E_ERROR);
|
|
20 |
$ajax2_start = DupUtil::get_microtime();
|
21 |
|
22 |
//MYSQL CONNECTION
|
23 |
-
$dbh = DupUtil::
|
24 |
$charset_server = @mysqli_character_set_name($dbh);
|
25 |
@mysqli_query($dbh, "SET wait_timeout = {$GLOBALS['DB_MAX_TIME']}");
|
26 |
DupUtil::mysql_set_charset($dbh, $_POST['dbcharset'], $_POST['dbcollate']);
|
20 |
$ajax2_start = DupUtil::get_microtime();
|
21 |
|
22 |
//MYSQL CONNECTION
|
23 |
+
$dbh = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], html_entity_decode($_POST['dbpass']), $_POST['dbname'], $_POST['dbport']);
|
24 |
$charset_server = @mysqli_character_set_name($dbh);
|
25 |
@mysqli_query($dbh, "SET wait_timeout = {$GLOBALS['DB_MAX_TIME']}");
|
26 |
DupUtil::mysql_set_charset($dbh, $_POST['dbcharset'], $_POST['dbcollate']);
|
installer/build/assets/inc.css.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
// Exit if accessed directly
|
3 |
if (! defined('DUPLICATOR_INIT')) {
|
4 |
$_baseURL = strlen($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] :$_SERVER['HTTP_HOST'];
|
5 |
$_baseURL = "http://" . $_baseURL;
|
@@ -75,6 +75,7 @@
|
|
75 |
div.dup-step1-modes {padding:0px 15px 0 0px;}
|
76 |
div#dup-step1-dbconn {margin:auto; text-align:center; margin:15px 0 20px 0px}
|
77 |
input#dup-step1-dbconn-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer}
|
|
|
78 |
div.dup-db-test label{display:inline-block; width:150px; font-weight:bold; white-space:nowrap;}
|
79 |
div.dup-db-test small{display:block; margin:5px 0 5px 0px; font-style:italic; color:#444}
|
80 |
div#dbconn-test-msg {font-size:12px}
|
1 |
<?php
|
2 |
+
// Exit if accessed directly
|
3 |
if (! defined('DUPLICATOR_INIT')) {
|
4 |
$_baseURL = strlen($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] :$_SERVER['HTTP_HOST'];
|
5 |
$_baseURL = "http://" . $_baseURL;
|
75 |
div.dup-step1-modes {padding:0px 15px 0 0px;}
|
76 |
div#dup-step1-dbconn {margin:auto; text-align:center; margin:15px 0 20px 0px}
|
77 |
input#dup-step1-dbconn-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer}
|
78 |
+
input#dup-step1-dbport-btn {font-size:11px; height:20px; border:1px solid gray; border-radius:3px; cursor:pointer; width:85px}
|
79 |
div.dup-db-test label{display:inline-block; width:150px; font-weight:bold; white-space:nowrap;}
|
80 |
div.dup-db-test small{display:block; margin:5px 0 5px 0px; font-style:italic; color:#444}
|
81 |
div#dbconn-test-msg {font-size:12px}
|
installer/build/classes/class.config.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
// Exit if accessed directly
|
3 |
if (! defined('DUPLICATOR_INIT')) {
|
4 |
$_baseURL = strlen($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST'];
|
5 |
$_baseURL = "http://" . $_baseURL;
|
1 |
<?php
|
2 |
+
// Exit if accessed directly
|
3 |
if (! defined('DUPLICATOR_INIT')) {
|
4 |
$_baseURL = strlen($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST'];
|
5 |
$_baseURL = "http://" . $_baseURL;
|
installer/build/classes/class.utils.php
CHANGED
@@ -176,17 +176,16 @@ class DupUtil {
|
|
176 |
* @param same as mysqli_connect
|
177 |
* @return database connection handle
|
178 |
*/
|
179 |
-
static public function
|
180 |
-
if ( ! $port ) {
|
181 |
-
$port = ini_get("mysqli.default_port");
|
182 |
-
$port = empty($port) ? 3306 : $port;
|
183 |
-
}
|
184 |
|
185 |
-
|
|
|
|
|
186 |
$url_parts = parse_url( $host );
|
187 |
$dbh = @mysqli_connect( 'localhost', $username, $password, $dbname, null, $url_parts['path'] );
|
188 |
}
|
189 |
-
else
|
|
|
190 |
$dbh = @mysqli_connect( $host, $username, $password, $dbname, $port );
|
191 |
}
|
192 |
return $dbh;
|
176 |
* @param same as mysqli_connect
|
177 |
* @return database connection handle
|
178 |
*/
|
179 |
+
static public function db_connect( $host, $username, $password, $dbname = '', $port = null ) {
|
|
|
|
|
|
|
|
|
180 |
|
181 |
+
//sock connections
|
182 |
+
if ( 'sock' === substr( $host, -4 ) )
|
183 |
+
{
|
184 |
$url_parts = parse_url( $host );
|
185 |
$dbh = @mysqli_connect( 'localhost', $username, $password, $dbname, null, $url_parts['path'] );
|
186 |
}
|
187 |
+
else
|
188 |
+
{
|
189 |
$dbh = @mysqli_connect( $host, $username, $password, $dbname, $port );
|
190 |
}
|
191 |
return $dbh;
|
installer/build/main.installer.php
CHANGED
@@ -106,6 +106,8 @@ $GLOBALS['FW_PACKAGE_NOTES'] = '%fwrite_package_notes%';
|
|
106 |
$GLOBALS['FW_SECURE_NAME'] = '%fwrite_secure_name%';
|
107 |
$GLOBALS['FW_DBHOST'] = '%fwrite_dbhost%';
|
108 |
$GLOBALS['FW_DBHOST'] = empty($GLOBALS['FW_DBHOST']) ? 'localhost' : $GLOBALS['FW_DBHOST'];
|
|
|
|
|
109 |
$GLOBALS['FW_DBNAME'] = '%fwrite_dbname%';
|
110 |
$GLOBALS['FW_DBUSER'] = '%fwrite_dbuser%';
|
111 |
$GLOBALS['FW_DBPASS'] = '%fwrite_dbpass%';
|
@@ -148,14 +150,16 @@ define("DUPLICATOR_SSDIR_NAME", 'wp-snapshots'); //This should match DUPLICATOR
|
|
148 |
|
149 |
//SHARED POST PARMS
|
150 |
$_POST['action_step'] = isset($_POST['action_step']) ? $_POST['action_step'] : "1";
|
|
|
|
|
|
|
151 |
$_POST['dbhost'] = isset($_POST['dbhost']) ? trim($_POST['dbhost']) : null;
|
|
|
152 |
$_POST['dbuser'] = isset($_POST['dbuser']) ? trim($_POST['dbuser']) : null;
|
153 |
$_POST['dbpass'] = isset($_POST['dbpass']) ? trim($_POST['dbpass']) : null;
|
154 |
$_POST['dbname'] = isset($_POST['dbname']) ? trim($_POST['dbname']) : null;
|
155 |
$_POST['dbcharset'] = isset($_POST['dbcharset']) ? trim($_POST['dbcharset']) : $GLOBALS['DBCHARSET_DEFAULT'];
|
156 |
$_POST['dbcollate'] = isset($_POST['dbcollate']) ? trim($_POST['dbcollate']) : $GLOBALS['DBCOLLATE_DEFAULT'];
|
157 |
-
$_POST['dbport'] = isset($_POST['dbhost']) ? parse_url($_POST['dbhost'], PHP_URL_PORT) : 3306;
|
158 |
-
$_POST['dbport'] = (! empty($_POST['dbport'])) ? $_POST['dbport'] : 3306;
|
159 |
|
160 |
//GLOBALS
|
161 |
$GLOBALS["SQL_FILE_NAME"] = "installer-data.sql";
|
@@ -167,7 +171,7 @@ $GLOBALS['CHOWN_ROOT_PATH'] = @chmod("{$GLOBALS['CURRENT_ROOT_PATH']}", 0755);
|
|
167 |
$GLOBALS['CHOWN_LOG_PATH'] = @chmod("{$GLOBALS['CURRENT_ROOT_PATH']}/{$GLOBALS['LOG_FILE_NAME']}", 0644);
|
168 |
$GLOBALS['URL_SSL'] = (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? true : false;
|
169 |
$GLOBALS['URL_PATH'] = ($GLOBALS['URL_SSL']) ? "https://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}" : "http://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
|
170 |
-
|
171 |
|
172 |
|
173 |
|
106 |
$GLOBALS['FW_SECURE_NAME'] = '%fwrite_secure_name%';
|
107 |
$GLOBALS['FW_DBHOST'] = '%fwrite_dbhost%';
|
108 |
$GLOBALS['FW_DBHOST'] = empty($GLOBALS['FW_DBHOST']) ? 'localhost' : $GLOBALS['FW_DBHOST'];
|
109 |
+
$GLOBALS['FW_DBPORT'] = '%fwrite_dbport%';
|
110 |
+
$GLOBALS['FW_DBPORT'] = empty($GLOBALS['FW_DBPORT']) ? 3306 : $GLOBALS['FW_DBPORT'];
|
111 |
$GLOBALS['FW_DBNAME'] = '%fwrite_dbname%';
|
112 |
$GLOBALS['FW_DBUSER'] = '%fwrite_dbuser%';
|
113 |
$GLOBALS['FW_DBPASS'] = '%fwrite_dbpass%';
|
150 |
|
151 |
//SHARED POST PARMS
|
152 |
$_POST['action_step'] = isset($_POST['action_step']) ? $_POST['action_step'] : "1";
|
153 |
+
|
154 |
+
/* Host has several combinations :
|
155 |
+
localhost | localhost:55 | localhost: | http://localhost | http://localhost:55 */
|
156 |
$_POST['dbhost'] = isset($_POST['dbhost']) ? trim($_POST['dbhost']) : null;
|
157 |
+
$_POST['dbport'] = isset($_POST['dbport']) ? trim($_POST['dbport']) : 3306;
|
158 |
$_POST['dbuser'] = isset($_POST['dbuser']) ? trim($_POST['dbuser']) : null;
|
159 |
$_POST['dbpass'] = isset($_POST['dbpass']) ? trim($_POST['dbpass']) : null;
|
160 |
$_POST['dbname'] = isset($_POST['dbname']) ? trim($_POST['dbname']) : null;
|
161 |
$_POST['dbcharset'] = isset($_POST['dbcharset']) ? trim($_POST['dbcharset']) : $GLOBALS['DBCHARSET_DEFAULT'];
|
162 |
$_POST['dbcollate'] = isset($_POST['dbcollate']) ? trim($_POST['dbcollate']) : $GLOBALS['DBCOLLATE_DEFAULT'];
|
|
|
|
|
163 |
|
164 |
//GLOBALS
|
165 |
$GLOBALS["SQL_FILE_NAME"] = "installer-data.sql";
|
171 |
$GLOBALS['CHOWN_LOG_PATH'] = @chmod("{$GLOBALS['CURRENT_ROOT_PATH']}/{$GLOBALS['LOG_FILE_NAME']}", 0644);
|
172 |
$GLOBALS['URL_SSL'] = (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? true : false;
|
173 |
$GLOBALS['URL_PATH'] = ($GLOBALS['URL_SSL']) ? "https://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}" : "http://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
|
174 |
+
|
175 |
|
176 |
|
177 |
|
installer/build/view.step1.php
CHANGED
@@ -70,6 +70,7 @@
|
|
70 |
success: function(data, textStatus, xhr){
|
71 |
if (typeof(data) != 'undefined' && data.pass == 1) {
|
72 |
$("#ajax-dbhost").val($("#dbhost").val());
|
|
|
73 |
$("#ajax-dbuser").val($("#dbuser").val());
|
74 |
$("#ajax-dbpass").val($("#dbpass").val());
|
75 |
$("#ajax-dbname").val($("#dbname").val());
|
@@ -77,7 +78,7 @@
|
|
77 |
$("#ajax-dbcollate").val($("#dbcollate").val());
|
78 |
$("#ajax-logging").val($("#logging").val());
|
79 |
$("#ajax-json").val(escape(JSON.stringify(data)));
|
80 |
-
setTimeout(function() {$('#dup-step1-result-form').submit();},
|
81 |
$('#progress-area').fadeOut(700);
|
82 |
} else {
|
83 |
Duplicator.hideProgressBar();
|
@@ -112,7 +113,7 @@
|
|
112 |
/** **********************************************
|
113 |
* METHOD: Shows results of database connection
|
114 |
* Timeout (45000 = 45 secs) */
|
115 |
-
Duplicator.dlgTestDB = function () {
|
116 |
$.ajax({
|
117 |
type: "POST",
|
118 |
timeout: 45000,
|
@@ -133,6 +134,13 @@
|
|
133 |
: $('#dup-step1-warning-emptydb').hide(300);
|
134 |
};
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
//DOCUMENT LOAD
|
137 |
$(document).ready(function() {
|
138 |
$('#dup-step1-dialog-data').appendTo('#dup-step1-result-container');
|
@@ -218,10 +226,26 @@ VIEW: STEP 1- INPUT -->
|
|
218 |
</div>
|
219 |
</td>
|
220 |
</tr>
|
221 |
-
<tr
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
</table>
|
226 |
|
227 |
|
@@ -313,9 +337,9 @@ Auto Posts to view.step2.php -->
|
|
313 |
<form id='dup-step1-result-form' method="post" class="content-form" style="display:none">
|
314 |
<input type="hidden" name="action_step" value="2" />
|
315 |
<input type="hidden" name="package_name" value="<?php echo $zip_file_name ?>" />
|
316 |
-
<!-- Set via jQuery -->
|
317 |
<input type="hidden" name="logging" id="ajax-logging" />
|
318 |
<input type="hidden" name="dbhost" id="ajax-dbhost" />
|
|
|
319 |
<input type="hidden" name="dbuser" id="ajax-dbuser" />
|
320 |
<input type="hidden" name="dbpass" id="ajax-dbpass" />
|
321 |
<input type="hidden" name="dbname" id="ajax-dbname" />
|
70 |
success: function(data, textStatus, xhr){
|
71 |
if (typeof(data) != 'undefined' && data.pass == 1) {
|
72 |
$("#ajax-dbhost").val($("#dbhost").val());
|
73 |
+
$("#ajax-dbport").val($("#dbport").val());
|
74 |
$("#ajax-dbuser").val($("#dbuser").val());
|
75 |
$("#ajax-dbpass").val($("#dbpass").val());
|
76 |
$("#ajax-dbname").val($("#dbname").val());
|
78 |
$("#ajax-dbcollate").val($("#dbcollate").val());
|
79 |
$("#ajax-logging").val($("#logging").val());
|
80 |
$("#ajax-json").val(escape(JSON.stringify(data)));
|
81 |
+
setTimeout(function() {$('#dup-step1-result-form').submit();}, 1000);
|
82 |
$('#progress-area').fadeOut(700);
|
83 |
} else {
|
84 |
Duplicator.hideProgressBar();
|
113 |
/** **********************************************
|
114 |
* METHOD: Shows results of database connection
|
115 |
* Timeout (45000 = 45 secs) */
|
116 |
+
Duplicator.dlgTestDB = function () {
|
117 |
$.ajax({
|
118 |
type: "POST",
|
119 |
timeout: 45000,
|
134 |
: $('#dup-step1-warning-emptydb').hide(300);
|
135 |
};
|
136 |
|
137 |
+
Duplicator.togglePort = function () {
|
138 |
+
|
139 |
+
$('#dup-step1-dbport-btn').hide();
|
140 |
+
$('#dbport').show();
|
141 |
+
}
|
142 |
+
|
143 |
+
|
144 |
//DOCUMENT LOAD
|
145 |
$(document).ready(function() {
|
146 |
$('#dup-step1-dialog-data').appendTo('#dup-step1-result-container');
|
226 |
</div>
|
227 |
</td>
|
228 |
</tr>
|
229 |
+
<tr>
|
230 |
+
<td>Host</td>
|
231 |
+
<td>
|
232 |
+
<input type="text" name="dbhost" id="dbhost" parsley-required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBHOST']); ?>" placeholder="localhost" style="width:410px" />
|
233 |
+
<input id="dup-step1-dbport-btn" type="button" onclick="Duplicator.togglePort()" style="" value="Port: <?php echo htmlspecialchars($GLOBALS['FW_DBPORT']); ?>" />
|
234 |
+
<input name="dbport" id="dbport" type="text" style="width:80px; display:none" value="<?php echo htmlspecialchars($GLOBALS['FW_DBPORT']); ?>" />
|
235 |
+
</td>
|
236 |
+
</tr>
|
237 |
+
<tr>
|
238 |
+
<td>Name</td>
|
239 |
+
<td><input type="text" name="dbname" id="dbname" parsley-required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBNAME']); ?>" placeholder="new or existing database name" /></td>
|
240 |
+
</tr>
|
241 |
+
<tr>
|
242 |
+
<td>User</td>
|
243 |
+
<td><input type="text" name="dbuser" id="dbuser" parsley-required="true" value="<?php echo htmlspecialchars($GLOBALS['FW_DBUSER']); ?>" placeholder="valid database username" /></td>
|
244 |
+
</tr>
|
245 |
+
<tr>
|
246 |
+
<td>Password</td>
|
247 |
+
<td><input type="text" name="dbpass" id="dbpass" value="<?php echo htmlspecialchars($GLOBALS['FW_DBPASS']); ?>" placeholder="valid database user password" /></td>
|
248 |
+
</tr>
|
249 |
</table>
|
250 |
|
251 |
|
337 |
<form id='dup-step1-result-form' method="post" class="content-form" style="display:none">
|
338 |
<input type="hidden" name="action_step" value="2" />
|
339 |
<input type="hidden" name="package_name" value="<?php echo $zip_file_name ?>" />
|
|
|
340 |
<input type="hidden" name="logging" id="ajax-logging" />
|
341 |
<input type="hidden" name="dbhost" id="ajax-dbhost" />
|
342 |
+
<input type="hidden" name="dbport" id="ajax-dbport" />
|
343 |
<input type="hidden" name="dbuser" id="ajax-dbuser" />
|
344 |
<input type="hidden" name="dbpass" id="ajax-dbpass" />
|
345 |
<input type="hidden" name="dbname" id="ajax-dbname" />
|
installer/build/view.step2.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
header("Location: $_baseURL");
|
8 |
exit;
|
9 |
}
|
10 |
-
$dbh =
|
11 |
|
12 |
$all_tables = DupUtil::get_database_tables($dbh);
|
13 |
$active_plugins = DupUtil::get_active_plugins($dbh);
|
@@ -48,7 +48,7 @@
|
|
48 |
if (typeof(data) != 'undefined' && data.step2.pass == 1) {
|
49 |
$("#ajax-url_new").val($("#url_new").val());
|
50 |
$("#ajax-json").val(escape(JSON.stringify(data)));
|
51 |
-
setTimeout(function(){$('#dup-step2-result-form').submit();},
|
52 |
$('#progress-area').fadeOut(1800);
|
53 |
} else {
|
54 |
Duplicator.hideProgressBar();
|
@@ -133,6 +133,7 @@ VIEW: STEP 2- INPUT -->
|
|
133 |
<input type="hidden" name="package_name" value="<?php echo $_POST['package_name'] ?>" />
|
134 |
<input type="hidden" name="json" value="<?php echo $_POST['json']; ?>" />
|
135 |
<input type="hidden" name="dbhost" value="<?php echo $_POST['dbhost'] ?>" />
|
|
|
136 |
<input type="hidden" name="dbuser" value="<?php echo $_POST['dbuser'] ?>" />
|
137 |
<input type="hidden" name="dbpass" value="<?php echo htmlentities($_POST['dbpass']) ?>" />
|
138 |
<input type="hidden" name="dbname" value="<?php echo $_POST['dbname'] ?>" />
|
7 |
header("Location: $_baseURL");
|
8 |
exit;
|
9 |
}
|
10 |
+
$dbh = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], $_POST['dbname'], $_POST['dbport']);
|
11 |
|
12 |
$all_tables = DupUtil::get_database_tables($dbh);
|
13 |
$active_plugins = DupUtil::get_active_plugins($dbh);
|
48 |
if (typeof(data) != 'undefined' && data.step2.pass == 1) {
|
49 |
$("#ajax-url_new").val($("#url_new").val());
|
50 |
$("#ajax-json").val(escape(JSON.stringify(data)));
|
51 |
+
setTimeout(function(){$('#dup-step2-result-form').submit();}, 1000);
|
52 |
$('#progress-area').fadeOut(1800);
|
53 |
} else {
|
54 |
Duplicator.hideProgressBar();
|
133 |
<input type="hidden" name="package_name" value="<?php echo $_POST['package_name'] ?>" />
|
134 |
<input type="hidden" name="json" value="<?php echo $_POST['json']; ?>" />
|
135 |
<input type="hidden" name="dbhost" value="<?php echo $_POST['dbhost'] ?>" />
|
136 |
+
<input type="hidden" name="dbport" value="<?php echo $_POST['dbport'] ?>" />
|
137 |
<input type="hidden" name="dbuser" value="<?php echo $_POST['dbuser'] ?>" />
|
138 |
<input type="hidden" name="dbpass" value="<?php echo htmlentities($_POST['dbpass']) ?>" />
|
139 |
<input type="hidden" name="dbname" value="<?php echo $_POST['dbname'] ?>" />
|
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.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-01-08 21:27-0700\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Cory Lamle <cory@lifeinthegrid.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,132 +20,124 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Textdomain-Support: yes"
|
22 |
|
23 |
-
#: duplicator.php:
|
24 |
-
#: views/packages/controller.php:
|
25 |
-
#: views/packages/
|
26 |
-
#: views/packages/list.base.php:239
|
27 |
#@ wpduplicator
|
28 |
msgid "Packages"
|
29 |
msgstr "Archive"
|
30 |
|
31 |
-
#: duplicator.php:
|
32 |
-
#: views/settings/controller.php:
|
33 |
#@ wpduplicator
|
34 |
msgid "Settings"
|
35 |
msgstr "Einstellungen"
|
36 |
|
37 |
-
#: duplicator.php:
|
38 |
-
#: views/tools/controller.php:
|
39 |
#@ wpduplicator
|
40 |
msgid "Tools"
|
41 |
msgstr "Werkzeuge"
|
42 |
|
43 |
-
#:
|
44 |
-
#@ wpduplicator
|
45 |
-
msgid "Support"
|
46 |
-
msgstr "Unterstützen"
|
47 |
-
|
48 |
-
#: duplicator.php:243
|
49 |
#@ wpduplicator
|
50 |
msgid "Manage"
|
51 |
msgstr "Verwalten"
|
52 |
|
53 |
#: classes/ui.php:112
|
54 |
-
#@
|
55 |
msgid "Remove file(s) now"
|
56 |
-
msgstr ""
|
57 |
|
58 |
#: classes/ui.php:113
|
59 |
-
#@ default
|
60 |
-
msgid "Dismiss this notice"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: views/inc.header.php:10
|
64 |
#@ wpduplicator
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#: views/help/help.php:
|
69 |
#@ wpduplicator
|
70 |
msgid "Knowledgebase"
|
71 |
msgstr "Wissens-Datenbank"
|
72 |
|
73 |
-
#: views/help/help.php:
|
74 |
#@ wpduplicator
|
75 |
msgid "Choose A Section"
|
76 |
msgstr "Wähle eine Rubrik"
|
77 |
|
78 |
-
#: views/help/help.php:
|
79 |
#@ wpduplicator
|
80 |
msgid "Quick Start"
|
81 |
msgstr "Schnell-Start"
|
82 |
|
83 |
-
#: views/help/help.php:
|
84 |
#@ wpduplicator
|
85 |
msgid "User Guide"
|
86 |
msgstr "Benutzerhandbuch"
|
87 |
|
88 |
-
#: views/help/help.php:
|
89 |
#@ wpduplicator
|
90 |
msgid "FAQs"
|
91 |
msgstr "Häufig gestellte Fragen"
|
92 |
|
93 |
-
#: views/help/help.php:
|
94 |
#@ wpduplicator
|
95 |
msgid "Change Log"
|
96 |
msgstr "Liste der Änderungen"
|
97 |
|
98 |
-
#: views/help/help.php:
|
99 |
#@ wpduplicator
|
100 |
msgid "Product Page"
|
101 |
msgstr "Produkt-Seite"
|
102 |
|
103 |
-
#: views/help/help.php:
|
104 |
#@ wpduplicator
|
105 |
msgid "Approved Hosting"
|
106 |
msgstr "Empfohlene Hosting-Provider"
|
107 |
|
108 |
-
#: views/help/help.php:
|
109 |
#@ wpduplicator
|
110 |
msgid "Online Support"
|
111 |
msgstr "Online Support"
|
112 |
|
113 |
-
#: views/help/about.php:
|
114 |
#@ wpduplicator
|
115 |
msgid "Support Duplicator"
|
116 |
msgstr "Unterstützung Duplicator"
|
117 |
|
118 |
-
#: views/help/about.php:
|
119 |
#@ wpduplicator
|
120 |
msgid "Partner with Us"
|
121 |
msgstr "Unsere Partner"
|
122 |
|
123 |
-
#: views/help/about.php:
|
124 |
#@ wpduplicator
|
125 |
msgid "Keep Active and Online"
|
126 |
msgstr "Bitte unterstütze den Duplicator mit einer Spende"
|
127 |
|
128 |
-
#: views/help/about.php:
|
129 |
#@ wpduplicator
|
130 |
msgid "Leave 5 Stars"
|
131 |
msgstr "Vergebe 5 Sterne"
|
132 |
|
133 |
-
#: views/help/about.php:
|
134 |
#@ wpduplicator
|
135 |
msgid "Spread the Word"
|
136 |
msgstr "Verbreitung des Inhaltes"
|
137 |
|
138 |
-
#: views/help/about.php:
|
139 |
#@ wpduplicator
|
140 |
msgid "Duplicate Your WordPress"
|
141 |
msgstr "Duplizieren dein WordPress"
|
142 |
|
143 |
-
#: views/help/about.php:
|
144 |
#@ wpduplicator
|
145 |
msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
|
146 |
msgstr "Schnelle WordPress-Vervielfältigung von LifeInTheGrid.com"
|
147 |
|
148 |
-
#: views/packages/
|
|
|
|
|
|
|
149 |
#@ wpduplicator
|
150 |
msgid "Create New"
|
151 |
msgstr "Neu erzeugen"
|
@@ -155,11 +147,6 @@ msgstr "Neu erzeugen"
|
|
155 |
msgid "No Packages Found."
|
156 |
msgstr "Keine Archive gefunden."
|
157 |
|
158 |
-
#: views/packages/list-nodata.php:8
|
159 |
-
#@ wpduplicator
|
160 |
-
msgid "Click the 'Create New' tab to build a package."
|
161 |
-
msgstr "Klicke zum Erstellen eines neuen Archivs auf die Registerkarte 'Neu erzeugen'."
|
162 |
-
|
163 |
#: views/packages/list-nodata.php:13
|
164 |
#@ wpduplicator
|
165 |
msgid "Please visit the"
|
@@ -185,878 +172,861 @@ msgstr "und suche im Änderungsprotokoll nach weiteren Anweisungen."
|
|
185 |
msgid "Hide this message"
|
186 |
msgstr "Diese Nachricht ausblenden"
|
187 |
|
188 |
-
#: views/packages/list.base.php:
|
189 |
#@ wpduplicator
|
190 |
msgid "Bulk Actions"
|
191 |
msgstr "Auswahl"
|
192 |
|
193 |
-
#: views/packages/list.base.php:
|
194 |
#@ wpduplicator
|
195 |
msgid "Delete selected package(s)"
|
196 |
msgstr "Ausgewählte Archive löschen"
|
197 |
|
198 |
-
#: views/packages/list.base.php:
|
199 |
#@ wpduplicator
|
200 |
msgid "Delete"
|
201 |
msgstr "Löschen"
|
202 |
|
203 |
-
#: views/packages/list.base.php:
|
204 |
#@ wpduplicator
|
205 |
msgid "Apply"
|
206 |
msgstr "Anwenden"
|
207 |
|
208 |
-
#: views/packages/list.base.php:
|
209 |
#@ wpduplicator
|
210 |
msgid "Package Logs"
|
211 |
msgstr "Archiv Logs"
|
212 |
|
213 |
-
#: views/packages/list.base.php:
|
214 |
#@ wpduplicator
|
215 |
msgid "Select all packages"
|
216 |
msgstr "Alle Archive auswählen"
|
217 |
|
218 |
-
#: views/packages/list.base.php:
|
219 |
-
#: views/packages/new3.base.php:
|
220 |
#@ wpduplicator
|
221 |
msgid "Details"
|
222 |
msgstr "Details"
|
223 |
|
224 |
-
#: views/packages/list.base.php:
|
225 |
#@ wpduplicator
|
226 |
msgid "Created"
|
227 |
msgstr "Erstellt"
|
228 |
|
229 |
-
#: views/packages/list.base.php:
|
230 |
-
#: views/packages/new2.base.php:
|
231 |
-
#: views/packages/new2.base.php:
|
232 |
#@ wpduplicator
|
233 |
msgid "Size"
|
234 |
msgstr "Größe"
|
235 |
|
236 |
-
#: views/packages/list.base.php:
|
237 |
-
#: views/packages/new1.inc.form.php:
|
238 |
-
#: views/packages/
|
|
|
239 |
#@ wpduplicator
|
240 |
msgid "Name"
|
241 |
msgstr "Name"
|
242 |
|
243 |
-
#: views/packages/list.base.php:
|
244 |
-
#: views/
|
245 |
-
#: views/settings/general.php:100
|
246 |
#@ wpduplicator
|
247 |
msgid "Package"
|
248 |
msgstr "Archiv"
|
249 |
|
250 |
-
#: views/packages/list.base.php:
|
251 |
#@ wpduplicator
|
252 |
msgid "(No Notes Taken)"
|
253 |
msgstr "(Keine Notizen erstellt)"
|
254 |
|
255 |
-
#: views/packages/list.base.php:
|
256 |
-
#: views/packages/list.base.php:
|
257 |
#@ wpduplicator
|
258 |
msgid "View"
|
259 |
msgstr "Ansicht"
|
260 |
|
261 |
-
#: views/packages/list.base.php:
|
262 |
-
#: views/packages/new1.inc.form.php:
|
263 |
-
#: views/packages/new3.base.php:
|
264 |
#@ wpduplicator
|
265 |
msgid "Installer"
|
266 |
msgstr "Installer"
|
267 |
|
268 |
-
#: views/packages/list.base.php:
|
269 |
-
#: views/packages/new1.inc.form.php:
|
270 |
-
#: views/packages/new2.base.php:
|
271 |
-
#: views/packages/new3.base.php:
|
272 |
#@ wpduplicator
|
273 |
msgid "Archive"
|
274 |
msgstr "Archive"
|
275 |
|
276 |
-
#: views/packages/list.base.php:
|
277 |
-
#: views/packages/list.base.php:
|
278 |
-
#: views/settings/
|
279 |
-
#: views/
|
280 |
-
#: views/
|
281 |
-
#: views/
|
282 |
#@ wpduplicator
|
283 |
msgid "Version"
|
284 |
msgstr "Version"
|
285 |
|
286 |
-
#: views/packages/list.base.php:
|
287 |
-
#: views/packages/list.base.php:
|
288 |
-
#: views/packages/new1.inc.form.php:
|
289 |
-
#: views/
|
290 |
#@ wpduplicator
|
291 |
msgid "User"
|
292 |
msgstr "Benutzer"
|
293 |
|
294 |
-
#: views/packages/list.base.php:
|
295 |
-
#: views/packages/list.base.php:
|
296 |
#@ wpduplicator
|
297 |
msgid "Hash"
|
298 |
msgstr "Hash"
|
299 |
|
300 |
-
#: views/packages/list.base.php:
|
301 |
-
#: views/packages/list.base.php:
|
302 |
-
#: views/packages/new1.inc.form.php:
|
|
|
303 |
#@ wpduplicator
|
304 |
msgid "Notes"
|
305 |
msgstr "Anmerkungen"
|
306 |
|
307 |
-
#: views/packages/list.base.php:
|
308 |
#@ wpduplicator
|
309 |
msgid "Links"
|
310 |
msgstr "Links"
|
311 |
|
312 |
-
#: views/packages/list.base.php:
|
313 |
-
#@ wpduplicator
|
314 |
-
msgid "SQL File"
|
315 |
-
msgstr "SQL-Datei"
|
316 |
-
|
317 |
-
#: views/packages/list.base.php:166
|
318 |
-
#: views/packages/list.base.php:217
|
319 |
#@ wpduplicator
|
320 |
msgid "View Log"
|
321 |
msgstr "Log ansehen"
|
322 |
|
323 |
-
#: views/packages/list.base.php:
|
324 |
#@ wpduplicator
|
325 |
msgid "View Error Details"
|
326 |
msgstr "Fehler-Details ansehen"
|
327 |
|
328 |
-
#: views/packages/list.base.php:
|
329 |
#@ wpduplicator
|
330 |
msgid "This package has encountered errors. Click 'View Log' for more details. For additional support see the "
|
331 |
msgstr "Es sind Fehler aufgetreten. Klicke auf 'Log ansehen' für weitere Details. Zusätzliche Unterstützung findest du in der "
|
332 |
|
333 |
-
#: views/packages/list.base.php:
|
334 |
#@ wpduplicator
|
335 |
msgid "online knowledgebase"
|
336 |
msgstr "Online-Wissensdatenbank"
|
337 |
|
338 |
-
#: views/packages/list.base.php:
|
339 |
-
#: views/packages/new2.base.php:
|
340 |
-
#: views/packages/new2.base.php:
|
341 |
#@ wpduplicator
|
342 |
msgid "Total Size"
|
343 |
msgstr "Gesamte Größe"
|
344 |
|
345 |
-
#: views/packages/list.base.php:
|
346 |
#@ wpduplicator
|
347 |
msgid "Download Links"
|
348 |
msgstr "Download Links"
|
349 |
|
350 |
-
#: views/packages/list.base.php:
|
351 |
#@ wpduplicator
|
352 |
msgid "The following links contain sensitive data. Please share with caution!"
|
353 |
msgstr "Die folgenden Links enthalten sensible Daten. Bitte verwende sie mit Vorsicht!"
|
354 |
|
355 |
-
#: views/packages/list.base.php:
|
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 "Das Datenbank-SQL-Skript ist ein direkter Link zum Datenbank-Backup-Skript. Eine exakte Kopie ist auch im Archiv gespeichert."
|
359 |
|
360 |
-
#: views/packages/list.base.php:
|
361 |
#@ wpduplicator
|
362 |
msgid "Please select an action from the bulk action drop down menu to perform a specific action."
|
363 |
msgstr "Bitte wähle eine Aktion aus dem Dropdown-Menü aus."
|
364 |
|
365 |
-
#: views/packages/list.base.php:
|
366 |
#@ wpduplicator
|
367 |
msgid "Please select at least one package to delete."
|
368 |
msgstr "Bitte wähle mindestens ein Archiv zum Löschen."
|
369 |
|
370 |
-
#: views/packages/list.base.php:
|
371 |
#@ wpduplicator
|
372 |
msgid "Are you sure, you want to delete the selected package(s)?"
|
373 |
msgstr "Ausgewählte Archive wirklich löschen?"
|
374 |
|
375 |
-
#: views/packages/list.base.php:
|
376 |
#@ wpduplicator
|
377 |
msgid "Package File Links"
|
378 |
msgstr "Archiv-Datei Links"
|
379 |
|
380 |
-
#: views/packages/list.base.php:
|
381 |
#@ wpduplicator
|
382 |
msgid "DATABASE"
|
383 |
msgstr "Datenbank"
|
384 |
|
385 |
-
#: views/packages/list.base.php:
|
386 |
#@ wpduplicator
|
387 |
msgid "PACKAGE"
|
388 |
msgstr "Archive"
|
389 |
|
390 |
-
#: views/packages/list.base.php:
|
391 |
#@ wpduplicator
|
392 |
msgid "INSTALLER"
|
393 |
msgstr "INSTALLER"
|
394 |
|
395 |
-
#: views/packages/list.base.php:
|
396 |
#@ wpduplicator
|
397 |
msgid "LOG"
|
398 |
msgstr "Log"
|
399 |
|
400 |
-
#: views/packages/new1.base.php:
|
401 |
-
#: views/packages/new2.base.php:
|
402 |
-
#: views/packages/new3.base.php:
|
403 |
#@ wpduplicator
|
404 |
msgid "Setup"
|
405 |
msgstr "Setup"
|
406 |
|
407 |
-
#: views/packages/new1.base.php:
|
408 |
-
#: views/packages/new2.base.php:
|
409 |
-
#: views/packages/new3.base.php:
|
410 |
#@ wpduplicator
|
411 |
msgid "Scan"
|
412 |
msgstr "Scan"
|
413 |
|
414 |
-
#: views/packages/new1.base.php:
|
415 |
-
#: views/packages/new2.base.php:
|
416 |
-
#: views/packages/new2.base.php:
|
417 |
-
#: views/packages/new3.base.php:
|
418 |
#@ wpduplicator
|
419 |
msgid "Build"
|
420 |
msgstr "Erstellen"
|
421 |
|
422 |
-
#: views/packages/new1.base.php:
|
423 |
#@ wpduplicator
|
424 |
msgid "Step 1: Package Setup"
|
425 |
msgstr "Schritt 1: Archiv-Setup"
|
426 |
|
427 |
-
#: views/packages/new1.base.php:
|
428 |
#@ wpduplicator
|
429 |
msgid "Requirements:"
|
430 |
msgstr "Anforderungen:"
|
431 |
|
432 |
-
#: views/packages/new1.base.php:
|
433 |
-
#@ wpduplicator
|
434 |
-
msgid "System requirments must pass for the Duplicator to work properly. Click each link for details."
|
435 |
-
msgstr "Diese System-Anforderungen sind notwendig, damit der Duplicator richtig arbeitet. Klicke auf jeden Link für mehr Details."
|
436 |
-
|
437 |
-
#: views/packages/new1.base.php:147
|
438 |
#@ wpduplicator
|
439 |
msgid "Permissions"
|
440 |
msgstr "Berechtigungen"
|
441 |
|
442 |
-
#: views/packages/new1.base.php:
|
443 |
#@ wpduplicator
|
444 |
msgid "Required Paths"
|
445 |
msgstr "Erforderliche Pfade"
|
446 |
|
447 |
-
#: views/packages/new1.base.php:
|
448 |
#@ wpduplicator
|
449 |
msgid "Reserved Files"
|
450 |
msgstr "Reservierte Dateien"
|
451 |
|
452 |
-
#: views/packages/new1.base.php:
|
453 |
#@ wpduplicator
|
454 |
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."
|
455 |
-
msgstr "Es wurden reservierte Datei (en) im WordPress Stammverzeichnis gefunden. Reservierte Dateinamen sind installer.php,
|
456 |
|
457 |
-
#: views/packages/new1.base.php:
|
458 |
#@ wpduplicator
|
459 |
msgid "Remove Files Now"
|
460 |
msgstr "Dateien werden entfernt"
|
461 |
|
462 |
-
#: views/packages/new1.base.php:
|
463 |
#@ wpduplicator
|
464 |
msgid "Zip Archive Enabled"
|
465 |
msgstr "Zip-Archiv aktiviert"
|
466 |
|
467 |
-
#: views/packages/new1.base.php:
|
468 |
#@ wpduplicator
|
469 |
msgid "Safe Mode Off"
|
470 |
msgstr "Safe Mode Off"
|
471 |
|
472 |
-
#: views/packages/new1.base.php:
|
473 |
-
#: views/packages/new2.base.php:
|
474 |
-
#: views/packages/new2.base.php:
|
475 |
#@ wpduplicator
|
476 |
msgid "more info"
|
477 |
msgstr "mehr Informationen"
|
478 |
|
479 |
-
#: views/packages/new1.base.php:
|
480 |
#@ wpduplicator
|
481 |
msgid "PHP Support"
|
482 |
msgstr "PHP-Unterstützung"
|
483 |
|
484 |
-
#: views/packages/new2.base.php:
|
485 |
-
#: views/packages/new2.base.php:
|
486 |
-
#: views/
|
487 |
#@ wpduplicator
|
488 |
msgid "Web Server"
|
489 |
msgstr "Webserver"
|
490 |
|
491 |
-
#: views/packages/new1.inc.form.php:
|
492 |
#@ wpduplicator
|
493 |
msgid "File filter enabled"
|
494 |
msgstr "Datei-Filter aktiviert"
|
495 |
|
496 |
-
#: views/packages/new1.inc.form.php:
|
497 |
#@ wpduplicator
|
498 |
msgid "Database filter enabled"
|
499 |
msgstr "Datenbank-Filter aktiviert"
|
500 |
|
501 |
-
#: views/packages/new1.inc.form.php:
|
502 |
-
|
503 |
-
msgid "Format"
|
504 |
-
msgstr "Format"
|
505 |
-
|
506 |
-
#: views/packages/new1.inc.form.php:38
|
507 |
-
#: views/packages/new2.base.php:196
|
508 |
#@ wpduplicator
|
509 |
msgid "Files"
|
510 |
msgstr "Dateien"
|
511 |
|
512 |
-
#: views/packages/new1.inc.form.php:
|
513 |
-
#: views/packages/new1.inc.form.php:
|
514 |
-
#: views/packages/new2.base.php:
|
515 |
#@ wpduplicator
|
516 |
msgid "Database"
|
517 |
msgstr "Datenbank"
|
518 |
|
519 |
-
#: views/packages/new1.inc.form.php:
|
520 |
-
#: views/packages/new1.inc.form.php:
|
521 |
-
#@ wpduplicator
|
522 |
-
msgid "Filters"
|
523 |
-
msgstr "Filter"
|
524 |
-
|
525 |
-
#: views/packages/new1.inc.form.php:58
|
526 |
-
#: views/packages/new1.inc.form.php:65
|
527 |
#@ wpduplicator
|
528 |
msgid "Separate all filters by semicolon"
|
529 |
msgstr "Trenne alle Filter durch ein Semikolon"
|
530 |
|
531 |
-
#: views/packages/new1.inc.form.php:
|
532 |
-
#: views/packages/new2.base.php:
|
533 |
#@ wpduplicator
|
534 |
msgid "Directories"
|
535 |
msgstr "Verzeichnisse"
|
536 |
|
537 |
-
#: views/packages/new1.inc.form.php:
|
538 |
#@ wpduplicator
|
539 |
msgid "root path"
|
540 |
msgstr "Root-Pfad"
|
541 |
|
542 |
-
#: views/packages/new1.inc.form.php:
|
543 |
#@ wpduplicator
|
544 |
msgid "wp-uploads"
|
545 |
msgstr "uploads"
|
546 |
|
547 |
-
#: views/packages/new1.inc.form.php:
|
548 |
-
#: views/packages/new1.inc.form.php:
|
549 |
#@ wpduplicator
|
550 |
msgid "(clear)"
|
551 |
msgstr "(Löschen)"
|
552 |
|
553 |
-
#: views/packages/new1.inc.form.php:
|
554 |
#@ wpduplicator
|
555 |
msgid "File extensions"
|
556 |
msgstr "Datei-Erweiterungen"
|
557 |
|
558 |
-
#: views/packages/new1.inc.form.php:
|
559 |
#@ wpduplicator
|
560 |
msgid "media"
|
561 |
msgstr "Medien"
|
562 |
|
563 |
-
#: views/packages/new1.inc.form.php:
|
564 |
#@ wpduplicator
|
565 |
msgid "archive"
|
566 |
msgstr "Archive"
|
567 |
|
568 |
-
#: views/packages/new1.inc.form.php:
|
569 |
#@ wpduplicator
|
570 |
msgid "The directory paths and extensions above will be be excluded from the archive file if enabled is checked."
|
571 |
msgstr "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei ausgeschlossen."
|
572 |
|
573 |
-
#: views/packages/new1.inc.form.php:
|
574 |
#@ wpduplicator
|
575 |
msgid "Use the full path for directories and semicolons to separate all items."
|
576 |
msgstr "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle Elemente zu trennen."
|
577 |
|
578 |
-
#: views/packages/new1.inc.form.php:
|
579 |
#@ wpduplicator
|
580 |
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!"
|
581 |
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!"
|
582 |
|
583 |
-
#: views/packages/new1.inc.form.php:
|
584 |
#@ default
|
585 |
msgid "STEP 1 - INPUTS"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: views/packages/new1.inc.form.php:
|
589 |
#@ wpduplicator
|
590 |
msgid "MySQL Server"
|
591 |
msgstr "MySQL-Server"
|
592 |
|
593 |
-
#: views/packages/new1.inc.form.php:
|
594 |
#@ wpduplicator
|
595 |
msgid "Host"
|
596 |
msgstr "Host"
|
597 |
|
598 |
-
#: views/packages/new1.inc.form.php:
|
599 |
#@ wpduplicator
|
600 |
msgid "Advanced Options"
|
601 |
msgstr "Erweiterte Optionen"
|
602 |
|
603 |
-
#: views/packages/new1.inc.form.php:
|
604 |
#@ wpduplicator
|
605 |
msgid "SSL"
|
606 |
msgstr "SSL"
|
607 |
|
608 |
-
#: views/packages/new1.inc.form.php:
|
609 |
#@ wpduplicator
|
610 |
msgid "Enforce on Admin"
|
611 |
-
msgstr "
|
612 |
|
613 |
-
#: views/packages/new1.inc.form.php:
|
614 |
#@ wpduplicator
|
615 |
msgid "Enforce on Logins"
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#: views/packages/new1.inc.form.php:
|
619 |
#@ wpduplicator
|
620 |
msgid "Cache"
|
621 |
msgstr "Cache"
|
622 |
|
623 |
-
#: views/packages/new1.inc.form.php:
|
624 |
#@ wpduplicator
|
625 |
msgid "Keep Enabled"
|
626 |
-
msgstr "
|
627 |
|
628 |
-
#: views/packages/new1.inc.form.php:
|
629 |
#@ wpduplicator
|
630 |
msgid "Keep Home Path"
|
631 |
-
msgstr "
|
632 |
|
633 |
-
#: views/packages/new1.inc.form.php:
|
634 |
#@ default
|
635 |
msgid "STEP 2 - INPUTS"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: views/packages/new1.inc.form.php:
|
639 |
#@ wpduplicator
|
640 |
msgid "New URL"
|
641 |
msgstr "Neue URL"
|
642 |
|
643 |
-
#: views/packages/new1.inc.form.php:
|
644 |
#@ wpduplicator
|
645 |
msgid "The installer can have these fields pre-filled at install time."
|
646 |
msgstr "Das Installationsprogramm kann diese Felder bereits vor der Installation ausgefüllt haben."
|
647 |
|
648 |
-
#: views/packages/new1.inc.form.php:
|
649 |
#@ wpduplicator
|
650 |
msgid "All values are optional."
|
651 |
msgstr "Alle Werte sind optional."
|
652 |
|
653 |
-
#: views/packages/new1.inc.form.php:
|
654 |
#@ wpduplicator
|
655 |
msgid "Next"
|
656 |
msgstr "Weiter"
|
657 |
|
658 |
-
#: views/packages/new2.base.php:
|
659 |
#@ wpduplicator
|
660 |
msgid "Step 2: System Scan"
|
661 |
msgstr "Schritt 2: System Scan"
|
662 |
|
663 |
-
#: views/packages/new2.base.php:
|
664 |
#@ wpduplicator
|
665 |
msgid "Scanning Site"
|
666 |
msgstr "Scan Seite"
|
667 |
|
668 |
-
#: views/packages/new2.base.php:
|
669 |
-
#: views/packages/new3.base.php:
|
670 |
#@ wpduplicator
|
671 |
msgid "Please Wait..."
|
672 |
msgstr "Bitte warten..."
|
673 |
|
674 |
-
#: views/packages/new2.base.php:
|
675 |
#@ wpduplicator
|
676 |
msgid "Scan Complete"
|
677 |
msgstr "Scan vollständig"
|
678 |
|
679 |
-
#: views/packages/new2.base.php:
|
680 |
#@ wpduplicator
|
681 |
msgid "Scan checks are not required to pass, however they could cause issues on some systems."
|
682 |
msgstr "Scan-Checks sind nicht unbedingt erforderlich, können jedoch auf einigen Systemen Probleme verursachen."
|
683 |
|
684 |
-
#: views/packages/new2.base.php:
|
685 |
#@ wpduplicator
|
686 |
msgid "Server"
|
687 |
msgstr "Server"
|
688 |
|
689 |
-
#: views/packages/new2.base.php:
|
690 |
-
#: views/
|
691 |
#@ wpduplicator
|
692 |
msgid "Diagnostics"
|
693 |
msgstr "Diagnose"
|
694 |
|
695 |
-
#: views/packages/new2.base.php:
|
696 |
#@ wpduplicator
|
697 |
msgid "Open Base Dir"
|
698 |
msgstr "Open Base Dir"
|
699 |
|
700 |
-
#: views/packages/new2.base.php:
|
701 |
#@ wpduplicator
|
702 |
msgid "Cache Path"
|
703 |
msgstr "Cache-Pfad"
|
704 |
|
705 |
-
#: views/packages/new2.base.php:
|
706 |
-
#: views/packages/new2.base.php:
|
707 |
#@ wpduplicator
|
708 |
msgid "Enabled"
|
709 |
msgstr "Aktiviert"
|
710 |
|
711 |
-
#: views/packages/new2.base.php:
|
712 |
#@ wpduplicator
|
713 |
msgid "File Count"
|
714 |
msgstr "Dateianzahl"
|
715 |
|
716 |
-
#: views/packages/new2.base.php:
|
717 |
#@ wpduplicator
|
718 |
msgid "Directory Count"
|
719 |
msgstr "Verzeichnisanzahl"
|
720 |
|
721 |
-
#: views/packages/new2.base.php:
|
722 |
#@ wpduplicator
|
723 |
msgid "Invalid Names"
|
724 |
msgstr "Ungültige Namen"
|
725 |
|
726 |
-
#: views/packages/new2.base.php:
|
727 |
#@ wpduplicator
|
728 |
msgid "Large Files"
|
729 |
msgstr "Große Dateien"
|
730 |
|
731 |
-
#: views/packages/new2.base.php:
|
732 |
#@ wpduplicator
|
733 |
msgid "Tables"
|
734 |
msgstr "Tabellen"
|
735 |
|
736 |
-
#: views/packages/new2.base.php:
|
737 |
#@ wpduplicator
|
738 |
msgid "Records"
|
739 |
msgstr "Aufzeichnungen"
|
740 |
|
741 |
-
#: views/packages/new2.base.php:
|
742 |
#@ wpduplicator
|
743 |
msgid "repair and optimization"
|
744 |
msgstr "Reparatur und Optimierung"
|
745 |
|
746 |
-
#: views/packages/new2.base.php:
|
747 |
#@ wpduplicator
|
748 |
msgid "Table Details"
|
749 |
msgstr "Tabellen-Details"
|
750 |
|
751 |
-
#: views/packages/new2.base.php:
|
752 |
#@ wpduplicator
|
753 |
msgid "Name:"
|
754 |
msgstr "Name:"
|
755 |
|
756 |
-
#: views/packages/new2.base.php:
|
757 |
#@ wpduplicator
|
758 |
msgid "Host:"
|
759 |
msgstr "Host:"
|
760 |
|
761 |
-
#: views/packages/new2.base.php:
|
762 |
#@ wpduplicator
|
763 |
msgid "Build Mode:"
|
764 |
msgstr "Erstellungs-Modus:"
|
765 |
|
766 |
-
#: views/packages/new2.base.php:
|
767 |
#@ wpduplicator
|
768 |
msgid "Scan Error"
|
769 |
msgstr "Scan Fehler"
|
770 |
|
771 |
-
#: views/packages/new2.base.php:
|
772 |
#@ wpduplicator
|
773 |
msgid "Please try again!"
|
774 |
msgstr "Bitte nochmals versuchen!"
|
775 |
|
776 |
-
#: views/packages/new2.base.php:
|
777 |
-
#: views/packages/new3.base.php:
|
778 |
#@ wpduplicator
|
779 |
msgid "Server Status:"
|
780 |
msgstr "Server Status:"
|
781 |
|
782 |
-
#: views/packages/new2.base.php:
|
783 |
-
#: views/packages/new3.base.php:
|
784 |
#@ wpduplicator
|
785 |
msgid "Error Message:"
|
786 |
msgstr "Fehler-Meldung:"
|
787 |
|
788 |
-
#: views/packages/new2.base.php:
|
789 |
#@ wpduplicator
|
790 |
msgid "Back"
|
791 |
msgstr "Zurück"
|
792 |
|
793 |
-
#: views/packages/new2.base.php:
|
794 |
#@ wpduplicator
|
795 |
msgid "Rescan"
|
796 |
msgstr "Erneuter Scan"
|
797 |
|
798 |
-
#: views/packages/new2.base.php:
|
799 |
#@ wpduplicator
|
800 |
msgid "Unable to report on any tables"
|
801 |
msgstr "Kein Bericht über die Tabellen"
|
802 |
|
803 |
-
#: views/packages/new2.base.php:
|
804 |
#@ wpduplicator
|
805 |
msgid "Unable to report on database stats"
|
806 |
msgstr "Kein Bericht zum Datenbank-Status"
|
807 |
|
808 |
-
#: views/packages/new2.base.php:
|
809 |
#@ wpduplicator
|
810 |
msgid "No name length issues."
|
811 |
msgstr "Keine lange oder ungültige Namen."
|
812 |
|
813 |
-
#: views/packages/new2.base.php:
|
814 |
-
#: views/packages/new2.base.php:
|
815 |
#@ wpduplicator
|
816 |
msgid "FILE"
|
817 |
msgstr "Datei"
|
818 |
|
819 |
-
#: views/packages/new2.base.php:
|
820 |
#@ wpduplicator
|
821 |
msgid "No large files found."
|
822 |
msgstr "Keine großen Dateien gefunden."
|
823 |
|
824 |
-
#: views/packages/new3.base.php:
|
825 |
#@ wpduplicator
|
826 |
msgid "Step 3: Build Package"
|
827 |
msgstr "Schritt 3: Archiv erstellen"
|
828 |
|
829 |
-
#: views/packages/new3.base.php:
|
830 |
#@ wpduplicator
|
831 |
msgid "Building Package"
|
832 |
msgstr "Archiv erstellen"
|
833 |
|
834 |
-
#: views/packages/new3.base.php:
|
835 |
#@ wpduplicator
|
836 |
msgid "Keep this window open during the build process."
|
837 |
msgstr "Lass dieses Fenster während der Archiv-Erstellung geöffnet."
|
838 |
|
839 |
-
#: views/packages/new3.base.php:
|
840 |
#@ wpduplicator
|
841 |
msgid "This may take several minutes."
|
842 |
msgstr "Dies kann einige Minuten dauern."
|
843 |
|
844 |
-
#: views/packages/new3.base.php:
|
845 |
#@ wpduplicator
|
846 |
msgid "Build Status"
|
847 |
msgstr "Erstellungs-Status"
|
848 |
|
849 |
-
#: views/packages/new3.base.php:
|
850 |
#@ wpduplicator
|
851 |
msgid "Package Completed"
|
852 |
msgstr "Archiv komplett"
|
853 |
|
854 |
-
#: views/packages/new3.base.php:
|
855 |
#@ wpduplicator
|
856 |
msgid "Process Time"
|
857 |
msgstr "Verarbeitungszeit"
|
858 |
|
859 |
-
#: views/packages/
|
|
|
|
|
|
|
|
|
860 |
#@ wpduplicator
|
861 |
msgid "All Packages"
|
862 |
msgstr "Alle Archive"
|
863 |
|
864 |
-
#: views/packages/new3.base.php:
|
865 |
#@ wpduplicator
|
866 |
msgid "Try Again"
|
867 |
msgstr "Nochmals versuchen"
|
868 |
|
869 |
-
#: views/packages/new3.base.php:
|
870 |
#@ wpduplicator
|
871 |
msgid "Package Log"
|
872 |
msgstr "Archiv Log"
|
873 |
|
874 |
-
#: views/settings/controller.php:
|
875 |
-
#: views/
|
876 |
#@ wpduplicator
|
877 |
msgid "General"
|
878 |
msgstr "Allgemein"
|
879 |
|
880 |
-
#: views/
|
881 |
-
#: views/
|
882 |
#@ wpduplicator
|
883 |
msgid "unknow"
|
884 |
msgstr "unbekannt"
|
885 |
|
886 |
-
#: views/
|
887 |
#@ wpduplicator
|
888 |
msgid "Plugin settings reset."
|
889 |
msgstr "Plugin-Einstellungen zurücksetzen."
|
890 |
|
891 |
-
#: views/
|
892 |
#@ wpduplicator
|
893 |
msgid "View state settings reset."
|
894 |
msgstr "Statuseinstellungen zurücksetzen."
|
895 |
|
896 |
-
#: views/
|
897 |
#@ wpduplicator
|
898 |
msgid "Active package settings reset."
|
899 |
msgstr "Aktive Archiv-Einstellungen zurücksetzen."
|
900 |
|
901 |
-
#: views/settings/diagnostics.php:44
|
902 |
#: views/tools/cleanup.php:12
|
|
|
903 |
#@ wpduplicator
|
904 |
msgid "Legacy data removed."
|
905 |
msgstr "Daten entfernt."
|
906 |
|
907 |
-
#: views/
|
908 |
#@ wpduplicator
|
909 |
msgid "Server Settings"
|
910 |
msgstr "Server-Einstellungen"
|
911 |
|
912 |
-
#: views/
|
913 |
#@ wpduplicator
|
914 |
msgid "Duplicator Version"
|
915 |
msgstr "Duplicator-Version"
|
916 |
|
917 |
-
#: views/
|
918 |
#@ wpduplicator
|
919 |
msgid "Operating System"
|
920 |
msgstr "Betriebs-System"
|
921 |
|
922 |
-
#: views/
|
923 |
#@ wpduplicator
|
924 |
msgid "APC Enabled"
|
925 |
msgstr "APC Aktiviert"
|
926 |
|
927 |
-
#: views/
|
928 |
#@ wpduplicator
|
929 |
msgid "Root Path"
|
930 |
msgstr "Root-Pfad"
|
931 |
|
932 |
-
#: views/
|
933 |
#@ wpduplicator
|
934 |
msgid "Plugins Path"
|
935 |
msgstr "Plugin-Pfad"
|
936 |
|
937 |
-
#: views/
|
938 |
#@ wpduplicator
|
939 |
msgid "Loaded PHP INI"
|
940 |
msgstr "Geladene PHP-INI"
|
941 |
|
942 |
-
#: views/
|
943 |
#@ wpduplicator
|
944 |
msgid "Langugage"
|
945 |
msgstr "Sprache"
|
946 |
|
947 |
-
#: views/
|
948 |
-
#: views/
|
949 |
#@ wpduplicator
|
950 |
msgid "Charset"
|
951 |
msgstr "Zeichensatz"
|
952 |
|
953 |
-
#: views/
|
954 |
#@ wpduplicator
|
955 |
msgid "Memory Limit "
|
956 |
msgstr "Speicher-Limit "
|
957 |
|
958 |
-
#: views/
|
959 |
#@ wpduplicator
|
960 |
msgid "Max"
|
961 |
msgstr "Max"
|
962 |
|
963 |
-
#: views/
|
964 |
#@ wpduplicator
|
965 |
msgid "Safe Mode"
|
966 |
msgstr "Safe Mode"
|
967 |
|
968 |
-
#: views/
|
969 |
#@ wpduplicator
|
970 |
msgid "On"
|
971 |
msgstr "An"
|
972 |
|
973 |
-
#: views/
|
974 |
#@ wpduplicator
|
975 |
msgid "Off"
|
976 |
msgstr "Aus"
|
977 |
|
978 |
-
#: views/
|
979 |
#@ wpduplicator
|
980 |
msgid "Memory Limit"
|
981 |
msgstr "Speicher-Limit"
|
982 |
|
983 |
-
#: views/
|
984 |
#@ wpduplicator
|
985 |
msgid "Memory In Use"
|
986 |
msgstr "Verwendeter Arbeitsspeicher"
|
987 |
|
988 |
-
#: views/packages/new2.base.php:
|
989 |
-
#: views/
|
990 |
#@ wpduplicator
|
991 |
msgid "Max Execution Time"
|
992 |
msgstr "Maximale Ausführungs-Zeit"
|
993 |
|
994 |
-
#: views/
|
995 |
#@ wpduplicator
|
996 |
msgid "Shell Exec"
|
997 |
msgstr "Shell Exec"
|
998 |
|
999 |
-
#: views/
|
1000 |
#@ wpduplicator
|
1001 |
msgid "Is Supported"
|
1002 |
msgstr "Wird unterstützt"
|
1003 |
|
1004 |
-
#: views/
|
1005 |
#@ wpduplicator
|
1006 |
msgid "Not Supported"
|
1007 |
msgstr "Nicht unterstützt"
|
1008 |
|
1009 |
-
#: views/
|
1010 |
#@ wpduplicator
|
1011 |
msgid "Wait Timeout"
|
1012 |
msgstr "Wartezeitsperre"
|
1013 |
|
1014 |
-
#: views/
|
1015 |
#@ wpduplicator
|
1016 |
msgid "Max Allowed Packets"
|
1017 |
msgstr "Maximal erlaubte Pakete"
|
1018 |
|
1019 |
-
#: views/
|
1020 |
#@ wpduplicator
|
1021 |
msgid "msyqldump Path"
|
1022 |
msgstr "msyqldump Pfad"
|
1023 |
|
1024 |
-
#: views/
|
1025 |
#@ wpduplicator
|
1026 |
msgid "Server Disk"
|
1027 |
msgstr "Server-Festplatte"
|
1028 |
|
1029 |
-
#: views/
|
1030 |
#@ hyper-cache
|
1031 |
msgid "Free space"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: views/
|
1035 |
#@ wpduplicator
|
1036 |
msgid "Note: This value is the physical servers hard-drive allocation."
|
1037 |
msgstr "Hinweis: Dieser Wert ist die physische Server-Festplatte-Verteilung."
|
1038 |
|
1039 |
-
#: views/
|
1040 |
#@ wpduplicator
|
1041 |
msgid "On shared hosts check your control panel for the 'TRUE' disk space quota value."
|
1042 |
msgstr "Überprüfe auf freigegebenen Hosts deines Control Panels für den 'TRUE' Disk Space Quote Wert."
|
1043 |
|
1044 |
-
#: views/
|
1045 |
#@ wpduplicator
|
1046 |
msgid "Stored Data"
|
1047 |
msgstr "Gespeicherte Daten"
|
1048 |
|
1049 |
-
#: views/
|
1050 |
#@ wpduplicator
|
1051 |
msgid "Options Values"
|
1052 |
msgstr "Options Werte"
|
1053 |
|
1054 |
-
#: views/
|
1055 |
#@ wpduplicator
|
1056 |
msgid "PHP Information"
|
1057 |
msgstr "PHP-Information"
|
1058 |
|
1059 |
-
#: views/
|
1060 |
#@ wpduplicator
|
1061 |
msgid "Delete this option value"
|
1062 |
msgstr "Lösche den optionalen Wert"
|
@@ -1066,57 +1036,57 @@ msgstr "Lösche den optionalen Wert"
|
|
1066 |
msgid "Settings Saved"
|
1067 |
msgstr "Einstellungen gespeichert"
|
1068 |
|
1069 |
-
#: views/settings/general.php:
|
1070 |
#@ wpduplicator
|
1071 |
msgid "Delete Plugin Settings"
|
1072 |
msgstr "Plugin-Einstellungen löschen"
|
1073 |
|
1074 |
-
#: views/settings/general.php:
|
1075 |
#@ wpduplicator
|
1076 |
msgid "This server does not have shell_exec configured to run."
|
1077 |
msgstr "Dieser Server ist nicht zur Ausführung von shell_exec konfiguriert."
|
1078 |
|
1079 |
-
#: views/settings/general.php:
|
1080 |
#@ wpduplicator
|
1081 |
msgid "Please contact the server administrator to enable this feature."
|
1082 |
msgstr "Bitte kontaktiere den Server-Administrator, um diese Funktion zu aktivieren."
|
1083 |
|
1084 |
-
#: views/settings/general.php:
|
1085 |
#@ wpduplicator
|
1086 |
msgid "Use mysqldump"
|
1087 |
msgstr "Benutze mysqldump"
|
1088 |
|
1089 |
-
#: views/settings/general.php:
|
1090 |
#@ wpduplicator
|
1091 |
msgid "recommended for large databases"
|
1092 |
msgstr "für große Datenbanken empfohlen"
|
1093 |
|
1094 |
-
#: views/settings/general.php:
|
1095 |
#@ wpduplicator
|
1096 |
msgid "Working Path:"
|
1097 |
msgstr "Arbeits-Pfad"
|
1098 |
|
1099 |
-
#: views/settings/general.php:
|
1100 |
#@ wpduplicator
|
1101 |
msgid "Add Custom Path:"
|
1102 |
msgstr "Benutzer-Pfad hinzufügen"
|
1103 |
|
1104 |
-
#: views/settings/general.php:
|
1105 |
#@ wpduplicator
|
1106 |
msgid "This is the path to your mysqldump program."
|
1107 |
msgstr "Das ist der Pfad zu deinem mysqldump-Programm."
|
1108 |
|
1109 |
-
#: views/settings/general.php:
|
1110 |
#@ wpduplicator
|
1111 |
msgid "Package Debug"
|
1112 |
msgstr "Fehlerbeseitigung Archiv"
|
1113 |
|
1114 |
-
#: views/settings/general.php:
|
1115 |
#@ wpduplicator
|
1116 |
msgid "Show Package Debug Status in Packages Screen"
|
1117 |
msgstr "Zeige Fehlerstatus des Archives in der Anzeige"
|
1118 |
|
1119 |
-
#: views/settings/general.php:
|
1120 |
#@ wpduplicator
|
1121 |
msgid "Save Settings"
|
1122 |
msgstr "Einstellungen speichern"
|
@@ -1126,58 +1096,58 @@ msgstr "Einstellungen speichern"
|
|
1126 |
msgid "Installer File Cleanup Ran."
|
1127 |
msgstr "Installations-Dateien gelöscht."
|
1128 |
|
1129 |
-
#: views/tools/cleanup.php:
|
1130 |
#@ wpduplicator
|
1131 |
msgid "If the installer files did not successfully get removed, then you WILL need to remove them manually"
|
1132 |
msgstr "Wenn die Installationsdateien nicht vollständig erfolgreich entfernt wurden, dann müssen sie manuell gelöscht werden"
|
1133 |
|
1134 |
-
#: views/tools/cleanup.php:
|
1135 |
#@ wpduplicator
|
1136 |
msgid "Please remove all installer files to avoid leaving open security issues on your server"
|
1137 |
msgstr "Bitte entferne alle Installationsdateien aus Sicherheitsgründen von deinem Server"
|
1138 |
|
1139 |
-
#: views/tools/cleanup.php:
|
1140 |
#@ wpduplicator
|
1141 |
msgid "Data Cleanup"
|
1142 |
msgstr "Daten gelöscht"
|
1143 |
|
1144 |
-
#: views/tools/cleanup.php:
|
1145 |
#@ wpduplicator
|
1146 |
msgid "Delete Reserved Files"
|
1147 |
msgstr "Lösche reservierte Dateien"
|
1148 |
|
1149 |
-
#: views/tools/cleanup.php:
|
1150 |
#@ wpduplicator
|
1151 |
msgid "Removes all installer files from a previous install"
|
1152 |
msgstr "Entferne alle Installations-Dateien der früheren Installation."
|
1153 |
|
1154 |
-
#: views/tools/cleanup.php:
|
1155 |
#@ wpduplicator
|
1156 |
msgid "Delete Legacy Data"
|
1157 |
msgstr "Lösche übernommene Daten"
|
1158 |
|
1159 |
-
#: views/tools/cleanup.php:
|
1160 |
#@ wpduplicator
|
1161 |
msgid "Removes all legacy data and settings prior to version"
|
1162 |
msgstr "Entfernt alle übernommenen Daten und Einstellungen vor Version"
|
1163 |
|
1164 |
-
#: views/tools/cleanup.php:
|
1165 |
#, php-format
|
1166 |
#@ wpduplicator
|
1167 |
msgid "This action will remove all legacy settings prior to version %1$s. "
|
1168 |
msgstr "Diese Aktion wird alle alten Einstellungen vor Version %1$s entfernen. "
|
1169 |
|
1170 |
-
#: views/tools/cleanup.php:
|
1171 |
#@ wpduplicator
|
1172 |
msgid "Legacy settings are only needed if you plan to migrate back to an older version of this plugin."
|
1173 |
msgstr "Frühere Einstellungen werden nur benötigt, wenn du zu einer älteren Version des Plugins zurückgehst."
|
1174 |
|
1175 |
-
#: views/tools/controller.php:
|
1176 |
#@ wpduplicator
|
1177 |
msgid "Logging"
|
1178 |
msgstr "Logging"
|
1179 |
|
1180 |
-
#: views/tools/controller.php:
|
1181 |
#@ wpduplicator
|
1182 |
msgid "Cleanup"
|
1183 |
msgstr "Löschen"
|
@@ -1228,100 +1198,94 @@ msgstr "Automatisch neu laden"
|
|
1228 |
msgid "Last 20 Logs"
|
1229 |
msgstr "Letzte 20 Logs"
|
1230 |
|
1231 |
-
#: views/packages/list.base.php:
|
1232 |
#@ wpduplicator
|
1233 |
msgid "Unrecoverable Error! Please remove this package."
|
1234 |
msgstr "Nicht behebbarer Fehler! Bitte lösche das Paket."
|
1235 |
|
1236 |
-
#: views/packages/new2.base.php:
|
1237 |
#@ wpduplicator
|
1238 |
msgid "PHP Settings"
|
1239 |
msgstr "PHP-Einstellungen"
|
1240 |
|
1241 |
-
#: views/packages/new2.base.php:
|
1242 |
-
#, php-format
|
1243 |
-
#@ wpduplicator
|
1244 |
-
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."
|
1245 |
-
msgstr "Gesamtgröße aller Dateien abzüglich aller Filter durch das Setup. Die aktuellen Grenzwerte, die Warnungen auslösen, sind %1$s für die gesamte Website und %2$s für große Dateien."
|
1246 |
-
|
1247 |
-
#: views/packages/new2.base.php:247
|
1248 |
#, php-format
|
1249 |
#@ wpduplicator
|
1250 |
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."
|
1251 |
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."
|
1252 |
|
1253 |
-
#: views/packages/new2.base.php:
|
1254 |
#, php-format
|
1255 |
#@ wpduplicator
|
1256 |
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."
|
1257 |
-
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."
|
1258 |
|
1259 |
-
#: views/packages/new3.base.php:
|
1260 |
#@ wpduplicator
|
1261 |
msgid "Build Interrupt"
|
1262 |
msgstr "Erstellung unterbrochen"
|
1263 |
|
1264 |
-
#: views/packages/new3.base.php:
|
1265 |
#@ wpduplicator
|
1266 |
msgid "The current build has experienced an issue."
|
1267 |
msgstr "Die aktuelle Version hat ein Problem."
|
1268 |
|
1269 |
-
#: views/packages/new3.base.php:
|
1270 |
#@ wpduplicator
|
1271 |
msgid "Notice"
|
1272 |
msgstr "Anmerkung"
|
1273 |
|
1274 |
-
#: views/packages/new3.base.php:
|
1275 |
#@ default
|
1276 |
msgid "Build Folder:"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: views/packages/new3.base.php:
|
1280 |
#@ wpduplicator
|
1281 |
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."
|
1282 |
msgstr "Einige Server schließen die Verbindungen schnell, doch die Erstellung kann auch weiterhin im Hintergrund laufen. Um zu prüfen ob derProzess noch läuft, öffnen den 'tmp'-Ordner um zu sehen, ob die Archivdatei in der Größe wächst. Wenn nicht, hat der Server strenge Beschränkungen im Timeout. Bitte besuche die Support-Seite für weitere Lösungen."
|
1283 |
|
1284 |
-
#: views/
|
1285 |
#@ wpduplicator
|
1286 |
msgid "ABSPATH"
|
1287 |
msgstr "ABSPATH"
|
1288 |
|
1289 |
-
#: views/settings/general.php:
|
1290 |
#@ wpduplicator
|
1291 |
msgid "Plugin"
|
1292 |
msgstr "Plugin"
|
1293 |
|
1294 |
-
#: views/settings/general.php:
|
1295 |
#@ wpduplicator
|
1296 |
msgid "Archive Flush"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: views/settings/general.php:
|
1300 |
#@ wpduplicator
|
1301 |
msgid "Attempt Network Keep Alive"
|
1302 |
msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren"
|
1303 |
|
1304 |
-
#: views/settings/general.php:
|
1305 |
#@ wpduplicator
|
1306 |
msgid "recommended only for large archives"
|
1307 |
msgstr "nur empfohlen für große Archive"
|
1308 |
|
1309 |
-
#: views/settings/general.php:
|
1310 |
#@ wpduplicator
|
1311 |
msgid "This will attempt to keep a network connection established for large archives."
|
1312 |
msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren."
|
1313 |
|
1314 |
-
#: views/settings/general.php:
|
1315 |
#@ wpduplicator
|
1316 |
msgid "Database Build"
|
1317 |
msgstr "Datenbank erstellen"
|
1318 |
|
1319 |
-
#: views/settings/general.php:
|
1320 |
#@ wpduplicator
|
1321 |
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."
|
1322 |
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."
|
1323 |
|
1324 |
-
#: views/packages/new1.base.php:
|
1325 |
#@ wpduplicator
|
1326 |
msgid "Package settings have been reset."
|
1327 |
msgstr "Archiveinstellungen wurden zurückgesetzt."
|
@@ -1331,18 +1295,18 @@ msgstr "Archiveinstellungen wurden zurückgesetzt."
|
|
1331 |
msgid "Create a new default name"
|
1332 |
msgstr "Erstelle einen neuen Standardnamen"
|
1333 |
|
1334 |
-
#: views/packages/new1.inc.form.php:
|
1335 |
#@ wpduplicator
|
1336 |
msgid "Reset"
|
1337 |
msgstr "Zurücksetzen"
|
1338 |
|
1339 |
-
#: views/packages/new1.inc.form.php:
|
1340 |
#@ wpduplicator
|
1341 |
msgid "This will reset all of the current package settings. Would you like to continue?"
|
1342 |
msgstr "Dies wird alle aktuellen Archiveinstellungen zurückzusetzen. Möchtest Du fortfahren?"
|
1343 |
|
1344 |
-
#: views/packages/new2.base.php:
|
1345 |
-
#: views/packages/new2.base.php:
|
1346 |
#@ wpduplicator
|
1347 |
msgid "Show Paths"
|
1348 |
msgstr "Zeige Pfade"
|
@@ -1352,53 +1316,48 @@ msgstr "Zeige Pfade"
|
|
1352 |
msgid "Try to create a package, since no log files were found in the snapshots directory with the extension *.log"
|
1353 |
msgstr "Versuche ein Archiv zu erstellen, da keine Log-Dateien im Snapshots-Verzeichnis mit der Endung *. Log gefunden wurden"
|
1354 |
|
1355 |
-
#: views/packages/list.base.php:
|
1356 |
#@ wpduplicator
|
1357 |
msgid "REPORT"
|
1358 |
msgstr "Bericht"
|
1359 |
|
1360 |
-
#: views/packages/new1.inc.form.php:
|
1361 |
#@ wpduplicator
|
1362 |
msgid "checked tables are excluded"
|
1363 |
msgstr "Markierte Tabellen sind ausgeschlossen"
|
1364 |
|
1365 |
-
#: views/packages/new1.inc.form.php:
|
1366 |
#@ wpduplicator
|
1367 |
msgid "Include All"
|
1368 |
msgstr "Alle einschliessen"
|
1369 |
|
1370 |
-
#: views/packages/new1.inc.form.php:
|
1371 |
#@ wpduplicator
|
1372 |
msgid "Exclude All"
|
1373 |
msgstr "Alle ausschliessen"
|
1374 |
|
1375 |
-
#: views/packages/new2.base.php:
|
1376 |
#@ wpduplicator
|
1377 |
msgid "Process Time:"
|
1378 |
msgstr "Verarbeitungs-Dauer"
|
1379 |
|
1380 |
-
#: views/packages/new2.base.php:
|
1381 |
-
#@ wpduplicator
|
1382 |
-
msgid "Report"
|
1383 |
-
msgstr "Bericht"
|
1384 |
-
|
1385 |
-
#: views/packages/new2.base.php:128
|
1386 |
#@ wpduplicator
|
1387 |
msgid "The Duplicator may have issues when [open_basedir] is enabled. Please work with your server administrator to disable this value in the php.ini file if you’re having issues building a package."
|
1388 |
msgstr "Der Duplicator kann Probleme haben, wenn [open_basedir] aktiviert ist. Bitte frage den Server-Administrator, ob dieser Wert in der php.ini-Datei deaktiviert werden kann."
|
1389 |
|
1390 |
-
#: views/packages/new2.base.php:
|
1391 |
#, php-format
|
1392 |
#@ wpduplicator
|
1393 |
msgid "The Duplicator will have issues when the [max_execution_time] value in the php.ini is low. Timeouts effect how long a process is allowed to run. The recommended timeout is \"%1$s\" seconds. An attempt is made to override this value if the server allows it. Please work with your server administrator to make sure there are no restrictions for how long a PHP process is allowed to run."
|
1394 |
msgstr "Der Duplicator wird Probleme haben, wenn der Wert [max_execution_time] in der php.ini ist gering. Der Timeout-Wert gibt an, wie lange ein Prozess ausgeführt werden darf. Die empfohlene Timeout ist \"%1$s\" Sekunden. Es wird versucht, diesen Wert zu überschreiben, wenn es der Server erlaubt. Bitte frage den Server-Administrator nach den Einschränkungen für den PHP-Prozess."
|
1395 |
|
1396 |
-
#: views/packages/new2.base.php:
|
1397 |
#@ wpduplicator
|
1398 |
msgid "Note: Timeouts can also be set at the web server layer, so if the PHP max timeout passes and you still see a build interrupt messages, then your web server could be killing the process. If you are limited on processing time, consider using the database or file filters to shrink the size of your overall package. However use caution as excluding the wrong resources can cause your install to not work properly."
|
1399 |
msgstr "Hinweis: Timeouts können auch am Web-Server eingestellt werden, so dass bei PHP-Timeout der Prozess abgebrochen wird. Wenn die Verarbeitungszeit begrenzt ist, nutze Datenbank-oder Dateifilter, um die Größe des Gesamtpakets schrumpfen. Bitte beachte, dass falsche Einstellungen dazu führen können, dass die Anwendung nicht mehr richtig funktioniert."
|
1400 |
|
1401 |
-
#: views/packages/new2.base.php:
|
1402 |
#@ wpduplicator
|
1403 |
msgid "Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 250 characters and illegal characters that may not work on all operating systems such as * ? > < : / \\ | . It is recommended to remove or filter these files before building the archive or else you might have issues at install time."
|
1404 |
msgstr "Ungültige Datei-oder Ordnernamen können bei einigen Umgebungen zu Problemen führen. Ungültige Dateinamen bestehen aus Längen über 250 Zeichen und illegalen Zeichen, die nicht auf allen Betriebssystemen wie * ? > < : / \\ | arbeiten können. Es wird empfohlen, diese Dateien vor dem Erstellen des Archivs zu entfernen oder durch Filtereinstellungen auszublenden."
|
@@ -1408,233 +1367,230 @@ msgstr "Ungültige Datei-oder Ordnernamen können bei einigen Umgebungen zu Prob
|
|
1408 |
msgid "Build cache removed."
|
1409 |
msgstr "Cache-Dateien entfernt"
|
1410 |
|
1411 |
-
#: views/tools/cleanup.php:
|
1412 |
#@ wpduplicator
|
1413 |
msgid "Clear Build Cache"
|
1414 |
msgstr "Cache löschen"
|
1415 |
|
1416 |
-
#: views/tools/cleanup.php:
|
1417 |
#@ wpduplicator
|
1418 |
msgid "Removes all build data from:"
|
1419 |
msgstr "Entferne alle Daten von:"
|
1420 |
|
1421 |
-
#: views/tools/cleanup.php:
|
1422 |
#@ wpduplicator
|
1423 |
msgid "This process will remove all build cache files. Be sure no packages are currently building or else they will be cancelled."
|
1424 |
msgstr "Dieser Vorgang wird alle erstellten Cache-Dateien entfernen. Bitte stelle sicher, dass derzeit keine neuen Cache-Dateien erstellt werden."
|
1425 |
|
1426 |
-
#: views/packages/new2.base.php:
|
1427 |
#@ wpduplicator
|
1428 |
msgid "The Duplicator currently works with these web servers:"
|
1429 |
-
msgstr "Der Duplicator arbeitet derzeit mit diesen Web-
|
1430 |
|
1431 |
-
#: views/packages/list.base.php:
|
1432 |
#@ wpduplicator
|
1433 |
msgid "Help Support Duplicator"
|
1434 |
msgstr "Duplicator-Hilfe"
|
1435 |
|
1436 |
-
#: views/packages/list.base.php:
|
1437 |
#@ wpduplicator
|
1438 |
msgid "Open Scan Report"
|
1439 |
msgstr "Scan-Bericht öffnen"
|
1440 |
|
1441 |
-
#: views/packages/list.base.php:
|
1442 |
#@ wpduplicator
|
1443 |
msgid "View Package Object"
|
1444 |
msgstr "Paket ansehen"
|
1445 |
|
1446 |
-
#: views/packages/new1.inc.form.php:
|
1447 |
#@ wpduplicator
|
1448 |
msgid "Enable File Filters"
|
1449 |
msgstr "Dateifilter aktivieren"
|
1450 |
|
1451 |
-
#: views/packages/new1.inc.form.php:
|
1452 |
#@ wpduplicator
|
1453 |
msgid "Enable Table Filters"
|
1454 |
msgstr "Tabellen-Filter aktivieren"
|
1455 |
|
1456 |
-
#: views/packages/new2.base.php:
|
1457 |
#@ wpduplicator
|
1458 |
msgid "WordPress Settings"
|
1459 |
msgstr "WordPress-Einstellungen"
|
1460 |
|
1461 |
-
#: views/packages/new2.base.php:
|
1462 |
#@ wpduplicator
|
1463 |
msgid "WordPress Version"
|
1464 |
msgstr "WordPress-Version"
|
1465 |
|
1466 |
-
#: views/packages/new2.base.php:
|
1467 |
#@ wpduplicator
|
1468 |
msgid "It is recommended to have a version of WordPress that is greater that "
|
1469 |
-
msgstr "Es wird empfohlen, eine höhere Version von Wordpress zu nutzen "
|
1470 |
|
1471 |
-
#: views/packages/new2.base.php:
|
1472 |
#@ wpduplicator
|
1473 |
msgid "Found"
|
1474 |
msgstr "Gefunden"
|
1475 |
|
1476 |
-
#: views/packages/new2.base.php:
|
1477 |
#@ wpduplicator
|
1478 |
msgid "Missing"
|
1479 |
msgstr "Vermisst"
|
1480 |
|
1481 |
-
#: views/packages/new2.base.php:
|
1482 |
#@ wpduplicator
|
1483 |
msgid "Core Files"
|
1484 |
msgstr "Core-Dateien"
|
1485 |
|
1486 |
-
#: views/packages/new2.base.php:
|
1487 |
#@ wpduplicator
|
1488 |
msgid "If the scanner is unable to locate the wp-config.php file in the root directory, then you will need to manually copy it to its new location."
|
1489 |
msgstr "Wenn der Scanner die Datei wp-config.php im Root-Verzeichnis nicht findet, muss sie manuell an die neue Position manuell kopiert werden."
|
1490 |
|
1491 |
-
#: views/packages/new2.base.php:
|
1492 |
#@ wpduplicator
|
1493 |
msgid "Cached data will lead to issues at install time and increases your archive size. It is recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you have a cache plugin review the documentation for how to empty it; simply removing files might cause errors on your site."
|
1494 |
-
msgstr "Cache-Daten werden zu Probleme bei der Installation führen und erhöhen die Archivgröße. Es wird empfohlen, das Cache-Verzeichnis bei der Erstellung zu leeren. Vorsicht beim Entfernen von Daten aus dem Cache-Verzeichnis. Beachte die Dokumentation des Cache-Plugins zum entleeren. Das einfache Entfernen von Dateien kann möglicherweise zu Fehlern auf der Website führen."
|
1495 |
|
1496 |
-
#: views/packages/new2.base.php:
|
1497 |
#@ wpduplicator
|
1498 |
msgid "The cache size minimum threshold is currently set at "
|
1499 |
msgstr "Die minimale Cache-Schwelle ist derzeit festgelegt auf "
|
1500 |
|
1501 |
-
#: views/packages/new2.base.php:
|
1502 |
#@ wpduplicator
|
1503 |
msgid "View Filters"
|
1504 |
msgstr "Filter anzeigen"
|
1505 |
|
1506 |
-
#: views/packages/new2.base.php:
|
1507 |
#@ wpduplicator
|
1508 |
msgid "Below is a list of the directories and file extension that will be excluded from the archive."
|
1509 |
msgstr "Unten ist eine Liste der Verzeichnisse und Dateierweiterung, die aus dem Archiv ausgeschlossen werden."
|
1510 |
|
1511 |
-
#: views/packages/new2.base.php:
|
1512 |
#@ wpduplicator
|
1513 |
msgid "No directory filters have been set."
|
1514 |
msgstr "Es sind keine Verzeichnisfilter eingestellt."
|
1515 |
|
1516 |
-
#: views/packages/new2.base.php:
|
1517 |
#@ wpduplicator
|
1518 |
msgid "File Extensions"
|
1519 |
msgstr "Datei-Erweiterungen"
|
1520 |
|
1521 |
-
#: views/packages/new2.base.php:
|
1522 |
#@ wpduplicator
|
1523 |
msgid "No file extension filters have been set."
|
1524 |
msgstr "Keine Dateierweiterungs-Filter gesetzt."
|
1525 |
|
1526 |
-
#: views/settings/general.php:
|
1527 |
#@ wpduplicator
|
1528 |
msgid "Uninstall"
|
1529 |
msgstr "Deinstallieren"
|
1530 |
|
1531 |
-
#: views/settings/general.php:
|
1532 |
#@ wpduplicator
|
1533 |
msgid "Delete Entire Storage Directory"
|
1534 |
msgstr "Speicher-Verzeichnisse vollständig löschen"
|
1535 |
|
1536 |
-
#: views/
|
|
|
1537 |
#@ wpduplicator
|
1538 |
msgid "Storage"
|
1539 |
msgstr "Speicher"
|
1540 |
|
1541 |
-
#: views/settings/general.php:
|
1542 |
#@ wpduplicator
|
1543 |
msgid "Full Path"
|
1544 |
msgstr "Vollständiger Pfad"
|
1545 |
|
1546 |
-
#: views/settings/general.php:
|
1547 |
#@ wpduplicator
|
1548 |
msgid "Disable .htaccess File In Storage Directory"
|
1549 |
msgstr ".htaccess-Datei im Speicher-Verzeichnis deaktivieren"
|
1550 |
|
1551 |
-
#: views/settings/general.php:
|
1552 |
#@ wpduplicator
|
1553 |
msgid "Disable if issues occur when downloading installer/archive files."
|
1554 |
msgstr "Deaktivieren, wenn beim Download von Installer / Archivdateien Probleme auftreten."
|
1555 |
|
1556 |
#: classes/ui.php:111
|
1557 |
-
#@
|
1558 |
msgid "Reserved Duplicator install file(s) still exists in the root directory. Please delete these file(s) to avoid possible security issues."
|
1559 |
-
msgstr ""
|
1560 |
|
1561 |
-
#: duplicator.php:
|
1562 |
#@ wpduplicator
|
1563 |
msgid "Get Help"
|
1564 |
msgstr "Hilfe bekommen"
|
1565 |
|
1566 |
-
#: duplicator.php:
|
1567 |
-
#: duplicator.php:
|
1568 |
-
#: views/help/help.php:
|
1569 |
#@ wpduplicator
|
1570 |
msgid "Help"
|
1571 |
msgstr "Hilfe"
|
1572 |
|
1573 |
-
#: duplicator.php:
|
1574 |
#@ wpduplicator
|
1575 |
msgid "Support the Plugin"
|
1576 |
msgstr "Unterstütze das Plugin"
|
1577 |
|
1578 |
-
#: duplicator.php:
|
1579 |
-
#: duplicator.php:
|
1580 |
-
#: views/help/about.php:
|
1581 |
#@ wpduplicator
|
1582 |
msgid "About"
|
1583 |
msgstr "Über"
|
1584 |
|
1585 |
-
#: views/help/about.php:
|
1586 |
#@ wpduplicator
|
1587 |
msgid "Created for Admins, Developers and Designers the Duplicator can streamline your workflows and help you quickly clone a WordPress application. Migrating a WordPress site manually can be very time consuming. The Duplicator was made to help you speed up the migration process. Please help us to continue the development effort of this plugin."
|
1588 |
msgstr "Erstellt für Admins, Entwickler und Designer, die mit dem Duplicator Ihre Arbeitsabläufe optimieren und eine Wordpress-Anwendung schnell klonen können. Die manuell Migration eines Wordpress-Seite kann sehr zeitaufwendig sein. Der Duplicator wurde entwickelt, um den Migrationsprozess zu beschleunigen. Bitte unterstütze uns, um die Entwicklung des Plugins weiter zu führen."
|
1589 |
|
1590 |
-
#: views/help/help.php:
|
1591 |
#@ wpduplicator
|
1592 |
msgid "Migrating WordPress is a complex process and the logic to make all the magic happen smoothly may not work quickly with every site. With over 30,000 plugins and a very complex server eco-system some migrations may run into issues. This is why the Duplicator includes a detailed knowledgebase that can help with many common issues. Resources to additional support, approved hosting, and alternatives to fit your needs can be found below."
|
1593 |
msgstr "Die Migration von Wordpress ist ein komplexer Prozess. Mit über 30.000 installierbaren Plugins kann es zu Problemen kommen. Deshalb enthält der Duplicator eine detaillierte Wissensdatenbank, in welcher zahlreiche Fehler beschrieben sind. Weitere Unterstützung, Hosting und Alternativen sind unten zu finden."
|
1594 |
|
1595 |
-
#: views/help/help.php:
|
1596 |
#@ wpduplicator
|
1597 |
msgid "Complete Online Documentation"
|
1598 |
msgstr "Vollständige Online-Dokumentation"
|
1599 |
|
1600 |
-
#: views/help/help.php:
|
1601 |
-
#@ wpduplicator
|
1602 |
-
msgid "Get Help From IT Profressionals"
|
1603 |
-
msgstr "Professionelle Hilfe erhalten"
|
1604 |
-
|
1605 |
-
#: views/help/help.php:79
|
1606 |
#@ wpduplicator
|
1607 |
msgid "Get Support!"
|
1608 |
msgstr "Unterstützung bekommen!"
|
1609 |
|
1610 |
-
#: views/help/help.php:
|
1611 |
#@ wpduplicator
|
1612 |
msgid "Servers That Work With Duplicator"
|
1613 |
msgstr "Server, welche mit dem Duplicator problemlos zusammenarbeiten"
|
1614 |
|
1615 |
-
#: views/help/help.php:
|
1616 |
#@ wpduplicator
|
1617 |
msgid "Trusted Providers!"
|
1618 |
msgstr "Vertrauenswürdige Provider!"
|
1619 |
|
1620 |
-
#: views/help/help.php:
|
1621 |
#@ wpduplicator
|
1622 |
msgid "Alternatives"
|
1623 |
msgstr "Alternativen"
|
1624 |
|
1625 |
-
#: views/help/help.php:
|
1626 |
#@ wpduplicator
|
1627 |
msgid "Other Commercial Resources"
|
1628 |
msgstr "Andere kommerzielle Angebote"
|
1629 |
|
1630 |
-
#:
|
|
|
1631 |
#@ wpduplicator
|
1632 |
msgid "Go Pro!"
|
1633 |
msgstr "Zur Pro-Version wechseln!"
|
1634 |
|
1635 |
#: views/packages/list-nodata.php:14
|
1636 |
#: views/packages/list-nodata.php:28
|
1637 |
-
#: views/packages/new1.base.php:
|
1638 |
#@ wpduplicator
|
1639 |
msgid "help page"
|
1640 |
msgstr "Hilfe-Seiten"
|
@@ -1644,124 +1600,345 @@ msgstr "Hilfe-Seiten"
|
|
1644 |
msgid "for additional support"
|
1645 |
msgstr "für weitere Unterstützung"
|
1646 |
|
1647 |
-
#: views/packages/new1.base.php:
|
1648 |
#@ wpduplicator
|
1649 |
msgid "PHP Version"
|
1650 |
msgstr "PHP-Version"
|
1651 |
|
1652 |
-
#: views/packages/new1.base.php:
|
1653 |
-
#: views/packages/new1.base.php:
|
|
|
1654 |
#@ wpduplicator
|
1655 |
msgid "Function"
|
1656 |
msgstr "Funktion"
|
1657 |
|
1658 |
-
#: views/packages/new1.base.php:
|
1659 |
#@ wpduplicator
|
1660 |
msgid "PHP versions 5.2.17+ or higher is required. Please note that in versioning logic a value such as 5.2.9 is less than 5.2.17. For compression to work the ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in this section please contact your hosting provider or server administrator. For additional information see our online documentation."
|
1661 |
msgstr "PHP-Versionen 5.2.17+ oder höher ist erforderlich. Bitte beachte, dass in der Versionslogik ein Wert wie 5.2.9 weniger ist als 5.2.17. Für die Kompression ist die ZipArchive-Erweiterung für PHP ist erforderlich. Der Safe Mode sollte auf 'Aus' in dir php.ini-Datei eingestellt werden (veraltet ab PHP 5.3.0). Für weitere Fragen in diesem Abschnitt wende dich an deinen Hosting-Provider oder Serveradministrator. Weitere Informationen befinden sich auf unserer Online-Dokumentation."
|
1662 |
|
1663 |
-
#: views/packages/new1.base.php:
|
1664 |
#@ wpduplicator
|
1665 |
msgid "Permissions can be difficult to resolve on some systems. If the plugin can not read the above paths here are a few things to try. 1) Set the above paths to have permissions of 755 for directories and 644 for files. You can temporarily try 777 however, be sure you don’t leave them this way. 2) Check the owner/group settings for both files and directories. The PHP script owner and the process owner are different. The script owner owns the PHP script but the process owner is the user the script is running as, thus determining its capabilities/privileges in the file system. For more details contact your host or server administrator or visit the 'Help' menu under Duplicator for additional online resources."
|
1666 |
msgstr "Berechtigungen sind auf einigen Systemen nur schwer zu ändern. Wenn das Plugin die oben genannten Pfade nicht lesen kann, versuche folgendes. 1) Setze die Berechtigungen für Verzeichnisse auf 755 und für Dateien auf 644. Versuche es ggf. vorübergehend mit 777. 2) Prüfe den Eigentümer / Gruppeneinstellungen für Dateien und Verzeichnissen. Das PHP-Skript und ein FTP-Benutzer erfordern unterschiedliche Eigentümer. Der Skript Eigentümer besitzt das PHP-Skript, aber der Prozess-Besitzer ist der Benutzer, welcher das Skript ausführt. Für weitere Informationen wende dich Host- oder Server-Administrator oder besuche das \\\"Hilfe\\\"-Menü unter Duplicator für zusätzliche Online-Ressourcen."
|
1667 |
|
1668 |
-
#: views/packages/new1.base.php:
|
1669 |
#@ wpduplicator
|
1670 |
msgid "Server Support"
|
1671 |
msgstr "Server-Support"
|
1672 |
|
1673 |
-
#: views/packages/new1.base.php:
|
1674 |
#@ wpduplicator
|
1675 |
msgid "MySQL Version"
|
1676 |
msgstr "MySQL-Version"
|
1677 |
|
1678 |
-
#: views/packages/new1.base.php:
|
1679 |
#@ wpduplicator
|
1680 |
msgid "MySQLi Support"
|
1681 |
msgstr "MySQLi-Support"
|
1682 |
|
1683 |
-
#: views/packages/new1.base.php:
|
1684 |
#@ wpduplicator
|
1685 |
msgid "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note the trailing 'i') is also required. Contact your server administrator and request that mysqli extension and MySQL Server 5.0+ be installed. Please note in future versions support for other databases and extensions will be added."
|
1686 |
msgstr "MySQL-Version 5.0 oder höher und die PHP MySQLi-Erweiterung (beachte das ergänzende \\\"i\\\") ist ebenfalls erforderlich. Kontaktiere deinen Server-Administrator und verlange, dass mysqli-Erweiterung und MySQL Server 5.0 und höher installiert werden. Bitte beachte, dass in zukünftigen Versionen Unterstützung für andere Datenbanken und Erweiterungen hinzugefügt werden."
|
1687 |
|
1688 |
-
#: views/packages/new1.base.php:
|
1689 |
#@ wpduplicator
|
1690 |
msgid "None of the reserved files (installer.php, installer-data.sql and installer-log.txt) where found from a previous install. This means you are clear to create a new package."
|
1691 |
-
msgstr "Es wurden keine reservierte Dateien (installer.php,
|
1692 |
|
1693 |
-
#: views/packages/new1.base.php:
|
1694 |
#@ wpduplicator
|
1695 |
msgid "For additional help please see the "
|
1696 |
msgstr "Weitere Hilfe befindet sich in der "
|
1697 |
|
1698 |
-
#: views/packages/new3.base.php:
|
1699 |
#@ wpduplicator
|
1700 |
msgid "Please try the process again."
|
1701 |
msgstr "Bitte versuche den Vorgang erneut."
|
1702 |
|
1703 |
-
#: views/
|
1704 |
#@ wpduplicator
|
1705 |
msgid "Server IP"
|
1706 |
msgstr "Server-IP"
|
1707 |
|
1708 |
-
#: views/
|
1709 |
#@ wpduplicator
|
1710 |
msgid "Client IP"
|
1711 |
msgstr "Client-IP"
|
1712 |
|
1713 |
-
#: classes/utility.php:
|
1714 |
#@ wpduplicator
|
1715 |
msgid "You do not have sufficient permissions to access this page."
|
1716 |
msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu betreten."
|
1717 |
|
1718 |
-
#: views/help/about.php:
|
1719 |
#@ wpduplicator
|
1720 |
msgid "Get More Great Tools"
|
1721 |
msgstr "Hole dir mehr großartige Anwendungen..."
|
1722 |
|
1723 |
-
#: views/settings/general.php:
|
1724 |
#@ wpduplicator
|
1725 |
msgid "Roles & Capabilities"
|
1726 |
msgstr "Rollen & Funktionen"
|
1727 |
|
1728 |
-
#: views/settings/general.php:
|
1729 |
#@ wpduplicator
|
1730 |
msgid "Custom Roles"
|
1731 |
msgstr "Benutzerdefinierte Rollen"
|
1732 |
|
1733 |
-
#: views/settings/general.php:
|
1734 |
#@ wpduplicator
|
1735 |
msgid "Enable User Role Editor Plugin Integration"
|
1736 |
msgstr "Ermöglicht User Role Editor Plugin Integration"
|
1737 |
|
1738 |
-
#: views/settings/general.php:
|
1739 |
#@ wpduplicator
|
1740 |
msgid "The User Role Editor Plugin"
|
1741 |
msgstr "Das User Role Editor Plugin"
|
1742 |
|
1743 |
-
#: views/settings/general.php:
|
1744 |
#@ wpduplicator
|
1745 |
msgid "Free"
|
1746 |
msgstr "Free"
|
1747 |
|
1748 |
-
#: views/settings/general.php:
|
1749 |
#@ wpduplicator
|
1750 |
msgid "or"
|
1751 |
msgstr "oder"
|
1752 |
|
1753 |
-
#: views/settings/general.php:
|
1754 |
#@ wpduplicator
|
1755 |
msgid "Professional"
|
1756 |
msgstr "Professional"
|
1757 |
|
1758 |
-
#: views/settings/general.php:
|
1759 |
#@ wpduplicator
|
1760 |
msgid "must be installed to use"
|
1761 |
msgstr "muss installiert werden zur Benutzung"
|
1762 |
|
1763 |
-
#: views/settings/general.php:
|
1764 |
#@ wpduplicator
|
1765 |
msgid "this feature."
|
1766 |
msgstr "dieser Option."
|
1767 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Duplicator v0.5.18\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-01-08 21:27-0700\n"
|
6 |
+
"PO-Revision-Date: 2015-05-06 22:50:37+0000\n"
|
7 |
"Last-Translator: Cory Lamle <cory@lifeinthegrid.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Textdomain-Support: yes"
|
22 |
|
23 |
+
#: duplicator.php:177
|
24 |
+
#: views/packages/controller.php:76
|
25 |
+
#: views/packages/list.base.php:235
|
|
|
26 |
#@ wpduplicator
|
27 |
msgid "Packages"
|
28 |
msgstr "Archive"
|
29 |
|
30 |
+
#: duplicator.php:181
|
31 |
+
#: views/settings/controller.php:19
|
32 |
#@ wpduplicator
|
33 |
msgid "Settings"
|
34 |
msgstr "Einstellungen"
|
35 |
|
36 |
+
#: duplicator.php:185
|
37 |
+
#: views/tools/controller.php:13
|
38 |
#@ wpduplicator
|
39 |
msgid "Tools"
|
40 |
msgstr "Werkzeuge"
|
41 |
|
42 |
+
#: duplicator.php:244
|
|
|
|
|
|
|
|
|
|
|
43 |
#@ wpduplicator
|
44 |
msgid "Manage"
|
45 |
msgstr "Verwalten"
|
46 |
|
47 |
#: classes/ui.php:112
|
48 |
+
#@ wpduplicator
|
49 |
msgid "Remove file(s) now"
|
50 |
+
msgstr "Entferne die Datei(en) jetzt"
|
51 |
|
52 |
#: classes/ui.php:113
|
|
|
|
|
|
|
|
|
|
|
53 |
#@ wpduplicator
|
54 |
+
msgid "Dismiss this notice"
|
55 |
+
msgstr "Verwerfe diese Notiz"
|
56 |
|
57 |
+
#: views/help/help.php:50
|
58 |
#@ wpduplicator
|
59 |
msgid "Knowledgebase"
|
60 |
msgstr "Wissens-Datenbank"
|
61 |
|
62 |
+
#: views/help/help.php:55
|
63 |
#@ wpduplicator
|
64 |
msgid "Choose A Section"
|
65 |
msgstr "Wähle eine Rubrik"
|
66 |
|
67 |
+
#: views/help/help.php:56
|
68 |
#@ wpduplicator
|
69 |
msgid "Quick Start"
|
70 |
msgstr "Schnell-Start"
|
71 |
|
72 |
+
#: views/help/help.php:57
|
73 |
#@ wpduplicator
|
74 |
msgid "User Guide"
|
75 |
msgstr "Benutzerhandbuch"
|
76 |
|
77 |
+
#: views/help/help.php:58
|
78 |
#@ wpduplicator
|
79 |
msgid "FAQs"
|
80 |
msgstr "Häufig gestellte Fragen"
|
81 |
|
82 |
+
#: views/help/help.php:59
|
83 |
#@ wpduplicator
|
84 |
msgid "Change Log"
|
85 |
msgstr "Liste der Änderungen"
|
86 |
|
87 |
+
#: views/help/help.php:60
|
88 |
#@ wpduplicator
|
89 |
msgid "Product Page"
|
90 |
msgstr "Produkt-Seite"
|
91 |
|
92 |
+
#: views/help/help.php:88
|
93 |
#@ wpduplicator
|
94 |
msgid "Approved Hosting"
|
95 |
msgstr "Empfohlene Hosting-Provider"
|
96 |
|
97 |
+
#: views/help/help.php:69
|
98 |
#@ wpduplicator
|
99 |
msgid "Online Support"
|
100 |
msgstr "Online Support"
|
101 |
|
102 |
+
#: views/help/about.php:64
|
103 |
#@ wpduplicator
|
104 |
msgid "Support Duplicator"
|
105 |
msgstr "Unterstützung Duplicator"
|
106 |
|
107 |
+
#: views/help/about.php:71
|
108 |
#@ wpduplicator
|
109 |
msgid "Partner with Us"
|
110 |
msgstr "Unsere Partner"
|
111 |
|
112 |
+
#: views/help/about.php:83
|
113 |
#@ wpduplicator
|
114 |
msgid "Keep Active and Online"
|
115 |
msgstr "Bitte unterstütze den Duplicator mit einer Spende"
|
116 |
|
117 |
+
#: views/help/about.php:90
|
118 |
#@ wpduplicator
|
119 |
msgid "Leave 5 Stars"
|
120 |
msgstr "Vergebe 5 Sterne"
|
121 |
|
122 |
+
#: views/help/about.php:107
|
123 |
#@ wpduplicator
|
124 |
msgid "Spread the Word"
|
125 |
msgstr "Verbreitung des Inhaltes"
|
126 |
|
127 |
+
#: views/help/about.php:113
|
128 |
#@ wpduplicator
|
129 |
msgid "Duplicate Your WordPress"
|
130 |
msgstr "Duplizieren dein WordPress"
|
131 |
|
132 |
+
#: views/help/about.php:114
|
133 |
#@ wpduplicator
|
134 |
msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
|
135 |
msgstr "Schnelle WordPress-Vervielfältigung von LifeInTheGrid.com"
|
136 |
|
137 |
+
#: views/packages/list.base.php:62
|
138 |
+
#: views/packages/new1.base.php:97
|
139 |
+
#: views/packages/new2.base.php:69
|
140 |
+
#: views/packages/new3.base.php:44
|
141 |
#@ wpduplicator
|
142 |
msgid "Create New"
|
143 |
msgstr "Neu erzeugen"
|
147 |
msgid "No Packages Found."
|
148 |
msgstr "Keine Archive gefunden."
|
149 |
|
|
|
|
|
|
|
|
|
|
|
150 |
#: views/packages/list-nodata.php:13
|
151 |
#@ wpduplicator
|
152 |
msgid "Please visit the"
|
172 |
msgid "Hide this message"
|
173 |
msgstr "Diese Nachricht ausblenden"
|
174 |
|
175 |
+
#: views/packages/list.base.php:50
|
176 |
#@ wpduplicator
|
177 |
msgid "Bulk Actions"
|
178 |
msgstr "Auswahl"
|
179 |
|
180 |
+
#: views/packages/list.base.php:51
|
181 |
#@ wpduplicator
|
182 |
msgid "Delete selected package(s)"
|
183 |
msgstr "Ausgewählte Archive löschen"
|
184 |
|
185 |
+
#: views/packages/list.base.php:51
|
186 |
#@ wpduplicator
|
187 |
msgid "Delete"
|
188 |
msgstr "Löschen"
|
189 |
|
190 |
+
#: views/packages/list.base.php:53
|
191 |
#@ wpduplicator
|
192 |
msgid "Apply"
|
193 |
msgstr "Anwenden"
|
194 |
|
195 |
+
#: views/packages/list.base.php:58
|
196 |
#@ wpduplicator
|
197 |
msgid "Package Logs"
|
198 |
msgstr "Archiv Logs"
|
199 |
|
200 |
+
#: views/packages/list.base.php:87
|
201 |
#@ wpduplicator
|
202 |
msgid "Select all packages"
|
203 |
msgstr "Alle Archive auswählen"
|
204 |
|
205 |
+
#: views/packages/list.base.php:88
|
206 |
+
#: views/packages/new3.base.php:108
|
207 |
#@ wpduplicator
|
208 |
msgid "Details"
|
209 |
msgstr "Details"
|
210 |
|
211 |
+
#: views/packages/list.base.php:89
|
212 |
#@ wpduplicator
|
213 |
msgid "Created"
|
214 |
msgstr "Erstellt"
|
215 |
|
216 |
+
#: views/packages/list.base.php:90
|
217 |
+
#: views/packages/new2.base.php:221
|
218 |
+
#: views/packages/new2.base.php:323
|
219 |
#@ wpduplicator
|
220 |
msgid "Size"
|
221 |
msgstr "Größe"
|
222 |
|
223 |
+
#: views/packages/list.base.php:91
|
224 |
+
#: views/packages/new1.inc.form.php:6
|
225 |
+
#: views/packages/new1.inc.form.php:31
|
226 |
+
#: views/packages/new3.base.php:74
|
227 |
#@ wpduplicator
|
228 |
msgid "Name"
|
229 |
msgstr "Name"
|
230 |
|
231 |
+
#: views/packages/list.base.php:93
|
232 |
+
#: views/settings/general.php:110
|
|
|
233 |
#@ wpduplicator
|
234 |
msgid "Package"
|
235 |
msgstr "Archiv"
|
236 |
|
237 |
+
#: views/packages/list.base.php:124
|
238 |
#@ wpduplicator
|
239 |
msgid "(No Notes Taken)"
|
240 |
msgstr "(Keine Notizen erstellt)"
|
241 |
|
242 |
+
#: views/packages/list.base.php:142
|
243 |
+
#: views/packages/list.base.php:187
|
244 |
#@ wpduplicator
|
245 |
msgid "View"
|
246 |
msgstr "Ansicht"
|
247 |
|
248 |
+
#: views/packages/list.base.php:147
|
249 |
+
#: views/packages/new1.inc.form.php:176
|
250 |
+
#: views/packages/new3.base.php:79
|
251 |
#@ wpduplicator
|
252 |
msgid "Installer"
|
253 |
msgstr "Installer"
|
254 |
|
255 |
+
#: views/packages/list.base.php:150
|
256 |
+
#: views/packages/new1.inc.form.php:65
|
257 |
+
#: views/packages/new2.base.php:194
|
258 |
+
#: views/packages/new3.base.php:83
|
259 |
#@ wpduplicator
|
260 |
msgid "Archive"
|
261 |
msgstr "Archive"
|
262 |
|
263 |
+
#: views/packages/list.base.php:155
|
264 |
+
#: views/packages/list.base.php:200
|
265 |
+
#: views/settings/general.php:79
|
266 |
+
#: views/tools/diagnostics.php:141
|
267 |
+
#: views/tools/diagnostics.php:160
|
268 |
+
#: views/tools/diagnostics.php:200
|
269 |
#@ wpduplicator
|
270 |
msgid "Version"
|
271 |
msgstr "Version"
|
272 |
|
273 |
+
#: views/packages/list.base.php:156
|
274 |
+
#: views/packages/list.base.php:201
|
275 |
+
#: views/packages/new1.inc.form.php:195
|
276 |
+
#: views/tools/diagnostics.php:168
|
277 |
#@ wpduplicator
|
278 |
msgid "User"
|
279 |
msgstr "Benutzer"
|
280 |
|
281 |
+
#: views/packages/list.base.php:157
|
282 |
+
#: views/packages/list.base.php:202
|
283 |
#@ wpduplicator
|
284 |
msgid "Hash"
|
285 |
msgstr "Hash"
|
286 |
|
287 |
+
#: views/packages/list.base.php:158
|
288 |
+
#: views/packages/list.base.php:207
|
289 |
+
#: views/packages/new1.inc.form.php:8
|
290 |
+
#: views/packages/new1.inc.form.php:13
|
291 |
#@ wpduplicator
|
292 |
msgid "Notes"
|
293 |
msgstr "Anmerkungen"
|
294 |
|
295 |
+
#: views/packages/list.base.php:160
|
296 |
#@ wpduplicator
|
297 |
msgid "Links"
|
298 |
msgstr "Links"
|
299 |
|
300 |
+
#: views/packages/list.base.php:213
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
#@ wpduplicator
|
302 |
msgid "View Log"
|
303 |
msgstr "Log ansehen"
|
304 |
|
305 |
+
#: views/packages/list.base.php:193
|
306 |
#@ wpduplicator
|
307 |
msgid "View Error Details"
|
308 |
msgstr "Fehler-Details ansehen"
|
309 |
|
310 |
+
#: views/packages/list.base.php:210
|
311 |
#@ wpduplicator
|
312 |
msgid "This package has encountered errors. Click 'View Log' for more details. For additional support see the "
|
313 |
msgstr "Es sind Fehler aufgetreten. Klicke auf 'Log ansehen' für weitere Details. Zusätzliche Unterstützung findest du in der "
|
314 |
|
315 |
+
#: views/packages/list.base.php:211
|
316 |
#@ wpduplicator
|
317 |
msgid "online knowledgebase"
|
318 |
msgstr "Online-Wissensdatenbank"
|
319 |
|
320 |
+
#: views/packages/list.base.php:236
|
321 |
+
#: views/packages/new2.base.php:218
|
322 |
+
#: views/packages/new2.base.php:317
|
323 |
#@ wpduplicator
|
324 |
msgid "Total Size"
|
325 |
msgstr "Gesamte Größe"
|
326 |
|
327 |
+
#: views/packages/list.base.php:255
|
328 |
#@ wpduplicator
|
329 |
msgid "Download Links"
|
330 |
msgstr "Download Links"
|
331 |
|
332 |
+
#: views/packages/list.base.php:258
|
333 |
#@ wpduplicator
|
334 |
msgid "The following links contain sensitive data. Please share with caution!"
|
335 |
msgstr "Die folgenden Links enthalten sensible Daten. Bitte verwende sie mit Vorsicht!"
|
336 |
|
337 |
+
#: views/packages/list.base.php:264
|
338 |
#@ wpduplicator
|
339 |
msgid "The database SQL script is a quick link to your database backup script. An exact copy is also stored in the package."
|
340 |
msgstr "Das Datenbank-SQL-Skript ist ein direkter Link zum Datenbank-Backup-Skript. Eine exakte Kopie ist auch im Archiv gespeichert."
|
341 |
|
342 |
+
#: views/packages/list.base.php:287
|
343 |
#@ wpduplicator
|
344 |
msgid "Please select an action from the bulk action drop down menu to perform a specific action."
|
345 |
msgstr "Bitte wähle eine Aktion aus dem Dropdown-Menü aus."
|
346 |
|
347 |
+
#: views/packages/list.base.php:295
|
348 |
#@ wpduplicator
|
349 |
msgid "Please select at least one package to delete."
|
350 |
msgstr "Bitte wähle mindestens ein Archiv zum Löschen."
|
351 |
|
352 |
+
#: views/packages/list.base.php:299
|
353 |
#@ wpduplicator
|
354 |
msgid "Are you sure, you want to delete the selected package(s)?"
|
355 |
msgstr "Ausgewählte Archive wirklich löschen?"
|
356 |
|
357 |
+
#: views/packages/list.base.php:333
|
358 |
#@ wpduplicator
|
359 |
msgid "Package File Links"
|
360 |
msgstr "Archiv-Datei Links"
|
361 |
|
362 |
+
#: views/packages/list.base.php:336
|
363 |
#@ wpduplicator
|
364 |
msgid "DATABASE"
|
365 |
msgstr "Datenbank"
|
366 |
|
367 |
+
#: views/packages/list.base.php:337
|
368 |
#@ wpduplicator
|
369 |
msgid "PACKAGE"
|
370 |
msgstr "Archive"
|
371 |
|
372 |
+
#: views/packages/list.base.php:338
|
373 |
#@ wpduplicator
|
374 |
msgid "INSTALLER"
|
375 |
msgstr "INSTALLER"
|
376 |
|
377 |
+
#: views/packages/list.base.php:339
|
378 |
#@ wpduplicator
|
379 |
msgid "LOG"
|
380 |
msgstr "Log"
|
381 |
|
382 |
+
#: views/packages/new1.base.php:86
|
383 |
+
#: views/packages/new2.base.php:58
|
384 |
+
#: views/packages/new3.base.php:33
|
385 |
#@ wpduplicator
|
386 |
msgid "Setup"
|
387 |
msgstr "Setup"
|
388 |
|
389 |
+
#: views/packages/new1.base.php:87
|
390 |
+
#: views/packages/new2.base.php:59
|
391 |
+
#: views/packages/new3.base.php:34
|
392 |
#@ wpduplicator
|
393 |
msgid "Scan"
|
394 |
msgstr "Scan"
|
395 |
|
396 |
+
#: views/packages/new1.base.php:88
|
397 |
+
#: views/packages/new2.base.php:60
|
398 |
+
#: views/packages/new2.base.php:377
|
399 |
+
#: views/packages/new3.base.php:35
|
400 |
#@ wpduplicator
|
401 |
msgid "Build"
|
402 |
msgstr "Erstellen"
|
403 |
|
404 |
+
#: views/packages/new1.base.php:91
|
405 |
#@ wpduplicator
|
406 |
msgid "Step 1: Package Setup"
|
407 |
msgstr "Schritt 1: Archiv-Setup"
|
408 |
|
409 |
+
#: views/packages/new1.base.php:115
|
410 |
#@ wpduplicator
|
411 |
msgid "Requirements:"
|
412 |
msgstr "Anforderungen:"
|
413 |
|
414 |
+
#: views/packages/new1.base.php:169
|
|
|
|
|
|
|
|
|
|
|
415 |
#@ wpduplicator
|
416 |
msgid "Permissions"
|
417 |
msgstr "Berechtigungen"
|
418 |
|
419 |
+
#: views/packages/new1.base.php:172
|
420 |
#@ wpduplicator
|
421 |
msgid "Required Paths"
|
422 |
msgstr "Erforderliche Pfade"
|
423 |
|
424 |
+
#: views/packages/new1.base.php:217
|
425 |
#@ wpduplicator
|
426 |
msgid "Reserved Files"
|
427 |
msgstr "Reservierte Dateien"
|
428 |
|
429 |
+
#: views/packages/new1.base.php:224
|
430 |
#@ wpduplicator
|
431 |
msgid "A reserved file(s) was found in the WordPress root directory. Reserved file names are installer.php, installer-data.sql and installer-log.txt. To archive your data correctly please remove any of these files from your WordPress root directory. Then try creating your package again."
|
432 |
+
msgstr "Es wurden reservierte Datei (en) im WordPress Stammverzeichnis gefunden. Reservierte Dateinamen sind installer.php, installer-data.sql und installer-log.txt. Zum korrekten Archivieren deiner Dateien entferne bitte diese Dateien aus dem WordPress-Stammverzeichnis. Dann versuche erneut, das Archiv zu erstellen."
|
433 |
|
434 |
+
#: views/packages/new1.base.php:225
|
435 |
#@ wpduplicator
|
436 |
msgid "Remove Files Now"
|
437 |
msgstr "Dateien werden entfernt"
|
438 |
|
439 |
+
#: views/packages/new1.base.php:140
|
440 |
#@ wpduplicator
|
441 |
msgid "Zip Archive Enabled"
|
442 |
msgstr "Zip-Archiv aktiviert"
|
443 |
|
444 |
+
#: views/packages/new1.base.php:144
|
445 |
#@ wpduplicator
|
446 |
msgid "Safe Mode Off"
|
447 |
msgstr "Safe Mode Off"
|
448 |
|
449 |
+
#: views/packages/new1.base.php:208
|
450 |
+
#: views/packages/new2.base.php:136
|
451 |
+
#: views/packages/new2.base.php:148
|
452 |
#@ wpduplicator
|
453 |
msgid "more info"
|
454 |
msgstr "mehr Informationen"
|
455 |
|
456 |
+
#: views/packages/new1.base.php:130
|
457 |
#@ wpduplicator
|
458 |
msgid "PHP Support"
|
459 |
msgstr "PHP-Unterstützung"
|
460 |
|
461 |
+
#: views/packages/new2.base.php:110
|
462 |
+
#: views/packages/new2.base.php:116
|
463 |
+
#: views/tools/diagnostics.php:106
|
464 |
#@ wpduplicator
|
465 |
msgid "Web Server"
|
466 |
msgstr "Webserver"
|
467 |
|
468 |
+
#: views/packages/new1.inc.form.php:67
|
469 |
#@ wpduplicator
|
470 |
msgid "File filter enabled"
|
471 |
msgstr "Datei-Filter aktiviert"
|
472 |
|
473 |
+
#: views/packages/new1.inc.form.php:68
|
474 |
#@ wpduplicator
|
475 |
msgid "Database filter enabled"
|
476 |
msgstr "Datenbank-Filter aktiviert"
|
477 |
|
478 |
+
#: views/packages/new1.inc.form.php:77
|
479 |
+
#: views/packages/new2.base.php:202
|
|
|
|
|
|
|
|
|
|
|
480 |
#@ wpduplicator
|
481 |
msgid "Files"
|
482 |
msgstr "Dateien"
|
483 |
|
484 |
+
#: views/packages/new1.inc.form.php:78
|
485 |
+
#: views/packages/new1.inc.form.php:191
|
486 |
+
#: views/packages/new2.base.php:301
|
487 |
#@ wpduplicator
|
488 |
msgid "Database"
|
489 |
msgstr "Datenbank"
|
490 |
|
491 |
+
#: views/packages/new1.inc.form.php:94
|
492 |
+
#: views/packages/new1.inc.form.php:102
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#@ wpduplicator
|
494 |
msgid "Separate all filters by semicolon"
|
495 |
msgstr "Trenne alle Filter durch ein Semikolon"
|
496 |
|
497 |
+
#: views/packages/new1.inc.form.php:94
|
498 |
+
#: views/packages/new2.base.php:271
|
499 |
#@ wpduplicator
|
500 |
msgid "Directories"
|
501 |
msgstr "Verzeichnisse"
|
502 |
|
503 |
+
#: views/packages/new1.inc.form.php:96
|
504 |
#@ wpduplicator
|
505 |
msgid "root path"
|
506 |
msgstr "Root-Pfad"
|
507 |
|
508 |
+
#: views/packages/new1.inc.form.php:97
|
509 |
#@ wpduplicator
|
510 |
msgid "wp-uploads"
|
511 |
msgstr "uploads"
|
512 |
|
513 |
+
#: views/packages/new1.inc.form.php:99
|
514 |
+
#: views/packages/new1.inc.form.php:106
|
515 |
#@ wpduplicator
|
516 |
msgid "(clear)"
|
517 |
msgstr "(Löschen)"
|
518 |
|
519 |
+
#: views/packages/new1.inc.form.php:102
|
520 |
#@ wpduplicator
|
521 |
msgid "File extensions"
|
522 |
msgstr "Datei-Erweiterungen"
|
523 |
|
524 |
+
#: views/packages/new1.inc.form.php:104
|
525 |
#@ wpduplicator
|
526 |
msgid "media"
|
527 |
msgstr "Medien"
|
528 |
|
529 |
+
#: views/packages/new1.inc.form.php:105
|
530 |
#@ wpduplicator
|
531 |
msgid "archive"
|
532 |
msgstr "Archive"
|
533 |
|
534 |
+
#: views/packages/new1.inc.form.php:111
|
535 |
#@ wpduplicator
|
536 |
msgid "The directory paths and extensions above will be be excluded from the archive file if enabled is checked."
|
537 |
msgstr "Diese Verzeichnispfade und Erweiterungen werden aus der Archivdatei ausgeschlossen."
|
538 |
|
539 |
+
#: views/packages/new1.inc.form.php:112
|
540 |
#@ wpduplicator
|
541 |
msgid "Use the full path for directories and semicolons to separate all items."
|
542 |
msgstr "Verwende den vollständigen Pfad für Verzeichnisse und Semikolons, um alle Elemente zu trennen."
|
543 |
|
544 |
+
#: views/packages/new1.inc.form.php:163
|
545 |
#@ wpduplicator
|
546 |
msgid "Checked tables will not be added to the database script. Excluding certain tables can possibly cause your site or plugins to not work correctly after install!"
|
547 |
msgstr "Ausgewählte Tabellen werden dem Archiv nicht hinzugefügt. Ohne diese Tabellen funktionieren möglicherweise die Website oder Plugins nach der Installation nicht korrekt!"
|
548 |
|
549 |
+
#: views/packages/new1.inc.form.php:181
|
550 |
#@ default
|
551 |
msgid "STEP 1 - INPUTS"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: views/packages/new1.inc.form.php:184
|
555 |
#@ wpduplicator
|
556 |
msgid "MySQL Server"
|
557 |
msgstr "MySQL-Server"
|
558 |
|
559 |
+
#: views/packages/new1.inc.form.php:187
|
560 |
#@ wpduplicator
|
561 |
msgid "Host"
|
562 |
msgstr "Host"
|
563 |
|
564 |
+
#: views/packages/new1.inc.form.php:199
|
565 |
#@ wpduplicator
|
566 |
msgid "Advanced Options"
|
567 |
msgstr "Erweiterte Optionen"
|
568 |
|
569 |
+
#: views/packages/new1.inc.form.php:205
|
570 |
#@ wpduplicator
|
571 |
msgid "SSL"
|
572 |
msgstr "SSL"
|
573 |
|
574 |
+
#: views/packages/new1.inc.form.php:208
|
575 |
#@ wpduplicator
|
576 |
msgid "Enforce on Admin"
|
577 |
+
msgstr "Admin erzwingen"
|
578 |
|
579 |
+
#: views/packages/new1.inc.form.php:212
|
580 |
#@ wpduplicator
|
581 |
msgid "Enforce on Logins"
|
582 |
+
msgstr "Logins erzwingen"
|
583 |
|
584 |
+
#: views/packages/new1.inc.form.php:216
|
585 |
#@ wpduplicator
|
586 |
msgid "Cache"
|
587 |
msgstr "Cache"
|
588 |
|
589 |
+
#: views/packages/new1.inc.form.php:219
|
590 |
#@ wpduplicator
|
591 |
msgid "Keep Enabled"
|
592 |
+
msgstr "Aktiviert halten"
|
593 |
|
594 |
+
#: views/packages/new1.inc.form.php:223
|
595 |
#@ wpduplicator
|
596 |
msgid "Keep Home Path"
|
597 |
+
msgstr "Startseite Pfad belassen"
|
598 |
|
599 |
+
#: views/packages/new1.inc.form.php:231
|
600 |
#@ default
|
601 |
msgid "STEP 2 - INPUTS"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: views/packages/new1.inc.form.php:235
|
605 |
#@ wpduplicator
|
606 |
msgid "New URL"
|
607 |
msgstr "Neue URL"
|
608 |
|
609 |
+
#: views/packages/new1.inc.form.php:241
|
610 |
#@ wpduplicator
|
611 |
msgid "The installer can have these fields pre-filled at install time."
|
612 |
msgstr "Das Installationsprogramm kann diese Felder bereits vor der Installation ausgefüllt haben."
|
613 |
|
614 |
+
#: views/packages/new1.inc.form.php:241
|
615 |
#@ wpduplicator
|
616 |
msgid "All values are optional."
|
617 |
msgstr "Alle Werte sind optional."
|
618 |
|
619 |
+
#: views/packages/new1.inc.form.php:251
|
620 |
#@ wpduplicator
|
621 |
msgid "Next"
|
622 |
msgstr "Weiter"
|
623 |
|
624 |
+
#: views/packages/new2.base.php:63
|
625 |
#@ wpduplicator
|
626 |
msgid "Step 2: System Scan"
|
627 |
msgstr "Schritt 2: System Scan"
|
628 |
|
629 |
+
#: views/packages/new2.base.php:79
|
630 |
#@ wpduplicator
|
631 |
msgid "Scanning Site"
|
632 |
msgstr "Scan Seite"
|
633 |
|
634 |
+
#: views/packages/new2.base.php:81
|
635 |
+
#: views/packages/new3.base.php:57
|
636 |
#@ wpduplicator
|
637 |
msgid "Please Wait..."
|
638 |
msgstr "Bitte warten..."
|
639 |
|
640 |
+
#: views/packages/new2.base.php:87
|
641 |
#@ wpduplicator
|
642 |
msgid "Scan Complete"
|
643 |
msgstr "Scan vollständig"
|
644 |
|
645 |
+
#: views/packages/new2.base.php:89
|
646 |
#@ wpduplicator
|
647 |
msgid "Scan checks are not required to pass, however they could cause issues on some systems."
|
648 |
msgstr "Scan-Checks sind nicht unbedingt erforderlich, können jedoch auf einigen Systemen Probleme verursachen."
|
649 |
|
650 |
+
#: views/packages/new2.base.php:99
|
651 |
#@ wpduplicator
|
652 |
msgid "Server"
|
653 |
msgstr "Server"
|
654 |
|
655 |
+
#: views/packages/new2.base.php:101
|
656 |
+
#: views/tools/controller.php:17
|
657 |
#@ wpduplicator
|
658 |
msgid "Diagnostics"
|
659 |
msgstr "Diagnose"
|
660 |
|
661 |
+
#: views/packages/new2.base.php:133
|
662 |
#@ wpduplicator
|
663 |
msgid "Open Base Dir"
|
664 |
msgstr "Open Base Dir"
|
665 |
|
666 |
+
#: views/packages/new2.base.php:183
|
667 |
#@ wpduplicator
|
668 |
msgid "Cache Path"
|
669 |
msgstr "Cache-Pfad"
|
670 |
|
671 |
+
#: views/packages/new2.base.php:207
|
672 |
+
#: views/packages/new2.base.php:306
|
673 |
#@ wpduplicator
|
674 |
msgid "Enabled"
|
675 |
msgstr "Aktiviert"
|
676 |
|
677 |
+
#: views/packages/new2.base.php:222
|
678 |
#@ wpduplicator
|
679 |
msgid "File Count"
|
680 |
msgstr "Dateianzahl"
|
681 |
|
682 |
+
#: views/packages/new2.base.php:223
|
683 |
#@ wpduplicator
|
684 |
msgid "Directory Count"
|
685 |
msgstr "Verzeichnisanzahl"
|
686 |
|
687 |
+
#: views/packages/new2.base.php:234
|
688 |
#@ wpduplicator
|
689 |
msgid "Invalid Names"
|
690 |
msgstr "Ungültige Namen"
|
691 |
|
692 |
+
#: views/packages/new2.base.php:249
|
693 |
#@ wpduplicator
|
694 |
msgid "Large Files"
|
695 |
msgstr "Große Dateien"
|
696 |
|
697 |
+
#: views/packages/new2.base.php:321
|
698 |
#@ wpduplicator
|
699 |
msgid "Tables"
|
700 |
msgstr "Tabellen"
|
701 |
|
702 |
+
#: views/packages/new2.base.php:322
|
703 |
#@ wpduplicator
|
704 |
msgid "Records"
|
705 |
msgstr "Aufzeichnungen"
|
706 |
|
707 |
+
#: views/packages/new2.base.php:325
|
708 |
#@ wpduplicator
|
709 |
msgid "repair and optimization"
|
710 |
msgstr "Reparatur und Optimierung"
|
711 |
|
712 |
+
#: views/packages/new2.base.php:338
|
713 |
#@ wpduplicator
|
714 |
msgid "Table Details"
|
715 |
msgstr "Tabellen-Details"
|
716 |
|
717 |
+
#: views/packages/new2.base.php:349
|
718 |
#@ wpduplicator
|
719 |
msgid "Name:"
|
720 |
msgstr "Name:"
|
721 |
|
722 |
+
#: views/packages/new2.base.php:350
|
723 |
#@ wpduplicator
|
724 |
msgid "Host:"
|
725 |
msgstr "Host:"
|
726 |
|
727 |
+
#: views/packages/new2.base.php:351
|
728 |
#@ wpduplicator
|
729 |
msgid "Build Mode:"
|
730 |
msgstr "Erstellungs-Modus:"
|
731 |
|
732 |
+
#: views/packages/new2.base.php:362
|
733 |
#@ wpduplicator
|
734 |
msgid "Scan Error"
|
735 |
msgstr "Scan Fehler"
|
736 |
|
737 |
+
#: views/packages/new2.base.php:363
|
738 |
#@ wpduplicator
|
739 |
msgid "Please try again!"
|
740 |
msgstr "Bitte nochmals versuchen!"
|
741 |
|
742 |
+
#: views/packages/new2.base.php:365
|
743 |
+
#: views/packages/new3.base.php:111
|
744 |
#@ wpduplicator
|
745 |
msgid "Server Status:"
|
746 |
msgstr "Server Status:"
|
747 |
|
748 |
+
#: views/packages/new2.base.php:368
|
749 |
+
#: views/packages/new3.base.php:115
|
750 |
#@ wpduplicator
|
751 |
msgid "Error Message:"
|
752 |
msgstr "Fehler-Meldung:"
|
753 |
|
754 |
+
#: views/packages/new2.base.php:375
|
755 |
#@ wpduplicator
|
756 |
msgid "Back"
|
757 |
msgstr "Zurück"
|
758 |
|
759 |
+
#: views/packages/new2.base.php:376
|
760 |
#@ wpduplicator
|
761 |
msgid "Rescan"
|
762 |
msgstr "Erneuter Scan"
|
763 |
|
764 |
+
#: views/packages/new2.base.php:463
|
765 |
#@ wpduplicator
|
766 |
msgid "Unable to report on any tables"
|
767 |
msgstr "Kein Bericht über die Tabellen"
|
768 |
|
769 |
+
#: views/packages/new2.base.php:472
|
770 |
#@ wpduplicator
|
771 |
msgid "Unable to report on database stats"
|
772 |
msgstr "Kein Bericht zum Datenbank-Status"
|
773 |
|
774 |
+
#: views/packages/new2.base.php:487
|
775 |
#@ wpduplicator
|
776 |
msgid "No name length issues."
|
777 |
msgstr "Keine lange oder ungültige Namen."
|
778 |
|
779 |
+
#: views/packages/new2.base.php:490
|
780 |
+
#: views/packages/new2.base.php:498
|
781 |
#@ wpduplicator
|
782 |
msgid "FILE"
|
783 |
msgstr "Datei"
|
784 |
|
785 |
+
#: views/packages/new2.base.php:495
|
786 |
#@ wpduplicator
|
787 |
msgid "No large files found."
|
788 |
msgstr "Keine großen Dateien gefunden."
|
789 |
|
790 |
+
#: views/packages/new3.base.php:38
|
791 |
#@ wpduplicator
|
792 |
msgid "Step 3: Build Package"
|
793 |
msgstr "Schritt 3: Archiv erstellen"
|
794 |
|
795 |
+
#: views/packages/new3.base.php:55
|
796 |
#@ wpduplicator
|
797 |
msgid "Building Package"
|
798 |
msgstr "Archiv erstellen"
|
799 |
|
800 |
+
#: views/packages/new3.base.php:58
|
801 |
#@ wpduplicator
|
802 |
msgid "Keep this window open during the build process."
|
803 |
msgstr "Lass dieses Fenster während der Archiv-Erstellung geöffnet."
|
804 |
|
805 |
+
#: views/packages/new3.base.php:59
|
806 |
#@ wpduplicator
|
807 |
msgid "This may take several minutes."
|
808 |
msgstr "Dies kann einige Minuten dauern."
|
809 |
|
810 |
+
#: views/packages/new3.base.php:63
|
811 |
#@ wpduplicator
|
812 |
msgid "Build Status"
|
813 |
msgstr "Erstellungs-Status"
|
814 |
|
815 |
+
#: views/packages/new3.base.php:70
|
816 |
#@ wpduplicator
|
817 |
msgid "Package Completed"
|
818 |
msgstr "Archiv komplett"
|
819 |
|
820 |
+
#: views/packages/new3.base.php:75
|
821 |
#@ wpduplicator
|
822 |
msgid "Process Time"
|
823 |
msgstr "Verarbeitungszeit"
|
824 |
|
825 |
+
#: views/packages/list.base.php:61
|
826 |
+
#: views/packages/new1.base.php:96
|
827 |
+
#: views/packages/new2.base.php:68
|
828 |
+
#: views/packages/new3.base.php:43
|
829 |
+
#: views/packages/new3.base.php:89
|
830 |
#@ wpduplicator
|
831 |
msgid "All Packages"
|
832 |
msgstr "Alle Archive"
|
833 |
|
834 |
+
#: views/packages/new3.base.php:106
|
835 |
#@ wpduplicator
|
836 |
msgid "Try Again"
|
837 |
msgstr "Nochmals versuchen"
|
838 |
|
839 |
+
#: views/packages/new3.base.php:136
|
840 |
#@ wpduplicator
|
841 |
msgid "Package Log"
|
842 |
msgstr "Archiv Log"
|
843 |
|
844 |
+
#: views/settings/controller.php:22
|
845 |
+
#: views/tools/diagnostics.php:87
|
846 |
#@ wpduplicator
|
847 |
msgid "General"
|
848 |
msgstr "Allgemein"
|
849 |
|
850 |
+
#: views/tools/diagnostics.php:18
|
851 |
+
#: views/tools/diagnostics.php:19
|
852 |
#@ wpduplicator
|
853 |
msgid "unknow"
|
854 |
msgstr "unbekannt"
|
855 |
|
856 |
+
#: views/tools/diagnostics.php:39
|
857 |
#@ wpduplicator
|
858 |
msgid "Plugin settings reset."
|
859 |
msgstr "Plugin-Einstellungen zurücksetzen."
|
860 |
|
861 |
+
#: views/tools/diagnostics.php:40
|
862 |
#@ wpduplicator
|
863 |
msgid "View state settings reset."
|
864 |
msgstr "Statuseinstellungen zurücksetzen."
|
865 |
|
866 |
+
#: views/tools/diagnostics.php:41
|
867 |
#@ wpduplicator
|
868 |
msgid "Active package settings reset."
|
869 |
msgstr "Aktive Archiv-Einstellungen zurücksetzen."
|
870 |
|
|
|
871 |
#: views/tools/cleanup.php:12
|
872 |
+
#: views/tools/diagnostics.php:44
|
873 |
#@ wpduplicator
|
874 |
msgid "Legacy data removed."
|
875 |
msgstr "Daten entfernt."
|
876 |
|
877 |
+
#: views/tools/diagnostics.php:81
|
878 |
#@ wpduplicator
|
879 |
msgid "Server Settings"
|
880 |
msgstr "Server-Einstellungen"
|
881 |
|
882 |
+
#: views/tools/diagnostics.php:90
|
883 |
#@ wpduplicator
|
884 |
msgid "Duplicator Version"
|
885 |
msgstr "Duplicator-Version"
|
886 |
|
887 |
+
#: views/tools/diagnostics.php:94
|
888 |
#@ wpduplicator
|
889 |
msgid "Operating System"
|
890 |
msgstr "Betriebs-System"
|
891 |
|
892 |
+
#: views/tools/diagnostics.php:110
|
893 |
#@ wpduplicator
|
894 |
msgid "APC Enabled"
|
895 |
msgstr "APC Aktiviert"
|
896 |
|
897 |
+
#: views/tools/diagnostics.php:114
|
898 |
#@ wpduplicator
|
899 |
msgid "Root Path"
|
900 |
msgstr "Root-Pfad"
|
901 |
|
902 |
+
#: views/tools/diagnostics.php:122
|
903 |
#@ wpduplicator
|
904 |
msgid "Plugins Path"
|
905 |
msgstr "Plugin-Pfad"
|
906 |
|
907 |
+
#: views/tools/diagnostics.php:126
|
908 |
#@ wpduplicator
|
909 |
msgid "Loaded PHP INI"
|
910 |
msgstr "Geladene PHP-INI"
|
911 |
|
912 |
+
#: views/tools/diagnostics.php:145
|
913 |
#@ wpduplicator
|
914 |
msgid "Langugage"
|
915 |
msgstr "Sprache"
|
916 |
|
917 |
+
#: views/tools/diagnostics.php:149
|
918 |
+
#: views/tools/diagnostics.php:204
|
919 |
#@ wpduplicator
|
920 |
msgid "Charset"
|
921 |
msgstr "Zeichensatz"
|
922 |
|
923 |
+
#: views/tools/diagnostics.php:153
|
924 |
#@ wpduplicator
|
925 |
msgid "Memory Limit "
|
926 |
msgstr "Speicher-Limit "
|
927 |
|
928 |
+
#: views/tools/diagnostics.php:154
|
929 |
#@ wpduplicator
|
930 |
msgid "Max"
|
931 |
msgstr "Max"
|
932 |
|
933 |
+
#: views/tools/diagnostics.php:172
|
934 |
#@ wpduplicator
|
935 |
msgid "Safe Mode"
|
936 |
msgstr "Safe Mode"
|
937 |
|
938 |
+
#: views/tools/diagnostics.php:176
|
939 |
#@ wpduplicator
|
940 |
msgid "On"
|
941 |
msgstr "An"
|
942 |
|
943 |
+
#: views/tools/diagnostics.php:176
|
944 |
#@ wpduplicator
|
945 |
msgid "Off"
|
946 |
msgstr "Aus"
|
947 |
|
948 |
+
#: views/tools/diagnostics.php:181
|
949 |
#@ wpduplicator
|
950 |
msgid "Memory Limit"
|
951 |
msgstr "Speicher-Limit"
|
952 |
|
953 |
+
#: views/tools/diagnostics.php:185
|
954 |
#@ wpduplicator
|
955 |
msgid "Memory In Use"
|
956 |
msgstr "Verwendeter Arbeitsspeicher"
|
957 |
|
958 |
+
#: views/packages/new2.base.php:140
|
959 |
+
#: views/tools/diagnostics.php:189
|
960 |
#@ wpduplicator
|
961 |
msgid "Max Execution Time"
|
962 |
msgstr "Maximale Ausführungs-Zeit"
|
963 |
|
964 |
+
#: views/tools/diagnostics.php:193
|
965 |
#@ wpduplicator
|
966 |
msgid "Shell Exec"
|
967 |
msgstr "Shell Exec"
|
968 |
|
969 |
+
#: views/tools/diagnostics.php:194
|
970 |
#@ wpduplicator
|
971 |
msgid "Is Supported"
|
972 |
msgstr "Wird unterstützt"
|
973 |
|
974 |
+
#: views/tools/diagnostics.php:194
|
975 |
#@ wpduplicator
|
976 |
msgid "Not Supported"
|
977 |
msgstr "Nicht unterstützt"
|
978 |
|
979 |
+
#: views/tools/diagnostics.php:208
|
980 |
#@ wpduplicator
|
981 |
msgid "Wait Timeout"
|
982 |
msgstr "Wartezeitsperre"
|
983 |
|
984 |
+
#: views/tools/diagnostics.php:212
|
985 |
#@ wpduplicator
|
986 |
msgid "Max Allowed Packets"
|
987 |
msgstr "Maximal erlaubte Pakete"
|
988 |
|
989 |
+
#: views/tools/diagnostics.php:216
|
990 |
#@ wpduplicator
|
991 |
msgid "msyqldump Path"
|
992 |
msgstr "msyqldump Pfad"
|
993 |
|
994 |
+
#: views/tools/diagnostics.php:220
|
995 |
#@ wpduplicator
|
996 |
msgid "Server Disk"
|
997 |
msgstr "Server-Festplatte"
|
998 |
|
999 |
+
#: views/tools/diagnostics.php:223
|
1000 |
#@ hyper-cache
|
1001 |
msgid "Free space"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: views/tools/diagnostics.php:226
|
1005 |
#@ wpduplicator
|
1006 |
msgid "Note: This value is the physical servers hard-drive allocation."
|
1007 |
msgstr "Hinweis: Dieser Wert ist die physische Server-Festplatte-Verteilung."
|
1008 |
|
1009 |
+
#: views/tools/diagnostics.php:227
|
1010 |
#@ wpduplicator
|
1011 |
msgid "On shared hosts check your control panel for the 'TRUE' disk space quota value."
|
1012 |
msgstr "Überprüfe auf freigegebenen Hosts deines Control Panels für den 'TRUE' Disk Space Quote Wert."
|
1013 |
|
1014 |
+
#: views/tools/diagnostics.php:243
|
1015 |
#@ wpduplicator
|
1016 |
msgid "Stored Data"
|
1017 |
msgstr "Gespeicherte Daten"
|
1018 |
|
1019 |
+
#: views/tools/diagnostics.php:248
|
1020 |
#@ wpduplicator
|
1021 |
msgid "Options Values"
|
1022 |
msgstr "Options Werte"
|
1023 |
|
1024 |
+
#: views/tools/diagnostics.php:281
|
1025 |
#@ wpduplicator
|
1026 |
msgid "PHP Information"
|
1027 |
msgstr "PHP-Information"
|
1028 |
|
1029 |
+
#: views/tools/diagnostics.php:300
|
1030 |
#@ wpduplicator
|
1031 |
msgid "Delete this option value"
|
1032 |
msgstr "Lösche den optionalen Wert"
|
1036 |
msgid "Settings Saved"
|
1037 |
msgstr "Einstellungen gespeichert"
|
1038 |
|
1039 |
+
#: views/settings/general.php:86
|
1040 |
#@ wpduplicator
|
1041 |
msgid "Delete Plugin Settings"
|
1042 |
msgstr "Plugin-Einstellungen löschen"
|
1043 |
|
1044 |
+
#: views/settings/general.php:147
|
1045 |
#@ wpduplicator
|
1046 |
msgid "This server does not have shell_exec configured to run."
|
1047 |
msgstr "Dieser Server ist nicht zur Ausführung von shell_exec konfiguriert."
|
1048 |
|
1049 |
+
#: views/settings/general.php:149
|
1050 |
#@ wpduplicator
|
1051 |
msgid "Please contact the server administrator to enable this feature."
|
1052 |
msgstr "Bitte kontaktiere den Server-Administrator, um diese Funktion zu aktivieren."
|
1053 |
|
1054 |
+
#: views/settings/general.php:154
|
1055 |
#@ wpduplicator
|
1056 |
msgid "Use mysqldump"
|
1057 |
msgstr "Benutze mysqldump"
|
1058 |
|
1059 |
+
#: views/settings/general.php:155
|
1060 |
#@ wpduplicator
|
1061 |
msgid "recommended for large databases"
|
1062 |
msgstr "für große Datenbanken empfohlen"
|
1063 |
|
1064 |
+
#: views/settings/general.php:160
|
1065 |
#@ wpduplicator
|
1066 |
msgid "Working Path:"
|
1067 |
msgstr "Arbeits-Pfad"
|
1068 |
|
1069 |
+
#: views/settings/general.php:171
|
1070 |
#@ wpduplicator
|
1071 |
msgid "Add Custom Path:"
|
1072 |
msgstr "Benutzer-Pfad hinzufügen"
|
1073 |
|
1074 |
+
#: views/settings/general.php:175
|
1075 |
#@ wpduplicator
|
1076 |
msgid "This is the path to your mysqldump program."
|
1077 |
msgstr "Das ist der Pfad zu deinem mysqldump-Programm."
|
1078 |
|
1079 |
+
#: views/settings/general.php:184
|
1080 |
#@ wpduplicator
|
1081 |
msgid "Package Debug"
|
1082 |
msgstr "Fehlerbeseitigung Archiv"
|
1083 |
|
1084 |
+
#: views/settings/general.php:187
|
1085 |
#@ wpduplicator
|
1086 |
msgid "Show Package Debug Status in Packages Screen"
|
1087 |
msgstr "Zeige Fehlerstatus des Archives in der Anzeige"
|
1088 |
|
1089 |
+
#: views/settings/general.php:227
|
1090 |
#@ wpduplicator
|
1091 |
msgid "Save Settings"
|
1092 |
msgstr "Einstellungen speichern"
|
1096 |
msgid "Installer File Cleanup Ran."
|
1097 |
msgstr "Installations-Dateien gelöscht."
|
1098 |
|
1099 |
+
#: views/tools/cleanup.php:73
|
1100 |
#@ wpduplicator
|
1101 |
msgid "If the installer files did not successfully get removed, then you WILL need to remove them manually"
|
1102 |
msgstr "Wenn die Installationsdateien nicht vollständig erfolgreich entfernt wurden, dann müssen sie manuell gelöscht werden"
|
1103 |
|
1104 |
+
#: views/tools/cleanup.php:74
|
1105 |
#@ wpduplicator
|
1106 |
msgid "Please remove all installer files to avoid leaving open security issues on your server"
|
1107 |
msgstr "Bitte entferne alle Installationsdateien aus Sicherheitsgründen von deinem Server"
|
1108 |
|
1109 |
+
#: views/tools/cleanup.php:82
|
1110 |
#@ wpduplicator
|
1111 |
msgid "Data Cleanup"
|
1112 |
msgstr "Daten gelöscht"
|
1113 |
|
1114 |
+
#: views/tools/cleanup.php:85
|
1115 |
#@ wpduplicator
|
1116 |
msgid "Delete Reserved Files"
|
1117 |
msgstr "Lösche reservierte Dateien"
|
1118 |
|
1119 |
+
#: views/tools/cleanup.php:86
|
1120 |
#@ wpduplicator
|
1121 |
msgid "Removes all installer files from a previous install"
|
1122 |
msgstr "Entferne alle Installations-Dateien der früheren Installation."
|
1123 |
|
1124 |
+
#: views/tools/cleanup.php:89
|
1125 |
#@ wpduplicator
|
1126 |
msgid "Delete Legacy Data"
|
1127 |
msgstr "Lösche übernommene Daten"
|
1128 |
|
1129 |
+
#: views/tools/cleanup.php:90
|
1130 |
#@ wpduplicator
|
1131 |
msgid "Removes all legacy data and settings prior to version"
|
1132 |
msgstr "Entfernt alle übernommenen Daten und Einstellungen vor Version"
|
1133 |
|
1134 |
+
#: views/tools/cleanup.php:107
|
1135 |
#, php-format
|
1136 |
#@ wpduplicator
|
1137 |
msgid "This action will remove all legacy settings prior to version %1$s. "
|
1138 |
msgstr "Diese Aktion wird alle alten Einstellungen vor Version %1$s entfernen. "
|
1139 |
|
1140 |
+
#: views/tools/cleanup.php:108
|
1141 |
#@ wpduplicator
|
1142 |
msgid "Legacy settings are only needed if you plan to migrate back to an older version of this plugin."
|
1143 |
msgstr "Frühere Einstellungen werden nur benötigt, wenn du zu einer älteren Version des Plugins zurückgehst."
|
1144 |
|
1145 |
+
#: views/tools/controller.php:16
|
1146 |
#@ wpduplicator
|
1147 |
msgid "Logging"
|
1148 |
msgstr "Logging"
|
1149 |
|
1150 |
+
#: views/tools/controller.php:18
|
1151 |
#@ wpduplicator
|
1152 |
msgid "Cleanup"
|
1153 |
msgstr "Löschen"
|
1198 |
msgid "Last 20 Logs"
|
1199 |
msgstr "Letzte 20 Logs"
|
1200 |
|
1201 |
+
#: views/packages/list.base.php:205
|
1202 |
#@ wpduplicator
|
1203 |
msgid "Unrecoverable Error! Please remove this package."
|
1204 |
msgstr "Nicht behebbarer Fehler! Bitte lösche das Paket."
|
1205 |
|
1206 |
+
#: views/packages/new2.base.php:127
|
1207 |
#@ wpduplicator
|
1208 |
msgid "PHP Settings"
|
1209 |
msgstr "PHP-Einstellungen"
|
1210 |
|
1211 |
+
#: views/packages/new2.base.php:253
|
|
|
|
|
|
|
|
|
|
|
|
|
1212 |
#, php-format
|
1213 |
#@ wpduplicator
|
1214 |
msgid "Large files such as movies or other backuped data can cause issues with timeouts. The current check for large files is %1$s per file. If your having issues creating a package consider excluding these files with the files filter and manually moving them to your new location."
|
1215 |
msgstr "Große Dateien wie Filme oder andere Archiv-Daten können zu Problemen mit Timeouts führen. Die aktuelle Prüfung für große Dateien ist %1$s pro Datei. Wenn es zu Problemen beim Erstellen des Archives kommt, bitte diese Dateien mit dem Filter ausschließen und manuell auf die neue Position verschieben."
|
1216 |
|
1217 |
+
#: views/packages/new2.base.php:326
|
1218 |
#, php-format
|
1219 |
#@ wpduplicator
|
1220 |
msgid "Total size and row count for all database tables are approximate values. The thresholds that trigger warnings are %1$s and %2$s records. Large databases take time to process and can cause issues with server timeout and memory settings. Running a %3$s on your database can also help improve the overall size and performance. If your server supports shell_exec and mysqldump you can try to enable this option from the settings menu."
|
1221 |
+
msgstr "Gesamtgröße und Zeilenanzahl für alle Datenbank-Tabellen sind Richtwerte. Die Schwellenwerte, die Warnungen auslösen, sind %1$s und %2$s Datensätze. Große Datenbanken benötigen mehr Zeit bei der Verarbeitung und können zu Problemen mit Server-Timeout und Speichereinstellungen führen. Ausführen einer %3$s auf der Datenbank können auch dazu beitragen, die Gesamtgröße und Leistung zu verbessern. Wenn der Server shell_exec und mysqldump unterstützt, kannst du versuchen, diese Option aus dem Menü Einstellungen zu aktivieren."
|
1222 |
|
1223 |
+
#: views/packages/new3.base.php:100
|
1224 |
#@ wpduplicator
|
1225 |
msgid "Build Interrupt"
|
1226 |
msgstr "Erstellung unterbrochen"
|
1227 |
|
1228 |
+
#: views/packages/new3.base.php:101
|
1229 |
#@ wpduplicator
|
1230 |
msgid "The current build has experienced an issue."
|
1231 |
msgstr "Die aktuelle Version hat ein Problem."
|
1232 |
|
1233 |
+
#: views/packages/new3.base.php:122
|
1234 |
#@ wpduplicator
|
1235 |
msgid "Notice"
|
1236 |
msgstr "Anmerkung"
|
1237 |
|
1238 |
+
#: views/packages/new3.base.php:125
|
1239 |
#@ default
|
1240 |
msgid "Build Folder:"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: views/packages/new3.base.php:127
|
1244 |
#@ wpduplicator
|
1245 |
msgid "Some servers close connections quickly; yet the build can continue to run in the background. To validate if a build is still running; open the 'tmp' folder above and see if the archive file is growing in size. If it is not then your server has strict timeout constraints. Please visit the support page for additional resources."
|
1246 |
msgstr "Einige Server schließen die Verbindungen schnell, doch die Erstellung kann auch weiterhin im Hintergrund laufen. Um zu prüfen ob derProzess noch läuft, öffnen den 'tmp'-Ordner um zu sehen, ob die Archivdatei in der Größe wächst. Wenn nicht, hat der Server strenge Beschränkungen im Timeout. Bitte besuche die Support-Seite für weitere Lösungen."
|
1247 |
|
1248 |
+
#: views/tools/diagnostics.php:118
|
1249 |
#@ wpduplicator
|
1250 |
msgid "ABSPATH"
|
1251 |
msgstr "ABSPATH"
|
1252 |
|
1253 |
+
#: views/settings/general.php:75
|
1254 |
#@ wpduplicator
|
1255 |
msgid "Plugin"
|
1256 |
msgstr "Plugin"
|
1257 |
|
1258 |
+
#: views/settings/general.php:114
|
1259 |
#@ wpduplicator
|
1260 |
msgid "Archive Flush"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: views/settings/general.php:117
|
1264 |
#@ wpduplicator
|
1265 |
msgid "Attempt Network Keep Alive"
|
1266 |
msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren"
|
1267 |
|
1268 |
+
#: views/settings/general.php:118
|
1269 |
#@ wpduplicator
|
1270 |
msgid "recommended only for large archives"
|
1271 |
msgstr "nur empfohlen für große Archive"
|
1272 |
|
1273 |
+
#: views/settings/general.php:120
|
1274 |
#@ wpduplicator
|
1275 |
msgid "This will attempt to keep a network connection established for large archives."
|
1276 |
msgstr "Dadurch wird versucht, eine Netzwerkverbindung für große Archive zu etablieren."
|
1277 |
|
1278 |
+
#: views/settings/general.php:125
|
1279 |
#@ wpduplicator
|
1280 |
msgid "Database Build"
|
1281 |
msgstr "Datenbank erstellen"
|
1282 |
|
1283 |
+
#: views/settings/general.php:166
|
1284 |
#@ wpduplicator
|
1285 |
msgid "Mysqldump was not found at its default location or the location provided. Please enter a path to a valid location where mysqldump can run. If the problem persist contact your server administrator."
|
1286 |
msgstr "Mysqldump wurde nicht an der Standardposition gefunden. Bitte gib den Pfad zu einem gültigen Ort ein, an dem mysqldump ausgeführt werden kann. Sollte das Problem bestehen bleiben, kontaktiere den Server-Administrator."
|
1287 |
|
1288 |
+
#: views/packages/new1.base.php:13
|
1289 |
#@ wpduplicator
|
1290 |
msgid "Package settings have been reset."
|
1291 |
msgstr "Archiveinstellungen wurden zurückgesetzt."
|
1295 |
msgid "Create a new default name"
|
1296 |
msgstr "Erstelle einen neuen Standardnamen"
|
1297 |
|
1298 |
+
#: views/packages/new1.inc.form.php:250
|
1299 |
#@ wpduplicator
|
1300 |
msgid "Reset"
|
1301 |
msgstr "Zurücksetzen"
|
1302 |
|
1303 |
+
#: views/packages/new1.inc.form.php:263
|
1304 |
#@ wpduplicator
|
1305 |
msgid "This will reset all of the current package settings. Would you like to continue?"
|
1306 |
msgstr "Dies wird alle aktuellen Archiveinstellungen zurückzusetzen. Möchtest Du fortfahren?"
|
1307 |
|
1308 |
+
#: views/packages/new2.base.php:240
|
1309 |
+
#: views/packages/new2.base.php:255
|
1310 |
#@ wpduplicator
|
1311 |
msgid "Show Paths"
|
1312 |
msgstr "Zeige Pfade"
|
1316 |
msgid "Try to create a package, since no log files were found in the snapshots directory with the extension *.log"
|
1317 |
msgstr "Versuche ein Archiv zu erstellen, da keine Log-Dateien im Snapshots-Verzeichnis mit der Endung *. Log gefunden wurden"
|
1318 |
|
1319 |
+
#: views/packages/list.base.php:340
|
1320 |
#@ wpduplicator
|
1321 |
msgid "REPORT"
|
1322 |
msgstr "Bericht"
|
1323 |
|
1324 |
+
#: views/packages/new1.inc.form.php:124
|
1325 |
#@ wpduplicator
|
1326 |
msgid "checked tables are excluded"
|
1327 |
msgstr "Markierte Tabellen sind ausgeschlossen"
|
1328 |
|
1329 |
+
#: views/packages/new1.inc.form.php:129
|
1330 |
#@ wpduplicator
|
1331 |
msgid "Include All"
|
1332 |
msgstr "Alle einschliessen"
|
1333 |
|
1334 |
+
#: views/packages/new1.inc.form.php:130
|
1335 |
#@ wpduplicator
|
1336 |
msgid "Exclude All"
|
1337 |
msgstr "Alle ausschliessen"
|
1338 |
|
1339 |
+
#: views/packages/new2.base.php:90
|
1340 |
#@ wpduplicator
|
1341 |
msgid "Process Time:"
|
1342 |
msgstr "Verarbeitungs-Dauer"
|
1343 |
|
1344 |
+
#: views/packages/new2.base.php:135
|
|
|
|
|
|
|
|
|
|
|
1345 |
#@ wpduplicator
|
1346 |
msgid "The Duplicator may have issues when [open_basedir] is enabled. Please work with your server administrator to disable this value in the php.ini file if you’re having issues building a package."
|
1347 |
msgstr "Der Duplicator kann Probleme haben, wenn [open_basedir] aktiviert ist. Bitte frage den Server-Administrator, ob dieser Wert in der php.ini-Datei deaktiviert werden kann."
|
1348 |
|
1349 |
+
#: views/packages/new2.base.php:144
|
1350 |
#, php-format
|
1351 |
#@ wpduplicator
|
1352 |
msgid "The Duplicator will have issues when the [max_execution_time] value in the php.ini is low. Timeouts effect how long a process is allowed to run. The recommended timeout is \"%1$s\" seconds. An attempt is made to override this value if the server allows it. Please work with your server administrator to make sure there are no restrictions for how long a PHP process is allowed to run."
|
1353 |
msgstr "Der Duplicator wird Probleme haben, wenn der Wert [max_execution_time] in der php.ini ist gering. Der Timeout-Wert gibt an, wie lange ein Prozess ausgeführt werden darf. Die empfohlene Timeout ist \"%1$s\" Sekunden. Es wird versucht, diesen Wert zu überschreiben, wenn es der Server erlaubt. Bitte frage den Server-Administrator nach den Einschränkungen für den PHP-Prozess."
|
1354 |
|
1355 |
+
#: views/packages/new2.base.php:147
|
1356 |
#@ wpduplicator
|
1357 |
msgid "Note: Timeouts can also be set at the web server layer, so if the PHP max timeout passes and you still see a build interrupt messages, then your web server could be killing the process. If you are limited on processing time, consider using the database or file filters to shrink the size of your overall package. However use caution as excluding the wrong resources can cause your install to not work properly."
|
1358 |
msgstr "Hinweis: Timeouts können auch am Web-Server eingestellt werden, so dass bei PHP-Timeout der Prozess abgebrochen wird. Wenn die Verarbeitungszeit begrenzt ist, nutze Datenbank-oder Dateifilter, um die Größe des Gesamtpakets schrumpfen. Bitte beachte, dass falsche Einstellungen dazu führen können, dass die Anwendung nicht mehr richtig funktioniert."
|
1359 |
|
1360 |
+
#: views/packages/new2.base.php:238
|
1361 |
#@ wpduplicator
|
1362 |
msgid "Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 250 characters and illegal characters that may not work on all operating systems such as * ? > < : / \\ | . It is recommended to remove or filter these files before building the archive or else you might have issues at install time."
|
1363 |
msgstr "Ungültige Datei-oder Ordnernamen können bei einigen Umgebungen zu Problemen führen. Ungültige Dateinamen bestehen aus Längen über 250 Zeichen und illegalen Zeichen, die nicht auf allen Betriebssystemen wie * ? > < : / \\ | arbeiten können. Es wird empfohlen, diese Dateien vor dem Erstellen des Archivs zu entfernen oder durch Filtereinstellungen auszublenden."
|
1367 |
msgid "Build cache removed."
|
1368 |
msgstr "Cache-Dateien entfernt"
|
1369 |
|
1370 |
+
#: views/tools/cleanup.php:93
|
1371 |
#@ wpduplicator
|
1372 |
msgid "Clear Build Cache"
|
1373 |
msgstr "Cache löschen"
|
1374 |
|
1375 |
+
#: views/tools/cleanup.php:94
|
1376 |
#@ wpduplicator
|
1377 |
msgid "Removes all build data from:"
|
1378 |
msgstr "Entferne alle Daten von:"
|
1379 |
|
1380 |
+
#: views/tools/cleanup.php:120
|
1381 |
#@ wpduplicator
|
1382 |
msgid "This process will remove all build cache files. Be sure no packages are currently building or else they will be cancelled."
|
1383 |
msgstr "Dieser Vorgang wird alle erstellten Cache-Dateien entfernen. Bitte stelle sicher, dass derzeit keine neuen Cache-Dateien erstellt werden."
|
1384 |
|
1385 |
+
#: views/packages/new2.base.php:118
|
1386 |
#@ wpduplicator
|
1387 |
msgid "The Duplicator currently works with these web servers:"
|
1388 |
+
msgstr "Der Duplicator arbeitet derzeit mit diesen Web-Servern:"
|
1389 |
|
1390 |
+
#: views/packages/list.base.php:39
|
1391 |
#@ wpduplicator
|
1392 |
msgid "Help Support Duplicator"
|
1393 |
msgstr "Duplicator-Hilfe"
|
1394 |
|
1395 |
+
#: views/packages/list.base.php:165
|
1396 |
#@ wpduplicator
|
1397 |
msgid "Open Scan Report"
|
1398 |
msgstr "Scan-Bericht öffnen"
|
1399 |
|
1400 |
+
#: views/packages/list.base.php:166
|
1401 |
#@ wpduplicator
|
1402 |
msgid "View Package Object"
|
1403 |
msgstr "Paket ansehen"
|
1404 |
|
1405 |
+
#: views/packages/new1.inc.form.php:90
|
1406 |
#@ wpduplicator
|
1407 |
msgid "Enable File Filters"
|
1408 |
msgstr "Dateifilter aktivieren"
|
1409 |
|
1410 |
+
#: views/packages/new1.inc.form.php:123
|
1411 |
#@ wpduplicator
|
1412 |
msgid "Enable Table Filters"
|
1413 |
msgstr "Tabellen-Filter aktivieren"
|
1414 |
|
1415 |
+
#: views/packages/new2.base.php:158
|
1416 |
#@ wpduplicator
|
1417 |
msgid "WordPress Settings"
|
1418 |
msgstr "WordPress-Einstellungen"
|
1419 |
|
1420 |
+
#: views/packages/new2.base.php:164
|
1421 |
#@ wpduplicator
|
1422 |
msgid "WordPress Version"
|
1423 |
msgstr "WordPress-Version"
|
1424 |
|
1425 |
+
#: views/packages/new2.base.php:166
|
1426 |
#@ wpduplicator
|
1427 |
msgid "It is recommended to have a version of WordPress that is greater that "
|
1428 |
+
msgstr "Es wird empfohlen, eine höhere Version von Wordpress zu nutzen: "
|
1429 |
|
1430 |
+
#: views/packages/new2.base.php:172
|
1431 |
#@ wpduplicator
|
1432 |
msgid "Found"
|
1433 |
msgstr "Gefunden"
|
1434 |
|
1435 |
+
#: views/packages/new2.base.php:172
|
1436 |
#@ wpduplicator
|
1437 |
msgid "Missing"
|
1438 |
msgstr "Vermisst"
|
1439 |
|
1440 |
+
#: views/packages/new2.base.php:174
|
1441 |
#@ wpduplicator
|
1442 |
msgid "Core Files"
|
1443 |
msgstr "Core-Dateien"
|
1444 |
|
1445 |
+
#: views/packages/new2.base.php:176
|
1446 |
#@ wpduplicator
|
1447 |
msgid "If the scanner is unable to locate the wp-config.php file in the root directory, then you will need to manually copy it to its new location."
|
1448 |
msgstr "Wenn der Scanner die Datei wp-config.php im Root-Verzeichnis nicht findet, muss sie manuell an die neue Position manuell kopiert werden."
|
1449 |
|
1450 |
+
#: views/packages/new2.base.php:184
|
1451 |
#@ wpduplicator
|
1452 |
msgid "Cached data will lead to issues at install time and increases your archive size. It is recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you have a cache plugin review the documentation for how to empty it; simply removing files might cause errors on your site."
|
1453 |
+
msgstr "Cache-Daten werden zu Probleme bei der Installation führen und erhöhen die Archivgröße. Es wird empfohlen, das Cache-Verzeichnis bei der Erstellung zu leeren. Vorsicht beim Entfernen von Daten aus dem Cache-Verzeichnis. Beachte die Dokumentation des Cache-Plugins zum entleeren. Das einfache Entfernen von Dateien kann möglicherweise zu Fehlern auf der Website führen. "
|
1454 |
|
1455 |
+
#: views/packages/new2.base.php:185
|
1456 |
#@ wpduplicator
|
1457 |
msgid "The cache size minimum threshold is currently set at "
|
1458 |
msgstr "Die minimale Cache-Schwelle ist derzeit festgelegt auf "
|
1459 |
|
1460 |
+
#: views/packages/new2.base.php:265
|
1461 |
#@ wpduplicator
|
1462 |
msgid "View Filters"
|
1463 |
msgstr "Filter anzeigen"
|
1464 |
|
1465 |
+
#: views/packages/new2.base.php:268
|
1466 |
#@ wpduplicator
|
1467 |
msgid "Below is a list of the directories and file extension that will be excluded from the archive."
|
1468 |
msgstr "Unten ist eine Liste der Verzeichnisse und Dateierweiterung, die aus dem Archiv ausgeschlossen werden."
|
1469 |
|
1470 |
+
#: views/packages/new2.base.php:276
|
1471 |
#@ wpduplicator
|
1472 |
msgid "No directory filters have been set."
|
1473 |
msgstr "Es sind keine Verzeichnisfilter eingestellt."
|
1474 |
|
1475 |
+
#: views/packages/new2.base.php:281
|
1476 |
#@ wpduplicator
|
1477 |
msgid "File Extensions"
|
1478 |
msgstr "Datei-Erweiterungen"
|
1479 |
|
1480 |
+
#: views/packages/new2.base.php:286
|
1481 |
#@ wpduplicator
|
1482 |
msgid "No file extension filters have been set."
|
1483 |
msgstr "Keine Dateierweiterungs-Filter gesetzt."
|
1484 |
|
1485 |
+
#: views/settings/general.php:83
|
1486 |
#@ wpduplicator
|
1487 |
msgid "Uninstall"
|
1488 |
msgstr "Deinstallieren"
|
1489 |
|
1490 |
+
#: views/settings/general.php:89
|
1491 |
#@ wpduplicator
|
1492 |
msgid "Delete Entire Storage Directory"
|
1493 |
msgstr "Speicher-Verzeichnisse vollständig löschen"
|
1494 |
|
1495 |
+
#: views/packages/new1.inc.form.php:23
|
1496 |
+
#: views/settings/general.php:94
|
1497 |
#@ wpduplicator
|
1498 |
msgid "Storage"
|
1499 |
msgstr "Speicher"
|
1500 |
|
1501 |
+
#: views/settings/general.php:96
|
1502 |
#@ wpduplicator
|
1503 |
msgid "Full Path"
|
1504 |
msgstr "Vollständiger Pfad"
|
1505 |
|
1506 |
+
#: views/settings/general.php:99
|
1507 |
#@ wpduplicator
|
1508 |
msgid "Disable .htaccess File In Storage Directory"
|
1509 |
msgstr ".htaccess-Datei im Speicher-Verzeichnis deaktivieren"
|
1510 |
|
1511 |
+
#: views/settings/general.php:101
|
1512 |
#@ wpduplicator
|
1513 |
msgid "Disable if issues occur when downloading installer/archive files."
|
1514 |
msgstr "Deaktivieren, wenn beim Download von Installer / Archivdateien Probleme auftreten."
|
1515 |
|
1516 |
#: classes/ui.php:111
|
1517 |
+
#@ wpduplicator
|
1518 |
msgid "Reserved Duplicator install file(s) still exists in the root directory. Please delete these file(s) to avoid possible security issues."
|
1519 |
+
msgstr "Reservierte Duplicator Installationsdatei(en) sind noch im Root-Verzeichnis vorhanden. Bitte lösche diese Datei (en), um mögliche Sicherheitsprobleme zu vermeiden."
|
1520 |
|
1521 |
+
#: duplicator.php:100
|
1522 |
#@ wpduplicator
|
1523 |
msgid "Get Help"
|
1524 |
msgstr "Hilfe bekommen"
|
1525 |
|
1526 |
+
#: duplicator.php:100
|
1527 |
+
#: duplicator.php:189
|
1528 |
+
#: views/help/help.php:29
|
1529 |
#@ wpduplicator
|
1530 |
msgid "Help"
|
1531 |
msgstr "Hilfe"
|
1532 |
|
1533 |
+
#: duplicator.php:101
|
1534 |
#@ wpduplicator
|
1535 |
msgid "Support the Plugin"
|
1536 |
msgstr "Unterstütze das Plugin"
|
1537 |
|
1538 |
+
#: duplicator.php:101
|
1539 |
+
#: duplicator.php:193
|
1540 |
+
#: views/help/about.php:41
|
1541 |
#@ wpduplicator
|
1542 |
msgid "About"
|
1543 |
msgstr "Über"
|
1544 |
|
1545 |
+
#: views/help/about.php:54
|
1546 |
#@ wpduplicator
|
1547 |
msgid "Created for Admins, Developers and Designers the Duplicator can streamline your workflows and help you quickly clone a WordPress application. Migrating a WordPress site manually can be very time consuming. The Duplicator was made to help you speed up the migration process. Please help us to continue the development effort of this plugin."
|
1548 |
msgstr "Erstellt für Admins, Entwickler und Designer, die mit dem Duplicator Ihre Arbeitsabläufe optimieren und eine Wordpress-Anwendung schnell klonen können. Die manuell Migration eines Wordpress-Seite kann sehr zeitaufwendig sein. Der Duplicator wurde entwickelt, um den Migrationsprozess zu beschleunigen. Bitte unterstütze uns, um die Entwicklung des Plugins weiter zu führen."
|
1549 |
|
1550 |
+
#: views/help/help.php:38
|
1551 |
#@ wpduplicator
|
1552 |
msgid "Migrating WordPress is a complex process and the logic to make all the magic happen smoothly may not work quickly with every site. With over 30,000 plugins and a very complex server eco-system some migrations may run into issues. This is why the Duplicator includes a detailed knowledgebase that can help with many common issues. Resources to additional support, approved hosting, and alternatives to fit your needs can be found below."
|
1553 |
msgstr "Die Migration von Wordpress ist ein komplexer Prozess. Mit über 30.000 installierbaren Plugins kann es zu Problemen kommen. Deshalb enthält der Duplicator eine detaillierte Wissensdatenbank, in welcher zahlreiche Fehler beschrieben sind. Weitere Unterstützung, Hosting und Alternativen sind unten zu finden."
|
1554 |
|
1555 |
+
#: views/help/help.php:53
|
1556 |
#@ wpduplicator
|
1557 |
msgid "Complete Online Documentation"
|
1558 |
msgstr "Vollständige Online-Dokumentation"
|
1559 |
|
1560 |
+
#: views/help/help.php:76
|
|
|
|
|
|
|
|
|
|
|
1561 |
#@ wpduplicator
|
1562 |
msgid "Get Support!"
|
1563 |
msgstr "Unterstützung bekommen!"
|
1564 |
|
1565 |
+
#: views/help/help.php:91
|
1566 |
#@ wpduplicator
|
1567 |
msgid "Servers That Work With Duplicator"
|
1568 |
msgstr "Server, welche mit dem Duplicator problemlos zusammenarbeiten"
|
1569 |
|
1570 |
+
#: views/help/help.php:94
|
1571 |
#@ wpduplicator
|
1572 |
msgid "Trusted Providers!"
|
1573 |
msgstr "Vertrauenswürdige Provider!"
|
1574 |
|
1575 |
+
#: views/help/help.php:104
|
1576 |
#@ wpduplicator
|
1577 |
msgid "Alternatives"
|
1578 |
msgstr "Alternativen"
|
1579 |
|
1580 |
+
#: views/help/help.php:107
|
1581 |
#@ wpduplicator
|
1582 |
msgid "Other Commercial Resources"
|
1583 |
msgstr "Andere kommerzielle Angebote"
|
1584 |
|
1585 |
+
#: duplicator.php:197
|
1586 |
+
#: views/help/gopro.php:37
|
1587 |
#@ wpduplicator
|
1588 |
msgid "Go Pro!"
|
1589 |
msgstr "Zur Pro-Version wechseln!"
|
1590 |
|
1591 |
#: views/packages/list-nodata.php:14
|
1592 |
#: views/packages/list-nodata.php:28
|
1593 |
+
#: views/packages/new1.base.php:234
|
1594 |
#@ wpduplicator
|
1595 |
msgid "help page"
|
1596 |
msgstr "Hilfe-Seiten"
|
1600 |
msgid "for additional support"
|
1601 |
msgstr "für weitere Unterstützung"
|
1602 |
|
1603 |
+
#: views/packages/new1.base.php:136
|
1604 |
#@ wpduplicator
|
1605 |
msgid "PHP Version"
|
1606 |
msgstr "PHP-Version"
|
1607 |
|
1608 |
+
#: views/packages/new1.base.php:148
|
1609 |
+
#: views/packages/new1.base.php:152
|
1610 |
+
#: views/packages/new1.base.php:156
|
1611 |
#@ wpduplicator
|
1612 |
msgid "Function"
|
1613 |
msgstr "Funktion"
|
1614 |
|
1615 |
+
#: views/packages/new1.base.php:161
|
1616 |
#@ wpduplicator
|
1617 |
msgid "PHP versions 5.2.17+ or higher is required. Please note that in versioning logic a value such as 5.2.9 is less than 5.2.17. For compression to work the ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in this section please contact your hosting provider or server administrator. For additional information see our online documentation."
|
1618 |
msgstr "PHP-Versionen 5.2.17+ oder höher ist erforderlich. Bitte beachte, dass in der Versionslogik ein Wert wie 5.2.9 weniger ist als 5.2.17. Für die Kompression ist die ZipArchive-Erweiterung für PHP ist erforderlich. Der Safe Mode sollte auf 'Aus' in dir php.ini-Datei eingestellt werden (veraltet ab PHP 5.3.0). Für weitere Fragen in diesem Abschnitt wende dich an deinen Hosting-Provider oder Serveradministrator. Weitere Informationen befinden sich auf unserer Online-Dokumentation."
|
1619 |
|
1620 |
+
#: views/packages/new1.base.php:183
|
1621 |
#@ wpduplicator
|
1622 |
msgid "Permissions can be difficult to resolve on some systems. If the plugin can not read the above paths here are a few things to try. 1) Set the above paths to have permissions of 755 for directories and 644 for files. You can temporarily try 777 however, be sure you don’t leave them this way. 2) Check the owner/group settings for both files and directories. The PHP script owner and the process owner are different. The script owner owns the PHP script but the process owner is the user the script is running as, thus determining its capabilities/privileges in the file system. For more details contact your host or server administrator or visit the 'Help' menu under Duplicator for additional online resources."
|
1623 |
msgstr "Berechtigungen sind auf einigen Systemen nur schwer zu ändern. Wenn das Plugin die oben genannten Pfade nicht lesen kann, versuche folgendes. 1) Setze die Berechtigungen für Verzeichnisse auf 755 und für Dateien auf 644. Versuche es ggf. vorübergehend mit 777. 2) Prüfe den Eigentümer / Gruppeneinstellungen für Dateien und Verzeichnissen. Das PHP-Skript und ein FTP-Benutzer erfordern unterschiedliche Eigentümer. Der Skript Eigentümer besitzt das PHP-Skript, aber der Prozess-Besitzer ist der Benutzer, welcher das Skript ausführt. Für weitere Informationen wende dich Host- oder Server-Administrator oder besuche das \\\"Hilfe\\\"-Menü unter Duplicator für zusätzliche Online-Ressourcen."
|
1624 |
|
1625 |
+
#: views/packages/new1.base.php:191
|
1626 |
#@ wpduplicator
|
1627 |
msgid "Server Support"
|
1628 |
msgstr "Server-Support"
|
1629 |
|
1630 |
+
#: views/packages/new1.base.php:197
|
1631 |
#@ wpduplicator
|
1632 |
msgid "MySQL Version"
|
1633 |
msgstr "MySQL-Version"
|
1634 |
|
1635 |
+
#: views/packages/new1.base.php:201
|
1636 |
#@ wpduplicator
|
1637 |
msgid "MySQLi Support"
|
1638 |
msgstr "MySQLi-Support"
|
1639 |
|
1640 |
+
#: views/packages/new1.base.php:207
|
1641 |
#@ wpduplicator
|
1642 |
msgid "MySQL version 5.0+ or better is required and the PHP MySQLi extension (note the trailing 'i') is also required. Contact your server administrator and request that mysqli extension and MySQL Server 5.0+ be installed. Please note in future versions support for other databases and extensions will be added."
|
1643 |
msgstr "MySQL-Version 5.0 oder höher und die PHP MySQLi-Erweiterung (beachte das ergänzende \\\"i\\\") ist ebenfalls erforderlich. Kontaktiere deinen Server-Administrator und verlange, dass mysqli-Erweiterung und MySQL Server 5.0 und höher installiert werden. Bitte beachte, dass in zukünftigen Versionen Unterstützung für andere Datenbanken und Erweiterungen hinzugefügt werden."
|
1644 |
|
1645 |
+
#: views/packages/new1.base.php:221
|
1646 |
#@ wpduplicator
|
1647 |
msgid "None of the reserved files (installer.php, installer-data.sql and installer-log.txt) where found from a previous install. This means you are clear to create a new package."
|
1648 |
+
msgstr "Es wurden keine reservierte Dateien (installer.php, installer-data.sql und installer-log.txt) von einer früheren Installation gefunden. Ein neues Paket kann nun erstellt werden."
|
1649 |
|
1650 |
+
#: views/packages/new1.base.php:234
|
1651 |
#@ wpduplicator
|
1652 |
msgid "For additional help please see the "
|
1653 |
msgstr "Weitere Hilfe befindet sich in der "
|
1654 |
|
1655 |
+
#: views/packages/new3.base.php:103
|
1656 |
#@ wpduplicator
|
1657 |
msgid "Please try the process again."
|
1658 |
msgstr "Bitte versuche den Vorgang erneut."
|
1659 |
|
1660 |
+
#: views/tools/diagnostics.php:130
|
1661 |
#@ wpduplicator
|
1662 |
msgid "Server IP"
|
1663 |
msgstr "Server-IP"
|
1664 |
|
1665 |
+
#: views/tools/diagnostics.php:134
|
1666 |
#@ wpduplicator
|
1667 |
msgid "Client IP"
|
1668 |
msgstr "Client-IP"
|
1669 |
|
1670 |
+
#: classes/utility.php:236
|
1671 |
#@ wpduplicator
|
1672 |
msgid "You do not have sufficient permissions to access this page."
|
1673 |
msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu betreten."
|
1674 |
|
1675 |
+
#: views/help/about.php:131
|
1676 |
#@ wpduplicator
|
1677 |
msgid "Get More Great Tools"
|
1678 |
msgstr "Hole dir mehr großartige Anwendungen..."
|
1679 |
|
1680 |
+
#: views/settings/general.php:195
|
1681 |
#@ wpduplicator
|
1682 |
msgid "Roles & Capabilities"
|
1683 |
msgstr "Rollen & Funktionen"
|
1684 |
|
1685 |
+
#: views/settings/general.php:200
|
1686 |
#@ wpduplicator
|
1687 |
msgid "Custom Roles"
|
1688 |
msgstr "Benutzerdefinierte Rollen"
|
1689 |
|
1690 |
+
#: views/settings/general.php:203
|
1691 |
#@ wpduplicator
|
1692 |
msgid "Enable User Role Editor Plugin Integration"
|
1693 |
msgstr "Ermöglicht User Role Editor Plugin Integration"
|
1694 |
|
1695 |
+
#: views/settings/general.php:210
|
1696 |
#@ wpduplicator
|
1697 |
msgid "The User Role Editor Plugin"
|
1698 |
msgstr "Das User Role Editor Plugin"
|
1699 |
|
1700 |
+
#: views/settings/general.php:211
|
1701 |
#@ wpduplicator
|
1702 |
msgid "Free"
|
1703 |
msgstr "Free"
|
1704 |
|
1705 |
+
#: views/settings/general.php:212
|
1706 |
#@ wpduplicator
|
1707 |
msgid "or"
|
1708 |
msgstr "oder"
|
1709 |
|
1710 |
+
#: views/settings/general.php:213
|
1711 |
#@ wpduplicator
|
1712 |
msgid "Professional"
|
1713 |
msgstr "Professional"
|
1714 |
|
1715 |
+
#: views/settings/general.php:214
|
1716 |
#@ wpduplicator
|
1717 |
msgid "must be installed to use"
|
1718 |
msgstr "muss installiert werden zur Benutzung"
|
1719 |
|
1720 |
+
#: views/settings/general.php:215
|
1721 |
#@ wpduplicator
|
1722 |
msgid "this feature."
|
1723 |
msgstr "dieser Option."
|
1724 |
|
1725 |
+
#: views/help/gopro.php:46
|
1726 |
+
#@ wpduplicator
|
1727 |
+
msgid "Duplicator Pro Has Arrived!"
|
1728 |
+
msgstr "Duplicator Pro ist da!"
|
1729 |
+
|
1730 |
+
#: views/help/gopro.php:49
|
1731 |
+
#@ wpduplicator
|
1732 |
+
msgid "The simplicity of Duplicator"
|
1733 |
+
msgstr "Die Einfachheit des Duplicators"
|
1734 |
+
|
1735 |
+
#: views/help/gopro.php:50
|
1736 |
+
#@ wpduplicator
|
1737 |
+
msgid "with the power the professional requires."
|
1738 |
+
msgstr "mit der professionellen Unterstützung."
|
1739 |
+
|
1740 |
+
#: views/help/gopro.php:57
|
1741 |
+
#@ wpduplicator
|
1742 |
+
msgid "Duplicator Free"
|
1743 |
+
msgstr "Duplicator Free"
|
1744 |
+
|
1745 |
+
#: views/help/gopro.php:60
|
1746 |
+
#: views/help/gopro.php:88
|
1747 |
+
#@ wpduplicator
|
1748 |
+
msgid "Backup Files & Database"
|
1749 |
+
msgstr "Backup Dateien & Datenbank"
|
1750 |
+
|
1751 |
+
#: views/help/gopro.php:61
|
1752 |
+
#: views/help/gopro.php:89
|
1753 |
+
#@ wpduplicator
|
1754 |
+
msgid "Compresses all your WordPress files and database into a compressed snapshot archive file."
|
1755 |
+
msgstr "Komprimiert alle Wordpress-Dateien und die Datenbank in eine Snapshot-Archivdatei."
|
1756 |
+
|
1757 |
+
#: views/help/gopro.php:64
|
1758 |
+
#: views/help/gopro.php:92
|
1759 |
+
#@ wpduplicator
|
1760 |
+
msgid "Directory Filters"
|
1761 |
+
msgstr "Verzeichnisfilter"
|
1762 |
+
|
1763 |
+
#: views/help/gopro.php:65
|
1764 |
+
#: views/help/gopro.php:93
|
1765 |
+
#@ wpduplicator
|
1766 |
+
msgid "Filter out the directories and file extensions you want to include/exclude in your in your archive file."
|
1767 |
+
msgstr "Filtern der Verzeichnisse und Dateierweiterungen, welche in die Archivdatei eingeschlossen/ausgeschlossen werden."
|
1768 |
+
|
1769 |
+
#: views/help/gopro.php:68
|
1770 |
+
#: views/help/gopro.php:96
|
1771 |
+
#@ wpduplicator
|
1772 |
+
msgid "Database Table Filters"
|
1773 |
+
msgstr "Datenbanktabellen-Filter"
|
1774 |
+
|
1775 |
+
#: views/help/gopro.php:69
|
1776 |
+
#: views/help/gopro.php:97
|
1777 |
+
#@ wpduplicator
|
1778 |
+
msgid "Filter out only the database tables you want to include/exclude in your database creation script."
|
1779 |
+
msgstr "Nur eingeschlossene / ausgeschlossene Datenbanktabellen zur Erstellung des Datenbankscripts verwenden."
|
1780 |
+
|
1781 |
+
#: views/help/gopro.php:72
|
1782 |
+
#: views/help/gopro.php:100
|
1783 |
+
#@ wpduplicator
|
1784 |
+
msgid "Migration Wizard"
|
1785 |
+
msgstr "Migrations-Assistent"
|
1786 |
+
|
1787 |
+
#: views/help/gopro.php:73
|
1788 |
+
#: views/help/gopro.php:101
|
1789 |
+
#@ wpduplicator
|
1790 |
+
msgid "With just two files (archive & installer.php) move your site to a new location."
|
1791 |
+
msgstr "Mit nur zwei Dateien (Archiv und installer.php) installiere die Website auf eine neue Position."
|
1792 |
+
|
1793 |
+
#: views/help/gopro.php:85
|
1794 |
+
#: views/packages/new1.inc.form.php:50
|
1795 |
+
#@ wpduplicator
|
1796 |
+
msgid "Duplicator Pro"
|
1797 |
+
msgstr "Duplicator Pro"
|
1798 |
+
|
1799 |
+
#: views/help/gopro.php:104
|
1800 |
+
#@ wpduplicator
|
1801 |
+
msgid "Scheduled Backups"
|
1802 |
+
msgstr "Geplante Sicherungen"
|
1803 |
+
|
1804 |
+
#: views/help/gopro.php:105
|
1805 |
+
#@ wpduplicator
|
1806 |
+
msgid "Automate the creation of your packages to run at various scheduled intervals."
|
1807 |
+
msgstr "Die Erstellung der Pakete kann automatisiert an verschiedenen geplanten Intervallen ausgeführt werden."
|
1808 |
+
|
1809 |
+
#: views/help/gopro.php:108
|
1810 |
+
#@ wpduplicator
|
1811 |
+
msgid "Dropbox Support"
|
1812 |
+
msgstr "Dropbox-Unterstützung"
|
1813 |
+
|
1814 |
+
#: views/help/gopro.php:109
|
1815 |
+
#@ wpduplicator
|
1816 |
+
msgid "Backup up your entire site to Dropbox."
|
1817 |
+
msgstr "Sichern der gesamten Website in die Dropbox."
|
1818 |
+
|
1819 |
+
#: views/help/gopro.php:112
|
1820 |
+
#@ wpduplicator
|
1821 |
+
msgid "FTP Support"
|
1822 |
+
msgstr "FTP-Unterstützung"
|
1823 |
+
|
1824 |
+
#: views/help/gopro.php:113
|
1825 |
+
#@ wpduplicator
|
1826 |
+
msgid "Backup up your entire site to an FTP server."
|
1827 |
+
msgstr "Sichern der gesamten Website auf einen FTP-Server."
|
1828 |
+
|
1829 |
+
#: views/help/gopro.php:116
|
1830 |
+
#@ wpduplicator
|
1831 |
+
msgid "Customer Support"
|
1832 |
+
msgstr "Benutzer-Unterstützung"
|
1833 |
+
|
1834 |
+
#: views/help/gopro.php:117
|
1835 |
+
#@ wpduplicator
|
1836 |
+
msgid "Server setups can be quite complex, with pro you get prompt help to get your site backed up and moved."
|
1837 |
+
msgstr "Server-Setups können recht komplex sein. Mit der Pro-Version gibt es schnelle Hilfe, um die Website zu sichern bzw. zu verschieben."
|
1838 |
+
|
1839 |
+
#: views/help/gopro.php:124
|
1840 |
+
#@ wpduplicator
|
1841 |
+
msgid "Check It Out!"
|
1842 |
+
msgstr "Probiere es aus!"
|
1843 |
+
|
1844 |
+
#: views/help/help.php:72
|
1845 |
+
#@ wpduplicator
|
1846 |
+
msgid "Get Help From IT Professionals"
|
1847 |
+
msgstr "Erhalte Hilfe von IT-Spezialisten"
|
1848 |
+
|
1849 |
+
#: views/help/help.php:110
|
1850 |
+
#@ wpduplicator
|
1851 |
+
msgid "Pro Solutions!"
|
1852 |
+
msgstr "Pro-Version!"
|
1853 |
+
|
1854 |
+
#: views/packages/list-nodata.php:8
|
1855 |
+
#@ wpduplicator
|
1856 |
+
msgid "Click the 'Create New' button to build a package."
|
1857 |
+
msgstr "Zum Erstellen eines Pakets auf \"Neu erzeugen\" klicken."
|
1858 |
+
|
1859 |
+
#: views/packages/list.base.php:161
|
1860 |
+
#@ wpduplicator
|
1861 |
+
msgid "SQL"
|
1862 |
+
msgstr "SQL"
|
1863 |
+
|
1864 |
+
#: views/packages/list.base.php:162
|
1865 |
+
#@ wpduplicator
|
1866 |
+
msgid "Log"
|
1867 |
+
msgstr "Log"
|
1868 |
+
|
1869 |
+
#: views/packages/new1.base.php:124
|
1870 |
+
#@ wpduplicator
|
1871 |
+
msgid "System requirements must pass for the Duplicator to work properly. Click each link for details."
|
1872 |
+
msgstr "Damit der Duplicator richtig funktioniert, müssen die Systemanforderungen erfüllt sein. Klicken auf jeden beliebigen Link für weitere Details."
|
1873 |
+
|
1874 |
+
#: views/packages/new1.inc.form.php:32
|
1875 |
+
#@ wpduplicator
|
1876 |
+
msgid "Type"
|
1877 |
+
msgstr "Typ"
|
1878 |
+
|
1879 |
+
#: views/packages/new1.inc.form.php:33
|
1880 |
+
#@ wpduplicator
|
1881 |
+
msgid "Location"
|
1882 |
+
msgstr "Ort"
|
1883 |
+
|
1884 |
+
#: views/packages/new1.inc.form.php:38
|
1885 |
+
#@ wpduplicator
|
1886 |
+
msgid "Default"
|
1887 |
+
msgstr "Vorgabe"
|
1888 |
+
|
1889 |
+
#: views/packages/new1.inc.form.php:39
|
1890 |
+
#@ wpduplicator
|
1891 |
+
msgid "Local"
|
1892 |
+
msgstr "Lokal"
|
1893 |
+
|
1894 |
+
#: views/packages/new1.inc.form.php:45
|
1895 |
+
#@ wpduplicator
|
1896 |
+
msgid "All packages including the archive, installer and SQL script are stored in the location above. "
|
1897 |
+
msgstr "Alle Dateien einschließlich des Archivs, Installer und SQL-Skript sind im Ordner oberhalb gespeichert. "
|
1898 |
+
|
1899 |
+
#: views/packages/new1.inc.form.php:48
|
1900 |
+
#@ wpduplicator
|
1901 |
+
msgid "Dropbox, FTP and other multiple storage options available in "
|
1902 |
+
msgstr "Dropbox, FTP und weitere Speicheroptionen sind verfügbar in "
|
1903 |
+
|
1904 |
+
#: views/packages/new1.inc.form.php:98
|
1905 |
+
#@ wpduplicator
|
1906 |
+
msgid "cache"
|
1907 |
+
msgstr "Cache"
|
1908 |
+
|
1909 |
+
#: views/packages/new2.base.php:225
|
1910 |
+
#, php-format
|
1911 |
+
#@ wpduplicator
|
1912 |
+
msgid "Total size represents all files minus any filters that have been setup. The current thresholds that trigger warnings are %1$s for the entire site and %2$s for large files."
|
1913 |
+
msgstr "Die Gesamtgröße entspricht allen Dateien abzüglich der im Filter festgelegten Elemente. Die aktuellen Grenzwerte, die Warnungen auslösen, sind %1$s für die gesamte Site und %2$s für große Dateien."
|
1914 |
+
|
1915 |
+
#: views/packages/new3.base.php:105
|
1916 |
+
#@ wpduplicator
|
1917 |
+
msgid "Diagnose"
|
1918 |
+
msgstr "Diagnose"
|
1919 |
+
|
1920 |
+
#: views/settings/general.php:128
|
1921 |
+
#@ wpduplicator
|
1922 |
+
msgid "Use PHP"
|
1923 |
+
msgstr "Benutze PHP"
|
1924 |
+
|
1925 |
+
#: views/settings/general.php:131
|
1926 |
+
#@ wpduplicator
|
1927 |
+
msgid "Query Limit Size"
|
1928 |
+
msgstr "Abfragelimit-Größe"
|
1929 |
+
|
1930 |
+
#: views/settings/general.php:140
|
1931 |
+
#@ wpduplicator
|
1932 |
+
msgid "higher values speed up build times but uses more memory"
|
1933 |
+
msgstr "Höhere Werte beschleunigen die Erstellung, aber sie benötigen mehr Speicher"
|
1934 |
+
|
1935 |
+
#: views/tools/diagnostics.php:98
|
1936 |
+
#@ wpduplicator
|
1937 |
+
msgid "Timezone"
|
1938 |
+
msgstr "Zeitzone"
|
1939 |
+
|
1940 |
+
#: views/tools/diagnostics.php:102
|
1941 |
+
#@ wpduplicator
|
1942 |
+
msgid "Server Time"
|
1943 |
+
msgstr "Serverzeit"
|
1944 |
+
|
lang/wpduplicator-fa_IR.mo
ADDED
Binary file
|
lang/wpduplicator-fa_IR.po
ADDED
@@ -0,0 +1,1801 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: 0.5.16\n"
|
4 |
+
"POT-Creation-Date: 2015-04-30 19:20+0330\n"
|
5 |
+
"PO-Revision-Date: 2015-04-30 19:35+0330\n"
|
6 |
+
"Last-Translator: Moslem Fallah Niat <Info@amoozesh98.com>\n"
|
7 |
+
"Language-Team: Amoozesh98.com <Amoozesh98@gmail.com | Info@Amoozesh98.com>\n"
|
8 |
+
"Language: fa_IR\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
+
"X-Poedit-Basepath: C:\\xampp\\htdocs\\www.wordpress.org\\wp-content\\plugins"
|
14 |
+
"\\duplicator\n"
|
15 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n;_n_noop;_\n"
|
18 |
+
"X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\www.wordpress.org\\wp-content"
|
19 |
+
"\\plugins\\duplicator\n"
|
20 |
+
|
21 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/ui.php:111
|
22 |
+
msgid ""
|
23 |
+
"Reserved Duplicator install file(s) still exists in the root directory. "
|
24 |
+
"Please delete these file(s) to avoid possible security issues."
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/ui.php:112
|
28 |
+
msgid "Remove file(s) now"
|
29 |
+
msgstr "پاک کردن پرونده"
|
30 |
+
|
31 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/ui.php:113
|
32 |
+
msgid "Dismiss this notice"
|
33 |
+
msgstr "نمایش ندادن این پیام"
|
34 |
+
|
35 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/classes/utility.php:236
|
36 |
+
msgid "You do not have sufficient permissions to access this page."
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:100
|
40 |
+
msgid "Get Help"
|
41 |
+
msgstr "رفتن به راهنما"
|
42 |
+
|
43 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:100
|
44 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:189
|
45 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:29
|
46 |
+
msgid "Help"
|
47 |
+
msgstr "راهنما"
|
48 |
+
|
49 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:101
|
50 |
+
msgid "Support the Plugin"
|
51 |
+
msgstr "پشتیبان افزونه"
|
52 |
+
|
53 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:101
|
54 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:193
|
55 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:41
|
56 |
+
msgid "About"
|
57 |
+
msgstr "درباره"
|
58 |
+
|
59 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:173
|
60 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/inc.header.php:9
|
61 |
+
msgid "Duplicator"
|
62 |
+
msgstr "ایجاد کننده بسته نصبی"
|
63 |
+
|
64 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:177
|
65 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/controller.php:74
|
66 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:235
|
67 |
+
msgid "Packages"
|
68 |
+
msgstr "بسته های نصبی"
|
69 |
+
|
70 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:181
|
71 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/controller.php:19
|
72 |
+
msgid "Settings"
|
73 |
+
msgstr "تنظیمات"
|
74 |
+
|
75 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:185
|
76 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:13
|
77 |
+
msgid "Tools"
|
78 |
+
msgstr "ابزارها"
|
79 |
+
|
80 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:197
|
81 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:36
|
82 |
+
msgid "Go Pro!"
|
83 |
+
msgstr "نسخه تجاری!"
|
84 |
+
|
85 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/duplicator.php:244
|
86 |
+
msgid "Manage"
|
87 |
+
msgstr "مدیریت"
|
88 |
+
|
89 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/installer/build/view.step1.php:388
|
90 |
+
msgid "PHP Version:"
|
91 |
+
msgstr "نسخه پی اچ پی"
|
92 |
+
|
93 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:54
|
94 |
+
msgid ""
|
95 |
+
"Created for Admins, Developers and Designers the Duplicator can streamline "
|
96 |
+
"your workflows and help you quickly clone a WordPress application. "
|
97 |
+
"Migrating a WordPress site manually can be very time consuming. The "
|
98 |
+
"Duplicator was made to help you speed up the migration process. Please help "
|
99 |
+
"us to continue the development effort of this plugin."
|
100 |
+
msgstr ""
|
101 |
+
"برای مدیران و توسعه دهندگان و طراحان ایجاد تکثیر گردش کار و کمک شما به سرعت "
|
102 |
+
"کلون برنامه وردپرس ساده می تواند. انتقال سایت وردپرس به صورت دستی می تواند "
|
103 |
+
"بسیار وقت گیر است. تکثیر شده است برای کمک به شما سرعت بخشیدن به فرایند "
|
104 |
+
"انتقال. لطفا کمک به ما برای ادامه تلاش توسعه این پلاگین."
|
105 |
+
|
106 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:64
|
107 |
+
msgid "Support Duplicator"
|
108 |
+
msgstr "پشتیبان ایجاد کننده بسته نصبی"
|
109 |
+
|
110 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:71
|
111 |
+
msgid "Partner with Us"
|
112 |
+
msgstr "همکاری با ما"
|
113 |
+
|
114 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:83
|
115 |
+
msgid "Keep Active and Online"
|
116 |
+
msgstr "نگه دارید فعال و آنلاین"
|
117 |
+
|
118 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:90
|
119 |
+
msgid "Leave 5 Stars"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:107
|
123 |
+
msgid "Spread the Word"
|
124 |
+
msgstr "ارتقا دهید (لطفا!)"
|
125 |
+
|
126 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:113
|
127 |
+
msgid "Duplicate Your WordPress"
|
128 |
+
msgstr "تولید بسته آسان نصبی وردپرس"
|
129 |
+
|
130 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:114
|
131 |
+
msgid "Rapid WordPress Duplication by LifeInTheGrid.com"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/about.php:131
|
135 |
+
msgid "Get More Great Tools"
|
136 |
+
msgstr "دریافت ابزارهای بیشتر"
|
137 |
+
|
138 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:46
|
139 |
+
msgid "Backup and Move Made Easy!"
|
140 |
+
msgstr "پشتیبان گیری و حرکت آسان ساخته شده!"
|
141 |
+
|
142 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:47
|
143 |
+
msgid "The top-rated Duplicator plugin is going professional!"
|
144 |
+
msgstr "دارای امتیاز بالا تکثیر پلاگین حرفه ای می گذرد!"
|
145 |
+
|
146 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:56
|
147 |
+
msgid "Duplicator Free"
|
148 |
+
msgstr "ایجاد کننده بسته نصبی رایگان"
|
149 |
+
|
150 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:61
|
151 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:95
|
152 |
+
msgid "Backup Files & Database"
|
153 |
+
msgstr "فایل های پشتیبان و پایگاه داده"
|
154 |
+
|
155 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:62
|
156 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:96
|
157 |
+
msgid ""
|
158 |
+
"Compresses all your WordPress files and database into a compressed snapshot "
|
159 |
+
"archive file."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:65
|
163 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:99
|
164 |
+
msgid "Directory Filters"
|
165 |
+
msgstr "فیلتر های پوشه"
|
166 |
+
|
167 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:66
|
168 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:100
|
169 |
+
msgid ""
|
170 |
+
"Filter out the directories and file extensions you want to include/exclude "
|
171 |
+
"in your in your archive file."
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:69
|
175 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:103
|
176 |
+
msgid "Database Table Filters"
|
177 |
+
msgstr "فعال کردن فیلتر های جدول"
|
178 |
+
|
179 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:70
|
180 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:104
|
181 |
+
msgid ""
|
182 |
+
"Filter out only the database tables you want to include/exclude in your "
|
183 |
+
"database creation script."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:73
|
187 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:107
|
188 |
+
msgid "Migration Wizard"
|
189 |
+
msgstr "برنامه جادویی انتقال"
|
190 |
+
|
191 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:74
|
192 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:108
|
193 |
+
msgid ""
|
194 |
+
"With just two files (archive & installer.php) move your site to a new "
|
195 |
+
"location."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:89
|
199 |
+
msgid "Duplicator Pro"
|
200 |
+
msgstr "ایجاد کننده بسته نصبی تجاری یا همان پولی"
|
201 |
+
|
202 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:111
|
203 |
+
msgid "Schedules"
|
204 |
+
msgstr "زمانبندی"
|
205 |
+
|
206 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:112
|
207 |
+
msgid ""
|
208 |
+
"Automate the creation of your packages to run at various scheduled intervals."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:115
|
212 |
+
msgid "Custom Templates"
|
213 |
+
msgstr "قالب های سفارشی"
|
214 |
+
|
215 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:116
|
216 |
+
msgid ""
|
217 |
+
"Customize how each package is created and built with a customized template."
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:119
|
221 |
+
msgid "Cloud Storage"
|
222 |
+
msgstr "ذخیره سازی ابری"
|
223 |
+
|
224 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:120
|
225 |
+
msgid ""
|
226 |
+
"Backup up your entire package to the cloud with access to services like FTP "
|
227 |
+
"and Dropbox."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:123
|
231 |
+
msgid "Queued Processing"
|
232 |
+
msgstr "صف پردازش"
|
233 |
+
|
234 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:124
|
235 |
+
msgid ""
|
236 |
+
"Enable the build of larger more complex packages and avoid server timeouts "
|
237 |
+
"with queued processing."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:127
|
241 |
+
msgid "Customer Support"
|
242 |
+
msgstr "پشتیبانی 24 ساعته"
|
243 |
+
|
244 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:128
|
245 |
+
msgid ""
|
246 |
+
"Server setups can be quite complex, with pro you get prompt help to get your "
|
247 |
+
"site backed up and moved."
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/gopro.php:136
|
251 |
+
msgid "Check It Out!"
|
252 |
+
msgstr "بررسی"
|
253 |
+
|
254 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:38
|
255 |
+
msgid ""
|
256 |
+
"Migrating WordPress is a complex process and the logic to make all the magic "
|
257 |
+
"happen smoothly may not work quickly with every site. With over 30,000 "
|
258 |
+
"plugins and a very complex server eco-system some migrations may run into "
|
259 |
+
"issues. This is why the Duplicator includes a detailed knowledgebase that "
|
260 |
+
"can help with many common issues. Resources to additional support, approved "
|
261 |
+
"hosting, and alternatives to fit your needs can be found below."
|
262 |
+
msgstr ""
|
263 |
+
"مهاجرت وردپرس، یک فرآیند پیچیده و منطق را به همه سحر و جادو اتفاق می افتد "
|
264 |
+
"هموار ممکن است به سرعت با هر سایت کار نمی کند. با بیش از 30000 پلاگین ها و "
|
265 |
+
"سرور اکو سیستم بسیار پیچیده برخی از مهاجرت ممکن است به مسائل اجرا شود. به "
|
266 |
+
"همین دلیل است نسخه برداری شامل یک مرکز آموزش دقیق است که می تواند با بسیاری "
|
267 |
+
"از مسائل مشترک کمک کند. منابع برای حمایت از اضافی، میزبانی تایید، و جایگزین "
|
268 |
+
"های مناسب نیازهای شما می تواند زیر آمده است."
|
269 |
+
|
270 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:50
|
271 |
+
msgid "Knowledgebase"
|
272 |
+
msgstr "مرکز آموزش"
|
273 |
+
|
274 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:53
|
275 |
+
msgid "Complete Online Documentation"
|
276 |
+
msgstr "مستندات کامل آنلاین"
|
277 |
+
|
278 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:55
|
279 |
+
msgid "Choose A Section"
|
280 |
+
msgstr "یک بخش را انتخاب کنید"
|
281 |
+
|
282 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:56
|
283 |
+
msgid "Quick Start"
|
284 |
+
msgstr "شروع سریع"
|
285 |
+
|
286 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:57
|
287 |
+
msgid "User Guide"
|
288 |
+
msgstr "راهنمای کاربر"
|
289 |
+
|
290 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:58
|
291 |
+
msgid "FAQs"
|
292 |
+
msgstr "پرسش و پاسخ"
|
293 |
+
|
294 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:59
|
295 |
+
msgid "Change Log"
|
296 |
+
msgstr "تغییر گزارشات"
|
297 |
+
|
298 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:60
|
299 |
+
msgid "Product Page"
|
300 |
+
msgstr "صفحه محصولات"
|
301 |
+
|
302 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:69
|
303 |
+
msgid "Online Support"
|
304 |
+
msgstr "پشتیبانی آنلاین"
|
305 |
+
|
306 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:72
|
307 |
+
msgid "Get Help From IT Professionals"
|
308 |
+
msgstr "کمک گرفتن از حرفه ای های IT"
|
309 |
+
|
310 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:76
|
311 |
+
msgid "Get Support!"
|
312 |
+
msgstr "گرفتن پشتیبانی"
|
313 |
+
|
314 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:88
|
315 |
+
msgid "Approved Hosting"
|
316 |
+
msgstr "هاستینگ های تایید شده"
|
317 |
+
|
318 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:91
|
319 |
+
msgid "Servers That Work With Duplicator"
|
320 |
+
msgstr "سرور های هاستینگی که از افزونه ایجاد کننده بسته نصبی پشتیبانی می کنند"
|
321 |
+
|
322 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:94
|
323 |
+
msgid "Trusted Providers!"
|
324 |
+
msgstr "ارائه دهندگان خدمات قابل اعتماد!"
|
325 |
+
|
326 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:104
|
327 |
+
msgid "Alternatives"
|
328 |
+
msgstr "جایگزین"
|
329 |
+
|
330 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:107
|
331 |
+
msgid "Other Commercial Resources"
|
332 |
+
msgstr "سایر منابع تجاری"
|
333 |
+
|
334 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/help/help.php:110
|
335 |
+
msgid "Pro Solutions!"
|
336 |
+
msgstr "راه حل های حرفه ای!"
|
337 |
+
|
338 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:7
|
339 |
+
msgid "No Packages Found."
|
340 |
+
msgstr "هیچ بسته آسان نصبی وجود ندارد."
|
341 |
+
|
342 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:8
|
343 |
+
msgid "Click the 'Create New' button to build a package."
|
344 |
+
msgstr ""
|
345 |
+
"برای ایجاد بسته آسان نصبی از دکمه بالای صفحه یعنی ( ایجاد بسته آسان نصبی "
|
346 |
+
"جدید ) استفاده نمایید."
|
347 |
+
|
348 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:13
|
349 |
+
msgid "Please visit the"
|
350 |
+
msgstr "در صورت نیاز لطفا از "
|
351 |
+
|
352 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:14
|
353 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:28
|
354 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:231
|
355 |
+
msgid "help page"
|
356 |
+
msgstr "صفحه راهنما"
|
357 |
+
|
358 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:15
|
359 |
+
msgid "for additional support"
|
360 |
+
msgstr ""
|
361 |
+
"برای پیشتیبانی بیشتر استفاده کنید.<p>برای رفتن به صفحه راهنما از منو های "
|
362 |
+
"داخل افزونه کپی کننده به گزینه راهنما مراجعه نمایید!</p>"
|
363 |
+
|
364 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:24
|
365 |
+
msgid "Older packages prior to 0.5.0 are no longer supported in this version."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:27
|
369 |
+
msgid "To get an older package please visit the"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:29
|
373 |
+
msgid "and look for the Change Log link for additional instructions."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list-nodata.php:33
|
377 |
+
msgid "Hide this message"
|
378 |
+
msgstr "این پیغام را ببند"
|
379 |
+
|
380 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:39
|
381 |
+
msgid "Help Support Duplicator"
|
382 |
+
msgstr "پشتیبان ایجاد کننده بسته نصبی"
|
383 |
+
|
384 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:50
|
385 |
+
msgid "Bulk Actions"
|
386 |
+
msgstr "انجام عملیات کلی"
|
387 |
+
|
388 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:51
|
389 |
+
msgid "Delete selected package(s)"
|
390 |
+
msgstr "حذف بسته های نصبی انتخاب شده(s)"
|
391 |
+
|
392 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:51
|
393 |
+
msgid "Delete"
|
394 |
+
msgstr "حذف"
|
395 |
+
|
396 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:53
|
397 |
+
msgid "Apply"
|
398 |
+
msgstr "اعمال"
|
399 |
+
|
400 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:58
|
401 |
+
msgid "Package Logs"
|
402 |
+
msgstr "گزارش بسته نصبی"
|
403 |
+
|
404 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:61
|
405 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:91
|
406 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:68
|
407 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:43
|
408 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:89
|
409 |
+
msgid "All Packages"
|
410 |
+
msgstr "تمام بسته های نصبی"
|
411 |
+
|
412 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:62
|
413 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:92
|
414 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:69
|
415 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:44
|
416 |
+
msgid "Create New"
|
417 |
+
msgstr "ایجاد بسته نصبی جدید"
|
418 |
+
|
419 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:87
|
420 |
+
msgid "Select all packages"
|
421 |
+
msgstr "انتخاب همه بسته"
|
422 |
+
|
423 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:88
|
424 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:107
|
425 |
+
msgid "Details"
|
426 |
+
msgstr "جزئیات"
|
427 |
+
|
428 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:89
|
429 |
+
msgid "Created"
|
430 |
+
msgstr "زمان ایجاد"
|
431 |
+
|
432 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:90
|
433 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:221
|
434 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:323
|
435 |
+
msgid "Size"
|
436 |
+
msgstr "حجم"
|
437 |
+
|
438 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:91
|
439 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:9
|
440 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:74
|
441 |
+
msgid "Name"
|
442 |
+
msgstr "نام بسته "
|
443 |
+
|
444 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:93
|
445 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:6
|
446 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:110
|
447 |
+
msgid "Package"
|
448 |
+
msgstr "بسته"
|
449 |
+
|
450 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:124
|
451 |
+
msgid "(No Notes Taken)"
|
452 |
+
msgstr "(بدون یادداشت ها گرفته شده)"
|
453 |
+
|
454 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:142
|
455 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:187
|
456 |
+
msgid "View"
|
457 |
+
msgstr "مشاهده شده"
|
458 |
+
|
459 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:147
|
460 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:132
|
461 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:79
|
462 |
+
msgid "Installer"
|
463 |
+
msgstr "نصب کننده"
|
464 |
+
|
465 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:150
|
466 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:18
|
467 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:194
|
468 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:83
|
469 |
+
msgid "Archive"
|
470 |
+
msgstr "آرشیو بسته نصبی"
|
471 |
+
|
472 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:155
|
473 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:200
|
474 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:79
|
475 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:141
|
476 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:160
|
477 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:200
|
478 |
+
msgid "Version"
|
479 |
+
msgstr "نسخه"
|
480 |
+
|
481 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:156
|
482 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:201
|
483 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:151
|
484 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:168
|
485 |
+
msgid "User"
|
486 |
+
msgstr "کاربر دیتابیس"
|
487 |
+
|
488 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:157
|
489 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:202
|
490 |
+
msgid "Hash"
|
491 |
+
msgstr "Hash"
|
492 |
+
|
493 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:158
|
494 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:207
|
495 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:12
|
496 |
+
msgid "Notes"
|
497 |
+
msgstr "توضیحات"
|
498 |
+
|
499 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:160
|
500 |
+
msgid "Links"
|
501 |
+
msgstr "لینکها"
|
502 |
+
|
503 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:161
|
504 |
+
msgid "SQL"
|
505 |
+
msgstr "اسکیوال"
|
506 |
+
|
507 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:162
|
508 |
+
msgid "Log"
|
509 |
+
msgstr "گزارش"
|
510 |
+
|
511 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:165
|
512 |
+
msgid "Open Scan Report"
|
513 |
+
msgstr "گزارش اسکن باز"
|
514 |
+
|
515 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:166
|
516 |
+
msgid "View Package Object"
|
517 |
+
msgstr "مشاهده بسته شی"
|
518 |
+
|
519 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:193
|
520 |
+
msgid "View Error Details"
|
521 |
+
msgstr "مشاهده جزئیات خطا"
|
522 |
+
|
523 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:205
|
524 |
+
msgid "Unrecoverable Error! Please remove this package."
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:210
|
528 |
+
msgid ""
|
529 |
+
"This package has encountered errors. Click 'View Log' for more details. "
|
530 |
+
"For additional support see the "
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:211
|
534 |
+
msgid "online knowledgebase"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:213
|
538 |
+
msgid "View Log"
|
539 |
+
msgstr "نمایش گزارش"
|
540 |
+
|
541 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:236
|
542 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:218
|
543 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:317
|
544 |
+
msgid "Total Size"
|
545 |
+
msgstr "اندازه کل"
|
546 |
+
|
547 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:255
|
548 |
+
msgid "Download Links"
|
549 |
+
msgstr "لینک دانلود"
|
550 |
+
|
551 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:258
|
552 |
+
msgid "The following links contain sensitive data. Please share with caution!"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:264
|
556 |
+
msgid ""
|
557 |
+
"The database SQL script is a quick link to your database backup script. An "
|
558 |
+
"exact copy is also stored in the package."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:287
|
562 |
+
msgid ""
|
563 |
+
"Please select an action from the bulk action drop down menu to perform a "
|
564 |
+
"specific action."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:295
|
568 |
+
msgid "Please select at least one package to delete."
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:299
|
572 |
+
msgid "Are you sure, you want to delete the selected package(s)?"
|
573 |
+
msgstr "آیا مطمئنید که مایلید package(s) منتخب را حذف کنید؟"
|
574 |
+
|
575 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:333
|
576 |
+
msgid "Package File Links"
|
577 |
+
msgstr "لینک فایل های بسته"
|
578 |
+
|
579 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:336
|
580 |
+
msgid "DATABASE"
|
581 |
+
msgstr "پایگاه داده"
|
582 |
+
|
583 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:337
|
584 |
+
msgid "PACKAGE"
|
585 |
+
msgstr "بسته"
|
586 |
+
|
587 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:338
|
588 |
+
msgid "INSTALLER"
|
589 |
+
msgstr "نصب کننده"
|
590 |
+
|
591 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:339
|
592 |
+
msgid "LOG"
|
593 |
+
msgstr "گزارش"
|
594 |
+
|
595 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/list.base.php:340
|
596 |
+
msgid "REPORT"
|
597 |
+
msgstr "گزارش"
|
598 |
+
|
599 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:11
|
600 |
+
msgid "Package settings have been reset."
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:81
|
604 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:58
|
605 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:33
|
606 |
+
msgid "Setup"
|
607 |
+
msgstr "نصب"
|
608 |
+
|
609 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:82
|
610 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:59
|
611 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:34
|
612 |
+
msgid "Scan"
|
613 |
+
msgstr "آنالیز ( اسکن )"
|
614 |
+
|
615 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:83
|
616 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:60
|
617 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:375
|
618 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:35
|
619 |
+
msgid "Build"
|
620 |
+
msgstr "ایجاد بسته"
|
621 |
+
|
622 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:86
|
623 |
+
msgid "Step 1: Package Setup"
|
624 |
+
msgstr "بخش 1 : تنظیمات بسته "
|
625 |
+
|
626 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:110
|
627 |
+
msgid "Requirements:"
|
628 |
+
msgstr "موارد مورد نیاز:"
|
629 |
+
|
630 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:111
|
631 |
+
msgid "Pass"
|
632 |
+
msgstr "همه چیز مورد تایید می باشد"
|
633 |
+
|
634 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:111
|
635 |
+
msgid "Fail"
|
636 |
+
msgstr "مواردی مورد تایید نمی باشد"
|
637 |
+
|
638 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:119
|
639 |
+
msgid ""
|
640 |
+
"System requirements must pass for the Duplicator to work properly. Click "
|
641 |
+
"each link for details."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:125
|
645 |
+
msgid "PHP Support"
|
646 |
+
msgstr "پشتیبان پی اچ پی"
|
647 |
+
|
648 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:131
|
649 |
+
msgid "PHP Version"
|
650 |
+
msgstr "نسخه پی اچ پی"
|
651 |
+
|
652 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:135
|
653 |
+
msgid "Zip Archive Enabled"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:139
|
657 |
+
msgid "Safe Mode Off"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:143
|
661 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:147
|
662 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:151
|
663 |
+
msgid "Function"
|
664 |
+
msgstr "تابع"
|
665 |
+
|
666 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:156
|
667 |
+
msgid ""
|
668 |
+
"PHP versions 5.2.17+ or higher is required. Please note that in versioning "
|
669 |
+
"logic a value such as 5.2.9 is less than 5.2.17. For compression to work the "
|
670 |
+
"ZipArchive extension for PHP is required. Safe Mode should be set to 'Off' "
|
671 |
+
"in you php.ini file and is deprecated as of PHP 5.3.0. For any issues in "
|
672 |
+
"this section please contact your hosting provider or server administrator. "
|
673 |
+
"For additional information see our online documentation."
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:164
|
677 |
+
msgid "Permissions"
|
678 |
+
msgstr "دسترسیها"
|
679 |
+
|
680 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:167
|
681 |
+
msgid "Required Paths"
|
682 |
+
msgstr "مسیرهای مورد نیاز"
|
683 |
+
|
684 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:179
|
685 |
+
msgid ""
|
686 |
+
"Permissions can be difficult to resolve on some systems. If the plugin can "
|
687 |
+
"not read the above paths here are a few things to try. 1) Set the above "
|
688 |
+
"paths to have permissions of 755 for directories and 644 for files. You can "
|
689 |
+
"temporarily try 777 however, be sure you don’t leave them this way. 2) Check "
|
690 |
+
"the owner/group settings for both files and directories. The PHP script "
|
691 |
+
"owner and the process owner are different. The script owner owns the PHP "
|
692 |
+
"script but the process owner is the user the script is running as, thus "
|
693 |
+
"determining its capabilities/privileges in the file system. For more details "
|
694 |
+
"contact your host or server administrator or visit the 'Help' menu under "
|
695 |
+
"Duplicator for additional online resources."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:187
|
699 |
+
msgid "Server Support"
|
700 |
+
msgstr "پشتیبانی سرور"
|
701 |
+
|
702 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:193
|
703 |
+
msgid "MySQL Version"
|
704 |
+
msgstr "نسخه MySQL"
|
705 |
+
|
706 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:197
|
707 |
+
msgid "MySQLi Support"
|
708 |
+
msgstr "پشتیبانی از MySQLi"
|
709 |
+
|
710 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:203
|
711 |
+
msgid ""
|
712 |
+
"MySQL version 5.0+ or better is required and the PHP MySQLi extension (note "
|
713 |
+
"the trailing 'i') is also required. Contact your server administrator and "
|
714 |
+
"request that mysqli extension and MySQL Server 5.0+ be installed. Please "
|
715 |
+
"note in future versions support for other databases and extensions will be "
|
716 |
+
"added."
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:204
|
720 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:136
|
721 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:148
|
722 |
+
msgid "more info"
|
723 |
+
msgstr "اطلاعات بیشتر"
|
724 |
+
|
725 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:213
|
726 |
+
msgid "Reserved Files"
|
727 |
+
msgstr "فایل محافظت شده"
|
728 |
+
|
729 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:217
|
730 |
+
msgid ""
|
731 |
+
"None of the reserved files (installer.php, installer-data.sql and installer-"
|
732 |
+
"log.txt) where found from a previous install. This means you are clear to "
|
733 |
+
"create a new package."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:220
|
737 |
+
msgid ""
|
738 |
+
"A reserved file(s) was found in the WordPress root directory. Reserved file "
|
739 |
+
"names are installer.php, installer-data.sql and installer-log.txt. To "
|
740 |
+
"archive your data correctly please remove any of these files from your "
|
741 |
+
"WordPress root directory. Then try creating your package again."
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:221
|
745 |
+
msgid "Remove Files Now"
|
746 |
+
msgstr "حذف فایل های حال حاضر"
|
747 |
+
|
748 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.base.php:231
|
749 |
+
msgid "For additional help please see the "
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:10
|
753 |
+
msgid "Create a new default name"
|
754 |
+
msgstr "ایجاد یک نام پیشفرض"
|
755 |
+
|
756 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:20
|
757 |
+
msgid "File filter enabled"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:21
|
761 |
+
msgid "Database filter enabled"
|
762 |
+
msgstr "بانک اطلاعات فیلتر فعال"
|
763 |
+
|
764 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:28
|
765 |
+
msgid "Format"
|
766 |
+
msgstr "نوع"
|
767 |
+
|
768 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:38
|
769 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:202
|
770 |
+
msgid "Files"
|
771 |
+
msgstr "فایل ها"
|
772 |
+
|
773 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:39
|
774 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:147
|
775 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:301
|
776 |
+
msgid "Database"
|
777 |
+
msgstr "پایگاه داده"
|
778 |
+
|
779 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:51
|
780 |
+
msgid "Enable File Filters"
|
781 |
+
msgstr "فعال کردن فیلتر های پرونده"
|
782 |
+
|
783 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:55
|
784 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:63
|
785 |
+
msgid "Separate all filters by semicolon"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:55
|
789 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:271
|
790 |
+
msgid "Directories"
|
791 |
+
msgstr "پوشه ها"
|
792 |
+
|
793 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:57
|
794 |
+
msgid "root path"
|
795 |
+
msgstr "مسیر ریشه"
|
796 |
+
|
797 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:58
|
798 |
+
msgid "wp-uploads"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:59
|
802 |
+
msgid "cache"
|
803 |
+
msgstr "کش"
|
804 |
+
|
805 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:60
|
806 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:67
|
807 |
+
msgid "(clear)"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:63
|
811 |
+
msgid "File extensions"
|
812 |
+
msgstr "پسوند فایل ها"
|
813 |
+
|
814 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:65
|
815 |
+
msgid "media"
|
816 |
+
msgstr "فیلم یا آهنگ"
|
817 |
+
|
818 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:66
|
819 |
+
msgid "archive"
|
820 |
+
msgstr "بسته فشرده"
|
821 |
+
|
822 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:72
|
823 |
+
msgid ""
|
824 |
+
"The directory paths and extensions above will be be excluded from the "
|
825 |
+
"archive file if enabled is checked."
|
826 |
+
msgstr ""
|
827 |
+
"مسیر دایرکتوری و پسوند بالا خواهد شد می شود محروم از آرشیو فایل اگر فعال "
|
828 |
+
"بررسی می شود."
|
829 |
+
|
830 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:73
|
831 |
+
msgid "Use the full path for directories and semicolons to separate all items."
|
832 |
+
msgstr "مسیر کامل دایرکتوری و ویرگول برای جدا کردن همه موارد استفاده کنید."
|
833 |
+
|
834 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:84
|
835 |
+
msgid "Enable Table Filters"
|
836 |
+
msgstr "فعال کردن فیلتر های جدول"
|
837 |
+
|
838 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:85
|
839 |
+
msgid "checked tables are excluded"
|
840 |
+
msgstr "انتخاب جداول محروم شده"
|
841 |
+
|
842 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:90
|
843 |
+
msgid "Include All"
|
844 |
+
msgstr "حذف همه"
|
845 |
+
|
846 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:91
|
847 |
+
msgid "Exclude All"
|
848 |
+
msgstr "انتخاب همه"
|
849 |
+
|
850 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:119
|
851 |
+
msgid ""
|
852 |
+
"Checked tables will not be added to the database script. Excluding certain "
|
853 |
+
"tables can possibly cause your site or plugins to not work correctly after "
|
854 |
+
"install!"
|
855 |
+
msgstr ""
|
856 |
+
"بررسی جداول به اسکریپت بانک اطلاعاتی اضافه خواهد شد. جداول خاصی به جز "
|
857 |
+
"احتمالا سایت یا افزونه هنوز کار درست پس از نصب می تواند باعث شود!"
|
858 |
+
|
859 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:137
|
860 |
+
msgid "STEP 1 - INPUTS"
|
861 |
+
msgstr "بخش 1 - ورودی ها"
|
862 |
+
|
863 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:140
|
864 |
+
msgid "MySQL Server"
|
865 |
+
msgstr "سرور مای اسکیوال"
|
866 |
+
|
867 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:143
|
868 |
+
msgid "Host"
|
869 |
+
msgstr "میزبان"
|
870 |
+
|
871 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:144
|
872 |
+
msgid "localhost"
|
873 |
+
msgstr ""
|
874 |
+
"سرور محلی مثال ( localhost یا 127.0.0.1 یا آی پی که هاستینگ برای لوکال هاست "
|
875 |
+
"به شما داده )"
|
876 |
+
|
877 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:148
|
878 |
+
msgid "mydatabaseName"
|
879 |
+
msgstr "نام پایگاه داده"
|
880 |
+
|
881 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:152
|
882 |
+
msgid "databaseUserName"
|
883 |
+
msgstr "نام کاربری پایگاه داده"
|
884 |
+
|
885 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:155
|
886 |
+
msgid "Advanced Options"
|
887 |
+
msgstr "تنظیمات بیشتر"
|
888 |
+
|
889 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:161
|
890 |
+
msgid "SSL"
|
891 |
+
msgstr "گواهینامه SSL"
|
892 |
+
|
893 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:164
|
894 |
+
msgid "Enforce on Admin"
|
895 |
+
msgstr "اجرا توسط مدیر"
|
896 |
+
|
897 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:168
|
898 |
+
msgid "Enforce on Logins"
|
899 |
+
msgstr "اجرا بعد از ورود"
|
900 |
+
|
901 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:172
|
902 |
+
msgid "Cache"
|
903 |
+
msgstr "کش"
|
904 |
+
|
905 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:175
|
906 |
+
msgid "Keep Enabled"
|
907 |
+
msgstr "فعال نگه داشتن"
|
908 |
+
|
909 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:179
|
910 |
+
msgid "Keep Home Path"
|
911 |
+
msgstr "نگه داشتن مسیر خانه"
|
912 |
+
|
913 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:187
|
914 |
+
msgid "STEP 2 - INPUTS"
|
915 |
+
msgstr "بخش 2 - ورودی ها"
|
916 |
+
|
917 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:191
|
918 |
+
msgid "New URL"
|
919 |
+
msgstr "آدرس جدید"
|
920 |
+
|
921 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:192
|
922 |
+
msgid "http://mynewsite.com"
|
923 |
+
msgstr "https://www.amoozesh98.com"
|
924 |
+
|
925 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:198
|
926 |
+
msgid "The installer can have these fields pre-filled at install time."
|
927 |
+
msgstr "نصب می توانید این زمینه ها در زمان نصب از پیش پر شده است."
|
928 |
+
|
929 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:198
|
930 |
+
msgid "All values are optional."
|
931 |
+
msgstr "همه مقادیر اختیاری هستند."
|
932 |
+
|
933 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:207
|
934 |
+
msgid "Reset"
|
935 |
+
msgstr "بازگشت به تنظیمات اولیه"
|
936 |
+
|
937 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:208
|
938 |
+
msgid "Next"
|
939 |
+
msgstr "ادامه"
|
940 |
+
|
941 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new1.inc.form.php:220
|
942 |
+
msgid ""
|
943 |
+
"This will reset all of the current package settings. Would you like to "
|
944 |
+
"continue?"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:63
|
948 |
+
msgid "Step 2: System Scan"
|
949 |
+
msgstr "بخش 2 : آنالیز سیستم"
|
950 |
+
|
951 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:79
|
952 |
+
msgid "Scanning Site"
|
953 |
+
msgstr "آنالیز ( اسکن ) در سایت"
|
954 |
+
|
955 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:81
|
956 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:57
|
957 |
+
msgid "Please Wait..."
|
958 |
+
msgstr "لطفا منتظر بمانید ...."
|
959 |
+
|
960 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:87
|
961 |
+
msgid "Scan Complete"
|
962 |
+
msgstr "آنالیز ( اسکن ) کامل شده"
|
963 |
+
|
964 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:89
|
965 |
+
msgid ""
|
966 |
+
"Scan checks are not required to pass, however they could cause issues on "
|
967 |
+
"some systems."
|
968 |
+
msgstr ""
|
969 |
+
"آنالیز ( اسکن ) انجام شد تمام موارد مورد تایید می باشد با این حال بسته به "
|
970 |
+
"سیستم های مختلف می تواند موارد تغییر کند."
|
971 |
+
|
972 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:90
|
973 |
+
msgid "Process Time:"
|
974 |
+
msgstr "زمان اجرا:"
|
975 |
+
|
976 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:99
|
977 |
+
msgid "Server"
|
978 |
+
msgstr "سرور"
|
979 |
+
|
980 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:101
|
981 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:17
|
982 |
+
msgid "Diagnostics"
|
983 |
+
msgstr "تشخیص"
|
984 |
+
|
985 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:110
|
986 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:116
|
987 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:106
|
988 |
+
msgid "Web Server"
|
989 |
+
msgstr "سرور وب"
|
990 |
+
|
991 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:118
|
992 |
+
msgid "The Duplicator currently works with these web servers:"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:127
|
996 |
+
msgid "PHP Settings"
|
997 |
+
msgstr "تنظیمات پی اچ پی"
|
998 |
+
|
999 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:133
|
1000 |
+
msgid "Open Base Dir"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:135
|
1004 |
+
msgid ""
|
1005 |
+
"The Duplicator may have issues when [open_basedir] is enabled. Please work "
|
1006 |
+
"with your server administrator to disable this value in the php.ini file if "
|
1007 |
+
"you’re having issues building a package."
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:140
|
1011 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:189
|
1012 |
+
msgid "Max Execution Time"
|
1013 |
+
msgstr "حداکثر زمان اجرا"
|
1014 |
+
|
1015 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:144
|
1016 |
+
#, php-format
|
1017 |
+
msgid ""
|
1018 |
+
"The Duplicator will have issues when the [max_execution_time] value in the "
|
1019 |
+
"php.ini is low. Timeouts effect how long a process is allowed to run. The "
|
1020 |
+
"recommended timeout is \"%1$s\" seconds. An attempt is made to override this "
|
1021 |
+
"value if the server allows it. Please work with your server administrator "
|
1022 |
+
"to make sure there are no restrictions for how long a PHP process is allowed "
|
1023 |
+
"to run."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:147
|
1027 |
+
msgid ""
|
1028 |
+
"Note: Timeouts can also be set at the web server layer, so if the PHP max "
|
1029 |
+
"timeout passes and you still see a build interrupt messages, then your web "
|
1030 |
+
"server could be killing the process. If you are limited on processing "
|
1031 |
+
"time, consider using the database or file filters to shrink the size of your "
|
1032 |
+
"overall package. However use caution as excluding the wrong resources can "
|
1033 |
+
"cause your install to not work properly."
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:158
|
1037 |
+
msgid "WordPress Settings"
|
1038 |
+
msgstr "تنظیمات وردپرس"
|
1039 |
+
|
1040 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:164
|
1041 |
+
msgid "WordPress Version"
|
1042 |
+
msgstr "ورژن وردپرس"
|
1043 |
+
|
1044 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:166
|
1045 |
+
msgid "It is recommended to have a version of WordPress that is greater that "
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:172
|
1049 |
+
msgid "Found"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:172
|
1053 |
+
msgid "Missing"
|
1054 |
+
msgstr "گم"
|
1055 |
+
|
1056 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:174
|
1057 |
+
msgid "Core Files"
|
1058 |
+
msgstr "فایل های هسته ای"
|
1059 |
+
|
1060 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:176
|
1061 |
+
msgid ""
|
1062 |
+
"If the scanner is unable to locate the wp-config.php file in the root "
|
1063 |
+
"directory, then you will need to manually copy it to its new location."
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:183
|
1067 |
+
msgid "Cache Path"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:184
|
1071 |
+
msgid ""
|
1072 |
+
"Cached data will lead to issues at install time and increases your archive "
|
1073 |
+
"size. It is recommended to empty your cache directory at build time. Use "
|
1074 |
+
"caution when removing data from the cache directory. If you have a cache "
|
1075 |
+
"plugin review the documentation for how to empty it; simply removing files "
|
1076 |
+
"might cause errors on your site."
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:185
|
1080 |
+
msgid "The cache size minimum threshold is currently set at "
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:207
|
1084 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:306
|
1085 |
+
msgid "Enabled"
|
1086 |
+
msgstr "فعال"
|
1087 |
+
|
1088 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:222
|
1089 |
+
msgid "File Count"
|
1090 |
+
msgstr "تعداد پرونده"
|
1091 |
+
|
1092 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:223
|
1093 |
+
msgid "Directory Count"
|
1094 |
+
msgstr "تعداد دایرکتوری"
|
1095 |
+
|
1096 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:225
|
1097 |
+
#, php-format
|
1098 |
+
msgid ""
|
1099 |
+
"Total size represents all files minus any filters that have been setup. The "
|
1100 |
+
"current thresholds that trigger warnings are %1$s for the entire site and "
|
1101 |
+
"%2$s for large files."
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:234
|
1105 |
+
msgid "Invalid Names"
|
1106 |
+
msgstr "نامهای بی اعتبار"
|
1107 |
+
|
1108 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:238
|
1109 |
+
msgid ""
|
1110 |
+
"Invalid file or folder names can cause issues when extracting an archive "
|
1111 |
+
"across different environments. Invalid file names consist of lengths over "
|
1112 |
+
"250 characters and illegal characters that may not work on all operating "
|
1113 |
+
"systems such as * ? > < : / \\ | . It is recommended to remove or filter "
|
1114 |
+
"these files before building the archive or else you might have issues at "
|
1115 |
+
"install time."
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:240
|
1119 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:255
|
1120 |
+
msgid "Show Paths"
|
1121 |
+
msgstr "نشان دادن مسیر"
|
1122 |
+
|
1123 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:249
|
1124 |
+
msgid "Large Files"
|
1125 |
+
msgstr "فایل های بزرگ"
|
1126 |
+
|
1127 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:253
|
1128 |
+
#, php-format
|
1129 |
+
msgid ""
|
1130 |
+
"Large files such as movies or other backuped data can cause issues with "
|
1131 |
+
"timeouts. The current check for large files is %1$s per file. If your "
|
1132 |
+
"having issues creating a package consider excluding these files with the "
|
1133 |
+
"files filter and manually moving them to your new location."
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:265
|
1137 |
+
msgid "View Filters"
|
1138 |
+
msgstr "مشاهده فیلتر ها"
|
1139 |
+
|
1140 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:268
|
1141 |
+
msgid ""
|
1142 |
+
"Below is a list of the directories and file extension that will be excluded "
|
1143 |
+
"from the archive."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:276
|
1147 |
+
msgid "No directory filters have been set."
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:281
|
1151 |
+
msgid "File Extensions"
|
1152 |
+
msgstr "پسوند فایل ها"
|
1153 |
+
|
1154 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:286
|
1155 |
+
msgid "No file extension filters have been set."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:321
|
1159 |
+
msgid "Tables"
|
1160 |
+
msgstr "جدول"
|
1161 |
+
|
1162 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:322
|
1163 |
+
msgid "Records"
|
1164 |
+
msgstr "رکورد"
|
1165 |
+
|
1166 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:325
|
1167 |
+
msgid "repair and optimization"
|
1168 |
+
msgstr "تعمیر و بهینه سازی"
|
1169 |
+
|
1170 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:326
|
1171 |
+
#, php-format
|
1172 |
+
msgid ""
|
1173 |
+
"Total size and row count for all database tables are approximate values. "
|
1174 |
+
"The thresholds that trigger warnings are %1$s and %2$s records. Large "
|
1175 |
+
"databases take time to process and can cause issues with server timeout and "
|
1176 |
+
"memory settings. Running a %3$s on your database can also help improve the "
|
1177 |
+
"overall size and performance. If your server supports shell_exec and "
|
1178 |
+
"mysqldump you can try to enable this option from the settings menu."
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:338
|
1182 |
+
msgid "Table Details"
|
1183 |
+
msgstr "جدول جزئیات"
|
1184 |
+
|
1185 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:349
|
1186 |
+
msgid "Name:"
|
1187 |
+
msgstr "نام:"
|
1188 |
+
|
1189 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:350
|
1190 |
+
msgid "Host:"
|
1191 |
+
msgstr "میزبان:"
|
1192 |
+
|
1193 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:351
|
1194 |
+
msgid "Build Mode:"
|
1195 |
+
msgstr "نحوه ساخت:"
|
1196 |
+
|
1197 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:362
|
1198 |
+
msgid "Scan Error"
|
1199 |
+
msgstr "خطا در آنالیز ( اسکن )"
|
1200 |
+
|
1201 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:363
|
1202 |
+
msgid "Please try again!"
|
1203 |
+
msgstr "لطفا دوباره سعی کنید"
|
1204 |
+
|
1205 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:365
|
1206 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:110
|
1207 |
+
msgid "Server Status:"
|
1208 |
+
msgstr "وضعیت سرور:"
|
1209 |
+
|
1210 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:368
|
1211 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:114
|
1212 |
+
msgid "Error Message:"
|
1213 |
+
msgstr "پیام خطا:"
|
1214 |
+
|
1215 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:376
|
1216 |
+
msgid "Rescan"
|
1217 |
+
msgstr "آنالیز یا ( اسکن ) مجدد"
|
1218 |
+
|
1219 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:377
|
1220 |
+
msgid "Back"
|
1221 |
+
msgstr "بازگشت"
|
1222 |
+
|
1223 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:463
|
1224 |
+
msgid "Unable to report on any tables"
|
1225 |
+
msgstr "قادر به گزارش هیچ کدام از جداول نمی باشم"
|
1226 |
+
|
1227 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:472
|
1228 |
+
msgid "Unable to report on database stats"
|
1229 |
+
msgstr "قادر به گزارش آمار پایگاه داده نمی باشم"
|
1230 |
+
|
1231 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:487
|
1232 |
+
msgid "No name length issues."
|
1233 |
+
msgstr "بدون مسائل طول نام."
|
1234 |
+
|
1235 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:490
|
1236 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:498
|
1237 |
+
msgid "FILE"
|
1238 |
+
msgstr "پرونده"
|
1239 |
+
|
1240 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new2.base.php:495
|
1241 |
+
msgid "No large files found."
|
1242 |
+
msgstr "هیچ فایلی یافت یا انتخاب نشد"
|
1243 |
+
|
1244 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:38
|
1245 |
+
msgid "Step 3: Build Package"
|
1246 |
+
msgstr "بخش 3 : ساخت بسته آسان نصبی"
|
1247 |
+
|
1248 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:55
|
1249 |
+
msgid "Building Package"
|
1250 |
+
msgstr "در حال ساخت بسته آسان نصبی"
|
1251 |
+
|
1252 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:58
|
1253 |
+
msgid "Keep this window open during the build process."
|
1254 |
+
msgstr "این پنجره را در طول فرایند ساخت هرگز نبندید."
|
1255 |
+
|
1256 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:59
|
1257 |
+
msgid "This may take several minutes."
|
1258 |
+
msgstr "این ممکن است چند دقیقه طول بکشد."
|
1259 |
+
|
1260 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:63
|
1261 |
+
msgid "Build Status"
|
1262 |
+
msgstr "وضعیت ساخت بسته آسان نصبی"
|
1263 |
+
|
1264 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:70
|
1265 |
+
msgid "Package Completed"
|
1266 |
+
msgstr "بسته آسان نصبی با موفقییت تولید شد"
|
1267 |
+
|
1268 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:75
|
1269 |
+
msgid "Process Time"
|
1270 |
+
msgstr "فرایند تولید بسته"
|
1271 |
+
|
1272 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:100
|
1273 |
+
msgid "Build Interrupt"
|
1274 |
+
msgstr "ایجاد وقفه"
|
1275 |
+
|
1276 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:101
|
1277 |
+
msgid "The current build has experienced an issue."
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:103
|
1281 |
+
msgid "Please try the process again."
|
1282 |
+
msgstr "لطفا این فرآیند را دوباره امتحان کنید."
|
1283 |
+
|
1284 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:105
|
1285 |
+
msgid "Try Again"
|
1286 |
+
msgstr "دوباره امتحان کردن"
|
1287 |
+
|
1288 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:121
|
1289 |
+
msgid "Notice"
|
1290 |
+
msgstr "هشدار"
|
1291 |
+
|
1292 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:124
|
1293 |
+
msgid "Build Folder:"
|
1294 |
+
msgstr "پوشه ایجاد:"
|
1295 |
+
|
1296 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:126
|
1297 |
+
msgid ""
|
1298 |
+
"Some servers close connections quickly; yet the build can continue to run in "
|
1299 |
+
"the background. To validate if a build is still running; open the 'tmp' "
|
1300 |
+
"folder above and see if the archive file is growing in size. If it is not "
|
1301 |
+
"then your server has strict timeout constraints. Please visit the support "
|
1302 |
+
"page for additional resources."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:135
|
1306 |
+
msgid "Package Log"
|
1307 |
+
msgstr "گزارش بسته نصبی"
|
1308 |
+
|
1309 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/packages/new3.base.php:136
|
1310 |
+
msgid "Support"
|
1311 |
+
msgstr "پشتیبانی"
|
1312 |
+
|
1313 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/controller.php:22
|
1314 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:87
|
1315 |
+
msgid "General"
|
1316 |
+
msgstr "عمومی"
|
1317 |
+
|
1318 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:6
|
1319 |
+
msgid "Settings Saved"
|
1320 |
+
msgstr "تنظیمات ذخیره شد"
|
1321 |
+
|
1322 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:75
|
1323 |
+
msgid "Plugin"
|
1324 |
+
msgstr "افزونه"
|
1325 |
+
|
1326 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:83
|
1327 |
+
msgid "Uninstall"
|
1328 |
+
msgstr "پاک کردن افزونه"
|
1329 |
+
|
1330 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:86
|
1331 |
+
msgid "Delete Plugin Settings"
|
1332 |
+
msgstr "حذف تنظیمات افزونه"
|
1333 |
+
|
1334 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:89
|
1335 |
+
msgid "Delete Entire Storage Directory"
|
1336 |
+
msgstr "حذف دایرکتوری ذخیره سازی کل"
|
1337 |
+
|
1338 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:94
|
1339 |
+
msgid "Storage"
|
1340 |
+
msgstr "ذخیره سازی"
|
1341 |
+
|
1342 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:96
|
1343 |
+
msgid "Full Path"
|
1344 |
+
msgstr "مسیر کامل"
|
1345 |
+
|
1346 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:99
|
1347 |
+
msgid "Disable .htaccess File In Storage Directory"
|
1348 |
+
msgstr "غیر فعال کردن فایل htaccess در دایرکتوری ذخیره سازی"
|
1349 |
+
|
1350 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:101
|
1351 |
+
msgid "Disable if issues occur when downloading installer/archive files."
|
1352 |
+
msgstr "اگر مسائل را رخ می دهد که دانلود نصب و آرشیو فایل ها را غیر فعال کنید."
|
1353 |
+
|
1354 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:114
|
1355 |
+
msgid "Archive Flush"
|
1356 |
+
msgstr "آرشیو بسته نصبی"
|
1357 |
+
|
1358 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:117
|
1359 |
+
msgid "Attempt Network Keep Alive"
|
1360 |
+
msgstr "زنده نگه داشتن شبکه تلاش"
|
1361 |
+
|
1362 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:118
|
1363 |
+
msgid "recommended only for large archives"
|
1364 |
+
msgstr "توصیه می شود تنها برای آرشیو بزرگ"
|
1365 |
+
|
1366 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:120
|
1367 |
+
msgid ""
|
1368 |
+
"This will attempt to keep a network connection established for large "
|
1369 |
+
"archives."
|
1370 |
+
msgstr "این تلاش برای حفظ یک اتصال شبکه برای آرشیو بزرگ است."
|
1371 |
+
|
1372 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:125
|
1373 |
+
msgid "Database Build"
|
1374 |
+
msgstr "ساخت پایگاه داده"
|
1375 |
+
|
1376 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:128
|
1377 |
+
msgid "Use PHP"
|
1378 |
+
msgstr "استفاده از پی اچ پی"
|
1379 |
+
|
1380 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:131
|
1381 |
+
msgid "Query Limit Size"
|
1382 |
+
msgstr "پرس و جو حد اندازه"
|
1383 |
+
|
1384 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:140
|
1385 |
+
msgid "higher values speed up build times but uses more memory"
|
1386 |
+
msgstr "مقادیر بالاتر سرعت بار ساخت اما با استفاده از حافظه بیشتر"
|
1387 |
+
|
1388 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:147
|
1389 |
+
msgid "This server does not have shell_exec configured to run."
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:149
|
1393 |
+
msgid "Please contact the server administrator to enable this feature."
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:154
|
1397 |
+
msgid "Use mysqldump"
|
1398 |
+
msgstr "استفاده از mysqldump"
|
1399 |
+
|
1400 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:155
|
1401 |
+
msgid "recommended for large databases"
|
1402 |
+
msgstr "توصیه می شود برای پایگاه های داده بزرگ"
|
1403 |
+
|
1404 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:160
|
1405 |
+
msgid "Working Path:"
|
1406 |
+
msgstr "مسیر در حال کار:"
|
1407 |
+
|
1408 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:166
|
1409 |
+
msgid ""
|
1410 |
+
"Mysqldump was not found at its default location or the location provided. "
|
1411 |
+
"Please enter a path to a valid location where mysqldump can run. If the "
|
1412 |
+
"problem persist contact your server administrator."
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:171
|
1416 |
+
msgid "Add Custom Path:"
|
1417 |
+
msgstr "مسیر سفارشی اضافه کنید:"
|
1418 |
+
|
1419 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:175
|
1420 |
+
msgid "This is the path to your mysqldump program."
|
1421 |
+
msgstr "این مسیر برای برنامه mysqldump شما است."
|
1422 |
+
|
1423 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:184
|
1424 |
+
msgid "Package Debug"
|
1425 |
+
msgstr "اشکال زدایی بسته"
|
1426 |
+
|
1427 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:187
|
1428 |
+
msgid "Show Package Debug Status in Packages Screen"
|
1429 |
+
msgstr "نمایش وضعیت اشکال زدایی بسته در صفحه نمایش بسته"
|
1430 |
+
|
1431 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:195
|
1432 |
+
msgid "Roles & Capabilities"
|
1433 |
+
msgstr "نقش ها و قابلیت ها"
|
1434 |
+
|
1435 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:200
|
1436 |
+
msgid "Custom Roles"
|
1437 |
+
msgstr "نقش های سفارشی"
|
1438 |
+
|
1439 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:203
|
1440 |
+
msgid "Enable User Role Editor Plugin Integration"
|
1441 |
+
msgstr "فعال کردن قابلیت هماهنگ سازی با پلاگین User Role Editor"
|
1442 |
+
|
1443 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:210
|
1444 |
+
msgid "The User Role Editor Plugin"
|
1445 |
+
msgstr "پلاگین ویرایش نقش کاربران"
|
1446 |
+
|
1447 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:211
|
1448 |
+
msgid "Free"
|
1449 |
+
msgstr "رایگان"
|
1450 |
+
|
1451 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:212
|
1452 |
+
msgid "or"
|
1453 |
+
msgstr "یا"
|
1454 |
+
|
1455 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:213
|
1456 |
+
msgid "Professional"
|
1457 |
+
msgstr "تجاری"
|
1458 |
+
|
1459 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:214
|
1460 |
+
msgid "must be installed to use"
|
1461 |
+
msgstr "باید نصب کنید برای استفاده از"
|
1462 |
+
|
1463 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:215
|
1464 |
+
msgid "this feature."
|
1465 |
+
msgstr "این ویژگی"
|
1466 |
+
|
1467 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/settings/general.php:227
|
1468 |
+
msgid "Save Settings"
|
1469 |
+
msgstr "ذخیره تغییرات"
|
1470 |
+
|
1471 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:8
|
1472 |
+
msgid "Installer File Cleanup Ran."
|
1473 |
+
msgstr "نصب فایل پاک کردن ران."
|
1474 |
+
|
1475 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:12
|
1476 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:44
|
1477 |
+
msgid "Legacy data removed."
|
1478 |
+
msgstr "حذف داده های میراث."
|
1479 |
+
|
1480 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:16
|
1481 |
+
msgid "Build cache removed."
|
1482 |
+
msgstr "پاک کردن کش"
|
1483 |
+
|
1484 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:73
|
1485 |
+
msgid ""
|
1486 |
+
"If the installer files did not successfully get removed, then you WILL need "
|
1487 |
+
"to remove them manually"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:74
|
1491 |
+
msgid ""
|
1492 |
+
"Please remove all installer files to avoid leaving open security issues on "
|
1493 |
+
"your server"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:82
|
1497 |
+
msgid "Data Cleanup"
|
1498 |
+
msgstr "پاک کردن داده ها"
|
1499 |
+
|
1500 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:85
|
1501 |
+
msgid "Delete Reserved Files"
|
1502 |
+
msgstr "حذف فایلها و پوشه های محافظت شده"
|
1503 |
+
|
1504 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:86
|
1505 |
+
msgid "Removes all installer files from a previous install"
|
1506 |
+
msgstr "تمام فایل های نصب را از یک نصب قبلی حذف می کند"
|
1507 |
+
|
1508 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:89
|
1509 |
+
msgid "Delete Legacy Data"
|
1510 |
+
msgstr "حذف داده های میراث"
|
1511 |
+
|
1512 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:90
|
1513 |
+
msgid "Removes all legacy data and settings prior to version"
|
1514 |
+
msgstr "حذف همه داده های میراث و تنظیمات قبل از نسخه"
|
1515 |
+
|
1516 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:93
|
1517 |
+
msgid "Clear Build Cache"
|
1518 |
+
msgstr "پاک کردن کش"
|
1519 |
+
|
1520 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:94
|
1521 |
+
msgid "Removes all build data from:"
|
1522 |
+
msgstr "حذف همه داده ها از ساخت:"
|
1523 |
+
|
1524 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:107
|
1525 |
+
#, php-format
|
1526 |
+
msgid "This action will remove all legacy settings prior to version %1$s. "
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:108
|
1530 |
+
msgid ""
|
1531 |
+
"Legacy settings are only needed if you plan to migrate back to an older "
|
1532 |
+
"version of this plugin."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/cleanup.php:120
|
1536 |
+
msgid ""
|
1537 |
+
"This process will remove all build cache files. Be sure no packages are "
|
1538 |
+
"currently building or else they will be cancelled."
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:16
|
1542 |
+
msgid "Logging"
|
1543 |
+
msgstr "گزارشات"
|
1544 |
+
|
1545 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/controller.php:18
|
1546 |
+
msgid "Cleanup"
|
1547 |
+
msgstr "گزارش های پاکسازی"
|
1548 |
+
|
1549 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:18
|
1550 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:19
|
1551 |
+
msgid "unknow"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:39
|
1555 |
+
msgid "Plugin settings reset."
|
1556 |
+
msgstr "بازگشت به تنظیمات اولیه"
|
1557 |
+
|
1558 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:40
|
1559 |
+
msgid "View state settings reset."
|
1560 |
+
msgstr "تنظیمات بازنشانی شد"
|
1561 |
+
|
1562 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:41
|
1563 |
+
msgid "Active package settings reset."
|
1564 |
+
msgstr "تنظیم مجدد تنظیمات فعال بسته."
|
1565 |
+
|
1566 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:81
|
1567 |
+
msgid "Server Settings"
|
1568 |
+
msgstr "تنظیمات سرور"
|
1569 |
+
|
1570 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:90
|
1571 |
+
msgid "Duplicator Version"
|
1572 |
+
msgstr "نسخه ایجاد کننده بسته نصبی"
|
1573 |
+
|
1574 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:94
|
1575 |
+
msgid "Operating System"
|
1576 |
+
msgstr "سیستم عامل"
|
1577 |
+
|
1578 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:98
|
1579 |
+
msgid "Timezone"
|
1580 |
+
msgstr "منطقه زمانی"
|
1581 |
+
|
1582 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:102
|
1583 |
+
msgid "Server Time"
|
1584 |
+
msgstr "زمان سرور"
|
1585 |
+
|
1586 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:110
|
1587 |
+
msgid "APC Enabled"
|
1588 |
+
msgstr "APC فعال"
|
1589 |
+
|
1590 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:111
|
1591 |
+
msgid "Yes"
|
1592 |
+
msgstr "بله"
|
1593 |
+
|
1594 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:111
|
1595 |
+
msgid "No"
|
1596 |
+
msgstr "نه"
|
1597 |
+
|
1598 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:114
|
1599 |
+
msgid "Root Path"
|
1600 |
+
msgstr "مسیر ریشه"
|
1601 |
+
|
1602 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:118
|
1603 |
+
msgid "ABSPATH"
|
1604 |
+
msgstr "مسیر کامل دایرکتوری وردپرس"
|
1605 |
+
|
1606 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:122
|
1607 |
+
msgid "Plugins Path"
|
1608 |
+
msgstr "مسیر پلاگین ها"
|
1609 |
+
|
1610 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:126
|
1611 |
+
msgid "Loaded PHP INI"
|
1612 |
+
msgstr "مسیر php.ini"
|
1613 |
+
|
1614 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:130
|
1615 |
+
msgid "Server IP"
|
1616 |
+
msgstr "آی پی سرور"
|
1617 |
+
|
1618 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:134
|
1619 |
+
msgid "Client IP"
|
1620 |
+
msgstr "آی پی کاربر"
|
1621 |
+
|
1622 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:138
|
1623 |
+
msgid "WordPress"
|
1624 |
+
msgstr "وردپرس"
|
1625 |
+
|
1626 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:145
|
1627 |
+
msgid "Langugage"
|
1628 |
+
msgstr "زبان"
|
1629 |
+
|
1630 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:149
|
1631 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:204
|
1632 |
+
msgid "Charset"
|
1633 |
+
msgstr "انکودینگ"
|
1634 |
+
|
1635 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:153
|
1636 |
+
msgid "Memory Limit "
|
1637 |
+
msgstr "محدوديت حافظه وردپرس"
|
1638 |
+
|
1639 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:154
|
1640 |
+
msgid "Max"
|
1641 |
+
msgstr "بیشترین"
|
1642 |
+
|
1643 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:157
|
1644 |
+
msgid "PHP"
|
1645 |
+
msgstr "پی اچ پی"
|
1646 |
+
|
1647 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:172
|
1648 |
+
msgid "Safe Mode"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:176
|
1652 |
+
msgid "On"
|
1653 |
+
msgstr "روشن"
|
1654 |
+
|
1655 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:176
|
1656 |
+
msgid "Off"
|
1657 |
+
msgstr "خاموش"
|
1658 |
+
|
1659 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:181
|
1660 |
+
msgid "Memory Limit"
|
1661 |
+
msgstr "محدوديت حافظه"
|
1662 |
+
|
1663 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:185
|
1664 |
+
msgid "Memory In Use"
|
1665 |
+
msgstr "حافظه در حال استفاده"
|
1666 |
+
|
1667 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:193
|
1668 |
+
msgid "Shell Exec"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:194
|
1672 |
+
msgid "Is Supported"
|
1673 |
+
msgstr "پشتیبانی می شود"
|
1674 |
+
|
1675 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:194
|
1676 |
+
msgid "Not Supported"
|
1677 |
+
msgstr "پشتیبانی نمی شود"
|
1678 |
+
|
1679 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:197
|
1680 |
+
msgid "MySQL"
|
1681 |
+
msgstr "مای اس کیوال"
|
1682 |
+
|
1683 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:208
|
1684 |
+
msgid "Wait Timeout"
|
1685 |
+
msgstr "زمان تمام شدن"
|
1686 |
+
|
1687 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:212
|
1688 |
+
msgid "Max Allowed Packets"
|
1689 |
+
msgstr "حداکثر مجاز بسته"
|
1690 |
+
|
1691 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:216
|
1692 |
+
msgid "msyqldump Path"
|
1693 |
+
msgstr "مسیر msyqldump"
|
1694 |
+
|
1695 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:220
|
1696 |
+
msgid "Server Disk"
|
1697 |
+
msgstr "دیسک سرویس دهنده"
|
1698 |
+
|
1699 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:223
|
1700 |
+
msgid "Free space"
|
1701 |
+
msgstr "فضای خالی"
|
1702 |
+
|
1703 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:226
|
1704 |
+
msgid "Note: This value is the physical servers hard-drive allocation."
|
1705 |
+
msgstr "توجه: این مقدار تخصیص هارد دیسک سرور فیزیکی است."
|
1706 |
+
|
1707 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:227
|
1708 |
+
msgid ""
|
1709 |
+
"On shared hosts check your control panel for the 'TRUE' disk space quota "
|
1710 |
+
"value."
|
1711 |
+
msgstr ""
|
1712 |
+
"در میزبان مشترک کنترل پنل خود را برای ارزش ظرفیت فضای دیسک 'واقعی' را بررسی "
|
1713 |
+
"کنید."
|
1714 |
+
|
1715 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:243
|
1716 |
+
msgid "Stored Data"
|
1717 |
+
msgstr "داده های ذخیره شده"
|
1718 |
+
|
1719 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:248
|
1720 |
+
msgid "Options Values"
|
1721 |
+
msgstr "تنظیمات"
|
1722 |
+
|
1723 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:281
|
1724 |
+
msgid "PHP Information"
|
1725 |
+
msgstr "اطلاعات مربوط به پی اچ پی"
|
1726 |
+
|
1727 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/diagnostics.php:300
|
1728 |
+
msgid "Delete this option value"
|
1729 |
+
msgstr "حذف مقادیر این تنظیمات"
|
1730 |
+
|
1731 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:140
|
1732 |
+
msgid "Log file not found or unreadable"
|
1733 |
+
msgstr ""
|
1734 |
+
"فایل گزارشات یافت نشد یا قابل خواندن نیست و احتمال می رود که مشکلی در حال "
|
1735 |
+
"حاظر وجود نداشته که گزارش شود."
|
1736 |
+
|
1737 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:142
|
1738 |
+
msgid ""
|
1739 |
+
"Try to create a package, since no log files were found in the snapshots "
|
1740 |
+
"directory with the extension *.log"
|
1741 |
+
msgstr ""
|
1742 |
+
"سعی کنید به ایجاد یک بسته، بدون ورود به سیستم فایل در دایرکتوری فوری با فرمت "
|
1743 |
+
"*.log یافت شد"
|
1744 |
+
|
1745 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:144
|
1746 |
+
msgid "Reasons for log file not showing"
|
1747 |
+
msgstr "دلایلی برای نمایش ندادن فایل گزارشات"
|
1748 |
+
|
1749 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:145
|
1750 |
+
msgid "The web server does not support returning .log file extentions"
|
1751 |
+
msgstr ""
|
1752 |
+
"سرور وب شما از پسوند .log پشتیبانی نمی کند. بنا بر این می توانید به سرور خود "
|
1753 |
+
"اطلاع دهید تا مشکل را بررسی و رفع نمایند"
|
1754 |
+
|
1755 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:146
|
1756 |
+
msgid ""
|
1757 |
+
"The snapshots directory does not have the correct permissions to write "
|
1758 |
+
"files. Try setting the permissions to 755"
|
1759 |
+
msgstr ""
|
1760 |
+
"احتمالا دایکرکتوری wp-snapshots سطح دسترسی لازم را ندارد برای نوشتن را "
|
1761 |
+
"ندارد. بنا بر این به هاست خود بروید و سطح دسترسی این پوشه را روی 755 تنظیم "
|
1762 |
+
"کنید"
|
1763 |
+
|
1764 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:147
|
1765 |
+
msgid ""
|
1766 |
+
"The process that PHP runs under does not have enough permissions to create "
|
1767 |
+
"files. Please contact your hosting provider for more details"
|
1768 |
+
msgstr ""
|
1769 |
+
"پی اچی پی امکان اجرای دستورات لازم را ندارد بنا بر این با هاستینگ خود تماس "
|
1770 |
+
"بگیرید و مشکل را جهت رفع آن ارجاع دهید"
|
1771 |
+
|
1772 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:156
|
1773 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:161
|
1774 |
+
msgid "Options"
|
1775 |
+
msgstr "تنظیمات"
|
1776 |
+
|
1777 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:163
|
1778 |
+
msgid "Refresh"
|
1779 |
+
msgstr "بازسازی"
|
1780 |
+
|
1781 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:168
|
1782 |
+
msgid "Auto Refresh"
|
1783 |
+
msgstr "بازسازی اتوماتیک"
|
1784 |
+
|
1785 |
+
#: C:\xampp\htdocs\www.wordpress.org\wp-content\plugins\duplicator/views/tools/logging.php:174
|
1786 |
+
msgid "Last 20 Logs"
|
1787 |
+
msgstr "20 گزارش اخیر"
|
1788 |
+
|
1789 |
+
#~ msgid "Good"
|
1790 |
+
#~ msgstr "خوب"
|
1791 |
+
|
1792 |
+
#~ msgid "Warn"
|
1793 |
+
#~ msgstr ""
|
1794 |
+
#~ "اخطار ( البته به این معنی نمی باشد که مشکل در ایجاد بسته نصبی وجود خواهد "
|
1795 |
+
#~ "داشت )"
|
1796 |
+
|
1797 |
+
#~ msgid "unable to read"
|
1798 |
+
#~ msgstr "قادر به خواندن نمی باشم"
|
1799 |
+
|
1800 |
+
#~ msgid "Goods"
|
1801 |
+
#~ msgstr "خوب"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: www.lifeinthegrid.com/partner
|
|
4 |
Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 0.5.
|
8 |
License: GPLv2
|
9 |
|
10 |
Duplicate, clone, backup, move and transfer an entire site from one location to another.
|
4 |
Tags: backup, restore, move, migrate, localhost, synchronize, duplicate, clone, automate, niche
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 0.5.20
|
8 |
License: GPLv2
|
9 |
|
10 |
Duplicate, clone, backup, move and transfer an entire site from one location to another.
|
views/actions.php
CHANGED
@@ -9,6 +9,7 @@
|
|
9 |
*/
|
10 |
function duplicator_package_scan() {
|
11 |
|
|
|
12 |
DUP_Util::CheckPermissions('export');
|
13 |
|
14 |
@set_time_limit(0);
|
@@ -18,6 +19,7 @@ function duplicator_package_scan() {
|
|
18 |
|
19 |
$Package = DUP_Package::GetActive();
|
20 |
$report = $Package->Scan();
|
|
|
21 |
$Package->SaveActiveItem('ScanFile', $Package->ScanFile);
|
22 |
$json_response = json_encode($report);
|
23 |
|
@@ -34,6 +36,7 @@ function duplicator_package_scan() {
|
|
34 |
*/
|
35 |
function duplicator_package_build() {
|
36 |
|
|
|
37 |
DUP_Util::CheckPermissions('export');
|
38 |
|
39 |
@set_time_limit(0);
|
9 |
*/
|
10 |
function duplicator_package_scan() {
|
11 |
|
12 |
+
header('Content-Type: application/json;');
|
13 |
DUP_Util::CheckPermissions('export');
|
14 |
|
15 |
@set_time_limit(0);
|
19 |
|
20 |
$Package = DUP_Package::GetActive();
|
21 |
$report = $Package->Scan();
|
22 |
+
|
23 |
$Package->SaveActiveItem('ScanFile', $Package->ScanFile);
|
24 |
$json_response = json_encode($report);
|
25 |
|
36 |
*/
|
37 |
function duplicator_package_build() {
|
38 |
|
39 |
+
header('Content-Type: application/json');
|
40 |
DUP_Util::CheckPermissions('export');
|
41 |
|
42 |
@set_time_limit(0);
|
views/packages/new1.inc.form.php
CHANGED
@@ -44,12 +44,12 @@ META-BOX: STORAGE -->
|
|
44 |
<p class="description">
|
45 |
<?php _e("All packages including the archive, installer and SQL script are stored in the location above. ", 'wpduplicator'); ?>
|
46 |
<br/>
|
47 |
-
|
48 |
<?php _e("Dropbox, FTP and other multiple storage options available in ", 'wpduplicator'); ?>
|
49 |
<a href="http://duplicatorpro.com/?from_free_storage" target="_blank">
|
50 |
<?php _e("Duplicator Pro", 'wpduplicator'); ?>
|
51 |
</a>
|
52 |
-
</small
|
53 |
</p>
|
54 |
</td>
|
55 |
</tr>
|
@@ -186,6 +186,10 @@ META-BOX: STORAGE -->
|
|
186 |
<tr>
|
187 |
<td style="width:130px"><?php _e("Host", 'wpduplicator') ?></td>
|
188 |
<td><input type="text" name="dbhost" id="dbhost" value="<?php echo $Package->Installer->OptsDBHost ?>" maxlength="200" placeholder="localhost"/></td>
|
|
|
|
|
|
|
|
|
189 |
</tr>
|
190 |
<tr>
|
191 |
<td><?php _e("Database", 'wpduplicator') ?></td>
|
44 |
<p class="description">
|
45 |
<?php _e("All packages including the archive, installer and SQL script are stored in the location above. ", 'wpduplicator'); ?>
|
46 |
<br/>
|
47 |
+
<!--small>
|
48 |
<?php _e("Dropbox, FTP and other multiple storage options available in ", 'wpduplicator'); ?>
|
49 |
<a href="http://duplicatorpro.com/?from_free_storage" target="_blank">
|
50 |
<?php _e("Duplicator Pro", 'wpduplicator'); ?>
|
51 |
</a>
|
52 |
+
</small-->
|
53 |
</p>
|
54 |
</td>
|
55 |
</tr>
|
186 |
<tr>
|
187 |
<td style="width:130px"><?php _e("Host", 'wpduplicator') ?></td>
|
188 |
<td><input type="text" name="dbhost" id="dbhost" value="<?php echo $Package->Installer->OptsDBHost ?>" maxlength="200" placeholder="localhost"/></td>
|
189 |
+
</tr>
|
190 |
+
<tr>
|
191 |
+
<td style="width:130px"><?php _e("Host Port", 'wpduplicator') ?></td>
|
192 |
+
<td><input type="text" name="dbport" id="dbport" value="<?php echo $Package->Installer->OptsDBPort ?>" maxlength="200" placeholder="3306"/></td>
|
193 |
</tr>
|
194 |
<tr>
|
195 |
<td><?php _e("Database", 'wpduplicator') ?></td>
|
views/packages/new2.base.php
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
?>
|
12 |
|
13 |
<style>
|
14 |
-
/*
|
15 |
PROGRESS ARES-CHECKS */
|
16 |
div#dup-progress-area {text-align:center; max-width:650px; min-height:200px; margin:0px auto 0px auto; padding:0px;}
|
17 |
div#dup-msg-success {color:#18592A; padding:5px; text-align: left}
|
@@ -24,6 +24,7 @@
|
|
24 |
/* SERVER-CHECKS */
|
25 |
div.dup-scan-title {display:inline-block; padding:1px; font-weight: bold;}
|
26 |
div.dup-scan-title a {display:inline-block; min-width:200px; padding:3px; }
|
|
|
27 |
div.dup-scan-title div {display:inline-block; }
|
28 |
div.dup-scan-info {display:none;}
|
29 |
div.dup-scan-good {display:inline-block; color:green;font-weight: bold;}
|
@@ -55,39 +56,40 @@ TOOL BAR: STEPS -->
|
|
55 |
<td style="white-space: nowrap">
|
56 |
<div id="dup-wiz">
|
57 |
<div id="dup-wiz-steps">
|
58 |
-
<div class="completed-step"><a><span>1</span> <?php _e('Setup'
|
59 |
-
<div class="active-step"><a><span>2</span> <?php _e('Scan'
|
60 |
-
<div><a><span>3</span> <?php _e('Build'
|
61 |
</div>
|
62 |
<div id="dup-wiz-title">
|
63 |
-
<?php _e('Step 2: System Scan'
|
64 |
</div>
|
65 |
</div>
|
66 |
</td>
|
67 |
<td class="dup-toolbar-btns">
|
68 |
-
<a id="dup-pro-create-new" href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php _e("All Packages"
|
69 |
-
<span> <?php _e("Create New"
|
70 |
</td>
|
71 |
</tr>
|
72 |
</table>
|
73 |
<hr style="margin-bottom:10px">
|
74 |
|
|
|
75 |
<form id="form-duplicator" method="post" action="?page=duplicator&tab=new3">
|
76 |
<div id="dup-progress-area">
|
77 |
<!-- PROGRESS BAR -->
|
78 |
<div id="dup-progress-bar-area">
|
79 |
-
<h2><i class="fa fa-spinner fa-spin"></i> <?php _e('Scanning Site'
|
80 |
<div id="dup-progress-bar"></div>
|
81 |
-
<b><?php _e('Please Wait...'
|
82 |
</div>
|
83 |
|
84 |
<!-- SUCCESS MESSAGE -->
|
85 |
<div id="dup-msg-success" style="display:none">
|
86 |
<div style="text-align:center">
|
87 |
-
<div class="dup-hdr-success"><i class="fa fa-check-square-o fa-lg"></i> <?php _e('Scan Complete'
|
88 |
<div id="dup-msg-success-subtitle">
|
89 |
-
<?php _e("Scan checks are not required to pass, however they could cause issues on some systems."
|
90 |
-
<?php _e("Process Time:"
|
91 |
</div>
|
92 |
</div><br/>
|
93 |
|
@@ -96,94 +98,93 @@ TOOL BAR: STEPS -->
|
|
96 |
================================================================ -->
|
97 |
<div class="dup-panel">
|
98 |
<div class="dup-panel-title">
|
99 |
-
<i class="fa fa-hdd-o"></i> <?php _e("Server"
|
100 |
<div style="float:right; margin:-1px 10px 0px 0px">
|
101 |
-
<small><a href="?page=duplicator-tools&tab=diagnostics" target="_blank"><?php _e('Diagnostics'
|
102 |
</div>
|
103 |
|
104 |
</div>
|
105 |
<div class="dup-panel-panel">
|
106 |
-
<!--
|
107 |
WEB SERVER -->
|
108 |
<div>
|
109 |
<div class='dup-scan-title'>
|
110 |
-
<a><?php _e('Web Server'
|
111 |
</div>
|
112 |
<div class='dup-scan-info dup-info-box'>
|
113 |
-
<?php
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
?>
|
121 |
</div>
|
122 |
</div>
|
123 |
-
<!--
|
124 |
PHP SETTINGS -->
|
125 |
<div>
|
126 |
<div class='dup-scan-title'>
|
127 |
-
<a><?php _e('PHP
|
128 |
</div>
|
129 |
<div class='dup-scan-info dup-info-box'>
|
130 |
<?php
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
|
|
|
|
|
|
|
|
151 |
?>
|
152 |
</div>
|
153 |
</div>
|
154 |
-
<!--
|
155 |
WORDPRESS SETTINGS -->
|
156 |
<div>
|
157 |
<div class='dup-scan-title'>
|
158 |
-
<a><?php _e('WordPress
|
159 |
</div>
|
160 |
<div class='dup-scan-info dup-info-box'>
|
161 |
<?php
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
$cache_size = DUP_Util::ByteSize(DUP_Util::GetDirectorySize($cache_path));
|
183 |
-
echo '<b>' . __('Cache Path', 'wpduplicator') . ":</b> {$cache_path} ({$cache_size})<br/><br/>";
|
184 |
-
_e("Cached data will lead to issues at install time and increases your archive size. It is recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you have a cache plugin review the documentation for how to empty it; simply removing files might cause errors on your site.", 'wpduplicator');
|
185 |
-
_e("The cache size minimum threshold is currently set at ", 'wpduplicator');
|
186 |
-
echo DUP_Util::ByteSize(DUPLICATOR_SCAN_CACHESIZE) . '.';
|
187 |
|
188 |
?>
|
189 |
</div>
|
@@ -191,7 +192,7 @@ TOOL BAR: STEPS -->
|
|
191 |
</div><!-- end .dup-panel -->
|
192 |
</div><!-- end .dup-panel-panel -->
|
193 |
|
194 |
-
<h2 style="font-size:18px; font-weight:bold; margin:-15px 0 0 10px"><i class="fa fa-file-archive-o"></i> <?php _e('Archive'
|
195 |
|
196 |
<!-- ================================================================
|
197 |
FILES
|
@@ -199,94 +200,104 @@ TOOL BAR: STEPS -->
|
|
199 |
<div class="dup-panel">
|
200 |
<div class="dup-panel-title">
|
201 |
<i class="fa fa-files-o"></i>
|
202 |
-
<?php _e("Files"
|
203 |
<div id="data-arc-size1"></div>
|
204 |
<div class="dup-scan-filter-status">
|
205 |
<?php
|
206 |
if ($Package->Archive->FilterOn) {
|
207 |
-
echo '<i class="fa fa-filter"></i> '; _e('Enabled'
|
208 |
}
|
209 |
?>
|
210 |
</div>
|
211 |
</div>
|
212 |
<div class="dup-panel-panel">
|
213 |
|
214 |
-
<!--
|
215 |
TOTAL SIZE -->
|
216 |
<div>
|
217 |
<div class='dup-scan-title'>
|
218 |
-
<a><?php _e('Total Size'
|
219 |
</div>
|
220 |
<div class='dup-scan-info dup-info-box'>
|
221 |
-
<b><?php _e('Size'
|
222 |
-
<b><?php _e('File Count'
|
223 |
-
<b><?php _e('Directory Count'
|
|
|
224 |
<?php
|
225 |
-
printf(__('Total size represents all files minus any filters that have been setup. The current thresholds that trigger warnings are %1$s for the entire site and %2$s for large files.'
|
|
|
|
|
226 |
?>
|
|
|
227 |
</div>
|
228 |
</div>
|
229 |
|
230 |
-
<!--
|
231 |
FILE NAME LENGTHS -->
|
232 |
<div>
|
233 |
<div class='dup-scan-title'>
|
234 |
-
<a><?php _e('Invalid Names'
|
235 |
</div>
|
236 |
<div class='dup-scan-info dup-info-box'>
|
|
|
237 |
<?php
|
238 |
-
_e('Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 250 characters and illegal characters that may not work on all operating systems such as * ? > < : / \ | . It is recommended to remove or filter these files before building the archive or else you might have issues at install time.'
|
239 |
-
|
240 |
-
|
|
|
241 |
<div id="data-arc-names-data"></div>
|
242 |
</div>
|
243 |
</div>
|
244 |
|
245 |
-
<!--
|
246 |
LARGE FILES -->
|
247 |
<div>
|
248 |
<div class='dup-scan-title'>
|
249 |
-
<a><?php _e('Large Files'
|
250 |
</div>
|
251 |
<div class='dup-scan-info dup-info-box'>
|
|
|
252 |
<?php
|
253 |
-
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.'
|
254 |
-
|
255 |
-
|
|
|
|
|
256 |
<div id="data-arc-big-data"></div>
|
257 |
</div>
|
258 |
</div>
|
259 |
|
260 |
-
<!--
|
261 |
VIEW FILTERS -->
|
262 |
<?php if ($Package->Archive->FilterOn) : ?>
|
263 |
<div>
|
264 |
<div class='dup-scan-title'>
|
265 |
-
<a><?php _e('View Filters'
|
266 |
</div>
|
267 |
-
<div class='dup-scan-info dup-info-box'>
|
268 |
-
<?php _e('
|
269 |
-
<br/><br/>
|
270 |
-
|
271 |
-
<b>[<?php _e('Directories', 'wpduplicator');?>]</b><br/>
|
272 |
<?php
|
273 |
if (strlen( $Package->Archive->FilterDirs)) {
|
274 |
echo str_replace(";", "<br/>", $Package->Archive->FilterDirs);
|
275 |
} else {
|
276 |
-
_e('No directory filters have been set.'
|
277 |
}
|
278 |
?>
|
279 |
<br/>
|
280 |
|
281 |
-
<b>[<?php _e('File Extensions'
|
282 |
<?php
|
283 |
if (strlen( $Package->Archive->FilterExts)) {
|
284 |
echo $Package->Archive->FilterExts;
|
285 |
} else {
|
286 |
-
_e('No file extension filters have been set.'
|
287 |
}
|
288 |
-
?>
|
|
|
|
|
|
|
289 |
</div>
|
|
|
290 |
</div>
|
291 |
<?php endif; ?>
|
292 |
|
@@ -298,32 +309,32 @@ TOOL BAR: STEPS -->
|
|
298 |
================================================================ -->
|
299 |
<div class="dup-panel-title">
|
300 |
<i class="fa fa-table"></i>
|
301 |
-
<?php _e("Database"
|
302 |
<div id="data-db-size1"></div>
|
303 |
<div class="dup-scan-filter-status">
|
304 |
<?php
|
305 |
if ($Package->Database->FilterOn) {
|
306 |
-
echo '<i class="fa fa-filter"></i> '; _e('Enabled'
|
307 |
}
|
308 |
?>
|
309 |
</div>
|
310 |
</div>
|
311 |
<div class="dup-panel-panel" id="dup-scan-db">
|
312 |
|
313 |
-
<!--
|
314 |
TOTAL SIZE -->
|
315 |
<div>
|
316 |
<div class='dup-scan-title'>
|
317 |
-
<a><?php _e('Total Size'
|
318 |
<div id="data-db-status-size1"></div>
|
319 |
</div>
|
320 |
<div class='dup-scan-info dup-info-box'>
|
321 |
-
<b><?php _e('Tables'
|
322 |
-
<b><?php _e('Records'
|
323 |
-
<b><?php _e('Size'
|
324 |
<?php
|
325 |
-
$lnk = '<a href="maint/repair.php" target="_blank">' . __('repair and optimization'
|
326 |
-
printf(__('Total size and row count for all database tables are approximate values. The thresholds that trigger warnings are %1$s and %2$s records. Large databases take time to process and can cause issues with server timeout and memory settings. Running a %3$s on your database can also help improve the overall size and performance. If your server supports shell_exec and mysqldump you can try to enable this option from the settings menu.'
|
327 |
DUP_Util::ByteSize(DUPLICATOR_SCAN_DBSIZE),
|
328 |
number_format(DUPLICATOR_SCAN_DBROWS),
|
329 |
$lnk);
|
@@ -331,11 +342,11 @@ TOOL BAR: STEPS -->
|
|
331 |
</div>
|
332 |
</div>
|
333 |
|
334 |
-
<!--
|
335 |
TABLE DETAILS -->
|
336 |
<div>
|
337 |
<div class='dup-scan-title'>
|
338 |
-
<a><?php _e('Table Details'
|
339 |
<div id="data-db-status-size2"></div>
|
340 |
</div>
|
341 |
<div class='dup-scan-info dup-info-box'>
|
@@ -346,9 +357,9 @@ TOOL BAR: STEPS -->
|
|
346 |
</div>
|
347 |
|
348 |
<table id="dup-scan-db-details">
|
349 |
-
<tr><td><b><?php _e('Name:'
|
350 |
-
<tr><td><b><?php _e('Host:'
|
351 |
-
<tr><td><b><?php _e('Build Mode:'
|
352 |
</table>
|
353 |
|
354 |
</div><!-- end .dup-panel -->
|
@@ -359,22 +370,22 @@ TOOL BAR: STEPS -->
|
|
359 |
|
360 |
<!-- ERROR MESSAGE -->
|
361 |
<div id="dup-msg-error" style="display:none">
|
362 |
-
<div class="dup-hdr-error"><i class="fa fa-exclamation-circle"></i> <?php _e('Scan Error'
|
363 |
-
<i><?php _e('Please try again!'
|
364 |
<div style="text-align:left">
|
365 |
-
<b><?php _e("Server Status:"
|
366 |
<div id="dup-msg-error-response-status" style="display:inline-block"></div><br/>
|
367 |
|
368 |
-
<b><?php _e("Error Message:"
|
369 |
<div id="dup-msg-error-response-text"></div>
|
370 |
</div>
|
371 |
</div>
|
372 |
</div> <!-- end #dup-progress-area -->
|
373 |
|
374 |
<div class="dup-button-footer" style="display:none">
|
375 |
-
<input type="button" value="◄ <?php _e("Back"
|
376 |
-
<input type="button" value="<?php _e("Rescan"
|
377 |
-
<input type="submit" value="<?php _e("Build"
|
378 |
<!-- Used for iMacros testing do not remove -->
|
379 |
<div id="dup-automation-imacros"></div>
|
380 |
</div>
|
@@ -383,7 +394,7 @@ TOOL BAR: STEPS -->
|
|
383 |
<script type="text/javascript">
|
384 |
jQuery(document).ready(function($) {
|
385 |
|
386 |
-
/*
|
387 |
* METHOD: Performs Ajax post to create check system */
|
388 |
Duplicator.Pack.Scan = function() {
|
389 |
var data = {action : 'duplicator_package_scan'}
|
@@ -420,15 +431,17 @@ jQuery(document).ready(function($) {
|
|
420 |
Duplicator.Pack.LoadScanStatus = function(status) {
|
421 |
var result;
|
422 |
switch (status) {
|
423 |
-
case
|
424 |
-
case '
|
|
|
|
|
425 |
default :
|
426 |
result = 'unable to read';
|
427 |
}
|
428 |
return result;
|
429 |
}
|
430 |
|
431 |
-
/*
|
432 |
* METHOD: */
|
433 |
Duplicator.Pack.LoadScanData = function(data) {
|
434 |
|
@@ -442,11 +455,22 @@ jQuery(document).ready(function($) {
|
|
442 |
$('#data-rpt-scanfile').attr('href', base + '&scanfile=' + data.RPT.ScanFile);
|
443 |
$('#data-rpt-scantime').text(data.RPT.ScanTime || 0);
|
444 |
|
|
|
445 |
//****************
|
446 |
//SERVER
|
447 |
-
$('#data-srv-
|
448 |
-
$('#data-srv-
|
449 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
|
451 |
//****************
|
452 |
//DATABASE
|
@@ -460,7 +484,7 @@ jQuery(document).ready(function($) {
|
|
460 |
$('#data-db-tablecount').text(data.DB.TableCount || errMsg);
|
461 |
//Table Details
|
462 |
if (data.DB.TableList == undefined || data.DB.TableList.length == 0) {
|
463 |
-
html = '<?php _e("Unable to report on any tables"
|
464 |
} else {
|
465 |
$.each(data.DB.TableList, function(i) {
|
466 |
html += '<b>' + i + '</b><br/>';
|
@@ -469,7 +493,7 @@ jQuery(document).ready(function($) {
|
|
469 |
}
|
470 |
$('#data-db-tablelist').append(html);
|
471 |
} else {
|
472 |
-
html = '<?php _e("Unable to report on database stats"
|
473 |
$('#dup-scan-db').html(html);
|
474 |
}
|
475 |
|
@@ -484,27 +508,21 @@ jQuery(document).ready(function($) {
|
|
484 |
$('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
|
485 |
|
486 |
//Invalid Names
|
487 |
-
html = '<?php _e("No name length issues."
|
488 |
if (data.ARC.WarnFileName != undefined && data.ARC.WarnFileName.length > 0) {
|
489 |
html = '';
|
490 |
-
$.each(data.ARC.WarnFileName, function(key, val) {html += '<?php _e("FILE"
|
491 |
}
|
492 |
$('#data-arc-names-data').html(html);
|
493 |
|
494 |
//Large Files
|
495 |
-
html = '<?php _e("No large files found."
|
496 |
if (data.ARC.WarnFileSize != undefined && data.ARC.WarnFileSize.length > 0) {
|
497 |
html = '';
|
498 |
-
$.each(data.ARC.WarnFileSize, function(key, val) {html += '<?php _e("FILE"
|
499 |
}
|
500 |
$('#data-arc-big-data').html(html);
|
501 |
|
502 |
-
|
503 |
-
//Color Code Good/Warn
|
504 |
-
$('.dup-scan-title div').each(function() {
|
505 |
-
|
506 |
-
$(this).addClass( $(this).text().indexOf('Good') > -1 ? 'dup-scan-good' : 'dup-scan-warn');
|
507 |
-
});
|
508 |
}
|
509 |
|
510 |
//Page Init:
|
11 |
?>
|
12 |
|
13 |
<style>
|
14 |
+
/* ============----------
|
15 |
PROGRESS ARES-CHECKS */
|
16 |
div#dup-progress-area {text-align:center; max-width:650px; min-height:200px; margin:0px auto 0px auto; padding:0px;}
|
17 |
div#dup-msg-success {color:#18592A; padding:5px; text-align: left}
|
24 |
/* SERVER-CHECKS */
|
25 |
div.dup-scan-title {display:inline-block; padding:1px; font-weight: bold;}
|
26 |
div.dup-scan-title a {display:inline-block; min-width:200px; padding:3px; }
|
27 |
+
div.dup-scan-title a:focus {outline: 1px solid #fff; box-shadow: none}
|
28 |
div.dup-scan-title div {display:inline-block; }
|
29 |
div.dup-scan-info {display:none;}
|
30 |
div.dup-scan-good {display:inline-block; color:green;font-weight: bold;}
|
56 |
<td style="white-space: nowrap">
|
57 |
<div id="dup-wiz">
|
58 |
<div id="dup-wiz-steps">
|
59 |
+
<div class="completed-step"><a><span>1</span> <?php DUP_Util::_e('Setup'); ?></a></div>
|
60 |
+
<div class="active-step"><a><span>2</span> <?php DUP_Util::_e('Scan'); ?> </a></div>
|
61 |
+
<div><a><span>3</span> <?php DUP_Util::_e('Build'); ?> </a></div>
|
62 |
</div>
|
63 |
<div id="dup-wiz-title">
|
64 |
+
<?php DUP_Util::_e('Step 2: System Scan'); ?>
|
65 |
</div>
|
66 |
</div>
|
67 |
</td>
|
68 |
<td class="dup-toolbar-btns">
|
69 |
+
<a id="dup-pro-create-new" href="?page=duplicator" class="add-new-h2"><i class="fa fa-archive"></i> <?php DUP_Util::_e("All Packages"); ?></a>
|
70 |
+
<span> <?php DUP_Util::_e("Create New"); ?></span>
|
71 |
</td>
|
72 |
</tr>
|
73 |
</table>
|
74 |
<hr style="margin-bottom:10px">
|
75 |
|
76 |
+
|
77 |
<form id="form-duplicator" method="post" action="?page=duplicator&tab=new3">
|
78 |
<div id="dup-progress-area">
|
79 |
<!-- PROGRESS BAR -->
|
80 |
<div id="dup-progress-bar-area">
|
81 |
+
<h2><i class="fa fa-spinner fa-spin"></i> <?php DUP_Util::_e('Scanning Site'); ?></h2>
|
82 |
<div id="dup-progress-bar"></div>
|
83 |
+
<b><?php DUP_Util::_e('Please Wait...'); ?></b>
|
84 |
</div>
|
85 |
|
86 |
<!-- SUCCESS MESSAGE -->
|
87 |
<div id="dup-msg-success" style="display:none">
|
88 |
<div style="text-align:center">
|
89 |
+
<div class="dup-hdr-success"><i class="fa fa-check-square-o fa-lg"></i> <?php DUP_Util::_e('Scan Complete'); ?></div>
|
90 |
<div id="dup-msg-success-subtitle">
|
91 |
+
<?php DUP_Util::_e("Scan checks are not required to pass, however they could cause issues on some systems."); ?><br/>
|
92 |
+
<?php DUP_Util::_e("Process Time:"); ?> <span id="data-rpt-scantime"></span>
|
93 |
</div>
|
94 |
</div><br/>
|
95 |
|
98 |
================================================================ -->
|
99 |
<div class="dup-panel">
|
100 |
<div class="dup-panel-title">
|
101 |
+
<i class="fa fa-hdd-o"></i> <?php DUP_Util::_e("Server"); ?>
|
102 |
<div style="float:right; margin:-1px 10px 0px 0px">
|
103 |
+
<small><a href="?page=duplicator-tools&tab=diagnostics" target="_blank"><?php DUP_Util::_e('Diagnostics');?></a></small>
|
104 |
</div>
|
105 |
|
106 |
</div>
|
107 |
<div class="dup-panel-panel">
|
108 |
+
<!-- ============
|
109 |
WEB SERVER -->
|
110 |
<div>
|
111 |
<div class='dup-scan-title'>
|
112 |
+
<a><?php DUP_Util::_e('Web Server');?></a> <div id="data-srv-web-all"></div>
|
113 |
</div>
|
114 |
<div class='dup-scan-info dup-info-box'>
|
115 |
+
<?php
|
116 |
+
$web_servers = implode(', ', $GLOBALS['DUPLICATOR_SERVER_LIST']);
|
117 |
+
echo '<span id="data-srv-web-model"></span> <b>' . DUP_Util::__('Web Server') . ":</b> '{$_SERVER['SERVER_SOFTWARE']}'";
|
118 |
+
echo '<small>';
|
119 |
+
DUP_Util::_e("Supported web servers:");
|
120 |
+
echo "{$web_servers}";
|
121 |
+
echo '</small>';
|
122 |
?>
|
123 |
</div>
|
124 |
</div>
|
125 |
+
<!-- ============
|
126 |
PHP SETTINGS -->
|
127 |
<div>
|
128 |
<div class='dup-scan-title'>
|
129 |
+
<a><?php DUP_Util::_e('PHP Setup');?></a> <div id="data-srv-php-all"></div>
|
130 |
</div>
|
131 |
<div class='dup-scan-info dup-info-box'>
|
132 |
<?php
|
133 |
+
//OPEN_BASEDIR
|
134 |
+
$test = ini_get("open_basedir");
|
135 |
+
echo '<span id="data-srv-php-openbase"></span> <b>' . DUP_Util::__('Open Base Dir') . ":</b> '{$test}' <br/>";
|
136 |
+
echo '<small>';
|
137 |
+
DUP_Util::_e('Issues might occur when [open_basedir] is enabled. Work with your server admin to disable this value in the php.ini file if you’re having issues building a package.');
|
138 |
+
echo " <i><a href='http://www.php.net/manual/en/ini.core.php#ini.open-basedir' target='_blank'>[" . DUP_Util::__('details') . "]</a></i><br/>";
|
139 |
+
echo '</small>';
|
140 |
+
|
141 |
+
//MAX_EXECUTION_TIME
|
142 |
+
$test = (set_time_limit(0)) ? 0 : ini_get("max_execution_time");
|
143 |
+
echo '<hr size="1" /><span id="data-srv-php-maxtime"></span> <b>' . DUP_Util::__('Max Execution Time') . ":</b> '{$test}' <br/>";
|
144 |
+
echo '<small>';
|
145 |
+
printf(DUP_Util::__('Issues might occur for larger packages when the [max_execution_time] value in the php.ini is too low. The minimum recommended timeout is "%1$s" seconds or higher. An attempt is made to override this value if the server allows it. A value of 0 (recommended) indicates that PHP has no time limits.'), DUPLICATOR_SCAN_TIMEOUT);
|
146 |
+
echo '<br/><br/>';
|
147 |
+
DUP_Util::_e('Note: Timeouts can also be set at the web server layer, so if the PHP max timeout passes and you still see a build interrupt messages, then your web server could be killing the process. If you are limited on processing time, consider using the database or file filters to shrink the size of your overall package. However use caution as excluding the wrong resources can cause your install to not work properly.');
|
148 |
+
echo " <i><a href='http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time' target='_blank'>[" .DUP_Util::__('details') . "]</a></i>";
|
149 |
+
echo '</small>';
|
150 |
+
|
151 |
+
//MYSQLI
|
152 |
+
echo '<hr size="1" /><span id="data-srv-php-mysqli"></span> <b>' . DUP_Util::__('MySQLi') . "</b> <br/>";
|
153 |
+
echo '<small>';
|
154 |
+
DUP_Util::_e('Creating the package does not require the mysqli module. However the installer.php file requires that the PHP module mysqli be installed on the server it is deployed on.');
|
155 |
+
echo " <i><a href='http://php.net/manual/en/mysqli.installation.php' target='_blank'>[" . DUP_Util::__('details') . "]</a></i>";
|
156 |
+
echo '</small>';
|
157 |
?>
|
158 |
</div>
|
159 |
</div>
|
160 |
+
<!-- ============
|
161 |
WORDPRESS SETTINGS -->
|
162 |
<div>
|
163 |
<div class='dup-scan-title'>
|
164 |
+
<a><?php DUP_Util::_e('WordPress');?></a> <div id="data-srv-wp-all"></div>
|
165 |
</div>
|
166 |
<div class='dup-scan-info dup-info-box'>
|
167 |
<?php
|
168 |
+
//VERSION CHECK
|
169 |
+
echo '<span id="data-srv-wp-version"></span> <b>' . DUP_Util::__('WordPress Version') . ":</b> '{$wp_version}' <br/>";
|
170 |
+
echo '<small>';
|
171 |
+
printf(DUP_Util::__('It is recommended to have a version of WordPress that is greater than %1$s'), DUPLICATOR_SCAN_MIN_WP);
|
172 |
+
echo '</small>';
|
173 |
+
|
174 |
+
//CORE FILES
|
175 |
+
echo '<hr size="1" /><span id="data-srv-wp-core"></span> <b>' . DUP_Util::__('Core Files') . "</b> <br/>";
|
176 |
+
echo '<small>';
|
177 |
+
DUP_Util::_e("If the scanner is unable to locate the wp-config.php file in the root directory, then you will need to manually copy it to its new location.");
|
178 |
+
echo '</small>';
|
179 |
+
|
180 |
+
//CACHE DIR
|
181 |
+
$cache_path = $cache_path = DUP_Util::SafePath(WP_CONTENT_DIR) . '/cache';
|
182 |
+
$cache_size = DUP_Util::ByteSize(DUP_Util::GetDirectorySize($cache_path));
|
183 |
+
echo '<hr size="1" /><span id="data-srv-wp-cache"></span> <b>' . DUP_Util::__('Cache Path') . ":</b> '{$cache_path}' ({$cache_size}) <br/>";
|
184 |
+
echo '<small>';
|
185 |
+
DUP_Util::_e("Cached data will lead to issues at install time and increases your archive size. It is recommended to empty your cache directory at build time. Use caution when removing data from the cache directory. If you have a cache plugin review the documentation for how to empty it; simply removing files might cause errors on your site. The cache size minimum threshold is currently set at ");
|
186 |
+
echo DUP_Util::ByteSize(DUPLICATOR_SCAN_CACHESIZE) . '.';
|
187 |
+
echo '</small>';
|
|
|
|
|
|
|
|
|
|
|
188 |
|
189 |
?>
|
190 |
</div>
|
192 |
</div><!-- end .dup-panel -->
|
193 |
</div><!-- end .dup-panel-panel -->
|
194 |
|
195 |
+
<h2 style="font-size:18px; font-weight:bold; margin:-15px 0 0 10px"><i class="fa fa-file-archive-o"></i> <?php DUP_Util::_e('Archive');?> </h2>
|
196 |
|
197 |
<!-- ================================================================
|
198 |
FILES
|
200 |
<div class="dup-panel">
|
201 |
<div class="dup-panel-title">
|
202 |
<i class="fa fa-files-o"></i>
|
203 |
+
<?php DUP_Util::_e("Files"); ?>
|
204 |
<div id="data-arc-size1"></div>
|
205 |
<div class="dup-scan-filter-status">
|
206 |
<?php
|
207 |
if ($Package->Archive->FilterOn) {
|
208 |
+
echo '<i class="fa fa-filter"></i> '; DUP_Util::_e('Enabled');
|
209 |
}
|
210 |
?>
|
211 |
</div>
|
212 |
</div>
|
213 |
<div class="dup-panel-panel">
|
214 |
|
215 |
+
<!-- ============
|
216 |
TOTAL SIZE -->
|
217 |
<div>
|
218 |
<div class='dup-scan-title'>
|
219 |
+
<a><?php DUP_Util::_e('Total Size');?></a> <div id="data-arc-status-size"></div>
|
220 |
</div>
|
221 |
<div class='dup-scan-info dup-info-box'>
|
222 |
+
<b><?php DUP_Util::_e('Size');?>:</b> <span id="data-arc-size2"></span> |
|
223 |
+
<b><?php DUP_Util::_e('File Count');?>:</b> <span id="data-arc-files"></span> |
|
224 |
+
<b><?php DUP_Util::_e('Directory Count');?>:</b> <span id="data-arc-dirs"></span>
|
225 |
+
<small>
|
226 |
<?php
|
227 |
+
printf(DUP_Util::__('Total size represents all files minus any filters that have been setup. The current thresholds that trigger warnings are %1$s for the entire site and %2$s for large files.'),
|
228 |
+
DUP_Util::ByteSize(DUPLICATOR_SCAN_SITE),
|
229 |
+
DUP_Util::ByteSize(DUPLICATOR_SCAN_WARNFILESIZE));
|
230 |
?>
|
231 |
+
</small>
|
232 |
</div>
|
233 |
</div>
|
234 |
|
235 |
+
<!-- ============
|
236 |
FILE NAME LENGTHS -->
|
237 |
<div>
|
238 |
<div class='dup-scan-title'>
|
239 |
+
<a><?php DUP_Util::_e('Invalid Names');?></a> <div id="data-arc-status-names"></div>
|
240 |
</div>
|
241 |
<div class='dup-scan-info dup-info-box'>
|
242 |
+
<small>
|
243 |
<?php
|
244 |
+
DUP_Util::_e('Invalid file or folder names can cause issues when extracting an archive across different environments. Invalid file names consist of lengths over 250 characters and illegal characters that may not work on all operating systems such as * ? > < : / \ | . It is recommended to remove or filter these files before building the archive or else you might have issues at install time.');
|
245 |
+
?>
|
246 |
+
</small><br/>
|
247 |
+
<a href="javascript:void(0)" onclick="jQuery('#data-arc-names-data').toggle()">[<?php DUP_Util::_e('Show Paths');?>]</a>
|
248 |
<div id="data-arc-names-data"></div>
|
249 |
</div>
|
250 |
</div>
|
251 |
|
252 |
+
<!-- ============
|
253 |
LARGE FILES -->
|
254 |
<div>
|
255 |
<div class='dup-scan-title'>
|
256 |
+
<a><?php DUP_Util::_e('Large Files');?></a> <div id="data-arc-status-big"></div>
|
257 |
</div>
|
258 |
<div class='dup-scan-info dup-info-box'>
|
259 |
+
<small>
|
260 |
<?php
|
261 |
+
printf(DUP_Util::__('Large files such as movies or other backuped data can cause issues with timeouts. The current check for large files is %1$s per file. If your having issues creating a package consider excluding these files with the files filter and manually moving them to your new location.'),
|
262 |
+
DUP_Util::ByteSize(DUPLICATOR_SCAN_WARNFILESIZE));
|
263 |
+
?>
|
264 |
+
</small><br/>
|
265 |
+
<a href="javascript:void(0)" onclick="jQuery('#data-arc-big-data').toggle()">[<?php DUP_Util::_e('Show Paths');?>]</a>
|
266 |
<div id="data-arc-big-data"></div>
|
267 |
</div>
|
268 |
</div>
|
269 |
|
270 |
+
<!-- ============
|
271 |
VIEW FILTERS -->
|
272 |
<?php if ($Package->Archive->FilterOn) : ?>
|
273 |
<div>
|
274 |
<div class='dup-scan-title'>
|
275 |
+
<a><?php DUP_Util::_e('View Filters');?></a>
|
276 |
</div>
|
277 |
+
<div class='dup-scan-info dup-info-box'>
|
278 |
+
<b>[<?php DUP_Util::_e('Directories');?>]</b><br/>
|
|
|
|
|
|
|
279 |
<?php
|
280 |
if (strlen( $Package->Archive->FilterDirs)) {
|
281 |
echo str_replace(";", "<br/>", $Package->Archive->FilterDirs);
|
282 |
} else {
|
283 |
+
DUP_Util::_e('No directory filters have been set.');
|
284 |
}
|
285 |
?>
|
286 |
<br/>
|
287 |
|
288 |
+
<b>[<?php DUP_Util::_e('File Extensions');?>]</b><br/>
|
289 |
<?php
|
290 |
if (strlen( $Package->Archive->FilterExts)) {
|
291 |
echo $Package->Archive->FilterExts;
|
292 |
} else {
|
293 |
+
DUP_Util::_e('No file extension filters have been set.');
|
294 |
}
|
295 |
+
?>
|
296 |
+
<small>
|
297 |
+
<?php DUP_Util::_e('The lists above are the directories and file extension that will be excluded from the archive.'); ?>
|
298 |
+
</small><br/>
|
299 |
</div>
|
300 |
+
|
301 |
</div>
|
302 |
<?php endif; ?>
|
303 |
|
309 |
================================================================ -->
|
310 |
<div class="dup-panel-title">
|
311 |
<i class="fa fa-table"></i>
|
312 |
+
<?php DUP_Util::_e("Database"); ?>
|
313 |
<div id="data-db-size1"></div>
|
314 |
<div class="dup-scan-filter-status">
|
315 |
<?php
|
316 |
if ($Package->Database->FilterOn) {
|
317 |
+
echo '<i class="fa fa-filter"></i> '; DUP_Util::_e('Enabled');
|
318 |
}
|
319 |
?>
|
320 |
</div>
|
321 |
</div>
|
322 |
<div class="dup-panel-panel" id="dup-scan-db">
|
323 |
|
324 |
+
<!-- ============
|
325 |
TOTAL SIZE -->
|
326 |
<div>
|
327 |
<div class='dup-scan-title'>
|
328 |
+
<a><?php DUP_Util::_e('Total Size');?></a>
|
329 |
<div id="data-db-status-size1"></div>
|
330 |
</div>
|
331 |
<div class='dup-scan-info dup-info-box'>
|
332 |
+
<b><?php DUP_Util::_e('Tables');?>:</b> <span id="data-db-tablecount"></span> |
|
333 |
+
<b><?php DUP_Util::_e('Records');?>:</b> <span id="data-db-rows"></span> |
|
334 |
+
<b><?php DUP_Util::_e('Size');?>:</b> <span id="data-db-size2"></span> <br/><br/>
|
335 |
<?php
|
336 |
+
$lnk = '<a href="maint/repair.php" target="_blank">' . DUP_Util::__('repair and optimization') . '</a>';
|
337 |
+
printf(DUP_Util::__('Total size and row count for all database tables are approximate values. The thresholds that trigger warnings are %1$s and %2$s records. Large databases take time to process and can cause issues with server timeout and memory settings. Running a %3$s on your database can also help improve the overall size and performance. If your server supports shell_exec and mysqldump you can try to enable this option from the settings menu.'),
|
338 |
DUP_Util::ByteSize(DUPLICATOR_SCAN_DBSIZE),
|
339 |
number_format(DUPLICATOR_SCAN_DBROWS),
|
340 |
$lnk);
|
342 |
</div>
|
343 |
</div>
|
344 |
|
345 |
+
<!-- ============
|
346 |
TABLE DETAILS -->
|
347 |
<div>
|
348 |
<div class='dup-scan-title'>
|
349 |
+
<a><?php DUP_Util::_e('Table Details');?></a>
|
350 |
<div id="data-db-status-size2"></div>
|
351 |
</div>
|
352 |
<div class='dup-scan-info dup-info-box'>
|
357 |
</div>
|
358 |
|
359 |
<table id="dup-scan-db-details">
|
360 |
+
<tr><td><b><?php DUP_Util::_e('Name:');?></b></td><td><?php echo DB_NAME ;?> </td></tr>
|
361 |
+
<tr><td><b><?php DUP_Util::_e('Host:');?></b></td><td><?php echo DB_HOST ;?> </td></tr>
|
362 |
+
<tr><td><b><?php DUP_Util::_e('Build Mode:');?></b></td><td><a href="?page=duplicator-settings" target="_blank"><?php echo $build_mode ;?></a> </td></tr>
|
363 |
</table>
|
364 |
|
365 |
</div><!-- end .dup-panel -->
|
370 |
|
371 |
<!-- ERROR MESSAGE -->
|
372 |
<div id="dup-msg-error" style="display:none">
|
373 |
+
<div class="dup-hdr-error"><i class="fa fa-exclamation-circle"></i> <?php DUP_Util::_e('Scan Error'); ?></div>
|
374 |
+
<i><?php DUP_Util::_e('Please try again!'); ?></i><br/>
|
375 |
<div style="text-align:left">
|
376 |
+
<b><?php DUP_Util::_e("Server Status:"); ?></b>
|
377 |
<div id="dup-msg-error-response-status" style="display:inline-block"></div><br/>
|
378 |
|
379 |
+
<b><?php DUP_Util::_e("Error Message:"); ?></b>
|
380 |
<div id="dup-msg-error-response-text"></div>
|
381 |
</div>
|
382 |
</div>
|
383 |
</div> <!-- end #dup-progress-area -->
|
384 |
|
385 |
<div class="dup-button-footer" style="display:none">
|
386 |
+
<input type="button" value="◄ <?php DUP_Util::_e("Back") ?>" onclick="window.location.assign('?page=duplicator&tab=new1')" class="button button-large" />
|
387 |
+
<input type="button" value="<?php DUP_Util::_e("Rescan") ?>" onclick="Duplicator.Pack.Rescan()" class="button button-large" />
|
388 |
+
<input type="submit" value="<?php DUP_Util::_e("Build") ?> ►" class="button button-primary button-large" id="dup-build-button" />
|
389 |
<!-- Used for iMacros testing do not remove -->
|
390 |
<div id="dup-automation-imacros"></div>
|
391 |
</div>
|
394 |
<script type="text/javascript">
|
395 |
jQuery(document).ready(function($) {
|
396 |
|
397 |
+
/* ========================--
|
398 |
* METHOD: Performs Ajax post to create check system */
|
399 |
Duplicator.Pack.Scan = function() {
|
400 |
var data = {action : 'duplicator_package_scan'}
|
431 |
Duplicator.Pack.LoadScanStatus = function(status) {
|
432 |
var result;
|
433 |
switch (status) {
|
434 |
+
case false : result = '<div class="dup-scan-warn"><i class="fa fa-exclamation-triangle"></i></div>'; break;
|
435 |
+
case 'Warn' : result = '<div class="dup-scan-warn"><i class="fa fa-exclamation-triangle"></i> Warn</div>'; break;
|
436 |
+
case true : result = '<div class="dup-scan-good"><i class="fa fa-check"></i></div>'; break;
|
437 |
+
case 'Good' : result = '<div class="dup-scan-good"><i class="fa fa-check"></i> Good</div>'; break;
|
438 |
default :
|
439 |
result = 'unable to read';
|
440 |
}
|
441 |
return result;
|
442 |
}
|
443 |
|
444 |
+
/* ========================--
|
445 |
* METHOD: */
|
446 |
Duplicator.Pack.LoadScanData = function(data) {
|
447 |
|
455 |
$('#data-rpt-scanfile').attr('href', base + '&scanfile=' + data.RPT.ScanFile);
|
456 |
$('#data-rpt-scantime').text(data.RPT.ScanTime || 0);
|
457 |
|
458 |
+
|
459 |
//****************
|
460 |
//SERVER
|
461 |
+
$('#data-srv-web-model').html(Duplicator.Pack.LoadScanStatus(data.SRV.WEB.model));
|
462 |
+
$('#data-srv-web-all').html(Duplicator.Pack.LoadScanStatus(data.SRV.WEB.ALL));
|
463 |
+
|
464 |
+
$('#data-srv-php-openbase').html(Duplicator.Pack.LoadScanStatus(data.SRV.PHP.openbase));
|
465 |
+
$('#data-srv-php-maxtime').html(Duplicator.Pack.LoadScanStatus(data.SRV.PHP.maxtime));
|
466 |
+
$('#data-srv-php-mysqli').html(Duplicator.Pack.LoadScanStatus(data.SRV.PHP.mysqli));
|
467 |
+
$('#data-srv-php-openssl').html(Duplicator.Pack.LoadScanStatus(data.SRV.PHP.openssl));
|
468 |
+
$('#data-srv-php-all').html(Duplicator.Pack.LoadScanStatus(data.SRV.PHP.ALL));
|
469 |
+
|
470 |
+
$('#data-srv-wp-version').html(Duplicator.Pack.LoadScanStatus(data.SRV.WP.version));
|
471 |
+
$('#data-srv-wp-core').html(Duplicator.Pack.LoadScanStatus(data.SRV.WP.core));
|
472 |
+
$('#data-srv-wp-cache').html(Duplicator.Pack.LoadScanStatus(data.SRV.WP.cache));
|
473 |
+
$('#data-srv-wp-all').html(Duplicator.Pack.LoadScanStatus(data.SRV.WP.ALL));
|
474 |
|
475 |
//****************
|
476 |
//DATABASE
|
484 |
$('#data-db-tablecount').text(data.DB.TableCount || errMsg);
|
485 |
//Table Details
|
486 |
if (data.DB.TableList == undefined || data.DB.TableList.length == 0) {
|
487 |
+
html = '<?php DUP_Util::_e("Unable to report on any tables") ?>';
|
488 |
} else {
|
489 |
$.each(data.DB.TableList, function(i) {
|
490 |
html += '<b>' + i + '</b><br/>';
|
493 |
}
|
494 |
$('#data-db-tablelist').append(html);
|
495 |
} else {
|
496 |
+
html = '<?php DUP_Util::_e("Unable to report on database stats") ?>';
|
497 |
$('#dup-scan-db').html(html);
|
498 |
}
|
499 |
|
508 |
$('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
|
509 |
|
510 |
//Invalid Names
|
511 |
+
html = '<?php DUP_Util::_e("No name length issues.") ?>';
|
512 |
if (data.ARC.WarnFileName != undefined && data.ARC.WarnFileName.length > 0) {
|
513 |
html = '';
|
514 |
+
$.each(data.ARC.WarnFileName, function(key, val) {html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>[' + val + ']<br/>';});
|
515 |
}
|
516 |
$('#data-arc-names-data').html(html);
|
517 |
|
518 |
//Large Files
|
519 |
+
html = '<?php DUP_Util::_e("No large files found.") ?>';
|
520 |
if (data.ARC.WarnFileSize != undefined && data.ARC.WarnFileSize.length > 0) {
|
521 |
html = '';
|
522 |
+
$.each(data.ARC.WarnFileSize, function(key, val) {html += '<?php DUP_Util::_e("FILE") ?> ' + key + ':<br/>' + val + '<br/>' ;});
|
523 |
}
|
524 |
$('#data-arc-big-data').html(html);
|
525 |
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
}
|
527 |
|
528 |
//Page Init:
|