UpdraftPlus WordPress Backup Plugin - Version 1.7.34

Version Description

  • 2013/10/21 =

  • FEATURE: Options in the "Backup Now" dialog to exclude files or database from the backup (http://updraftplus.com/more-flexibility-in-backup-now/)

  • FEATURE: Use binary mysqldump, if available, for much faster dumps of large tables

  • FEATURE: New / Greek translation (el): (Kostas Thermoyiannis) - http://tovivlio.net

  • FIX: Fix a JavaScript error in Internet Explorer 8

  • FIX: Under very unusual circumstances, it was still possible for multiple backup jobs to occur

  • FIX: For non-English installs, the email indicating backup success sometimes failed to send

  • FIX: Fix obscure table name error if WP was using bespoke database setup without delete access

  • FIX: On multi-site installs, settings changes could be lost if they were made during an ongoing backup

  • TWEAK: Now marked as WordPress 3.7 compatible

  • TWEAK: Raw files list in expert section now makes log files directly downloadable

  • TWEAK: Detect available disk quota in CPanel account (if relevant), log, and warn if low

  • TWEAK: Amazon S3 backend now can use WP proxy settings (if any)

  • TWEAK: All multisite settings pages have now been moved to the network admin section

  • TWEAK: Restorer now handles hand-moved non-default WP site directories (where they differ from the website base directory)

  • TWEAK: Migrator can now migrate sub-domain-based WPMU installs with no manual steps required

  • TWEAK: Internationalised the add-ons management page (Premium)

  • TWEAK: Switch zip engines from ZipArchive earlier if it appears to be broken

  • TWEAK: Now cleans up some previously un-caught temporary files if the backup aborted unexpectedly

  • TWEAK: Remove bogus warning about W3TC object cache

  • TWEAK: Backup log file now includes SHA1 checksums

  • TWEAK: Add warning for user if their max_execution_time is very low

  • TWEAK: Make fewer HTTP requests when tracking download status

  • TWEAK: Under certain conditions, the report email could wrongly state that files were included in a db-only backup

  • TWEAK: Improve detection of recent activity on resumptions when zips split

  • TWEAK: Prevent some warning messages from being shown twice

  • TWEAK: Remove the "that's a lot of rows" warning once the table successfully finishes being dumped

  • TWEAK: Cache the results of looking for a zip executable for the duration of the job

  • TWEAK: Some badly-written plugins place their own code on UD's settings page, and break the layout; overcome this

  • TWEAK: Add a warning for people using encryption without mcrypt installed (slow)

  • TWEAK: Suppress useless warning when using BinZip and only empty directories exist in 'others' backup

Download this release

Release Info

Developer DavidAnderson
Plugin Icon 128x128 UpdraftPlus WordPress Backup Plugin
Version 1.7.34
Comparing to
See all releases

Code changes from version 1.7.20 to 1.7.34

admin.php CHANGED
@@ -4,7 +4,7 @@ if (!defined ('ABSPATH')) die('No direct access allowed');
4
 
5
  // For the purposes of improving site performance (don't load in 10s of Kilobytes of un-needed code on every page load), admin-area code is being progressively moved here.
6
 
7
- // This gets called in admin_init, earlier than default (so our object can get used by those hooking admin_init). Or possibly in admin_menu.
8
 
9
  global $updraftplus_admin;
10
  if (!is_a($updraftplus_admin, 'UpdraftPlus_Admin')) $updraftplus_admin = new UpdraftPlus_Admin();
@@ -22,7 +22,7 @@ class UpdraftPlus_Admin {
22
  add_action('admin_action_upgrade-theme', array($this, 'admin_action_upgrade_pluginortheme'));
23
 
24
  add_action('admin_head', array($this,'admin_head'));
25
- add_filter('plugin_action_links', array($this, 'plugin_action_links'), 10, 2);
26
  add_action('wp_ajax_updraft_download_backup', array($this, 'updraft_download_backup'));
27
  add_action('wp_ajax_updraft_ajax', array($this, 'updraft_ajax_handler'));
28
  add_action('wp_ajax_plupload_action', array($this,'plupload_action'));
@@ -36,55 +36,49 @@ class UpdraftPlus_Admin {
36
  $service = UpdraftPlus_Options::get_updraft_option('updraft_service');
37
 
38
  if (UpdraftPlus_Options::user_can_manage() && ('googledrive' === $service || is_array($service) && in_array('googledrive', $service)) && UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid','') != '' && UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token','') == '') {
39
- add_action('admin_notices', array($this,'show_admin_warning_googledrive') );
40
  }
41
 
42
  if (UpdraftPlus_Options::user_can_manage() && ('dropbox' === $service || is_array($service) && in_array('dropbox', $service)) && UpdraftPlus_Options::get_updraft_option('updraft_dropboxtk_request_token','') == '') {
43
- add_action('admin_notices', array($this,'show_admin_warning_dropbox') );
44
  }
45
 
46
- if (UpdraftPlus_Options::user_can_manage() && $this->disk_space_check(1024*1024*35) === false) add_action('admin_notices', array($this, 'show_admin_warning_diskspace'));
47
-
48
- // Next, the actions that only come on settings pages
49
- // if ($pagenow != 'options-general.php') return;
50
 
51
  // Next, the actions that only come on the UpdraftPlus page
52
- if ($pagenow != 'options-general.php' || !isset($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
53
 
54
  if (UpdraftPlus_Options::user_can_manage() && defined('DISABLE_WP_CRON') && DISABLE_WP_CRON == true) {
55
- add_action('admin_notices', array($this, 'show_admin_warning_disabledcron'));
56
  }
57
 
58
  if(UpdraftPlus_Options::get_updraft_option('updraft_debug_mode')) {
59
  @ini_set('display_errors',1);
60
  @error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
61
- add_action('admin_notices', array($this, 'show_admin_debug_warning'));
62
  }
63
 
64
- // W3 Total Cache's object cache eats transients during cron jobs. Reported to them many times by multiple people.
65
- // TODO: Remove: we no longer deploy transients
66
- // if (defined('W3TC') && W3TC == true) {
67
- // if (function_exists('w3_instance')) {
68
- // $modules = w3_instance('W3_ModuleStatus');
69
- // if ($modules->is_enabled('objectcache')) {
70
- // add_action('admin_notices', array($this, 'show_admin_warning_w3_total_cache'));
71
- // }
72
- // }
73
- // }
74
 
75
  // LiteSpeed has a generic problem with terminating cron jobs
76
  if (isset($_SERVER['SERVER_SOFTWARE']) && strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false) {
77
  if (!is_file(ABSPATH.'.htaccess') || !preg_match('/noabort/i', file_get_contents(ABSPATH.'.htaccess'))) {
78
- add_action('admin_notices', array($this, 'show_admin_warning_litespeed'));
79
  }
80
  }
81
 
82
- if (version_compare($wp_version, '3.2', '<')) add_action('admin_notices', array($this, 'show_admin_warning_wordpressversion'));
83
 
84
- wp_enqueue_script('updraftplus-admin-ui', UPDRAFTPLUS_URL.'/includes/updraft-admin-ui.js', array('jquery', 'jquery-ui-dialog', 'plupload-all'));
85
 
86
  wp_localize_script( 'updraftplus-admin-ui', 'updraftlion', array(
87
  'rescanning' => __('Rescanning (looking for backups that you have uploaded manually into the internal backup store)...','updraftplus'),
 
88
  'restoreproceeding' => __('The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished.', 'updraftplus'),
89
  'unexpectedresponse' => __('Unexpected response:','updraftplus'),
90
  'servererrorcode' => __('The web server returned an error code (try again, or check your web server logs)', 'updraftplus'),
@@ -151,7 +145,7 @@ class UpdraftPlus_Admin {
151
  function admin_head() {
152
 
153
  global $pagenow;
154
- if ($pagenow != 'options-general.php' || !isset($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
155
 
156
  $chunk_size = min(wp_max_upload_size()-1024, 1024*1024*2);
157
 
@@ -252,7 +246,7 @@ class UpdraftPlus_Admin {
252
  # Adds the settings link under the plugin on the plugin screen.
253
  function plugin_action_links($links, $file) {
254
  if ($file == 'updraftplus/updraftplus.php'){
255
- $settings_link = '<a href="'.site_url().'/wp-admin/options-general.php?page=updraftplus">'.__("Settings", "updraftplus").'</a>';
256
  array_unshift($links, $settings_link);
257
  // $settings_link = '<a href="http://david.dw-perspective.org.uk/donate">'.__("Donate","UpdraftPlus").'</a>';
258
  // array_unshift($links, $settings_link);
@@ -298,6 +292,10 @@ class UpdraftPlus_Admin {
298
  echo '<div class="updraftmessage '.$class.' fade">'."<p>$message</p></div>";
299
  }
300
 
 
 
 
 
301
  function show_admin_warning_disabledcron() {
302
  $this->show_admin_warning('<strong>'.__('Warning','updraftplus').':</strong> '.__('The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled.','updraftplus').' <a href="http://updraftplus.com/faqs/my-scheduled-backups-and-pressing-backup-now-does-nothing-however-pressing-debug-backup-does-produce-a-backup/#disablewpcron">'.__('Go here for more information.','updraftplus').'</a>');
303
  }
@@ -324,11 +322,11 @@ class UpdraftPlus_Admin {
324
  }
325
 
326
  function show_admin_warning_dropbox() {
327
- $this->show_admin_warning('<strong>'.__('UpdraftPlus notice:','updraftplus').'</strong> <a href="options-general.php?page=updraftplus&action=updraftmethod-dropbox-auth&updraftplus_dropboxauth=doit">'.sprintf(__('Click here to authenticate your %s account (you will not be able to back up to %s without it).','updraftplus'),'Dropbox','Dropbox').'</a>');
328
  }
329
 
330
  function show_admin_warning_googledrive() {
331
- $this->show_admin_warning('<strong>'.__('UpdraftPlus notice:','updraftplus').'</strong> <a href="options-general.php?page=updraftplus&action=updraftmethod-googledrive-auth&updraftplus_googleauth=doit">'.sprintf(__('Click here to authenticate your %s account (you will not be able to back up to %s without it).','updraftplus'),'Google Drive','Google Drive').'</a>');
332
  }
333
 
334
  // This options filter removes ABSPATH off the front of updraft_dir, if it is given absolutely and contained within it
@@ -371,12 +369,13 @@ class UpdraftPlus_Admin {
371
  $timestamp = $_REQUEST['timestamp'];
372
 
373
  // You need a nonce before you can set job data. And we certainly don't yet have one.
374
- $updraftplus->backup_time_nonce();
375
 
376
  $debug_mode = UpdraftPlus_Options::get_updraft_option('updraft_debug_mode');
377
 
378
  // Set the job type before logging, as there can be different logging destinations
379
  $updraftplus->jobdata_set('job_type', 'download');
 
380
 
381
  // Retrieve the information from our backup history
382
  $backup_history = $updraftplus->get_backup_history();
@@ -434,7 +433,7 @@ class UpdraftPlus_Admin {
434
  }
435
 
436
  // The AJAX responder that updates on progress wants to see this
437
- set_transient('ud_dlfile_'.$timestamp.'_'.$type.'_'.$findex, "downloading:$known_size:$fullpath", 3600);
438
 
439
  if ($needs_downloading) {
440
  // Close browser connection so that it can resume AJAX polling
@@ -461,14 +460,12 @@ class UpdraftPlus_Admin {
461
  if(is_file($fullpath) && is_readable($fullpath)) {
462
 
463
  // That message is then picked up by the AJAX listener
464
- set_transient('ud_dlfile_'.$timestamp.'_'.$type.'_'.$findex, 'downloaded:'.filesize($fullpath).":$fullpath", 3600);
465
 
466
  } else {
467
- set_transient('ud_dlfile_'.$timestamp.'_'.$type.'_'.$findex, 'failed', 3600);
468
- set_transient('ud_dlerrors_'.$timestamp.'_'.$type.'_'.$findex, $updraftplus->errors, 3600);
469
-
470
  $updraftplus->log('Remote fetch failed. File '.$fullpath.' did not exist or was unreadable. If you delete local backups then remote retrieval may have failed.');
471
-
472
  }
473
 
474
  @fclose($updraftplus->logfile_handle);
@@ -512,6 +509,23 @@ class UpdraftPlus_Admin {
512
  if (isset($_REQUEST['subaction']) && 'lastlog' == $_REQUEST['subaction']) {
513
  echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_lastmessage', '('.__('Nothing yet logged', 'updraftplus').')'));
514
  } elseif (isset($_GET['subaction']) && 'activejobs_list' == $_GET['subaction']) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  if (!empty($_GET['oneshot'])) {
516
  $job_id = get_site_option('updraft_oneshotnonce', false);
517
  $active_jobs = (false === $job_id) ? '' : $this->print_active_job($job_id, true);
@@ -520,7 +534,8 @@ class UpdraftPlus_Admin {
520
  }
521
  echo json_encode(array(
522
  'l' => htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_lastmessage', '('.__('Nothing yet logged', 'updraftplus').')')),
523
- 'j' => $active_jobs
 
524
  ));
525
  } elseif (isset($_REQUEST['subaction']) && 'dismissautobackup' == $_REQUEST['subaction']) {
526
  UpdraftPlus_Options::update_updraft_option('updraftplus_dismissedautobackup', time() + 84*86400);
@@ -616,6 +631,7 @@ class UpdraftPlus_Admin {
616
  $updraftplus->backup_time_nonce();
617
  // Set the job type before logging, as there can be different logging destinations
618
  $updraftplus->jobdata_set('job_type', 'delete');
 
619
 
620
  if (UpdraftPlus_Options::get_updraft_option('updraft_debug_mode')) $updraftplus->logfile_open($updraftplus->nonce);
621
 
@@ -703,20 +719,25 @@ class UpdraftPlus_Admin {
703
  echo '</pre>';
704
  echo '<h3>Files</h3><pre>';
705
  $updraft_dir = $updraftplus->backups_dir_location();
 
706
  $d = dir($updraft_dir);
707
  while (false !== ($entry = $d->read())) {
708
  $fp = $updraft_dir.'/'.$entry;
 
709
  if (is_dir($fp)) {
710
  $size = ' d';
711
  } elseif (is_link($fp)) {
712
  $size = ' l';
713
  } elseif (is_file($fp)) {
714
- $size = sprintf("%8.1f", round(filesize($fp)/1024, 1));
715
  } else {
716
  $size = ' ?';
717
  }
718
- printf("%s %s \n", $size, $entry);
 
719
  }
 
 
720
  echo '</pre>';
721
  @$d->close();
722
  } elseif ('countbackups' == $_REQUEST['subaction']) {
@@ -730,11 +751,12 @@ class UpdraftPlus_Admin {
730
  phpinfo(INFO_ALL ^ (INFO_CREDITS | INFO_LICENSE));
731
  } elseif ('backupnow' == $_REQUEST['subaction']) {
732
  echo '<strong>',__('Schedule backup','updraftplus').':</strong> ';
733
- if (wp_schedule_single_event(time()+5, 'updraft_backup_all') === false) {
 
734
  $updraftplus->log("A backup run failed to schedule");
735
  echo __("Failed.",'updraftplus')."</div>";
736
  } else {
737
- echo htmlspecialchars(__('OK. You should soon see activity in the "Last log message" field below.','updraftplus'))." <a href=\"http://updraftplus.com/faqs/my-scheduled-backups-and-pressing-backup-now-does-nothing-however-pressing-debug-backup-does-produce-a-backup/\">".__('Nothing happening? Follow this link for help.','updraftplus')."</a></div>";
738
  $updraftplus->log("A backup run has been scheduled");
739
  }
740
 
@@ -779,51 +801,11 @@ class UpdraftPlus_Admin {
779
  echo json_encode(array('n' => sprintf(__('%d set(s) available', 'updraftplus'), count($backup_history)), 't' => $this->existing_backup_table($backup_history)));
780
  } elseif (isset($_GET['subaction']) && 'downloadstatus' == $_GET['subaction'] && isset($_GET['timestamp']) && isset($_GET['type'])) {
781
 
782
- $response = array();
783
  $findex = (isset($_GET['findex'])) ? $_GET['findex'] : '0';
784
  if (empty($findex)) $findex = '0';
 
785
 
786
- $response['m'] = get_transient('ud_dlmess_'.$_GET['timestamp'].'_'.$_GET['type'].'_'.$findex).'<br>';
787
-
788
- if ($file = get_transient('ud_dlfile_'.$_GET['timestamp'].'_'.$_GET['type'].'_'.$findex)) {
789
- if ('failed' == $file) {
790
- $response['e'] = __('Download failed','updraftplus').'<br>';
791
- $errs = get_transient('ud_dlerrors_'.$_GET['timestamp'].'_'.$_GET['type'].'_'.$findex);
792
- if (is_array($errs) && !empty($errs)) {
793
- $response['e'] .= '<ul style="list-style: disc inside;">';
794
- foreach ($errs as $err) {
795
- if (is_array($err)) {
796
- $response['e'] .= '<li>'.htmlspecialchars($err['message']).'</li>';
797
- } else {
798
- $response['e'] .= '<li>'.htmlspecialchars($err).'</li>';
799
- }
800
- }
801
- $response['e'] .= '</ul>';
802
- }
803
- } elseif (preg_match('/^downloaded:(\d+):(.*)$/', $file, $matches) && file_exists($matches[2])) {
804
- $response['p'] = 100;
805
- $response['f'] = $matches[2];
806
- $response['s'] = (int)$matches[1];
807
- $response['t'] = (int)$matches[1];
808
- $response['m'] = __('File ready.', 'updraftplus');
809
- } elseif (preg_match('/^downloading:(\d+):(.*)$/', $file, $matches) && file_exists($matches[2])) {
810
- // Convert to bytes
811
- $response['f'] = $matches[2];
812
- $total_size = (int)max($matches[1], 1);
813
- $cur_size = filesize($matches[2]);
814
- $response['s'] = $cur_size;
815
- $response['t'] = $total_size;
816
- $response['m'] .= __("Download in progress", 'updraftplus').' ('.round($cur_size/1024).' / '.round(($total_size/1024)).' Kb)';
817
- $response['p'] = round(100*$cur_size/$total_size);
818
- } else {
819
- $response['m'] .= __('No local copy present.', 'updraftplus');
820
- $response['p'] = 0;
821
- $response['s'] = 0;
822
- $response['t'] = 1;
823
- }
824
- }
825
-
826
- echo json_encode($response);
827
 
828
  } elseif (isset($_POST['subaction']) && $_POST['subaction'] == 'credentials_test') {
829
  $method = (preg_match("/^[a-z0-9]+$/", $_POST['method'])) ? $_POST['method'] : "";
@@ -839,6 +821,52 @@ class UpdraftPlus_Admin {
839
 
840
  }
841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
842
  function analyse_db_file($timestamp, $res) {
843
 
844
  $mess = array(); $warn = array(); $err = array();
@@ -865,12 +893,8 @@ class UpdraftPlus_Admin {
865
  return array($mess, $warn, $err);
866
  }
867
 
868
- $updraftplus->ensure_phpseclib('Crypt_Rijndael', 'Crypt/Rijndael');
869
- $rijndael = new Crypt_Rijndael();
870
 
871
- // Get decryption key
872
- $rijndael->setKey($encryption);
873
- $ciphertext = $rijndael->decrypt(file_get_contents($db_file));
874
  if ($ciphertext) {
875
  $new_db_file = $updraft_dir.'/'.basename($db_file, '.crypt');
876
  if (!file_put_contents($new_db_file, $ciphertext)) {
@@ -900,6 +924,7 @@ class UpdraftPlus_Admin {
900
 
901
  $line = 0;
902
  $old_siteurl = '';
 
903
  $old_table_prefix = '';
904
  $old_siteinfo = array();
905
  $gathering_siteinfo = true;
@@ -911,6 +936,8 @@ class UpdraftPlus_Admin {
911
 
912
  $wanted_tables = array('terms', 'term_taxonomy', 'term_relationships', 'commentmeta', 'comments', 'links', 'options', 'postmeta', 'posts', 'users', 'usermeta');
913
 
 
 
914
  while (!gzeof($dbhandle) && ($line<100 || count($wanted_tables)>0)) {
915
  $line++;
916
  // Up to 1Mb
@@ -922,10 +949,19 @@ class UpdraftPlus_Admin {
922
  $old_siteurl = $matches[1];
923
  $mess[] = __('Backup of:', 'updraftplus').' '.htmlspecialchars($old_siteurl);
924
  // Check for should-be migration
925
- if ($old_siteurl != site_url()) {
 
926
  $powarn = apply_filters('updraftplus_dbscan_urlchange', sprintf(__('Warning: %s', 'updraftplus'), '<a href="http://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>'), $old_siteurl, $res);
927
  if (!empty($powarn)) $warn[] = $powarn;
928
  }
 
 
 
 
 
 
 
 
929
  } elseif ('' == $old_wp_version && preg_match('/^\# WordPress Version: ([0-9]+(\.[0-9]+)+)/', $buffer, $matches)) {
930
  $old_wp_version = $matches[1];
931
  if (version_compare($old_wp_version, $wp_version, '>')) {
@@ -1215,19 +1251,17 @@ CREATE TABLE $wpdb->signups (
1215
  // If we restored the database, then that will have out-of-date information which may confuse the user - so automatically re-scan for them.
1216
  $this->rebuild_backup_history();
1217
  echo '<p><strong>'.__('Restore successful!','updraftplus').'</strong></p>';
1218
- echo '<b>'.__('Actions','updraftplus').':</b> <a href="options-general.php?page=updraftplus&updraft_restore_success=true">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1219
  return;
1220
  } elseif (is_wp_error($backup_success)) {
1221
  echo '<p>Restore failed...</p>';
1222
  $updraftplus->list_errors();
1223
- echo '<b>Actions:</b> <a href="options-general.php?page=updraftplus">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1224
  return;
1225
  } elseif (false === $backup_success) {
1226
  # This means, "not yet - but stay on the page because we may be able to do it later, e.g. if the user types in the requested information"
1227
  return;
1228
  }
1229
- //uncomment the below once i figure out how i want the flow of a restoration to work.
1230
- //echo '<b>'__('Actions','updraftplus').':</b> <a href="options-general.php?page=updraftplus">Return to UpdraftPlus Configuration</a>';
1231
  }
1232
  $deleted_old_dirs = false;
1233
  if(isset($_REQUEST['action']) && $_REQUEST['action'] == 'updraft_delete_old_dirs') {
@@ -1243,7 +1277,7 @@ CREATE TABLE $wpdb->signups (
1243
  } else {
1244
  echo '<p>',__('Old directory removal failed for some reason. You may want to do this manually.','updraftplus').'</p><br/>';
1245
  }
1246
- echo '<b>'.__('Actions','updraftplus').':</b> <a href="options-general.php?page=updraftplus">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1247
  return;
1248
  }
1249
 
@@ -1262,10 +1296,10 @@ CREATE TABLE $wpdb->signups (
1262
  } elseif ($created !== false) {
1263
  echo '<p>'.__('Backup directory successfully created.','updraftplus').'</p><br/>';
1264
  }
1265
- echo '<b>'.__('Actions','updraftplus').':</b> <a href="options-general.php?page=updraftplus">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1266
  return;
1267
  }
1268
-
1269
  echo '<div id="updraft_backup_started" class="updated fade" style="display:none; max-width: 800px; font-size:140%; line-height: 140%; padding:14px; clear:left;"></div>';
1270
 
1271
  // updraft_file_ids is not deleted
@@ -1301,7 +1335,7 @@ CREATE TABLE $wpdb->signups (
1301
 
1302
  <?php
1303
  if(isset($_GET['updraft_restore_success'])) {
1304
- echo "<div class=\"updated fade\" style=\"padding:8px;\"><strong>".__('Your backup has been restored.','updraftplus').'</strong> '.__('Your old (themes, uploads, plugins, whatever) directories have been retained with "-old" appended to their name. Remove them when you are satisfied that the backup worked properly.')."</div>";
1305
  }
1306
 
1307
  $ws_advert = $updraftplus->wordshell_random_advert(1);
@@ -1331,7 +1365,8 @@ CREATE TABLE $wpdb->signups (
1331
  ?>
1332
 
1333
  <h2 style="clear:left;"><?php _e('Existing Schedule And Backups','updraftplus');?></h2>
1334
- <table class="form-table" style="float:left; clear: both; width:545px;">
 
1335
  <noscript>
1336
  <tr>
1337
  <th><?php _e('JavaScript warning','updraftplus');?>:</th>
@@ -1372,16 +1407,19 @@ CREATE TABLE $wpdb->signups (
1372
 
1373
  ?>
1374
 
1375
- <script>
1376
- var lastbackup_laststatus = '<?php echo esc_js($last_backup_html);?>';
1377
- </script>
1378
 
1379
  <tr>
1380
  <th><span title="<?php _e('All the times shown in this section are using WordPress\'s configured time zone, which you can set in Settings -> General', 'updraftplus'); ?>"><?php _e('Next scheduled backups','updraftplus');?>:</span></th>
1381
  <td>
1382
- <div style="width: 76px; float:left;"><?php _e('Files','updraftplus'); ?>:</div><div style="color:blue; float:left;"><?php echo $next_scheduled_backup?></div>
1383
- <div style="width: 76px; clear: left; float:left;"><?php _e('Database','updraftplus');?>: </div><div style="color:blue; float:left;"><?php echo $next_scheduled_backup_database?></div>
1384
- <div style="width: 76px; clear: left; float:left;"><?php _e('Time now','updraftplus');?>: </div><div style="color:blue; float:left;"><?php echo $current_time?></div>
 
 
 
 
 
1385
  </td>
1386
  </tr>
1387
  <tr>
@@ -1389,24 +1427,31 @@ CREATE TABLE $wpdb->signups (
1389
  <td id="updraft_last_backup"><?php echo $last_backup_html ?></td>
1390
  </tr>
1391
  </table>
 
1392
  <div style="float:left; width:200px; margin-top: <?php echo (class_exists('UpdraftPlus_Addons_Migrator')) ? "20" : "0" ?>px;">
1393
  <div style="margin-bottom: 10px;">
1394
- <button type="button" <?php echo $backup_disabled ?> class="button-primary" style="padding-top:2px;padding-bottom:2px;font-size:22px !important; min-height: 32px; min-width: 170px;" onclick="jQuery('#updraft-backupnow-modal').dialog('open');"><?php _e('Backup Now','updraftplus');?></button>
1395
  </div>
1396
  <div style="margin-bottom: 10px;">
1397
  <?php
1398
  $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
1399
  $backup_history = (is_array($backup_history))?$backup_history:array();
1400
  ?>
1401
- <input type="button" class="button-primary" value="<?php _e('Restore','updraftplus');?>" style="padding-top:2px;padding-bottom:2px;font-size:22px !important; min-height: 32px; min-width: 170px;" onclick="jQuery('.download-backups').slideDown(); updraft_historytimertoggle(1); jQuery('html,body').animate({scrollTop: jQuery('#updraft_lastlogcontainer').offset().top},'slow');">
1402
  </div>
1403
  <div>
1404
- <button type="button" class="button-primary" style="padding-top:2px;padding-bottom:2px;font-size:22px !important; min-height: 32px; min-width: 170px;" onclick="jQuery('#updraft-migrate-modal').dialog('open');"><?php _e('Clone/Migrate','updraftplus');?></button>
1405
  </div>
1406
  </div>
 
1407
  <br style="clear:both" />
1408
  <table class="form-table">
1409
 
 
 
 
 
 
1410
 
1411
  <tr id="updraft_lastlogmessagerow">
1412
  <th><?php _e('Last log message','updraftplus');?>:</th>
@@ -1416,12 +1461,6 @@ CREATE TABLE $wpdb->signups (
1416
  </td>
1417
  </tr>
1418
 
1419
- <?php $active_jobs = $this->print_active_jobs();?>
1420
- <tr id="updraft_activejobsrow" style="<?php if (!$active_jobs) echo 'display:none;'; ?>">
1421
- <th><?php _e('Backups in progress:', 'updraftplus');?></th>
1422
- <td id="updraft_activejobs"><?php echo $active_jobs;?></td>
1423
- </tr>
1424
-
1425
  <tr>
1426
  <th><?php echo htmlspecialchars(__('Backups, logs & restoring','updraftplus')); ?>:</th>
1427
  <td><a id="updraft_showbackups" href="#" title="<?php _e('Press to see available backups','updraftplus');?>" onclick="jQuery('.download-backups').fadeToggle(); updraft_historytimertoggle(0);"><?php echo sprintf(__('%d set(s) available', 'updraftplus'), count($backup_history)); ?></a></td>
@@ -1446,7 +1485,7 @@ CREATE TABLE $wpdb->signups (
1446
  </p>
1447
  <p style="max-width: 740px;"><ul style="list-style: disc inside;">
1448
  <li><strong><?php _e('Downloading','updraftplus');?>:</strong> <?php _e("Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly.",'updraftplus');?></li>
1449
- <li><strong><?php _e('Restoring:','updraftplus');?></strong> <?php _e('Press the Restore button next to the chosen backup set.', 'updraftplus');?> <strong><?php _e('More tasks:','updraftplus');?></strong> <a href="#" onclick="jQuery('#updraft-plupload-modal').slideToggle(); return false;"><?php _e('upload backup files','updraftplus');?></a> | <a href="#" onclick="updraft_updatehistory(1); return false;" title="<?php _e('Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below.','updraftplus'); ?>"><?php _e('rescan folder for new backup sets','updraftplus');?></a></li>
1450
  <li><strong><?php _e('Opera web browser','updraftplus');?>:</strong> <?php _e('If you are using this, then turn Turbo/Road mode off.','updraftplus');?></li>
1451
 
1452
  <?php
@@ -1587,7 +1626,12 @@ CREATE TABLE $wpdb->signups (
1587
  <div id="updraft-backupnow-modal" title="UpdraftPlus - <?php _e('Perform a one-time backup','updraftplus'); ?>">
1588
  <p><?php _e("To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background.",'updraftplus');?></p>
1589
 
1590
- <p><?php _e('Does nothing happen when you schedule backups?','updraftplus');?> <a href="http://updraftplus.com/faqs/my-scheduled-backups-and-pressing-backup-now-does-nothing-however-pressing-debug-backup-does-produce-a-backup/"><?php _e('Go here for help.','updraft');?></a></p>
 
 
 
 
 
1591
  </div>
1592
 
1593
  <?php
@@ -1629,12 +1673,17 @@ CREATE TABLE $wpdb->signups (
1629
 
1630
  echo __('PHP has support for ZipArchive::addFile:', 'updraftplus').' '.$ziparchive_exists.'<br>';
1631
 
1632
- $binzip = $updraftplus->find_working_bin_zip(false);
1633
 
1634
  echo __('zip executable found:', 'updraftplus').' '.((is_string($binzip)) ? __('Yes').': '.$binzip : __('No')).'<br>';
1635
 
1636
- echo '<a href="admin-ajax.php?page=updraftplus&action=updraft_ajax&subaction=backuphistoryraw&nonce='.wp_create_nonce('updraftplus-credentialtest-nonce').'" id="updraftplus-rawbackuphistory">'.__('Show raw backup and file list', 'updraftplus').'</a><br/>';
 
 
 
 
1637
 
 
1638
 
1639
  echo '<h3>'.__('Total (uncompressed) on-disk data:','updraftplus').'</h3>';
1640
  echo '<p style="clear: left; max-width: 600px;"><em>'.__('N.B. This count is based upon what was, or was not, excluded the last time you saved the options.', 'updraftplus').'</em></p>';
@@ -1730,8 +1779,8 @@ CREATE TABLE $wpdb->signups (
1730
  $curstage = __('Creating file backup zips', 'updraftplus');
1731
  if (!empty($jobdata['filecreating_substatus']) && isset($backupable_entities[$jobdata['filecreating_substatus']['e']]['description'])) {
1732
 
1733
- $sdescrip = preg_replace('/ \(.*\)$/', '', $backupable_entities[$jobdata['filecreating_substatus']['e']]['description']);
1734
- if (strlen($sdescrip) > 20 && isset($backupable_entities[$jobdata['filecreating_substatus']]['shortdescription'])) $sdescrip = $backupable_entities[$jobdata['filecreating_substatus']]['shortdescription'];
1735
  $curstage .= ' ('.$sdescrip.')';
1736
  if (isset($jobdata['filecreating_substatus']['i']) && isset($jobdata['filecreating_substatus']['t'])) {
1737
  $stage = min(2, 1 + ($jobdata['filecreating_substatus']['i']/max($jobdata['filecreating_substatus']['t'],1)));
@@ -1850,7 +1899,7 @@ CREATE TABLE $wpdb->signups (
1850
  //deletes the -old directories that are created when a backup is restored.
1851
  function delete_old_dirs() {
1852
  global $wp_filesystem;
1853
- $credentials = request_filesystem_credentials(wp_nonce_url("options-general.php?page=updraftplus&action=updraft_delete_old_dirs", 'updraft_delete_old_dirs'));
1854
  WP_Filesystem($credentials);
1855
  if ( $wp_filesystem->errors->get_error_code() ) {
1856
  foreach ( $wp_filesystem->errors->get_error_messages() as $message )
@@ -1904,13 +1953,13 @@ CREATE TABLE $wpdb->signups (
1904
 
1905
  global $wp_filesystem, $updraftplus;
1906
 
1907
- if (false === ($credentials = request_filesystem_credentials('options-general.php?page=updraftplus&action=updraft_create_backup_dir&nonce='.wp_create_nonce('create_backup_dir')))) {
1908
  return false;
1909
  }
1910
 
1911
  if ( ! WP_Filesystem($credentials) ) {
1912
  // our credentials were no good, ask the user for them again
1913
- request_filesystem_credentials('options-general.php?page=updraftplus&action=updraft_create_backup_dir&nonce='.wp_create_nonce('create_backup_dir'), '', true);
1914
  return false;
1915
  }
1916
 
@@ -1953,11 +2002,6 @@ CREATE TABLE $wpdb->signups (
1953
  return true;
1954
  }
1955
 
1956
- function execution_time_check($time) {
1957
- $setting = ini_get('max_execution_time');
1958
- return ( $setting==0 || $setting >= $time) ? true : false;
1959
- }
1960
-
1961
  //scans the content dir to see if any -old dirs are present
1962
  function scan_old_dirs() {
1963
  $dirArr = scandir(untrailingslashit(WP_CONTENT_DIR));
@@ -2038,8 +2082,8 @@ CREATE TABLE $wpdb->signups (
2038
  </select> <span id="updraft_files_timings"><?php echo apply_filters('updraftplus_schedule_showfileopts', '<input type="hidden" name="updraftplus_starttime_files" value="">'); ?></span>
2039
  <?php
2040
  echo __('and retain this many backups', 'updraftplus').': ';
2041
- $updraft_retain = UpdraftPlus_Options::get_updraft_option('updraft_retain', 1);
2042
- $updraft_retain = ((int)$updraft_retain > 0) ? (int)$updraft_retain : 1;
2043
  ?> <input type="text" name="updraft_retain" value="<?php echo $updraft_retain ?>" style="width:40px;" />
2044
  </td>
2045
  </tr>
@@ -2056,8 +2100,8 @@ CREATE TABLE $wpdb->signups (
2056
  </select> <span id="updraft_db_timings"><?php echo apply_filters('updraftplus_schedule_showdbopts', '<input type="hidden" name="updraftplus_starttime_db" value="">'); ?></span>
2057
  <?php
2058
  echo __('and retain this many backups', 'updraftplus').': ';
2059
- $updraft_retain_db = UpdraftPlus_Options::get_updraft_option('updraft_retain_db', $updraft_retain);
2060
- $updraft_retain_db = ((int)$updraft_retain_db > 0) ? (int)$updraft_retain_db : 1;
2061
  ?> <input type="text" name="updraft_retain_db" value="<?php echo $updraft_retain_db ?>" style="width:40px" />
2062
  </td>
2063
  </tr>
@@ -2097,12 +2141,31 @@ CREATE TABLE $wpdb->signups (
2097
  }
2098
  }
2099
  ?>
2100
- <p><?php echo apply_filters('updraftplus_admin_directories_description', __('The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org.', 'updraftplus').' <a href="http://updraftplus.com/shop/">'.htmlspecialchars(__('Or, get the "More Files" add-on from our shop.', 'updraftplus'))); ?></a> <a href="http://wordshell.net"></p><p>(<?php echo __('Use WordShell for automatic backup, version control and patching', 'updraftplus');?></a>).</p></td>
2101
  </td>
2102
  </tr>
2103
  <tr>
2104
  <th><?php _e('Email','updraftplus'); ?>:</th>
2105
- <td><input type="text" title="<?php _e('To send to more than one address, separate each address with a comma.', 'updraftplus'); ?>" style="width:260px" name="updraft_email" value="<?php echo UpdraftPlus_Options::get_updraft_option('updraft_email'); ?>" /> <br><?php _e('Enter an address here to have a report sent (and the whole backup, if you choose) to it.','updraftplus'); ?></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2106
  </tr>
2107
 
2108
  <tr>
@@ -2113,7 +2176,20 @@ CREATE TABLE $wpdb->signups (
2113
  <td><input type="<?php echo apply_filters('updraftplus_admin_secret_field_type', 'text'); ?>" name="updraft_encryptionphrase" id="updraft_encryptionphrase" value="<?php echo $updraft_encryptionphrase ?>" style="width:132px" /></td>
2114
  </tr>
2115
  <tr class="backup-crypt-description">
2116
- <td></td><td><p><?php _e('If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back).','updraftplus');?> <a href="#" onclick="jQuery('#updraftplus_db_decrypt').val(jQuery('#updraft_encryptionphrase').val()); jQuery('#updraft-manualdecrypt-modal').slideToggle(); return false;"><?php _e('You can also decrypt a database manually here.','updraftplus');?></a></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
2117
 
2118
  <div id="updraft-manualdecrypt-modal" style="width: 85%; margin: 16px; display:none; margin-left: 100px;">
2119
  <p><h3><?php _e("Manually decrypt a database backup file" ,'updraftplus');?></h3></p>
@@ -2257,7 +2333,7 @@ CREATE TABLE $wpdb->signups (
2257
  } else {
2258
  $dir_info .= __('Backup directory specified exists, but is <b>not</b> writable.','updraftplus');
2259
  }
2260
- $dir_info .= ' <span style="font-size:110%;font-weight:bold"><a href="options-general.php?page=updraftplus&action=updraft_create_backup_dir&nonce='.wp_create_nonce('create_backup_dir').'">'.__('Click here to attempt to create the directory and set the permissions','updraftplus').'</a></span>, '.__('or, to reset this option','updraftplus').' <a href="#" onclick="jQuery(\'#updraft_dir\').val(\'updraft\'); return false;">'.__('click here','updraftplus').'</a>. '.__('If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process.','updraftplus').'</span>';
2261
  }
2262
 
2263
  echo $dir_info.' '.__("This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content).", 'updraftplus').' '.__("<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...).",'updraftplus');?></td>
@@ -2440,7 +2516,7 @@ ENDHERE;
2440
  $nf = wp_nonce_field('updraftplus_download', '_wpnonce', true, false);
2441
  $dbt = __('Database','updraftplus');
2442
  $ret .= <<<ENDHERE
2443
- <form id="uddownloadform_db_${key}_0" action="admin-ajax.php" onsubmit="return updraft_downloader('uddlstatus_', $key, 'db', '#ud_downloadstatus', '0', '$esc_pretty_date')" method="post">
2444
  $nf
2445
  <input type="hidden" name="action" value="updraft_download_backup" />
2446
  <input type="hidden" name="type" value="db" />
@@ -2488,7 +2564,7 @@ ENDHERE;
2488
  $ide .= ' '.__('You appear to be missing one or more archives from this multi-archive set.', 'updraftplus');
2489
  }
2490
  $ret .= <<<ENDHERE
2491
- <form id="uddownloadform_${type}_${key}_${findex}" action="admin-ajax.php" onsubmit="return updraft_downloader('uddlstatus_', '$key', '$type', '#ud_downloadstatus', '$set_contents', '$esc_pretty_date')" method="post">
2492
  $nf
2493
  <input type="hidden" name="action" value="updraft_download_backup" />
2494
  <input type="hidden" name="type" value="$type" />
@@ -2513,8 +2589,9 @@ ENDHERE;
2513
  if (isset($backup['nonce']) && preg_match("/^[0-9a-f]{12}$/",$backup['nonce']) && is_readable($updraft_dir.'/log.'.$backup['nonce'].'.txt')) {
2514
  $nval = $backup['nonce'];
2515
  $lt = __('Backup Log','updraftplus');
 
2516
  $ret .= <<<ENDHERE
2517
- <form action="options-general.php" method="get">
2518
  <input type="hidden" name="action" value="downloadlog" />
2519
  <input type="hidden" name="page" value="updraftplus" />
2520
  <input type="hidden" name="updraftplus_backup_nonce" value="$nval" />
@@ -2566,7 +2643,7 @@ ENDHERE;
2566
  // Record which set this file is found in
2567
  if (!is_array($values)) $values=array($values);
2568
  foreach ($values as $val) {
2569
- if (preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+(of[0-9]+)?)?+\.(zip|gz|gz\.crypt)$/i', $val, $matches)) {
2570
  $nonce = $matches[2];
2571
  if (isset($bdata['service']) && $bdata['service'] == 'none' && !is_file($updraft_dir.'/'.$val)) {
2572
  # File no longer present
@@ -2641,7 +2718,7 @@ ENDHERE;
2641
  if (0 === strpos($key, 'updraft_restorer_')) $extra_fields[] = $key;
2642
  }
2643
 
2644
- $credentials = request_filesystem_credentials("options-general.php?page=updraftplus&action=updraft_restore&backup_timestamp=$timestamp", '', false, false, $extra_fields);
2645
  WP_Filesystem($credentials);
2646
  if ( $wp_filesystem->errors->get_error_code() ) {
2647
  foreach ( $wp_filesystem->errors->get_error_messages() as $message ) show_message($message);
@@ -2651,6 +2728,7 @@ ENDHERE;
2651
  # Set up logging
2652
  $updraftplus->backup_time_nonce();
2653
  $updraftplus->jobdata_set('job_type', 'restore');
 
2654
  $updraftplus->logfile_open($updraftplus->nonce);
2655
  # TODO: Provide download link for the log file
2656
  # TODO: Automatic purging of old log files
4
 
5
  // For the purposes of improving site performance (don't load in 10s of Kilobytes of un-needed code on every page load), admin-area code is being progressively moved here.
6
 
7
+ // This gets called in admin_menu, earlier than admin_init
8
 
9
  global $updraftplus_admin;
10
  if (!is_a($updraftplus_admin, 'UpdraftPlus_Admin')) $updraftplus_admin = new UpdraftPlus_Admin();
22
  add_action('admin_action_upgrade-theme', array($this, 'admin_action_upgrade_pluginortheme'));
23
 
24
  add_action('admin_head', array($this,'admin_head'));
25
+ add_filter((is_multisite() ? 'network_admin_' : '').'plugin_action_links', array($this, 'plugin_action_links'), 10, 2);
26
  add_action('wp_ajax_updraft_download_backup', array($this, 'updraft_download_backup'));
27
  add_action('wp_ajax_updraft_ajax', array($this, 'updraft_ajax_handler'));
28
  add_action('wp_ajax_plupload_action', array($this,'plupload_action'));
36
  $service = UpdraftPlus_Options::get_updraft_option('updraft_service');
37
 
38
  if (UpdraftPlus_Options::user_can_manage() && ('googledrive' === $service || is_array($service) && in_array('googledrive', $service)) && UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid','') != '' && UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token','') == '') {
39
+ add_action('all_admin_notices', array($this,'show_admin_warning_googledrive') );
40
  }
41
 
42
  if (UpdraftPlus_Options::user_can_manage() && ('dropbox' === $service || is_array($service) && in_array('dropbox', $service)) && UpdraftPlus_Options::get_updraft_option('updraft_dropboxtk_request_token','') == '') {
43
+ add_action('all_admin_notices', array($this,'show_admin_warning_dropbox') );
44
  }
45
 
46
+ if (UpdraftPlus_Options::user_can_manage() && $this->disk_space_check(1024*1024*35) === false) add_action('all_admin_notices', array($this, 'show_admin_warning_diskspace'));
 
 
 
47
 
48
  // Next, the actions that only come on the UpdraftPlus page
49
+ if ($pagenow != UpdraftPlus_Options::admin_page() || empty($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
50
 
51
  if (UpdraftPlus_Options::user_can_manage() && defined('DISABLE_WP_CRON') && DISABLE_WP_CRON == true) {
52
+ add_action('all_admin_notices', array($this, 'show_admin_warning_disabledcron'));
53
  }
54
 
55
  if(UpdraftPlus_Options::get_updraft_option('updraft_debug_mode')) {
56
  @ini_set('display_errors',1);
57
  @error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
58
+ add_action('all_admin_notices', array($this, 'show_admin_debug_warning'));
59
  }
60
 
61
+ # Avoid false positives, by attempting to raise the limit (as happens when we actually do a backup)
62
+ @set_time_limit(900);
63
+ $max_execution_time = (int)@ini_get('max_execution_time');
64
+ if ($max_execution_time>0 && $max_execution_time<20) {
65
+ add_action('all_admin_notices', array($this, 'show_admin_warning_execution_time'));
66
+ }
 
 
 
 
67
 
68
  // LiteSpeed has a generic problem with terminating cron jobs
69
  if (isset($_SERVER['SERVER_SOFTWARE']) && strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false) {
70
  if (!is_file(ABSPATH.'.htaccess') || !preg_match('/noabort/i', file_get_contents(ABSPATH.'.htaccess'))) {
71
+ add_action('all_admin_notices', array($this, 'show_admin_warning_litespeed'));
72
  }
73
  }
74
 
75
+ if (version_compare($wp_version, '3.2', '<')) add_action('all_admin_notices', array($this, 'show_admin_warning_wordpressversion'));
76
 
77
+ wp_enqueue_script('updraftplus-admin-ui', UPDRAFTPLUS_URL.'/includes/updraft-admin-ui.js', array('jquery', 'jquery-ui-dialog', 'plupload-all'), '27');
78
 
79
  wp_localize_script( 'updraftplus-admin-ui', 'updraftlion', array(
80
  'rescanning' => __('Rescanning (looking for backups that you have uploaded manually into the internal backup store)...','updraftplus'),
81
+ 'excludedeverything' => __('If you exclude both the database and the files, then you have excluded everything!', 'updraftplus'),
82
  'restoreproceeding' => __('The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished.', 'updraftplus'),
83
  'unexpectedresponse' => __('Unexpected response:','updraftplus'),
84
  'servererrorcode' => __('The web server returned an error code (try again, or check your web server logs)', 'updraftplus'),
145
  function admin_head() {
146
 
147
  global $pagenow;
148
+ if ($pagenow != UpdraftPlus_Options::admin_page() || !isset($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
149
 
150
  $chunk_size = min(wp_max_upload_size()-1024, 1024*1024*2);
151
 
246
  # Adds the settings link under the plugin on the plugin screen.
247
  function plugin_action_links($links, $file) {
248
  if ($file == 'updraftplus/updraftplus.php'){
249
+ $settings_link = '<a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__("Settings", "updraftplus").'</a>';
250
  array_unshift($links, $settings_link);
251
  // $settings_link = '<a href="http://david.dw-perspective.org.uk/donate">'.__("Donate","UpdraftPlus").'</a>';
252
  // array_unshift($links, $settings_link);
292
  echo '<div class="updraftmessage '.$class.' fade">'."<p>$message</p></div>";
293
  }
294
 
295
+ public function show_admin_warning_execution_time() {
296
+ $this->show_admin_warning('<strong>'.__('Warning','updraftplus').':</strong> '.sprintf(__('The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)', 'updraftplus'), (int)@ini_get('max_execution_time'), 90));
297
+ }
298
+
299
  function show_admin_warning_disabledcron() {
300
  $this->show_admin_warning('<strong>'.__('Warning','updraftplus').':</strong> '.__('The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled.','updraftplus').' <a href="http://updraftplus.com/faqs/my-scheduled-backups-and-pressing-backup-now-does-nothing-however-pressing-debug-backup-does-produce-a-backup/#disablewpcron">'.__('Go here for more information.','updraftplus').'</a>');
301
  }
322
  }
323
 
324
  function show_admin_warning_dropbox() {
325
+ $this->show_admin_warning('<strong>'.__('UpdraftPlus notice:','updraftplus').'</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-dropbox-auth&updraftplus_dropboxauth=doit">'.sprintf(__('Click here to authenticate your %s account (you will not be able to back up to %s without it).','updraftplus'),'Dropbox','Dropbox').'</a>');
326
  }
327
 
328
  function show_admin_warning_googledrive() {
329
+ $this->show_admin_warning('<strong>'.__('UpdraftPlus notice:','updraftplus').'</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-googledrive-auth&updraftplus_googleauth=doit">'.sprintf(__('Click here to authenticate your %s account (you will not be able to back up to %s without it).','updraftplus'),'Google Drive','Google Drive').'</a>');
330
  }
331
 
332
  // This options filter removes ABSPATH off the front of updraft_dir, if it is given absolutely and contained within it
369
  $timestamp = $_REQUEST['timestamp'];
370
 
371
  // You need a nonce before you can set job data. And we certainly don't yet have one.
372
+ $updraftplus->backup_time_nonce($timestamp);
373
 
374
  $debug_mode = UpdraftPlus_Options::get_updraft_option('updraft_debug_mode');
375
 
376
  // Set the job type before logging, as there can be different logging destinations
377
  $updraftplus->jobdata_set('job_type', 'download');
378
+ $updraftplus->jobdata_set('job_time_ms', $updraftplus->job_time_ms);
379
 
380
  // Retrieve the information from our backup history
381
  $backup_history = $updraftplus->get_backup_history();
433
  }
434
 
435
  // The AJAX responder that updates on progress wants to see this
436
+ $updraftplus->jobdata_set('dlfile_'.$timestamp.'_'.$type.'_'.$findex, "downloading:$known_size:$fullpath");
437
 
438
  if ($needs_downloading) {
439
  // Close browser connection so that it can resume AJAX polling
460
  if(is_file($fullpath) && is_readable($fullpath)) {
461
 
462
  // That message is then picked up by the AJAX listener
463
+ $updraftplus->jobdata_set('dlfile_'.$timestamp.'_'.$type.'_'.$findex, 'downloaded:'.filesize($fullpath).":$fullpath");
464
 
465
  } else {
466
+ $updraftplus->jobdata_set('dlfile_'.$timestamp.'_'.$type.'_'.$findex, 'failed');
467
+ $updraftplus->jobdata_set('dlerrors_'.$timestamp.'_'.$type.'_'.$findex, $updraftplus->errors);
 
468
  $updraftplus->log('Remote fetch failed. File '.$fullpath.' did not exist or was unreadable. If you delete local backups then remote retrieval may have failed.');
 
469
  }
470
 
471
  @fclose($updraftplus->logfile_handle);
509
  if (isset($_REQUEST['subaction']) && 'lastlog' == $_REQUEST['subaction']) {
510
  echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_lastmessage', '('.__('Nothing yet logged', 'updraftplus').')'));
511
  } elseif (isset($_GET['subaction']) && 'activejobs_list' == $_GET['subaction']) {
512
+ $download_status = array();
513
+ if (!empty($_GET['downloaders'])) {
514
+ foreach(explode(':', $_GET['downloaders']) as $downloader) {
515
+ # prefix, timestamp, entity, index
516
+ if (preg_match('/^([^,]+),(\d+),([a-z]+),(\d+)$/', $downloader, $matches)) {
517
+ $updraftplus->nonce = $matches[2];
518
+ $status = $this->download_status($matches[2], $matches[3], $matches[4]);
519
+ if (is_array($status)) {
520
+ $status['base'] = $matches[1];
521
+ $status['timestamp'] = $matches[2];
522
+ $status['what'] = $matches[3];
523
+ $status['findex'] = (empty($matches[4])) ? '0' : $matches[4];
524
+ $download_status[] = $status;
525
+ }
526
+ }
527
+ }
528
+ }
529
  if (!empty($_GET['oneshot'])) {
530
  $job_id = get_site_option('updraft_oneshotnonce', false);
531
  $active_jobs = (false === $job_id) ? '' : $this->print_active_job($job_id, true);
534
  }
535
  echo json_encode(array(
536
  'l' => htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_lastmessage', '('.__('Nothing yet logged', 'updraftplus').')')),
537
+ 'j' => $active_jobs,
538
+ 'ds' => $download_status
539
  ));
540
  } elseif (isset($_REQUEST['subaction']) && 'dismissautobackup' == $_REQUEST['subaction']) {
541
  UpdraftPlus_Options::update_updraft_option('updraftplus_dismissedautobackup', time() + 84*86400);
631
  $updraftplus->backup_time_nonce();
632
  // Set the job type before logging, as there can be different logging destinations
633
  $updraftplus->jobdata_set('job_type', 'delete');
634
+ $updraftplus->jobdata_set('job_time_ms', $updraftplus->job_time_ms);
635
 
636
  if (UpdraftPlus_Options::get_updraft_option('updraft_debug_mode')) $updraftplus->logfile_open($updraftplus->nonce);
637
 
719
  echo '</pre>';
720
  echo '<h3>Files</h3><pre>';
721
  $updraft_dir = $updraftplus->backups_dir_location();
722
+ $raw_output = array();
723
  $d = dir($updraft_dir);
724
  while (false !== ($entry = $d->read())) {
725
  $fp = $updraft_dir.'/'.$entry;
726
+ $mtime = filemtime($fp);
727
  if (is_dir($fp)) {
728
  $size = ' d';
729
  } elseif (is_link($fp)) {
730
  $size = ' l';
731
  } elseif (is_file($fp)) {
732
+ $size = sprintf("%8.1f", round(filesize($fp)/1024, 1)).' '.gmdate('r', $mtime);
733
  } else {
734
  $size = ' ?';
735
  }
736
+ if (preg_match('/^log\.(.*)\.txt$/', $entry, $lmatch)) $entry = '<a target="_top" href="?action=downloadlog&page=updraftplus&updraftplus_backup_nonce='.htmlspecialchars($lmatch[1]).'">'.$entry.'</a>';
737
+ $raw_output[$mtime] = empty($raw_output[$mtime]) ? sprintf("%s %s\n", $size, $entry) : $raw_output[$mtime].sprintf("%s %s\n", $size, $entry);
738
  }
739
+ krsort($raw_output, SORT_NUMERIC);
740
+ foreach ($raw_output as $line) echo $line;
741
  echo '</pre>';
742
  @$d->close();
743
  } elseif ('countbackups' == $_REQUEST['subaction']) {
751
  phpinfo(INFO_ALL ^ (INFO_CREDITS | INFO_LICENSE));
752
  } elseif ('backupnow' == $_REQUEST['subaction']) {
753
  echo '<strong>',__('Schedule backup','updraftplus').':</strong> ';
754
+ $event = (!empty($_REQUEST['backupnow_nofiles'])) ? 'updraft_backupnow_backup_database' : ((!empty($_REQUEST['backupnow_nodb'])) ? 'updraft_backupnow_backup' : 'updraft_backupnow_backup_all');
755
+ if (wp_schedule_single_event(time()+5, $event) === false) {
756
  $updraftplus->log("A backup run failed to schedule");
757
  echo __("Failed.",'updraftplus')."</div>";
758
  } else {
759
+ echo htmlspecialchars(__('OK. You should soon see activity in the "Last log message" field below.','updraftplus'))." <a href=\"http://updraftplus.com/faqs/my-scheduled-backups-and-pressing-backup-now-does-nothing-however-pressing-debug-backup-does-produce-a-backup/\"><br>".__('Nothing happening? Follow this link for help.','updraftplus')."</a></div>";
760
  $updraftplus->log("A backup run has been scheduled");
761
  }
762
 
801
  echo json_encode(array('n' => sprintf(__('%d set(s) available', 'updraftplus'), count($backup_history)), 't' => $this->existing_backup_table($backup_history)));
802
  } elseif (isset($_GET['subaction']) && 'downloadstatus' == $_GET['subaction'] && isset($_GET['timestamp']) && isset($_GET['type'])) {
803
 
 
804
  $findex = (isset($_GET['findex'])) ? $_GET['findex'] : '0';
805
  if (empty($findex)) $findex = '0';
806
+ $updraftplus->nonce = $_GET['timestamp'];
807
 
808
+ echo json_encode($this->download_status($_GET['timestamp'], $_GET['type'], $findex));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
809
 
810
  } elseif (isset($_POST['subaction']) && $_POST['subaction'] == 'credentials_test') {
811
  $method = (preg_match("/^[a-z0-9]+$/", $_POST['method'])) ? $_POST['method'] : "";
821
 
822
  }
823
 
824
+ function download_status($timestamp, $type, $findex) {
825
+
826
+ global $updraftplus;
827
+
828
+ $response = array( 'm' => $updraftplus->jobdata_get('dlmessage_'.$timestamp.'_'.$type.'_'.$findex).'<br>' );
829
+
830
+ if ($file = $updraftplus->jobdata_get('dlfile_'.$timestamp.'_'.$type.'_'.$findex)) {
831
+ if ('failed' == $file) {
832
+ $response['e'] = __('Download failed','updraftplus').'<br>';
833
+ $errs = $updraftplus->jobdata_get('dlerrors_'.$timestamp.'_'.$type.'_'.$findex);
834
+ if (is_array($errs) && !empty($errs)) {
835
+ $response['e'] .= '<ul style="list-style: disc inside;">';
836
+ foreach ($errs as $err) {
837
+ if (is_array($err)) {
838
+ $response['e'] .= '<li>'.htmlspecialchars($err['message']).'</li>';
839
+ } else {
840
+ $response['e'] .= '<li>'.htmlspecialchars($err).'</li>';
841
+ }
842
+ }
843
+ $response['e'] .= '</ul>';
844
+ }
845
+ } elseif (preg_match('/^downloaded:(\d+):(.*)$/', $file, $matches) && file_exists($matches[2])) {
846
+ $response['p'] = 100;
847
+ $response['f'] = $matches[2];
848
+ $response['s'] = (int)$matches[1];
849
+ $response['t'] = (int)$matches[1];
850
+ $response['m'] = __('File ready.', 'updraftplus');
851
+ } elseif (preg_match('/^downloading:(\d+):(.*)$/', $file, $matches) && file_exists($matches[2])) {
852
+ // Convert to bytes
853
+ $response['f'] = $matches[2];
854
+ $total_size = (int)max($matches[1], 1);
855
+ $cur_size = filesize($matches[2]);
856
+ $response['s'] = $cur_size;
857
+ $response['t'] = $total_size;
858
+ $response['m'] .= __("Download in progress", 'updraftplus').' ('.round($cur_size/1024).' / '.round(($total_size/1024)).' Kb)';
859
+ $response['p'] = round(100*$cur_size/$total_size);
860
+ } else {
861
+ $response['m'] .= __('No local copy present.', 'updraftplus');
862
+ $response['p'] = 0;
863
+ $response['s'] = 0;
864
+ $response['t'] = 1;
865
+ }
866
+ }
867
+ return $response;
868
+ }
869
+
870
  function analyse_db_file($timestamp, $res) {
871
 
872
  $mess = array(); $warn = array(); $err = array();
893
  return array($mess, $warn, $err);
894
  }
895
 
896
+ $ciphertext = $updraftplus->decrypt($db_file, $encryption);
 
897
 
 
 
 
898
  if ($ciphertext) {
899
  $new_db_file = $updraft_dir.'/'.basename($db_file, '.crypt');
900
  if (!file_put_contents($new_db_file, $ciphertext)) {
924
 
925
  $line = 0;
926
  $old_siteurl = '';
927
+ $old_home = '';
928
  $old_table_prefix = '';
929
  $old_siteinfo = array();
930
  $gathering_siteinfo = true;
936
 
937
  $wanted_tables = array('terms', 'term_taxonomy', 'term_relationships', 'commentmeta', 'comments', 'links', 'options', 'postmeta', 'posts', 'users', 'usermeta');
938
 
939
+ $migration_warning = false;
940
+
941
  while (!gzeof($dbhandle) && ($line<100 || count($wanted_tables)>0)) {
942
  $line++;
943
  // Up to 1Mb
949
  $old_siteurl = $matches[1];
950
  $mess[] = __('Backup of:', 'updraftplus').' '.htmlspecialchars($old_siteurl);
951
  // Check for should-be migration
952
+ if (!$migration_warning && $old_siteurl != site_url()) {
953
+ $migration_warning = true;
954
  $powarn = apply_filters('updraftplus_dbscan_urlchange', sprintf(__('Warning: %s', 'updraftplus'), '<a href="http://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>'), $old_siteurl, $res);
955
  if (!empty($powarn)) $warn[] = $powarn;
956
  }
957
+ } elseif ('' == $old_home && preg_match('/^\# Home URL: (http(.*))$/', $buffer, $matches)) {
958
+ $old_home = $matches[1];
959
+ // Check for should-be migration
960
+ if (!$migration_warning && $old_home != home_url()) {
961
+ $migration_warning = true;
962
+ $powarn = apply_filters('updraftplus_dbscan_urlchange', sprintf(__('Warning: %s', 'updraftplus'), '<a href="http://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>'), $old_home, $res);
963
+ if (!empty($powarn)) $warn[] = $powarn;
964
+ }
965
  } elseif ('' == $old_wp_version && preg_match('/^\# WordPress Version: ([0-9]+(\.[0-9]+)+)/', $buffer, $matches)) {
966
  $old_wp_version = $matches[1];
967
  if (version_compare($old_wp_version, $wp_version, '>')) {
1251
  // If we restored the database, then that will have out-of-date information which may confuse the user - so automatically re-scan for them.
1252
  $this->rebuild_backup_history();
1253
  echo '<p><strong>'.__('Restore successful!','updraftplus').'</strong></p>';
1254
+ echo '<b>'.__('Actions','updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&updraft_restore_success=true">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1255
  return;
1256
  } elseif (is_wp_error($backup_success)) {
1257
  echo '<p>Restore failed...</p>';
1258
  $updraftplus->list_errors();
1259
+ echo '<b>Actions:</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1260
  return;
1261
  } elseif (false === $backup_success) {
1262
  # This means, "not yet - but stay on the page because we may be able to do it later, e.g. if the user types in the requested information"
1263
  return;
1264
  }
 
 
1265
  }
1266
  $deleted_old_dirs = false;
1267
  if(isset($_REQUEST['action']) && $_REQUEST['action'] == 'updraft_delete_old_dirs') {
1277
  } else {
1278
  echo '<p>',__('Old directory removal failed for some reason. You may want to do this manually.','updraftplus').'</p><br/>';
1279
  }
1280
+ echo '<b>'.__('Actions','updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1281
  return;
1282
  }
1283
 
1296
  } elseif ($created !== false) {
1297
  echo '<p>'.__('Backup directory successfully created.','updraftplus').'</p><br/>';
1298
  }
1299
+ echo '<b>'.__('Actions','updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration','updraftplus').'</a>';
1300
  return;
1301
  }
1302
+
1303
  echo '<div id="updraft_backup_started" class="updated fade" style="display:none; max-width: 800px; font-size:140%; line-height: 140%; padding:14px; clear:left;"></div>';
1304
 
1305
  // updraft_file_ids is not deleted
1335
 
1336
  <?php
1337
  if(isset($_GET['updraft_restore_success'])) {
1338
+ echo "<div class=\"updated fade\" style=\"padding:8px;\"><strong>".__('Your backup has been restored.','updraftplus').'</strong> '.__('If your restore included files, then your old (themes, uploads, plugins, whatever) directories have been retained with "-old" appended to their name. Remove them when you are satisfied that the backup worked properly.')."</div>";
1339
  }
1340
 
1341
  $ws_advert = $updraftplus->wordshell_random_advert(1);
1365
  ?>
1366
 
1367
  <h2 style="clear:left;"><?php _e('Existing Schedule And Backups','updraftplus');?></h2>
1368
+
1369
+ <table class="form-table" style="float:left; clear: both; width:605px;">
1370
  <noscript>
1371
  <tr>
1372
  <th><?php _e('JavaScript warning','updraftplus');?>:</th>
1407
 
1408
  ?>
1409
 
1410
+ <script>var lastbackup_laststatus = '<?php echo esc_js($last_backup_html);?>';</script>
 
 
1411
 
1412
  <tr>
1413
  <th><span title="<?php _e('All the times shown in this section are using WordPress\'s configured time zone, which you can set in Settings -> General', 'updraftplus'); ?>"><?php _e('Next scheduled backups','updraftplus');?>:</span></th>
1414
  <td>
1415
+ <table style="border: 0px; padding: 0px; margin: 0 10px 0 0;">
1416
+ <tr>
1417
+ <td style="width: 124px; vertical-align:top; margin: 0px; padding: 0px;"><?php _e('Files','updraftplus'); ?>:</td><td style="color:blue; margin: 0px; padding: 0px;"><?php echo $next_scheduled_backup?></td>
1418
+ </tr><tr>
1419
+ <td style="width: 124px; vertical-align:top; margin: 0px; padding: 0px;"><?php _e('Database','updraftplus');?>: </td><td style="color:blue; margin: 0px; padding: 0px;"><?php echo $next_scheduled_backup_database?></td>
1420
+ </tr><tr>
1421
+ <td style="width: 124px; vertical-align:top; margin: 0px; padding: 0px;"><?php _e('Time now','updraftplus');?>: </td><td style="color:blue; margin: 0px; padding: 0px;"><?php echo $current_time?></td>
1422
+ </table>
1423
  </td>
1424
  </tr>
1425
  <tr>
1427
  <td id="updraft_last_backup"><?php echo $last_backup_html ?></td>
1428
  </tr>
1429
  </table>
1430
+
1431
  <div style="float:left; width:200px; margin-top: <?php echo (class_exists('UpdraftPlus_Addons_Migrator')) ? "20" : "0" ?>px;">
1432
  <div style="margin-bottom: 10px;">
1433
+ <button type="button" <?php echo $backup_disabled ?> class="button-primary updraft-bigbutton" style="padding-top:2px;padding-bottom:2px;font-size:22px !important; min-height: 32px; min-width: 180px;" onclick="jQuery('#updraft-backupnow-modal').dialog('open');"><?php _e('Backup Now','updraftplus');?></button>
1434
  </div>
1435
  <div style="margin-bottom: 10px;">
1436
  <?php
1437
  $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
1438
  $backup_history = (is_array($backup_history))?$backup_history:array();
1439
  ?>
1440
+ <input type="button" class="button-primary updraft-bigbutton" value="<?php _e('Restore','updraftplus');?>" style="padding-top:2px;padding-bottom:2px;font-size:22px !important; min-height: 32px; min-width: 180px;" onclick="jQuery('.download-backups').slideDown(); updraft_historytimertoggle(1); jQuery('html,body').animate({scrollTop: jQuery('#updraft_lastlogcontainer').offset().top},'slow');">
1441
  </div>
1442
  <div>
1443
+ <button type="button" class="button-primary updraft-bigbutton" style="padding-top:2px;padding-bottom:2px;font-size:22px !important; min-height: 32px; min-width: 180px;" onclick="jQuery('#updraft-migrate-modal').dialog('open');"><?php _e('Clone/Migrate','updraftplus');?></button>
1444
  </div>
1445
  </div>
1446
+
1447
  <br style="clear:both" />
1448
  <table class="form-table">
1449
 
1450
+ <?php $active_jobs = $this->print_active_jobs();?>
1451
+ <tr id="updraft_activejobsrow" style="<?php if (!$active_jobs) echo 'display:none;'; ?>">
1452
+ <th><?php _e('Backups in progress:', 'updraftplus');?></th>
1453
+ <td id="updraft_activejobs"><?php echo $active_jobs;?></td>
1454
+ </tr>
1455
 
1456
  <tr id="updraft_lastlogmessagerow">
1457
  <th><?php _e('Last log message','updraftplus');?>:</th>
1461
  </td>
1462
  </tr>
1463
 
 
 
 
 
 
 
1464
  <tr>
1465
  <th><?php echo htmlspecialchars(__('Backups, logs & restoring','updraftplus')); ?>:</th>
1466
  <td><a id="updraft_showbackups" href="#" title="<?php _e('Press to see available backups','updraftplus');?>" onclick="jQuery('.download-backups').fadeToggle(); updraft_historytimertoggle(0);"><?php echo sprintf(__('%d set(s) available', 'updraftplus'), count($backup_history)); ?></a></td>
1485
  </p>
1486
  <p style="max-width: 740px;"><ul style="list-style: disc inside;">
1487
  <li><strong><?php _e('Downloading','updraftplus');?>:</strong> <?php _e("Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly.",'updraftplus');?></li>
1488
+ <li><strong><?php _e('Restoring:','updraftplus');?></strong> <?php _e('Press the Restore button next to the chosen backup set.', 'updraftplus');?> <?php _e('More tasks:','updraftplus');?> <a href="#" onclick="jQuery('#updraft-plupload-modal').slideToggle(); return false;"><?php _e('upload backup files','updraftplus');?></a> | <a href="#" onclick="updraft_updatehistory(1); return false;" title="<?php _e('Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below.','updraftplus'); ?>"><?php _e('rescan folder for new backup sets','updraftplus');?></a></li>
1489
  <li><strong><?php _e('Opera web browser','updraftplus');?>:</strong> <?php _e('If you are using this, then turn Turbo/Road mode off.','updraftplus');?></li>
1490
 
1491
  <?php
1626
  <div id="updraft-backupnow-modal" title="UpdraftPlus - <?php _e('Perform a one-time backup','updraftplus'); ?>">
1627
  <p><?php _e("To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background.",'updraftplus');?></p>
1628
 
1629
+ <p>
1630
+ <input type="checkbox" id="backupnow_nodb"> <label for="backupnow_nodb"><?php _e("Don't include the database in the backup", 'updraftplus'); ?></label><br>
1631
+ <input type="checkbox" id="backupnow_nofiles"> <label for="backupnow_nofiles"><?php _e("Don't include any files in the backup", 'updraftplus'); ?></label>
1632
+ </p>
1633
+
1634
+ <p><?php _e('Does nothing happen when you attempt backups?','updraftplus');?> <a href="http://updraftplus.com/faqs/my-scheduled-backups-and-pressing-backup-now-does-nothing-however-pressing-debug-backup-does-produce-a-backup/"><?php _e('Go here for help.', 'updraftplus');?></a></p>
1635
  </div>
1636
 
1637
  <?php
1673
 
1674
  echo __('PHP has support for ZipArchive::addFile:', 'updraftplus').' '.$ziparchive_exists.'<br>';
1675
 
1676
+ $binzip = $updraftplus->find_working_bin_zip(false, false);
1677
 
1678
  echo __('zip executable found:', 'updraftplus').' '.((is_string($binzip)) ? __('Yes').': '.$binzip : __('No')).'<br>';
1679
 
1680
+ $hosting_bytes_free = $updraftplus->get_hosting_disk_quota_free();
1681
+ if (is_array($hosting_bytes_free)) {
1682
+ $perc = round(100*$hosting_bytes_free[1]/(max($hosting_bytes_free[2], 1)), 1);
1683
+ echo sprintf(__('Free disk space in account: %s (%s used)', 'updraftplus'), round($hosting_bytes_free[3]/1048576, 1)." Mb", "$perc %")."<br>";
1684
+ }
1685
 
1686
+ echo '<a href="admin-ajax.php?page=updraftplus&action=updraft_ajax&subaction=backuphistoryraw&nonce='.wp_create_nonce('updraftplus-credentialtest-nonce').'" id="updraftplus-rawbackuphistory">'.__('Show raw backup and file list', 'updraftplus').'</a><br/>';
1687
 
1688
  echo '<h3>'.__('Total (uncompressed) on-disk data:','updraftplus').'</h3>';
1689
  echo '<p style="clear: left; max-width: 600px;"><em>'.__('N.B. This count is based upon what was, or was not, excluded the last time you saved the options.', 'updraftplus').'</em></p>';
1779
  $curstage = __('Creating file backup zips', 'updraftplus');
1780
  if (!empty($jobdata['filecreating_substatus']) && isset($backupable_entities[$jobdata['filecreating_substatus']['e']]['description'])) {
1781
 
1782
+ $sdescrip = preg_replace('/ \(.*\)$/', '', $backupable_entities[$jobdata['filecreating_substatus']['e']]['description']);
1783
+ if (strlen($sdescrip) > 20 && isset($jobdata['filecreating_substatus']['e']) && is_array($jobdata['filecreating_substatus']['e']) && isset($backupable_entities[$jobdata['filecreating_substatus']['e']]['shortdescription'])) $sdescrip = $backupable_entities[$jobdata['filecreating_substatus']['e']]['shortdescription'];
1784
  $curstage .= ' ('.$sdescrip.')';
1785
  if (isset($jobdata['filecreating_substatus']['i']) && isset($jobdata['filecreating_substatus']['t'])) {
1786
  $stage = min(2, 1 + ($jobdata['filecreating_substatus']['i']/max($jobdata['filecreating_substatus']['t'],1)));
1899
  //deletes the -old directories that are created when a backup is restored.
1900
  function delete_old_dirs() {
1901
  global $wp_filesystem;
1902
+ $credentials = request_filesystem_credentials(wp_nonce_url(UpdraftPlus_Options::admin_page_url()."?page=updraftplus&action=updraft_delete_old_dirs", 'updraft_delete_old_dirs'));
1903
  WP_Filesystem($credentials);
1904
  if ( $wp_filesystem->errors->get_error_code() ) {
1905
  foreach ( $wp_filesystem->errors->get_error_messages() as $message )
1953
 
1954
  global $wp_filesystem, $updraftplus;
1955
 
1956
+ if (false === ($credentials = request_filesystem_credentials(UpdraftPlus_Options::admin_page().'?page=updraftplus&action=updraft_create_backup_dir&nonce='.wp_create_nonce('create_backup_dir')))) {
1957
  return false;
1958
  }
1959
 
1960
  if ( ! WP_Filesystem($credentials) ) {
1961
  // our credentials were no good, ask the user for them again
1962
+ request_filesystem_credentials(UpdraftPlus_Options::admin_page().'?page=updraftplus&action=updraft_create_backup_dir&nonce='.wp_create_nonce('create_backup_dir'), '', true);
1963
  return false;
1964
  }
1965
 
2002
  return true;
2003
  }
2004
 
 
 
 
 
 
2005
  //scans the content dir to see if any -old dirs are present
2006
  function scan_old_dirs() {
2007
  $dirArr = scandir(untrailingslashit(WP_CONTENT_DIR));
2082
  </select> <span id="updraft_files_timings"><?php echo apply_filters('updraftplus_schedule_showfileopts', '<input type="hidden" name="updraftplus_starttime_files" value="">'); ?></span>
2083
  <?php
2084
  echo __('and retain this many backups', 'updraftplus').': ';
2085
+ $updraft_retain = (int)UpdraftPlus_Options::get_updraft_option('updraft_retain', 2);
2086
+ $updraft_retain = ($updraft_retain > 0) ? $updraft_retain : 1;
2087
  ?> <input type="text" name="updraft_retain" value="<?php echo $updraft_retain ?>" style="width:40px;" />
2088
  </td>
2089
  </tr>
2100
  </select> <span id="updraft_db_timings"><?php echo apply_filters('updraftplus_schedule_showdbopts', '<input type="hidden" name="updraftplus_starttime_db" value="">'); ?></span>
2101
  <?php
2102
  echo __('and retain this many backups', 'updraftplus').': ';
2103
+ $updraft_retain_db = (int)UpdraftPlus_Options::get_updraft_option('updraft_retain_db', $updraft_retain);
2104
+ $updraft_retain_db = ($updraft_retain_db > 0) ? $updraft_retain_db : 1;
2105
  ?> <input type="text" name="updraft_retain_db" value="<?php echo $updraft_retain_db ?>" style="width:40px" />
2106
  </td>
2107
  </tr>
2141
  }
2142
  }
2143
  ?>
2144
+ <p><?php echo apply_filters('updraftplus_admin_directories_description', __('The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org.', 'updraftplus').' <a href="http://updraftplus.com/shop/">'.htmlspecialchars(__('See also the "More Files" add-on from our shop.', 'updraftplus'))); ?></a> <a href="http://wordshell.net"></p><p>(<?php echo __('Use WordShell for automatic backup, version control and patching', 'updraftplus');?></a>).</p></td>
2145
  </td>
2146
  </tr>
2147
  <tr>
2148
  <th><?php _e('Email','updraftplus'); ?>:</th>
2149
+ <td>
2150
+ <?php
2151
+ $updraft_email = UpdraftPlus_Options::get_updraft_option('updraft_email');
2152
+ ?>
2153
+ <input type="text" title="<?php _e('To send to more than one address, separate each address with a comma.', 'updraftplus'); ?>" style="width:260px" name="updraft_email" value="<?php esc_attr_e($updraft_email); ?>" /> <br><?php _e('Enter an address here to have a report sent (and the whole backup, if you choose) to it.','updraftplus'); ?>
2154
+
2155
+ <?php
2156
+ $admin_email= get_bloginfo('admin_email');
2157
+ if ($updraftplus->have_addons <10) {
2158
+ if ($updraft_email && $updraft_email != $admin_email) {
2159
+ echo '<strong>';
2160
+ }
2161
+ echo ' '.apply_filters('updraft_reportingemailnotice', sprintf(__("With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s).", 'updraftplus'), $admin_email));
2162
+ if ($updraft_email && $updraft_email != $admin_email) {
2163
+ echo '</strong>';
2164
+ }
2165
+ }
2166
+ ?>
2167
+
2168
+ </td>
2169
  </tr>
2170
 
2171
  <tr>
2176
  <td><input type="<?php echo apply_filters('updraftplus_admin_secret_field_type', 'text'); ?>" name="updraft_encryptionphrase" id="updraft_encryptionphrase" value="<?php echo $updraft_encryptionphrase ?>" style="width:132px" /></td>
2177
  </tr>
2178
  <tr class="backup-crypt-description">
2179
+ <td></td><td><?php if (!function_exists('mcrypt_encrypt')) { ?>
2180
+
2181
+ <p><strong><?php echo sprintf(__('Your web-server does not have the %s module installed.', 'updraftplus'), 'mcrypt').' '.__('Without it, encryption will be a lot slower.', 'updraftplus');?></strong></p>
2182
+
2183
+ <?php } ?><p><?php _e('If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back).','updraftplus');?> <a href="#" onclick="jQuery('#updraftplus_db_decrypt').val(jQuery('#updraft_encryptionphrase').val()); jQuery('#updraft-manualdecrypt-modal').slideToggle(); return false;"><?php _e('You can also decrypt a database manually here.','updraftplus');?></a>
2184
+ <?php
2185
+ if ($updraftplus->have_addons < 10) {
2186
+ if ($updraft_encryptionphrase) echo '<strong>';
2187
+ echo ' '.__("A future release of UpdraftPlus will move the encryption feature into an add-on, and add the capability to encrypt files also.", 'updraftplus');
2188
+ if ($updraft_encryptionphrase) echo '</strong>';
2189
+ }
2190
+ ?>
2191
+
2192
+ </p>
2193
 
2194
  <div id="updraft-manualdecrypt-modal" style="width: 85%; margin: 16px; display:none; margin-left: 100px;">
2195
  <p><h3><?php _e("Manually decrypt a database backup file" ,'updraftplus');?></h3></p>
2333
  } else {
2334
  $dir_info .= __('Backup directory specified exists, but is <b>not</b> writable.','updraftplus');
2335
  }
2336
+ $dir_info .= ' <span style="font-size:110%;font-weight:bold"><a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraft_create_backup_dir&nonce='.wp_create_nonce('create_backup_dir').'">'.__('Click here to attempt to create the directory and set the permissions','updraftplus').'</a></span>, '.__('or, to reset this option','updraftplus').' <a href="#" onclick="jQuery(\'#updraft_dir\').val(\'updraft\'); return false;">'.__('click here','updraftplus').'</a>. '.__('If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process.','updraftplus').'</span>';
2337
  }
2338
 
2339
  echo $dir_info.' '.__("This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content).", 'updraftplus').' '.__("<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...).",'updraftplus');?></td>
2516
  $nf = wp_nonce_field('updraftplus_download', '_wpnonce', true, false);
2517
  $dbt = __('Database','updraftplus');
2518
  $ret .= <<<ENDHERE
2519
+ <form id="uddownloadform_db_${key}_0" action="admin-ajax.php" onsubmit="return updraft_downloader('uddlstatus_', $key, 'db', '#ud_downloadstatus', '0', '$esc_pretty_date', true)" method="post">
2520
  $nf
2521
  <input type="hidden" name="action" value="updraft_download_backup" />
2522
  <input type="hidden" name="type" value="db" />
2564
  $ide .= ' '.__('You appear to be missing one or more archives from this multi-archive set.', 'updraftplus');
2565
  }
2566
  $ret .= <<<ENDHERE
2567
+ <form id="uddownloadform_${type}_${key}_${findex}" action="admin-ajax.php" onsubmit="return updraft_downloader('uddlstatus_', '$key', '$type', '#ud_downloadstatus', '$set_contents', '$esc_pretty_date', true)" method="post">
2568
  $nf
2569
  <input type="hidden" name="action" value="updraft_download_backup" />
2570
  <input type="hidden" name="type" value="$type" />
2589
  if (isset($backup['nonce']) && preg_match("/^[0-9a-f]{12}$/",$backup['nonce']) && is_readable($updraft_dir.'/log.'.$backup['nonce'].'.txt')) {
2590
  $nval = $backup['nonce'];
2591
  $lt = __('Backup Log','updraftplus');
2592
+ $url = UpdraftPlus_Options::admin_page();
2593
  $ret .= <<<ENDHERE
2594
+ <form action="$url" method="get">
2595
  <input type="hidden" name="action" value="downloadlog" />
2596
  <input type="hidden" name="page" value="updraftplus" />
2597
  <input type="hidden" name="updraftplus_backup_nonce" value="$nval" />
2643
  // Record which set this file is found in
2644
  if (!is_array($values)) $values=array($values);
2645
  foreach ($values as $val) {
2646
+ if (is_string($val) && preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+(of[0-9]+)?)?+\.(zip|gz|gz\.crypt)$/i', $val, $matches)) {
2647
  $nonce = $matches[2];
2648
  if (isset($bdata['service']) && $bdata['service'] == 'none' && !is_file($updraft_dir.'/'.$val)) {
2649
  # File no longer present
2718
  if (0 === strpos($key, 'updraft_restorer_')) $extra_fields[] = $key;
2719
  }
2720
 
2721
+ $credentials = request_filesystem_credentials(UpdraftPlus_Options::admin_page()."?page=updraftplus&action=updraft_restore&backup_timestamp=$timestamp", '', false, false, $extra_fields);
2722
  WP_Filesystem($credentials);
2723
  if ( $wp_filesystem->errors->get_error_code() ) {
2724
  foreach ( $wp_filesystem->errors->get_error_messages() as $message ) show_message($message);
2728
  # Set up logging
2729
  $updraftplus->backup_time_nonce();
2730
  $updraftplus->jobdata_set('job_type', 'restore');
2731
+ $updraftplus->jobdata_set('job_time_ms', $updraftplus->job_time_ms);
2732
  $updraftplus->logfile_open($updraftplus->nonce);
2733
  # TODO: Provide download link for the log file
2734
  # TODO: Automatic purging of old log files
backup.php CHANGED
@@ -29,6 +29,10 @@ class UpdraftPlus_Backup {
29
  private $dbhandle_isgz;
30
 
31
  private $use_zip_object = 'UpdraftPlus_ZipArchive';
 
 
 
 
32
 
33
  public function __construct() {
34
 
@@ -36,6 +40,9 @@ class UpdraftPlus_Backup {
36
 
37
  # Decide which zip engine to begin with
38
 
 
 
 
39
  // false means 'tried + failed'; whereas 0 means 'not yet tried'
40
  if ($this->binzip === 0 && (!defined('UPDRAFTPLUS_PREFERPCLZIP') || UPDRAFTPLUS_PREFERPCLZIP != true) && (!defined('UPDRAFTPLUS_NO_BINZIP') || !UPDRAFTPLUS_NO_BINZIP) && $updraftplus->current_resumption <9) {
41
  $updraftplus->log('Checking if we have a zip executable available');
@@ -85,28 +92,25 @@ class UpdraftPlus_Backup {
85
  return false;
86
  }
87
 
88
- $updraft_dir = $updraftplus->backups_dir_location();
89
-
90
  $itext = (empty($index)) ? '' : ($index+1);
91
  $base_path = $backup_file_basename.'-'.$whichone.$itext.'.zip';
92
- $full_path = $updraft_dir.'/'.$base_path;
93
  $time_now = time();
94
 
95
  if (file_exists($full_path)) {
96
- $time_mod = (int)@filemtime($full_path);
97
- $updraftplus->log($base_path.": this file has already been created (age: ".round($time_now-$time_mod,1)." s)");
98
- if ($time_mod>100 && ($time_now-$time_mod)<30) {
99
- $updraftplus->terminate_due_to_activity($base_path, $time_now, $time_mod);
100
- }
101
  # Gather any further files that may also exist
102
  $files_existing = array();
103
  while (file_exists($full_path)) {
104
  $files_existing[] = $base_path;
 
 
 
 
 
105
  $index++;
106
  $base_path = $backup_file_basename.'-'.$whichone.$index.'.zip';
107
- $full_path = $updraft_dir.'/'.$base_path;
108
  }
109
- return $files_existing;
110
  }
111
 
112
  // Temporary file, to be able to detect actual completion (upon which, it is renamed)
@@ -125,19 +129,27 @@ class UpdraftPlus_Backup {
125
 
126
  // Now, check for other forms of temporary file, which would indicate that some activity is going on (even if it hasn't made it into the main zip file yet)
127
  // Note: this doesn't catch PclZip temporary files
128
- $d = dir($updraft_dir);
129
  $match = '_'.$updraftplus->nonce."-".$whichone;
130
  while (false !== ($e = $d->read())) {
131
- if ('.' == $e || '..' == $e || !is_file($updraft_dir.'/'.$e)) continue;
132
  $ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.([A-Za-z0-9]){6}?$/i", $e);
133
  $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $e);
134
- if ($time_now-filemtime($updraft_dir.'/'.$e) < 30 && ($ziparchive_match || $binzip_match)) {
135
- $updraftplus->terminate_due_to_activity($updraft_dir.'/'.$e, $time_now, filemtime($updraft_dir.'/'.$e));
136
  }
137
  }
138
  @$d->close();
139
  clearstatcache();
140
 
 
 
 
 
 
 
 
 
141
  $this->zip_microtime_start = microtime(true);
142
  # The paths in the zip should then begin with '$whichone', having removed WP_CONTENT_DIR from the front
143
  $zipcode = $this->make_zipfile($create_from_dir, $backup_file_basename, $whichone);
@@ -148,15 +160,21 @@ class UpdraftPlus_Backup {
148
  return false;
149
  } else {
150
  $itext = (empty($this->index)) ? '' : ($this->index+1);
151
- $full_path = $updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$itext.'.zip';
152
  if (file_exists($full_path.'.tmp')) {
153
- @rename($full_path.'.tmp', $full_path);
154
- $timetaken = max(microtime(true)-$this->zip_microtime_start, 0.000001);
155
- $kbsize = filesize($full_path)/1024;
156
- $rate = round($kbsize/$timetaken, 1);
157
- $updraftplus->log("Created $whichone zip (".$this->index.") - ".round($kbsize,1)." Kb in ".round($timetaken,1)." s ($rate Kb/s)");
158
- // We can now remove any left-over temporary files from this job
159
-
 
 
 
 
 
 
160
  } elseif ($this->index > $original_index) {
161
  $updraftplus->log("Did not create $whichone zip (".$this->index.") - not needed");
162
  } else {
@@ -170,7 +188,7 @@ class UpdraftPlus_Backup {
170
  $res_index = 0;
171
  for ($i = $original_index; $i<= $this->index; $i++) {
172
  $itext = (empty($i)) ? '' : ($i+1);
173
- $full_path = $updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$itext.'.zip';
174
  if (file_exists($full_path)) {
175
  $files_existing[$res_index] = $backup_file_basename.'-'.$whichone.$itext.'.zip';
176
  }
@@ -343,7 +361,7 @@ class UpdraftPlus_Backup {
343
  $updraftplus->log("$backup_datestamp: this backup set is now empty; will remove from history");
344
  unset($backup_history[$backup_datestamp]);
345
  if (isset($backup_to_examine['nonce'])) {
346
- $fullpath = $updraftplus->backups_dir_location().'/log.'.$backup_to_examine['nonce'].'.txt';
347
  if (is_file($fullpath)) {
348
  $updraftplus->log("$backup_datestamp: deleting log file (log.".$backup_to_examine['nonce'].".txt)");
349
  @unlink($fullpath);
@@ -359,20 +377,19 @@ class UpdraftPlus_Backup {
359
  }
360
  }
361
  $updraftplus->log("Retain: saving new backup history (sets now: ".count($backup_history).") and finishing retain operation");
362
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history',$backup_history);
363
  }
364
 
365
  private function prune_file($service, $dofiles, $method_object = null, $object_passback = null ) {
366
  global $updraftplus;
367
- $updraft_dir = $updraftplus->backups_dir_location();
368
  if (!is_array($dofiles)) $dofiles=array($dofiles);
369
  foreach ($dofiles as $dofile) {
370
  if (empty($dofile)) continue;
371
  $updraftplus->log("Delete file: $dofile, service=$service");
372
- $fullpath = $updraft_dir.'/'.$dofile;
373
  // delete it if it's locally available
374
  if (file_exists($fullpath)) {
375
- $updraftplus->log("Deleting local copy ($fullpath)");
376
  @unlink($fullpath);
377
  }
378
  }
@@ -388,6 +405,13 @@ class UpdraftPlus_Backup {
388
 
389
  $sendmail_to = UpdraftPlus_Options::get_updraft_option('updraft_email');
390
 
 
 
 
 
 
 
 
391
  $backup_files = $updraftplus->jobdata_get('backup_files');
392
  $backup_db = $updraftplus->jobdata_get('backup_database');
393
 
@@ -435,6 +459,7 @@ class UpdraftPlus_Backup {
435
 
436
  // We have to use the action in order to set the MIME type on the attachment - by default, WordPress just puts application/octet-stream
437
  if (count($attachments)>0) add_action('phpmailer_init', array($this, 'phpmailer_init'));
 
438
  foreach (explode(',', $sendmail_to) as $sendmail_addr) {
439
 
440
  wp_mail(trim($sendmail_addr), __('Backed up', 'updraftplus').': '.get_bloginfo('name').' (UpdraftPlus '.$updraftplus->version.') '.get_date_from_gmt(gmdate('Y-m-d H:i:s', time()), 'Y-m-d H:i'),'Site: '.site_url()."\r\nUpdraftPlus: ".__('WordPress backup is complete','updraftplus').".\r\n".__('Backup contains','updraftplus').': '.$backup_contains."\r\n".__('Latest status', 'updraftplus').": $final_message\r\n\r\n".$updraftplus->wordshell_random_advert(0)."\r\n".$append_log);
@@ -446,7 +471,7 @@ class UpdraftPlus_Backup {
446
  // The purpose of this function is to make sure that the options table is put in the database first, then the users table, then the usermeta table; and after that the core WP tables - so that when restoring we restore the core tables first
447
  private function backup_db_sorttables($a, $b) {
448
  global $updraftplus, $wpdb;
449
- $our_table_prefix = $updraftplus->get_table_prefix();
450
  if ($a == $b) return 0;
451
  if ($a == $our_table_prefix.'options') return -1;
452
  if ($b == $our_table_prefix.'options') return 1;
@@ -469,6 +494,17 @@ class UpdraftPlus_Backup {
469
  return strcmp($a, $b);
470
  }
471
 
 
 
 
 
 
 
 
 
 
 
 
472
  // This function is resumable
473
  public function backup_dirs($job_status) {
474
 
@@ -503,32 +539,31 @@ class UpdraftPlus_Backup {
503
  }
504
  }
505
 
506
- $updraft_dir = $updraftplus->backups_dir_location();
507
- if($job_status != 'finished' && !$updraftplus->really_is_writable($updraft_dir)) {
508
- $updraftplus->log("Backup directory ($updraft_dir) is not writable, or does not exist");
509
- $updraftplus->log(sprintf(__("Backup directory (%s) is not writable, or does not exist.", 'updraftplus'), $updraft_dir), 'error');
510
  return array();
511
  }
512
 
513
- $job_file_entities = $updraftplus->jobdata_get('job_file_entities');
514
  # This is just used for the visual feedback (via the 'substatus' key)
515
  $which_entity = 0;
516
  # e.g. plugins, themes, uploads, others
517
  foreach ($possible_backups as $youwhat => $whichdir) {
518
 
519
- if (isset($job_file_entities[$youwhat])) {
520
 
521
- $index = (int)$job_file_entities[$youwhat]['index'];
522
  if (empty($index)) $index=0;
523
  $indextext = (0 == $index) ? '' : (1+$index);
524
- $zip_file = $updraft_dir.'/'.$backup_file_basename.'-'.$youwhat.$indextext.'.zip';
525
 
526
  # Split needed?
527
  $split_every=max((int)$updraftplus->jobdata_get('split_every'), 250);
528
  if (file_exists($zip_file) && filesize($zip_file) > $split_every*1024*1024) {
529
  $index++;
530
- $job_file_entities[$youwhat]['index'] = $index;
531
- $updraftplus->jobdata_set('job_file_entities', $job_file_entities);
532
  }
533
 
534
  // Populate prior parts of array, if we're on a subsequent zip file
@@ -536,7 +571,7 @@ class UpdraftPlus_Backup {
536
  for ($i=0; $i<$index; $i++) {
537
  $itext = (0 == $i) ? '' : ($i+1);
538
  $backup_array[$youwhat][$i] = $backup_file_basename.'-'.$youwhat.$itext.'.zip';
539
- $z = $updraft_dir.'/'.$backup_file_basename.'-'.$youwhat.$itext.'.zip';
540
  $itext = (0 == $i) ? '' : $i;
541
  if (file_exists($z)) $backup_array[$youwhat.$itext.'-size'] = filesize($z);
542
  }
@@ -546,7 +581,7 @@ class UpdraftPlus_Backup {
546
  // Add the final part of the array
547
  if ($index >0) {
548
  $fbase = $backup_file_basename.'-'.$youwhat.($index+1).'.zip';
549
- $z = $updraft_dir.'/'.$fbase;
550
  if (file_exists($z)) {
551
  $backup_array[$youwhat][$index] = $fbase;
552
  $backup_array[$youwhat.$index.'-size'] = filesize($z);
@@ -558,7 +593,7 @@ class UpdraftPlus_Backup {
558
  } else {
559
 
560
  $which_entity++;
561
- $updraftplus->jobdata_set('filecreating_substatus', array('e' => $youwhat, 'i' => $which_entity, 't' => count($job_file_entities)));
562
 
563
  if ('others' == $youwhat) $updraftplus->log("Beginning backup of other directories found in the content directory (index: $index)");
564
 
@@ -593,12 +628,12 @@ class UpdraftPlus_Backup {
593
  $backup_array[$youwhat][$index] = $fname;
594
  $itext = ($index == 0) ? '' : $index;
595
  $index++;
596
- $backup_array[$youwhat.$itext.'-size'] = filesize($updraft_dir.'/'.$fname);
597
  }
598
  }
599
 
600
- $job_file_entities[$youwhat]['index'] = $this->index;
601
- $updraftplus->jobdata_set('job_file_entities', $job_file_entities);
602
 
603
  }
604
  } else {
@@ -620,11 +655,9 @@ class UpdraftPlus_Backup {
620
  if (!is_array($backup_array)) $backup_array = array();
621
 
622
  # Check for recent activity
623
- $updraft_dir = $updraftplus->backups_dir_location();
624
-
625
  foreach ($backup_array as $files) {
626
  if (!is_array($files)) $files=array($files);
627
- foreach ($files as $file) $updraftplus->check_recent_modification($updraft_dir.'/'.$file);
628
  }
629
 
630
  } elseif ('begun' == $bfiles_status) {
@@ -646,7 +679,6 @@ class UpdraftPlus_Backup {
646
 
647
  /*
648
  // DOES NOT WORK: there is no crash-safe way to do this here - have to be renamed at cloud-upload time instead
649
- $updraft_dir = $updraftplus->backups_dir_location();
650
  $new_backup_array = array();
651
  foreach ($backup_array as $entity => $files) {
652
  if (!is_array($files)) $files=array($files);
@@ -656,12 +688,12 @@ class UpdraftPlus_Backup {
656
  if (preg_match('/^(backup_[\-0-9]{15}_.*_[0-9a-f]{12}-[\-a-z]+)([0-9]+)?\.zip$/i', $file, $matches)) {
657
  $num = max((int)$matches[2],1);
658
  $new = $matches[1].$num.'of'.$outof.'.zip';
659
- if (file_exists($updraft_dir.'/'.$file)) {
660
- if (@rename($updraft_dir.'/'.$file, $updraft_dir.'/'.$new)) {
661
  $updraftplus->log(sprintf("Renaming: %s to %s", $file, $new));
662
  $nval = $new;
663
  }
664
- } elseif (file_exists($updraft_dir.'/'.$new)) {
665
  $nval = $new;
666
  }
667
  }
@@ -681,14 +713,11 @@ class UpdraftPlus_Backup {
681
 
682
  global $updraftplus, $wpdb;
683
 
684
- $our_table_prefix = $updraftplus->get_table_prefix();
685
 
686
  $errors = 0;
687
 
688
- // Get the file prefix
689
- $updraft_dir = $updraftplus->backups_dir_location();
690
-
691
- if(!$updraftplus->backup_time) $updraftplus->backup_time_nonce();
692
  if (!$updraftplus->opened_log_time) $updraftplus->logfile_open($updraftplus->nonce);
693
 
694
  // Get the blog name and rip out all non-alphanumeric chars other than _
@@ -697,13 +726,15 @@ class UpdraftPlus_Backup {
697
  $blog_name = apply_filters('updraftplus_blog_name', $blog_name);
698
 
699
  $file_base = 'backup_'.get_date_from_gmt(gmdate('Y-m-d H:i:s', $updraftplus->backup_time), 'Y-m-d-Hi').'_'.$blog_name.'_'.$updraftplus->nonce;
700
- $backup_file_base = $updraft_dir.'/'.$file_base;
701
 
702
  if ('finished' == $already_done) return basename($backup_file_base.'-db.gz');
703
  if ('encrypted' == $already_done) return basename($backup_file_base.'-db.gz.crypt');
704
 
705
  $updraftplus->jobdata_set('jobstatus', 'dbcreating');
706
 
 
 
707
  $total_tables = 0;
708
 
709
  $all_tables = $wpdb->get_results("SHOW TABLES", ARRAY_N);
@@ -712,9 +743,9 @@ class UpdraftPlus_Backup {
712
  // Put the options table first
713
  usort($all_tables, array($this, 'backup_db_sorttables'));
714
 
715
- if (!$updraftplus->really_is_writable($updraft_dir)) {
716
- $updraftplus->log("The backup directory ($updraft_dir) is not writable.");
717
- $updraftplus->log("$updraft_dir: ".__('The backup directory is not writable - the database backup is expected to shortly fail.','updraftplus'), 'warning');
718
  # Why not just fail now? We saw a bizarre case when the results of really_is_writable() changed during the run.
719
  }
720
 
@@ -723,31 +754,61 @@ class UpdraftPlus_Backup {
723
  $how_many_tables = count($all_tables);
724
 
725
  foreach ($all_tables as $table) {
 
 
726
  $total_tables++;
727
 
728
  // Increase script execution time-limit to 15 min for every table.
729
  @set_time_limit(900);
730
  // The table file may already exist if we have produced it on a previous run
731
  $table_file_prefix = $file_base.'-db-table-'.$table.'.table';
732
- if (file_exists($updraft_dir.'/'.$table_file_prefix.'.gz')) {
733
  $updraftplus->log("Table $table: corresponding file already exists; moving on");
734
  } else {
735
  // Open file, store the handle
736
- $opened = $this->backup_db_open($updraft_dir.'/'.$table_file_prefix.'.tmp.gz', true);
737
  if (false === $opened) return false;
738
  # === is needed, otherwise 'false' matches (i.e. prefix does not match)
739
- if ( strpos($table, $our_table_prefix) === 0 ) {
740
  // Create the SQL statements
741
  $this->stow("# " . sprintf(__('Table: %s','wp-db-backup'),$updraftplus->backquote($table)) . "\n");
742
  $updraftplus->jobdata_set('dbcreating_substatus', array('t' => $table, 'i' => $total_tables, 'a' => $how_many_tables));
743
- $this->backup_table($table);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
  } else {
745
- $this->stow("# " . sprintf(__('Skipping non-WP table: %s','wp-db-backup'),$updraftplus->backquote($table)) . "\n");
746
  }
747
  // Close file
748
  $this->close($this->dbhandle);
749
  $updraftplus->log("Table $table: finishing file (${table_file_prefix}.gz)");
750
- rename($updraft_dir.'/'.$table_file_prefix.'.tmp.gz', $updraft_dir.'/'.$table_file_prefix.'.gz');
751
  $updraftplus->something_useful_happened();
752
  }
753
  $stitch_files[] = $table_file_prefix;
@@ -773,21 +834,19 @@ class UpdraftPlus_Backup {
773
 
774
  foreach ($stitch_files as $table_file) {
775
  $updraftplus->log("{$table_file}.gz: adding to final database dump");
776
- if (!$handle = gzopen($updraft_dir.'/'.$table_file.'.gz', "r")) {
777
  $updraftplus->log("Error: Failed to open database file for reading: ${table_file}.gz");
778
  $updraftplus->log("Failed to open database file for reading: ${table_file}.gz", 'error');
779
  $errors++;
780
  } else {
781
  while ($line = gzgets($handle, 2048)) { $this->stow($line); }
782
  gzclose($handle);
783
- $unlink_files[] = $updraft_dir.'/'.$table_file.'.gz';
784
  }
785
  }
786
 
787
  if (defined("DB_CHARSET")) {
788
- $this->stow("/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n");
789
- $this->stow("/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n");
790
- $this->stow("/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n");
791
  }
792
 
793
  $updraftplus->log($file_base.'-db.gz: finished writing out complete database file ('.round(filesize($backup_final_file_name)/1024,1).' Kb)');
@@ -804,12 +863,61 @@ class UpdraftPlus_Backup {
804
  } else {
805
  # We no longer encrypt here - because the operation can take long, we made it resumable and moved it to the upload loop
806
  $updraftplus->jobdata_set('jobstatus', 'dbcreated');
807
- $updraftplus->log("Total database tables backed up: $total_tables");
 
 
808
  return basename($backup_file_base.'-db.gz');
809
  }
810
 
811
  } //wp_db_backup
812
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
813
  /**
814
  * Taken partially from phpMyAdmin and partially from
815
  * Alain Wolf, Zurich - Switzerland
@@ -820,7 +928,7 @@ class UpdraftPlus_Backup {
820
  * @param string $segment
821
  * @return void
822
  */
823
- private function backup_table($table, $segment = 'none') {
824
  global $wpdb, $updraftplus;
825
 
826
  $microtime = microtime(true);
@@ -833,7 +941,7 @@ class UpdraftPlus_Backup {
833
  return false;
834
  }
835
 
836
- if(($segment == 'none') || ($segment == 0)) {
837
  // Add SQL statement to drop existing table
838
  $this->stow("\n");
839
  $this->stow("# " . sprintf(__('Delete any existing table %s','wp-db-backup'),$updraftplus->backquote($table)) . "\n\n");
@@ -868,23 +976,12 @@ class UpdraftPlus_Backup {
868
  }
869
 
870
  // Comment in SQL-file
871
- $this->stow("\n\n# " . sprintf('Data contents of table %s',$updraftplus->backquote($table)) . "\n");
872
-
873
- $table_status = $wpdb->get_row("SHOW TABLE STATUS WHERE Name='$table'");
874
- if (isset($table_status->Rows)) {
875
- $rows = $table_status->Rows;
876
- $updraftplus->log("Table $table: Total expected rows (approximate): ".$rows);
877
- $this->stow("# Approximate rows expected in table: $rows\n");
878
- if ($rows > UPDRAFTPLUS_WARN_DB_ROWS) {
879
- $updraftplus->log(sprintf(__("Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup", 'updraftplus'), $table, $rows), 'warning', 'manyrows_'.$table);
880
- }
881
- }
882
 
883
- $this->stow("\n");
884
  }
885
 
886
  // In UpdraftPlus, segment is always 'none'
887
- if(($segment == 'none') || ($segment >= 0)) {
888
  $defs = array();
889
  $integer_fields = array();
890
  // $table_structure was from "DESCRIBE $table"
@@ -905,14 +1002,17 @@ class UpdraftPlus_Backup {
905
  $row_inc = 1000;
906
  }
907
 
 
 
 
 
 
908
  do {
909
  @set_time_limit(900);
910
 
911
- $table_data = $wpdb->get_results("SELECT * FROM $table LIMIT {$row_start}, {$row_inc}", ARRAY_A);
912
  $entries = 'INSERT INTO ' . $updraftplus->backquote($table) . ' VALUES ';
913
  // \x08\\x09, not required
914
- $search = array("\x00", "\x0a", "\x0d", "\x1a");
915
- $replace = array('\0', '\n', '\r', '\Z');
916
  if($table_data) {
917
  $thisentry = "";
918
  foreach ($table_data as $row) {
@@ -940,7 +1040,7 @@ class UpdraftPlus_Backup {
940
  if ($thisentry) $this->stow(" \n".$entries.$thisentry.';');
941
  $row_start += $row_inc;
942
  }
943
- } while((count($table_data) > 0) and ($segment=='none'));
944
  }
945
 
946
  if(($segment == 'none') || ($segment < 0)) {
@@ -965,17 +1065,18 @@ class UpdraftPlus_Backup {
965
  $updraftplus->jobdata_set('jobstatus', 'dbencrypting');
966
  $encryption_error = 0;
967
  $microstart = microtime(true);
968
- $updraftplus->ensure_phpseclib('Crypt_Rijndael', 'Crypt/Rijndael');
969
- $rijndael = new Crypt_Rijndael();
970
- $rijndael->setKey($encryption);
971
- $updraft_dir = $updraftplus->backups_dir_location();
972
- $file_size = @filesize($updraft_dir.'/'.$file)/1024;
973
- if (false === file_put_contents($updraft_dir.'/'.$file.'.crypt' , $rijndael->encrypt(file_get_contents($updraft_dir.'/'.$file)))) {$encryption_error = 1;}
974
  if (0 == $encryption_error) {
975
  $time_taken = max(0.000001, microtime(true)-$microstart);
976
- $updraftplus->log("$file: encryption successful: ".round($file_size,1)."Kb in ".round($time_taken,1)."s (".round($file_size/$time_taken, 1)."Kb/s)");
 
 
 
 
977
  # Delete unencrypted file
978
- @unlink($updraft_dir.'/'.$file);
979
  $updraftplus->jobdata_set('jobstatus', 'dbencrypted');
980
  return basename($file.'.crypt');
981
  } else {
@@ -1037,7 +1138,8 @@ class UpdraftPlus_Backup {
1037
  $this->stow("# Created by UpdraftPlus version ".$updraftplus->version." (http://updraftplus.com)\n");
1038
  $this->stow("# WordPress Version: $wp_version, running on PHP ".phpversion()." (".$_SERVER["SERVER_SOFTWARE"]."), MySQL $mysql_version\n");
1039
  $this->stow("# Backup of: ".site_url()."\n");
1040
- $this->stow("# Table prefix: ".$updraftplus->get_table_prefix()."\n");
 
1041
  $this->stow("# Site info: multisite=".(is_multisite() ? '1' : '0')."\n");
1042
  $this->stow("# Site info: end\n");
1043
 
@@ -1153,13 +1255,12 @@ class UpdraftPlus_Backup {
1153
  private function make_zipfile($source, $backup_file_basename, $whichone = '') {
1154
 
1155
  global $updraftplus;
1156
- $updraft_dir = $updraftplus->backups_dir_location();
1157
 
1158
  $original_index = $this->index;
1159
 
1160
  $itext = (empty($this->index)) ? '' : ($this->index+1);
1161
  $destination_base = $backup_file_basename.'-'.$whichone.$itext.'.zip.tmp';
1162
- $destination = $updraft_dir.'/'.$destination_base;
1163
 
1164
  // Legacy/redundant
1165
  if (empty($whichone) && is_string($whichone)) $whichone = basename($source);
@@ -1173,7 +1274,8 @@ class UpdraftPlus_Backup {
1173
  $backupable_entities = $updraftplus->get_backupable_file_entities(true, false);
1174
 
1175
  # This is only used by one corner-case in BinZip
1176
- $this->make_zipfile_source = (isset($backupable_entities[$whichone])) ? $backupable_entities[$whichone] : $source;
 
1177
 
1178
  $this->existing_files = array();
1179
  # Used for tracking compression ratios
@@ -1183,7 +1285,7 @@ class UpdraftPlus_Backup {
1183
  // Enumerate existing files
1184
  for ($j=0; $j<=$this->index; $j++) {
1185
  $jtext = ($j == 0) ? '' : ($j+1);
1186
- $examine_zip = $updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$jtext.'.zip'.(($j == $this->index) ? '.tmp' : '');
1187
 
1188
  // If the file exists, then we should grab its index of files inside, and sizes
1189
  // Then, when we come to write a file, we should check if it's already there, and only add if it is not
@@ -1225,7 +1327,7 @@ class UpdraftPlus_Backup {
1225
  $this->zipfiles_batched = array();
1226
  $this->zipfiles_lastwritetime = time();
1227
 
1228
- $this->zip_basename = $updraft_dir.'/'.$backup_file_basename.'-'.$whichone;
1229
 
1230
  $error_occured = false;
1231
 
@@ -1247,7 +1349,7 @@ class UpdraftPlus_Backup {
1247
  @touch($destination);
1248
 
1249
  if (count($this->zipfiles_dirbatched)>0 || count($this->zipfiles_batched)>0) {
1250
- $updraftplus->log(sprintf("Remaining entities to add to zip file: %d directories, %d files", count($this->zipfiles_dirbatched), count($this->zipfiles_batched)));
1251
  $add_them = $this->makezip_addfiles();
1252
  if (is_wp_error($add_them)) {
1253
  foreach ($add_them->get_error_messages() as $msg) {
@@ -1264,17 +1366,23 @@ class UpdraftPlus_Backup {
1264
 
1265
  $itext = (empty($this->index)) ? '' : ($this->index+1);
1266
  $destination_base = $backup_file_basename.'-'.$whichone.$itext.'.zip.tmp';
1267
- $destination = $updraft_dir.'/'.$destination_base;
1268
 
1269
  if ($this->zipfiles_added > 0 || $error_occured == false) {
1270
  // ZipArchive::addFile sometimes fails
1271
  if ((file_exists($destination) || $this->index == $original_index) && @filesize($destination) < 90 && 'UpdraftPlus_ZipArchive' == $this->use_zip_object) {
1272
- $updraftplus->log("ZipArchive::addFile apparently failed ($last_error, type=$whichone, size=".filesize($destination).") - retrying with PclZip");
1273
  $this->use_zip_object = 'UpdraftPlus_PclZip';
1274
  return $this->make_zipfile($source, $backup_file_basename, $whichone);
1275
  }
1276
  return true;
1277
  } else {
 
 
 
 
 
 
1278
  $updraftplus->log("makezip failure: zipfiles_added=".$this->zipfiles_added.", error_occurred=".$error_occurred." (method=".$this->use_zip_object.")");
1279
  return false;
1280
  }
@@ -1620,25 +1728,31 @@ class UpdraftPlus_Backup {
1620
 
1621
  private function bump_index() {
1622
  global $updraftplus;
1623
- $job_file_entities = $updraftplus->jobdata_get('job_file_entities');
1624
  $youwhat = $this->whichone;
1625
 
1626
  $timetaken = max(microtime(true)-$this->zip_microtime_start, 0.000001);
1627
 
1628
  $itext = ($this->index == 0) ? '' : ($this->index+1);
1629
  $full_path = $this->zip_basename.$itext.'.zip';
 
 
 
 
 
 
 
1630
  @rename($full_path.'.tmp', $full_path);
1631
  $kbsize = filesize($full_path)/1024;
1632
  $rate = round($kbsize/$timetaken, 1);
1633
- $updraftplus->log("Created ".$this->whichone." zip (".$this->index.") - ".round($kbsize,1)." Kb in ".round($timetaken,1)." s ($rate Kb/s)");
1634
  $this->zip_microtime_start = microtime(true);
1635
 
1636
  # No need to add $itext here - we can just delete any temporary files for this zip
1637
  $updraftplus->clean_temporary_files('_'.$updraftplus->nonce."-".$youwhat, 600);
1638
 
1639
  $this->index++;
1640
- $job_file_entities[$youwhat]['index']=$this->index;
1641
- $updraftplus->jobdata_set('job_file_entities', $job_file_entities);
1642
  }
1643
 
1644
- }
29
  private $dbhandle_isgz;
30
 
31
  private $use_zip_object = 'UpdraftPlus_ZipArchive';
32
+ public $debug = false;
33
+
34
+ private $updraft_dir;
35
+ private $job_file_entities = array();
36
 
37
  public function __construct() {
38
 
40
 
41
  # Decide which zip engine to begin with
42
 
43
+ $this->debug = UpdraftPlus_Options::get_updraft_option('updraft_debug_mode');
44
+ $this->updraft_dir = $updraftplus->backups_dir_location();
45
+
46
  // false means 'tried + failed'; whereas 0 means 'not yet tried'
47
  if ($this->binzip === 0 && (!defined('UPDRAFTPLUS_PREFERPCLZIP') || UPDRAFTPLUS_PREFERPCLZIP != true) && (!defined('UPDRAFTPLUS_NO_BINZIP') || !UPDRAFTPLUS_NO_BINZIP) && $updraftplus->current_resumption <9) {
48
  $updraftplus->log('Checking if we have a zip executable available');
92
  return false;
93
  }
94
 
 
 
95
  $itext = (empty($index)) ? '' : ($index+1);
96
  $base_path = $backup_file_basename.'-'.$whichone.$itext.'.zip';
97
+ $full_path = $this->updraft_dir.'/'.$base_path;
98
  $time_now = time();
99
 
100
  if (file_exists($full_path)) {
 
 
 
 
 
101
  # Gather any further files that may also exist
102
  $files_existing = array();
103
  while (file_exists($full_path)) {
104
  $files_existing[] = $base_path;
105
+ $time_mod = (int)@filemtime($full_path);
106
+ $updraftplus->log($base_path.": this file has already been created (age: ".round($time_now-$time_mod,1)." s)");
107
+ if ($time_mod>100 && ($time_now-$time_mod)<30) {
108
+ $updraftplus->terminate_due_to_activity($base_path, $time_now, $time_mod);
109
+ }
110
  $index++;
111
  $base_path = $backup_file_basename.'-'.$whichone.$index.'.zip';
112
+ $full_path = $this->updraft_dir.'/'.$base_path;
113
  }
 
114
  }
115
 
116
  // Temporary file, to be able to detect actual completion (upon which, it is renamed)
129
 
130
  // Now, check for other forms of temporary file, which would indicate that some activity is going on (even if it hasn't made it into the main zip file yet)
131
  // Note: this doesn't catch PclZip temporary files
132
+ $d = dir($this->updraft_dir);
133
  $match = '_'.$updraftplus->nonce."-".$whichone;
134
  while (false !== ($e = $d->read())) {
135
+ if ('.' == $e || '..' == $e || !is_file($this->updraft_dir.'/'.$e)) continue;
136
  $ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.([A-Za-z0-9]){6}?$/i", $e);
137
  $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $e);
138
+ if ($time_now-filemtime($this->updraft_dir.'/'.$e) < 30 && ($ziparchive_match || $binzip_match)) {
139
+ $updraftplus->terminate_due_to_activity($this->updraft_dir.'/'.$e, $time_now, filemtime($this->updraft_dir.'/'.$e));
140
  }
141
  }
142
  @$d->close();
143
  clearstatcache();
144
 
145
+ if (isset($files_existing)) {
146
+ # Because of zip-splitting, the mere fact that files exist is not enough to indicate that the entity is finished. For that, we need to also see that no subsequent file has been started.
147
+ # Q. What if the previous runner died in between zips, and it is our job to start the next one? A. The next temporary file is created before finishing the former zip, so we are safe (and we are also safe-guarded by the updated value of the index being stored in the database).
148
+ return $files_existing;
149
+ }
150
+
151
+ $this->log_account_space();
152
+
153
  $this->zip_microtime_start = microtime(true);
154
  # The paths in the zip should then begin with '$whichone', having removed WP_CONTENT_DIR from the front
155
  $zipcode = $this->make_zipfile($create_from_dir, $backup_file_basename, $whichone);
160
  return false;
161
  } else {
162
  $itext = (empty($this->index)) ? '' : ($this->index+1);
163
+ $full_path = $this->updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$itext.'.zip';
164
  if (file_exists($full_path.'.tmp')) {
165
+ if (@filesize($full_path.'.tmp') === 0) {
166
+ $updraftplus->log("Did not create $whichone zip (".$this->index.") - not needed");
167
+ @unlink($full_path.'.tmp');
168
+ } else {
169
+ $sha = sha1_file($full_path.'.tmp');
170
+ $updraftplus->jobdata_set('sha1-'.$whichone.$this->index, $sha);
171
+ @rename($full_path.'.tmp', $full_path);
172
+ $timetaken = max(microtime(true)-$this->zip_microtime_start, 0.000001);
173
+ $kbsize = filesize($full_path)/1024;
174
+ $rate = round($kbsize/$timetaken, 1);
175
+ $updraftplus->log("Created $whichone zip (".$this->index.") - ".round($kbsize,1)." Kb in ".round($timetaken,1)." s ($rate Kb/s) (SHA1 checksum: $sha)");
176
+ // We can now remove any left-over temporary files from this job
177
+ }
178
  } elseif ($this->index > $original_index) {
179
  $updraftplus->log("Did not create $whichone zip (".$this->index.") - not needed");
180
  } else {
188
  $res_index = 0;
189
  for ($i = $original_index; $i<= $this->index; $i++) {
190
  $itext = (empty($i)) ? '' : ($i+1);
191
+ $full_path = $this->updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$itext.'.zip';
192
  if (file_exists($full_path)) {
193
  $files_existing[$res_index] = $backup_file_basename.'-'.$whichone.$itext.'.zip';
194
  }
361
  $updraftplus->log("$backup_datestamp: this backup set is now empty; will remove from history");
362
  unset($backup_history[$backup_datestamp]);
363
  if (isset($backup_to_examine['nonce'])) {
364
+ $fullpath = $this->updraft_dir.'/log.'.$backup_to_examine['nonce'].'.txt';
365
  if (is_file($fullpath)) {
366
  $updraftplus->log("$backup_datestamp: deleting log file (log.".$backup_to_examine['nonce'].".txt)");
367
  @unlink($fullpath);
377
  }
378
  }
379
  $updraftplus->log("Retain: saving new backup history (sets now: ".count($backup_history).") and finishing retain operation");
380
+ UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
381
  }
382
 
383
  private function prune_file($service, $dofiles, $method_object = null, $object_passback = null ) {
384
  global $updraftplus;
 
385
  if (!is_array($dofiles)) $dofiles=array($dofiles);
386
  foreach ($dofiles as $dofile) {
387
  if (empty($dofile)) continue;
388
  $updraftplus->log("Delete file: $dofile, service=$service");
389
+ $fullpath = $this->updraft_dir.'/'.$dofile;
390
  // delete it if it's locally available
391
  if (file_exists($fullpath)) {
392
+ $updraftplus->log("Deleting local copy ($dofile)");
393
  @unlink($fullpath);
394
  }
395
  }
405
 
406
  $sendmail_to = UpdraftPlus_Options::get_updraft_option('updraft_email');
407
 
408
+ $admin_email= get_bloginfo('admin_email');
409
+ foreach (explode(',', $sendmail_to) as $sendmail_addr) {
410
+ if ($updraftplus->have_addons < 10 && $sendmail_addr != $admin_email) {
411
+ $updraftplus->log(sprintf(__("With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s). See: %s", 'updraftplus'), $admin_email, 'http://updraftplus.com/next-updraftplus-release-ready-testing/'), 'warning', 'needpremiumforemail');
412
+ }
413
+ }
414
+
415
  $backup_files = $updraftplus->jobdata_get('backup_files');
416
  $backup_db = $updraftplus->jobdata_get('backup_database');
417
 
459
 
460
  // We have to use the action in order to set the MIME type on the attachment - by default, WordPress just puts application/octet-stream
461
  if (count($attachments)>0) add_action('phpmailer_init', array($this, 'phpmailer_init'));
462
+
463
  foreach (explode(',', $sendmail_to) as $sendmail_addr) {
464
 
465
  wp_mail(trim($sendmail_addr), __('Backed up', 'updraftplus').': '.get_bloginfo('name').' (UpdraftPlus '.$updraftplus->version.') '.get_date_from_gmt(gmdate('Y-m-d H:i:s', time()), 'Y-m-d H:i'),'Site: '.site_url()."\r\nUpdraftPlus: ".__('WordPress backup is complete','updraftplus').".\r\n".__('Backup contains','updraftplus').': '.$backup_contains."\r\n".__('Latest status', 'updraftplus').": $final_message\r\n\r\n".$updraftplus->wordshell_random_advert(0)."\r\n".$append_log);
471
  // The purpose of this function is to make sure that the options table is put in the database first, then the users table, then the usermeta table; and after that the core WP tables - so that when restoring we restore the core tables first
472
  private function backup_db_sorttables($a, $b) {
473
  global $updraftplus, $wpdb;
474
+ $our_table_prefix = $this->table_prefix;
475
  if ($a == $b) return 0;
476
  if ($a == $our_table_prefix.'options') return -1;
477
  if ($b == $our_table_prefix.'options') return 1;
494
  return strcmp($a, $b);
495
  }
496
 
497
+ private function log_account_space() {
498
+ # Don't waste time if space is huge
499
+ if (!empty($this->account_space_oodles)) return;
500
+ global $updraftplus;
501
+ $hosting_bytes_free = $updraftplus->get_hosting_disk_quota_free();
502
+ if (is_array($hosting_bytes_free)) {
503
+ $perc = round(100*$hosting_bytes_free[1]/(max($hosting_bytes_free[2], 1)), 1);
504
+ $updraftplus->log(sprintf('Free disk space in account: %s (%s used)', round($hosting_bytes_free[3]/1048576, 1)." Mb", "$perc %"));
505
+ }
506
+ }
507
+
508
  // This function is resumable
509
  public function backup_dirs($job_status) {
510
 
539
  }
540
  }
541
 
542
+ if($job_status != 'finished' && !$updraftplus->really_is_writable($this->updraft_dir)) {
543
+ $updraftplus->log("Backup directory (".$this->updraft_dir.") is not writable, or does not exist");
544
+ $updraftplus->log(sprintf(__("Backup directory (%s) is not writable, or does not exist.", 'updraftplus'), $this->updraft_dir), 'error');
 
545
  return array();
546
  }
547
 
548
+ $this->job_file_entities = $updraftplus->jobdata_get('job_file_entities');
549
  # This is just used for the visual feedback (via the 'substatus' key)
550
  $which_entity = 0;
551
  # e.g. plugins, themes, uploads, others
552
  foreach ($possible_backups as $youwhat => $whichdir) {
553
 
554
+ if (isset($this->job_file_entities[$youwhat])) {
555
 
556
+ $index = (int)$this->job_file_entities[$youwhat]['index'];
557
  if (empty($index)) $index=0;
558
  $indextext = (0 == $index) ? '' : (1+$index);
559
+ $zip_file = $this->updraft_dir.'/'.$backup_file_basename.'-'.$youwhat.$indextext.'.zip';
560
 
561
  # Split needed?
562
  $split_every=max((int)$updraftplus->jobdata_get('split_every'), 250);
563
  if (file_exists($zip_file) && filesize($zip_file) > $split_every*1024*1024) {
564
  $index++;
565
+ $this->job_file_entities[$youwhat]['index'] = $index;
566
+ $updraftplus->jobdata_set('job_file_entities', $this->job_file_entities);
567
  }
568
 
569
  // Populate prior parts of array, if we're on a subsequent zip file
571
  for ($i=0; $i<$index; $i++) {
572
  $itext = (0 == $i) ? '' : ($i+1);
573
  $backup_array[$youwhat][$i] = $backup_file_basename.'-'.$youwhat.$itext.'.zip';
574
+ $z = $this->updraft_dir.'/'.$backup_file_basename.'-'.$youwhat.$itext.'.zip';
575
  $itext = (0 == $i) ? '' : $i;
576
  if (file_exists($z)) $backup_array[$youwhat.$itext.'-size'] = filesize($z);
577
  }
581
  // Add the final part of the array
582
  if ($index >0) {
583
  $fbase = $backup_file_basename.'-'.$youwhat.($index+1).'.zip';
584
+ $z = $this->updraft_dir.'/'.$fbase;
585
  if (file_exists($z)) {
586
  $backup_array[$youwhat][$index] = $fbase;
587
  $backup_array[$youwhat.$index.'-size'] = filesize($z);
593
  } else {
594
 
595
  $which_entity++;
596
+ $updraftplus->jobdata_set('filecreating_substatus', array('e' => $youwhat, 'i' => $which_entity, 't' => count($this->job_file_entities)));
597
 
598
  if ('others' == $youwhat) $updraftplus->log("Beginning backup of other directories found in the content directory (index: $index)");
599
 
628
  $backup_array[$youwhat][$index] = $fname;
629
  $itext = ($index == 0) ? '' : $index;
630
  $index++;
631
+ $backup_array[$youwhat.$itext.'-size'] = filesize($this->updraft_dir.'/'.$fname);
632
  }
633
  }
634
 
635
+ $this->job_file_entities[$youwhat]['index'] = $this->index;
636
+ $updraftplus->jobdata_set('job_file_entities', $this->job_file_entities);
637
 
638
  }
639
  } else {
655
  if (!is_array($backup_array)) $backup_array = array();
656
 
657
  # Check for recent activity
 
 
658
  foreach ($backup_array as $files) {
659
  if (!is_array($files)) $files=array($files);
660
+ foreach ($files as $file) $updraftplus->check_recent_modification($this->updraft_dir.'/'.$file);
661
  }
662
 
663
  } elseif ('begun' == $bfiles_status) {
679
 
680
  /*
681
  // DOES NOT WORK: there is no crash-safe way to do this here - have to be renamed at cloud-upload time instead
 
682
  $new_backup_array = array();
683
  foreach ($backup_array as $entity => $files) {
684
  if (!is_array($files)) $files=array($files);
688
  if (preg_match('/^(backup_[\-0-9]{15}_.*_[0-9a-f]{12}-[\-a-z]+)([0-9]+)?\.zip$/i', $file, $matches)) {
689
  $num = max((int)$matches[2],1);
690
  $new = $matches[1].$num.'of'.$outof.'.zip';
691
+ if (file_exists($this->updraft_dir.'/'.$file)) {
692
+ if (@rename($this->updraft_dir.'/'.$file, $this->updraft_dir.'/'.$new)) {
693
  $updraftplus->log(sprintf("Renaming: %s to %s", $file, $new));
694
  $nval = $new;
695
  }
696
+ } elseif (file_exists($this->updraft_dir.'/'.$new)) {
697
  $nval = $new;
698
  }
699
  }
713
 
714
  global $updraftplus, $wpdb;
715
 
716
+ $this->table_prefix = $updraftplus->get_table_prefix();
717
 
718
  $errors = 0;
719
 
720
+ if (!$updraftplus->backup_time) $updraftplus->backup_time_nonce();
 
 
 
721
  if (!$updraftplus->opened_log_time) $updraftplus->logfile_open($updraftplus->nonce);
722
 
723
  // Get the blog name and rip out all non-alphanumeric chars other than _
726
  $blog_name = apply_filters('updraftplus_blog_name', $blog_name);
727
 
728
  $file_base = 'backup_'.get_date_from_gmt(gmdate('Y-m-d H:i:s', $updraftplus->backup_time), 'Y-m-d-Hi').'_'.$blog_name.'_'.$updraftplus->nonce;
729
+ $backup_file_base = $this->updraft_dir.'/'.$file_base;
730
 
731
  if ('finished' == $already_done) return basename($backup_file_base.'-db.gz');
732
  if ('encrypted' == $already_done) return basename($backup_file_base.'-db.gz.crypt');
733
 
734
  $updraftplus->jobdata_set('jobstatus', 'dbcreating');
735
 
736
+ $binsqldump = $updraftplus->find_working_sqldump();
737
+
738
  $total_tables = 0;
739
 
740
  $all_tables = $wpdb->get_results("SHOW TABLES", ARRAY_N);
743
  // Put the options table first
744
  usort($all_tables, array($this, 'backup_db_sorttables'));
745
 
746
+ if (!$updraftplus->really_is_writable($this->updraft_dir)) {
747
+ $updraftplus->log("The backup directory (".$this->updraft_dir.") is not writable.");
748
+ $updraftplus->log($this->updraft_dir.": ".__('The backup directory is not writable - the database backup is expected to shortly fail.','updraftplus'), 'warning');
749
  # Why not just fail now? We saw a bizarre case when the results of really_is_writable() changed during the run.
750
  }
751
 
754
  $how_many_tables = count($all_tables);
755
 
756
  foreach ($all_tables as $table) {
757
+
758
+ $manyrows_warning = false;
759
  $total_tables++;
760
 
761
  // Increase script execution time-limit to 15 min for every table.
762
  @set_time_limit(900);
763
  // The table file may already exist if we have produced it on a previous run
764
  $table_file_prefix = $file_base.'-db-table-'.$table.'.table';
765
+ if (file_exists($this->updraft_dir.'/'.$table_file_prefix.'.gz')) {
766
  $updraftplus->log("Table $table: corresponding file already exists; moving on");
767
  } else {
768
  // Open file, store the handle
769
+ $opened = $this->backup_db_open($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz', true);
770
  if (false === $opened) return false;
771
  # === is needed, otherwise 'false' matches (i.e. prefix does not match)
772
+ if ( strpos($table, $this->table_prefix) === 0 ) {
773
  // Create the SQL statements
774
  $this->stow("# " . sprintf(__('Table: %s','wp-db-backup'),$updraftplus->backquote($table)) . "\n");
775
  $updraftplus->jobdata_set('dbcreating_substatus', array('t' => $table, 'i' => $total_tables, 'a' => $how_many_tables));
776
+
777
+ $table_status = $wpdb->get_row("SHOW TABLE STATUS WHERE Name='$table'");
778
+ if (isset($table_status->Rows)) {
779
+ $rows = $table_status->Rows;
780
+ $updraftplus->log("Table $table: Total expected rows (approximate): ".$rows);
781
+ $this->stow("# Approximate rows expected in table: $rows\n");
782
+ if ($rows > UPDRAFTPLUS_WARN_DB_ROWS) {
783
+ $manyrows_warning = true;
784
+ $updraftplus->log(sprintf(__("Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup", 'updraftplus'), $table, $rows), 'warning', 'manyrows_'.$table);
785
+ }
786
+ }
787
+
788
+ # Don't include the job data for any backups - so that when the database is restored, it doesn't continue an apparently incomplete backup
789
+ if ($this->table_prefix.'sitemeta' == $table) {
790
+ $where = 'meta_key NOT LIKE "updraft_jobdata_%"';
791
+ } elseif ($this->table_prefix.'options' == $table) {
792
+ $where = 'option_name NOT LIKE "updraft_jobdata_%"';
793
+ } else {
794
+ $where = '';
795
+ }
796
+
797
+ # TODO: If no check-in last time, then try the other method (but - any point in retrying slow method on large tables??)
798
+
799
+ # TODO: Lower this from 10,000 if the feedback is good
800
+ $bindump = (isset($rows) && $rows>10000 && is_string($binsqldump)) ? $this->backup_table_bindump($binsqldump, $table, $where) : false;
801
+ if (!$bindump) $this->backup_table($table, $where);
802
+
803
+ if (!empty($manyrows_warning)) $updraftplus->log_removewarning('manyrows_'.$table);
804
+
805
  } else {
806
+ $this->stow("# " . sprintf(__('Skipping table (lacks our prefix): %s','wp-db-backup'),$updraftplus->backquote($table)) . "\n");
807
  }
808
  // Close file
809
  $this->close($this->dbhandle);
810
  $updraftplus->log("Table $table: finishing file (${table_file_prefix}.gz)");
811
+ rename($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz', $this->updraft_dir.'/'.$table_file_prefix.'.gz');
812
  $updraftplus->something_useful_happened();
813
  }
814
  $stitch_files[] = $table_file_prefix;
834
 
835
  foreach ($stitch_files as $table_file) {
836
  $updraftplus->log("{$table_file}.gz: adding to final database dump");
837
+ if (!$handle = gzopen($this->updraft_dir.'/'.$table_file.'.gz', "r")) {
838
  $updraftplus->log("Error: Failed to open database file for reading: ${table_file}.gz");
839
  $updraftplus->log("Failed to open database file for reading: ${table_file}.gz", 'error');
840
  $errors++;
841
  } else {
842
  while ($line = gzgets($handle, 2048)) { $this->stow($line); }
843
  gzclose($handle);
844
+ $unlink_files[] = $this->updraft_dir.'/'.$table_file.'.gz';
845
  }
846
  }
847
 
848
  if (defined("DB_CHARSET")) {
849
+ $this->stow("/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n");
 
 
850
  }
851
 
852
  $updraftplus->log($file_base.'-db.gz: finished writing out complete database file ('.round(filesize($backup_final_file_name)/1024,1).' Kb)');
863
  } else {
864
  # We no longer encrypt here - because the operation can take long, we made it resumable and moved it to the upload loop
865
  $updraftplus->jobdata_set('jobstatus', 'dbcreated');
866
+ $sha = sha1_file($backup_final_file_name);
867
+ $updraftplus->jobdata_set('sha1-db0', $sha);
868
+ $updraftplus->log("Total database tables backed up: $total_tables (".basename($backup_final_file_name).": checksum (SHA1): $sha)");
869
  return basename($backup_file_base.'-db.gz');
870
  }
871
 
872
  } //wp_db_backup
873
 
874
+ private function backup_table_bindump($potsql, $table_name, $where) {
875
+
876
+ $microtime = microtime(true);
877
+
878
+ global $updraftplus;
879
+
880
+ $pfile = md5(time().rand()).'.tmp';
881
+ file_put_contents($this->updraft_dir.'/'.$pfile, "[mysqldump]\npassword=".DB_PASSWORD."\n");
882
+
883
+ if ($where) $where="--where='".escapeshellarg($where)."'";
884
+
885
+ $exec = "cd ".escapeshellarg($this->updraft_dir)."; $potsql --defaults-file=$pfile $where --max_allowed_packet=1M --quote-names --add-drop-table --skip-comments --skip-set-charset --allow-keywords --dump-date --extended-insert --user=".escapeshellarg(DB_USER)." --host=".escapeshellarg(DB_HOST)." ".DB_NAME." ".escapeshellarg($table_name);
886
+
887
+ $ret = false;
888
+ $any_output = false;
889
+ $writes = 0;
890
+ $handle = popen($exec, "r");
891
+ if ($handle) {
892
+ while (!feof($handle)) {
893
+ $w = fgets($handle);
894
+ if ($w) {
895
+ $this->stow($w);
896
+ $writes++;
897
+ $any_output = true;
898
+ }
899
+ }
900
+ $ret = pclose($handle);
901
+ if ($ret != 0) {
902
+ $updraftplus->log("Binary mysqldump: error (code: $ret)");
903
+ // Keep counter of failures? Change value of binsqldump?
904
+ } else {
905
+ if ($any_output) {
906
+ $updraftplus->log("Table $table_name: binary mysqldump finished (writes: $writes) in ".sprintf("%.02f",max(microtime(true)-$microtime,0.00001))." seconds");
907
+ $ret = true;
908
+ }
909
+ }
910
+ } else {
911
+ $updraftplus->log("Binary mysqldump error: bindump popen failed");
912
+ }
913
+
914
+ # Clean temporary files
915
+ @unlink($this->updraft_dir.'/'.$pfile);
916
+
917
+ return $ret;
918
+
919
+ }
920
+
921
  /**
922
  * Taken partially from phpMyAdmin and partially from
923
  * Alain Wolf, Zurich - Switzerland
928
  * @param string $segment
929
  * @return void
930
  */
931
+ private function backup_table($table, $where = '', $segment = 'none') {
932
  global $wpdb, $updraftplus;
933
 
934
  $microtime = microtime(true);
941
  return false;
942
  }
943
 
944
+ if($segment == 'none' || $segment == 0) {
945
  // Add SQL statement to drop existing table
946
  $this->stow("\n");
947
  $this->stow("# " . sprintf(__('Delete any existing table %s','wp-db-backup'),$updraftplus->backquote($table)) . "\n\n");
976
  }
977
 
978
  // Comment in SQL-file
979
+ $this->stow("\n\n# " . sprintf('Data contents of table %s',$updraftplus->backquote($table)) . "\n\n");
 
 
 
 
 
 
 
 
 
 
980
 
 
981
  }
982
 
983
  // In UpdraftPlus, segment is always 'none'
984
+ if($segment == 'none' || $segment >= 0) {
985
  $defs = array();
986
  $integer_fields = array();
987
  // $table_structure was from "DESCRIBE $table"
1002
  $row_inc = 1000;
1003
  }
1004
 
1005
+ $search = array("\x00", "\x0a", "\x0d", "\x1a");
1006
+ $replace = array('\0', '\n', '\r', '\Z');
1007
+
1008
+ if ($where) $where = "WHERE $where";
1009
+
1010
  do {
1011
  @set_time_limit(900);
1012
 
1013
+ $table_data = $wpdb->get_results("SELECT * FROM $table $where LIMIT {$row_start}, {$row_inc}", ARRAY_A);
1014
  $entries = 'INSERT INTO ' . $updraftplus->backquote($table) . ' VALUES ';
1015
  // \x08\\x09, not required
 
 
1016
  if($table_data) {
1017
  $thisentry = "";
1018
  foreach ($table_data as $row) {
1040
  if ($thisentry) $this->stow(" \n".$entries.$thisentry.';');
1041
  $row_start += $row_inc;
1042
  }
1043
+ } while(count($table_data) > 0 && 'none' == $segment);
1044
  }
1045
 
1046
  if(($segment == 'none') || ($segment < 0)) {
1065
  $updraftplus->jobdata_set('jobstatus', 'dbencrypting');
1066
  $encryption_error = 0;
1067
  $microstart = microtime(true);
1068
+ $file_size = @filesize($this->updraft_dir.'/'.$file)/1024;
1069
+
1070
+ if (false === file_put_contents($this->updraft_dir.'/'.$file.'.crypt' , $updraftplus->encrypt($this->updraft_dir.'/'.$file, $encryption))) $encryption_error = 1;
 
 
 
1071
  if (0 == $encryption_error) {
1072
  $time_taken = max(0.000001, microtime(true)-$microstart);
1073
+
1074
+ $sha = sha1_file($this->updraft_dir.'/'.$file.'.crypt');
1075
+ $updraftplus->jobdata_set('sha1-db0.crypt', $sha);
1076
+
1077
+ $updraftplus->log("$file: encryption successful: ".round($file_size,1)."Kb in ".round($time_taken,2)."s (".round($file_size/$time_taken, 1)."Kb/s) (SHA1 checksum: $sha)");
1078
  # Delete unencrypted file
1079
+ @unlink($this->updraft_dir.'/'.$file);
1080
  $updraftplus->jobdata_set('jobstatus', 'dbencrypted');
1081
  return basename($file.'.crypt');
1082
  } else {
1138
  $this->stow("# Created by UpdraftPlus version ".$updraftplus->version." (http://updraftplus.com)\n");
1139
  $this->stow("# WordPress Version: $wp_version, running on PHP ".phpversion()." (".$_SERVER["SERVER_SOFTWARE"]."), MySQL $mysql_version\n");
1140
  $this->stow("# Backup of: ".site_url()."\n");
1141
+ $this->stow("# Home URL: ".home_url()."\n");
1142
+ $this->stow("# Table prefix: ".$this->table_prefix."\n");
1143
  $this->stow("# Site info: multisite=".(is_multisite() ? '1' : '0')."\n");
1144
  $this->stow("# Site info: end\n");
1145
 
1255
  private function make_zipfile($source, $backup_file_basename, $whichone = '') {
1256
 
1257
  global $updraftplus;
 
1258
 
1259
  $original_index = $this->index;
1260
 
1261
  $itext = (empty($this->index)) ? '' : ($this->index+1);
1262
  $destination_base = $backup_file_basename.'-'.$whichone.$itext.'.zip.tmp';
1263
+ $destination = $this->updraft_dir.'/'.$destination_base;
1264
 
1265
  // Legacy/redundant
1266
  if (empty($whichone) && is_string($whichone)) $whichone = basename($source);
1274
  $backupable_entities = $updraftplus->get_backupable_file_entities(true, false);
1275
 
1276
  # This is only used by one corner-case in BinZip
1277
+ #$this->make_zipfile_source = (isset($backupable_entities[$whichone])) ? $backupable_entities[$whichone] : $source;
1278
+ $this->make_zipfile_source = (is_array($source) && isset($backupable_entities[$whichone])) ? $backupable_entities[$whichone] : dirname($source);
1279
 
1280
  $this->existing_files = array();
1281
  # Used for tracking compression ratios
1285
  // Enumerate existing files
1286
  for ($j=0; $j<=$this->index; $j++) {
1287
  $jtext = ($j == 0) ? '' : ($j+1);
1288
+ $examine_zip = $this->updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$jtext.'.zip'.(($j == $this->index) ? '.tmp' : '');
1289
 
1290
  // If the file exists, then we should grab its index of files inside, and sizes
1291
  // Then, when we come to write a file, we should check if it's already there, and only add if it is not
1327
  $this->zipfiles_batched = array();
1328
  $this->zipfiles_lastwritetime = time();
1329
 
1330
+ $this->zip_basename = $this->updraft_dir.'/'.$backup_file_basename.'-'.$whichone;
1331
 
1332
  $error_occured = false;
1333
 
1349
  @touch($destination);
1350
 
1351
  if (count($this->zipfiles_dirbatched)>0 || count($this->zipfiles_batched)>0) {
1352
+ $updraftplus->log(sprintf("Total entities for the zip file: %d directories, %d files, %s Mb", count($this->zipfiles_dirbatched), count($this->zipfiles_batched), round($this->makezip_recursive_batchedbytes/1048576,1)));
1353
  $add_them = $this->makezip_addfiles();
1354
  if (is_wp_error($add_them)) {
1355
  foreach ($add_them->get_error_messages() as $msg) {
1366
 
1367
  $itext = (empty($this->index)) ? '' : ($this->index+1);
1368
  $destination_base = $backup_file_basename.'-'.$whichone.$itext.'.zip.tmp';
1369
+ $destination = $this->updraft_dir.'/'.$destination_base;
1370
 
1371
  if ($this->zipfiles_added > 0 || $error_occured == false) {
1372
  // ZipArchive::addFile sometimes fails
1373
  if ((file_exists($destination) || $this->index == $original_index) && @filesize($destination) < 90 && 'UpdraftPlus_ZipArchive' == $this->use_zip_object) {
1374
+ $updraftplus->log("makezip_addfiles(ZipArchive) apparently failed (file=".basename($destination).", type=$whichone, size=".filesize($destination).") - retrying with PclZip");
1375
  $this->use_zip_object = 'UpdraftPlus_PclZip';
1376
  return $this->make_zipfile($source, $backup_file_basename, $whichone);
1377
  }
1378
  return true;
1379
  } else {
1380
+ # If ZipArchive, and if an error occurred, and if apparently ZipArchive did nothing, then immediately retry with PclZip. Q. Why this specific criteria? A. Because we've seen it in the wild, and it's quicker to try PcLZip now than waiting until resumption 9 when the automatic switchover happens.
1381
+ if ($error_occurred != false && (file_exists($destination) || $this->index == $original_index) && @filesize($destination) < 90 && 'UpdraftPlus_ZipArchive' == $this->use_zip_object) {
1382
+ $updraftplus->log("makezip_addfiles(ZipArchive) apparently failed (file=".basename($destination).", type=$whichone, size=".filesize($destination).") - retrying with PclZip");
1383
+ $this->use_zip_object = 'UpdraftPlus_PclZip';
1384
+ return $this->make_zipfile($source, $backup_file_basename, $whichone);
1385
+ }
1386
  $updraftplus->log("makezip failure: zipfiles_added=".$this->zipfiles_added.", error_occurred=".$error_occurred." (method=".$this->use_zip_object.")");
1387
  return false;
1388
  }
1728
 
1729
  private function bump_index() {
1730
  global $updraftplus;
 
1731
  $youwhat = $this->whichone;
1732
 
1733
  $timetaken = max(microtime(true)-$this->zip_microtime_start, 0.000001);
1734
 
1735
  $itext = ($this->index == 0) ? '' : ($this->index+1);
1736
  $full_path = $this->zip_basename.$itext.'.zip';
1737
+ $sha = sha1_file($full_path.'.tmp');
1738
+ $updraftplus->jobdata_set('sha1-'.$youwhat.$this->index, $sha);
1739
+
1740
+ $next_full_path = $this->zip_basename.($this->index+2).'.zip';
1741
+ # We touch the next zip before renaming the temporary file; this indicates that the backup for the entity is not *necessarily* finished
1742
+ touch($next_full_path.'.tmp');
1743
+
1744
  @rename($full_path.'.tmp', $full_path);
1745
  $kbsize = filesize($full_path)/1024;
1746
  $rate = round($kbsize/$timetaken, 1);
1747
+ $updraftplus->log("Created ".$this->whichone." zip (".$this->index.") - ".round($kbsize,1)." Kb in ".round($timetaken,1)." s ($rate Kb/s) (SHA1 checksum: ".$sha.")");
1748
  $this->zip_microtime_start = microtime(true);
1749
 
1750
  # No need to add $itext here - we can just delete any temporary files for this zip
1751
  $updraftplus->clean_temporary_files('_'.$updraftplus->nonce."-".$youwhat, 600);
1752
 
1753
  $this->index++;
1754
+ $this->job_file_entities[$youwhat]['index'] = $this->index;
1755
+ $updraftplus->jobdata_set('job_file_entities', $this->job_file_entities);
1756
  }
1757
 
1758
+ }
class-zip.php CHANGED
@@ -5,7 +5,7 @@ if (!defined ('ABSPATH')) die('No direct access allowed');
5
  if (class_exists('ZipArchive')):
6
  # We just add a last_error variable for comaptibility with our UpdraftPlus_PclZip object
7
  class UpdraftPlus_ZipArchive extends ZipArchive {
8
- public $last_error = '(Unknown: ZipArchive does not return error messages)';
9
  }
10
  endif;
11
 
@@ -20,7 +20,6 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
20
  $this->last_error = "No binary zip was found";
21
  return false;
22
  }
23
- $this->debug = UpdraftPlus_Options::get_updraft_option('updraft_debug_mode');
24
  return parent::__construct();
25
  }
26
 
@@ -49,7 +48,7 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
49
  return false;
50
  }
51
 
52
- global $updraftplus;
53
  $updraft_dir = $updraftplus->backups_dir_location();
54
 
55
  $activity = false;
@@ -73,8 +72,7 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
73
 
74
  # If there are no files to add, but there are empty directories, then we need to make sure the directories actually get added
75
  if (0 == count($this->addfiles) && 0 < count($this->adddirs)) {
76
- global $updraftplus_backup;
77
- $dir = dirname(realpath($updraftplus_backup->make_zipfile_source));
78
  $this->addfiles[$dir] = '././.';
79
  }
80
 
@@ -108,7 +106,7 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
108
  while (!feof($pipes[1])) {
109
  $w = fgets($pipes[1], 1024);
110
  // Logging all this really slows things down; use debug to mitigate
111
- if ($w && $this->debug) $updraftplus->log("Output from zip: ".trim($w), 'debug');
112
  if (time() > $last_recorded_alive + 5) {
113
  $updraftplus->record_still_alive();
114
  $last_recorded_alive = time();
@@ -140,7 +138,7 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
140
 
141
  if ($ret != 0 && $ret != 12) {
142
  $updraftplus->log("Binary zip: error (code: $ret - look it up in the Diagnostics section at http://www.info-zip.org/mans/zip.html for interpretation... and also check that your hosting account quota is not full)");
143
- if (!empty($w) && !$this->debug) $updraftplus->log("Last output from zip: ".trim($w), 'debug');
144
  return false;
145
  }
146
 
@@ -290,4 +288,4 @@ class UpdraftPlus_PclZip {
290
  $this->adddirs[] = $dir;
291
  }
292
 
293
- }
5
  if (class_exists('ZipArchive')):
6
  # We just add a last_error variable for comaptibility with our UpdraftPlus_PclZip object
7
  class UpdraftPlus_ZipArchive extends ZipArchive {
8
+ public $last_error = 'Unknown: ZipArchive does not return error messages';
9
  }
10
  endif;
11
 
20
  $this->last_error = "No binary zip was found";
21
  return false;
22
  }
 
23
  return parent::__construct();
24
  }
25
 
48
  return false;
49
  }
50
 
51
+ global $updraftplus, $updraftplus_backup;
52
  $updraft_dir = $updraftplus->backups_dir_location();
53
 
54
  $activity = false;
72
 
73
  # If there are no files to add, but there are empty directories, then we need to make sure the directories actually get added
74
  if (0 == count($this->addfiles) && 0 < count($this->adddirs)) {
75
+ $dir = realpath($updraftplus_backup->make_zipfile_source);
 
76
  $this->addfiles[$dir] = '././.';
77
  }
78
 
106
  while (!feof($pipes[1])) {
107
  $w = fgets($pipes[1], 1024);
108
  // Logging all this really slows things down; use debug to mitigate
109
+ if ($w && $updraftplus_backup->debug) $updraftplus->log("Output from zip: ".trim($w), 'debug');
110
  if (time() > $last_recorded_alive + 5) {
111
  $updraftplus->record_still_alive();
112
  $last_recorded_alive = time();
138
 
139
  if ($ret != 0 && $ret != 12) {
140
  $updraftplus->log("Binary zip: error (code: $ret - look it up in the Diagnostics section at http://www.info-zip.org/mans/zip.html for interpretation... and also check that your hosting account quota is not full)");
141
+ if (!empty($w) && !$updraftplus_backup->debug) $updraftplus->log("Last output from zip: ".trim($w), 'debug');
142
  return false;
143
  }
144
 
288
  $this->adddirs[] = $dir;
289
  }
290
 
291
+ }
includes/Dropbox/API.php CHANGED
@@ -557,7 +557,7 @@ class Dropbox_API
557
  private function getMimeType($data, $isFilename = false)
558
  {
559
  if (extension_loaded('fileinfo')) {
560
- $finfo = new \finfo(FILEINFO_MIME);
561
  if ($isFilename !== false) {
562
  return $finfo->file($data);
563
  }
557
  private function getMimeType($data, $isFilename = false)
558
  {
559
  if (extension_loaded('fileinfo')) {
560
+ $finfo = new finfo(FILEINFO_MIME);
561
  if ($isFilename !== false) {
562
  return $finfo->file($data);
563
  }
includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php CHANGED
@@ -145,7 +145,7 @@ abstract class Dropbox_ConsumerAbstract
145
  {
146
  if (!$token = $this->storage->get('access_token')) {
147
  if (!$token = $this->storage->get('request_token')) {
148
- $token = new \stdClass();
149
  $token->oauth_token = null;
150
  $token->oauth_token_secret = null;
151
  }
@@ -297,7 +297,7 @@ abstract class Dropbox_ConsumerAbstract
297
  private function parseTokenString($response)
298
  {
299
  $parts = explode('&', $response);
300
- $token = new \stdClass();
301
  foreach ($parts as $part) {
302
  list($k, $v) = explode('=', $part, 2);
303
  $k = strtolower($k);
145
  {
146
  if (!$token = $this->storage->get('access_token')) {
147
  if (!$token = $this->storage->get('request_token')) {
148
+ $token = new stdClass();
149
  $token->oauth_token = null;
150
  $token->oauth_token_secret = null;
151
  }
297
  private function parseTokenString($response)
298
  {
299
  $parts = explode('&', $response);
300
+ $token = new stdClass();
301
  foreach ($parts as $part) {
302
  list($k, $v) = explode('=', $part, 2);
303
  $k = strtolower($k);
includes/Dropbox/OAuth/Consumer/Curl.php CHANGED
@@ -121,7 +121,7 @@ class Dropbox_Curl extends Dropbox_ConsumerAbstract
121
  // The API doesn't return an error message for the 304 status code...
122
  // 304's are only returned when the path supplied during metadata calls has not been modified
123
  if ($response['code'] == 304) {
124
- $response['body'] = new \stdClass;
125
  $response['body']->error = 'The folder contents have not changed';
126
  }
127
 
@@ -213,4 +213,4 @@ class Dropbox_Curl extends Dropbox_ConsumerAbstract
213
  {
214
  return $this->lastResponse;
215
  }
216
- }
121
  // The API doesn't return an error message for the 304 status code...
122
  // 304's are only returned when the path supplied during metadata calls has not been modified
123
  if ($response['code'] == 304) {
124
+ $response['body'] = new stdClass;
125
  $response['body']->error = 'The folder contents have not changed';
126
  }
127
 
213
  {
214
  return $this->lastResponse;
215
  }
216
+ }
includes/S3.php CHANGED
@@ -157,9 +157,9 @@ class S3
157
  * @param constant $type CURL proxy type
158
  * @return void
159
  */
160
- public static function setProxy($host, $user = null, $pass = null, $type = CURLPROXY_SOCKS5)
161
  {
162
- self::$proxy = array('host' => $host, 'type' => $type, 'user' => null, 'pass' => 'null');
163
  }
164
 
165
 
@@ -2011,12 +2011,17 @@ final class S3Request
2011
 
2012
  curl_setopt($curl, CURLOPT_URL, $url);
2013
 
2014
- if (S3::$proxy != null && isset(S3::$proxy['host']))
 
 
2015
  {
2016
  curl_setopt($curl, CURLOPT_PROXY, S3::$proxy['host']);
2017
  curl_setopt($curl, CURLOPT_PROXYTYPE, S3::$proxy['type']);
2018
- if (isset(S3::$proxy['user'], S3::$proxy['pass']) && S3::$proxy['user'] != null && S3::$proxy['pass'] != null)
 
 
2019
  curl_setopt($curl, CURLOPT_PROXYUSERPWD, sprintf('%s:%s', S3::$proxy['user'], S3::$proxy['pass']));
 
2020
  }
2021
 
2022
  // Headers
157
  * @param constant $type CURL proxy type
158
  * @return void
159
  */
160
+ public static function setProxy($host, $user = null, $pass = null, $type = CURLPROXY_SOCKS5, $port = null)
161
  {
162
+ self::$proxy = array('host' => $host, 'type' => $type, 'user' => $user, 'pass' => $pass, 'port' => $port);
163
  }
164
 
165
 
2011
 
2012
  curl_setopt($curl, CURLOPT_URL, $url);
2013
 
2014
+ $wp_proxy = new WP_HTTP_Proxy();
2015
+
2016
+ if (S3::$proxy != null && isset(S3::$proxy['host']) && $wp_proxy->send_through_proxy($url))
2017
  {
2018
  curl_setopt($curl, CURLOPT_PROXY, S3::$proxy['host']);
2019
  curl_setopt($curl, CURLOPT_PROXYTYPE, S3::$proxy['type']);
2020
+ if (!empty(S3::$proxy['port'])) curl_setopt($curl,CURLOPT_PROXYPORT, S3::$proxy['port']);
2021
+ if (isset(S3::$proxy['user'], S3::$proxy['pass']) && S3::$proxy['user'] != null && S3::$proxy['pass'] != null) {
2022
+ curl_setopt($curl, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
2023
  curl_setopt($curl, CURLOPT_PROXYUSERPWD, sprintf('%s:%s', S3::$proxy['user'], S3::$proxy['pass']));
2024
+ }
2025
  }
2026
 
2027
  // Headers
includes/class-semaphore.php CHANGED
@@ -38,7 +38,7 @@ class UpdraftPlus_Semaphore {
38
  ");
39
 
40
  if ($affected == '0' and !$this->stuck_check()) {
41
- $updraftplus->log('Semaphore lock ('.$this->lock_name.') failed. (Line '.__LINE__.')');
42
  return false;
43
  }
44
 
@@ -51,7 +51,7 @@ class UpdraftPlus_Semaphore {
51
  ");
52
  if ($affected != '1') {
53
  if (!$this->stuck_check()) {
54
- $updraftplus->log('Semaphore lock ('.$this->lock_name.') failed. (Line '.__LINE__.')');
55
  return false;
56
  }
57
 
@@ -62,7 +62,7 @@ class UpdraftPlus_Semaphore {
62
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
63
  ");
64
 
65
- $updraftplus->log('Semaphore ('.$this->lock_name.') reset to 1.');
66
  }
67
 
68
  // Set the lock time
@@ -73,7 +73,7 @@ class UpdraftPlus_Semaphore {
73
  ", current_time('mysql', 1)));
74
  $updraftplus->log('Set semaphore last lock ('.$this->lock_name.') time to '.current_time('mysql', 1));
75
 
76
- $updraftplus->log('Semaphore lock ('.$this->lock_name.') complete.');
77
  return true;
78
  }
79
 
@@ -100,7 +100,7 @@ class UpdraftPlus_Semaphore {
100
  SET option_value = CAST(option_value AS UNSIGNED) + 1
101
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
102
  ");
103
- $updraftplus->log('Incremented the semaphore ('.$this->lock_name.') by 1.');
104
  }
105
 
106
  return $this;
@@ -120,7 +120,7 @@ class UpdraftPlus_Semaphore {
120
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
121
  AND CAST(option_value AS UNSIGNED) > 0
122
  ");
123
- $updraftplus->log('Decremented the semaphore ('.$this->lock_name.') by 1.');
124
  }
125
 
126
  /**
@@ -141,11 +141,11 @@ class UpdraftPlus_Semaphore {
141
  ");
142
 
143
  if ($result == '1') {
144
- $updraftplus->log('Semaphore ('.$this->lock_name.') unlocked.');
145
  return true;
146
  }
147
 
148
- $updraftplus->log('Semaphore ('.$this->lock_name.') still locked.');
149
  return false;
150
  }
151
 
@@ -163,16 +163,17 @@ class UpdraftPlus_Semaphore {
163
  }
164
 
165
  $current_time = current_time('mysql', 1);
 
 
166
  $affected = $wpdb->query($wpdb->prepare("
167
  UPDATE $wpdb->options
168
  SET option_value = %s
169
  WHERE option_name = 'updraftplus_last_lock_time_".$this->lock_name."'
170
- AND option_value <= DATE_SUB(%s, INTERVAL 3 MINUTE)
171
- ", $current_time, $current_time));
172
 
173
- if ($affected == '1') {
174
  $updraftplus->log('Semaphore ('.$this->lock_name.') was stuck, set lock time to '.$current_time);
175
-
176
  $this->lock_broke = true;
177
  return true;
178
  }
38
  ");
39
 
40
  if ($affected == '0' and !$this->stuck_check()) {
41
+ $updraftplus->log('Semaphore lock ('.$this->lock_name.') failed (line '.__LINE__.')');
42
  return false;
43
  }
44
 
51
  ");
52
  if ($affected != '1') {
53
  if (!$this->stuck_check()) {
54
+ $updraftplus->log('Semaphore lock ('.$this->lock_name.') failed (line '.__LINE__.')');
55
  return false;
56
  }
57
 
62
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
63
  ");
64
 
65
+ $updraftplus->log('Semaphore ('.$this->lock_name.') reset to 1');
66
  }
67
 
68
  // Set the lock time
73
  ", current_time('mysql', 1)));
74
  $updraftplus->log('Set semaphore last lock ('.$this->lock_name.') time to '.current_time('mysql', 1));
75
 
76
+ $updraftplus->log('Semaphore lock ('.$this->lock_name.') complete');
77
  return true;
78
  }
79
 
100
  SET option_value = CAST(option_value AS UNSIGNED) + 1
101
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
102
  ");
103
+ $updraftplus->log('Incremented the semaphore ('.$this->lock_name.') by 1');
104
  }
105
 
106
  return $this;
120
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
121
  AND CAST(option_value AS UNSIGNED) > 0
122
  ");
123
+ $updraftplus->log('Decremented the semaphore ('.$this->lock_name.') by 1');
124
  }
125
 
126
  /**
141
  ");
142
 
143
  if ($result == '1') {
144
+ $updraftplus->log('Semaphore ('.$this->lock_name.') unlocked');
145
  return true;
146
  }
147
 
148
+ $updraftplus->log('Semaphore ('.$this->lock_name.') still locked');
149
  return false;
150
  }
151
 
163
  }
164
 
165
  $current_time = current_time('mysql', 1);
166
+ $three_minutes_before = gmdate('Y-m-d H:i:s', time()-180);
167
+
168
  $affected = $wpdb->query($wpdb->prepare("
169
  UPDATE $wpdb->options
170
  SET option_value = %s
171
  WHERE option_name = 'updraftplus_last_lock_time_".$this->lock_name."'
172
+ AND option_value <= %s
173
+ ", $current_time, $three_minutes_before));
174
 
175
+ if ('1' == $affected) {
176
  $updraftplus->log('Semaphore ('.$this->lock_name.') was stuck, set lock time to '.$current_time);
 
177
  $this->lock_broke = true;
178
  return true;
179
  }
includes/get-cpanel-quota-usage.pl ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/local/bin/perl
2
+
3
+ use strict;
4
+ use Env qw(UPDRAFTPLUSKEY);
5
+
6
+ if ($UPDRAFTPLUSKEY ne 'updraftplus') { die('Error'); }
7
+ BEGIN { unshift @INC, '/usr/local/cpanel'; }
8
+
9
+ use Cpanel::Quota ();
10
+
11
+ # Used, limit, remain, files used, files limit, files remain
12
+ my @homesize = ( Cpanel::Quota::displayquota( { 'bytes' => 1, 'include_sqldbs' => 1, 'include_mailman' => 1, }));
13
+ print 'RESULT: '.join(" ", @homesize)."\n";
includes/phpseclib/Net/SCP.php CHANGED
@@ -261,6 +261,7 @@ class Net_SCP {
261
  $content = '';
262
  while ($size < $info['size']) {
263
  $data = $this->_receive();
 
264
  // SCP usually seems to split stuff out into 16k chunks
265
  $size+= strlen($data);
266
 
261
  $content = '';
262
  while ($size < $info['size']) {
263
  $data = $this->_receive();
264
+ if (strlen($data) + $size > $info['size']) $data = substr($data, 0, $info['size'] - $size);
265
  // SCP usually seems to split stuff out into 16k chunks
266
  $size+= strlen($data);
267
 
includes/updraft-admin-ui.js CHANGED
@@ -28,20 +28,25 @@ function updraft_restore_setoptions(entities) {
28
  jQuery('#updraft-restore-modal').dialog("option", "height", height);
29
  }
30
 
31
-
32
  var updraft_restore_stage = 1;
33
  var lastlog_lastmessage = "";
34
  var lastlog_lastdata = "";
35
- var lastlog_sdata = {
36
- action: 'updraft_ajax',
37
- subaction: 'lastlog',
38
- };
39
 
40
  function updraft_activejobs_update(repeat) {
41
- jQuery.get(ajaxurl, { action: 'updraft_ajax', subaction: 'activejobs_list', nonce: updraft_credentialtest_nonce }, function(response) {
42
- try {
 
 
 
 
 
 
 
 
43
  resp = jQuery.parseJSON(response);
44
- nexttimer = 1500;
45
  if (lastlog_lastdata == response) { nexttimer = 4500; }
46
  if (repeat) { setTimeout(function(){updraft_activejobs_update(true);}, nexttimer);}
47
  lastlog_lastdata = response;
@@ -49,14 +54,28 @@ function updraft_activejobs_update(repeat) {
49
  jQuery('#updraft_activejobs').html(resp.j);
50
  if (resp.j != null && resp.j != '') {
51
  jQuery('#updraft_activejobsrow').show();
 
 
 
52
  } else {
53
  if (!jQuery('#updraft_activejobsrow').is(':hidden')) {
54
  if (typeof lastbackup_laststatus != 'undefined') { updraft_showlastbackup(); }
55
  jQuery('#updraft_activejobsrow').hide();
56
  }
57
  }
 
 
 
 
 
 
 
 
 
 
58
  } catch(err) {
59
  console.log(updraftlion.unexpectedresponse+' '+response);
 
60
  }
61
  });
62
  }
@@ -210,7 +229,7 @@ function updraftplus_deletefromserver(timestamp, type, findex) {
210
  function updraftplus_downloadstage2(timestamp, type, findex) {
211
  location.href=ajaxurl+'?_wpnonce='+updraft_download_nonce+'&timestamp='+timestamp+'&type='+type+'&stage=2&findex='+findex+'&action=updraft_download_backup';
212
  }
213
- function updraft_downloader(base, nonce, what, whicharea, set_contents, prettydate) {
214
  if (typeof set_contents !== "string") set_contents=set_contents.toString();
215
  var set_contents = set_contents.split(',');
216
  for (var i=0;i<set_contents.length; i++) {
@@ -221,13 +240,20 @@ function updraft_downloader(base, nonce, what, whicharea, set_contents, prettyda
221
  if (!jQuery('#'+stid).length) {
222
  var prdate = (prettydate) ? prettydate : nonce;
223
  jQuery(whicharea).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" id="'+stid+'" class="updraftplus_downloader"><button onclick="jQuery(\'#'+stid+'\').fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>Download '+what+itext+' ('+prdate+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file" id="'+stid+'_st"><div class="dlfileprogress" style="width: 0;"></div></div>');
224
- // <b><span class="dlname">??</span></b> (<span class="dlsofar">?? KB</span>/<span class="dlsize">??</span> KB)
225
- (function(base, nonce, what, i) {
226
- setTimeout(function(){updraft_downloader_status(base, nonce, what, i);}, 300);
227
- })(base, nonce, what, set_contents[i]);
 
228
  }
229
  // Now send the actual request to kick it all off
230
- jQuery.post(ajaxurl, jQuery('#uddownloadform_'+what+'_'+nonce+'_'+set_contents[i]).serialize());
 
 
 
 
 
 
231
  }
232
  // We don't want the form to submit as that replaces the document
233
  return false;
@@ -301,6 +327,9 @@ var dlstatus_sdata = {
301
  };
302
  dlstatus_lastlog = '';
303
  function updraft_downloader_status(base, nonce, what, findex) {
 
 
 
304
  if (findex == null || findex == 0 || findex == '') { findex='0'; }
305
  // Get the DOM id of the status div (add _st for the id of the file itself)
306
  var stid = base+nonce+'_'+what+'_'+findex;
@@ -317,31 +346,7 @@ function updraft_downloader_status(base, nonce, what, findex) {
317
  if (dlstatus_lastlog == response) { nexttimer = 3000; }
318
  try {
319
  var resp = jQuery.parseJSON(response);
320
- var cancel_repeat = 0;
321
- if (resp.e != null) {
322
- jQuery('#'+stid+' .raw').html('<strong>'+updraftlion.error+'</strong> '+resp.e);
323
- console.log(resp);
324
- } else if (resp.p != null) {
325
- jQuery('#'+stid+'_st .dlfileprogress').width(resp.p+'%');
326
- //jQuery('#'+stid+'_st .dlsofar').html(Math.round(resp.s/1024));
327
- //jQuery('#'+stid+'_st .dlsize').html(Math.round(resp.t/1024));
328
- if (resp.m != null) {
329
- if (resp.p >=100 && base == 'udrestoredlstatus_') {
330
- jQuery('#'+stid+' .raw').html(resp.m);
331
- jQuery('#'+stid).fadeOut('slow', function() { jQuery(this).remove(); updraft_restorer_checkstage2(0);});
332
- } else if (resp.p < 100 || base != 'uddlstatus_') {
333
- jQuery('#'+stid+' .raw').html(resp.m);
334
- } else {
335
- jQuery('#'+stid+' .raw').html(updraftlion.fileready+' '+ updraftlion.youshould+' <button type="button" onclick="updraftplus_downloadstage2(\''+nonce+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.downloadtocomputer+'</button> '+updraftlion.andthen+' <button id="uddownloaddelete_'+nonce+'_'+what+'" type="button" onclick="updraftplus_deletefromserver(\''+nonce+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.deletefromserver+'</button>');
336
- }
337
- }
338
- dlstatus_lastlog = response;
339
- } else if (resp.m != null) {
340
- jQuery('#'+stid+' .raw').html(resp.m);
341
- } else {
342
- alert(updraftlion.jsonnotunderstood+' ('+response+')');
343
- cancel_repeat = 1;
344
- }
345
  if (cancel_repeat == 0) {
346
  (function(base, nonce, what, findex) {
347
  setTimeout(function(){updraft_downloader_status(base, nonce, what, findex)}, nexttimer);
@@ -353,7 +358,44 @@ function updraft_downloader_status(base, nonce, what, findex) {
353
  });
354
  }
355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  jQuery(document).ready(function($){
 
 
 
 
 
 
 
357
 
358
  //setTimeout(function(){updraft_showlastlog(true);}, 1200);
359
  setTimeout(function() {updraft_activejobs_update(true);}, 1200);
@@ -421,9 +463,11 @@ jQuery(document).ready(function($){
421
  updraft_restore_stage = 2;
422
  var pretty_date = jQuery('.updraft_restore_date').first().text();
423
  // Create the downloader active widgets
 
424
  for (var i=0; i<whichselected.length; i++) {
425
- updraft_downloader('udrestoredlstatus_', jQuery('#updraft_restore_timestamp').val(), whichselected[i][0], '#ud_downloadstatus2', whichselected[i][1], pretty_date);
426
  }
 
427
  // Make sure all are downloaded
428
  } else if (updraft_restore_stage == 2) {
429
  updraft_restorer_checkstage2(1);
@@ -448,9 +492,17 @@ jQuery(document).ready(function($){
448
 
449
  var backupnow_modal_buttons = {};
450
  backupnow_modal_buttons[updraftlion.backupnow] = function() {
 
 
 
 
 
 
 
 
451
  jQuery(this).dialog("close");
452
  jQuery('#updraft_backup_started').html('<em>'+updraftlion.requeststart+'</em>').slideDown('');
453
- jQuery.post(ajaxurl, { action: 'updraft_ajax', subaction: 'backupnow', nonce: updraft_credentialtest_nonce }, function(response) {
454
  jQuery('#updraft_backup_started').html(response);
455
  // Kick off some activity to get WP to get the scheduled task moving as soon as possible
456
  setTimeout(function() {jQuery.get(updraft_siteurl);}, 5100);
@@ -461,9 +513,7 @@ jQuery(document).ready(function($){
461
  jQuery('#updraft_lastlogmessagerow').fadeOut('slow', function() {
462
  jQuery(this).fadeIn('slow');
463
  });
464
- },
465
- 3200
466
- );
467
  setTimeout(function() {jQuery('#updraft_backup_started').fadeOut('slow');}, 60000);
468
  // Should be redundant (because of the polling for the last log line), but harmless (invokes page load)
469
  });
@@ -471,7 +521,7 @@ jQuery(document).ready(function($){
471
  backupnow_modal_buttons[updraftlion.cancel] = function() { jQuery(this).dialog("close"); };
472
 
473
  jQuery("#updraft-backupnow-modal" ).dialog({
474
- autoOpen: false, height: 265, width: 390, modal: true,
475
  buttons: backupnow_modal_buttons
476
  });
477
 
@@ -661,9 +711,6 @@ jQuery(document).ready(function($){
661
  alert(updraftlion.uploaderror+" "+response.response.substring(6));
662
  } else if (response.response.substring(0,3) == 'OK:') {
663
  bkey = response.response.substring(3);
664
- // $('#' + file.id + " .fileprogress").width("100%");
665
- // $('#' + file.id + " span").append('<button type="button" onclick="updraftplus_downloadstage2(\'db\', \'db\'">Download to your computer</button>');
666
- // $('#' + file.id + " span").append('<form action="admin-ajax.php" onsubmit="return updraft_downloader(\'+bkey+''\', \'db\')" method="post"><input type="hidden" name="_wpnonce" value="'+updraft_downloader_nonce+'"><input type="hidden" name="action" value="updraft_download_backup" /><input type="hidden" name="type" value="db" /><input type="hidden" name="timestamp" value="'+bkey+'" /><input type="submit" value="Download" /></form>');
667
  $('#' + file.id + " .fileprogress").hide();
668
  $('#' + file.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+'&decrypt_key='+$('#updraftplus_db_decrypt').val()+'">'+updraftlion.followlink+'</a> '+updraftlion.thiskey+' '+$('#updraftplus_db_decrypt').val().replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;"));
669
  } else {
28
  jQuery('#updraft-restore-modal').dialog("option", "height", height);
29
  }
30
 
 
31
  var updraft_restore_stage = 1;
32
  var lastlog_lastmessage = "";
33
  var lastlog_lastdata = "";
34
+ var lastlog_jobs = "";
35
+ var lastlog_sdata = { action: 'updraft_ajax', subaction: 'lastlog' };
 
 
36
 
37
  function updraft_activejobs_update(repeat) {
38
+ var downloaders = '';
39
+ jQuery('#ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader').each(function(x,y){
40
+ var dat = jQuery(y).data('downloaderfor');
41
+ if (typeof dat == 'object') {
42
+ if (downloaders != '') { downloaders = downloaders + ':'; }
43
+ downloaders = downloaders + dat.base + ',' + dat.nonce + ',' + dat.what + ',' + dat.index;
44
+ }
45
+ });
46
+ jQuery.get(ajaxurl, { action: 'updraft_ajax', subaction: 'activejobs_list', nonce: updraft_credentialtest_nonce, downloaders: downloaders }, function(response) {
47
+ try {
48
  resp = jQuery.parseJSON(response);
49
+ nexttimer = 1400;
50
  if (lastlog_lastdata == response) { nexttimer = 4500; }
51
  if (repeat) { setTimeout(function(){updraft_activejobs_update(true);}, nexttimer);}
52
  lastlog_lastdata = response;
54
  jQuery('#updraft_activejobs').html(resp.j);
55
  if (resp.j != null && resp.j != '') {
56
  jQuery('#updraft_activejobsrow').show();
57
+ if ('' == lastlog_jobs) {
58
+ setTimeout(function(){jQuery('#updraft_backup_started').slideUp();}, 3500);
59
+ }
60
  } else {
61
  if (!jQuery('#updraft_activejobsrow').is(':hidden')) {
62
  if (typeof lastbackup_laststatus != 'undefined') { updraft_showlastbackup(); }
63
  jQuery('#updraft_activejobsrow').hide();
64
  }
65
  }
66
+ lastlog_jobs = resp.j;
67
+ // Download status
68
+ if (resp.ds != null && resp.ds != '') {
69
+ jQuery(resp.ds).each(function(x, dstatus){
70
+ if (dstatus.base != '') {
71
+ //trycatch
72
+ updraft_downloader_status_update(dstatus.base, dstatus.timestamp, dstatus.what, dstatus.findex, dstatus, response);
73
+ }
74
+ });
75
+ }
76
  } catch(err) {
77
  console.log(updraftlion.unexpectedresponse+' '+response);
78
+ console.log(err);
79
  }
80
  });
81
  }
229
  function updraftplus_downloadstage2(timestamp, type, findex) {
230
  location.href=ajaxurl+'?_wpnonce='+updraft_download_nonce+'&timestamp='+timestamp+'&type='+type+'&stage=2&findex='+findex+'&action=updraft_download_backup';
231
  }
232
+ function updraft_downloader(base, nonce, what, whicharea, set_contents, prettydate, async) {
233
  if (typeof set_contents !== "string") set_contents=set_contents.toString();
234
  var set_contents = set_contents.split(',');
235
  for (var i=0;i<set_contents.length; i++) {
240
  if (!jQuery('#'+stid).length) {
241
  var prdate = (prettydate) ? prettydate : nonce;
242
  jQuery(whicharea).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" id="'+stid+'" class="updraftplus_downloader"><button onclick="jQuery(\'#'+stid+'\').fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>Download '+what+itext+' ('+prdate+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file" id="'+stid+'_st"><div class="dlfileprogress" style="width: 0;"></div></div>');
243
+ jQuery('#'+stid).data('downloaderfor', { base: base, nonce: nonce, what: what, index: i });
244
+ // Legacy: set up watcher
245
+ //(function(base, nonce, what, i) {
246
+ // setTimeout(function(){updraft_downloader_status(base, nonce, what, i);}, 300);
247
+ //})(base, nonce, what, set_contents[i]);
248
  }
249
  // Now send the actual request to kick it all off
250
+ jQuery.ajax({
251
+ url: ajaxurl,
252
+ timeout: 10000,
253
+ type: 'POST',
254
+ async: async,
255
+ data: jQuery('#uddownloadform_'+what+'_'+nonce+'_'+set_contents[i]).serialize()
256
+ });
257
  }
258
  // We don't want the form to submit as that replaces the document
259
  return false;
327
  };
328
  dlstatus_lastlog = '';
329
  function updraft_downloader_status(base, nonce, what, findex) {
330
+ // Short-circuit
331
+ return;
332
+
333
  if (findex == null || findex == 0 || findex == '') { findex='0'; }
334
  // Get the DOM id of the status div (add _st for the id of the file itself)
335
  var stid = base+nonce+'_'+what+'_'+findex;
346
  if (dlstatus_lastlog == response) { nexttimer = 3000; }
347
  try {
348
  var resp = jQuery.parseJSON(response);
349
+ var cancel_repeat = updraft_downloader_status_update(base, nonce, what, findex, resp, response);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  if (cancel_repeat == 0) {
351
  (function(base, nonce, what, findex) {
352
  setTimeout(function(){updraft_downloader_status(base, nonce, what, findex)}, nexttimer);
358
  });
359
  }
360
 
361
+ function updraft_downloader_status_update(base, nonce, what, findex, resp, response) {
362
+ var stid = base+nonce+'_'+what+'_'+findex;
363
+ var cancel_repeat = 0;
364
+ if (resp.e != null) {
365
+ jQuery('#'+stid+' .raw').html('<strong>'+updraftlion.error+'</strong> '+resp.e);
366
+ console.log(resp);
367
+ } else if (resp.p != null) {
368
+ jQuery('#'+stid+'_st .dlfileprogress').width(resp.p+'%');
369
+ //jQuery('#'+stid+'_st .dlsofar').html(Math.round(resp.s/1024));
370
+ //jQuery('#'+stid+'_st .dlsize').html(Math.round(resp.t/1024));
371
+ if (resp.m != null) {
372
+ if (resp.p >=100 && base == 'udrestoredlstatus_') {
373
+ jQuery('#'+stid+' .raw').html(resp.m);
374
+ jQuery('#'+stid).fadeOut('slow', function() { jQuery(this).remove(); updraft_restorer_checkstage2(0);});
375
+ } else if (resp.p < 100 || base != 'uddlstatus_') {
376
+ jQuery('#'+stid+' .raw').html(resp.m);
377
+ } else {
378
+ jQuery('#'+stid+' .raw').html(updraftlion.fileready+' '+ updraftlion.youshould+' <button type="button" onclick="updraftplus_downloadstage2(\''+nonce+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.downloadtocomputer+'</button> '+updraftlion.andthen+' <button id="uddownloaddelete_'+nonce+'_'+what+'" type="button" onclick="updraftplus_deletefromserver(\''+nonce+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.deletefromserver+'</button>');
379
+ }
380
+ }
381
+ dlstatus_lastlog = response;
382
+ } else if (resp.m != null) {
383
+ jQuery('#'+stid+' .raw').html(resp.m);
384
+ } else {
385
+ jQuery('#'+stid+' .raw').html(updraftlion.jsonnotunderstood+' ('+response+')');
386
+ cancel_repeat = 1;
387
+ }
388
+ return cancel_repeat;
389
+ }
390
+
391
  jQuery(document).ready(function($){
392
+
393
+ var bigbutton_width = 180;
394
+ jQuery('.updraft-bigbutton').each(function(x,y){
395
+ var bwid = jQuery(y).width();
396
+ if (bwid > bigbutton_width) bigbutton_width = bwid;
397
+ });
398
+ if (bigbutton_width > 180) jQuery('.updraft-bigbutton').width(bigbutton_width);
399
 
400
  //setTimeout(function(){updraft_showlastlog(true);}, 1200);
401
  setTimeout(function() {updraft_activejobs_update(true);}, 1200);
463
  updraft_restore_stage = 2;
464
  var pretty_date = jQuery('.updraft_restore_date').first().text();
465
  // Create the downloader active widgets
466
+
467
  for (var i=0; i<whichselected.length; i++) {
468
+ updraft_downloader('udrestoredlstatus_', jQuery('#updraft_restore_timestamp').val(), whichselected[i][0], '#ud_downloadstatus2', whichselected[i][1], pretty_date, false);
469
  }
470
+
471
  // Make sure all are downloaded
472
  } else if (updraft_restore_stage == 2) {
473
  updraft_restorer_checkstage2(1);
492
 
493
  var backupnow_modal_buttons = {};
494
  backupnow_modal_buttons[updraftlion.backupnow] = function() {
495
+
496
+ var backupnow_nodb = jQuery('#backupnow_nodb').is(':checked') ? 1 : 0;
497
+ var backupnow_nofiles = jQuery('#backupnow_nofiles').is(':checked') ? 1 : 0;
498
+ if (backupnow_nodb && backupnow_nofiles) {
499
+ alert(updraftlion.excludedeverything);
500
+ return;
501
+ }
502
+
503
  jQuery(this).dialog("close");
504
  jQuery('#updraft_backup_started').html('<em>'+updraftlion.requeststart+'</em>').slideDown('');
505
+ jQuery.post(ajaxurl, { action: 'updraft_ajax', subaction: 'backupnow', nonce: updraft_credentialtest_nonce, backupnow_nodb: backupnow_nodb, backupnow_nofiles: backupnow_nofiles }, function(response) {
506
  jQuery('#updraft_backup_started').html(response);
507
  // Kick off some activity to get WP to get the scheduled task moving as soon as possible
508
  setTimeout(function() {jQuery.get(updraft_siteurl);}, 5100);
513
  jQuery('#updraft_lastlogmessagerow').fadeOut('slow', function() {
514
  jQuery(this).fadeIn('slow');
515
  });
516
+ }, 3200);
 
 
517
  setTimeout(function() {jQuery('#updraft_backup_started').fadeOut('slow');}, 60000);
518
  // Should be redundant (because of the polling for the last log line), but harmless (invokes page load)
519
  });
521
  backupnow_modal_buttons[updraftlion.cancel] = function() { jQuery(this).dialog("close"); };
522
 
523
  jQuery("#updraft-backupnow-modal" ).dialog({
524
+ autoOpen: false, height: 295, width: 440, modal: true,
525
  buttons: backupnow_modal_buttons
526
  });
527
 
711
  alert(updraftlion.uploaderror+" "+response.response.substring(6));
712
  } else if (response.response.substring(0,3) == 'OK:') {
713
  bkey = response.response.substring(3);
 
 
 
714
  $('#' + file.id + " .fileprogress").hide();
715
  $('#' + file.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+'&decrypt_key='+$('#updraftplus_db_decrypt').val()+'">'+updraftlion.followlink+'</a> '+updraftlion.thiskey+' '+$('#updraftplus_db_decrypt').val().replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;"));
716
  } else {
languages/updraftplus-de_DE.mo CHANGED
Binary file
languages/updraftplus-de_DE.po CHANGED
@@ -1,1969 +1,3046 @@
1
- # Copyright (C) 2013 UpdraftPlus - Backup/Restore
2
- # This file is distributed under the same license as the UpdraftPlus - Backup/Restore package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: UpdraftPlus - Backup/Restore 1.5.4\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-03-30 17:26+0100\n"
8
- "PO-Revision-Date: 2013-04-02 07:26+0100\n"
9
- "Last-Translator: Marcel Herrguth <mherrguth@mrgeneration.de>\n"
10
- "Language-Team: THA-Translation <translation@thehomeofanime.de>\n"
11
- "Language: de-DE\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
 
17
 
18
- #: options.php:26
19
- msgid "UpdraftPlus Backups"
20
- msgstr "UpdraftPlus Sicherungen"
21
-
22
- #: updraftplus.php:261
23
- msgid ""
24
- "Bad filename format - this does not look like a file created by UpdraftPlus"
25
  msgstr ""
26
- "Falsches Dateinamen-Format - diese Datei sieht nicht so aus, als würde so "
27
- "von UpdraftPlus erstellt worden sein"
28
-
29
- #: updraftplus.php:295
30
- msgid "Allowed Files"
31
- msgstr "Erlaubte Dateien"
32
-
33
- #: updraftplus.php:372
34
- msgid "Settings"
35
- msgstr "Einstellungen"
36
-
37
- #: updraftplus.php:376
38
- msgid "Add-Ons / Pro Support"
39
- msgstr "Erweiterungen / Pro Support"
40
 
41
- #: updraftplus.php:462
42
- msgid "Plugins"
43
- msgstr "Plugins"
44
 
45
- #: updraftplus.php:463
46
- msgid "Themes"
47
- msgstr "Designs"
48
 
49
- #: updraftplus.php:464
50
- msgid "Uploads"
51
- msgstr "Uploads"
52
 
53
- #: updraftplus.php:478
54
- msgid "Others"
55
- msgstr "Andere"
56
 
57
- #: updraftplus.php:710
58
- msgid ""
59
- "Could not create files in the backup directory. Backup aborted - check your "
60
- "UpdraftPlus settings."
61
  msgstr ""
62
- "Konnte keine Dateien im Sicherungsverzeichnis anlegen. Sicherung abgebrochen "
63
- "- überprüfe deine UpdraftPlus-Einstellungen."
64
 
65
- #: updraftplus.php:778
66
- msgid "Encryption error occurred when encrypting database. Encryption aborted."
67
  msgstr ""
68
- "Verschlüsselungsfehler beim verschlüsseln der Datenbank aufgetreten. "
69
- "Verschlüsselung abgebrochen."
70
 
71
- #: updraftplus.php:812
72
- msgid "The backup apparently succeeded and is now complete"
73
- msgstr "Die Sicherung war anscheinend erfolgreich und ist nun vollständig"
74
 
75
- #: updraftplus.php:815
76
- msgid "The backup attempt has finished, apparently unsuccessfully"
77
- msgstr "Der Sicherungsversuch ist beendet, anscheinend nicht erfolgreich"
78
 
79
- #: updraftplus.php:818
80
- msgid "The backup has not finished; a resumption is scheduled within 5 minutes"
81
  msgstr ""
82
- "Die Sicherung wurde nicht fertiggestellt, eine Wiederaufnahme ist innerhalb "
83
- "der nächsten 5 Minuten geplant"
84
 
85
- #: updraftplus.php:869
86
- msgid "Backed up"
87
- msgstr "gesichert"
88
 
89
- #: updraftplus.php:869
90
- msgid "WordPress backup is complete"
91
- msgstr "WordPress Sicherung vollständig"
92
 
93
- #: updraftplus.php:869
94
- msgid "Backup contains"
95
- msgstr "Sicherung enthält"
96
 
97
- #: updraftplus.php:869
98
- msgid "Latest status"
99
- msgstr "Letzter Status"
100
 
101
- #: updraftplus.php:1124
102
- #, php-format
103
- msgid "Could not create %s zip. Consult the log file for more information."
104
  msgstr ""
105
- "Konnte das ZIP %s nicht erstellen. Sieh in der Logdatei für weitere "
106
- "Informationen nach."
107
 
108
- #: updraftplus.php:1158
109
- #, php-format
110
- msgid "Backup directory (%s) is not writable, or does not exist."
111
- msgstr "Sicherungsverzeichnis (%s) ist nicht schreibbar oder existiert nicht."
112
 
113
- #: updraftplus.php:1248
114
- msgid "Could not read the content directory"
115
- msgstr "Konnte das Content-Verzeichnis nicht lesen"
116
 
117
- #: updraftplus.php:1278
118
- msgid ""
119
- "Could not save backup history because we have no backup array. Backup "
120
- "probably failed."
121
  msgstr ""
122
- "Konnte Sicherungs-Historie nicht speichern, da es kein Sicherungs-Array "
123
- "gibt. Das Backup ist wahrscheinlich fehlgeschlagen."
124
 
125
- #: updraftplus.php:1307
126
- msgid "Could not open the backup file for writing"
127
- msgstr "Konnte die Sicherungsdatei nicht zum schreiben öffnen."
128
 
129
- #: updraftplus.php:1316
130
- #, php-format
131
- msgid "Generated: %s"
132
- msgstr "Erzeugt: %s"
133
 
134
- #: updraftplus.php:1317
135
- #, php-format
136
- msgid "Hostname: %s"
137
- msgstr "Hostname: %s"
138
 
139
- #: updraftplus.php:1318
140
- #, php-format
141
- msgid "Database: %s"
142
- msgstr "Datenbank: %s"
143
 
144
- #: updraftplus.php:1362
145
- msgid "The backup directory is not writable."
146
- msgstr "Das Sicherungsverzeichnis ist nicht beschreibbar."
147
 
148
- #: updraftplus.php:1383
149
- #, php-format
150
- msgid "Table: %s"
151
- msgstr "Tabelle: %s"
152
 
153
- #: updraftplus.php:1388
154
- #, php-format
155
- msgid "Skipping non-WP table: %s"
156
- msgstr "Überspringe nicht-WP-Tabelle: %s"
157
 
158
- #: updraftplus.php:1479
159
- #, php-format
160
- msgid "Delete any existing table %s"
161
- msgstr "Lösche alle vorhandenen Tabellen %s"
162
 
163
- #: updraftplus.php:1488
164
- #, php-format
165
- msgid "Table structure of table %s"
166
- msgstr "Tabellenstruktur von Tabelle %s"
167
 
168
- #: updraftplus.php:1494
169
- #, php-format
170
- msgid "Error with SHOW CREATE TABLE for %s."
171
- msgstr "Fehler mit SHOW CREATE TABLE für %s"
172
 
173
- #: updraftplus.php:1501
174
- #, php-format
175
- msgid "Error getting table structure of %s"
176
- msgstr "Fehler beim Lesen der Tabellenstruktur von %s"
177
 
178
- #: updraftplus.php:1507
179
- #, php-format
180
- msgid "Data contents of table %s"
181
- msgstr "Daten-Inhalt von Tabelle %s"
182
 
183
- #: updraftplus.php:1563
184
- #, php-format
185
- msgid "End of data contents of table %s"
186
- msgstr "Dateninhalt Ende von Tabelle %s"
187
 
188
- #: updraftplus.php:1815
189
- msgid "Nothing yet logged"
190
- msgstr "Noch nichts aufgezeichnet"
191
 
192
- #: updraftplus.php:1836
193
- msgid "File downloading"
194
- msgstr "Datei wird heruntergeladen"
195
 
196
- #: updraftplus.php:1838
197
- msgid "No local copy present."
198
- msgstr "Keine lokale Sicherung vorhanden."
199
 
200
- #: updraftplus.php:2014
201
- msgid "File not found"
202
- msgstr "Datei nicht gefunden"
203
 
204
- #: updraftplus.php:2033
205
- #, php-format
206
- msgid ""
207
- "The backup archive for restoring this file could not be found. The remote "
208
- "storage method in use (%s) does not allow us to retrieve files. To proceed "
209
- "with this restoration, you need to obtain a copy of this file and place it "
210
- "inside UpdraftPlus's working folder"
211
  msgstr ""
212
- "Das Sicherungsarchiv zum Wiederherstellen der Datei konnte nicht gefunden "
213
- "werden. Die benutzte Fernspeicher-Methode (%s) erlaubt es uns nicht, Dateien "
214
- "zu laden. Um mit der Wiederherstellung fortzufahren, musst du eine Kopie der "
215
- "Datei in das UpdraftPlus Arbeitsverzeichnis kopieren."
216
 
217
- #: updraftplus.php:2043
218
- msgid ""
219
- "This backup does not exist in the backup history - restoration aborted. "
220
- "Timestamp:"
221
  msgstr ""
222
- "Diese Sicherung existiert in der Sicherungshistorie nicht - "
223
- "Wiederherstellung abgebrochen. Zeitstempel:"
224
 
225
- #: updraftplus.php:2056
226
- msgid "UpdraftPlus Restoration: Progress"
227
- msgstr "UpdraftPlus Wiederherstellung: Fortschritt"
228
 
229
- #: updraftplus.php:2063
230
- msgid "ABORT: Could not find the information on which entities to restore."
231
  msgstr ""
232
- "ABBRUCH: Konnte die Informationen, welche Einheiten wiederherzustellen sind, "
233
- "nicht finden."
234
 
235
- #: updraftplus.php:2077 updraftplus.php:2820 updraftplus.php:3072
236
- msgid "Database"
237
- msgstr "Datenbank"
238
 
239
- #: updraftplus.php:2083
240
- msgid "This component was not selected for restoration - skipping."
241
  msgstr ""
242
- "Diese Komponente wurde nicht für die Wiederherstellung ausgewählt - "
243
- "überspringe."
244
 
245
- #: updraftplus.php:2091
246
- msgid ""
247
- "File is not locally present - needs retrieving from remote storage (for "
248
- "large files, it is better to do this in advance from the download console)"
249
  msgstr ""
250
- "Datei ist lokal nicht verfügbar - erfordert herunterladen von Fernspeicher "
251
- "(bei großen Dateien ist es besser, diese vorher via Download-Konsole "
252
- "herunterzuladen)"
253
 
254
- #: updraftplus.php:2097
255
- msgid "Archive is expected to be size:"
256
- msgstr "Die zu erwartene Archivgröße:"
257
 
258
- #: updraftplus.php:2102
259
- msgid "ERROR"
260
- msgstr "FEHLER"
261
 
262
- #: updraftplus.php:2105
263
- msgid ""
264
- "The backup records do not contain information about the proper size of this "
265
- "file."
266
  msgstr ""
267
- "Die Sicherungsaufzeichnungen enthalten keine korrekte Größe dieser Datei."
268
 
269
- #: updraftplus.php:2117
270
- msgid "Error message"
271
- msgstr "Fehlermeldung"
272
 
273
- #: updraftplus.php:2123 updraftplus.php:2124
274
- msgid "Could not find one of the files for restoration"
275
- msgstr "Konnte eine Datei für die Wiederherstellung nicht finden."
276
 
277
- #: updraftplus.php:2126
278
- msgid ""
279
- "Databases are not yet restored through this mechanism - use your web host's "
280
- "control panel, phpMyAdmin or a similar tool"
281
  msgstr ""
282
- "Datenbanken werden zur Zeit nicht durch diesen Mechanismus wiederhergestellt "
283
- "- benutze das Control-Panel deines Hosters, phpMyAdmin oder ein ähnliches "
284
- "Hilfsmittel."
285
 
286
- #: updraftplus.php:2132
287
- msgid ""
288
- "Database could not be restored because PHP safe_mode is active on your "
289
- "server. You will need to manually restore the file via phpMyAdmin or "
290
- "another method."
291
  msgstr ""
292
- "Datenbank konnte nicht wiederhergestellt werden, da PHP safe_mode auf diesem "
293
- "Server aktiviert ist. Du musst die Datei via phpMyAdmin oder mit einem "
294
- "anderen Hilfsmittel manuell wiederherstellen."
295
 
296
- #: updraftplus.php:2156
297
- msgid "Delete"
298
- msgstr "Löschen"
299
 
300
- #: updraftplus.php:2290
301
- msgid "Find UpdraftPlus useful?"
302
- msgstr "Findest du UpdraftPlus nützlich?"
303
 
304
- #: updraftplus.php:2290
305
- msgid "Please make a donation"
306
- msgstr "Bitte spende"
307
 
308
- #: updraftplus.php:2295
309
- msgid "Like UpdraftPlus and can spare one minute?"
310
- msgstr "Magst du UpdraftPlus und kannst eine Minute entbehren?"
311
 
312
- #: updraftplus.php:2295
313
- msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
314
- msgstr "Bitte hilf UpdraftPlus by giving a positive Review at wordpress.org"
315
 
316
- #: updraftplus.php:2302
317
- msgid "Need even more features and support? Check out UpdraftPlus Premium"
318
  msgstr ""
319
- "Du brauchst mehr Funktionen und Unterstützung? Schau dir UpdraftPlus Premium "
320
- "an"
321
 
322
- #: updraftplus.php:2311
323
- msgid "Check out UpdraftPlus.Com for help, add-ons and support"
324
  msgstr ""
325
- "Schau dir UpdraftPlus.Com für Hilfe, Erweiterungen und Unterstützugn an."
326
 
327
- #: updraftplus.php:2314
328
- msgid "Want to say thank-you for UpdraftPlus?"
329
- msgstr "Möchtest du dich für UpdraftPlus bedanken?"
330
 
331
- #: updraftplus.php:2314
332
- msgid "Please buy our very cheap 'no adverts' add-on."
333
- msgstr "Bitte kaufe unsere günstige 'Keine Werbung'-Erweiterung."
334
 
335
- #: updraftplus.php:2325
336
- msgid "File backup intervals"
337
- msgstr "Datei-Sicherungs Intervalle"
338
 
339
- #: updraftplus.php:2328
340
- msgid "Manual"
341
- msgstr "Dokumentation"
342
 
343
- #: updraftplus.php:2328
344
- msgid "Every 4 hours"
345
- msgstr "Alle 4 Stunden"
346
 
347
- #: updraftplus.php:2328
348
- msgid "Every 8 hours"
349
- msgstr "Alle 8 Stunden"
350
 
351
- #: updraftplus.php:2328
352
- msgid "Every 12 hours"
353
- msgstr "Alle 12 Stunden"
354
 
355
- #: updraftplus.php:2328
356
- msgid "Daily"
357
- msgstr "Täglich"
358
 
359
- #: updraftplus.php:2328
360
- msgid "Weekly"
361
- msgstr "Wöchentlich"
362
 
363
- #: updraftplus.php:2328
364
- msgid "Fortnightly"
365
- msgstr "Vierzehntägig"
366
 
367
- #: updraftplus.php:2328
368
- msgid "Monthly"
369
- msgstr "Monatlich"
370
 
371
- #: updraftplus.php:2337 updraftplus.php:2355
372
- msgid "and retain this many backups"
373
- msgstr "und behalte so viele Backups"
374
 
375
- #: updraftplus.php:2344
376
- msgid "Database backup intervals"
377
- msgstr "Datenbank-Sicherungs-Intervalle"
378
 
379
- #: updraftplus.php:2362
380
- msgid ""
381
- "If you would like to automatically schedule backups, choose schedules from "
382
- "the dropdowns above. Backups will occur at the intervals specified. If the "
383
- "two schedules are the same, then the two backups will take place together. "
384
- "If you choose \"manual\" then you must click the \"Backup Now\" button "
385
- "whenever you wish a backup to occur."
386
- msgstr ""
387
- "Wenn du automatische Sicherungen planen willst, wähle Sicherungspläne aus "
388
- "den Auswahllisten oben aus. Sicherungen werden zu den definierten "
389
- "Intervallen durchgeführt. Wenn die zwei Sicherungspläne übereinstimmen, "
390
- "werden beide Sicherungen den selben Platz einnehmen. Wenn du \"Manuell\" "
391
- "auswählst, musst du \"Jetzt sichern\" drücken, wann immer du eine Sicherung "
392
- "wünschst."
393
-
394
- #: updraftplus.php:2363
395
- msgid "To fix the time at which a backup should take place,"
396
- msgstr "Um die Zeit zu korrigieren, zu der eine Sicherung stattfinden sollte,"
397
 
398
- #: updraftplus.php:2363
399
- msgid "e.g. if your server is busy at day and you want to run overnight"
400
  msgstr ""
401
- "z.B. wenn dein Server tagsüber sehr beschäftigt ist und du bei Nacht "
402
- "durchführen möchtest"
403
 
404
- #: updraftplus.php:2363
405
- msgid "use the \"Fix Time\" add-on"
406
- msgstr "benutze die \"Fix Time\" Erweiterung"
407
 
408
- #: updraftplus.php:2377
409
- msgid ""
410
- "Any other directories found inside wp-content but exclude these directories:"
411
  msgstr ""
412
- "Alle anderen Verzeichnisse in wp-content, aber ignoriere diese Verzeichnisse:"
413
 
414
- #: updraftplus.php:2383
415
- msgid ""
416
- "Include all of these, unless you are backing them up outside of UpdraftPlus. "
417
- "The above directories are usually everything (except for WordPress core "
418
- "itself which you can download afresh from WordPress.org). But if you have "
419
- "made customised modifications outside of these directories, you need to back "
420
- "them up another way."
421
- msgstr ""
422
- "Füge alle diese hinzu, es seidenn du sicherst zu außerhalb von UpdraftPlus. "
423
- "Die oberen Verzeichnisse sind normaler Weise alles (außer der WordPress-"
424
- "Core, den du frisch von WordPress.org herunterladen). Wenn du manuelle "
425
- "Veränderungen außerhalb dieser Verzeichnisse getätigt hast, musst du diese "
426
- "anders sichern."
427
-
428
- #: updraftplus.php:2383
429
- msgid "Use WordShell for automatic backup, version control and patching"
430
  msgstr ""
431
- "Benutze WordShell für automatische Sicherungen, Versionierung und ausbessern."
432
 
433
- #: updraftplus.php:2387
434
- msgid "Email"
435
- msgstr "E-Mail"
436
 
437
- #: updraftplus.php:2388
438
- msgid ""
439
- "Enter an address here to have a report sent (and the whole backup, if you "
440
- "choose) to it."
441
- msgstr ""
442
- "Gib hier eine Adresse ein, um Berichte zugesandt (und wenn ausgewählt die "
443
- "Sicherungen) zu bekommen."
444
 
445
- #: updraftplus.php:2392
446
- msgid "Database encryption phrase"
447
- msgstr "Datenbank-Verschlüsselungs-Phrase"
448
 
449
- #: updraftplus.php:2399
450
- msgid ""
451
- "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do "
452
- "make a separate record of it and do not lose it, or all your backups "
453
- "<em>will</em> be useless.</strong> Presently, only the database file is "
454
- "encrypted. This is also the key used to decrypt backups from this admin "
455
- "interface (so if you change it, then automatic decryption will not work "
456
- "until you change it back)."
457
- msgstr ""
458
- "Wenn du einen Text hier eingibst, wird dieser benutzt um die Sicherungen zu "
459
- "verschlüsseln (Rijndael). <strong>Sichere diesen Text an einer sicheren "
460
- "stelle um ihn nicht zu verlieren/vergessen - die Sicherungen sind "
461
- "<em>nutzlos</em> wenn du den Text vergisst.</strong> Aktuell wird nur die "
462
- "Datenbank-Datei verschlüsselt. Der Text dient außerdem zur Entschlüsselung "
463
- "der Sicherungen aus dieser Oberfläche (daher funktioniert Entschlüsselung "
464
- "älterer Sicherungen nicht, wenn du diesen änderst)."
465
-
466
- #: updraftplus.php:2403
467
- msgid "Copying Your Backup To Remote Storage"
468
- msgstr "Kopiere deine Sicherung zum Fernspeicher"
469
 
470
- #: updraftplus.php:2407
471
- msgid "Choose your remote storage"
472
- msgstr "Wähle deinen Fern-Speicher"
473
 
474
- #: updraftplus.php:2419
475
- msgid "None"
476
- msgstr "keine"
477
 
478
- #: updraftplus.php:2500 updraftplus.php:2838 updraftplus.php:3109
479
- msgid "Restore"
480
- msgstr "Wiederherstellen"
481
 
482
- #: updraftplus.php:2514 updraftplus.php:2524
483
- msgid "Cancel"
484
- msgstr "Abbrechen"
485
 
486
- #: updraftplus.php:2521 updraftplus.php:2830
487
- msgid "Backup Now"
488
- msgstr "Jetzt sichern"
489
 
490
- #: updraftplus.php:2548
491
- msgid "Advanced / Debugging Settings"
492
- msgstr "Erweitert / Debugging-Einstellungen"
493
 
494
- #: updraftplus.php:2551
495
- msgid "Debug mode"
496
- msgstr "Debug-Modus"
497
 
498
- #: updraftplus.php:2552
499
- msgid ""
500
- "Check this to receive more information and emails on the backup process - "
501
- "useful if something is going wrong. You <strong>must</strong> send us this "
502
- "log if you are filing a bug report."
503
  msgstr ""
504
- "Wähle das aus, um mehr Informationen und E-Mails zum Backup-Prozess zu "
505
- "erhalten - hilfreich wenn etwas schiefläuft. Du <stong>musst</strong> uns "
506
- "dieses Log übersenden, wenn du einen Fehlerbericht erstellst."
507
 
508
- #: updraftplus.php:2555
509
- msgid "Expert settings"
510
- msgstr "Experten-Einstellungen"
511
-
512
- #: updraftplus.php:2556
513
- msgid "Show expert settings"
514
- msgstr "Zeige Experten-Einstellungen"
515
 
516
- #: updraftplus.php:2556
517
- msgid ""
518
- "click this to show some further options; don't bother with this unless you "
519
- "have a problem or are curious."
520
  msgstr ""
521
- "Klicke hier, um weitere Optionen anzuzeigen; schau nach, wenn du Probleme "
522
- "hast oder neugierig bist."
523
 
524
- #: updraftplus.php:2563
525
- msgid "Delete local backup"
526
- msgstr "Lösche lokale Sicherung"
527
 
528
- #: updraftplus.php:2564
529
- msgid ""
530
- "Uncheck this to prevent deletion of any superfluous backup files from your "
531
- "server after the backup run finishes (i.e. any files despatched remotely "
532
- "will also remain locally, and any files being kept locally will not be "
533
- "subject to the retention limits)."
534
- msgstr ""
535
- "Wähle das ab, um die Löschung überflüssiger Sicherungsdateien zu verhinden, "
536
- "nachdem die Sicherung fertiggestellt wird. (Dateien können somit auch aus "
537
- "dem Cloud-Speicher verschwinden und Dateilimits werden ignoriert)"
538
 
539
- #: updraftplus.php:2568
540
- msgid "Backup directory"
541
- msgstr "Sicherungs-Verzeichnis"
542
 
543
- #: updraftplus.php:2576
544
- msgid "Backup directory specified is writable, which is good."
545
- msgstr "Das definierte Sicherungsverzeichnis ist beschreibbar, das ist gut."
546
 
547
- #: updraftplus.php:2578
548
- msgid "Backup directory specified is <b>not</b> writable, or does not exist."
549
  msgstr ""
550
- "Das Sicherungsverzeichnis ist <b>nicht</b> beschreibbar oder existiert nicht."
551
 
552
- #: updraftplus.php:2578
553
- msgid "Click here to attempt to create the directory and set the permissions"
554
  msgstr ""
555
- "Klicke hier, um zu versuchen das Verzeichnis zu erstellen und die Rechte zu "
556
- "setzen."
557
 
558
- # may be wrong context
559
- #: updraftplus.php:2578
560
- msgid "or, to reset this option"
561
- msgstr "oder, um diese Option zurückzusetzen"
562
 
563
- #: updraftplus.php:2578
564
- msgid "click here"
565
- msgstr "Klicke hier"
566
 
567
- #: updraftplus.php:2578
568
- msgid ""
569
- "If that is unsuccessful check the permissions on your server or change it to "
570
- "another directory that is writable by your web server process."
571
- msgstr ""
572
- "Wenn dies fehlschlägt, prüfe die Berechtigungen auf deinem Server oder "
573
- "ändere das Verzeichnis in eines, dass vom Webserver-Prozess beschrieben "
574
- "werden darf."
575
 
576
- #: updraftplus.php:2581
577
- msgid ""
578
- "This is where UpdraftPlus will write the zip files it creates initially. "
579
- "This directory must be writable by your web server. Typically you'll want to "
580
- "have it inside your wp-content folder (this is the default). <b>Do not</b> "
581
- "place it inside your uploads dir, as that will cause recursion issues "
582
- "(backups of backups of backups of...)."
583
- msgstr ""
584
- "Das ist der Ort an dem UpdraftPlus die ZIP-Dateien schreibt. Dieses "
585
- "Verzeichnis muss von deinem Webserver beschreibbar sein. Typischer Weise "
586
- "wirst du es im wp-content-Ordner haben wollen (Standard). Platziere es "
587
- "<b>nicht</b> in das uploads-Verzeichnis, da es sonst zu Schleifenproblemen "
588
- "kommt (Sicherung von der Sicherung (...))."
589
-
590
- #: updraftplus.php:2602
591
- msgid "Save Changes"
592
- msgstr "Änderungen speichern"
593
 
594
- #: updraftplus.php:2626
595
- msgid "Download log file"
596
- msgstr "Lade Logdatei herunter"
597
 
598
- #: updraftplus.php:2632
599
- msgid "No backup has been completed."
600
- msgstr "Keine Sicherung wurde vervollständigt."
601
 
602
- #: updraftplus.php:2652
603
- msgid "Restore successful!"
604
- msgstr "Wiederherstellung erfolgreich!"
605
 
606
- #: updraftplus.php:2653 updraftplus.php:2688 updraftplus.php:2704
607
- msgid "Actions"
608
- msgstr "Aktionen"
609
 
610
- #: updraftplus.php:2653 updraftplus.php:2668 updraftplus.php:2688
611
- #: updraftplus.php:2704
612
- msgid "Return to UpdraftPlus Configuration"
613
- msgstr "Kehre zur UpdraftPlus Konfiguration zurück"
614
 
615
- #: updraftplus.php:2677
616
- msgid "Remove old directories"
617
- msgstr "Entferne alte Verzeichnisse"
618
 
619
- #: updraftplus.php:2683
620
- msgid "Old directories successfully removed."
621
- msgstr "Alte Verzeichnisse erfolgreich entfernt."
622
 
623
- #: updraftplus.php:2686
624
- msgid ""
625
- "Old directory removal failed for some reason. You may want to do this "
626
- "manually."
627
  msgstr ""
628
- "Entfernen alter Verzeichnisse aus irgendeinem Grund fehlgeschlagen. "
629
- "Vielleicht möchtest du es manuell probieren."
630
 
631
- #: updraftplus.php:2701
632
- msgid "Backup directory could not be created"
633
- msgstr "Sicherungsverzeichnis konnte nicht erstellt werden."
634
 
635
- #: updraftplus.php:2703
636
- msgid "Backup directory successfully created."
637
- msgstr "Sicherungsverzeichnis erfolgreich erstellt."
638
 
639
- #: updraftplus.php:2710
640
- msgid "Schedule backup"
641
- msgstr "Plane Sicherung"
642
 
643
- #: updraftplus.php:2713
644
- msgid "Failed."
645
- msgstr "Fehlgeschlagen."
646
 
647
- #: updraftplus.php:2715
648
- msgid ""
649
- "OK. Now load any page from your site to make sure the schedule can trigger. "
650
- "You should then see activity in the \"Last log message\" field below."
651
  msgstr ""
652
- "Okay. Nun lade irgendeine Seite deiner Webseite damit der Plan auslösen "
653
- "kann. Du solltest im \"Letzte Lognachricht\" Feld unterhalb Aktivitäten "
654
- "sehen."
655
 
656
- #: updraftplus.php:2715
657
- msgid "Nothing happening? Follow this link for help."
658
- msgstr "Nichts passiert? Folge diesem Link für Hilfe."
659
-
660
- #: updraftplus.php:2728
661
- msgid "Your settings have been wiped."
662
- msgstr "Deine Einstellungen wurden zurückgesetzt."
663
-
664
- #: updraftplus.php:2735
665
- msgid "By UpdraftPlus.Com"
666
- msgstr "Von UpdraftPlus.cCom"
667
-
668
- #: updraftplus.php:2735
669
- msgid "Lead developer's homepage"
670
- msgstr "Website des leitenden Entwicklers"
671
-
672
- #: updraftplus.php:2735
673
- msgid "Donate"
674
- msgstr "Spende"
675
-
676
- #: updraftplus.php:2735
677
- msgid "Other WordPress plugins"
678
- msgstr "Andere WordPress Plugins"
679
-
680
- #: updraftplus.php:2735
681
- msgid "Version"
682
- msgstr "Version"
683
-
684
- #: updraftplus.php:2739
685
- msgid "Your backup has been restored."
686
- msgstr "Deine Sicherung wurde wiederhergestellt."
687
-
688
- #: updraftplus.php:2739
689
- msgid ""
690
- "Your old (themes, uploads, plugins, whatever) directories have been retained "
691
- "with \"-old\" appended to their name. Remove them when you are satisfied "
692
- "that the backup worked properly."
693
- msgstr ""
694
- "Deine alten Verzeichnisse (themes,uploads,plugins,was-auch-immer) wurden mit "
695
- "dem Anhang \"-old\" umbenannt. Entferne diese, wenn du mit der "
696
- "Wiederherstellung zufrieden bist und alles funktioniert."
697
-
698
- #: updraftplus.php:2739
699
- msgid ""
700
- "At this time UpdraftPlus does not automatically restore your database. You "
701
- "will need to use an external tool like phpMyAdmin to perform that task."
702
  msgstr ""
703
- "Zur Zeit stellt UpdraftPlus deine Datenbank nicht automatisch wieder her. Du "
704
- "benötigst ein externes Programm wie z.B. phpMyAdmin um dies zu tun."
705
 
706
- #: updraftplus.php:2745
707
- msgid "Old directories successfully deleted."
708
- msgstr "Alte Verzeichnisse erfolgreich entfernt."
709
-
710
- #: updraftplus.php:2748
711
- msgid ""
712
- "Your PHP memory limit is quite low. UpdraftPlus attempted to raise it but "
713
- "was unsuccessful. This plugin may not work properly with a memory limit of "
714
- "less than 96 Mb (though on the other hand, it has been used successfully "
715
- "with a 32Mb limit - your mileage may vary, but don't blame us!)."
716
  msgstr ""
717
- "Dein PHP Speicherlimit ist ziemlich niedrig. UpdraftPlus hat versucht es zu "
718
- "erhöhen, jedoch ohne Erfolg. Dieses Plugin arbeitet ggf. nicht ordentlich "
719
- "mit weniger als 96MB Speicherlimit. (Es funktionierte auch schon mit 32MB, "
720
- "allerdings ist das Glückssache)"
721
 
722
- #: updraftplus.php:2748
723
- msgid "Current limit is:"
724
- msgstr "Aktuelles Limit ist:"
725
-
726
- #: updraftplus.php:2752
727
- msgid ""
728
- "Your PHP max_execution_time is less than 60 seconds. This possibly means "
729
- "you're running in safe_mode. Either disable safe_mode or modify your php.ini "
730
- "to set max_execution_time to a higher number. If you do not, then longer "
731
- "will be needed to complete a backup (but that is all). Present limit is:"
732
- msgstr ""
733
- "PHP max_execution_time ist aus niedriger als 60 Sekunden eingestellt. Das "
734
- "kann bedeuten, dass PHP im safe_mode läuft. Deaktiviere safe_mode oder "
735
- "bearbeite deine php.ini und setze max_execution_time auf einen höheren Wert. "
736
- "Wenn du dies nicht tust, wird die Sicherung lediglich mehr Zeit in Anspruch "
737
- "nehmen (das ist alles). Aktuelles Limit ist:"
738
-
739
- #: updraftplus.php:2752
740
- msgid "seconds"
741
- msgstr "Sekunden"
742
-
743
- #: updraftplus.php:2757
744
- msgid ""
745
- "You have old directories from a previous backup (technical information: "
746
- "these are found in wp-content, and suffixed with -old). Use this button to "
747
- "delete them (if you have verified that the restoration worked)."
748
  msgstr ""
749
- "Es existieren noch alte Verzeichnisse von vorherigen Sicherungen (technische "
750
- "Information: befinden sich in wp-content mit dem Suffix -old). Benutze "
751
- "diesen Button, um sie zu löschen (wenn du geprüft hast, das die "
752
- "Wiederherstellung erfolgreich war)."
753
-
754
- #: updraftplus.php:2761
755
- msgid "Delete Old Directories"
756
- msgstr "Lösche alte Verzeichnisse"
757
 
758
- #: updraftplus.php:2761
759
- msgid ""
760
- "Are you sure you want to delete the old directories? This cannot be undone."
761
  msgstr ""
762
- "Bist du dir sicher, dass du die alten Verzeichnisse löschen möchtest? Das "
763
- "kann nicht rückgängig gemacht werden."
764
-
765
- #: updraftplus.php:2774
766
- msgid "Existing Schedule And Backups"
767
- msgstr "Vorhandene Plannungen und Sicherungen"
768
 
769
- #: updraftplus.php:2778
770
- msgid "JavaScript warning"
771
- msgstr "JavaScript-Warnung"
772
-
773
- #: updraftplus.php:2779
774
- msgid ""
775
- "This admin interface uses JavaScript heavily. You either need to activate it "
776
- "within your browser, or to use a JavaScript-capable browser."
777
  msgstr ""
778
- "Diese Administrationsoberfläche nutzt sehr viel JavaScript. Du musst dieses "
779
- "entweder in deinem Browser aktivieren oder einen JavaScript-fähigen Browser "
780
- "verwenden."
781
 
782
- #: updraftplus.php:2792 updraftplus.php:2805
783
- msgid "Nothing currently scheduled"
784
- msgstr "Zur Zeit nichts geplant"
785
 
786
- # Not sure about content, tried to look it up and hope I got it right
787
- #: updraftplus.php:2797
788
- msgid "At the same time as the files backup"
789
- msgstr "Zur selben Zeit, wie die Dateien gesichert werden."
790
 
791
- #: updraftplus.php:2817
792
- msgid "Next scheduled backups"
793
- msgstr "Nächste geplante Sicherungen"
794
 
795
- #: updraftplus.php:2819
796
- msgid "Files"
797
- msgstr "Dateien"
798
 
799
- #: updraftplus.php:2821
800
- msgid "Time now"
801
- msgstr "Aktuelle Zeit"
802
 
803
- #: updraftplus.php:2825
804
- msgid "Last finished backup run"
805
- msgstr "Letzte beendete Sicherung lief"
806
 
807
- #: updraftplus.php:2845
808
- msgid "Last log message"
809
- msgstr "Letzte Log-Nachricht"
810
 
811
- #: updraftplus.php:2846
812
- msgid "(Nothing yet logged)"
813
- msgstr "(Noch nichts aufgezeichnet)"
814
 
815
- #: updraftplus.php:2849
816
- msgid "Backups, logs & restoring"
817
- msgstr "Sicherungen, Logs & Wiederherstellung"
 
818
 
819
- #: updraftplus.php:2850
820
- msgid "Press to see available backups"
821
- msgstr "Drücken um verfügbare Sicherungen zu sehen"
822
 
823
- #: updraftplus.php:2850
824
- #, php-format
825
- msgid "%d set(s) available"
826
- msgstr "%d Sammlung(en) verfügbar"
827
 
828
- #: updraftplus.php:2855
829
- msgid "Downloading"
830
- msgstr "Lade herunter"
831
 
832
- #: updraftplus.php:2855
833
- msgid ""
834
- "Pressing a button for Database/Plugins/Themes/Uploads/Others will make "
835
- "UpdraftPlus try to bring the backup file back from the remote storage (if "
836
- "any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then "
837
- "you will be allowed to download it to your computer. If the fetch from the "
838
- "remote storage stops progressing (wait 30 seconds to make sure), then press "
839
- "again to resume. Remember that you can also visit the cloud storage vendor's "
840
- "website directly."
841
- msgstr ""
842
- "Das Drücken eines Buttons für Datenbank/Plugins/Designs/Uploads/Andere lässt "
843
- "UpdraftPlus versuchen die Sicherungsdateien vom Fernspeicher (wenn genutzt) "
844
- "auf den Webspace zu laden. Danach kannst du dieses herunterladen. Wenn das "
845
- "Herunterladen einfriert (warte 30 Sekunden um sicher zu gehen), drücke den "
846
- "Button erneut zum Wiederaufnehmen. Natürlich kannst du die Dateien auch "
847
- "jederzeit von der Seite deines Cloud-Anbieters laden."
848
-
849
- #: updraftplus.php:2856
850
- msgid "Restoring"
851
- msgstr "Wiederherstellen"
852
 
853
- #: updraftplus.php:2856
854
- msgid ""
855
- "Press the button for the backup you wish to restore. If your site is large "
856
- "and you are using remote storage, then you should first click on each entity "
857
- "in order to retrieve it back to the webserver. This will prevent time-outs "
858
- "from occuring during the restore process itself."
859
  msgstr ""
860
- "Klicke auf den Button für die Sicherung, die du wiederherstellen willst. "
861
- "Wenn deine Seite sehr groß ist und du Fernspeicher benutzt, solltest du "
862
- "vorher jeden Eintrag vorher auswählen, um die Sicherung auf den lokalen "
863
- "Server zu laden. Das verhindert Timeouts bei dem Wiederherstellungsprozess."
864
 
865
- #: updraftplus.php:2856
866
- msgid "More tasks:"
867
- msgstr "Weitere Aufgaben:"
868
 
869
- #: updraftplus.php:2856
870
- msgid "upload backup files"
871
- msgstr "Sicherungsdateien hochladen"
872
 
873
- #: updraftplus.php:2856
874
- msgid ""
875
- "Press here to look inside your UpdraftPlus directory (in your web hosting "
876
- "space) for any new backup sets that you have uploaded. The location of this "
877
- "directory is set in the expert settings, below."
878
  msgstr ""
879
- "Klicke hier um in dein UpdraftPlus Verzeichnis zu schauen (auf deinem "
880
- "Webhosting-Space) und alle neuen Sicherungen, die du hochgeladen hast, zu "
881
- "sehen. Der Ort dieses Verzeichnisses kann unten in den Experteneinstellungen "
882
- "definiert werden."
883
 
884
- #: updraftplus.php:2856
885
- msgid "rescan folder for new backup sets"
886
- msgstr "Durchsuche Verzeichnis nach neuen Sicherungen"
887
 
888
- #: updraftplus.php:2857
889
- msgid "Opera web browser"
890
- msgstr "Opera Web Browser"
891
 
892
- #: updraftplus.php:2857
893
- msgid "If you are using this, then turn Turbo/Road mode off."
894
- msgstr "Wenn du das benutzt, deaktiviere den Tubro-Modus."
895
 
896
- #: updraftplus.php:2858
897
- msgid "This is a count of the contents of your Updraft directory"
898
- msgstr "Das ist eine Zählung von Inhalten in deinem Updraft-Verzeichnis."
899
 
900
- # I have no idea how to translate that one better
901
- #: updraftplus.php:2858
902
- msgid "Web-server disk space in use by UpdraftPlus"
903
- msgstr "Web-Server Festplatte in Benutzung von UpdraftPlus"
904
 
905
- #: updraftplus.php:2858
906
- msgid "refresh"
907
- msgstr "aktualisieren"
908
 
909
- #: updraftplus.php:2860
910
- msgid "UpdraftPlus - Upload backup files"
911
- msgstr "UpdraftPlus hochgeladene Sicherungen"
912
 
913
- #: updraftplus.php:2861
914
- msgid ""
915
- "Upload files into UpdraftPlus. Use this to import backups made on a "
916
- "different WordPress installation."
917
  msgstr ""
918
- "Lade Dateien nach UpdraftPlus hoch. Nutze diese Funktion um Sicherungen von "
919
- "anderen WordPress-Installationen zu importieren."
920
 
921
- #: updraftplus.php:2865
922
- msgid "Drop backup zips here"
923
- msgstr "Ziehe Sicherungsarchive hierher"
924
 
925
- #: updraftplus.php:2879
926
- msgid "calculating..."
927
- msgstr "Berechne...."
928
 
929
- #: updraftplus.php:2948
930
- msgid "Restore backup"
931
- msgstr "Sicherung wiederherstellen"
932
 
933
- #: updraftplus.php:2949
934
- msgid "Restore backup from"
935
- msgstr "Stelle Sicherung wieder her von"
936
 
937
- # Again, missing )
938
- #: updraftplus.php:2950
939
- msgid ""
940
- "Restoring will replace this site's themes, plugins, uploads and/or other "
941
- "content directories (according to what is contained in the backup set, and "
942
- "your selection"
943
  msgstr ""
944
- "Die Wiederherstellung wird die Designs,Plugins,Uploads und/oder andere "
945
- "Inhalt-Verzeichnisse (basierend auf deiner Auswahl) ersetzen."
946
 
947
- #: updraftplus.php:2950
948
- msgid "Choose the components to restore"
949
- msgstr "Wähle die Komponenten zum Wiederherstellen aus"
950
 
951
- #: updraftplus.php:2961
952
- msgid ""
953
- "Databases cannot yet be restored from here - you must download the database "
954
- "file and take it to your web hosting company's control panel."
955
  msgstr ""
956
- "Datenbanken können hier mit noch nicht wiederhergestellt werden - du musst "
957
- "die Datenbankdatei herunterladen und in der Administrationsoberfläche deines "
958
- "Hosters einlesen."
959
 
960
- #: updraftplus.php:2966
961
- msgid "Perform a backup now"
962
- msgstr "Jetzt sichern"
963
 
964
- #: updraftplus.php:2968
965
- msgid ""
966
- "This will schedule a one-time backup. To proceed, press 'Backup Now', then "
967
- "wait 10 seconds, then visit any page on your site. WordPress should then "
968
- "start the backup running in the background."
969
  msgstr ""
970
- "Das wird eine einmalige Sicherung auslösen. Um fortzufahren, drücke 'Jetzt "
971
- "sichern' und warte 10 Sekunden, dann besuche irgendeine Seite deines Blogs. "
972
- "WordPress sollte dann die Sicherung im Hintergrund starten."
973
 
974
- #: updraftplus.php:2974
975
- msgid "Does nothing happen when you schedule backups?"
976
- msgstr "Passiert nichts, wenn du Sicherungen planst?"
977
 
978
- #: updraftplus.php:2974
979
- msgid "Go here for help."
980
- msgstr "Klicke hier für Hilfe"
981
 
982
- #: updraftplus.php:2981
983
- msgid "Multisite"
984
- msgstr "Multiseiten"
985
 
986
- #: updraftplus.php:2985
987
- msgid "Do you need WordPress Multisite support?"
988
- msgstr "Brauchst du WordPress Multiseiten Unterstützung?"
989
 
990
- #: updraftplus.php:2985
991
- msgid ""
992
- "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
993
- msgstr "Bitte schau dir UpdraftPlus Premium oder das Multiseiten Add-On an."
994
 
995
- #: updraftplus.php:2990
996
- msgid "Configure Backup Contents And Schedule"
997
- msgstr "Konfiguriere Sicherungsinhalte und Sicherungszeiten"
998
 
999
- #: updraftplus.php:2996
1000
- msgid "Debug Information And Expert Options"
1001
- msgstr "Debug Informationen und Experteneinstellungen"
1002
 
1003
- #: updraftplus.php:3001
1004
- msgid "Peak memory usage"
1005
- msgstr "Spitzenwert d. Speichernutzung"
1006
 
1007
- #: updraftplus.php:3002
1008
- msgid "Current memory usage"
1009
- msgstr "Aktuelle Speichernutzung"
1010
 
1011
- #: updraftplus.php:3003
1012
- msgid "PHP memory limit"
1013
- msgstr "PHP-Speicher-Limit"
1014
 
1015
- #: updraftplus.php:3006
1016
- msgid ""
1017
- "The buttons below will immediately execute a backup run, independently of "
1018
- "WordPress's scheduler. If these work whilst your scheduled backups and the "
1019
- "\"Backup Now\" button do absolutely nothing (i.e. not even produce a log "
1020
- "file), then it means that your scheduler is broken. You should then disable "
1021
- "all your other plugins, and try the \"Backup Now\" button. If that fails, "
1022
- "then contact your web hosting company and ask them if they have disabled wp-"
1023
- "cron. If it succeeds, then re-activate your other plugins one-by-one, and "
1024
- "find the one that is the problem and report a bug to them."
1025
- msgstr ""
1026
- "Der Button unterhalb wird, abhängig vom WordPress Planner, sofort eine "
1027
- "Sicherung anlegen. Sollten die SIcherungen nur durch den Cronjob und nicht "
1028
- "den \"Jetzt sichern\" Button funktionieren (und keine Logdatei angelegt "
1029
- "wird), ist dein Planner defekt. Deaktiviere alle anderen Plugins und "
1030
- "versuche es erneut mit dem \"Jetzt sichern\" Button. Wenn auch das "
1031
- "fehlschlägt, kontaktiere deinen Webhoster und frage, ob dieser wp-cron "
1032
- "deaktiviert hat. Wenn alles glatt läuft, aktiviere deine Plugins einzeln um "
1033
- "das Problem-Plugin zu finden und dem Ersteller einen fehlerbericht zu senden."
1034
-
1035
- #: updraftplus.php:3010
1036
- msgid "Debug Full Backup"
1037
- msgstr "Debug komplette Sicherung"
1038
 
1039
- #: updraftplus.php:3010
1040
- msgid ""
1041
- "This will cause an immediate backup. The page will stall loading until it "
1042
- "finishes (ie, unscheduled)."
 
 
1043
  msgstr ""
1044
- "Das führt zu einer sofortigen Sicherung. Die Seite wird das vollständige "
1045
- "Laden herauszögern (wenn ungeplant)."
1046
 
1047
- #: updraftplus.php:3014
1048
- msgid "Debug Database Backup"
1049
- msgstr "Debug Datenbank-Sicherung"
1050
 
1051
- #: updraftplus.php:3014
1052
- msgid ""
1053
- "This will cause an immediate DB backup. The page will stall loading until it "
1054
- "finishes (ie, unscheduled). The backup may well run out of time; really this "
1055
- "button is only helpful for checking that the backup is able to get through "
1056
- "the initial stages, or for small WordPress sites.."
1057
- msgstr ""
1058
- "Das wird eine sofortige Datenbanksicherung auslösen. Die Seite wird nicht "
1059
- "vollständig laden, bis dieses abgeschlossen ist (wenn ungeplant). Die "
1060
- "Sicherung kann in einen Timeout laufen; diese Funktion ist eher für kleine "
1061
- "WordPress-Installationen oder zum Test, ob die Sicherung durch die "
1062
- "Anfangsschritte kommt, geeignet."
1063
-
1064
- #: updraftplus.php:3016
1065
- msgid "Wipe Settings"
1066
- msgstr "Lösche Einstellungen"
1067
 
1068
- #: updraftplus.php:3017
1069
- msgid ""
1070
- "This button will delete all UpdraftPlus settings (but not any of your "
1071
- "existing backups from your cloud storage). You will then need to enter all "
1072
- "your settings again. You can also do this before deactivating/deinstalling "
1073
- "UpdraftPlus if you wish."
1074
- msgstr ""
1075
- "Dieser Button löscht alle UpdraftPlus Einstellungen (allerdings keine "
1076
- "Sicherungen vom Cloud-Speicher). Du musst danach alle deine Einstellungen "
1077
- "erneut eingeben. Du kannst das auch tun, bevor du UpdraftPlus deaktivierst/"
1078
- "deinstalliert, wenn du möchtest."
1079
 
1080
- #: updraftplus.php:3020
1081
- msgid "Wipe All Settings"
1082
- msgstr "Lösche alle Einstellungen"
1083
 
1084
- #: updraftplus.php:3020
1085
- msgid ""
1086
- "This will delete all your UpdraftPlus settings - are you sure you want to do "
1087
- "this?"
1088
  msgstr ""
1089
- "Alle deine UpdraftPlus-Einstellungen werden gelöscht - bist du dir sicher?"
1090
 
1091
- #: updraftplus.php:3089
1092
- msgid "Press here to download"
1093
- msgstr "Hier drücken zum Herunterladen"
1094
 
1095
- #: updraftplus.php:3091
1096
- #, php-format
1097
- msgid "(No %s)"
1098
- msgstr "(Kein %s)"
1099
 
1100
- #: updraftplus.php:3101
1101
- msgid "Backup Log"
1102
- msgstr "Sicherungs-Log"
1103
 
1104
- #: updraftplus.php:3109
1105
- msgid ""
1106
- "After pressing this button, you will be given the option to choose which "
1107
- "components you wish to restore"
1108
- msgstr ""
1109
- "Nach dem drücken dieses Buttons, hast du die Möglichkeiten die "
1110
- "wiederherzustellenden Komponenten auszuwählen."
1111
 
1112
- #: updraftplus.php:3134 updraftplus.php:3138
1113
- msgid "Warning"
1114
- msgstr "Warnung"
1115
 
1116
- #: updraftplus.php:3134
1117
- #, php-format
1118
- msgid ""
1119
- "You have less than %s of free disk space on the disk which UpdraftPlus is "
1120
- "configured to use to create backups. UpdraftPlus could well run out of "
1121
- "space. Contact your the operator of your server (e.g. your web hosting "
1122
- "company) to resolve this issue."
1123
  msgstr ""
1124
- "Du hast weniger als %s freien Speicherplatz auf dem Laufwerk, dass "
1125
- "UpdraftPlus für Sicherungen verwenden soll. UpdraftPlus könnte nicht genug "
1126
- "Speicherplatz haben. Kontaktiere deinen Webhoster, um das Problem zu lösen."
1127
 
1128
- #: updraftplus.php:3138
1129
- #, php-format
1130
- msgid ""
1131
- "UpdraftPlus does not officially support versions of WordPress before %s. It "
1132
- "may work for you, but if it does not, then please be aware that no support "
1133
- "is available until you upgrade WordPress."
1134
  msgstr ""
1135
- "UpdraftPlus unterstützt offiziel keine WordPress-Versionen vor %s. Es kann "
1136
- "funktionieren, wenn jedoch nicht, können wir dir keine Hilfestellung geben."
1137
 
1138
- #: updraftplus.php:3142 updraftplus.php:3146 updraftplus.php:3150
1139
- msgid "UpdraftPlus notice:"
1140
- msgstr "UpdraftPlus Hinweis:"
1141
 
1142
- #: updraftplus.php:3142
1143
- msgid "The log file could not be read."
1144
- msgstr "Die Logdatei konnte nicht gelesen werden."
1145
 
1146
- #: updraftplus.php:3146 updraftplus.php:3150
1147
- #, php-format
1148
- msgid ""
1149
- "Click here to authenticate your %s account (you will not be able to back up "
1150
- "to %s without it)."
1151
  msgstr ""
1152
- "Klicke hier um deinen %s Account zu authentifizieren (Du wirst nicht in der "
1153
- "Lage sein nach %s zu sichern, wenn du es nicht tust)."
1154
 
1155
- #: updraftplus.php:3323
1156
- msgid "Infinite recursion: consult your log for more information"
1157
  msgstr ""
1158
- "Unendliche Rekursion: Schau in der Logdatei für weitere Informationen nach"
1159
 
1160
- #: includes/updraft-restorer.php:5
1161
- msgid "Backup file not available."
1162
- msgstr "Sicherungsdatei nicht verfügbar."
1163
 
1164
- #: includes/updraft-restorer.php:6
1165
- msgid "Unpacking backup..."
1166
- msgstr "Entpacke Sicherung..."
1167
 
1168
- #: includes/updraft-restorer.php:7
1169
- msgid "Moving old directory out of the way..."
1170
- msgstr "Entferne altes Verzeichnis...."
1171
 
1172
- #: includes/updraft-restorer.php:8
1173
- msgid "Moving unpacked backup in place..."
1174
- msgstr "Verschiebe entpackte Sicherung..."
1175
 
1176
- #: includes/updraft-restorer.php:9
1177
- msgid "Cleaning up rubbish..."
1178
- msgstr "Räume auf ..."
1179
 
1180
- #: includes/updraft-restorer.php:10
1181
- msgid ""
1182
- "Could not move old directory out of the way. Perhaps you already have -old "
1183
- "directories that need deleting first?"
1184
  msgstr ""
1185
- "Konnte altes Verzeichnis nicht entfernen. Vielleicht existieren noch alte "
1186
- "Verzeichnisse die zuerst gelöscht werden müssen?"
1187
 
1188
- #: includes/updraft-restorer.php:11
1189
- msgid ""
1190
- "Could not move new directory into place. Check your wp-content/upgrade "
1191
- "folder."
1192
  msgstr ""
1193
- "Konnte neues Verzeichnis nicht verschieben. Überprüfe deinen wp-content/"
1194
- "upgrade-Order."
1195
 
1196
- #: includes/updraft-restorer.php:12
1197
- msgid "Failed to delete working directory after restoring."
1198
  msgstr ""
1199
- "Löschen des Arbeitsverzeichnissen nach Wiederherstellung fehlgeschlagen."
1200
 
1201
- #: includes/updraft-restorer.php:34
1202
- msgid ""
1203
- "Will not delete the archive after unpacking it, because there was no cloud "
1204
- "storage for this backup"
1205
  msgstr ""
1206
- "Werde das Archiv nach dem Entpacken nicht löschen, weil es keinen Cloud-"
1207
- "Speicher für dieses Backup gibt."
1208
 
1209
- #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1210
- #: methods/sftp.php:13 methods/sftp.php:34 methods/sftp.php:50
1211
- #, php-format
1212
- msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1213
  msgstr ""
1214
- "Du hast nicht die UpdraftPlus %s Erweiterung installiert - bekomme sie von %s"
1215
 
1216
- #: methods/webdav.php:63 methods/sftp.php:63
1217
- #, php-format
1218
- msgid "%s support is available as an add-on"
1219
- msgstr "%s Unterstützung ist als Erweiterung verfügbar"
1220
 
1221
- #: methods/webdav.php:63 methods/sftp.php:63
1222
- msgid "follow this link to get it"
1223
- msgstr "folge diesem Link um es zu bekommen"
1224
 
1225
- #: methods/googledrive.php:94 methods/s3.php:326 methods/dropbox.php:293
1226
- #: addons/webdav.php:292
1227
- msgid "Success"
1228
- msgstr "Erfolg"
1229
 
1230
- #: methods/googledrive.php:94 methods/dropbox.php:293
1231
- #, php-format
1232
- msgid "you have authenticated your %s account"
1233
- msgstr "du hast deinen %s Account authentifiziert"
1234
 
1235
- #: methods/googledrive.php:94 methods/googledrive.php:325
1236
- #: methods/googledrive.php:327 methods/googledrive.php:345
1237
- #: methods/googledrive.php:349 methods/googledrive.php:353
1238
- msgid "Google Drive"
1239
- msgstr "Google Drive"
1240
 
1241
- # Sentence makes less sence with last part, ignoring it thus
1242
- #: methods/googledrive.php:98
1243
- msgid ""
1244
- "No refresh token was received from Google. This often means that you entered "
1245
- "your client secret wrongly, or that you have not yet re-authenticated "
1246
- "(below) since correcting it. Re-check it, then follow the link to "
1247
- "authenticate again. Finally, if that does not work, then use expert mode to "
1248
- "wipe all your settings, create a new Google client ID/secret, and start "
1249
- "again."
1250
- msgstr ""
1251
- "Es wurde kein Aktualisierungs-Token von Google empfangen. Das liegt meistens "
1252
- "an einem falsch eingegebenen Client-Secret oder, dass du dich noch nicht neu "
1253
- "authentifiziert (unten) hast. Überprüfe dein Secret und folge dem Link zur "
1254
- "erneuten Authentifizierung. Sollte es weiterhin Probleme geben, setze deine "
1255
- "Einstellungen unter Experten-Einstellungen zurück und erstelle eine neue "
1256
- "Google Client-ID/-Secret und probiere es erneut."
1257
-
1258
- #: methods/googledrive.php:103
1259
- msgid "Authorization failed"
1260
- msgstr "Authentifizierung fehlgeschlagen"
1261
 
1262
- #: methods/googledrive.php:117
1263
- msgid ""
1264
- "Have not yet obtained an access token from Google - you need to authorise or "
1265
- "re-authorise your connection to Google Drive."
1266
  msgstr ""
1267
- "Noch keinen Zugangs-Token von Google erhalten - du musst die Verbindung zu "
1268
- "Google Drive authorisieren bzw erneut authorisieren."
1269
 
1270
- #: methods/googledrive.php:118 methods/googledrive.php:254
1271
- msgid ""
1272
- "Have not yet obtained an access token from Google (has the user authorised?)"
1273
  msgstr ""
1274
- "Kein Zugangs-Token von Google erhalten (hat der User sich authentifiziert?)"
1275
 
1276
- #: methods/googledrive.php:135 addons/webdav.php:57
1277
- #, php-format
1278
- msgid "Failed to upload to %s"
1279
- msgstr "Hochladen zu %s fehlgeschlagen."
1280
 
1281
- #: methods/googledrive.php:189 addons/webdav.php:57
1282
- msgid "Error"
1283
- msgstr "Fehler"
1284
 
1285
- #: methods/googledrive.php:225
1286
- msgid "An error occurred during GoogleDrive upload (see log for more details)"
1287
  msgstr ""
1288
- "Während des Hochladens zu Google Drive ist ein Fehler aufgetreten (siehe "
1289
- "Logdatei für Details)"
1290
 
1291
- #: methods/googledrive.php:266
1292
- #, php-format
1293
- msgid ""
1294
- "Google Drive error: %d: could not download: could not find a record of the "
1295
- "Google Drive file ID for this file"
1296
  msgstr ""
1297
- "Google Drive Fehler: %d: Konnte nicht herunterladen: Konnte keinen Eintrag "
1298
- "der Google Drive Datei-ID für diese Datei finden."
1299
 
1300
- #: methods/googledrive.php:271
1301
- #, php-format
1302
- msgid "Could not find %s in order to download it"
1303
- msgstr "Konnte %s zum Herunterladen nicht finden."
1304
 
1305
- #: methods/googledrive.php:283
1306
- msgid "Google Drive "
1307
- msgstr "Google Drive"
1308
 
1309
- #: methods/googledrive.php:283
1310
- msgid "error: zero-size file was downloaded"
1311
- msgstr "Fehler: Datei mit Null-Größe wurde heruntergeladen."
1312
 
1313
- #: methods/googledrive.php:301
1314
- msgid "Account is not authorized."
1315
- msgstr "Account ist nicht autorisiert."
1316
 
1317
- #: methods/googledrive.php:328 methods/s3.php:246 methods/dropbox.php:217
1318
- #: methods/ftp.php:109 addons/webdav.php:231
1319
- #, php-format
1320
- msgid ""
1321
- "%s is a great choice, because UpdraftPlus supports chunked uploads - no "
1322
- "matter how big your blog is, UpdraftPlus can upload it a little at a time, "
1323
- "and not get thwarted by timeouts."
1324
  msgstr ""
1325
- "%s ist eine gute Wahl, weil UpdraftPlus aufgesplittete Uploads unterstützt - "
1326
- "egal wie groß dein Blog ist, UpdraftPlus kann ein wenig hochladen wird wird "
1327
- "nicht durch Timeouts gestört."
1328
 
1329
- #: methods/googledrive.php:334
1330
- msgid ""
1331
- "For longer help, including screenshots, follow this link. The description "
1332
- "below is sufficient for more expert users."
1333
  msgstr ""
1334
- "Für detailiertere Hilfe mit Bildern, folge diesem Link. Die Beschreibung "
1335
- "unterhalb ist für erfahrende Benutzer besser geeignet."
1336
 
1337
- #: methods/googledrive.php:335
1338
- msgid ""
1339
- "Follow this link to your Google API Console, and there create a Client ID in "
1340
- "the API Access section."
1341
  msgstr ""
1342
- "Folge dem Link zu deiner Google API Konsole und erstelle dort eine Client ID "
1343
- "in der API Zugangs-Sektion."
1344
 
1345
- #: methods/googledrive.php:335
1346
- msgid "Select 'Web Application' as the application type."
1347
- msgstr "Wähle 'Web Applikation' als Applikationstyp."
1348
 
1349
- #: methods/googledrive.php:335
1350
- msgid ""
1351
- "You must add the following as the authorised redirect URI (under \"More "
1352
- "Options\") when asked"
1353
  msgstr ""
1354
- "Du musst folgendes als authorisierten Umleitungslink (unter \"Mehr Optionen"
1355
- "\") angeben, wenn gefragt"
1356
 
1357
- #: methods/googledrive.php:335
1358
- msgid ""
1359
- "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot "
1360
- "re-use your client ID; you must create a new one from your Google API "
1361
- "console for each blog."
1362
  msgstr ""
1363
- "Wenn du UpdraftPlus auf mehreren WordPress-Seiten installierst, kannst du "
1364
- "deine Client-ID nicht mehrfach nutzen und musst für jeden Blog eine neue in "
1365
- "der Google API Konsole erzeugen."
1366
 
1367
- #: methods/googledrive.php:338
1368
- msgid ""
1369
- "You do not have the SimpleXMLElement installed. Google Drive backups will "
1370
- "<b>not</b> work until you do."
1371
  msgstr ""
1372
- "Du hast nicht SimpleXMLElement installiert. Google Drive funktioniert "
1373
- "<b>nicht</b> solange es nicht dies nicht installiert wird."
1374
 
1375
- #: methods/googledrive.php:345
1376
- msgid "Client ID"
1377
- msgstr "Client ID"
1378
 
1379
- #: methods/googledrive.php:346
1380
- msgid ""
1381
- "If Google later shows you the message \"invalid_client\", then you did not "
1382
- "enter a valid client ID here."
1383
  msgstr ""
1384
- "Wenn Google dir später \"invalid_client\" anzeigt, hast du eine ungültige "
1385
- "Client-ID angegeben."
1386
 
1387
- #: methods/googledrive.php:349
1388
- msgid "Client Secret"
1389
- msgstr "Client Secret"
1390
 
1391
- #: methods/googledrive.php:353
1392
- msgid "Folder ID"
1393
- msgstr "Ordner-ID"
1394
 
1395
- # Missing "(", thought it should be the last sentence only, needs to be corrected if I was wrong.
1396
- #: methods/googledrive.php:354
1397
- msgid ""
1398
- "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to "
1399
- "that folder in Google Drive in your web browser and copy the ID from your "
1400
- "browser's address bar. It is the part that comes after <kbd>#folders/.</kbd> "
1401
- "Leave empty to use your root folder)"
1402
  msgstr ""
1403
- "<strong>Das ist KEIN Ordnername</strong>. Um die Ordner-ID zu bekommen, "
1404
- "navigiere zu diesem Ordner in Google Drive und kopiere die ID aus der "
1405
- "Adressleiste deines Browsers. Es ist der Teil der nach <kbd>#folders/.</kbd> "
1406
- "kommt. (Lasse dies leer, um das Wurzelverzeichnis zu nutzen.)"
1407
 
1408
- #: methods/googledrive.php:357
1409
- msgid "Authenticate with Google"
1410
- msgstr "Mit Google authentifizieren"
1411
 
1412
- #: methods/googledrive.php:358
1413
- msgid ""
1414
- "<strong>After</strong> you have saved your settings (by clicking 'Save "
1415
- "Changes' below), then come back here once and click this link to complete "
1416
- "authentication with Google."
1417
- msgstr ""
1418
- "<strong>Nach dem</strong du deine Einstellungen gespeichert hast, komm zu "
1419
- "dieser Seite zurück, um dich mit Google zu authentifizieren."
1420
 
1421
- #: methods/email.php:15
1422
- msgid "WordPress Backup"
1423
- msgstr "WordPress Sicherung"
1424
 
1425
- #: methods/email.php:15
1426
- msgid "Backup is of:"
1427
- msgstr "Backup beinhaltet:"
1428
 
1429
- #: methods/email.php:15
1430
- msgid ""
1431
- "Be wary; email backups may fail because of file size limitations on mail "
1432
- "servers."
1433
  msgstr ""
1434
- "Kann unterschiedlich ausfallen, E-Mail-Sicherungen können wegen "
1435
- "Dateigrößenbeschränkungen auf Mail-Servern fehlschlagen."
1436
 
1437
- #: methods/email.php:24
1438
- msgid "Note:"
1439
- msgstr "Beachte:"
1440
 
1441
- # Long evil sentences - splittet sentence two into two, because in german it would be more difficult to understand it
1442
- #: methods/email.php:25
1443
- msgid ""
1444
- "The email address entered above will be used. If choosing \"E-Mail\", then "
1445
- "<strong>be aware</strong> that mail servers tend to have size limits; "
1446
- "typically around 10-20Mb; backups larger than any limits will not arrive. If "
1447
- "you really need a large backup via email, then you could fund a new feature "
1448
- "(to break the backup set into configurable-size pieces) - but the demand has "
1449
- "not yet existed for such a feature."
1450
- msgstr ""
1451
- "Die E-Mail-Adresse von oben wird benutzt. <strong>Sei dir bewusst</strong>, "
1452
- "dass mit dem Auswählen von \"E-Mail\" Größenlimits von typischer Weise "
1453
- "10-20MB beachtet werden müssen. Sicherungen, die diese Größe überschreiten "
1454
- "werden fehlschlagen. Wenn du wirklich große Sicherungen per E-Mail "
1455
- "durchführen möchtest, könntest du eine neue Funktion finanzieren (um die "
1456
- "Sicherung in eine konfigurierbare Größe aufzuspliten) - allerdings "
1457
- "existierte bisher kein Interesse an dieser Funktion."
1458
-
1459
- #: methods/s3.php:77
1460
- #, php-format
1461
- msgid "%s Error: Failed to upload"
1462
- msgstr "%s Fehler: Hochladen fehlgeschlagen"
1463
 
1464
- #: methods/s3.php:98
1465
- msgid ""
1466
- "S3 upload: getting uploadID for multipart upload failed - see log file for "
1467
- "more details"
1468
  msgstr ""
1469
- "S3 Hochladen: Bekommen der Hochlade-ID für mehrteiliges hochladen "
1470
- "fehlgeschlagen - siehe Logdatei für mehr Details"
1471
 
1472
- #: methods/s3.php:130
1473
- #, php-format
1474
- msgid "S3 chunk %s: upload failed"
1475
- msgstr "S3 Teil %s: Hochladen fehlgeschlagen"
1476
 
1477
- #: methods/s3.php:144
1478
- #, php-format
1479
- msgid "S3 upload (%s): re-assembly failed (see log for more details)"
1480
  msgstr ""
1481
- "S3 Hochladen (%s): Zusammensetzen fehlgeschlagen (siehe Logdatei für weitere "
1482
- "Informationen)"
1483
 
1484
- #: methods/s3.php:148
1485
- #, php-format
1486
- msgid "S3 re-assembly error (%s): (see log file for more)"
1487
- msgstr "S3 Zusammensetzfehler (%s): (siehe Logdatei für mehr Informationen)"
1488
 
1489
- #: methods/s3.php:160
1490
- #, php-format
1491
- msgid ""
1492
- "S3 Error: Failed to create bucket %s. Check your permissions and credentials."
1493
  msgstr ""
1494
- "S3 Fehler: Konnte Bucket %s nicht erstellen. Überprüfe deine Rechte und "
1495
- "Logininformationen."
1496
 
1497
- #: methods/s3.php:213
1498
- #, php-format
1499
- msgid ""
1500
- "S3 Error: Failed to download %s. Check your permissions and credentials."
1501
  msgstr ""
1502
- "S3 Fehler: Konnte %s nicht herunterladen. Überprüfe deine Rechte und "
1503
- "Logininformationen."
1504
 
1505
- #: methods/s3.php:217
1506
- #, php-format
1507
- msgid ""
1508
- "S3 Error: Failed to access bucket %s. Check your permissions and credentials."
1509
  msgstr ""
1510
- "S3 Fehler: Konnte Bucket %s nicht benutzen. Überprüfe deine Rechte und "
1511
- "Logininformationen."
1512
 
1513
- #: methods/s3.php:251
1514
- msgid ""
1515
- "Get your access key and secret key <a href=\"http://aws.amazon.com/console/"
1516
- "\">from your AWS console</a>, then pick a (globally unique - all Amazon S3 "
1517
- "users) bucket name (letters and numbers) (and optionally a path) to use for "
1518
- "storage. This bucket will be created for you if it does not already exist."
1519
- msgstr ""
1520
- "Bekomme deinen Zugangs- und Secretkey <a href=\"http://aws.amazaon.com/"
1521
- "console/\">von deiner AWS-Konsole</a>, dann wähle einen (global "
1522
- "einzigartigen) Bucket-Namen (Buchstaben und Zahlen, optional eine "
1523
- "Pfadangabe), um den Speicher zu benutzen. Das Bucket wird für dich erstellt, "
1524
- "sofern es nicht existiert."
1525
-
1526
- #: methods/s3.php:254
1527
- msgid "S3 access key"
1528
- msgstr "S3 Zugangsschlüssel"
1529
-
1530
- #: methods/s3.php:258
1531
- msgid "S3 secret key"
1532
- msgstr "S3 Secret Schlüssel"
1533
-
1534
- #: methods/s3.php:262
1535
- msgid "S3 location"
1536
- msgstr "S3 Ort"
1537
-
1538
- #: methods/s3.php:267 methods/ftp.php:135 addons/webdav.php:244
1539
- #, php-format
1540
- msgid "Test %s Settings"
1541
- msgstr "Teste %s Einstellungen"
1542
 
1543
- #: methods/s3.php:275 methods/s3.php:279 methods/ftp.php:152
1544
- #: methods/ftp.php:156 addons/webdav.php:272
1545
- #, php-format
1546
- msgid "Failure: No %s was given."
1547
- msgstr "Fehler: Kein %s war gegeben"
1548
 
1549
- #: methods/s3.php:275
1550
- msgid "API key"
1551
- msgstr "API Schlüssel"
1552
 
1553
- #: methods/s3.php:279
1554
- msgid "API secret"
1555
- msgstr "API Secret"
 
 
1556
 
1557
- #: methods/s3.php:296
1558
- msgid "Failure: No bucket details were given."
1559
- msgstr "Fehler: Keine Bucket-Details waren gegeben."
1560
 
1561
- #: methods/s3.php:306
1562
- msgid "Amazon region"
1563
- msgstr "Amazaon Region"
1564
 
1565
- #: methods/s3.php:316
1566
- msgid ""
1567
- "Failure: We could not successfully access or create such a bucket. Please "
1568
- "check your access credentials, and if those are correct then try another "
1569
- "bucket name (as another S3 user may already have taken your name)."
1570
  msgstr ""
1571
- "Fehler: Konnte einen solchen Bucket nicht erfolgreich erstellen oder nutzen. "
1572
- "Bitte überprüfe deine Zugangsdaten und probiere einen anderen Bucket-amen "
1573
- "(da ein anderer S3-Nutzer deinen Namen ggf. schon benutzt)."
1574
 
1575
- #: methods/s3.php:324
1576
- msgid "Failure"
1577
- msgstr "Fehler"
1578
 
1579
- #: methods/s3.php:324
1580
- msgid ""
1581
- "We successfully accessed the bucket, but the attempt to create a file in it "
1582
- "failed."
1583
  msgstr ""
1584
- "Wir konnten den Bucket erfolgreich nutzen, aber der Versuch eine Datei in "
1585
- "ihm zu erstellen schlug fehl."
1586
 
1587
- #: methods/s3.php:326
1588
- msgid "We accessed the bucket, and were able to create files within it."
 
 
 
 
 
 
 
 
1589
  msgstr ""
1590
- "Wir konnten den Bucket erfolgreich nutzen und sind in der Lage Dateien in "
1591
- "ihm zu erstellen."
1592
 
1593
- #: methods/dropbox.php:35 methods/dropbox.php:167
1594
- msgid "You do not appear to be authenticated with Dropbox"
1595
- msgstr "Du scheinst bei Dropbox nicht authentifiziert zu sein"
1596
 
1597
- #: methods/dropbox.php:46
1598
- #, php-format
1599
- msgid "error: %s (see log file for more)"
1600
- msgstr "Fehler: %s (siehe Logdatei für weitere Informationen)"
1601
 
1602
- #: methods/dropbox.php:98 methods/dropbox.php:103
1603
- #, php-format
1604
- msgid "error: failed to upload file to %s (see log file for more)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1605
  msgstr ""
1606
- "Fehler: Hochladen der Datei nach %s fehlgeschlagen (siehe Logdatei für "
1607
- "weitere Informationen)"
1608
 
1609
- #: methods/dropbox.php:223
1610
- msgid "Need to use sub-folders?"
1611
- msgstr "Sollen Unterordner benutzt werden?"
1612
 
1613
- #: methods/dropbox.php:223
1614
- msgid "Backups are saved in"
1615
- msgstr "Sicherungen sind gespeichert unter"
1616
 
1617
- #: methods/dropbox.php:223
1618
- msgid ""
1619
- "If you back up several sites into the same Dropbox and want to organise with "
1620
- "sub-folders, then "
 
 
1621
  msgstr ""
1622
- "Wenn du mehrere Seiten auf die selbe Dropbox sichern und diese mit "
1623
- "Unterordnern organisieren möchtest, dann"
1624
 
1625
- #: methods/dropbox.php:223
1626
- msgid "there's an add-on for that."
1627
- msgstr "es gibt eine Erweiterung dafür."
1628
 
1629
- #: methods/dropbox.php:228
1630
- msgid "Authenticate with Dropbox"
1631
- msgstr "Mit Dropbox authentifizieren"
1632
 
1633
- #: methods/dropbox.php:229
1634
- msgid ""
1635
- "<strong>After</strong> you have saved your settings (by clicking 'Save "
1636
- "Changes' below), then come back here once and click this link to complete "
1637
- "authentication with Dropbox."
1638
  msgstr ""
1639
- "<strong>Nachdem</strong> du die Einstellungen gespeichert hast (mit Drücken "
1640
- "von 'Änderungen speichern'), komm hierher zurück und benutze den Link um die "
1641
- "Authentifizierung mit Dropbox abzuschließen."
1642
 
1643
- #: methods/dropbox.php:240
1644
- msgid ""
1645
- "Your web server's PHP installation does not included a required module "
1646
- "(MCrypt). Please contact your web hosting provider's support. UpdraftPlus's "
1647
- "Dropbox module <strong>requires</strong> MCrypt. Please do not file any "
1648
- "support requests; there is no alternative."
1649
  msgstr ""
1650
- "Die PHP-Installation deines Webservers enthält das benötigte Modul (MCrypt) "
1651
- "nicht. Bitte kontaktiere den Support deines Hosting Providers. UpdraftPlus's "
1652
- "Dropbox-Modul <strong>benötigt</strong> MCrypt. Bitte erstelle keine "
1653
- "Supportanfragen diesbezüglich, es gibt keine Alternative."
1654
 
1655
- #: methods/dropbox.php:243
1656
- msgid ""
1657
- "Your web server's PHP installation does not included a required module "
1658
- "(Curl). Please contact your web hosting provider's support. UpdraftPlus's "
1659
- "Dropbox module <strong>requires</strong> Curl. Your only options to get this "
1660
- "working are 1) Install/enable curl or 2) Hire us or someone else to code "
1661
- "additional support options into UpdraftPlus. 3) Wait, possibly forever, for "
1662
- "someone else to do this."
1663
- msgstr ""
1664
- "Die PHP-Installation deines Webservers enthält das benötigte Modul (Curl) "
1665
- "nicht. Bitte kontaktiere den Support deines Hosting Providers. UpdraftPlus's "
1666
- "Dropbox-Modul <strong>benötigt</strong> Curl. Deine einzigen Möglichkeiten "
1667
- "dies zum Laufen zu bringen sind 1) Einschalten/Installieren von curl, 2) Uns "
1668
- "oder jemanden anders beauftragen zusätzliche Support-Optionen in UpdraftPlus "
1669
- "zu integrieren oder 3) Womöglich für immer darauf warten, dass es ein "
1670
- "anderer tut."
1671
-
1672
- #: methods/dropbox.php:296
1673
- msgid ""
1674
- "though part of the returned information was not as expected - your mileage "
1675
- "may vary"
1676
  msgstr ""
1677
- "schwieriger Anteil an zurückgegebenen Informationen nicht erwartet - das "
1678
- "Ergebnis könnte anders sein"
1679
 
1680
- #: methods/dropbox.php:299
1681
- #, php-format
1682
- msgid "Your %s account name"
1683
- msgstr "Dein %s Account-Name"
1684
 
1685
- #: methods/ftp.php:19 methods/ftp.php:66
1686
- msgid "FTP login failure"
1687
- msgstr "FTP-Login fehlgeschlagen"
1688
 
1689
- #: methods/ftp.php:38
1690
- msgid "FTP upload failed"
1691
- msgstr "FTP-Upload fehlgeschlagen"
1692
 
1693
- #: methods/ftp.php:98
1694
- msgid "Settings test result"
1695
- msgstr "Einstellungen Testergebnis"
1696
 
1697
- #: methods/ftp.php:114
1698
- msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1699
- msgstr "Die normale UpdraftPlus-Version unterstützt nur unverschlüsseltes FTP."
1700
 
1701
- #: methods/ftp.php:114
1702
- msgid ""
1703
- "If you want encryption (e.g. you are storing sensitive business data), then "
1704
- "an add-on is available."
1705
  msgstr ""
1706
- "Wenn du Verschlüsselung (z.B. wegen sensibler Geschäftsdaten) möchtest, "
1707
- "kannst du dir eine verfügbare Erweiterung holen."
1708
 
1709
- #: methods/ftp.php:118
1710
- msgid "FTP Server"
1711
- msgstr "FTP-Server"
1712
 
1713
- #: methods/ftp.php:122
1714
- msgid "FTP Login"
1715
- msgstr "FTP-Login"
1716
 
1717
- #: methods/ftp.php:126
1718
- msgid "FTP Password"
1719
- msgstr "FTP-Passwort"
1720
 
1721
- #: methods/ftp.php:130
1722
- msgid "Remote Path"
1723
- msgstr "Ferner Pfad"
1724
 
1725
- #: methods/ftp.php:131
1726
- msgid "Needs to already exist"
1727
- msgstr "Muss bereits existieren"
1728
 
1729
- #: methods/ftp.php:148
1730
- msgid "Failure: No server details were given."
1731
- msgstr "Fehler: Keine Serverdetails wurden angegeben."
1732
 
1733
- #: methods/ftp.php:167
1734
- msgid "Failure: we did not successfully log in with those credentials."
1735
- msgstr "Fehler: Konnte nicht erfolgreich mit angegebenen Logindaten einloggen."
1736
 
1737
- #: methods/ftp.php:175
1738
- msgid ""
1739
- "Failure: an unexpected internal UpdraftPlus error occurred when testing the "
1740
- "credentials - please contact the developer"
1741
  msgstr ""
1742
- "Fehler: Ein unerwarteter interner UpdraftPlus-Fehler ist beim Testen der "
1743
- "Logindaten aufgetreten - Bitte kontaktiere den Entwickler."
1744
 
1745
- #: methods/ftp.php:179
1746
- msgid ""
1747
- "Success: we successfully logged in, and confirmed our ability to create a "
1748
- "file in the given directory (login type:"
1749
  msgstr ""
1750
- "Erfolg: Wir haben uns erfolgreich eingeloggt und haben die Möglichkeit "
1751
- "Dateien im angegebenen Verzeichnis zu erstellen (Logintyp:"
1752
 
1753
- #: methods/ftp.php:182
1754
- msgid ""
1755
- "Failure: we successfully logged in, but were not able to create a file in "
1756
- "the given directory."
1757
  msgstr ""
1758
- "Fehler: Wir konnten uns erfolgreich einloggen, konnten jedoch im angegebenen "
1759
- "Verzeichnis keine Datei erstellen."
1760
 
1761
- #: addons/webdav.php:40 addons/webdav.php:170
1762
- #, php-format
1763
- msgid "No %s settings were found"
1764
- msgstr "Keine %s -Einstellungen gefunden"
1765
 
1766
- #: addons/webdav.php:116 addons/webdav.php:120
1767
- #, php-format
1768
- msgid "Chunk %s: A %s error occurred"
1769
- msgstr "Chunk %s: Ein %s Fehler ist aufgetreten"
1770
 
1771
- #: addons/webdav.php:182 addons/webdav.php:188 addons/webdav.php:200
1772
- msgid "WebDAV Error"
1773
- msgstr "WebDAV Fehler"
1774
 
1775
- #: addons/webdav.php:182
1776
- msgid "Error opening local file: Failed to download"
1777
- msgstr "Fehler beim Öffnen lokaler Datei: Herunterladen fehlgeschlagen"
1778
 
1779
- #: addons/webdav.php:188
1780
- msgid "Error opening remote file: Failed to download"
1781
- msgstr "Fehler beim Öffnen von Remote-Datei: Herunterladen fehlgeschlagen"
1782
 
1783
- #: addons/webdav.php:200
1784
- msgid "Local write failed: Failed to download"
1785
- msgstr "Lokales Schreiben fehlgeschlagen: Herunterladen fehlgeschlagen"
1786
 
1787
- #: addons/webdav.php:234
1788
- msgid "WebDAV URL"
1789
- msgstr "WebDAV URL"
1790
 
1791
- #: addons/webdav.php:238
1792
- #, php-format
1793
- msgid ""
1794
- "Enter a complete URL, beginning with webdav:// or webdavs:// and including "
1795
- "path, username, password and port as required - e.g.%s"
1796
  msgstr ""
1797
- "Gib einen kompletten URL, beginnend mit webdav:// oder webdavs:// und "
1798
- "enthaltenem Pfaf, sowie Benutzernamen, Passwort und Port an - z.B. %s"
1799
 
1800
- #: addons/webdav.php:281
1801
- msgid "Failed"
1802
- msgstr "Fehlgeschlagen."
1803
 
1804
- #: addons/webdav.php:295
1805
- msgid ""
1806
- "Failed: We were not able to place a file in that directory - please check "
1807
- "your credentials."
1808
  msgstr ""
1809
- "Fehlgeschlagen: Wir konnten, in das gewünschte Verzeichnis, keine Datei "
1810
- "schreiben - Bitte überprüfe deine Zugangsdaten"
1811
 
1812
- #: addons/sftp.php:23
1813
- msgid ""
1814
- "Encrypted FTP is available, and will be automatically tried first (before "
1815
- "falling back to non-encrypted if it is not successful). The 'Test FTP Login' "
1816
- "button will tell you what type of connection is in use."
1817
  msgstr ""
1818
- "Verschlüsseltes FTP ist verfügbar und wird automatisch zuerst probiert (wenn "
1819
- "nicht erfolgreich, wird auf eine nicht-verschlüsselte Verbindung "
1820
- "zurückgegriffen). Der 'Teste FTP-Login'-Button wird dir verraten, welcher "
1821
- "Verbindungstyp in Nutzung ist."
1822
 
1823
- #: addons/sftp.php:30 addons/sftp.php:31 addons/sftp.php:32
1824
- #, php-format
1825
- msgid "No %s found"
1826
- msgstr "Kein %s gefunden"
 
 
 
1827
 
1828
- #: addons/sftp.php:30
1829
- msgid "SFTP host setting"
1830
- msgstr "SFTP-Host Einstellungen"
1831
 
1832
- #: addons/sftp.php:31
1833
- msgid "SFTP user setting"
1834
- msgstr "SFTP-Benutzereinstellungen"
1835
 
1836
- #: addons/sftp.php:32
1837
- msgid "SFTP password"
1838
- msgstr "SFTP-Passwort"
1839
 
1840
- #: addons/sftp.php:50 addons/sftp.php:293
1841
- msgid "Check your file permissions: Could not successfully create and enter:"
 
 
 
 
1842
  msgstr ""
1843
- "Überprüfe deine Dateiberechtigungen: Konnte nicht erfolgreich erstellen und "
1844
- "betreten:"
1845
 
1846
- #: addons/sftp.php:128
1847
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1848
  msgid "%s Error: Failed to download"
1849
  msgstr "%s Fehler: Herunterladen fehlgeschlagen"
1850
 
1851
- #: addons/sftp.php:172
1852
- msgid ""
1853
- "Resuming partial uploads is not supported, so you will need to ensure that "
1854
- "your webserver allows PHP processes to run long enough to upload your "
1855
- "largest backup file."
1856
- msgstr ""
1857
- "Wiederaufnehmen von Uploads ist nicht unterstützt, du musst daher "
1858
- "sicherstellen, dass dein Webserver PHP erlaubt, so lang zu laufen, bis deine "
1859
- "größte Sicherungsdatei hochgeladen wurde."
1860
 
1861
- #: addons/sftp.php:177
1862
  msgid "Host"
1863
  msgstr "Host"
1864
 
1865
- #: addons/sftp.php:184
1866
  msgid "Port"
1867
  msgstr "Port"
1868
 
1869
- #: addons/sftp.php:191
1870
- msgid "Username"
1871
- msgstr "Benutzername"
1872
-
1873
- #: addons/sftp.php:198
1874
  msgid "Password"
1875
  msgstr "Passwort"
1876
 
1877
- #: addons/sftp.php:214
1878
  msgid "Directory path"
1879
  msgstr "Verzeichnispfad"
1880
 
1881
- #: addons/sftp.php:216
1882
- msgid ""
1883
- "Where to change directory to after logging in - often this is relative to "
1884
- "your home directory."
1885
- msgstr ""
1886
- "In welches Verzeichnis soll nach dem Login gewechselt werden - meistens ist "
1887
- "dieser Pfad relativ zu deinem Home-Verzeichnis"
1888
 
1889
- #: addons/sftp.php:254
1890
  msgid "host name"
1891
  msgstr "Hostname"
1892
 
1893
- #: addons/sftp.php:258
1894
  msgid "username"
1895
  msgstr "Benutzername"
1896
 
1897
- #: addons/sftp.php:262
1898
  msgid "password"
1899
  msgstr "Passwort"
1900
 
1901
- #: addons/sftp.php:267
1902
  msgid "Failure: Port must be an integer."
1903
  msgstr "Fehler: Port muss eine Nummer sein."
1904
 
1905
- #: addons/sftp.php:307
1906
- msgid ""
1907
- "Failed: We were able to log in and move to the indicated directory, but "
1908
- "failed to successfully created a file in that location."
1909
- msgstr ""
1910
- "Fehlgeschlagen: Wir waren in der Lage uns einzuloggen und das gewünschte "
1911
- "Verzeichnis zu betreten, konnten dort jedoch keine Datei anlegen."
1912
-
1913
- #: addons/fixtime.php:77 addons/fixtime.php:87
1914
  msgid "starting from next time it is"
1915
  msgstr "Nächste Durchlaufszeit ist"
1916
 
1917
- #: addons/fixtime.php:77 addons/fixtime.php:87
1918
- msgid "Enter in format HH:MM (e.g. 14:22)"
1919
- msgstr "Gib es im Format HH:MM (z.B. 14:22) an"
1920
-
1921
- #: addons/multisite.php:103
1922
  msgid "Multisite Install"
1923
  msgstr "Multiseiten-Installation"
1924
 
1925
- #: addons/multisite.php:109
1926
  msgid "You do not have sufficient permissions to access this page."
1927
- msgstr ""
1928
- "Du besitzt nicht die notwendigen Berechtigungen, um diese Seite aufzurufen."
1929
 
1930
- #: addons/multisite.php:128
1931
  msgid "You do not have permission to access this page."
1932
- msgstr ""
1933
- "Du besitzt nicht die nötigen Berechtigungen, um diese Seite aufzurufen."
1934
 
1935
- #: addons/multisite.php:180
1936
  msgid "Must-use plugins"
1937
  msgstr "Meist-benutzte Plugins"
1938
 
1939
- #: addons/multisite.php:181
1940
  msgid "Blog uploads"
1941
  msgstr "Blog Uploads"
1942
 
1943
- #: addons/dropbox-folders.php:21
1944
- msgid "Store at"
1945
- msgstr "Speichere in"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1946
 
1947
- #~ msgctxt "Uploader: Drop zip files here - or - Select Files"
1948
- #~ msgid "or"
1949
- #~ msgstr "oder"
1950
 
1951
- #~ msgid "Select Files"
1952
- #~ msgstr "Dateien auswählen"
 
1953
 
1954
- #~ msgid "UpdraftPlus - Backup/Restore"
1955
- #~ msgstr "UpdraftPlus - Sicherung/Wiederherstellung"
 
1956
 
1957
- #~ msgid "http://updraftplus.com"
1958
- #~ msgstr "http://updraftplus.com"
 
1959
 
1960
- #~ msgid ""
1961
- #~ "Backup and restore: your site can be backed up locally or to Amazon S3, "
1962
- #~ "Dropbox, Google Drive, (S)FTP, WebDAV & email, on automatic schedules."
1963
- #~ msgstr ""
1964
- #~ "Sicherung und Wiederherstellung: Deine Seite kann lokal oder bei Amazaon "
1965
- #~ "S3, Dropbox, Google Drive, (S)FTP, WebDAV oder E-Mail automatisch "
1966
- #~ "gesichert werden."
1967
 
1968
- #~ msgid "UpdraftPlus.Com, DavidAnderson"
1969
- #~ msgstr "UpdraftPlus.Com, DavidAnderson"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in German
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-10-21 10:07:28+0000\n"
 
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
 
13
+ #: admin.php:2135
14
+ msgid "See also the \"More Files\" add-on from our shop."
 
 
 
 
 
15
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
+ #: admin.php:1673
18
+ msgid "Free disk space in account: %s (%s used)"
19
+ msgstr ""
20
 
21
+ #: updraftplus.php:561
22
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
23
+ msgstr ""
24
 
25
+ #: updraftplus.php:695
26
+ msgid "See: %s"
27
+ msgstr ""
28
 
29
+ #: updraftplus.php:539
30
+ msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
31
+ msgstr ""
32
 
33
+ #: updraftplus.php:542 admin.php:296
34
+ msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)"
 
 
35
  msgstr ""
 
 
36
 
37
+ #: methods/email.php:49
38
+ msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive."
39
  msgstr ""
 
 
40
 
41
+ #: udaddons/options.php:375
42
+ msgid "You have an inactive purchase"
43
+ msgstr ""
44
 
45
+ #: udaddons/options.php:375
46
+ msgid "activate it on this site"
47
+ msgstr ""
48
 
49
+ #: udaddons/options.php:378
50
+ msgid "Get it from the UpdraftPlus.Com Store"
51
  msgstr ""
 
 
52
 
53
+ #: udaddons/options.php:379
54
+ msgid "Buy It"
55
+ msgstr ""
56
 
57
+ #: udaddons/options.php:402
58
+ msgid "Manage Addons"
59
+ msgstr ""
60
 
61
+ #: methods/email.php:18
62
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s). See: %s"
63
+ msgstr ""
64
 
65
+ #: udaddons/options.php:280
66
+ msgid "An unknown response was received. Response was:"
67
+ msgstr ""
68
 
69
+ #: udaddons/options.php:321
70
+ msgid "An error occurred when trying to retrieve your add-ons."
 
71
  msgstr ""
 
 
72
 
73
+ #: udaddons/options.php:335
74
+ msgid "Need to get support?"
75
+ msgstr ""
 
76
 
77
+ #: udaddons/options.php:335
78
+ msgid "Go here"
79
+ msgstr ""
80
 
81
+ #: udaddons/options.php:360
82
+ msgid "(apparently a pre-release or withdrawn release)"
 
 
83
  msgstr ""
 
 
84
 
85
+ #: udaddons/options.php:366
86
+ msgid "Available for this site (via your all-addons purchase)"
87
+ msgstr ""
88
 
89
+ #: udaddons/options.php:366
90
+ msgid "please update the plugin in order to get it"
91
+ msgstr ""
 
92
 
93
+ #: udaddons/options.php:369
94
+ msgid "Assigned to this site"
95
+ msgstr ""
 
96
 
97
+ #: udaddons/options.php:369
98
+ msgid "please update the plugin in order to activate it"
99
+ msgstr ""
 
100
 
101
+ #: udaddons/options.php:201
102
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
103
+ msgstr ""
104
 
105
+ #: udaddons/options.php:221
106
+ msgid "An unknown error occured when trying to connect to UpdraftPlus.Com"
107
+ msgstr ""
 
108
 
109
+ #: udaddons/options.php:227
110
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
111
+ msgstr ""
 
112
 
113
+ #: udaddons/options.php:228
114
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
115
+ msgstr ""
 
116
 
117
+ #: udaddons/options.php:230
118
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
119
+ msgstr ""
 
120
 
121
+ #: udaddons/options.php:236
122
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
123
+ msgstr ""
 
124
 
125
+ #: udaddons/options.php:277
126
+ msgid "Please wait whilst we make the claim..."
127
+ msgstr ""
 
128
 
129
+ #: udaddons/options.php:278
130
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else?"
131
+ msgstr ""
 
132
 
133
+ #: udaddons/options.php:279
134
+ msgid "Claim not granted - your account login details were wrong"
135
+ msgstr ""
 
136
 
137
+ #: udaddons/options.php:73
138
+ msgid "Your web server's version of PHP is too old ("
139
+ msgstr ""
140
 
141
+ #: udaddons/options.php:93
142
+ msgid "Connect with your UpdraftPlus.Com account"
143
+ msgstr ""
144
 
145
+ #: udaddons/options.php:118
146
+ msgid "Not yet got an account (it's free)? Go get one!"
147
+ msgstr ""
148
 
149
+ #: udaddons/options.php:128
150
+ msgid "Forgotten your details?"
151
+ msgstr ""
152
 
153
+ #: udaddons/options.php:56
154
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
 
 
 
 
 
155
  msgstr ""
 
 
 
 
156
 
157
+ #: udaddons/options.php:56
158
+ msgid "Go here to connect."
 
 
159
  msgstr ""
 
 
160
 
161
+ #: udaddons/options.php:62
162
+ msgid "UpdraftPlus is not yet activated."
163
+ msgstr ""
164
 
165
+ #: udaddons/options.php:63
166
+ msgid "Go here to activate it."
167
  msgstr ""
 
 
168
 
169
+ #: udaddons/options.php:66
170
+ msgid "UpdraftPlus is not yet installed."
171
+ msgstr ""
172
 
173
+ #: udaddons/options.php:66
174
+ msgid "Go here to begin installing it."
175
  msgstr ""
 
 
176
 
177
+ #: udaddons/options.php:67
178
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
 
 
179
  msgstr ""
 
 
 
180
 
181
+ #: admin.php:2152
182
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s)."
183
+ msgstr ""
184
 
185
+ #: admin.php:2178
186
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on, and add the capability to encrypt files also."
187
+ msgstr ""
188
 
189
+ #: admin.php:1333
190
+ msgid "If your restore included files, then your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
 
 
191
  msgstr ""
 
192
 
193
+ #: backup.php:794
194
+ msgid "Skipping table (lacks our prefix): %s"
195
+ msgstr ""
196
 
197
+ #: updraftplus.php:692 admin.php:2172
198
+ msgid "Your web-server does not have the %s module installed."
199
+ msgstr ""
200
 
201
+ #: updraftplus.php:692 admin.php:2172
202
+ msgid "Without it, encryption will be a lot slower."
 
 
203
  msgstr ""
 
 
 
204
 
205
+ #: updraftplus.php:695
206
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on (and add more features to it)."
 
 
 
207
  msgstr ""
 
 
 
208
 
209
+ #: admin.php:1494
210
+ msgid "Drop backup files here"
211
+ msgstr ""
212
 
213
+ #: methods/googledrive.php:486
214
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
215
+ msgstr ""
216
 
217
+ #: methods/dropbox.php:291
218
+ msgid "(You appear to be already authenticated)"
219
+ msgstr ""
220
 
221
+ #: updraftplus.php:2063
222
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
223
+ msgstr ""
224
 
225
+ #: updraftplus.php:2072
226
+ msgid "Check out WordShell"
227
+ msgstr ""
228
 
229
+ #: updraftplus.php:2072
230
+ msgid "manage WordPress from the command line - huge time-saver"
231
  msgstr ""
 
 
232
 
233
+ #: methods/dropbox.php:35
234
+ msgid "The %s PHP module is not installed - ask your web hosting company to enable it"
235
  msgstr ""
 
236
 
237
+ #: admin.php:1624
238
+ msgid "Does nothing happen when you attempt backups?"
239
+ msgstr ""
240
 
241
+ #: admin.php:1620
242
+ msgid "Don't include the database in the backup"
243
+ msgstr ""
244
 
245
+ #: admin.php:1621
246
+ msgid "Don't include any files in the backup"
247
+ msgstr ""
248
 
249
+ #: admin.php:1478
250
+ msgid "Restoring:"
251
+ msgstr ""
252
 
253
+ #: admin.php:1478
254
+ msgid "Press the Restore button next to the chosen backup set."
255
+ msgstr ""
256
 
257
+ #: admin.php:82
258
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
259
+ msgstr ""
260
 
261
+ #: admin.php:84
262
+ msgid "The web server returned an error code (try again, or check your web server logs)"
263
+ msgstr ""
264
 
265
+ #: admin.php:81
266
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
267
+ msgstr ""
268
 
269
+ #: restorer.php:714
270
+ msgid "Site home:"
271
+ msgstr ""
272
 
273
+ #: addons/morestorage.php:80
274
+ msgid "Remote Storage Options"
275
+ msgstr "Netzwerkspeicher Optionen"
276
 
277
+ #: addons/autobackup.php:29 addons/autobackup.php:278
278
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
279
+ msgstr "Einstellung für das nächste Mal merken (du kannst dies jederzeit ändern)"
280
 
281
+ #: addons/autobackup.php:64 addons/autobackup.php:148
282
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
283
+ msgstr "(Logs können auf der UpdraftPus-Einstellungsseite gefunden werden)"
284
 
285
+ #: addons/webdav.php:139
286
+ msgid "Upload failed"
287
+ msgstr "Hochladen fehlgeschlagen"
288
 
289
+ #: admin.php:2237
290
+ msgid "You can send a backup to more than one destination with an add-on."
291
+ msgstr "Mit einem Zusatzpaket kannst du Sicherungen zu mehr als einen Speicherort senden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
 
293
+ #: admin.php:1869
294
+ msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
295
  msgstr ""
 
 
296
 
297
+ #: admin.php:1819
298
+ msgid "(%s%%, file %s of %s)"
299
+ msgstr ""
300
 
301
+ #: addons/sftp.php:421
302
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
 
303
  msgstr ""
 
304
 
305
+ #: addons/sftp.php:423
306
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  msgstr ""
 
308
 
309
+ #: addons/autobackup.php:29 addons/autobackup.php:278
310
+ msgid "Read more about how this works..."
311
+ msgstr "Lies mehr darüber, wie das funktioniert..."
312
 
313
+ #: addons/sftp.php:311
314
+ msgid "Use SCP instead of SFTP"
315
+ msgstr "Benutze SCP anstelle von SFTP"
 
 
 
 
316
 
317
+ #: addons/sftp.php:36
318
+ msgid "SCP/SFTP password"
319
+ msgstr "SCP/SFTP Passwort"
320
 
321
+ #: addons/sftp.php:34
322
+ msgid "SCP/SFTP host setting"
323
+ msgstr "SCP/SFTP Host-Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
324
 
325
+ #: addons/sftp.php:35
326
+ msgid "SCP/SFTP user setting"
327
+ msgstr "SCP/SFTP Benutzer-Einstellungen"
328
 
329
+ #: methods/email.php:32
330
+ msgid "Backup is of: %s."
331
+ msgstr "Sicherung ist vom: %s"
332
 
333
+ #: methods/email.php:39
334
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
335
+ msgstr ""
336
 
337
+ #: methods/cloudfiles.php:372
338
+ msgid "%s settings test result:"
339
+ msgstr "%s Einstellungs Testergebnis:"
340
 
341
+ #: admin.php:2500
342
+ msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
343
+ msgstr "Wenn du mehr Sicherungen siehst, als du erwartest, dann könnte es darin liegen, dass das Löschen alter Sicherungen erst mit der Fertigstellung einer neuen Sicherung in Kraft tritt."
344
 
345
+ #: admin.php:2500
346
+ msgid "(Not finished)"
347
+ msgstr "(nicht fertig)"
348
 
349
+ #: admin.php:2330
350
+ msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
351
+ msgstr "Hier schreibt UpdraftPlus seine Archive hinein. Das Verzeichnis muss für denen Webserver beschreibbar sein. Es ist relativ zum Content-Ordner (standardmäßig wp-content)."
352
 
353
+ #: admin.php:2330
354
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
 
 
 
355
  msgstr ""
 
 
 
356
 
357
+ #: admin.php:2303
358
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
359
+ msgstr ""
 
 
 
 
360
 
361
+ #: admin.php:1828
362
+ msgid "Waiting until scheduled time to retry because of errors"
 
 
363
  msgstr ""
 
 
364
 
365
+ #: admin.php:1833
366
+ msgid "Backup finished"
367
+ msgstr "Sicherung fertiggestellt"
368
 
369
+ #: admin.php:1836
370
+ msgid "Unknown"
371
+ msgstr "unbekannt"
 
 
 
 
 
 
 
372
 
373
+ #: admin.php:1852
374
+ msgid "next resumption: %d (after %ss)"
375
+ msgstr ""
376
 
377
+ #: admin.php:1853
378
+ msgid "last activity: %ss ago"
379
+ msgstr ""
380
 
381
+ #: admin.php:1863
382
+ msgid "Job ID: %s"
383
  msgstr ""
 
384
 
385
+ #: admin.php:1790
386
+ msgid "table: %s"
387
  msgstr ""
 
 
388
 
389
+ #: admin.php:1798
390
+ msgid "Created database backup"
391
+ msgstr "Datenbanksicherung erstellt"
 
392
 
393
+ #: admin.php:1803
394
+ msgid "Encrypting database"
395
+ msgstr "Datenbank verschlüsseln"
396
 
397
+ #: admin.php:1807
398
+ msgid "Encrypted database"
399
+ msgstr "verschlüsselte Datenbank"
 
 
 
 
 
400
 
401
+ #: admin.php:1812
402
+ msgid "Uploading files to remote storage"
403
+ msgstr "Lade Dateien auf Netzwerkspeicher"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
 
405
+ #: admin.php:1824
406
+ msgid "Pruning old backup sets"
407
+ msgstr "Entferne alte Sicherungssätze"
408
 
409
+ #: admin.php:1770
410
+ msgid "Creating file backup zips"
411
+ msgstr "Erstelle Datei-Sicherung ZIPs"
412
 
413
+ #: admin.php:1783
414
+ msgid "Created file backup zips"
415
+ msgstr "Datei-Sicherung ZIPs erstellt"
416
 
417
+ #: admin.php:1788
418
+ msgid "Creating database backup"
419
+ msgstr "Erstelle Datenbank-Sicherung"
420
 
421
+ #: admin.php:1765
422
+ msgid "Backup begun"
423
+ msgstr "Sicherung hat begonnen"
 
424
 
425
+ #: admin.php:1450
426
+ msgid "Backups in progress:"
427
+ msgstr "Sicherungen in Bearbeitung:"
428
 
429
+ #: admin.php:300
430
+ msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
431
+ msgstr ""
432
 
433
+ #: restorer.php:278 restorer.php:284
434
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
 
 
435
  msgstr ""
 
 
436
 
437
+ #: restorer.php:278
438
+ msgid "folder"
439
+ msgstr "Ordner"
440
 
441
+ #: restorer.php:284
442
+ msgid "file"
443
+ msgstr "Datei"
444
 
445
+ #: backup.php:1186
446
+ msgid "Failed to open directory (check the file permissions): %s"
447
+ msgstr ""
448
 
449
+ #: backup.php:1180
450
+ msgid "%s: unreadable file - could not be backed up (check the file permissions)"
451
+ msgstr ""
452
 
453
+ #: updraftplus.php:1519
454
+ msgid "The backup has not finished; a resumption is scheduled"
 
 
455
  msgstr ""
 
 
 
456
 
457
+ #: updraftplus.php:1067
458
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  msgstr ""
 
 
460
 
461
+ #: methods/googledrive.php:482
462
+ msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
 
 
 
 
 
 
 
 
463
  msgstr ""
 
 
 
 
464
 
465
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:88
466
+ #: methods/googledrive.php:63
467
+ msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
  msgstr ""
 
 
 
 
 
 
 
 
469
 
470
+ #: admin.php:1342
471
+ msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
 
472
  msgstr ""
 
 
 
 
 
 
473
 
474
+ #: addons/autobackup.php:221
475
+ msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - now proceeding with the updates..."
 
 
 
 
 
 
476
  msgstr ""
 
 
 
477
 
478
+ #: addons/autobackup.php:274
479
+ msgid "UpdraftPlus Automatic Backups"
480
+ msgstr "UpdraftPlus automatisierte Sicherungen"
481
 
482
+ #: addons/autobackup.php:279
483
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
484
+ msgstr "Klicke nicht auf abbrechen, nachdem du unten auf Weiter geklickt hast - Warte, bis die Sicherung fertiggestellt wurde."
 
485
 
486
+ #: addons/autobackup.php:280
487
+ msgid "Proceed with update"
488
+ msgstr "Mit Aktualisierung weitermachen"
489
 
490
+ #: addons/autobackup.php:68 addons/autobackup.php:155
491
+ msgid "Starting automatic backup..."
492
+ msgstr "Starte automatische Sicherung..."
493
 
494
+ #: addons/autobackup.php:113
495
+ msgid "plugins"
496
+ msgstr "Plugins"
497
 
498
+ #: addons/autobackup.php:118
499
+ msgid "themes"
500
+ msgstr "Designs"
501
 
502
+ #: addons/autobackup.php:138
503
+ msgid "You do not have sufficient permissions to update this site."
504
+ msgstr "Du besitzt nicht die notwendigen Rechte, um diese Seite zu aktualisieren."
505
 
506
+ #: addons/autobackup.php:148
507
+ msgid "Creating database backup with UpdraftPlus..."
508
+ msgstr "Erstelle Datenbanksicherung mit UpdraftPlus..."
509
 
510
+ #: addons/autobackup.php:157 addons/autobackup.php:243
511
+ #: addons/autobackup.php:266
512
+ msgid "Automatic Backup"
513
+ msgstr "Automatische Sicherung"
514
 
515
+ #: addons/autobackup.php:199
516
+ msgid "Creating backup with UpdraftPlus..."
517
+ msgstr "Erstelle Sicherung mit UpdraftPlus..."
518
 
519
+ #: addons/autobackup.php:206
520
+ msgid "Errors have occurred:"
521
+ msgstr "Fehler sind aufgetreten:"
 
522
 
523
+ #: addons/autobackup.php:219
524
+ msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - now proceeding with the updates..."
525
+ msgstr ""
526
 
527
+ #: addons/autobackup.php:29 addons/autobackup.php:278
528
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
529
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
 
531
+ #: addons/autobackup.php:64
532
+ msgid "Creating %s and database backup with UpdraftPlus..."
 
 
 
 
533
  msgstr ""
 
 
 
 
534
 
535
+ #: addons/morefiles.php:94
536
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
537
+ msgstr ""
538
 
539
+ #: addons/morefiles.php:99
540
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
541
+ msgstr ""
542
 
543
+ #: addons/morefiles.php:118 addons/morefiles.php:119
544
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
 
 
 
545
  msgstr ""
 
 
 
 
546
 
547
+ #: addons/morefiles.php:118 addons/morefiles.php:119
548
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
549
+ msgstr ""
550
 
551
+ #: admin.php:1323
552
+ msgid "Support"
553
+ msgstr "Unterstützung"
554
 
555
+ #: admin.php:1323
556
+ msgid "More plugins"
557
+ msgstr "Mehr Plugins"
558
 
559
+ #: admin.php:963
560
+ msgid "%s version: %s"
561
+ msgstr ""
562
 
563
+ #: admin.php:964
564
+ msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
565
+ msgstr ""
 
566
 
567
+ #: admin.php:1038
568
+ msgid "This database backup is missing core WordPress tables: %s"
569
+ msgstr ""
570
 
571
+ #: admin.php:1041
572
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
573
+ msgstr ""
574
 
575
+ #: admin.php:908
576
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
 
 
577
  msgstr ""
 
 
578
 
579
+ #: admin.php:135 admin.php:285
580
+ msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
581
+ msgstr ""
582
 
583
+ #: admin.php:135 admin.php:285
584
+ msgid "Be safe every time, without needing to remember - follow this link to learn more."
585
+ msgstr ""
586
 
587
+ #: admin.php:270
588
+ msgid "Update Plugin"
589
+ msgstr "Aktualisiere Plugin"
590
 
591
+ #: admin.php:274
592
+ msgid "Update Theme"
593
+ msgstr "Aktualisiere Design"
594
 
595
+ #: admin.php:133 admin.php:283
596
+ msgid "Dismiss (for %s weeks)"
 
 
 
 
597
  msgstr ""
 
 
598
 
599
+ #: admin.php:134 admin.php:284
600
+ msgid "Be safe with an automatic backup"
601
+ msgstr ""
602
 
603
+ #: restorer.php:999
604
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
 
 
605
  msgstr ""
 
 
 
606
 
607
+ #: admin.php:1327
608
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
609
+ msgstr ""
610
 
611
+ #: admin.php:108
612
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
 
 
 
613
  msgstr ""
 
 
 
614
 
615
+ #: admin.php:109
616
+ msgid "This decryption key will be attempted:"
617
+ msgstr "Dieser Entschlüsselungskey wird probiert:"
618
 
619
+ #: admin.php:110
620
+ msgid "Unknown server response:"
621
+ msgstr "Unbekannte Server-Antwort:"
622
 
623
+ #: admin.php:111
624
+ msgid "Unknown server response status:"
625
+ msgstr "Unbekannter Server-Antwort-Status:"
626
 
627
+ #: admin.php:112
628
+ msgid "The file was uploaded."
629
+ msgstr "Die Datei wurde hochgeladen."
630
 
631
+ #: admin.php:103
632
+ msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
633
+ msgstr ""
 
634
 
635
+ #: admin.php:104
636
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
637
+ msgstr ""
638
 
639
+ #: admin.php:105
640
+ msgid "Upload error:"
641
+ msgstr "Fehler beim Hochladen:"
642
 
643
+ #: admin.php:106
644
+ msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
645
+ msgstr ""
646
 
647
+ #: admin.php:107
648
+ msgid "Upload error"
649
+ msgstr "Fehler beim Hochladen"
650
 
651
+ #: admin.php:96
652
+ msgid "Delete from your web server"
653
+ msgstr "Vom Webserver löschen"
654
 
655
+ #: admin.php:97
656
+ msgid "Download to your computer"
657
+ msgstr "Auf Computer Herunterladen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
 
659
+ #: admin.php:98
660
+ msgid "and then, if you wish,"
661
+ msgstr "und dann, sofern du möchtest,"
662
+
663
+ #: methods/s3.php:387
664
+ msgid "Examples of S3-compatible storage providers:"
665
  msgstr ""
 
 
666
 
667
+ #: methods/googledrive.php:207
668
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
669
+ msgstr ""
670
 
671
+ #: backup.php:736
672
+ msgid "The backup directory is not writable - the database backup is expected to shortly fail."
673
+ msgstr "Das Sicherungsverzeichnis ist nicht beschreibbar - es wird erwartet, dass die Datenbanksicherung demnächst fehlschlägt."
 
 
 
 
 
 
 
 
 
 
 
 
 
674
 
675
+ #: admin.php:2859
676
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
677
+ msgstr "Werde keine Archive nach dem Entpacken löschen, weil es keinen Cloudspeicher für diese Sicherung gibt."
 
 
 
 
 
 
 
 
678
 
679
+ #: admin.php:2552
680
+ msgid "(%d archive(s) in set)."
681
+ msgstr ""
682
 
683
+ #: admin.php:2555
684
+ msgid "You appear to be missing one or more archives from this multi-archive set."
 
 
685
  msgstr ""
 
686
 
687
+ #: admin.php:2302
688
+ msgid "Split archives every:"
689
+ msgstr "Teile das Archiv alle:"
690
 
691
+ #: admin.php:2123
692
+ msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
693
+ msgstr ""
 
694
 
695
+ #: admin.php:89
696
+ msgid "Error: the server sent an empty response."
697
+ msgstr "Fehler: Der Server sendete eine leere Antwort."
698
 
699
+ #: admin.php:90
700
+ msgid "Warnings:"
701
+ msgstr "Warnungen"
 
 
 
 
702
 
703
+ #: admin.php:92
704
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
705
+ msgstr "Fehler: Der Server hat uns eine Antwort (JSON) gesendet, die wir nicht verstehen."
706
 
707
+ #: admin.php:1346
708
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
 
 
 
 
 
709
  msgstr ""
 
 
 
710
 
711
+ #: admin.php:1139
712
+ msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
 
 
 
 
713
  msgstr ""
 
 
714
 
715
+ #: admin.php:612
716
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
717
+ msgstr ""
718
 
719
+ #: admin.php:614
720
+ msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
721
+ msgstr ""
722
 
723
+ #: admin.php:616
724
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
 
 
 
725
  msgstr ""
 
 
726
 
727
+ #: admin.php:496
728
+ msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
729
  msgstr ""
 
730
 
731
+ #: admin.php:549
732
+ msgid "No such backup set exists"
733
+ msgstr ""
734
 
735
+ #: admin.php:587
736
+ msgid "File not found (you need to upload it): %s"
737
+ msgstr ""
738
 
739
+ #: admin.php:589
740
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
741
+ msgstr ""
742
 
743
+ #: admin.php:593
744
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
745
+ msgstr ""
746
 
747
+ #: admin.php:607
748
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
749
+ msgstr ""
750
 
751
+ #: restorer.php:229
752
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
 
 
753
  msgstr ""
 
 
754
 
755
+ #: restorer.php:446
756
+ msgid "This directory already exists, and will be replaced"
 
 
757
  msgstr ""
 
 
758
 
759
+ #: restorer.php:220
760
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
761
  msgstr ""
 
762
 
763
+ #: restorer.php:28
764
+ msgid "Moving unpacked backup into place..."
 
 
765
  msgstr ""
 
 
766
 
767
+ #: backup.php:1449 backup.php:1685
768
+ msgid "Failed to open the zip file (%s) - %s"
 
 
769
  msgstr ""
 
770
 
771
+ #: addons/morefiles.php:79
772
+ msgid "WordPress root directory server path: %s"
773
+ msgstr "Das WordPress Wurzelverzeichnis auf dem Server: %s"
 
774
 
775
+ #: methods/s3.php:395
776
+ msgid "... and many more!"
777
+ msgstr "... und viele mehr!"
778
 
779
+ #: methods/s3.php:420
780
+ msgid "%s end-point"
781
+ msgstr "%s Endpunkt"
 
782
 
783
+ #: admin.php:2807
784
+ msgid "File is not locally present - needs retrieving from remote storage"
785
+ msgstr "Datei ist lokal nicht vorhanden - benötigt den Empfang vom Netzwerkspeicher"
 
786
 
787
+ #: methods/s3generic.php:21 methods/s3generic.php:30
788
+ msgid "S3 (Compatible)"
789
+ msgstr "S3 (Kompatibel)"
 
 
790
 
791
+ #: admin.php:2779
792
+ msgid "Final checks"
793
+ msgstr "Letzte Prüfungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
794
 
795
+ #: admin.php:2802
796
+ msgid "Looking for %s archive: file name: %s"
 
 
797
  msgstr ""
 
 
798
 
799
+ #: admin.php:2308
800
+ msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
 
801
  msgstr ""
 
802
 
803
+ #: admin.php:2190
804
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
805
+ msgstr ""
 
806
 
807
+ #: admin.php:2115
808
+ msgid "Your wp-content directory server path: %s"
809
+ msgstr ""
810
 
811
+ #: admin.php:102
812
+ msgid "Raw backup history"
813
  msgstr ""
 
 
814
 
815
+ #: admin.php:1676
816
+ msgid "Show raw backup and file list"
 
 
 
817
  msgstr ""
 
 
818
 
819
+ #: admin.php:88
820
+ msgid "Processing files - please wait..."
821
+ msgstr ""
 
822
 
823
+ #: admin.php:1474
824
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
825
+ msgstr ""
826
 
827
+ #: admin.php:1474
828
+ msgid "Please consult this FAQ for help on what to do about it."
829
+ msgstr ""
830
 
831
+ #: admin.php:914
832
+ msgid "Failed to open database file."
833
+ msgstr ""
834
 
835
+ #: admin.php:896
836
+ msgid "Failed to write out the decrypted database to the filesystem."
 
 
 
 
 
837
  msgstr ""
 
 
 
838
 
839
+ #: admin.php:717
840
+ msgid "Known backups (raw)"
 
 
841
  msgstr ""
 
 
842
 
843
+ #: restorer.php:537
844
+ msgid "Using directory from backup: %s"
 
 
845
  msgstr ""
 
 
846
 
847
+ #: restorer.php:489
848
+ msgid "Files found:"
849
+ msgstr ""
850
 
851
+ #: restorer.php:495
852
+ msgid "Unable to enumerate files in that directory."
 
 
853
  msgstr ""
 
 
854
 
855
+ #: restorer.php:844
856
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
 
 
 
857
  msgstr ""
 
 
 
858
 
859
+ #: restorer.php:855
860
+ msgid "Restoring table (%s)"
 
 
861
  msgstr ""
 
 
862
 
863
+ #: restorer.php:297
864
+ msgid "An existing unremoved backup from a previous restore exists: %s"
865
+ msgstr ""
866
 
867
+ #: backup.php:1502 backup.php:1695
868
+ msgid "A zip error occurred - check your log for more details."
 
 
869
  msgstr ""
 
 
870
 
871
+ #: addons/migrator.php:44
872
+ msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
873
+ msgstr ""
874
 
875
+ #: restorer.php:930
876
+ msgid "An error occured on the first CREATE TABLE command - aborting run"
877
+ msgstr ""
878
 
879
+ #: admin.php:2828
880
+ msgid "file is size:"
 
 
 
 
 
881
  msgstr ""
 
 
 
 
882
 
883
+ #: admin.php:2519
884
+ msgid "database"
885
+ msgstr "Datenbank"
886
 
887
+ #: admin.php:300 admin.php:1327
888
+ msgid "Go here for more information."
889
+ msgstr "Hier findest du mehr Informationen."
 
 
 
 
 
890
 
891
+ #: admin.php:1538
892
+ msgid "Downloading / preparing backup files..."
893
+ msgstr "Lade herunter / Bereite Sicherungsdateien vor..."
894
 
895
+ #: admin.php:87
896
+ msgid "Some files are still downloading or being processed - please wait."
897
+ msgstr "Einige Dateien werden noch heruntergeladen oder bearbeitet - bitte warten."
898
 
899
+ #: admin.php:949 admin.php:957
900
+ msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
 
 
901
  msgstr ""
 
 
902
 
903
+ #: methods/ftp.php:44 methods/ftp.php:127
904
+ msgid "%s login failure"
905
+ msgstr ""
906
 
907
+ #: methods/ftp.php:63
908
+ msgid "%s upload failed"
909
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
910
 
911
+ #: addons/fixtime.php:120 addons/fixtime.php:129
912
+ msgid "Enter in format HH:MM (e.g. 14:22)."
 
 
913
  msgstr ""
 
 
914
 
915
+ #: addons/fixtime.php:120 addons/fixtime.php:129
916
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
917
+ msgstr ""
 
918
 
919
+ #: methods/dropbox.php:51
920
+ msgid "Dropbox error: %s (see log file for more)"
 
921
  msgstr ""
 
 
922
 
923
+ #: methods/dropbox.php:173
924
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
925
+ msgstr ""
 
926
 
927
+ #: methods/dropbox.php:181
928
+ msgid "Failed to access %s when deleting (see log file for more)"
 
 
929
  msgstr ""
 
 
930
 
931
+ #: methods/dropbox.php:211
932
+ msgid "You do not appear to be authenticated with %s"
 
 
933
  msgstr ""
 
 
934
 
935
+ #: methods/cloudfiles.php:344
936
+ msgid "Error - no such file exists at %s"
 
 
937
  msgstr ""
 
 
938
 
939
+ #: methods/cloudfiles.php:348
940
+ msgid "Error - failed to download the file from %s"
941
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
 
943
+ #: methods/cloudfiles.php:179
944
+ msgid "%s error - failed to upload file"
945
+ msgstr ""
 
 
946
 
947
+ #: methods/cloudfiles.php:318 methods/cloudfiles.php:335
948
+ msgid "%s Error"
949
+ msgstr ""
950
 
951
+ #: methods/cloudfiles.php:53 methods/cloudfiles.php:57
952
+ #: methods/cloudfiles.php:209 methods/cloudfiles.php:262
953
+ #: methods/cloudfiles.php:266
954
+ msgid "%s authentication failed"
955
+ msgstr ""
956
 
957
+ #: methods/cloudfiles.php:169
958
+ msgid "%s error - failed to re-assemble chunks"
959
+ msgstr ""
960
 
961
+ #: methods/googledrive.php:391
962
+ msgid "%s error: zero-size file was downloaded"
963
+ msgstr ""
964
 
965
+ #: restorer.php:483 admin.php:887 admin.php:976 admin.php:981 admin.php:1132
966
+ #: admin.php:1139
967
+ msgid "Error: %s"
 
 
968
  msgstr ""
 
 
 
969
 
970
+ #: admin.php:2325
971
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
972
+ msgstr ""
973
 
974
+ #: admin.php:2323
975
+ msgid "Backup directory specified does <b>not</b> exist."
 
 
976
  msgstr ""
 
 
977
 
978
+ #: admin.php:949 admin.php:957 admin.php:1874 admin.php:2027
979
+ msgid "Warning: %s"
980
+ msgstr "Warnung: %s"
981
+
982
+ #: admin.php:1417
983
+ msgid "Last backup job run:"
984
+ msgstr "Letzter Sicherungsjob lief:"
985
+
986
+ #: backup.php:1200 backup.php:1212
987
+ msgid "%s: unreadable file - could not be backed up"
988
  msgstr ""
 
 
989
 
990
+ #: backup.php:1463
991
+ msgid "A very large file was encountered: %s (size: %s Mb)"
992
+ msgstr ""
993
 
994
+ #: backup.php:772
995
+ msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
996
+ msgstr ""
 
997
 
998
+ #: backup.php:843
999
+ msgid "An error occurred whilst closing the final database file"
1000
+ msgstr "Beim schließen der finalen Datenbankdatei ist ein Fehler aufgetreten."
1001
+
1002
+ #: backup.php:439
1003
+ msgid "Warnings encountered:"
1004
+ msgstr "Warnungen aufgetreten:"
1005
+
1006
+ #: updraftplus.php:1509
1007
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
1008
+ msgstr "Die Sicherung ist (mit Warnungen) abgeschlossen und nun komplett."
1009
+
1010
+ #: updraftplus.php:573
1011
+ msgid "Your free disk space is very low - only %s Mb remain"
1012
+ msgstr "Dein freier Speicherplatz ist sehr niedrig - es sind noch %s MB übrig"
1013
+
1014
+ #: addons/migrator.php:516
1015
+ msgid "<strong>Search and replacing table:</strong> %s"
1016
  msgstr ""
 
 
1017
 
1018
+ #: addons/migrator.php:102
1019
+ msgid "Site Name:"
1020
+ msgstr "Seitenname:"
1021
 
1022
+ #: addons/migrator.php:104
1023
+ msgid "Site Domain:"
1024
+ msgstr "Seitendomain:"
1025
 
1026
+ #: addons/migrator.php:121
1027
+ msgid "Migrated site (from UpdraftPlus)"
1028
+ msgstr "Migrierte Seite (von UpdraftPlus)"
1029
+
1030
+ #: addons/migrator.php:150
1031
+ msgid "<strong>ERROR</strong>: Site URL already taken."
1032
  msgstr ""
 
 
1033
 
1034
+ #: addons/migrator.php:157
1035
+ msgid "New site:"
1036
+ msgstr "Neue Seite:"
1037
 
1038
+ #: addons/migrator.php:89
1039
+ msgid "Information needed to continue:"
1040
+ msgstr "Benötigte Informationen zum Fortfahren:"
1041
 
1042
+ #: addons/migrator.php:90
1043
+ msgid "Please supply the following information:"
 
 
 
1044
  msgstr ""
 
 
 
1045
 
1046
+ #: addons/migrator.php:93
1047
+ msgid "Enter details for where this new site is to live within your multisite install:"
 
 
 
 
1048
  msgstr ""
 
 
 
 
1049
 
1050
+ #: addons/migrator.php:48
1051
+ msgid "Processed plugin:"
1052
+ msgstr ""
1053
+
1054
+ #: addons/migrator.php:56
1055
+ msgid "Network activating theme:"
1056
+ msgstr ""
1057
+
1058
+ #: addons/sftp.php:27
1059
+ msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
 
 
 
 
 
 
 
 
 
 
 
1060
  msgstr ""
 
 
1061
 
1062
+ #: addons/sftp.php:64
1063
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
1064
+ msgstr ""
 
1065
 
1066
+ #: methods/dropbox.php:273
1067
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1068
+ msgstr ""
1069
 
1070
+ #: methods/s3.php:537
1071
+ msgid "Please check your access credentials."
1072
+ msgstr ""
1073
 
1074
+ #: methods/s3.php:512
1075
+ msgid "The error reported by %s was:"
1076
+ msgstr ""
1077
 
1078
+ #: restorer.php:553
1079
+ msgid "Please supply the requested information, and then continue."
1080
+ msgstr ""
1081
 
1082
+ #: restorer.php:560
1083
+ msgid "New table prefix:"
 
 
1084
  msgstr ""
 
 
1085
 
1086
+ #: restorer.php:911
1087
+ msgid "Cannot drop tables, so deleting instead (%s)"
1088
+ msgstr ""
1089
 
1090
+ #: restorer.php:730 admin.php:981
1091
+ msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
1092
+ msgstr ""
1093
 
1094
+ #: restorer.php:736 admin.php:989
1095
+ msgid "Site information:"
1096
+ msgstr "Seiteninformationen:"
1097
 
1098
+ #: restorer.php:906
1099
+ msgid "Cannot create new tables, so skipping this command (%s)"
1100
+ msgstr "Kann keine neuen Tabellen anlegen, überspringe das Kommando (%s)"
1101
 
1102
+ #: restorer.php:680 restorer.php:695 admin.php:1327
1103
+ msgid "Warning:"
1104
+ msgstr "Warnung:"
1105
 
1106
+ #: restorer.php:680
1107
+ msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
1108
+ msgstr ""
1109
 
1110
+ #: restorer.php:695
1111
+ msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
1112
+ msgstr ""
1113
 
1114
+ #: restorer.php:35 admin.php:976
1115
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
 
 
1116
  msgstr ""
 
 
1117
 
1118
+ #: admin.php:2791
1119
+ msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
 
 
1120
  msgstr ""
 
 
1121
 
1122
+ #: admin.php:2396
1123
+ msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
 
 
1124
  msgstr ""
 
 
1125
 
1126
+ #: admin.php:2396
1127
+ msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
1128
+ msgstr ""
 
1129
 
1130
+ #: admin.php:116
1131
+ msgid "Close"
1132
+ msgstr "Schließen"
 
1133
 
1134
+ #: admin.php:83
1135
+ msgid "Unexpected response:"
1136
+ msgstr "Unerwartete Antwort:"
1137
 
1138
+ #: admin.php:2144
1139
+ msgid "To send to more than one address, separate each address with a comma."
1140
+ msgstr "Um zu mehr als einer Adresse zu senden, trenne die Adressen mit einem Komma."
1141
 
1142
+ #: admin.php:101
1143
+ msgid "PHP information"
1144
+ msgstr "PHP Informationen"
1145
 
1146
+ #: admin.php:1655
1147
+ msgid "show PHP information (phpinfo)"
1148
+ msgstr "zeige PHP Informationen (phpinfo)"
1149
 
1150
+ #: admin.php:1668
1151
+ msgid "zip executable found:"
1152
+ msgstr ""
1153
 
1154
+ #: admin.php:1599
1155
+ msgid "Migrate Site"
 
 
 
1156
  msgstr ""
 
 
1157
 
1158
+ #: admin.php:1603
1159
+ msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
1160
+ msgstr ""
1161
 
1162
+ #: admin.php:1603
1163
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
 
 
1164
  msgstr ""
 
 
1165
 
1166
+ #: admin.php:1605
1167
+ msgid "Do you want to migrate or clone/duplicate a site?"
 
 
 
1168
  msgstr ""
 
 
 
 
1169
 
1170
+ #: admin.php:1605
1171
+ msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1172
+ msgstr ""
1173
+
1174
+ #: admin.php:1605
1175
+ msgid "Get it here."
1176
+ msgstr ""
1177
 
1178
+ #: admin.php:1527
1179
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
1180
+ msgstr ""
1181
 
1182
+ #: admin.php:1526
1183
+ msgid "Also delete from remote storage"
1184
+ msgstr ""
1185
 
1186
+ #: admin.php:1462
1187
+ msgid "Latest UpdraftPlus.com news:"
1188
+ msgstr ""
1189
 
1190
+ #: admin.php:1433
1191
+ msgid "Clone/Migrate"
1192
+ msgstr ""
1193
+
1194
+ #: admin.php:1323
1195
+ msgid "News"
1196
  msgstr ""
 
 
1197
 
1198
+ #: admin.php:1323
1199
+ msgid "Premium"
1200
+ msgstr ""
1201
+
1202
+ #: admin.php:708
1203
+ msgid "Local archives deleted: %d"
1204
+ msgstr ""
1205
+
1206
+ #: admin.php:709
1207
+ msgid "Remote archives deleted: %d"
1208
+ msgstr ""
1209
+
1210
+ #: backup.php:91
1211
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
1212
+ msgstr ""
1213
+
1214
+ #: admin.php:626
1215
+ msgid "Backup set not found"
1216
+ msgstr ""
1217
+
1218
+ #: admin.php:707
1219
+ msgid "The backup set has been removed."
1220
+ msgstr ""
1221
+
1222
+ #: updraftplus.php:2089
1223
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
1224
+ msgstr ""
1225
+
1226
+ #: updraftplus.php:2089
1227
+ msgid "Blog link"
1228
+ msgstr ""
1229
+
1230
+ #: updraftplus.php:2089
1231
+ msgid "RSS link"
1232
+ msgstr ""
1233
+
1234
+ #: methods/s3.php:351 methods/ftp.php:148 addons/webdav.php:289
1235
+ #: addons/sftp.php:326
1236
+ msgid "Testing %s Settings..."
1237
+ msgstr ""
1238
+
1239
+ #: admin.php:1490
1240
+ msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
1241
+ msgstr ""
1242
+
1243
+ #: admin.php:316
1244
+ msgid "Notice"
1245
+ msgstr ""
1246
+
1247
+ #: admin.php:316
1248
+ msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
1249
+ msgstr ""
1250
+
1251
+ #: admin.php:321
1252
+ msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
1253
+ msgstr ""
1254
+
1255
+ #: admin.php:321
1256
+ msgid "Go here to turn it off."
1257
+ msgstr ""
1258
+
1259
+ #: admin.php:321
1260
+ msgid "<a href=\"%s\">Go here</a> for more information."
1261
+ msgstr ""
1262
+
1263
+ #: backup.php:422
1264
+ msgid "Errors encountered:"
1265
+ msgstr ""
1266
+
1267
+ #: admin.php:80
1268
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
1269
+ msgstr ""
1270
+
1271
+ #: admin.php:86
1272
+ msgid "Begun looking for this entity"
1273
+ msgstr ""
1274
+
1275
+ #: addons/migrator.php:455
1276
+ msgid "SQL update commands run:"
1277
+ msgstr ""
1278
+
1279
+ #: admin.php:91
1280
+ msgid "Errors:"
1281
+ msgstr ""
1282
+
1283
+ #: addons/migrator.php:457
1284
+ msgid "Time taken (seconds):"
1285
+ msgstr ""
1286
+
1287
+ #: addons/migrator.php:545
1288
+ msgid "rows: %d"
1289
+ msgstr ""
1290
+
1291
+ #: addons/migrator.php:648
1292
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
1293
+ msgstr ""
1294
+
1295
+ #: addons/dropbox-folders.php:21
1296
+ msgid "Store at"
1297
+ msgstr "Speichere in"
1298
+
1299
+ #: addons/migrator.php:363
1300
+ msgid "Nothing to do: the site URL is already: %s"
1301
+ msgstr ""
1302
+
1303
+ #: addons/migrator.php:368 addons/migrator.php:371
1304
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
1305
+ msgstr ""
1306
+
1307
+ #: addons/migrator.php:378 addons/migrator.php:381
1308
+ msgid "Database search and replace: replace %s in backup dump with %s"
1309
+ msgstr ""
1310
+
1311
+ #: addons/migrator.php:399
1312
+ msgid "Could not get list of tables"
1313
+ msgstr ""
1314
+
1315
+ #: addons/migrator.php:410
1316
+ msgid "<strong>Search and replacing table:</strong> %s: already done"
1317
+ msgstr ""
1318
+
1319
+ #: addons/migrator.php:452
1320
+ msgid "Tables examined:"
1321
+ msgstr ""
1322
+
1323
+ #: addons/migrator.php:453
1324
+ msgid "Rows examined:"
1325
+ msgstr ""
1326
+
1327
+ #: addons/migrator.php:454
1328
+ msgid "Changes made:"
1329
+ msgstr ""
1330
+
1331
+ #: addons/sftp.php:201
1332
  msgid "%s Error: Failed to download"
1333
  msgstr "%s Fehler: Herunterladen fehlgeschlagen"
1334
 
1335
+ #: addons/sftp.php:260
1336
+ msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1337
+ msgstr "Wiederaufnehmen von Uploads ist nicht unterstützt, du musst daher sicherstellen, dass dein Webserver PHP erlaubt, so lang zu laufen, bis deine größte Sicherungsdatei hochgeladen wurde."
 
 
 
 
 
 
1338
 
1339
+ #: addons/sftp.php:265
1340
  msgid "Host"
1341
  msgstr "Host"
1342
 
1343
+ #: addons/sftp.php:272
1344
  msgid "Port"
1345
  msgstr "Port"
1346
 
1347
+ #: udaddons/options.php:97
 
 
 
 
1348
  msgid "Password"
1349
  msgstr "Passwort"
1350
 
1351
+ #: addons/sftp.php:302
1352
  msgid "Directory path"
1353
  msgstr "Verzeichnispfad"
1354
 
1355
+ #: addons/sftp.php:304
1356
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
1357
+ msgstr "In welches Verzeichnis soll nach dem Login gewechselt werden - meistens ist dieser Pfad relativ zu deinem Home-Verzeichnis"
 
 
 
 
1358
 
1359
+ #: addons/sftp.php:355
1360
  msgid "host name"
1361
  msgstr "Hostname"
1362
 
1363
+ #: addons/sftp.php:359
1364
  msgid "username"
1365
  msgstr "Benutzername"
1366
 
1367
+ #: addons/sftp.php:363
1368
  msgid "password"
1369
  msgstr "Passwort"
1370
 
1371
+ #: addons/sftp.php:368
1372
  msgid "Failure: Port must be an integer."
1373
  msgstr "Fehler: Port muss eine Nummer sein."
1374
 
1375
+ #: addons/fixtime.php:120 addons/fixtime.php:129
 
 
 
 
 
 
 
 
1376
  msgid "starting from next time it is"
1377
  msgstr "Nächste Durchlaufszeit ist"
1378
 
1379
+ #: addons/multisite.php:140
 
 
 
 
1380
  msgid "Multisite Install"
1381
  msgstr "Multiseiten-Installation"
1382
 
1383
+ #: udaddons/options.php:174
1384
  msgid "You do not have sufficient permissions to access this page."
1385
+ msgstr "Du besitzt nicht die notwendigen Berechtigungen, um diese Seite aufzurufen."
 
1386
 
1387
+ #: udaddons/options.php:153
1388
  msgid "You do not have permission to access this page."
1389
+ msgstr "Du besitzt nicht die nötigen Berechtigungen, um diese Seite aufzurufen."
 
1390
 
1391
+ #: addons/multisite.php:237
1392
  msgid "Must-use plugins"
1393
  msgstr "Meist-benutzte Plugins"
1394
 
1395
+ #: addons/multisite.php:244
1396
  msgid "Blog uploads"
1397
  msgstr "Blog Uploads"
1398
 
1399
+ #: addons/migrator.php:174
1400
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
1401
+ msgstr ""
1402
+
1403
+ #: addons/migrator.php:174
1404
+ msgid "Search and replace site location in the database (migrate)"
1405
+ msgstr ""
1406
+
1407
+ #: addons/migrator.php:174
1408
+ msgid "(learn more)"
1409
+ msgstr ""
1410
+
1411
+ #: addons/migrator.php:270 addons/migrator.php:434
1412
+ msgid "Failed: the %s operation was not able to start."
1413
+ msgstr ""
1414
+
1415
+ #: addons/migrator.php:272 addons/migrator.php:436
1416
+ msgid "Failed: we did not understand the result returned by the %s operation."
1417
+ msgstr ""
1418
+
1419
+ #: addons/migrator.php:319
1420
+ msgid "Database: search and replace site URL"
1421
+ msgstr ""
1422
+
1423
+ #: addons/migrator.php:322
1424
+ msgid "This option was not selected."
1425
+ msgstr ""
1426
+
1427
+ #: addons/migrator.php:345 addons/migrator.php:349 addons/migrator.php:354
1428
+ #: addons/migrator.php:358
1429
+ msgid "Error: unexpected empty parameter (%s, %s)"
1430
+ msgstr ""
1431
+
1432
+ #: addons/morefiles.php:71
1433
+ msgid "The above files comprise everything in a WordPress installation."
1434
+ msgstr ""
1435
+
1436
+ #: addons/morefiles.php:78
1437
+ msgid "WordPress core (including any additions to your WordPress root directory)"
1438
+ msgstr ""
1439
+
1440
+ #: addons/morefiles.php:126
1441
+ msgid "Any other directory on your server that you wish to back up"
1442
+ msgstr ""
1443
+
1444
+ #: addons/morefiles.php:127
1445
+ msgid "More Files"
1446
+ msgstr ""
1447
+
1448
+ #: addons/morefiles.php:142
1449
+ msgid "Enter the directory:"
1450
+ msgstr ""
1451
+
1452
+ #: addons/morefiles.php:146
1453
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
1454
+ msgstr ""
1455
+
1456
+ #: addons/morefiles.php:146
1457
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
1458
+ msgstr ""
1459
+
1460
+ #: addons/morefiles.php:148
1461
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
1462
+ msgstr ""
1463
+
1464
+ #: addons/morefiles.php:220 addons/morefiles.php:297
1465
+ msgid "No backup of %s directories: there was nothing found to back up"
1466
+ msgstr ""
1467
+
1468
+ #: addons/morefiles.php:220
1469
+ msgid "more"
1470
+ msgstr ""
1471
 
1472
+ #: addons/sftp.php:27
1473
+ msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
1474
+ msgstr ""
1475
 
1476
+ #: addons/sftp.php:27
1477
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
1478
+ msgstr ""
1479
 
1480
+ #: addons/sftp.php:34 addons/sftp.php:35 addons/sftp.php:36
1481
+ msgid "No %s found"
1482
+ msgstr "Kein %s gefunden"
1483
 
1484
+ #: addons/sftp.php:398
1485
+ msgid "Check your file permissions: Could not successfully create and enter:"
1486
+ msgstr "Überprüfe deine Dateiberechtigungen: Konnte nicht erfolgreich erstellen und betreten:"
1487
 
1488
+ #: methods/ftp.php:186
1489
+ msgid "FTP Server"
1490
+ msgstr "FTP-Server"
 
 
 
 
1491
 
1492
+ #: methods/ftp.php:190
1493
+ msgid "FTP Login"
1494
+ msgstr "FTP-Login"
1495
+
1496
+ #: methods/ftp.php:194
1497
+ msgid "FTP Password"
1498
+ msgstr "FTP-Passwort"
1499
+
1500
+ #: methods/ftp.php:198
1501
+ msgid "Remote Path"
1502
+ msgstr "Ferner Pfad"
1503
+
1504
+ #: methods/ftp.php:199
1505
+ msgid "Needs to already exist"
1506
+ msgstr "Muss bereits existieren"
1507
+
1508
+ #: methods/ftp.php:224
1509
+ msgid "Failure: No server details were given."
1510
+ msgstr "Fehler: Keine Serverdetails wurden angegeben."
1511
+
1512
+ #: methods/ftp.php:239
1513
+ msgid "Failure: we did not successfully log in with those credentials."
1514
+ msgstr "Fehler: Konnte nicht erfolgreich mit angegebenen Logindaten einloggen."
1515
+
1516
+ #: methods/ftp.php:247
1517
+ msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
1518
+ msgstr "Fehler: Ein unerwarteter interner UpdraftPlus-Fehler ist beim Testen der Logindaten aufgetreten - Bitte kontaktiere den Entwickler."
1519
+
1520
+ #: methods/ftp.php:251
1521
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
1522
+ msgstr "Erfolg: Wir haben uns erfolgreich eingeloggt und haben die Möglichkeit Dateien im angegebenen Verzeichnis zu erstellen (Logintyp:"
1523
+
1524
+ #: methods/ftp.php:254
1525
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
1526
+ msgstr "Fehler: Wir konnten uns erfolgreich einloggen, konnten jedoch im angegebenen Verzeichnis keine Datei erstellen."
1527
+
1528
+ #: addons/webdav.php:40 addons/webdav.php:161 addons/webdav.php:197
1529
+ #: addons/sftp.php:32
1530
+ msgid "No %s settings were found"
1531
+ msgstr "Keine %s -Einstellungen gefunden"
1532
+
1533
+ #: addons/webdav.php:123 addons/webdav.php:127
1534
+ msgid "Chunk %s: A %s error occurred"
1535
+ msgstr "Chunk %s: Ein %s Fehler ist aufgetreten"
1536
+
1537
+ #: addons/webdav.php:213 addons/webdav.php:220 addons/webdav.php:233
1538
+ msgid "WebDAV Error"
1539
+ msgstr "WebDAV Fehler"
1540
+
1541
+ #: addons/webdav.php:220
1542
+ msgid "Error opening remote file: Failed to download"
1543
+ msgstr "Fehler beim Öffnen von Remote-Datei: Herunterladen fehlgeschlagen"
1544
+
1545
+ #: addons/webdav.php:233
1546
+ msgid "Local write failed: Failed to download"
1547
+ msgstr "Lokales Schreiben fehlgeschlagen: Herunterladen fehlgeschlagen"
1548
+
1549
+ #: addons/webdav.php:269
1550
+ msgid "WebDAV URL"
1551
+ msgstr "WebDAV URL"
1552
+
1553
+ #: addons/webdav.php:273
1554
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
1555
+ msgstr "Gib einen kompletten URL, beginnend mit webdav:// oder webdavs:// und enthaltenem Pfaf, sowie Benutzernamen, Passwort und Port an - z.B. %s"
1556
+
1557
+ #: admin.php:1908 admin.php:1933
1558
+ msgid "Failed"
1559
+ msgstr "Fehlgeschlagen."
1560
+
1561
+ #: addons/webdav.php:331
1562
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
1563
+ msgstr "Fehlgeschlagen: Wir konnten, in das gewünschte Verzeichnis, keine Datei schreiben - Bitte überprüfe deine Zugangsdaten"
1564
+
1565
+ #: addons/morefiles.php:48 addons/morefiles.php:297
1566
+ msgid "WordPress Core"
1567
+ msgstr ""
1568
+
1569
+ #: addons/morefiles.php:52
1570
+ msgid "Over-write wp-config.php"
1571
+ msgstr ""
1572
+
1573
+ #: addons/morefiles.php:52
1574
+ msgid "(learn more about this important option)"
1575
+ msgstr ""
1576
+
1577
+ #: methods/dropbox.php:290
1578
+ msgid "Authenticate with Dropbox"
1579
+ msgstr "Mit Dropbox authentifizieren"
1580
+
1581
+ #: methods/dropbox.php:291
1582
+ msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Dropbox."
1583
+ msgstr "<strong>Nachdem</strong> du die Einstellungen gespeichert hast (mit Drücken von 'Änderungen speichern'), komm hierher zurück und benutze den Link um die Authentifizierung mit Dropbox abzuschließen."
1584
+
1585
+ #: methods/dropbox.php:334
1586
+ msgid "you have authenticated your %s account"
1587
+ msgstr "du hast deinen %s Account authentifiziert"
1588
+
1589
+ #: methods/dropbox.php:337
1590
+ msgid "though part of the returned information was not as expected - your mileage may vary"
1591
+ msgstr "schwieriger Anteil an zurückgegebenen Informationen nicht erwartet - das Ergebnis könnte anders sein"
1592
+
1593
+ #: methods/dropbox.php:340
1594
+ msgid "Your %s account name: %s"
1595
+ msgstr ""
1596
+
1597
+ #: methods/ftp.php:182
1598
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1599
+ msgstr "Die normale UpdraftPlus-Version unterstützt nur unverschlüsseltes FTP."
1600
+
1601
+ #: methods/ftp.php:182
1602
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
1603
+ msgstr "Wenn du Verschlüsselung (z.B. wegen sensibler Geschäftsdaten) möchtest, kannst du dir eine verfügbare Erweiterung holen."
1604
+
1605
+ #: methods/s3.php:335
1606
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
1607
+ msgstr ""
1608
+
1609
+ #: methods/s3.php:271 methods/s3.php:339
1610
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
1611
+ msgstr ""
1612
+
1613
+ #: methods/s3.php:416
1614
+ msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
1615
+ msgstr ""
1616
+
1617
+ #: methods/s3.php:416
1618
+ msgid "If you see errors about SSL certificates, then please go here for help."
1619
+ msgstr ""
1620
+
1621
+ #: methods/s3.php:427
1622
+ msgid "%s access key"
1623
+ msgstr ""
1624
+
1625
+ #: methods/s3.php:431
1626
+ msgid "%s secret key"
1627
+ msgstr ""
1628
+
1629
+ #: methods/s3.php:435
1630
+ msgid "%s location"
1631
+ msgstr ""
1632
+
1633
+ #: methods/s3.php:436
1634
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
1635
+ msgstr ""
1636
+
1637
+ #: methods/s3.php:457
1638
+ msgid "API secret"
1639
+ msgstr "API Secret"
1640
+
1641
+ #: methods/s3.php:478
1642
+ msgid "Failure: No bucket details were given."
1643
+ msgstr "Fehler: Keine Bucket-Details waren gegeben."
1644
+
1645
+ #: methods/s3.php:493
1646
+ msgid "Region"
1647
+ msgstr ""
1648
+
1649
+ #: methods/s3.php:511
1650
+ msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
1651
+ msgstr ""
1652
+
1653
+ #: methods/s3.php:525 methods/s3.php:537
1654
+ msgid "Failure"
1655
+ msgstr "Fehler"
1656
+
1657
+ #: methods/s3.php:525 methods/s3.php:537
1658
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
1659
+ msgstr "Wir konnten den Bucket erfolgreich nutzen, aber der Versuch eine Datei in ihm zu erstellen schlug fehl."
1660
+
1661
+ #: methods/s3.php:527
1662
+ msgid "We accessed the bucket, and were able to create files within it."
1663
+ msgstr "Wir konnten den Bucket erfolgreich nutzen und sind in der Lage Dateien in ihm zu erstellen."
1664
+
1665
+ #: methods/s3.php:530
1666
+ msgid "The communication with %s was encrypted."
1667
+ msgstr ""
1668
+
1669
+ #: methods/s3.php:532
1670
+ msgid "The communication with %s was not encrypted."
1671
+ msgstr ""
1672
+
1673
+ #: methods/dropbox.php:41
1674
+ msgid "You do not appear to be authenticated with Dropbox"
1675
+ msgstr "Du scheinst bei Dropbox nicht authentifiziert zu sein"
1676
+
1677
+ #: methods/dropbox.php:137 methods/dropbox.php:142
1678
+ msgid "error: failed to upload file to %s (see log file for more)"
1679
+ msgstr "Fehler: Hochladen der Datei nach %s fehlgeschlagen (siehe Logdatei für weitere Informationen)"
1680
+
1681
+ #: methods/dropbox.php:285
1682
+ msgid "Need to use sub-folders?"
1683
+ msgstr "Sollen Unterordner benutzt werden?"
1684
+
1685
+ #: methods/dropbox.php:285
1686
+ msgid "Backups are saved in"
1687
+ msgstr "Sicherungen sind gespeichert unter"
1688
+
1689
+ #: methods/dropbox.php:285
1690
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
1691
+ msgstr "Wenn du mehrere Seiten auf die selbe Dropbox sichern und diese mit Unterordnern organisieren möchtest, dann"
1692
+
1693
+ #: methods/dropbox.php:285
1694
+ msgid "there's an add-on for that."
1695
+ msgstr "es gibt eine Erweiterung dafür."
1696
+
1697
+ #: methods/cloudfiles.php:408
1698
+ msgid "US or UK Cloud"
1699
+ msgstr ""
1700
+
1701
+ #: methods/cloudfiles.php:414
1702
+ msgid "US (default)"
1703
+ msgstr ""
1704
+
1705
+ #: methods/cloudfiles.php:415
1706
+ msgid "UK"
1707
+ msgstr ""
1708
+
1709
+ #: methods/cloudfiles.php:420
1710
+ msgid "Cloud Files username"
1711
+ msgstr ""
1712
+
1713
+ #: methods/cloudfiles.php:424
1714
+ msgid "Cloud Files API key"
1715
+ msgstr ""
1716
+
1717
+ #: methods/cloudfiles.php:428
1718
+ msgid "Cloud Files container"
1719
+ msgstr ""
1720
+
1721
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
1722
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
1723
+ msgstr ""
1724
+
1725
+ #: methods/cloudfiles.php:442 methods/cloudfiles.php:447
1726
+ msgid "Failure: No %s was given."
1727
+ msgstr "Fehler: Kein %s war gegeben"
1728
+
1729
+ #: methods/cloudfiles.php:442
1730
+ msgid "API key"
1731
+ msgstr "API Schlüssel"
1732
+
1733
+ #: methods/cloudfiles.php:447
1734
+ msgid "Username"
1735
+ msgstr "Benutzername"
1736
+
1737
+ #: methods/cloudfiles.php:467
1738
+ msgid "Failure: No container details were given."
1739
+ msgstr ""
1740
+
1741
+ #: methods/cloudfiles.php:494
1742
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
1743
+ msgstr ""
1744
+
1745
+ #: methods/cloudfiles.php:498
1746
+ msgid "We accessed the container, and were able to create files within it."
1747
+ msgstr ""
1748
+
1749
+ #: methods/email.php:32
1750
+ msgid "WordPress Backup"
1751
+ msgstr "WordPress Sicherung"
1752
+
1753
+ #: methods/email.php:32
1754
+ msgid "Be wary; email backups may fail because of file size limitations on mail servers."
1755
+ msgstr "Kann unterschiedlich ausfallen, E-Mail-Sicherungen können wegen Dateigrößenbeschränkungen auf Mail-Servern fehlschlagen."
1756
+
1757
+ #: methods/email.php:48
1758
+ msgid "Note:"
1759
+ msgstr "Beachte:"
1760
+
1761
+ #: methods/s3.php:172
1762
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
1763
+ msgstr ""
1764
+
1765
+ #: methods/s3.php:195
1766
+ msgid "%s error: file %s was shortened unexpectedly"
1767
+ msgstr ""
1768
+
1769
+ #: methods/s3.php:205
1770
+ msgid "%s chunk %s: upload failed"
1771
+ msgstr ""
1772
+
1773
+ #: methods/s3.php:219
1774
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
1775
+ msgstr ""
1776
+
1777
+ #: methods/s3.php:223
1778
+ msgid "%s re-assembly error (%s): (see log file for more)"
1779
+ msgstr ""
1780
+
1781
+ #: methods/s3.php:235
1782
+ msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
1783
+ msgstr ""
1784
+
1785
+ #: methods/googledrive.php:462
1786
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
1787
+ msgstr "Für detailiertere Hilfe mit Bildern, folge diesem Link. Die Beschreibung unterhalb ist für erfahrende Benutzer besser geeignet."
1788
+
1789
+ #: methods/googledrive.php:463
1790
+ msgid "Follow this link to your Google API Console, and there create a Client ID in the API Access section."
1791
+ msgstr "Folge dem Link zu deiner Google API Konsole und erstelle dort eine Client ID in der API Zugangs-Sektion."
1792
+
1793
+ #: methods/googledrive.php:463
1794
+ msgid "Select 'Web Application' as the application type."
1795
+ msgstr "Wähle 'Web Applikation' als Applikationstyp."
1796
+
1797
+ #: methods/googledrive.php:463
1798
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
1799
+ msgstr "Du musst folgendes als authorisierten Umleitungslink (unter \"Mehr Optionen\") angeben, wenn gefragt"
1800
+
1801
+ #: methods/googledrive.php:463
1802
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your client ID; you must create a new one from your Google API console for each site."
1803
+ msgstr ""
1804
+
1805
+ #: methods/googledrive.php:466
1806
+ msgid "You do not have the SimpleXMLElement installed. Google Drive backups will <b>not</b> work until you do."
1807
+ msgstr "Du hast nicht SimpleXMLElement installiert. Google Drive funktioniert <b>nicht</b> solange es nicht dies nicht installiert wird."
1808
+
1809
+ #: methods/googledrive.php:473
1810
+ msgid "Client ID"
1811
+ msgstr "Client ID"
1812
+
1813
+ #: methods/googledrive.php:474
1814
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
1815
+ msgstr "Wenn Google dir später \"invalid_client\" anzeigt, hast du eine ungültige Client-ID angegeben."
1816
+
1817
+ #: methods/googledrive.php:477
1818
+ msgid "Client Secret"
1819
+ msgstr "Client Secret"
1820
+
1821
+ #: methods/googledrive.php:481
1822
+ msgid "Folder ID"
1823
+ msgstr "Ordner-ID"
1824
+
1825
+ #: methods/googledrive.php:485
1826
+ msgid "Authenticate with Google"
1827
+ msgstr "Mit Google authentifizieren"
1828
+
1829
+ #: methods/googledrive.php:486
1830
+ msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
1831
+ msgstr "<strong>Nach dem</strong du deine Einstellungen gespeichert hast, komm zu dieser Seite zurück, um dich mit Google zu authentifizieren."
1832
+
1833
+ #: methods/cloudfiles.php:477 methods/cloudfiles.php:480
1834
+ #: methods/cloudfiles.php:483
1835
+ msgid "Cloud Files authentication failed"
1836
+ msgstr ""
1837
+
1838
+ #: methods/cloudfiles.php:61 methods/cloudfiles.php:270
1839
+ #: methods/cloudfiles.php:289
1840
+ msgid "Cloud Files error - failed to create and access the container"
1841
+ msgstr ""
1842
+
1843
+ #: methods/cloudfiles.php:88
1844
+ msgid "%s Error: Failed to open local file"
1845
+ msgstr ""
1846
+
1847
+ #: methods/cloudfiles.php:105 methods/cloudfiles.php:147
1848
+ msgid "%s Error: Failed to upload"
1849
+ msgstr "%s Fehler: Hochladen fehlgeschlagen"
1850
+
1851
+ #: methods/cloudfiles.php:178
1852
+ msgid "Cloud Files error - failed to upload file"
1853
+ msgstr ""
1854
+
1855
+ #: methods/cloudfiles.php:318
1856
+ msgid "Error opening local file: Failed to download"
1857
+ msgstr "Fehler beim Öffnen lokaler Datei: Herunterladen fehlgeschlagen"
1858
+
1859
+ #: methods/cloudfiles.php:335
1860
+ msgid "Error downloading remote file: Failed to download ("
1861
+ msgstr ""
1862
+
1863
+ #: methods/cloudfiles.php:357
1864
+ msgid "Testing - Please Wait..."
1865
+ msgstr ""
1866
+
1867
+ #: methods/cloudfiles.php:371 methods/cloudfiles.php:434
1868
+ msgid "Test %s Settings"
1869
+ msgstr "Teste %s Einstellungen"
1870
+
1871
+ #: methods/cloudfiles.php:404
1872
+ msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
1873
+ msgstr ""
1874
+
1875
+ #: methods/cloudfiles.php:404
1876
+ msgid "Also, you should read this important FAQ."
1877
+ msgstr ""
1878
+
1879
+ #: methods/googledrive.php:201
1880
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
1881
+ msgstr ""
1882
+
1883
+ #: methods/googledrive.php:216
1884
+ msgid "Failed to upload to %s"
1885
+ msgstr "Hochladen zu %s fehlgeschlagen."
1886
+
1887
+ #: methods/googledrive.php:334
1888
+ msgid "An error occurred during %s upload (see log for more details)"
1889
+ msgstr ""
1890
+
1891
+ #: methods/googledrive.php:373
1892
+ msgid "Google Drive error: %d: could not download: could not find a record of the Google Drive file ID for this file"
1893
+ msgstr "Google Drive Fehler: %d: Konnte nicht herunterladen: Konnte keinen Eintrag der Google Drive Datei-ID für diese Datei finden."
1894
+
1895
+ #: methods/googledrive.php:378
1896
+ msgid "Could not find %s in order to download it"
1897
+ msgstr "Konnte %s zum Herunterladen nicht finden."
1898
+
1899
+ #: methods/googledrive.php:391
1900
+ msgid "Google Drive "
1901
+ msgstr "Google Drive"
1902
+
1903
+ #: methods/googledrive.php:409
1904
+ msgid "Account is not authorized."
1905
+ msgstr "Account ist nicht autorisiert."
1906
+
1907
+ #: methods/googledrive.php:442 methods/cloudfiles.php:384
1908
+ msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
1909
+ msgstr ""
1910
+
1911
+ #: restorer.php:858
1912
+ msgid "will restore as:"
1913
+ msgstr ""
1914
+
1915
+ #: restorer.php:927
1916
+ msgid "An error (%s) occured:"
1917
+ msgstr ""
1918
+
1919
+ #: restorer.php:927
1920
+ msgid "the database query being run was:"
1921
+ msgstr ""
1922
+
1923
+ #: restorer.php:933
1924
+ msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
1925
+ msgstr ""
1926
+
1927
+ #: restorer.php:941
1928
+ msgid "Database lines processed: %d in %.2f seconds"
1929
+ msgstr ""
1930
+
1931
+ #: restorer.php:884
1932
+ msgid "Finished: lines processed: %d in %.2f seconds"
1933
+ msgstr ""
1934
+
1935
+ #: restorer.php:985 restorer.php:1006
1936
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
1937
+ msgstr ""
1938
+
1939
+ #: restorer.php:989 restorer.php:1032 admin.php:1911 admin.php:1935
1940
+ #: admin.php:2813 admin.php:2826
1941
+ msgid "OK"
1942
+ msgstr ""
1943
+
1944
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:97
1945
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
1946
+ msgstr ""
1947
+
1948
+ #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1949
+ #: methods/sftp.php:12 methods/sftp.php:32 methods/sftp.php:47
1950
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1951
+ msgstr "Du hast nicht die UpdraftPlus %s Erweiterung installiert - bekomme sie von %s"
1952
+
1953
+ #: methods/webdav.php:63 methods/sftp.php:60
1954
+ msgid "%s support is available as an add-on"
1955
+ msgstr "%s Unterstützung ist als Erweiterung verfügbar"
1956
+
1957
+ #: methods/webdav.php:63 methods/sftp.php:60
1958
+ msgid "follow this link to get it"
1959
+ msgstr "folge diesem Link um es zu bekommen"
1960
+
1961
+ #: methods/googledrive.php:115
1962
+ msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
1963
+ msgstr "Es wurde kein Aktualisierungs-Token von Google empfangen. Das liegt meistens an einem falsch eingegebenen Client-Secret oder, dass du dich noch nicht neu authentifiziert (unten) hast. Überprüfe dein Secret und folge dem Link zur erneuten Authentifizierung. Sollte es weiterhin Probleme geben, setze deine Einstellungen unter Experten-Einstellungen zurück und erstelle eine neue Google Client-ID/-Secret und probiere es erneut."
1964
+
1965
+ #: methods/googledrive.php:124
1966
+ msgid "Authorization failed"
1967
+ msgstr "Authentifizierung fehlgeschlagen"
1968
+
1969
+ #: methods/googledrive.php:145
1970
+ msgid "Your %s quota usage: %s %% used, %s available"
1971
+ msgstr ""
1972
+
1973
+ #: methods/googledrive.php:151 methods/cloudfiles.php:498
1974
+ msgid "Success"
1975
+ msgstr "Erfolg"
1976
+
1977
+ #: methods/googledrive.php:151
1978
+ msgid "you have authenticated your %s account."
1979
+ msgstr ""
1980
+
1981
+ #: methods/googledrive.php:167 methods/googledrive.php:232
1982
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
1983
+ msgstr "Noch keinen Zugangs-Token von Google erhalten - du musst die Verbindung zu Google Drive authorisieren bzw erneut authorisieren."
1984
+
1985
+ #: methods/googledrive.php:168 methods/googledrive.php:363
1986
+ msgid "Have not yet obtained an access token from Google (has the user authorised?)"
1987
+ msgstr "Kein Zugangs-Token von Google erhalten (hat der User sich authentifiziert?)"
1988
+
1989
+ #: restorer.php:156
1990
+ msgid "wp-config.php from backup: restoring (as per user's request)"
1991
+ msgstr ""
1992
+
1993
+ #: restorer.php:600
1994
+ msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
1995
+ msgstr ""
1996
+
1997
+ #: restorer.php:605
1998
+ msgid "Failed to find database file"
1999
+ msgstr ""
2000
+
2001
+ #: restorer.php:611
2002
+ msgid "Failed to open database file"
2003
+ msgstr ""
2004
+
2005
+ #: restorer.php:635
2006
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
2007
+ msgstr ""
2008
+
2009
+ #: restorer.php:710 admin.php:945
2010
+ msgid "Backup of:"
2011
+ msgstr ""
2012
+
2013
+ #: restorer.php:718 restorer.php:789
2014
+ msgid "Old table prefix:"
2015
+ msgstr ""
2016
+
2017
+ #: admin.php:2823
2018
+ msgid "Archive is expected to be size:"
2019
+ msgstr "Die zu erwartene Archivgröße:"
2020
+
2021
+ #: admin.php:2831
2022
+ msgid "The backup records do not contain information about the proper size of this file."
2023
+ msgstr "Die Sicherungsaufzeichnungen enthalten keine korrekte Größe dieser Datei."
2024
+
2025
+ #: admin.php:2878
2026
+ msgid "Error message"
2027
+ msgstr "Fehlermeldung"
2028
+
2029
+ #: admin.php:2834 admin.php:2835
2030
+ msgid "Could not find one of the files for restoration"
2031
+ msgstr "Konnte eine Datei für die Wiederherstellung nicht finden."
2032
+
2033
+ #: restorer.php:21
2034
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
2035
+ msgstr ""
2036
+
2037
+ #: restorer.php:22
2038
+ msgid "Backup file not available."
2039
+ msgstr "Sicherungsdatei nicht verfügbar."
2040
+
2041
+ #: restorer.php:23
2042
+ msgid "Copying this entity failed."
2043
+ msgstr ""
2044
+
2045
+ #: restorer.php:24
2046
+ msgid "Unpacking backup..."
2047
+ msgstr "Entpacke Sicherung..."
2048
+
2049
+ #: restorer.php:25
2050
+ msgid "Decrypting database (can take a while)..."
2051
+ msgstr ""
2052
+
2053
+ #: restorer.php:26
2054
+ msgid "Database successfully decrypted."
2055
+ msgstr ""
2056
+
2057
+ #: restorer.php:27
2058
+ msgid "Moving old directory out of the way..."
2059
+ msgstr "Entferne altes Verzeichnis...."
2060
+
2061
+ #: restorer.php:29
2062
+ msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
2063
+ msgstr ""
2064
+
2065
+ #: restorer.php:30
2066
+ msgid "Cleaning up rubbish..."
2067
+ msgstr "Räume auf ..."
2068
+
2069
+ #: restorer.php:31
2070
+ msgid "Could not move old directory out of the way. Perhaps you already have -old directories that need deleting first?"
2071
+ msgstr "Konnte altes Verzeichnis nicht entfernen. Vielleicht existieren noch alte Verzeichnisse die zuerst gelöscht werden müssen?"
2072
+
2073
+ #: restorer.php:32
2074
+ msgid "Could not delete old directory."
2075
+ msgstr ""
2076
+
2077
+ #: restorer.php:33
2078
+ msgid "Could not move new directory into place. Check your wp-content/upgrade folder."
2079
+ msgstr "Konnte neues Verzeichnis nicht verschieben. Überprüfe deinen wp-content/upgrade-Order."
2080
+
2081
+ #: restorer.php:34
2082
+ msgid "Failed to delete working directory after restoring."
2083
+ msgstr "Löschen des Arbeitsverzeichnissen nach Wiederherstellung fehlgeschlagen."
2084
+
2085
+ #: restorer.php:81
2086
+ msgid "Failed to create a temporary directory"
2087
+ msgstr ""
2088
+
2089
+ #: restorer.php:94
2090
+ msgid "Failed to write out the decrypted database to the filesystem"
2091
+ msgstr ""
2092
+
2093
+ #: restorer.php:152
2094
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
2095
+ msgstr ""
2096
+
2097
+ #: admin.php:2345
2098
+ msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
2099
+ msgstr ""
2100
+
2101
+ #: admin.php:2369
2102
+ msgid "Save Changes"
2103
+ msgstr "Änderungen speichern"
2104
+
2105
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
2106
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
2107
+ msgstr ""
2108
+
2109
+ #: admin.php:2403
2110
+ msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
2111
+ msgstr ""
2112
+
2113
+ #: admin.php:2405
2114
+ msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
2115
+ msgstr ""
2116
+
2117
+ #: admin.php:2408
2118
+ msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
2119
+ msgstr ""
2120
+
2121
+ #: admin.php:2491
2122
+ msgid "Delete this backup set"
2123
+ msgstr ""
2124
+
2125
+ #: admin.php:2546
2126
+ msgid "Press here to download"
2127
+ msgstr "Hier drücken zum Herunterladen"
2128
+
2129
+ #: admin.php:2519 admin.php:2574
2130
+ msgid "(No %s)"
2131
+ msgstr "(Kein %s)"
2132
+
2133
+ #: admin.php:2582
2134
+ msgid "Backup Log"
2135
+ msgstr "Sicherungs-Log"
2136
+
2137
+ #: admin.php:2603
2138
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
2139
+ msgstr "Nach dem drücken dieses Buttons, hast du die Möglichkeiten die wiederherzustellenden Komponenten auszuwählen."
2140
+
2141
+ #: admin.php:2694
2142
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
2143
+ msgstr "Diese Sicherung existiert in der Sicherungshistorie nicht - Wiederherstellung abgebrochen. Zeitstempel:"
2144
+
2145
+ #: admin.php:2729
2146
+ msgid "UpdraftPlus Restoration: Progress"
2147
+ msgstr "UpdraftPlus Wiederherstellung: Fortschritt"
2148
+
2149
+ #: admin.php:2756
2150
+ msgid "ABORT: Could not find the information on which entities to restore."
2151
+ msgstr "ABBRUCH: Konnte die Informationen, welche Einheiten wiederherzustellen sind, nicht finden."
2152
+
2153
+ #: admin.php:2757
2154
+ msgid "If making a request for support, please include this information:"
2155
+ msgstr ""
2156
+
2157
+ #: admin.php:2339
2158
+ msgid "Do not verify SSL certificates"
2159
+ msgstr ""
2160
+
2161
+ #: admin.php:2340
2162
+ msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
2163
+ msgstr ""
2164
+
2165
+ #: admin.php:2340
2166
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
2167
+ msgstr ""
2168
+
2169
+ #: admin.php:2344
2170
+ msgid "Disable SSL entirely where possible"
2171
+ msgstr ""
2172
+
2173
+ #: admin.php:2291
2174
+ msgid "Expert settings"
2175
+ msgstr "Experten-Einstellungen"
2176
+
2177
+ #: admin.php:2292
2178
+ msgid "Show expert settings"
2179
+ msgstr "Zeige Experten-Einstellungen"
2180
+
2181
+ #: admin.php:2292
2182
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
2183
+ msgstr "Klicke hier, um weitere Optionen anzuzeigen; schau nach, wenn du Probleme hast oder neugierig bist."
2184
+
2185
+ #: admin.php:2307
2186
+ msgid "Delete local backup"
2187
+ msgstr "Lösche lokale Sicherung"
2188
+
2189
+ #: admin.php:2312
2190
+ msgid "Backup directory"
2191
+ msgstr "Sicherungs-Verzeichnis"
2192
+
2193
+ #: admin.php:2319
2194
+ msgid "Backup directory specified is writable, which is good."
2195
+ msgstr "Das definierte Sicherungsverzeichnis ist beschreibbar, das ist gut."
2196
+
2197
+ #: admin.php:2327
2198
+ msgid "Click here to attempt to create the directory and set the permissions"
2199
+ msgstr "Klicke hier, um zu versuchen das Verzeichnis zu erstellen und die Rechte zu setzen."
2200
+
2201
+ #: admin.php:2327
2202
+ msgid "or, to reset this option"
2203
+ msgstr "oder, um diese Option zurückzusetzen"
2204
+
2205
+ #: admin.php:2327
2206
+ msgid "click here"
2207
+ msgstr "Klicke hier"
2208
+
2209
+ #: admin.php:2327
2210
+ msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
2211
+ msgstr "Wenn dies fehlschlägt, prüfe die Berechtigungen auf deinem Server oder ändere das Verzeichnis in eines, dass vom Webserver-Prozess beschrieben werden darf."
2212
+
2213
+ #: admin.php:2334
2214
+ msgid "Use the server's SSL certificates"
2215
+ msgstr ""
2216
+
2217
+ #: admin.php:2335
2218
+ msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
2219
+ msgstr ""
2220
+
2221
+ #: admin.php:2135
2222
+ msgid "Use WordShell for automatic backup, version control and patching"
2223
+ msgstr "Benutze WordShell für automatische Sicherungen, Versionierung und ausbessern."
2224
+
2225
+ #: admin.php:2139 udaddons/options.php:95
2226
+ msgid "Email"
2227
+ msgstr "E-Mail"
2228
+
2229
+ #: admin.php:2144
2230
+ msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
2231
+ msgstr "Gib hier eine Adresse ein, um Berichte zugesandt (und wenn ausgewählt die Sicherungen) zu bekommen."
2232
+
2233
+ #: admin.php:2163
2234
+ msgid "Database encryption phrase"
2235
+ msgstr "Datenbank-Verschlüsselungs-Phrase"
2236
+
2237
+ #: admin.php:2174
2238
+ msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
2239
+ msgstr "Wenn du einen Text hier eingibst, wird dieser benutzt um die Sicherungen zu verschlüsseln (Rijndael). <strong>Sichere diesen Text an einer sicheren stelle um ihn nicht zu verlieren/vergessen - die Sicherungen sind <em>nutzlos</em> wenn du den Text vergisst.</strong> Aktuell wird nur die Datenbank-Datei verschlüsselt. Der Text dient außerdem zur Entschlüsselung der Sicherungen aus dieser Oberfläche (daher funktioniert Entschlüsselung älterer Sicherungen nicht, wenn du diesen änderst)."
2240
+
2241
+ #: admin.php:2174
2242
+ msgid "You can also decrypt a database manually here."
2243
+ msgstr ""
2244
+
2245
+ #: admin.php:2186
2246
+ msgid "Manually decrypt a database backup file"
2247
+ msgstr ""
2248
+
2249
+ #: admin.php:2193
2250
+ msgid "Use decryption key"
2251
+ msgstr ""
2252
+
2253
+ #: admin.php:2207
2254
+ msgid "Copying Your Backup To Remote Storage"
2255
+ msgstr "Kopiere deine Sicherung zum Fernspeicher"
2256
+
2257
+ #: admin.php:2217
2258
+ msgid "Choose your remote storage"
2259
+ msgstr "Wähle deinen Fern-Speicher"
2260
+
2261
+ #: admin.php:2226
2262
+ msgid "None"
2263
+ msgstr "keine"
2264
+
2265
+ #: admin.php:114
2266
+ msgid "Cancel"
2267
+ msgstr "Abbrechen"
2268
+
2269
+ #: admin.php:100
2270
+ msgid "Requesting start of backup..."
2271
+ msgstr ""
2272
+
2273
+ #: admin.php:2284
2274
+ msgid "Advanced / Debugging Settings"
2275
+ msgstr "Erweitert / Debugging-Einstellungen"
2276
+
2277
+ #: admin.php:2287
2278
+ msgid "Debug mode"
2279
+ msgstr "Debug-Modus"
2280
+
2281
+ #: admin.php:2288
2282
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
2283
+ msgstr "Wähle das aus, um mehr Informationen und E-Mails zum Backup-Prozess zu erhalten - hilfreich wenn etwas schiefläuft. Du <stong>musst</strong> uns dieses Log übersenden, wenn du einen Fehlerbericht erstellst."
2284
+
2285
+ #: admin.php:2135
2286
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
2287
+ msgstr ""
2288
+
2289
+ #: admin.php:2066
2290
+ msgid "Daily"
2291
+ msgstr "Täglich"
2292
+
2293
+ #: admin.php:2066
2294
+ msgid "Weekly"
2295
+ msgstr "Wöchentlich"
2296
+
2297
+ #: admin.php:2066
2298
+ msgid "Fortnightly"
2299
+ msgstr "Vierzehntägig"
2300
+
2301
+ #: admin.php:2066
2302
+ msgid "Monthly"
2303
+ msgstr "Monatlich"
2304
+
2305
+ #: admin.php:2075 admin.php:2093
2306
+ msgid "and retain this many backups"
2307
+ msgstr "und behalte so viele Backups"
2308
+
2309
+ #: admin.php:2082
2310
+ msgid "Database backup intervals"
2311
+ msgstr "Datenbank-Sicherungs-Intervalle"
2312
+
2313
+ #: admin.php:2100
2314
+ msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
2315
+ msgstr "Wenn du automatische Sicherungen planen willst, wähle Sicherungspläne aus den Auswahllisten oben aus. Sicherungen werden zu den definierten Intervallen durchgeführt. Wenn die zwei Sicherungspläne übereinstimmen, werden beide Sicherungen den selben Platz einnehmen. Wenn du \"Manuell\" auswählst, musst du \"Jetzt sichern\" drücken, wann immer du eine Sicherung wünschst."
2316
+
2317
+ #: admin.php:2101
2318
+ msgid "To fix the time at which a backup should take place,"
2319
+ msgstr "Um die Zeit zu korrigieren, zu der eine Sicherung stattfinden sollte,"
2320
+
2321
+ #: admin.php:2101
2322
+ msgid "e.g. if your server is busy at day and you want to run overnight"
2323
+ msgstr "z.B. wenn dein Server tagsüber sehr beschäftigt ist und du bei Nacht durchführen möchtest"
2324
+
2325
+ #: admin.php:2101
2326
+ msgid "use the \"Fix Time\" add-on"
2327
+ msgstr "benutze die \"Fix Time\" Erweiterung"
2328
+
2329
+ #: admin.php:2105
2330
+ msgid "Include in files backup"
2331
+ msgstr ""
2332
+
2333
+ #: admin.php:2115
2334
+ msgid "Any other directories found inside wp-content"
2335
+ msgstr ""
2336
+
2337
+ #: admin.php:2121
2338
+ msgid "Exclude these:"
2339
+ msgstr ""
2340
+
2341
+ #: admin.php:1706
2342
+ msgid "Debug Database Backup"
2343
+ msgstr "Debug Datenbank-Sicherung"
2344
+
2345
+ #: admin.php:1706
2346
+ msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
2347
+ msgstr "Das wird eine sofortige Datenbanksicherung auslösen. Die Seite wird nicht vollständig laden, bis dieses abgeschlossen ist (wenn ungeplant). Die Sicherung kann in einen Timeout laufen; diese Funktion ist eher für kleine WordPress-Installationen oder zum Test, ob die Sicherung durch die Anfangsschritte kommt, geeignet."
2348
+
2349
+ #: admin.php:1712
2350
+ msgid "Wipe Settings"
2351
+ msgstr "Lösche Einstellungen"
2352
+
2353
+ #: admin.php:1713
2354
+ msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2355
+ msgstr "Dieser Button löscht alle UpdraftPlus Einstellungen (allerdings keine Sicherungen vom Cloud-Speicher). Du musst danach alle deine Einstellungen erneut eingeben. Du kannst das auch tun, bevor du UpdraftPlus deaktivierst/deinstalliert, wenn du möchtest."
2356
+
2357
+ #: admin.php:1716
2358
+ msgid "Wipe All Settings"
2359
+ msgstr "Lösche alle Einstellungen"
2360
+
2361
+ #: admin.php:1716
2362
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
2363
+ msgstr "Alle deine UpdraftPlus-Einstellungen werden gelöscht - bist du dir sicher?"
2364
+
2365
+ #: admin.php:1867
2366
+ msgid "show log"
2367
+ msgstr ""
2368
+
2369
+ #: admin.php:1869
2370
+ msgid "delete schedule"
2371
+ msgstr ""
2372
+
2373
+ #: admin.php:115 admin.php:1905 admin.php:1930
2374
+ msgid "Delete"
2375
+ msgstr "Löschen"
2376
+
2377
+ #: admin.php:1971
2378
+ msgid "The request to the filesystem to create the directory failed."
2379
+ msgstr ""
2380
+
2381
+ #: admin.php:1985
2382
+ msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
2383
+ msgstr ""
2384
+
2385
+ #: admin.php:1989
2386
+ msgid "The folder exists, but your webserver does not have permission to write to it."
2387
+ msgstr ""
2388
+
2389
+ #: admin.php:1989
2390
+ msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
2391
+ msgstr ""
2392
+
2393
+ #: admin.php:2043
2394
+ msgid "Download log file"
2395
+ msgstr "Lade Logdatei herunter"
2396
+
2397
+ #: admin.php:2047
2398
+ msgid "No backup has been completed."
2399
+ msgstr "Keine Sicherung wurde vervollständigt."
2400
+
2401
+ #: admin.php:2063
2402
+ msgid "File backup intervals"
2403
+ msgstr "Datei-Sicherungs Intervalle"
2404
+
2405
+ #: admin.php:2066
2406
+ msgid "Manual"
2407
+ msgstr "Dokumentation"
2408
+
2409
+ #: admin.php:2066
2410
+ msgid "Every 4 hours"
2411
+ msgstr "Alle 4 Stunden"
2412
+
2413
+ #: admin.php:2066
2414
+ msgid "Every 8 hours"
2415
+ msgstr "Alle 8 Stunden"
2416
+
2417
+ #: admin.php:2066
2418
+ msgid "Every 12 hours"
2419
+ msgstr "Alle 12 Stunden"
2420
+
2421
+ #: admin.php:1617
2422
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
2423
+ msgstr ""
2424
+
2425
+ #: admin.php:1624
2426
+ msgid "Go here for help."
2427
+ msgstr "Klicke hier für Hilfe"
2428
+
2429
+ #: admin.php:1630
2430
+ msgid "Multisite"
2431
+ msgstr "Multiseiten"
2432
+
2433
+ #: admin.php:1634
2434
+ msgid "Do you need WordPress Multisite support?"
2435
+ msgstr "Brauchst du WordPress Multiseiten Unterstützung?"
2436
+
2437
+ #: admin.php:1634
2438
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
2439
+ msgstr "Bitte schau dir UpdraftPlus Premium oder das Multiseiten Add-On an."
2440
+
2441
+ #: admin.php:1639
2442
+ msgid "Configure Backup Contents And Schedule"
2443
+ msgstr "Konfiguriere Sicherungsinhalte und Sicherungszeiten"
2444
+
2445
+ #: admin.php:1645
2446
+ msgid "Debug Information And Expert Options"
2447
+ msgstr "Debug Informationen und Experteneinstellungen"
2448
+
2449
+ #: admin.php:1648
2450
+ msgid "Web server:"
2451
+ msgstr ""
2452
+
2453
+ #: admin.php:1651
2454
+ msgid "Peak memory usage"
2455
+ msgstr "Spitzenwert d. Speichernutzung"
2456
+
2457
+ #: admin.php:1652
2458
+ msgid "Current memory usage"
2459
+ msgstr "Aktuelle Speichernutzung"
2460
+
2461
+ #: admin.php:1653
2462
+ msgid "PHP memory limit"
2463
+ msgstr "PHP-Speicher-Limit"
2464
+
2465
+ #: admin.php:1654 admin.php:1656
2466
+ msgid "%s version:"
2467
+ msgstr ""
2468
+
2469
+ #: admin.php:1659 admin.php:1661 admin.php:1668
2470
+ msgid "Yes"
2471
+ msgstr ""
2472
+
2473
+ #: admin.php:1661 admin.php:1668
2474
+ msgid "No"
2475
+ msgstr ""
2476
+
2477
+ #: admin.php:1664
2478
+ msgid "PHP has support for ZipArchive::addFile:"
2479
+ msgstr ""
2480
+
2481
+ #: admin.php:1679
2482
+ msgid "Total (uncompressed) on-disk data:"
2483
+ msgstr ""
2484
+
2485
+ #: admin.php:1680
2486
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
2487
+ msgstr ""
2488
+
2489
+ #: admin.php:1687
2490
+ msgid "count"
2491
+ msgstr ""
2492
+
2493
+ #: admin.php:1693
2494
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
2495
+ msgstr "Der Button unterhalb wird, abhängig vom WordPress Planner, sofort eine Sicherung anlegen. Sollten die SIcherungen nur durch den Cronjob und nicht den \"Jetzt sichern\" Button funktionieren (und keine Logdatei angelegt wird), ist dein Planner defekt. Deaktiviere alle anderen Plugins und versuche es erneut mit dem \"Jetzt sichern\" Button. Wenn auch das fehlschlägt, kontaktiere deinen Webhoster und frage, ob dieser wp-cron deaktiviert hat. Wenn alles glatt läuft, aktiviere deine Plugins einzeln um das Problem-Plugin zu finden und dem Ersteller einen fehlerbericht zu senden."
2496
+
2497
+ #: admin.php:1701
2498
+ msgid "Debug Full Backup"
2499
+ msgstr "Debug komplette Sicherung"
2500
+
2501
+ #: admin.php:1701
2502
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
2503
+ msgstr "Das führt zu einer sofortigen Sicherung. Die Seite wird das vollständige Laden herauszögern (wenn ungeplant)."
2504
+
2505
+ #: admin.php:1489
2506
+ msgid "UpdraftPlus - Upload backup files"
2507
+ msgstr "UpdraftPlus hochgeladene Sicherungen"
2508
+
2509
+ #: admin.php:1490
2510
+ msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
2511
+ msgstr "Lade Dateien nach UpdraftPlus hoch. Nutze diese Funktion um Sicherungen von anderen WordPress-Installationen zu importieren."
2512
+
2513
+ #: admin.php:1495 admin.php:2191
2514
+ msgid "or"
2515
+ msgstr ""
2516
+
2517
+ #: admin.php:85
2518
+ msgid "calculating..."
2519
+ msgstr "Berechne...."
2520
+
2521
+ #: restorer.php:556 admin.php:93 admin.php:2828 admin.php:2846
2522
+ msgid "Error:"
2523
+ msgstr ""
2524
+
2525
+ #: admin.php:95
2526
+ msgid "You should:"
2527
+ msgstr ""
2528
+
2529
+ #: admin.php:99
2530
+ msgid "Download error: the server sent us a response which we did not understand."
2531
+ msgstr ""
2532
+
2533
+ #: admin.php:1515
2534
+ msgid "Delete backup set"
2535
+ msgstr ""
2536
+
2537
+ #: admin.php:1518
2538
+ msgid "Are you sure that you wish to delete this backup set?"
2539
+ msgstr ""
2540
+
2541
+ #: admin.php:1533
2542
+ msgid "Restore backup"
2543
+ msgstr "Sicherung wiederherstellen"
2544
+
2545
+ #: admin.php:1534
2546
+ msgid "Restore backup from"
2547
+ msgstr "Stelle Sicherung wieder her von"
2548
+
2549
+ #: admin.php:1546
2550
+ msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
2551
+ msgstr ""
2552
+
2553
+ #: admin.php:1546
2554
+ msgid "Choose the components to restore"
2555
+ msgstr "Wähle die Komponenten zum Wiederherstellen aus"
2556
+
2557
+ #: admin.php:1555
2558
+ msgid "Your web server has PHP's so-called safe_mode active."
2559
+ msgstr ""
2560
+
2561
+ #: admin.php:1555
2562
+ msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
2563
+ msgstr ""
2564
+
2565
+ #: admin.php:1568
2566
+ msgid "The following entity cannot be restored automatically: \"%s\"."
2567
+ msgstr ""
2568
+
2569
+ #: admin.php:1568
2570
+ msgid "You will need to restore it manually."
2571
+ msgstr ""
2572
+
2573
+ #: admin.php:1575
2574
+ msgid "%s restoration options:"
2575
+ msgstr ""
2576
+
2577
+ #: admin.php:1583
2578
+ msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
2579
+ msgstr ""
2580
+
2581
+ #: admin.php:1594
2582
+ msgid "Do read this helpful article of useful things to know before restoring."
2583
+ msgstr ""
2584
+
2585
+ #: admin.php:1616
2586
+ msgid "Perform a one-time backup"
2587
+ msgstr ""
2588
+
2589
+ #: admin.php:1413
2590
+ msgid "Time now"
2591
+ msgstr "Aktuelle Zeit"
2592
+
2593
+ #: admin.php:113 admin.php:1423
2594
+ msgid "Backup Now"
2595
+ msgstr "Jetzt sichern"
2596
+
2597
+ #: admin.php:117 admin.php:1430 admin.php:2603
2598
+ msgid "Restore"
2599
+ msgstr "Wiederherstellen"
2600
+
2601
+ #: admin.php:1441
2602
+ msgid "Last log message"
2603
+ msgstr "Letzte Log-Nachricht"
2604
+
2605
+ #: admin.php:1443
2606
+ msgid "(Nothing yet logged)"
2607
+ msgstr "(Noch nichts aufgezeichnet)"
2608
+
2609
+ #: admin.php:1444
2610
+ msgid "Download most recently modified log file"
2611
+ msgstr ""
2612
+
2613
+ #: admin.php:1455
2614
+ msgid "Backups, logs & restoring"
2615
+ msgstr "Sicherungen, Logs & Wiederherstellung"
2616
+
2617
+ #: admin.php:1456
2618
+ msgid "Press to see available backups"
2619
+ msgstr "Drücken um verfügbare Sicherungen zu sehen"
2620
+
2621
+ #: admin.php:741 admin.php:796 admin.php:1456
2622
+ msgid "%d set(s) available"
2623
+ msgstr "%d Sammlung(en) verfügbar"
2624
+
2625
+ #: admin.php:1472
2626
+ msgid "Downloading and restoring"
2627
+ msgstr ""
2628
+
2629
+ #: admin.php:1477
2630
+ msgid "Downloading"
2631
+ msgstr "Lade herunter"
2632
+
2633
+ #: admin.php:1477
2634
+ msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
2635
+ msgstr "Das Drücken eines Buttons für Datenbank/Plugins/Designs/Uploads/Andere lässt UpdraftPlus versuchen die Sicherungsdateien vom Fernspeicher (wenn genutzt) auf den Webspace zu laden. Danach kannst du dieses herunterladen. Wenn das Herunterladen einfriert (warte 30 Sekunden um sicher zu gehen), drücke den Button erneut zum Wiederaufnehmen. Natürlich kannst du die Dateien auch jederzeit von der Seite deines Cloud-Anbieters laden."
2636
+
2637
+ #: admin.php:1478
2638
+ msgid "More tasks:"
2639
+ msgstr "Weitere Aufgaben:"
2640
+
2641
+ #: admin.php:1478
2642
+ msgid "upload backup files"
2643
+ msgstr "Sicherungsdateien hochladen"
2644
+
2645
+ #: admin.php:1478
2646
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
2647
+ msgstr "Klicke hier um in dein UpdraftPlus Verzeichnis zu schauen (auf deinem Webhosting-Space) und alle neuen Sicherungen, die du hochgeladen hast, zu sehen. Der Ort dieses Verzeichnisses kann unten in den Experteneinstellungen definiert werden."
2648
+
2649
+ #: admin.php:1478
2650
+ msgid "rescan folder for new backup sets"
2651
+ msgstr "Durchsuche Verzeichnis nach neuen Sicherungen"
2652
+
2653
+ #: admin.php:1479
2654
+ msgid "Opera web browser"
2655
+ msgstr "Opera Web Browser"
2656
+
2657
+ #: admin.php:1479
2658
+ msgid "If you are using this, then turn Turbo/Road mode off."
2659
+ msgstr "Wenn du das benutzt, deaktiviere den Tubro-Modus."
2660
+
2661
+ #: admin.php:1484
2662
+ msgid "Google Drive"
2663
+ msgstr "Google Drive"
2664
+
2665
+ #: admin.php:1484
2666
+ msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
2667
+ msgstr ""
2668
+
2669
+ #: admin.php:1487
2670
+ msgid "This is a count of the contents of your Updraft directory"
2671
+ msgstr "Das ist eine Zählung von Inhalten in deinem Updraft-Verzeichnis."
2672
+
2673
+ #: admin.php:1487
2674
+ msgid "Web-server disk space in use by UpdraftPlus"
2675
+ msgstr "Web-Server Festplatte in Benutzung von UpdraftPlus"
2676
+
2677
+ #: admin.php:1487
2678
+ msgid "refresh"
2679
+ msgstr "aktualisieren"
2680
+
2681
+ #: admin.php:1323
2682
+ msgid "By UpdraftPlus.Com"
2683
+ msgstr "Von UpdraftPlus.cCom"
2684
+
2685
+ #: admin.php:1323
2686
+ msgid "Lead developer's homepage"
2687
+ msgstr "Website des leitenden Entwicklers"
2688
+
2689
+ #: admin.php:1323
2690
+ msgid "Donate"
2691
+ msgstr "Spende"
2692
+
2693
+ #: admin.php:1323
2694
+ msgid "Version"
2695
+ msgstr "Version"
2696
+
2697
+ #: admin.php:1333
2698
+ msgid "Your backup has been restored."
2699
+ msgstr "Deine Sicherung wurde wiederhergestellt."
2700
+
2701
+ #: admin.php:1339
2702
+ msgid "Old directories successfully deleted."
2703
+ msgstr "Alte Verzeichnisse erfolgreich entfernt."
2704
+
2705
+ #: admin.php:1342
2706
+ msgid "Current limit is:"
2707
+ msgstr "Aktuelles Limit ist:"
2708
+
2709
+ #: admin.php:1350
2710
+ msgid "Delete Old Directories"
2711
+ msgstr "Lösche alte Verzeichnisse"
2712
+
2713
+ #: admin.php:1362
2714
+ msgid "Existing Schedule And Backups"
2715
+ msgstr "Vorhandene Plannungen und Sicherungen"
2716
+
2717
+ #: admin.php:1366
2718
+ msgid "JavaScript warning"
2719
+ msgstr "JavaScript-Warnung"
2720
+
2721
+ #: admin.php:1367
2722
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
2723
+ msgstr "Diese Administrationsoberfläche nutzt sehr viel JavaScript. Du musst dieses entweder in deinem Browser aktivieren oder einen JavaScript-fähigen Browser verwenden."
2724
+
2725
+ #: admin.php:1380 admin.php:1393
2726
+ msgid "Nothing currently scheduled"
2727
+ msgstr "Zur Zeit nichts geplant"
2728
+
2729
+ #: admin.php:1385
2730
+ msgid "At the same time as the files backup"
2731
+ msgstr "Zur selben Zeit, wie die Dateien gesichert werden."
2732
+
2733
+ #: admin.php:1409
2734
+ msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
2735
+ msgstr ""
2736
+
2737
+ #: admin.php:1409
2738
+ msgid "Next scheduled backups"
2739
+ msgstr "Nächste geplante Sicherungen"
2740
+
2741
+ #: admin.php:1411
2742
+ msgid "Files"
2743
+ msgstr "Dateien"
2744
+
2745
+ #: admin.php:572 admin.php:1412 admin.php:1572 admin.php:1575 admin.php:2506
2746
+ #: admin.php:2508 admin.php:2869
2747
+ msgid "Database"
2748
+ msgstr "Datenbank"
2749
+
2750
+ #: admin.php:312
2751
+ msgid "Your website is hosted using the %s web server."
2752
+ msgstr ""
2753
+
2754
+ #: admin.php:312
2755
+ msgid "Please consult this FAQ if you have problems backing up."
2756
+ msgstr ""
2757
+
2758
+ #: admin.php:325 admin.php:329
2759
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
2760
+ msgstr "Klicke hier um deinen %s Account zu authentifizieren (Du wirst nicht in der Lage sein nach %s zu sichern, wenn du es nicht tust)."
2761
+
2762
+ #: admin.php:510 admin.php:536
2763
+ msgid "Nothing yet logged"
2764
+ msgstr "Noch nichts aufgezeichnet"
2765
+
2766
+ #: admin.php:748
2767
+ msgid "Schedule backup"
2768
+ msgstr "Plane Sicherung"
2769
+
2770
+ #: admin.php:752
2771
+ msgid "Failed."
2772
+ msgstr "Fehlgeschlagen."
2773
+
2774
+ #: admin.php:754
2775
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
2776
+ msgstr ""
2777
+
2778
+ #: admin.php:754
2779
+ msgid "Nothing happening? Follow this link for help."
2780
+ msgstr "Nichts passiert? Folge diesem Link für Hilfe."
2781
+
2782
+ #: admin.php:770
2783
+ msgid "Job deleted"
2784
+ msgstr ""
2785
+
2786
+ #: admin.php:777
2787
+ msgid "Could not find that job - perhaps it has already finished?"
2788
+ msgstr ""
2789
+
2790
+ #: restorer.php:987 restorer.php:1030 admin.php:788 admin.php:2811
2791
+ msgid "Error"
2792
+ msgstr "Fehler"
2793
+
2794
+ #: admin.php:827
2795
+ msgid "Download failed"
2796
+ msgstr ""
2797
+
2798
+ #: admin.php:94 admin.php:845
2799
+ msgid "File ready."
2800
+ msgstr ""
2801
+
2802
+ #: admin.php:853
2803
+ msgid "Download in progress"
2804
+ msgstr ""
2805
+
2806
+ #: admin.php:856
2807
+ msgid "No local copy present."
2808
+ msgstr "Keine lokale Sicherung vorhanden."
2809
+
2810
+ #: admin.php:1132
2811
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2812
+ msgstr "Falsches Dateinamen-Format - diese Datei sieht nicht so aus, als würde so von UpdraftPlus erstellt worden sein"
2813
+
2814
+ #: admin.php:1219
2815
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2816
+ msgstr ""
2817
+
2818
+ #: admin.php:1248
2819
+ msgid "Restore successful!"
2820
+ msgstr "Wiederherstellung erfolgreich!"
2821
+
2822
+ #: admin.php:1249 admin.php:1275 admin.php:1294
2823
+ msgid "Actions"
2824
+ msgstr "Aktionen"
2825
+
2826
+ #: admin.php:1249 admin.php:1254 admin.php:1275 admin.php:1294
2827
+ msgid "Return to UpdraftPlus Configuration"
2828
+ msgstr "Kehre zur UpdraftPlus Konfiguration zurück"
2829
+
2830
+ #: admin.php:1264
2831
+ msgid "Remove old directories"
2832
+ msgstr "Entferne alte Verzeichnisse"
2833
+
2834
+ #: admin.php:1270
2835
+ msgid "Old directories successfully removed."
2836
+ msgstr "Alte Verzeichnisse erfolgreich entfernt."
2837
+
2838
+ #: admin.php:1273
2839
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
2840
+ msgstr "Entfernen alter Verzeichnisse aus irgendeinem Grund fehlgeschlagen. Vielleicht möchtest du es manuell probieren."
2841
+
2842
+ #: admin.php:1285
2843
+ msgid "Backup directory could not be created"
2844
+ msgstr "Sicherungsverzeichnis konnte nicht erstellt werden."
2845
+
2846
+ #: admin.php:1292
2847
+ msgid "Backup directory successfully created."
2848
+ msgstr "Sicherungsverzeichnis erfolgreich erstellt."
2849
+
2850
+ #: admin.php:1316
2851
+ msgid "Your settings have been wiped."
2852
+ msgstr "Deine Einstellungen wurden zurückgesetzt."
2853
+
2854
+ #: updraftplus.php:2069 updraftplus.php:2075
2855
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
2856
+ msgstr "Bitte hilf UpdraftPlus by giving a positive Review at wordpress.org"
2857
+
2858
+ #: updraftplus.php:2082
2859
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
2860
+ msgstr "Du brauchst mehr Funktionen und Unterstützung? Schau dir UpdraftPlus Premium an"
2861
+
2862
+ #: updraftplus.php:2092
2863
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
2864
+ msgstr "Schau dir UpdraftPlus.Com für Hilfe, Erweiterungen und Unterstützugn an."
2865
+
2866
+ #: updraftplus.php:2095
2867
+ msgid "Want to say thank-you for UpdraftPlus?"
2868
+ msgstr "Möchtest du dich für UpdraftPlus bedanken?"
2869
+
2870
+ #: updraftplus.php:2095
2871
+ msgid "Please buy our very cheap 'no adverts' add-on."
2872
+ msgstr "Bitte kaufe unsere günstige 'Keine Werbung'-Erweiterung."
2873
+
2874
+ #: backup.php:1168
2875
+ msgid "Infinite recursion: consult your log for more information"
2876
+ msgstr "Unendliche Rekursion: Schau in der Logdatei für weitere Informationen nach"
2877
+
2878
+ #: backup.php:158
2879
+ msgid "Could not create %s zip. Consult the log file for more information."
2880
+ msgstr "Konnte das ZIP %s nicht erstellen. Sieh in der Logdatei für weitere Informationen nach."
2881
+
2882
+ #: admin.php:164 admin.php:186
2883
+ msgid "Allowed Files"
2884
+ msgstr "Erlaubte Dateien"
2885
+
2886
+ #: admin.php:249
2887
+ msgid "Settings"
2888
+ msgstr "Einstellungen"
2889
+
2890
+ #: admin.php:253
2891
+ msgid "Add-Ons / Pro Support"
2892
+ msgstr "Erweiterungen / Pro Support"
2893
+
2894
+ #: admin.php:296 admin.php:300 admin.php:304 admin.php:308 admin.php:312
2895
+ #: admin.php:321 admin.php:1474 admin.php:2396 admin.php:2403 admin.php:2405
2896
+ msgid "Warning"
2897
+ msgstr "Warnung"
2898
+
2899
+ #: admin.php:304
2900
+ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2901
+ msgstr "Du hast weniger als %s freien Speicherplatz auf dem Laufwerk, dass UpdraftPlus für Sicherungen verwenden soll. UpdraftPlus könnte nicht genug Speicherplatz haben. Kontaktiere deinen Webhoster, um das Problem zu lösen."
2902
+
2903
+ #: admin.php:308
2904
+ msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2905
+ msgstr "UpdraftPlus unterstützt offiziel keine WordPress-Versionen vor %s. Es kann funktionieren, wenn jedoch nicht, können wir dir keine Hilfestellung geben."
2906
+
2907
+ #: backup.php:453
2908
+ msgid "Backed up"
2909
+ msgstr "gesichert"
2910
+
2911
+ #: backup.php:453
2912
+ msgid "WordPress backup is complete"
2913
+ msgstr "WordPress Sicherung vollständig"
2914
+
2915
+ #: backup.php:453
2916
+ msgid "Backup contains"
2917
+ msgstr "Sicherung enthält"
2918
+
2919
+ #: backup.php:453
2920
+ msgid "Latest status"
2921
+ msgstr "Letzter Status"
2922
+
2923
+ #: backup.php:532
2924
+ msgid "Backup directory (%s) is not writable, or does not exist."
2925
+ msgstr "Sicherungsverzeichnis (%s) ist nicht schreibbar oder existiert nicht."
2926
+
2927
+ #: updraftplus.php:1786
2928
+ msgid "Could not read the directory"
2929
+ msgstr ""
2930
+
2931
+ #: updraftplus.php:1803
2932
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
2933
+ msgstr "Konnte Sicherungs-Historie nicht speichern, da es kein Sicherungs-Array gibt. Das Backup ist wahrscheinlich fehlgeschlagen."
2934
+
2935
+ #: backup.php:1100
2936
+ msgid "Could not open the backup file for writing"
2937
+ msgstr "Konnte die Sicherungsdatei nicht zum schreiben öffnen."
2938
+
2939
+ #: backup.php:1135
2940
+ msgid "Generated: %s"
2941
+ msgstr "Erzeugt: %s"
2942
+
2943
+ #: backup.php:1136
2944
+ msgid "Hostname: %s"
2945
+ msgstr "Hostname: %s"
2946
+
2947
+ #: backup.php:1137
2948
+ msgid "Database: %s"
2949
+ msgstr "Datenbank: %s"
2950
+
2951
+ #: backup.php:762
2952
+ msgid "Table: %s"
2953
+ msgstr "Tabelle: %s"
2954
+
2955
+ #: backup.php:935
2956
+ msgid "Delete any existing table %s"
2957
+ msgstr "Lösche alle vorhandenen Tabellen %s"
2958
+
2959
+ #: backup.php:941
2960
+ msgid "Table structure of table %s"
2961
+ msgstr "Tabellenstruktur von Tabelle %s"
2962
+
2963
+ #: backup.php:945
2964
+ msgid "Error with SHOW CREATE TABLE for %s."
2965
+ msgstr "Fehler mit SHOW CREATE TABLE für %s"
2966
+
2967
+ #: backup.php:1037
2968
+ msgid "End of data contents of table %s"
2969
+ msgstr "Dateninhalt Ende von Tabelle %s"
2970
+
2971
+ #: updraftplus.php:1974 restorer.php:87 admin.php:887
2972
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
2973
+ msgstr ""
2974
+
2975
+ #: updraftplus.php:1984 restorer.php:97 admin.php:901
2976
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
2977
+ msgstr ""
2978
+
2979
+ #: updraftplus.php:1984
2980
+ msgid "The decryption key used:"
2981
+ msgstr ""
2982
+
2983
+ #: updraftplus.php:2002
2984
+ msgid "File not found"
2985
+ msgstr "Datei nicht gefunden"
2986
+
2987
+ #: updraftplus.php:2067
2988
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
2989
+ msgstr ""
2990
+
2991
+ #: updraftplus.php:2069 updraftplus.php:2075
2992
+ msgid "Like UpdraftPlus and can spare one minute?"
2993
+ msgstr "Magst du UpdraftPlus und kannst eine Minute entbehren?"
2994
+
2995
+ #: updraftplus.php:946
2996
+ msgid "Themes"
2997
+ msgstr "Designs"
2998
+
2999
+ #: updraftplus.php:947
3000
+ msgid "Uploads"
3001
+ msgstr "Uploads"
3002
+
3003
+ #: updraftplus.php:962
3004
+ msgid "Others"
3005
+ msgstr "Andere"
3006
+
3007
+ #: updraftplus.php:1347
3008
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
3009
+ msgstr "Konnte keine Dateien im Sicherungsverzeichnis anlegen. Sicherung abgebrochen - überprüfe deine UpdraftPlus-Einstellungen."
3010
+
3011
+ #: backup.php:1072
3012
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
3013
+ msgstr "Verschlüsselungsfehler beim verschlüsseln der Datenbank aufgetreten. Verschlüsselung abgebrochen."
3014
+
3015
+ #: updraftplus.php:1503
3016
+ msgid "The backup apparently succeeded and is now complete"
3017
+ msgstr "Die Sicherung war anscheinend erfolgreich und ist nun vollständig"
3018
+
3019
+ #: updraftplus.php:1516
3020
+ msgid "The backup attempt has finished, apparently unsuccessfully"
3021
+ msgstr "Der Sicherungsversuch ist beendet, anscheinend nicht erfolgreich"
3022
+
3023
+ #: options.php:34
3024
+ msgid "UpdraftPlus Backups"
3025
+ msgstr "UpdraftPlus Sicherungen"
3026
+
3027
+ #: updraftplus.php:400 updraftplus.php:405 updraftplus.php:410 admin.php:325
3028
+ #: admin.php:329
3029
+ msgid "UpdraftPlus notice:"
3030
+ msgstr "UpdraftPlus Hinweis:"
3031
+
3032
+ #: updraftplus.php:400
3033
+ msgid "The log file could not be read."
3034
+ msgstr "Die Logdatei konnte nicht gelesen werden."
3035
+
3036
+ #: updraftplus.php:405
3037
+ msgid "No log files were found."
3038
+ msgstr ""
3039
+
3040
+ #: updraftplus.php:410
3041
+ msgid "The given file could not be read."
3042
+ msgstr ""
3043
+
3044
+ #: updraftplus.php:945
3045
+ msgid "Plugins"
3046
+ msgstr "Plugins"
languages/updraftplus-el.mo ADDED
Binary file
languages/updraftplus-el.po ADDED
@@ -0,0 +1,3046 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Greek
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-10-22 22:40:30+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
+
13
+ #: admin.php:2135
14
+ msgid "See also the \"More Files\" add-on from our shop."
15
+ msgstr "Δείτε επίσης το πρόσθετο \"More Files\" στο κατάστημά μας."
16
+
17
+ #: admin.php:1673
18
+ msgid "Free disk space in account: %s (%s used)"
19
+ msgstr "Ελεύθερος χώρος στον λογαριασμός σας: %s (%s χρησιμοποιείται)"
20
+
21
+ #: updraftplus.php:561
22
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
23
+ msgstr "Ο ελεύθερος χώρος στο λογαριασμό σας είναι πολύ λίγος - μόνο %s Mb απομένουν"
24
+
25
+ #: updraftplus.php:695
26
+ msgid "See: %s"
27
+ msgstr "Δείτε: %s"
28
+
29
+ #: updraftplus.php:539
30
+ msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
31
+ msgstr "Το επιτρεπόμενο ποσό της μνήμης (RAM) για την PHP είναι πολύ μικρό (%s Mb) - θα πρέπει να το αυξήσετε για να αποφευχθούν δυσλειτουργίες εξαιτίας της ανεπαρκούς μνήμης (συμβουλευτείτε την εταιρεία που σας παρέχει τον διακομιστή σας για περισσότερη βοήθεια)"
32
+
33
+ #: updraftplus.php:542 admin.php:296
34
+ msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)"
35
+ msgstr "Ο χρόνος που επιτρέπεται στα πρόσθετα του WordPress για να εκτελέσουν τις λειτουργίες τους είναι πολύ μικρός (%s δευτερόλεπτα) - θα πρέπει να το αυξήσετε για να αποφευχθούν δυσλειτουργίες κατά τη λήψη των αντιγράφων ασφαλείας εξαιτίας πιθανόν time-outs (συμβουλευτείτε την εταιρεία που σας παρέχει τον διακομιστή σας για περισσότερη βοήθεια - αφορά τη ρύθμιση max_execution_time PHP setting; η προτεινόμενη τιμή είναι %s δευτερόλεπτα ή περισσότερο)"
36
+
37
+ #: methods/email.php:49
38
+ msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive."
39
+ msgstr "Θα χρησιμοποιηθεί η διεύθυνση ηλεκτρονικού ταχυδρομείου που τέθηκε πιο πάνω. Εάν επιλέξετε \"E-Mail\", τότε, <strong> να γνωρίζετε </strong> ότι οι διακομιστές αλληλογραφίας συνήθως έχουν όρια μεγέθους τα οποία κυμαίνονται περίπου γύρω στα 10-20Mb. Αντίγραφα ασφαλείας μεγαλύτερα σε μέγεθος από οποιαδήποτε τέτοιο όριο δεν θα φτάσουν ποτέ στο ηλεκτρονικό σας ταχυδρομείο."
40
+
41
+ #: udaddons/options.php:375
42
+ msgid "You have an inactive purchase"
43
+ msgstr "Έχετε μια ανενεργή αγορά."
44
+
45
+ #: udaddons/options.php:375
46
+ msgid "activate it on this site"
47
+ msgstr "ενεργοποιήστε τη σ' αυτή τη σελίδα"
48
+
49
+ #: udaddons/options.php:378
50
+ msgid "Get it from the UpdraftPlus.Com Store"
51
+ msgstr "Αγοράστε το από το UpdraftPlus.Com Store"
52
+
53
+ #: udaddons/options.php:379
54
+ msgid "Buy It"
55
+ msgstr "Αγορά"
56
+
57
+ #: udaddons/options.php:402
58
+ msgid "Manage Addons"
59
+ msgstr "Διαχείριση πρόσθετων"
60
+
61
+ #: methods/email.php:18
62
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s). See: %s"
63
+ msgstr "Με την επόμενη έκδοση του UpdraftPlus, θα χρειαστείτε ένα πρόσθετο για να χρησιμοποιήσετε μια διαφορετική διεύθυνση ηλεκτρονικού ταχυδρομείου στην ιστοσελίδα του ιδιοκτήτη (%s). Δείτε:%s"
64
+
65
+ #: udaddons/options.php:280
66
+ msgid "An unknown response was received. Response was:"
67
+ msgstr "Μια άγνωστη απάντηση ελήφθη. Η απάντηση ήταν:"
68
+
69
+ #: udaddons/options.php:321
70
+ msgid "An error occurred when trying to retrieve your add-ons."
71
+ msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια ανάκτησης των πρόσθετών σας."
72
+
73
+ #: udaddons/options.php:335
74
+ msgid "Need to get support?"
75
+ msgstr "Χρειάζεστε υποστήριξη;"
76
+
77
+ #: udaddons/options.php:335
78
+ msgid "Go here"
79
+ msgstr "Πηγαίνετε εδώ"
80
+
81
+ #: udaddons/options.php:360
82
+ msgid "(apparently a pre-release or withdrawn release)"
83
+ msgstr "(προφανώς μια προ-έκδοση ή μια έκδοση που αποσύρθηκε)"
84
+
85
+ #: udaddons/options.php:366
86
+ msgid "Available for this site (via your all-addons purchase)"
87
+ msgstr "Διαθέσιμο για αυτή την ιστοσελίδα (μέσω της αγοράς σας όλων των πρόσθετων)"
88
+
89
+ #: udaddons/options.php:366
90
+ msgid "please update the plugin in order to get it"
91
+ msgstr "παρακαλούμε αναβαθμίστε το πρόσθετο για να το λάβετε"
92
+
93
+ #: udaddons/options.php:369
94
+ msgid "Assigned to this site"
95
+ msgstr "Έχει εκχωρηθεί για αυτή την ιστοσελίδα"
96
+
97
+ #: udaddons/options.php:369
98
+ msgid "please update the plugin in order to activate it"
99
+ msgstr "παρακαλούμε αναβαθμίστε το πρόσθετο για να ενεργοποιηθεί"
100
+
101
+ #: udaddons/options.php:201
102
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
103
+ msgstr "Ενδιαφέρεστε να μάθετε για την ασφάλεια του κωδικού σας στο UpdraftPlus.Com; Διαβάστε σχετικά εδώ."
104
+
105
+ #: udaddons/options.php:221
106
+ msgid "An unknown error occured when trying to connect to UpdraftPlus.Com"
107
+ msgstr "Προέκυψε ένα άγνωστο σφάλμα κατά την προσπάθεια σύνδεσης με το UpdraftPlus.Com"
108
+
109
+ #: udaddons/options.php:227
110
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
111
+ msgstr "Είστε προς το παρόν <strong>συνδεδεμένος</strong> με έναν λογαριασμό στο UpdraftPlus.Com."
112
+
113
+ #: udaddons/options.php:228
114
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
115
+ msgstr "Εάν έχετε αγοράσει νέα πρόσθετα, ακολουθήστε αυτόν τον σύνδεσμο για να ανανεώσετε τη σύνδεσή σας"
116
+
117
+ #: udaddons/options.php:230
118
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
119
+ msgstr "Δεν είστε προς το παρόν <strong>συνδεδεμένος</strong> με κάποιον λογαριασμό στο UpdraftPlus.Com. "
120
+
121
+ #: udaddons/options.php:236
122
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
123
+ msgstr "Προέκυψαν σφάλματα κατά την προσπάθεια σύνδεσης με το UpdraftPlus.Com:"
124
+
125
+ #: udaddons/options.php:277
126
+ msgid "Please wait whilst we make the claim..."
127
+ msgstr "Παρακαλώ περιμένετε ενώ κάνουμε την επαλήθευση..."
128
+
129
+ #: udaddons/options.php:278
130
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else?"
131
+ msgstr "Η αξίωση δεν έγινε αποδεκτή- ίσως έχετε ήδη χρησιμοποιήσει αυτή την αγορά κάπου αλλού;"
132
+
133
+ #: udaddons/options.php:279
134
+ msgid "Claim not granted - your account login details were wrong"
135
+ msgstr "Η αξίωση δεν έγινε αποδεκτή - τα στοιχεία σύνδεσής σας ήταν λανθασμένα"
136
+
137
+ #: udaddons/options.php:73
138
+ msgid "Your web server's version of PHP is too old ("
139
+ msgstr "Η έκδοση PHP του web server σας είναι πολύ παλιά ("
140
+
141
+ #: udaddons/options.php:93
142
+ msgid "Connect with your UpdraftPlus.Com account"
143
+ msgstr "Συνδεθείτε με τον UpdraftPlus.Com λογαριασμό σας"
144
+
145
+ #: udaddons/options.php:118
146
+ msgid "Not yet got an account (it's free)? Go get one!"
147
+ msgstr "Δεν έχετε ακόμα λογαριασμό (είναι δωρεάν); Δημιουργήστε έναν!"
148
+
149
+ #: udaddons/options.php:128
150
+ msgid "Forgotten your details?"
151
+ msgstr "Ξεχάσατε τις λεπτομέρειές σας;"
152
+
153
+ #: udaddons/options.php:56
154
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
155
+ msgstr "Δεν έχετε ακόμα συνδεθεί με το λογαριασμό σας στο UpdraftPlus.Com, για να σας δοθεί η δυνατότητα να κάνετε λίστα με τα αγορασμένα πρόσθετα."
156
+
157
+ #: udaddons/options.php:56
158
+ msgid "Go here to connect."
159
+ msgstr "Πηγαίνετε εδώ για να συνδεθείτε."
160
+
161
+ #: udaddons/options.php:62
162
+ msgid "UpdraftPlus is not yet activated."
163
+ msgstr "Το UpdraftPlus δεν έχει ακόμα ενεργοποιηθεί."
164
+
165
+ #: udaddons/options.php:63
166
+ msgid "Go here to activate it."
167
+ msgstr "Πηγαίνετε εδώ για να το ενεργοποιήσετε."
168
+
169
+ #: udaddons/options.php:66
170
+ msgid "UpdraftPlus is not yet installed."
171
+ msgstr "Το UpdraftPlus δεν έχει ακόμα εγκατασταθεί. "
172
+
173
+ #: udaddons/options.php:66
174
+ msgid "Go here to begin installing it."
175
+ msgstr "Πηγαίνετε εδώ για να ξεκινήσετε τη διαδικασία εγκατάστασης."
176
+
177
+ #: udaddons/options.php:67
178
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
179
+ msgstr "Φαίνεται πως έχετε ένα παλιό και ξεπερασμένο Updraft πρόσθετο εγκαταστημένο - μήπως τα έχετε μπερδέψει;"
180
+
181
+ #: admin.php:2152
182
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s)."
183
+ msgstr "Με την επόμενη έκδοση του UpdraftPlus, θα χρειαστείτε ένα πρόσθετο για να χρησιμοποιήσετε μια διαφορετική διεύθυνση ηλεκτρονικού ταχυδρομείου στην ιστοσελίδα του ιδιοκτήτη (%s)."
184
+
185
+ #: admin.php:2178
186
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on, and add the capability to encrypt files also."
187
+ msgstr "Μια μελλοντική έκδοση του UpdraftPlus θα μεταφέρει τη δυνατότητα της κρυπτογράφησης σε ένα πρόσθετο, και θα προσθέσει επίσης τη δυνατότητα να κρυπτογραφήσετε αρχεία."
188
+
189
+ #: admin.php:1333
190
+ msgid "If your restore included files, then your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
191
+ msgstr "Αν επαναφέρετε αρχεία που περιλαμβάνονται, τότε οι παλιοί σας φάκελοι (θέματα, προσθήκες, πρόσθετα και οτιδήποτε άλλο) θα διατηρηθούν με το επίθεμα \"-old\", το οποίο θα προσαρτηθεί στο όνομά τους. Διαγράψτε τους όταν είστε σίγουροι ότι τα αντίγραφα ασφαλείας λειτουργούν σωστά."
192
+
193
+ #: backup.php:794
194
+ msgid "Skipping table (lacks our prefix): %s"
195
+ msgstr "Παράλειψη του πίνακα (απουσία του προθέματός μας):%s"
196
+
197
+ #: updraftplus.php:692 admin.php:2172
198
+ msgid "Your web-server does not have the %s module installed."
199
+ msgstr "Ο εξυπηρετητής σας δεν έχει εγκατεστημένο το πρόσθετο %s."
200
+
201
+ #: updraftplus.php:692 admin.php:2172
202
+ msgid "Without it, encryption will be a lot slower."
203
+ msgstr "Χωρίς αυτό, η κρυπτογράφηση θα είναι πολύ πιο αργή."
204
+
205
+ #: updraftplus.php:695
206
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on (and add more features to it)."
207
+ msgstr "Μια μελλοντική έκδοση του UpdraftPlus θα μεταφέρει τη δυνατότητα της κρυπτογράφησης σε ένα πρόσθετο (και θα προσθέσει περισσότερες δυνατότητες σ' αυτή). "
208
+
209
+ #: admin.php:1494
210
+ msgid "Drop backup files here"
211
+ msgstr "Αφήστε τα αρχεία αντιγράφων ασφαλείας εδώ"
212
+
213
+ #: methods/googledrive.php:486
214
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
215
+ msgstr "<strong> (Φαίνεται να έχετε ήδη πιστοποιηθεί,</strong> αν και μπορείτε να πιστοποιηθείτε και πάλι για να ανανεώσετε την πρόσβασή σας, αν αντιμετωπίσατε κάποιο πρόβλημα)."
216
+
217
+ #: methods/dropbox.php:291
218
+ msgid "(You appear to be already authenticated)"
219
+ msgstr "(Φαίνεται να έχετε ήδη πιστοποιηθεί)"
220
+
221
+ #: updraftplus.php:2063
222
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
223
+ msgstr "Θέλετε περισσότερες δυνατότητες ή επί πληρωμή, εγγυημένη υποστήριξη; Δείτε πως στο UpdraftPlus.Com"
224
+
225
+ #: updraftplus.php:2072
226
+ msgid "Check out WordShell"
227
+ msgstr "Δείτε το WordShell"
228
+
229
+ #: updraftplus.php:2072
230
+ msgid "manage WordPress from the command line - huge time-saver"
231
+ msgstr "διαχειριστείτε το WordPress από την γραμμή εντολών - γλιτώνετε πολύ χρόνο"
232
+
233
+ #: methods/dropbox.php:35
234
+ msgid "The %s PHP module is not installed - ask your web hosting company to enable it"
235
+ msgstr "Το PHP πρόσθετο %s δεν έχει εγκατασταθεί - απευθυνθείτε στην εταιρεία που σας παρέχει το web hosting για να το ενεργοποιήσει "
236
+
237
+ #: admin.php:1624
238
+ msgid "Does nothing happen when you attempt backups?"
239
+ msgstr "Μήπως δε συμβαίνει τίποτα όταν προσπαθείτε να κρατήσετε αντίγραφα ασφαλείας;"
240
+
241
+ #: admin.php:1620
242
+ msgid "Don't include the database in the backup"
243
+ msgstr "Μην συμπεριλαμβάνετε τη βάση δεδομένων στο αντίγραφο ασφαλείας"
244
+
245
+ #: admin.php:1621
246
+ msgid "Don't include any files in the backup"
247
+ msgstr "Μην συμπεριλαμβάνετε κανένα αρχείο στο αντίγραφο ασφαλείας "
248
+
249
+ #: admin.php:1478
250
+ msgid "Restoring:"
251
+ msgstr "Επαναφορά:"
252
+
253
+ #: admin.php:1478
254
+ msgid "Press the Restore button next to the chosen backup set."
255
+ msgstr "Πατήστε το κουμπί Επαναφορά δίπλα στο επιλεγμένο σύνολο αντιγράφων ασφαλείας."
256
+
257
+ #: admin.php:82
258
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
259
+ msgstr "Η διαδικασία επαναφοράς έχει αρχίσει. Μην πατήσετε το κουμπί διακοπής ή κλείσετε το φυλλομετρητή σας μέχρι να δείτε την αναφορά ολοκλήρωσης της διαδικασίας."
260
+
261
+ #: admin.php:84
262
+ msgid "The web server returned an error code (try again, or check your web server logs)"
263
+ msgstr "Ο εξυπηρετητής επέστρεψε έναν κωδικό σφάλματος (προσπαθήστε ξανά, ή ελέγξετε το αρχείο καταγραφής του διακομιστή)"
264
+
265
+ #: admin.php:81
266
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
267
+ msgstr "Εάν εξαιρέσετε τόσο την βάση δεδομένων και τα αρχεία, τότε έχετε εξαιρέσει τα πάντα!"
268
+
269
+ #: restorer.php:714
270
+ msgid "Site home:"
271
+ msgstr "Αρχική σελίδα:"
272
+
273
+ #: addons/morestorage.php:80
274
+ msgid "Remote Storage Options"
275
+ msgstr "Επιλογές Απομακρυσμένης Αποθήκευσης"
276
+
277
+ #: addons/autobackup.php:29 addons/autobackup.php:278
278
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
279
+ msgstr "Να αποθηκευτεί αυτή η επιλογή για την επόμενη φορά (θα εξακολουθήσετε να έχετε τη δυνατότητα να το αλλάξετε)"
280
+
281
+ #: addons/autobackup.php:64 addons/autobackup.php:148
282
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
283
+ msgstr "(τα αρχεία καταγραφής μπορείτε να τα βρείτε στη σελίδα ρυθμίσεων του UpdraftPlus ως συνήθως)..."
284
+
285
+ #: addons/webdav.php:139
286
+ msgid "Upload failed"
287
+ msgstr "Το ανέβασμα των αρχείων απέτυχε"
288
+
289
+ #: admin.php:2237
290
+ msgid "You can send a backup to more than one destination with an add-on."
291
+ msgstr "Μπορείτε να αποθηκεύσετε το αντίγραφο ασφαλείας σε περισσότερα από ένα σημεία με ένα πρόσθετο."
292
+
293
+ #: admin.php:1869
294
+ msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
295
+ msgstr "Σημείωση: η γραμμή προόδου πιο κάτω βασίζεται σε στάδια, ΟΧΙ στο χρόνο. Μην σταματήσετε τη δημιουργία αντιγράφου ασφαλείας μόνο και μόνο επειδή φαίνεται να έχει παραμείνει στην ίδια θέση για λίγο - αυτό είναι φυσιολογικό."
296
+
297
+ #: admin.php:1819
298
+ msgid "(%s%%, file %s of %s)"
299
+ msgstr "(%s%%, αρχείο %s από %s)"
300
+
301
+ #: addons/sftp.php:421
302
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
303
+ msgstr "Αποτυχία: Ήμασταν σε θέση να συνδεθούμε και να βρεθούμε στον ενδεικνυόμενο κατάλογο, αλλά αποτύχαμε να δημιουργήσουμε με επιτυχία ένα αρχείο σε αυτή τη θέση."
304
+
305
+ #: addons/sftp.php:423
306
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
307
+ msgstr "Αποτυχία: Ήμασταν σε θέση να συνδεθούμε, αλλά αποτύχαμε να δημιουργήσουμε με επιτυχία ένα αρχείο σε αυτή τη θέση. "
308
+
309
+ #: addons/autobackup.php:29 addons/autobackup.php:278
310
+ msgid "Read more about how this works..."
311
+ msgstr "Διαβάστε περισσότερα για το πως λειτουργεί αυτό..."
312
+
313
+ #: addons/sftp.php:311
314
+ msgid "Use SCP instead of SFTP"
315
+ msgstr "Χρησιμοποιήστε SCP αντί του SFTP"
316
+
317
+ #: addons/sftp.php:36
318
+ msgid "SCP/SFTP password"
319
+ msgstr "Κωδικός SCP/SFTP "
320
+
321
+ #: addons/sftp.php:34
322
+ msgid "SCP/SFTP host setting"
323
+ msgstr "Ρυθμίσεις SCP/SFTP host"
324
+
325
+ #: addons/sftp.php:35
326
+ msgid "SCP/SFTP user setting"
327
+ msgstr "Ρυθμίσεις χρήστη SCP/SFTP"
328
+
329
+ #: methods/email.php:32
330
+ msgid "Backup is of: %s."
331
+ msgstr "Η δημιουργία αντιγράφων ασφαλείας είναι:%s."
332
+
333
+ #: methods/email.php:39
334
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
335
+ msgstr "Η προσπάθεια για να σταλεί το αντίγραφο ασφαλείας μέσω email απέτυχε (ίσως το αντίγραφο ασφαλείας ήταν πολύ μεγάλο για αυτή τη μέθοδο)"
336
+
337
+ #: methods/cloudfiles.php:372
338
+ msgid "%s settings test result:"
339
+ msgstr "αποτέλεσμα δοκιμής για τις ρυθμίσεις %s:"
340
+
341
+ #: admin.php:2500
342
+ msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
343
+ msgstr "Αν βλέπετε περισσότερα αντίγραφα ασφαλείας από ό,τι θα περιμένατε, είναι πιθανώς επειδή η διαγραφή των παλαιών αντιγράφων ασφαλείας δεν έχει συμβεί έως ότου ολοκληρωθεί η διαδικασία λήψης του νέου αντιγράφου ασφαλείας."
344
+
345
+ #: admin.php:2500
346
+ msgid "(Not finished)"
347
+ msgstr "(Δεν έχει ολοκληρωθεί)"
348
+
349
+ #: admin.php:2330
350
+ msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
351
+ msgstr "Αυτό είναι το σημείο όπου το UpdraftPlus θα αποθηκεύσει τα αρχεία zip που δημιουργεί αρχικά. Αυτός ο κατάλογος πρέπει να είναι εγγράψιμος από τον εξυπηρετητή σας. Έχει άμεση σχέση με τον κατάλογο του περιεχομένου σας (ο οποίος από προεπιλογή ονομάζεται wp-content)."
352
+
353
+ #: admin.php:2330
354
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
355
+ msgstr "<b> Μην </b> το τοποθετείτε μέσα στο φάκελο με τις προσθήκες ή τα πρόσθετα, καθώς αυτό θα προκαλέσει αναδρομή (αντίγραφα ασφαλείας των αντιγράφων ασφαλείας των αντιγράφων ασφαλείας των...)."
356
+
357
+ #: admin.php:2303
358
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
359
+ msgstr "Το UpdraftPlus θα χωρίσει τις αρχειοθήκες αντιγράφων ασφαλείας, όταν αυτές υπερβαίνουν αυτό το μέγεθος του αρχείου. Η προεπιλεγμένη τιμή είναι 800 megabytes. Να είστε προσεκτικοί για να αφήσετε κάποιο περιθώριο, αν ο εξυπηρετητής σας έχει ένα προκαθορισμένο και απαράβατο όριο μεγέθους (π.χ. όριο 2 Gb / 2048 ΜΒ σε ορισμένους 32-bit εξυπηρετητές / συστήματα αρχείων)."
360
+
361
+ #: admin.php:1828
362
+ msgid "Waiting until scheduled time to retry because of errors"
363
+ msgstr "Αναμονή λόγω σφαλμάτων μέχρι την προγραμματισμένη ώρα της επανέναρξης "
364
+
365
+ #: admin.php:1833
366
+ msgid "Backup finished"
367
+ msgstr "Η λήψη αντιγράφων ασφαλείας ολοκληρώθηκε"
368
+
369
+ #: admin.php:1836
370
+ msgid "Unknown"
371
+ msgstr "Άγνωστο"
372
+
373
+ #: admin.php:1852
374
+ msgid "next resumption: %d (after %ss)"
375
+ msgstr "επόμενη επανάληψη:%d (μετά από %ss)"
376
+
377
+ #: admin.php:1853
378
+ msgid "last activity: %ss ago"
379
+ msgstr "τελευταία δραστηριότητα πριν: %ss"
380
+
381
+ #: admin.php:1863
382
+ msgid "Job ID: %s"
383
+ msgstr "Ταυτότητα εργασίας: %s"
384
+
385
+ #: admin.php:1790
386
+ msgid "table: %s"
387
+ msgstr "πίνακας: %s"
388
+
389
+ #: admin.php:1798
390
+ msgid "Created database backup"
391
+ msgstr "Δημιουργήθηκε το αντίγραφο ασφαλείας της βάσης δεδομένων"
392
+
393
+ #: admin.php:1803
394
+ msgid "Encrypting database"
395
+ msgstr "Κρυπτογράφηση βάσης δεδομένων"
396
+
397
+ #: admin.php:1807
398
+ msgid "Encrypted database"
399
+ msgstr "Κρυπτογραφήθηκε η βάση δεδομένων"
400
+
401
+ #: admin.php:1812
402
+ msgid "Uploading files to remote storage"
403
+ msgstr "Μεταφορά αρχείων στο απομακρυσμένο σημείο αποθήκευσης"
404
+
405
+ #: admin.php:1824
406
+ msgid "Pruning old backup sets"
407
+ msgstr "Διαγραφή παλαιών αντιγράφων ασφαλείας"
408
+
409
+ #: admin.php:1770
410
+ msgid "Creating file backup zips"
411
+ msgstr "Δημιουργία συμπιεσμένων αντιγράφων ασφαλείας αρχείων "
412
+
413
+ #: admin.php:1783
414
+ msgid "Created file backup zips"
415
+ msgstr "Δημιουργήθηκαν τα συμπιεσμένα αντίγραφα ασφαλείας αρχείων "
416
+
417
+ #: admin.php:1788
418
+ msgid "Creating database backup"
419
+ msgstr "Δημιουργία αρχείων ασφαλείας της βάσης δεδομένων"
420
+
421
+ #: admin.php:1765
422
+ msgid "Backup begun"
423
+ msgstr "Η δημιουργία αρχείων ασφαλείας ξεκίνησε"
424
+
425
+ #: admin.php:1450
426
+ msgid "Backups in progress:"
427
+ msgstr "Η δημιουργία αρχείων ασφαλείας βρίσκεται σε εξέλιξη:"
428
+
429
+ #: admin.php:300
430
+ msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
431
+ msgstr "Ο προγραμματιστής είναι απενεργοποιημένος στην εγκατάσταση του WordPress, μέσω της ρύθμισης DISABLE_WP_CRON. Δεν μπορεί να εκτελεστεί καμία διαδικασία εκτέλεσης δημιουργίας αντιγράφων ασφαλείας (even &quot;Backup Now&quot;) εκτός εάν είτε έχετε εγκαταστήσει μια λειτουργία για να λάβετε αντίγραφο ασφαλείας χειροκίνητα, ή μέχρι να ενεργοποιηθεί."
432
+
433
+ #: restorer.php:278 restorer.php:284
434
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
435
+ msgstr "Το UpdraftPlus χρειάζεται να δημιουργήσει ένα %s στον κατάλογο περιεχομένων σας, αλλά απέτυχε - παρακαλώ ελέγξτε τα δικαιώματα αρχείων σας και επιτρέψτε την πρόσβαση (%s)"
436
+
437
+ #: restorer.php:278
438
+ msgid "folder"
439
+ msgstr "κατάλογος"
440
+
441
+ #: restorer.php:284
442
+ msgid "file"
443
+ msgstr "αρχείο"
444
+
445
+ #: backup.php:1186
446
+ msgid "Failed to open directory (check the file permissions): %s"
447
+ msgstr "Αποτυχία ανοίγματος του καταλόγου (ελέγξτε τα δικαιώματα αρχείων):%s"
448
+
449
+ #: backup.php:1180
450
+ msgid "%s: unreadable file - could not be backed up (check the file permissions)"
451
+ msgstr "%s: μη αναγνώσιμο αρχείο - δεν μπορεί να συμπεριληφθεί στο αντίγραφο ασφαλείας (ελέγξτε τα δικαιώματα αρχείου)"
452
+
453
+ #: updraftplus.php:1519
454
+ msgid "The backup has not finished; a resumption is scheduled"
455
+ msgstr "Η δημιουργία αντιγράφων ασφαλείας δεν έχει τελειώσει, έχει προγραμματιστεί επανάληψη της διαδικασίας"
456
+
457
+ #: updraftplus.php:1067
458
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
459
+ msgstr "Η ιστοσελίδα σας δεν έχει μεγάλη επισκεψιμότητα και το UpdraftPlus δεν μπορεί να πάρει τους πόρους που έλπιζε, παρακαλούμε διαβάστε αυτή τη σελίδα:"
460
+
461
+ #: methods/googledrive.php:482
462
+ msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
463
+ msgstr "<strong> Αυτό ΔΕΝ ΕΙΝΑΙ όνομα φακέλου </strong>. Για να βρείτε το ID ενός φακέλου περιηγηθείτε στο φάκελο αυτό στο Google Drive με το φυλλομετρητή σας και αντιγράψτε το ID από τη γραμμή διευθύνσεων του φυλλομετρητή σας. Είναι το σημείου που έρχεται μετά <kbd># φάκελοι/</kbd>. Αφήστε το κενό εάν θέλετε να χρησιμοποιήσετε ριζικό φάκελο σας."
464
+
465
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:88
466
+ #: methods/googledrive.php:63
467
+ msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
468
+ msgstr "Η αυθεντικοποίηση του%s δεν μπορεί να προχωρήσει, γιατί κάτι άλλο στην ιστοσελίδας σας δημιουργεί πρόβλημα. Δοκιμάστε να απενεργοποιήσετε άλλα πρόσθετα που έχετε εγκατεστημένα κι ενεργοποιήστε ένα προεπιλεγμένο θέμα. (Συγκεκριμένα, ψάχνετε για το στοιχείο που στέλνει (πιθανότατα προειδοποιήσεις/σφάλματα της PHP) πριν αρχίσει η σελίδα. Απενεργοποίηση των ρυθμίσεων εντοπισμού σφαλμάτων μπορεί επίσης να βοηθήσει)."
469
+
470
+ #: admin.php:1342
471
+ msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
472
+ msgstr "Το όριο μνήμης της PHP (το οποίο ορίζεται από την εταιρία φιλοξενίας της ιστοσελίδας) είναι πολύ χαμηλό. Το UpdraftPlus προσπάθησε να το ανεβάσει ανεπιτυχώς. Αυτό το πρόσθετο ενδέχεται να μην μπορεί να αποδώσει σωστά με όριο μνήμης μικρότερο των 64 Mb, ειδικά αν έχετε ανεβάσει πολύ μεγάλα αρχεία (αν και από την άλλη, αρκετές ιστοσελίδες μπορούν να δουλέψουν επιτυχώς και με όριο τα 32Mb. Η εμπειρία σας μπορεί να διαφέρει)."
473
+
474
+ #: addons/autobackup.php:221
475
+ msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - now proceeding with the updates..."
476
+ msgstr "Η λήψη αντίγραφου ασφαλείας ολοκληρώθηκε με επιτυχία <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - τώρα γίνονται οι ενημερώσεις..."
477
+
478
+ #: addons/autobackup.php:274
479
+ msgid "UpdraftPlus Automatic Backups"
480
+ msgstr "Αυτόματα αντίγραφα ασφαλείας του UpdraftPlus"
481
+
482
+ #: addons/autobackup.php:279
483
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
484
+ msgstr "Αφού πατήσετε το κουμπί \"Προχώρησε\" πιο κάτω, μην ακυρώσετε την διαδικασία - περιμένετε να ολοκληρωθεί η διαδικασία λήψης του αντιγράφου ασφαλείας."
485
+
486
+ #: addons/autobackup.php:280
487
+ msgid "Proceed with update"
488
+ msgstr "Προχωρήστε στην ενημέρωση"
489
+
490
+ #: addons/autobackup.php:68 addons/autobackup.php:155
491
+ msgid "Starting automatic backup..."
492
+ msgstr "Εκκίνηση διαδικασίας αυτόματης λήψης αντιγράφου ασφαλείας..."
493
+
494
+ #: addons/autobackup.php:113
495
+ msgid "plugins"
496
+ msgstr "πρόσθετα"
497
+
498
+ #: addons/autobackup.php:118
499
+ msgid "themes"
500
+ msgstr "θέματα"
501
+
502
+ #: addons/autobackup.php:138
503
+ msgid "You do not have sufficient permissions to update this site."
504
+ msgstr "Δεν διαθέτετε επαρκή δικαιώματα για να ενημερώσετε αυτή τη σελίδα."
505
+
506
+ #: addons/autobackup.php:148
507
+ msgid "Creating database backup with UpdraftPlus..."
508
+ msgstr "Δημιουργία αντιγράφου ασφαλείας της βάσης δεδομένων με το UpdraftPlus..."
509
+
510
+ #: addons/autobackup.php:157 addons/autobackup.php:243
511
+ #: addons/autobackup.php:266
512
+ msgid "Automatic Backup"
513
+ msgstr "Αυτόματη λήψη αντιγράφων ασφαλείας"
514
+
515
+ #: addons/autobackup.php:199
516
+ msgid "Creating backup with UpdraftPlus..."
517
+ msgstr "Δημιουργία αντιγράφου ασφαλείας με το UpdraftPlus..."
518
+
519
+ #: addons/autobackup.php:206
520
+ msgid "Errors have occurred:"
521
+ msgstr "Παρουσιάστηκαν σφάλματα:"
522
+
523
+ #: addons/autobackup.php:219
524
+ msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - now proceeding with the updates..."
525
+ msgstr "Η λήψη αντίγραφου ασφαλείας ολοκληρώθηκε με επιτυχία <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - τώρα γίνονται οι ενημερώσεις... "
526
+
527
+ #: addons/autobackup.php:29 addons/autobackup.php:278
528
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
529
+ msgstr "Αυτόματη δημιουργία αντιγράφων ασφαλείας (κατά περίπτωση) πρόσθετων, θεμάτων και βάσης δεδομένων του WordPress με το UpdraftPlus πριν από αναβάθμιση"
530
+
531
+ #: addons/autobackup.php:64
532
+ msgid "Creating %s and database backup with UpdraftPlus..."
533
+ msgstr "Δημιουργία αντιγράφων ασφαλείας για τα %s και τη βάση δεδομένων με το UpdraftPlus..."
534
+
535
+ #: addons/morefiles.php:94
536
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
537
+ msgstr "Αδυναμία ανάγνωσης του αρχείου zip (%s) - δεν ήταν δυνατός ο έλεγχος για την ακεραιότητα του αρχείου."
538
+
539
+ #: addons/morefiles.php:99
540
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
541
+ msgstr "Αδυναμία ανοίγματος του αρχείου zip (%s) - δεν ήταν δυνατός ο έλεγχος για την ακεραιότητα του αρχείου. "
542
+
543
+ #: addons/morefiles.php:118 addons/morefiles.php:119
544
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
545
+ msgstr "Αυτό δεν φαίνεται να είναι έγκυρο αντίγραφο ασφαλείας του πυρήνα του WordPress - το αρχείο %s λείπει."
546
+
547
+ #: addons/morefiles.php:118 addons/morefiles.php:119
548
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
549
+ msgstr "Αν δεν είστε σίγουρος τότε πρέπει να σταματήσετε αλλιώς ενδέχεται να καταστρέψετε αυτή την εγκατάσταση του WordPress."
550
+
551
+ #: admin.php:1323
552
+ msgid "Support"
553
+ msgstr "Υποστήριξη"
554
+
555
+ #: admin.php:1323
556
+ msgid "More plugins"
557
+ msgstr "Περισσότερα πρόσθετα"
558
+
559
+ #: admin.php:963
560
+ msgid "%s version: %s"
561
+ msgstr "%s έκδοση: %s"
562
+
563
+ #: admin.php:964
564
+ msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
565
+ msgstr "Κάνετε εισαγωγή από μια νεότερη έκδοση του WordPress (%s) σε μια παλαιότερη (%s). Δεν υπάρχουν εγγυήσεις ότι το WordPress μπορεί να το διαχειριστεί αυτό."
566
+
567
+ #: admin.php:1038
568
+ msgid "This database backup is missing core WordPress tables: %s"
569
+ msgstr "Από αυτό το αρχείο ασφαλείας της βάσης δεδομένων λείπουν πίνακες του πυρήνα του Wordpress: %s"
570
+
571
+ #: admin.php:1041
572
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
573
+ msgstr "Το UpdraftPlus δεν μπόρεσε να βρει το πρόθεμα πίνακα κατά τη σάρωση του αρχείου ασφαλείας της βάσης δεδομένων."
574
+
575
+ #: admin.php:908
576
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
577
+ msgstr "Η βάση δεδομένων είναι πολύ μικρή για να είναι έγκυρη βάση δεδομένων WordPress (μέγεθος: %s Kb)."
578
+
579
+ #: admin.php:135 admin.php:285
580
+ msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
581
+ msgstr "Το UpdraftPlus Premium μπορεί <strong> αυτόματα </strong> να λάβει ένα αντίγραφο ασφαλείας των πρόσθετων ή των θεμάτων και της βάσης δεδομένων σας πριν κάνετε οποιαδήποτε αναβάθμιση."
582
+
583
+ #: admin.php:135 admin.php:285
584
+ msgid "Be safe every time, without needing to remember - follow this link to learn more."
585
+ msgstr "Μείνετε πάντα ασφαλής, χωρίς ανάγκη υπενθύμισης - ακολουθήστε αυτό τον σύνδεσμο για να μάθετε περισσότερα."
586
+
587
+ #: admin.php:270
588
+ msgid "Update Plugin"
589
+ msgstr "Ενημέρωση Πρόσθετου"
590
+
591
+ #: admin.php:274
592
+ msgid "Update Theme"
593
+ msgstr "Ενημέρωση Θέματος"
594
+
595
+ #: admin.php:133 admin.php:283
596
+ msgid "Dismiss (for %s weeks)"
597
+ msgstr "Απενεργοποίηση (για %s εβδομάδες)"
598
+
599
+ #: admin.php:134 admin.php:284
600
+ msgid "Be safe with an automatic backup"
601
+ msgstr "Μείνετε ασφαλής με την αυτόματη λήψη αντιγράφων ασφαλείας"
602
+
603
+ #: restorer.php:999
604
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
605
+ msgstr "Η διαδρομή του φακέλου για τη μεταφορά των αρχείων (%s) δεν υπάρχει - γίνεται επαναφορά (%s)"
606
+
607
+ #: admin.php:1327
608
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
609
+ msgstr "Αν μπορείτε ακόμα να διαβάζετε αυτές τις λέξεις αφότου η σελίδα τελειώσει την φόρτωση της, τότε υπάρχει κάποιο πρόβλημα με τη JavaScript ή το jQuery στην ιστοσελίδα."
610
+
611
+ #: admin.php:108
612
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
613
+ msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για να δοκιμάσετε να γίνει αποκρυπτογράφηση και κατέβασμα του αρχείου της βάσης δεδομένων στον υπολογιστή σας."
614
+
615
+ #: admin.php:109
616
+ msgid "This decryption key will be attempted:"
617
+ msgstr "Θα δοκιμαστεί αυτό το κλειδί αποκρυπτογράφησης:"
618
+
619
+ #: admin.php:110
620
+ msgid "Unknown server response:"
621
+ msgstr "Άγνωστη απάντηση διακομιστή:"
622
+
623
+ #: admin.php:111
624
+ msgid "Unknown server response status:"
625
+ msgstr "Άγνωστη κατάσταση απάντησης διακομιστή:"
626
+
627
+ #: admin.php:112
628
+ msgid "The file was uploaded."
629
+ msgstr "Το αρχείο μεταφορτώθηκε."
630
+
631
+ #: admin.php:103
632
+ msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
633
+ msgstr "Αυτό το αρχείο δεν φαίνεται να είναι ένα έγκυρο αρχείο αντιγράφων ασφαλείας του UpdraftPlus (τέτοια αρχεία είναι τα .zip ή .gz που έχει ένα όνομα όπως: backup_ (ώρα) _ (όνομα της ιστοσελίδας) _ (κωδικός) _ (τύπος). (zip|gz)). Ωστόσο, τα αρχεία του UpdraftPlus είναι όπως τα πρότυπα zip/SQL αρχεία - οπότε αν είστε βέβαιοι ότι το αρχείο σας έχει τον σωστό τύπο, τότε μπορείτε να το μετονομάσετε για να ταιριάζει με αυτό το μοτίβο."
634
+
635
+ #: admin.php:104
636
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
637
+ msgstr "(σιγουρευτείτε ότι προσπαθείτε να ανεβάσετε ένα αρχείο zip το όποιο έχει κατασκευαστεί με το UpdraftPlus)"
638
+
639
+ #: admin.php:105
640
+ msgid "Upload error:"
641
+ msgstr "Σφάλμα μεταφόρτωσης:"
642
+
643
+ #: admin.php:106
644
+ msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
645
+ msgstr "Το αρχείο φαίνεται να μην είναι άρχειο κρυπτογραφημένης βάσης δεδομένων του UpdraftPlus (τέτοια αρχεία είναι τα αρχεία .gz.crypt που έχουν όνομα όπως: backup_(ώρα)_(όνομα ιστοσελίδας)_(κωδικός)_db.crypt.gz)."
646
+
647
+ #: admin.php:107
648
+ msgid "Upload error"
649
+ msgstr "Σφάλμα μεταφόρτωσης"
650
+
651
+ #: admin.php:96
652
+ msgid "Delete from your web server"
653
+ msgstr "Διαγραφή από τον διακομιστή σας"
654
+
655
+ #: admin.php:97
656
+ msgid "Download to your computer"
657
+ msgstr "Αποθήκευση στον υπολογιστή σας"
658
+
659
+ #: admin.php:98
660
+ msgid "and then, if you wish,"
661
+ msgstr "κι ύστερα, αν το επιθυμείτε,"
662
+
663
+ #: methods/s3.php:387
664
+ msgid "Examples of S3-compatible storage providers:"
665
+ msgstr "Παραδείγματα για S3-συμβατούς παροχείς αποθήκευσης:"
666
+
667
+ #: methods/googledrive.php:207
668
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
669
+ msgstr "Το ανέβασμα των αρχείων αναμένεται να αποτύχει: το όριο του%s για κάθε ένα αρχείο είναι %s ενώ το αρχείο αυτό είναι %s Gb (%d bytes)"
670
+
671
+ #: backup.php:736
672
+ msgid "The backup directory is not writable - the database backup is expected to shortly fail."
673
+ msgstr "Ο φάκελος αποθήκευσης των αντιγράφων ασφαλείας δεν είναι εγγράψιμος - η διαδικασία λήψης αντιγράφου ασφαλείας της βάσης δεδομένων αναμένεται σύντομα να αποτύχει."
674
+
675
+ #: admin.php:2859
676
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
677
+ msgstr "Δεν θα διαγράψει οποιαδήποτε αρχεία μετά την αποσυσκευασία τους, επειδή δεν υπήρχε χώρος αποθήκευσης στο σύννεφο για αυτό το αντίγραφο ασφαλείας"
678
+
679
+ #: admin.php:2552
680
+ msgid "(%d archive(s) in set)."
681
+ msgstr "(%d αρχείο(α) στο σετ)."
682
+
683
+ #: admin.php:2555
684
+ msgid "You appear to be missing one or more archives from this multi-archive set."
685
+ msgstr "Φαίνεται ότι σας λείπει ένα ή περισσότερα αρχεία από αυτό το σύνολο πολλαπλών αρχείων."
686
+
687
+ #: admin.php:2302
688
+ msgid "Split archives every:"
689
+ msgstr "Διαχώρισε τα αρχεία κάθε:"
690
+
691
+ #: admin.php:2123
692
+ msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
693
+ msgstr "Εάν εισαγάγετε πολλαπλά αρχεία/φακέλους διαχωρίστε τα με κόμματα. Μπορείτε να χρησιμοποιήσετε ένα * στο τέλος της κάθε καταχώρησης ως μπαλαντέρ."
694
+
695
+ #: admin.php:89
696
+ msgid "Error: the server sent an empty response."
697
+ msgstr "Σφάλμα: ο διακομιστής έστειλε κενή απάντηση."
698
+
699
+ #: admin.php:90
700
+ msgid "Warnings:"
701
+ msgstr "Προειδοποιήσεις:"
702
+
703
+ #: admin.php:92
704
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
705
+ msgstr "Σφάλμα: ο διακομιστής μας έστειλε μια απάντηση (JSON) την οποία δεν μπορούμε να καταλάβουμε."
706
+
707
+ #: admin.php:1346
708
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
709
+ msgstr "Η εγκατάσταση σας του WordPress έχει παλιούς φακέλους από την κατάσταση προτού να γίνει επαναφορά/μετακίνηση (τεχνικές πληροφορίες: αυτοί θα έχουν το επίθεμα -old). Πατήστε αυτό το κουμπί για να τους διαγράψετε (αφού έχετε επιβεβαιώσει ότι η επαναφορά λειτουργεί επιτυχώς)."
710
+
711
+ #: admin.php:1139
712
+ msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
713
+ msgstr "Αυτό μοιάζει να είναι αρχείο που δημιουργήθηκε με το UpdraftPlus, αλλά αυτή η εγκατάσταση δεν μπορεί να αποφανθεί για αυτό το είδος του αντικειμένου:%s. Μήπως θα πρέπει να εγκαταστήσετε κάποιο πρόσθετο;"
714
+
715
+ #: admin.php:612
716
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
717
+ msgstr "Έχει γίνει επεξεργασία των αρχείων των αντιγράφων ασφαλείας επιτυχώς. Τώρα πατήστε ξανά Επαναφορά για να συνεχίσετε."
718
+
719
+ #: admin.php:614
720
+ msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
721
+ msgstr "Τα αρχεία αντιγράφων ασφαλείας έχουν υποστεί επεξεργασία, αλλά υπάρχουν κάποιες προειδοποιήσεις. Αν όλα είναι εντάξει, πατήστε ξανά Επαναφορά για να συνεχίσετε. Σε αντίθετη περίπτωση, ακυρώστε τη διαδικασία και διορθώστε τυχόν προβλήματα πρώτα."
722
+
723
+ #: admin.php:616
724
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
725
+ msgstr "Τα αρχεία αντιγράφων ασφαλείας έχουν υποστεί επεξεργασία, αλλά υπάρχουν κάποια λάθη. Θα πρέπει να ακυρώσετε τη διαδικασία και να διορθώσετε τυχόν προβλήματα πριν προσπαθήσετε ξανά."
726
+
727
+ #: admin.php:496
728
+ msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
729
+ msgstr "Το αρχείο αντιγράφου ασφαλείας για αυτό το αρχείο δεν μπορεί να βρεθεί. Η απομακρυσμένη τοποθεσία αποθήκευσης που χρησιμοποιείτε (%s) δεν μας επιτρέπει να ανακτήσουμε τα αρχεία. Για να εκτελέσετε οποιαδήποτε επαναφορά με τη χρήση του UpdraftPlus, θα πρέπει να αποκτήσετε ένα αντίγραφο αυτού του αρχείου και να το τοποθετήστε το μέσα στον ενεργό φάκελο του UpdraftPlus"
730
+
731
+ #: admin.php:549
732
+ msgid "No such backup set exists"
733
+ msgstr "Δεν υπάρχει τέτοιο αντίγραφο ασφαλείας."
734
+
735
+ #: admin.php:587
736
+ msgid "File not found (you need to upload it): %s"
737
+ msgstr "Το αρχείο δεν βρέθηκε (πρέπει να το μεταφορτώσετε): %s"
738
+
739
+ #: admin.php:589
740
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
741
+ msgstr "Το αρχείο βρέθηκε αλλά το μέγεθός του είναι μηδενικό (πρέπει να το μεταφορτώσετε ξανά): %s"
742
+
743
+ #: admin.php:593
744
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
745
+ msgstr "Το αρχείο (%s) βρέθηκε αλλά έχει διαφορετικό μέγεθος (%s) απ' ό,τι αναμενόταν (%s) - ενδέχεται να είναι κατεστραμμένο."
746
+
747
+ #: admin.php:607
748
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
749
+ msgstr "Φαίνεται ότι λείπουν τα παρακάτω αρχεία από το αντίγραφο ασφαλείας πολλαπλών αρχείων: %s"
750
+
751
+ #: restorer.php:229
752
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
753
+ msgstr "Απέτυχε η μετακίνηση του φακέλου (ελέγξτε τα δικαιώματα των αρχείων σας και τον ελεύθερο χώρο στο δίσκο): %s"
754
+
755
+ #: restorer.php:446
756
+ msgid "This directory already exists, and will be replaced"
757
+ msgstr "Αυτός ο φάκελος υπάρχει ήδη και θα αντικατασταθεί"
758
+
759
+ #: restorer.php:220
760
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
761
+ msgstr "Απέτυχε η μετακίνηση του αρχείου (ελέγξτε τα δικαιώματα των αρχείων σας και τον ελεύθερο χώρο στο δίσκο): %s "
762
+
763
+ #: restorer.php:28
764
+ msgid "Moving unpacked backup into place..."
765
+ msgstr "Μετακίνηση του πακεταρισμένου αντιγράφου ασφαλείας στη θέση του..."
766
+
767
+ #: backup.php:1449 backup.php:1685
768
+ msgid "Failed to open the zip file (%s) - %s"
769
+ msgstr "Αποτυχία ανοίγματος του αρχείου zip (%s) - %s"
770
+
771
+ #: addons/morefiles.php:79
772
+ msgid "WordPress root directory server path: %s"
773
+ msgstr "Η ριζική διαδρομή του Wordpress στον εξυπηρετητή είναι: %s"
774
+
775
+ #: methods/s3.php:395
776
+ msgid "... and many more!"
777
+ msgstr "... και πολλά περισσότερα!"
778
+
779
+ #: methods/s3.php:420
780
+ msgid "%s end-point"
781
+ msgstr "%s τελικό σημείο "
782
+
783
+ #: admin.php:2807
784
+ msgid "File is not locally present - needs retrieving from remote storage"
785
+ msgstr "Το αρχείο δεν είναι αποθηκευμένο τοπικά - πρέπει να ανακτηθεί από την απομακρυσμένη τοποθεσία αποθήκευσης"
786
+
787
+ #: methods/s3generic.php:21 methods/s3generic.php:30
788
+ msgid "S3 (Compatible)"
789
+ msgstr "S3 (Συμβατό)"
790
+
791
+ #: admin.php:2779
792
+ msgid "Final checks"
793
+ msgstr "Τελευταίοι έλεγχοι"
794
+
795
+ #: admin.php:2802
796
+ msgid "Looking for %s archive: file name: %s"
797
+ msgstr "Αναζήτηση για %s αρχείο: όνομα αρχείου: %s"
798
+
799
+ #: admin.php:2308
800
+ msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
801
+ msgstr "Επιλέξτε αυτό για να διαγράψετε όλα τα περιττά αρχεία αντιγράφων ασφαλείας από το διακομιστή σας μετά το τέλος της δημιουργίας αντιγράφων (δηλαδή αν καταργήσετε την επιλογή αυτή, τότε όλα τα αρχεία που αποστέλλονται από απόσταση θα παραμείνουν και σε τοπικό επίπεδο και τυχόν αρχεία που φυλάσσονται σε τοπικό επίπεδο δεν θα είναι εντός των ορίων διατήρησης)."
802
+
803
+ #: admin.php:2190
804
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
805
+ msgstr "Αφήστε τα κρυπτογραφημένα αρχεία της βάσης δεδομένων (db.gz.crypt αρχεία) εδώ για να ανεβάσετε για αποκρυπτογράφηση"
806
+
807
+ #: admin.php:2115
808
+ msgid "Your wp-content directory server path: %s"
809
+ msgstr "Η διαδρομή του φακέλου wp-content στον εξυπηρετητή σας είναι: %s"
810
+
811
+ #: admin.php:102
812
+ msgid "Raw backup history"
813
+ msgstr "Ανεπεξέργαστο ιστορικό αντιγράφων ασφαλείας"
814
+
815
+ #: admin.php:1676
816
+ msgid "Show raw backup and file list"
817
+ msgstr "Προβολή ανεπεξέργαστου ιστορικού αντιγράφων ασφαλείας και λίστας αρχείων"
818
+
819
+ #: admin.php:88
820
+ msgid "Processing files - please wait..."
821
+ msgstr "Επεξεργασία αρχείων - παρακαλώ περιμένετε..."
822
+
823
+ #: admin.php:1474
824
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
825
+ msgstr "Η εγκατάσταση σας του WordPress έχει ένα πρόβλημα με την έξοδο κενού περιεχομένου. Αυτό μπορεί να καταστρέψει τα αντίγραφα ασφαλείας που θα κατεβάσετε από εδώ."
826
+
827
+ #: admin.php:1474
828
+ msgid "Please consult this FAQ for help on what to do about it."
829
+ msgstr "Παρακαλούμε συμβουλευτείτε τις Συχνές Ερωτήσεις για βοήθεια σχετικά με το τι πρέπει να γίνει με αυτό."
830
+
831
+ #: admin.php:914
832
+ msgid "Failed to open database file."
833
+ msgstr "Αποτυχία ανοίγματος του αρχείου της βάσης δεδομένων."
834
+
835
+ #: admin.php:896
836
+ msgid "Failed to write out the decrypted database to the filesystem."
837
+ msgstr "Αποτυχία εγγραφής της αποκρυπτογραφημένης βάσης δεδομένων στο σύστημα αρχείων. "
838
+
839
+ #: admin.php:717
840
+ msgid "Known backups (raw)"
841
+ msgstr "Γνωστά αντίγραφα ασφαλείας (ανεπεξέργαστα)"
842
+
843
+ #: restorer.php:537
844
+ msgid "Using directory from backup: %s"
845
+ msgstr "Χρήση καταλόγου από αντίγραφα ασφαλείας: %s"
846
+
847
+ #: restorer.php:489
848
+ msgid "Files found:"
849
+ msgstr "Αρχεία που βρέθηκαν:"
850
+
851
+ #: restorer.php:495
852
+ msgid "Unable to enumerate files in that directory."
853
+ msgstr "Αδυναμία απαρίθμησης των αρχείων σε αυτόν τον κατάλογο."
854
+
855
+ #: restorer.php:844
856
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
857
+ msgstr "Η ζητηθείσα μηχανή του πίνακα (%s) δεν είναι παρούσα - αλλαγή σε MyISAM."
858
+
859
+ #: restorer.php:855
860
+ msgid "Restoring table (%s)"
861
+ msgstr "Επαναφορά πίνακα (%s)"
862
+
863
+ #: restorer.php:297
864
+ msgid "An existing unremoved backup from a previous restore exists: %s"
865
+ msgstr "Υπάρχει ένα αντίγραφο ασφαλείας που δεν έχει αφαιρεθεί από μια προηγούμενη επαναφορά:%s"
866
+
867
+ #: backup.php:1502 backup.php:1695
868
+ msgid "A zip error occurred - check your log for more details."
869
+ msgstr "Συνέβη ένα λάθος στη διαδικασία zip - ελέγξτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες. "
870
+
871
+ #: addons/migrator.php:44
872
+ msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
873
+ msgstr "Αυτό μοιάζει με μια μετανάστευση σελίδας (η δημιουργία αντιγράφων ασφαλείας έγινε από μια ιστοσελίδα με μια διαφορετική διεύθυνση/URL), αλλά δεν επιλέξατε τη δυνατότητα να αναζητήσετε και να αντικαταστήσετε τη βάση δεδομένων. Αυτό είναι συνήθως ένα λάθος."
874
+
875
+ #: restorer.php:930
876
+ msgid "An error occured on the first CREATE TABLE command - aborting run"
877
+ msgstr "Συνέβη ένα λάθος στην πρώτη εντολή ΔΗΜΙΟΥΡΓΙΑΣ ΠΙΝΑΚΑ - τερματισμός διαδικασίας"
878
+
879
+ #: admin.php:2828
880
+ msgid "file is size:"
881
+ msgstr "μέγεθος αρχείου:"
882
+
883
+ #: admin.php:2519
884
+ msgid "database"
885
+ msgstr "βάση δεδομένων"
886
+
887
+ #: admin.php:300 admin.php:1327
888
+ msgid "Go here for more information."
889
+ msgstr "Πηγαίνετε εδώ για περισσότερες πληροφορίες."
890
+
891
+ #: admin.php:1538
892
+ msgid "Downloading / preparing backup files..."
893
+ msgstr "Κατέβασμα / προετοιμασία αρχείων αντιγράφων ασφαλείας..."
894
+
895
+ #: admin.php:87
896
+ msgid "Some files are still downloading or being processed - please wait."
897
+ msgstr "Κάποια αρχεία ακόμα κατεβαίνουν ή υπόκεινται σε επεξεργασία - παρακαλώ περιμένετε."
898
+
899
+ #: admin.php:949 admin.php:957
900
+ msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
901
+ msgstr "Αυτό το σετ αντιγράφων ασφαλείας είναι από διαφορετικό ιστοσελίδα - αυτή δεν είναι μια διαδικασία επαναφοράς αλλά είναι διαδικασία μετανάστευσης. Χρειάζεται και το πρόσθετο Migrator για να γίνει αυτή η λειτουργία."
902
+
903
+ #: methods/ftp.php:44 methods/ftp.php:127
904
+ msgid "%s login failure"
905
+ msgstr "%s αποτυχία εισόδου"
906
+
907
+ #: methods/ftp.php:63
908
+ msgid "%s upload failed"
909
+ msgstr "%s αποτυχία ανεβάσματος αρχείων"
910
+
911
+ #: addons/fixtime.php:120 addons/fixtime.php:129
912
+ msgid "Enter in format HH:MM (e.g. 14:22)."
913
+ msgstr "Εισάγετε με τη μορφή ΩΩ:ΛΛ (πχ. 14:22)."
914
+
915
+ #: addons/fixtime.php:120 addons/fixtime.php:129
916
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
917
+ msgstr "Η ζώνη ώρας είναι αυτή που χρησιμοποιείται από το Wordpress, στις Ρυθμίσεις -> Γενικά."
918
+
919
+ #: methods/dropbox.php:51
920
+ msgid "Dropbox error: %s (see log file for more)"
921
+ msgstr "Λάθος του Dropbox: %s (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
922
+
923
+ #: methods/dropbox.php:173
924
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
925
+ msgstr "Δεν φαίνεται να έχετε πιστοποιηθεί με το %s (παράλληλα γίνεται διαγραφή)"
926
+
927
+ #: methods/dropbox.php:181
928
+ msgid "Failed to access %s when deleting (see log file for more)"
929
+ msgstr "Αδυναμία πρόσβασης στο %s κατά τη διαγραφή (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
930
+
931
+ #: methods/dropbox.php:211
932
+ msgid "You do not appear to be authenticated with %s"
933
+ msgstr "Δεν φαίνεται να έχετε πιστοποιηθεί με το %s"
934
+
935
+ #: methods/cloudfiles.php:344
936
+ msgid "Error - no such file exists at %s"
937
+ msgstr "Λάθος - δεν υπάρχει αυτό το αρχείο στο %s"
938
+
939
+ #: methods/cloudfiles.php:348
940
+ msgid "Error - failed to download the file from %s"
941
+ msgstr "Λάθος - αποτυχία κατεβάσματος του αρχείου από %s "
942
+
943
+ #: methods/cloudfiles.php:179
944
+ msgid "%s error - failed to upload file"
945
+ msgstr "%s λάθος - αποτυχία ανεβάσματος του αρχείου"
946
+
947
+ #: methods/cloudfiles.php:318 methods/cloudfiles.php:335
948
+ msgid "%s Error"
949
+ msgstr "%s Λάθος"
950
+
951
+ #: methods/cloudfiles.php:53 methods/cloudfiles.php:57
952
+ #: methods/cloudfiles.php:209 methods/cloudfiles.php:262
953
+ #: methods/cloudfiles.php:266
954
+ msgid "%s authentication failed"
955
+ msgstr "%s αποτυχία πιστοποίησης"
956
+
957
+ #: methods/cloudfiles.php:169
958
+ msgid "%s error - failed to re-assemble chunks"
959
+ msgstr "%s λάθος - αποτυχία επαναδημιουργίας των κομματιών"
960
+
961
+ #: methods/googledrive.php:391
962
+ msgid "%s error: zero-size file was downloaded"
963
+ msgstr "%s λάθος - έγινε κατέβασμα αρχείου με μηδενικό μέγεθος"
964
+
965
+ #: restorer.php:483 admin.php:887 admin.php:976 admin.php:981 admin.php:1132
966
+ #: admin.php:1139
967
+ msgid "Error: %s"
968
+ msgstr "Λάθος: %s"
969
+
970
+ #: admin.php:2325
971
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
972
+ msgstr "Ο φάκελος που υπεδείχθη για την αποθήκευση των αντιγράφων ασφαλείας υπάρχει αλλά <b>δεν είναι</b> εγγράψιμος."
973
+
974
+ #: admin.php:2323
975
+ msgid "Backup directory specified does <b>not</b> exist."
976
+ msgstr "Ο φάκελος που υπεδείχθη για την αποθήκευση των αντιγράφων ασφαλείας <b>δεν</b> υπάρχει. "
977
+
978
+ #: admin.php:949 admin.php:957 admin.php:1874 admin.php:2027
979
+ msgid "Warning: %s"
980
+ msgstr "Προειδοποίηση: %s"
981
+
982
+ #: admin.php:1417
983
+ msgid "Last backup job run:"
984
+ msgstr "Η τελευταία δημιουργία αντιγράφων ασφαλείας έγινε:"
985
+
986
+ #: backup.php:1200 backup.php:1212
987
+ msgid "%s: unreadable file - could not be backed up"
988
+ msgstr "%s: το αρχείο είναι μη αναγνώσιμο - δεν μπορεί να δημιουργηθεί αντίγραφο ασφαλείας γι' αυτό"
989
+
990
+ #: backup.php:1463
991
+ msgid "A very large file was encountered: %s (size: %s Mb)"
992
+ msgstr "Βρέθηκε ένα πολύ μεγάλο αρχείο: %s (μέγεθος: %s Mb)"
993
+
994
+ #: backup.php:772
995
+ msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
996
+ msgstr "Ο πίνακας %s έχει πάρα πολλές γραμμές (%s) - ελπίζουμε ότι η εταιρεία που παρέχει τον εξυπηρετητή για τη φιλοξενία της σελίδας σας να παρέχει επαρκείς πόρους για να συμπεριλάβουμε τον πίνακα αυτό στο αντίγραφο ασφαλείας"
997
+
998
+ #: backup.php:843
999
+ msgid "An error occurred whilst closing the final database file"
1000
+ msgstr "Συνέβη ένα λάθος κλείνοντας το τελευταίο αρχείο της βάσης δεδομένων"
1001
+
1002
+ #: backup.php:439
1003
+ msgid "Warnings encountered:"
1004
+ msgstr "Προειδοποιήσεις που απαντήθηκαν:"
1005
+
1006
+ #: updraftplus.php:1509
1007
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
1008
+ msgstr "Η δημιουργία αντιγράφων ασφαλείας τελικώς πέτυχε (με προειδοποιήσεις) και είναι πλέον πλήρης"
1009
+
1010
+ #: updraftplus.php:573
1011
+ msgid "Your free disk space is very low - only %s Mb remain"
1012
+ msgstr "ο ελεύθερος χώρος στο δίσκο σας είναι πολύ λίγος - παραμένουν μόνο %s Mb "
1013
+
1014
+ #: addons/migrator.php:516
1015
+ msgid "<strong>Search and replacing table:</strong> %s"
1016
+ msgstr "<strong>Αναζήτηση και αντικατάσταση πίνακα:</strong> %s"
1017
+
1018
+ #: addons/migrator.php:102
1019
+ msgid "Site Name:"
1020
+ msgstr "Όνομα Ιστοσελίδας:"
1021
+
1022
+ #: addons/migrator.php:104
1023
+ msgid "Site Domain:"
1024
+ msgstr "Τομέας Ιστοσελίδας:"
1025
+
1026
+ #: addons/migrator.php:121
1027
+ msgid "Migrated site (from UpdraftPlus)"
1028
+ msgstr "Ιστοσελίδα που έχει μεταναστεύσει (από το UpdraftPlus)"
1029
+
1030
+ #: addons/migrator.php:150
1031
+ msgid "<strong>ERROR</strong>: Site URL already taken."
1032
+ msgstr "<strong> ΣΦΑΛΜΑ </strong>: Το URL της ιστοσελίδας υπάρχει ήδη."
1033
+
1034
+ #: addons/migrator.php:157
1035
+ msgid "New site:"
1036
+ msgstr "Νέα ιστοσελίδα:"
1037
+
1038
+ #: addons/migrator.php:89
1039
+ msgid "Information needed to continue:"
1040
+ msgstr "Απαιτούνται πληροφορίες για να συνεχιστεί η διαδικασία:"
1041
+
1042
+ #: addons/migrator.php:90
1043
+ msgid "Please supply the following information:"
1044
+ msgstr "Παρακαλούμε δώστε τις ακόλουθες πληροφορίες:"
1045
+
1046
+ #: addons/migrator.php:93
1047
+ msgid "Enter details for where this new site is to live within your multisite install:"
1048
+ msgstr "Εισάγετε τα στοιχεία για το πού αυτή η νέα ιστοσελίδα θα υπάρχει μέσα στην με πολλές ιστοσελίδες εγκατάστασή σας:"
1049
+
1050
+ #: addons/migrator.php:48
1051
+ msgid "Processed plugin:"
1052
+ msgstr "Επεξεργασία πρόσθετου:"
1053
+
1054
+ #: addons/migrator.php:56
1055
+ msgid "Network activating theme:"
1056
+ msgstr "Ενεργοποίηση θέματος από το δίκτυο:"
1057
+
1058
+ #: addons/sftp.php:27
1059
+ msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
1060
+ msgstr "Ορισμένοι διακομιστές διαφημίζουν ως διαθέσιμη το κρυπτογραφημένο FTP αλλά συμβαίνει στη συνέχεια time-out (μετά από αρκετή ώρα) όταν επιχειρείτε να το χρησιμοποιήσετε. Αν συμβαίνει αυτό σε σας πηγαίνετε στο \"Επιλογές για Προχωρημένους\" (παρακάτω) και απενεργοποιήσετε το SSL από εκεί."
1061
+
1062
+ #: addons/sftp.php:64
1063
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
1064
+ msgstr "Ελέγξτε τα δικαιώματα των αρχείων σας: Αδυναμία επιτυχούς δημιουργίας φακέλου και εισόδου σ' αυτόν:"
1065
+
1066
+ #: methods/dropbox.php:273
1067
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1068
+ msgstr "Η εγκατάσταση PHP του εξυπηρετητή σας δεν περιελάμβανε μια απαραίτητη μονάδα (%s). Παρακαλούμε επικοινωνήστε με την υποστήριξη του παρόχου του εξυπηρετητή σας και ζητήστε να το ενεργοποιήσουν."
1069
+
1070
+ #: methods/s3.php:537
1071
+ msgid "Please check your access credentials."
1072
+ msgstr "Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας."
1073
+
1074
+ #: methods/s3.php:512
1075
+ msgid "The error reported by %s was:"
1076
+ msgstr "Το λάθος που αναφέρθηκε από το %s ήταν:"
1077
+
1078
+ #: restorer.php:553
1079
+ msgid "Please supply the requested information, and then continue."
1080
+ msgstr "Παρακαλούμε δώστε τις ζητηθείσες πληροφορίες και μετά συνεχίστε."
1081
+
1082
+ #: restorer.php:560
1083
+ msgid "New table prefix:"
1084
+ msgstr "Νέα πρόθεμα πίνακα:"
1085
+
1086
+ #: restorer.php:911
1087
+ msgid "Cannot drop tables, so deleting instead (%s)"
1088
+ msgstr "Αδυναμία ενσωμάτωσης των πινάκων, αντί αυτού γίνεται διαγραφή (%s)"
1089
+
1090
+ #: restorer.php:730 admin.php:981
1091
+ msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
1092
+ msgstr "Για να εισαγάγετε μια τυπική ιστοσελίδα του WordPress σε μια εγκατάσταση πολλαπλών ιστοσελίδων απαιτείται τόσο το multisite όσο και το migrator πρόσθετο."
1093
+
1094
+ #: restorer.php:736 admin.php:989
1095
+ msgid "Site information:"
1096
+ msgstr "Πληροφορίες ιστοσελίδας:"
1097
+
1098
+ #: restorer.php:906
1099
+ msgid "Cannot create new tables, so skipping this command (%s)"
1100
+ msgstr "Αδυναμία δημιουργίας νέων πινάκων κατά συνέπεια παραλείπεται αυτή τη εντολή (%s)"
1101
+
1102
+ #: restorer.php:680 restorer.php:695 admin.php:1327
1103
+ msgid "Warning:"
1104
+ msgstr "Προειδοποίηση:"
1105
+
1106
+ #: restorer.php:680
1107
+ msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
1108
+ msgstr "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια για τη δημιουργία πινάκων. Θα γίνει προσπάθεια επαναφοράς απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να λειτουργήσει για την περίπτωση που α) κάνετε επαναφορά από μια έκδοση του WordPress με την ίδια τη δομή της βάσης δεδομένων και β) η εισαγόμενη βάση δεδομένων σας δεν περιέχει πίνακες που δεν είναι ήδη υπάρχοντες στην ιστοσελίδα εισαγωγής."
1109
+
1110
+ #: restorer.php:695
1111
+ msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
1112
+ msgstr "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια για τη διαγραφή πινάκων. Θα γίνει προσπάθεια επαναφοράς απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να λειτουργήσει για την περίπτωση που κάνετε επαναφορά από μια έκδοση του WordPress με την ίδια τη δομή της βάσης δεδομένων "
1113
+
1114
+ #: restorer.php:35 admin.php:976
1115
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
1116
+ msgstr "Γίνεται εκτέλεση της διαδικασίας σε μια εγκατάσταση πολλαπλών ιστοσελίδων του Wordpress αλλά το αντίγραφο ασφαλείας σας δεν είναι από μια τέτοια εγκατάσταση. "
1117
+
1118
+ #: admin.php:2791
1119
+ msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
1120
+ msgstr "Παράκαμψη στην επαναφορά του πυρήνα του WordPress κατά την εισαγωγή μιας ιστοσελίδας σε μια εγκατάσταση πολλαπλών ιστοσελίδων. Αν είχατε κάποια αναγκαία αρχεία στο φάκελο του WordPress, τότε θα πρέπει να τα προσθέσετε χειροκίνητα ξανά από το αρχείο zip."
1121
+
1122
+ #: admin.php:2396
1123
+ msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1124
+ msgstr "Η εγκατάσταση PHP του εξυπηρετητή σας δεν περιελαμβάνει μια<strong>απαραίτητη</strong> (για %s) μονάδα (%s). Παρακαλούμε επικοινωνήστε με την υποστήριξη του παρόχου του εξυπηρετητή σας και ζητήστε να το ενεργοποιήσουν."
1125
+
1126
+ #: admin.php:2396
1127
+ msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
1128
+ msgstr "Οι επιλογές σας είναι: 1) Εγκατάσταση/ενεργοποίηση %s ή 2) Αλλάζοντας εταιρίες φιλοξενίας ιστοσελίδων -%s είναι ένα τυπικό συστατικό της PHP και απαιτείται από όλα τα πρόσθετα δημιουργίας αντιγράφων ασφαλείας στο σύννεφο που γνωρίζουμε."
1129
+
1130
+ #: admin.php:116
1131
+ msgid "Close"
1132
+ msgstr "Έξοδος"
1133
+
1134
+ #: admin.php:83
1135
+ msgid "Unexpected response:"
1136
+ msgstr "Απροσδόκητη απάντηση:"
1137
+
1138
+ #: admin.php:2144
1139
+ msgid "To send to more than one address, separate each address with a comma."
1140
+ msgstr "Για να γίνει αποστολή σε περισσότερες από μία διευθύνσεις παρακαλούμε χωρίστε κάθε διεύθυνση με κόμμα."
1141
+
1142
+ #: admin.php:101
1143
+ msgid "PHP information"
1144
+ msgstr "πληροφορίες PHP"
1145
+
1146
+ #: admin.php:1655
1147
+ msgid "show PHP information (phpinfo)"
1148
+ msgstr "εμφάνιση πληροφοριών PHP (phpinfo)"
1149
+
1150
+ #: admin.php:1668
1151
+ msgid "zip executable found:"
1152
+ msgstr "βρέθηκε εκτελέσιμο αρχείο zip:"
1153
+
1154
+ #: admin.php:1599
1155
+ msgid "Migrate Site"
1156
+ msgstr "Μετανάστευση Ιστοσελίδας"
1157
+
1158
+ #: admin.php:1603
1159
+ msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
1160
+ msgstr "Η μετανάστευση των δεδομένων από μια άλλη ιστοσελίδα γίνεται με το κουμπί \"Επαναφορά\". Μια «μετανάστευση» είναι τελικά το ίδιο πράγμα με την επαναφορά αλλά με τη χρήση αντιγράφων ασφαλείας των αρχείων που έχουν εισαχθεί από μια άλλη ιστοσελίδα. Το UpdraftPlus τροποποιεί τη λειτουργία επαναφοράς με τέτοιο τρόπο ώστε να προσαρμόσει τα δεδομένα των αντιγράφων ασφαλείας στη νέα ιστοσελίδα."
1161
+
1162
+ #: admin.php:1603
1163
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
1164
+ msgstr "<a href=\"%s\">Διαβάστε αυτό το άρθρο για να δείτε βήμα-βήμα πως γίνεται η διαδικασία.</a>"
1165
+
1166
+ #: admin.php:1605
1167
+ msgid "Do you want to migrate or clone/duplicate a site?"
1168
+ msgstr "Θέλετε να μεταναστεύσετε ή να κλωνοποιήσετε/αντιγράψετε μια ιστοσελίδα;"
1169
+
1170
+ #: admin.php:1605
1171
+ msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1172
+ msgstr "Τότε δοκιμάστε το πρόσθετο \"Migrator\". Μετά από την πρώτη κιόλας χρήση θα έχετε κερδίσει την τιμή αγοράς σε σχέση με το χρόνο που απαιτείται για να αντιγράψετε την ιστοσελίδα με το χέρι."
1173
+
1174
+ #: admin.php:1605
1175
+ msgid "Get it here."
1176
+ msgstr "Πάρτε το εδώ."
1177
+
1178
+ #: admin.php:1527
1179
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
1180
+ msgstr "Διαγραφή... παρακαλώ περιμένετε όσο χρόνο απαιτείται για να ολοκληρωθεί η επικοινωνία με το χώρο απομακρυσμένης αποθήκευσης."
1181
+
1182
+ #: admin.php:1526
1183
+ msgid "Also delete from remote storage"
1184
+ msgstr "Διαγραφή επίσης και από το χώρο απομακρυσμένης αποθήκευσης. "
1185
+
1186
+ #: admin.php:1462
1187
+ msgid "Latest UpdraftPlus.com news:"
1188
+ msgstr "Τελευταία νέα του UpdraftPlus.com:"
1189
+
1190
+ #: admin.php:1433
1191
+ msgid "Clone/Migrate"
1192
+ msgstr "Κλωνοποίηση/Μετανάστευση"
1193
+
1194
+ #: admin.php:1323
1195
+ msgid "News"
1196
+ msgstr "Νέα"
1197
+
1198
+ #: admin.php:1323
1199
+ msgid "Premium"
1200
+ msgstr "Premium"
1201
+
1202
+ #: admin.php:708
1203
+ msgid "Local archives deleted: %d"
1204
+ msgstr "Τα τοπικά αποθηκευμένα αρχεία διεγράφησαν: %d"
1205
+
1206
+ #: admin.php:709
1207
+ msgid "Remote archives deleted: %d"
1208
+ msgstr "Τα αποθηκευμένα στο χώρο απομακρυσμένης αποθήκευσης αρχεία διεγράφησαν: %d "
1209
+
1210
+ #: backup.php:91
1211
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
1212
+ msgstr "%s - δεν μπορεί να δημιουργηθεί αντίγραφο ασφαλείας αυτής της οντότητας, ο αντίστοιχος φάκελος δεν υπάρχει (%s)"
1213
+
1214
+ #: admin.php:626
1215
+ msgid "Backup set not found"
1216
+ msgstr "Το σετ αντιγράφων ασφαλείας δε βρέθηκε"
1217
+
1218
+ #: admin.php:707
1219
+ msgid "The backup set has been removed."
1220
+ msgstr "Το σετ αντιγράφων ασφαλείας έχει μετακινηθεί."
1221
+
1222
+ #: updraftplus.php:2089
1223
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
1224
+ msgstr "Εγγραφείτε στο ιστολόγιο του UpdraftPlus για να λαμβάνετε ενημερωμένες ειδήσεις και προσφορές"
1225
+
1226
+ #: updraftplus.php:2089
1227
+ msgid "Blog link"
1228
+ msgstr "Δεσμός ιστολογίου"
1229
+
1230
+ #: updraftplus.php:2089
1231
+ msgid "RSS link"
1232
+ msgstr "Δεσμός RSS"
1233
+
1234
+ #: methods/s3.php:351 methods/ftp.php:148 addons/webdav.php:289
1235
+ #: addons/sftp.php:326
1236
+ msgid "Testing %s Settings..."
1237
+ msgstr "Δοκιμή %s Ρυθμίσεων..."
1238
+
1239
+ #: admin.php:1490
1240
+ msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
1241
+ msgstr "Ή, μπορείτε να τα τοποθετήσετε με το χέρι στο φάκελο του UpdraftPlus (συνήθως wp-content/updraft), π.χ. μέσω FTP, και στη συνέχεια να χρησιμοποιήστε το σύνδεσμο \"επανεξέταση\" πιο πάνω."
1242
+
1243
+ #: admin.php:316
1244
+ msgid "Notice"
1245
+ msgstr "Ειδοποίηση"
1246
+
1247
+ #: admin.php:316
1248
+ msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
1249
+ msgstr "Η λειτουργία αποσφαλμάτωσης του UpdraftPlus είναι σε λειτουργία. Μπορείτε να δείτε πληροφορίες αποσφαλμάτωσης σε αυτή τη σελίδα όχι μόνο για το UpdraftPlus αλλά και για οποιοδήποτε άλλο πρόσθετο έχετε εγκαταστήσει. Παρακαλούμε βεβαιωθείτε ότι η ειδοποίηση που βλέπετε είναι από το UpdraftPlus προτού θέσετε κάποιο αίτημα υποστήριξης."
1250
+
1251
+ #: admin.php:321
1252
+ msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
1253
+ msgstr "Η κρυφή μνήμη του W3 Total Cache είναι ενεργή. Αυτό είναι γνωστό ότι παρουσιάζει μια δυσλειτουργία που καθιστά δύσκολες ή αδύνατες όλες τις προγραμματισμένες εργασίες (συμπεριλαμβανομένων των εργασιών δημιουργίας αντιγράφων ασφαλείας)."
1254
+
1255
+ #: admin.php:321
1256
+ msgid "Go here to turn it off."
1257
+ msgstr "Πηγαίνετε εδώ για να το απενεργοποιήσετε."
1258
+
1259
+ #: admin.php:321
1260
+ msgid "<a href=\"%s\">Go here</a> for more information."
1261
+ msgstr "<a href=\"%s\">Πηγαίνετε εδώ</a> για περισσότερες πληροφορίες."
1262
+
1263
+ #: backup.php:422
1264
+ msgid "Errors encountered:"
1265
+ msgstr "Λάθη που προέκυψαν:"
1266
+
1267
+ #: admin.php:80
1268
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
1269
+ msgstr "Γίνεται νέα ανίχνευση (γίνεται έρευνα για αντίγραφα ασφαλείας που έχετε ανεβάσει το χέρι στο εσωτερικό σημείο αποθήκευσης αντιγράφων ασφαλείας)..."
1270
+
1271
+ #: admin.php:86
1272
+ msgid "Begun looking for this entity"
1273
+ msgstr "Έχει γίνει έναρξη αναζήτησης αυτής της οντότητας"
1274
+
1275
+ #: addons/migrator.php:455
1276
+ msgid "SQL update commands run:"
1277
+ msgstr "Εκτέλεση εντολών αναβάθμισης SQL:"
1278
+
1279
+ #: admin.php:91
1280
+ msgid "Errors:"
1281
+ msgstr "Λάθη:"
1282
+
1283
+ #: addons/migrator.php:457
1284
+ msgid "Time taken (seconds):"
1285
+ msgstr "Χρόνος που χρειάστηκε (δευτερόλεπτα):"
1286
+
1287
+ #: addons/migrator.php:545
1288
+ msgid "rows: %d"
1289
+ msgstr "γραμμές: %d"
1290
+
1291
+ #: addons/migrator.php:648
1292
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
1293
+ msgstr "\"%s\" δεν έχει πρωτεύον κλειδί, γίνεται χειροκίνητη αλλαγή που απαιτείται για τη γραμμή %s."
1294
+
1295
+ #: addons/dropbox-folders.php:21
1296
+ msgid "Store at"
1297
+ msgstr "Αποθήκευση σε"
1298
+
1299
+ #: addons/migrator.php:363
1300
+ msgid "Nothing to do: the site URL is already: %s"
1301
+ msgstr "Δεν υπάρχει κάτι για να γίνει: το URL της ιστοσελίδας είναι ήδη: %s"
1302
+
1303
+ #: addons/migrator.php:368 addons/migrator.php:371
1304
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
1305
+ msgstr "Προσοχή: το URL της βάσης δεδομένων της σελίδας (%s) είναι διαφορετικό από αυτό που αναμενόταν (%s)"
1306
+
1307
+ #: addons/migrator.php:378 addons/migrator.php:381
1308
+ msgid "Database search and replace: replace %s in backup dump with %s"
1309
+ msgstr "Αναζήτηση και αντικατάσταση στη βάση δεδομένων: αντικατάσταση του %s στο αντίγραφο ασφαλείας με το %s"
1310
+
1311
+ #: addons/migrator.php:399
1312
+ msgid "Could not get list of tables"
1313
+ msgstr "Δεν μπόρεσε να ανακτηθεί η λίστα των πινάκων"
1314
+
1315
+ #: addons/migrator.php:410
1316
+ msgid "<strong>Search and replacing table:</strong> %s: already done"
1317
+ msgstr "<strong>Αναζήτηση και αντικατάσταση πίνακα:</strong> %s: έχει ήδη γίνει"
1318
+
1319
+ #: addons/migrator.php:452
1320
+ msgid "Tables examined:"
1321
+ msgstr "Πίνακες που εξετάστηκαν:"
1322
+
1323
+ #: addons/migrator.php:453
1324
+ msgid "Rows examined:"
1325
+ msgstr "Γραμμές που εξετάστηκαν:"
1326
+
1327
+ #: addons/migrator.php:454
1328
+ msgid "Changes made:"
1329
+ msgstr "Αλλαγές που έγιναν:"
1330
+
1331
+ #: addons/sftp.php:201
1332
+ msgid "%s Error: Failed to download"
1333
+ msgstr "%s Λάθος: Αδυναμία κατεβάσματος"
1334
+
1335
+ #: addons/sftp.php:260
1336
+ msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1337
+ msgstr "Το σταδιακό ανέβασμα σε κομμάτια δεν υποστηρίζεται έτσι θα πρέπει να διασφαλίσετε ότι ο διακομιστής σας επιτρέπει να τρέχουν διαδικασίες PHP για αρκετή ώρα για να είναι δυνατό να ανεβάσετε το μεγαλύτερο αρχείο των αντιγράφων ασφαλείας σας."
1338
+
1339
+ #: addons/sftp.php:265
1340
+ msgid "Host"
1341
+ msgstr "Host"
1342
+
1343
+ #: addons/sftp.php:272
1344
+ msgid "Port"
1345
+ msgstr "Θύρα"
1346
+
1347
+ #: udaddons/options.php:97
1348
+ msgid "Password"
1349
+ msgstr "Κωδικός"
1350
+
1351
+ #: addons/sftp.php:302
1352
+ msgid "Directory path"
1353
+ msgstr "Διαδρομή φακέλου"
1354
+
1355
+ #: addons/sftp.php:304
1356
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
1357
+ msgstr "Πού να αλλάξει το φάκελο μετά την σύνδεση - συχνά αυτό είναι σχετικό με τον αρχικό σας ριζικό φάκελο."
1358
+
1359
+ #: addons/sftp.php:355
1360
+ msgid "host name"
1361
+ msgstr "όνομα host"
1362
+
1363
+ #: addons/sftp.php:359
1364
+ msgid "username"
1365
+ msgstr "όνομα χρήστη"
1366
+
1367
+ #: addons/sftp.php:363
1368
+ msgid "password"
1369
+ msgstr "κωδικός"
1370
+
1371
+ #: addons/sftp.php:368
1372
+ msgid "Failure: Port must be an integer."
1373
+ msgstr "Αποτυχία: Η τιμή για τη θύρα πρέπει να είναι ακέραιος αριθμός."
1374
+
1375
+ #: addons/fixtime.php:120 addons/fixtime.php:129
1376
+ msgid "starting from next time it is"
1377
+ msgstr "αρχής γενομένης από την επόμενη φορά είναι"
1378
+
1379
+ #: addons/multisite.php:140
1380
+ msgid "Multisite Install"
1381
+ msgstr "Εγκατάσταση πολλαπλών ιστοσελίδων"
1382
+
1383
+ #: udaddons/options.php:174
1384
+ msgid "You do not have sufficient permissions to access this page."
1385
+ msgstr "Δεν έχετε επαρκή δικαιώματα για να αποκτήσετε πρόσβαση σε αυτήν τη σελίδα."
1386
+
1387
+ #: udaddons/options.php:153
1388
+ msgid "You do not have permission to access this page."
1389
+ msgstr "Δεν έχετε δικαιώματα για να αποκτήσετε πρόσβαση σε αυτήν τη σελίδα."
1390
+
1391
+ #: addons/multisite.php:237
1392
+ msgid "Must-use plugins"
1393
+ msgstr "Πρόσθετα που πρέπει να χρησιμοποιείτε"
1394
+
1395
+ #: addons/multisite.php:244
1396
+ msgid "Blog uploads"
1397
+ msgstr "Ανέβασμα ιστολογίου"
1398
+
1399
+ #: addons/migrator.php:174
1400
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
1401
+ msgstr "Όλες οι αναφορές για τη θέση της ιστοσελίδας στη βάση δεδομένων θα αντικατασταθούν με το τρέχον URL της ιστοσελίδας σας, το οποίο είναι: %s"
1402
+
1403
+ #: addons/migrator.php:174
1404
+ msgid "Search and replace site location in the database (migrate)"
1405
+ msgstr "Αναζήτηση και αντικατάσταση θέσης της τοποθεσίας στη βάση δεδομένων (μετανάστευση)"
1406
+
1407
+ #: addons/migrator.php:174
1408
+ msgid "(learn more)"
1409
+ msgstr "(μάθετε περισσότερα)"
1410
+
1411
+ #: addons/migrator.php:270 addons/migrator.php:434
1412
+ msgid "Failed: the %s operation was not able to start."
1413
+ msgstr "Αποτυχία: η λειτουργία %s δεν μπόρεσε να ξεκινήσει."
1414
+
1415
+ #: addons/migrator.php:272 addons/migrator.php:436
1416
+ msgid "Failed: we did not understand the result returned by the %s operation."
1417
+ msgstr "Αποτυχία: δεν έγινε κατανοητό το αποτέλεσμα που επέστρεψε η η λειτουργία %s."
1418
+
1419
+ #: addons/migrator.php:319
1420
+ msgid "Database: search and replace site URL"
1421
+ msgstr "Βάση δεδομένων: αναζήτηση και αντικατάσταση του URL της ιστοσελίδας"
1422
+
1423
+ #: addons/migrator.php:322
1424
+ msgid "This option was not selected."
1425
+ msgstr "Αυτή η επιλογή δεν επελέγη."
1426
+
1427
+ #: addons/migrator.php:345 addons/migrator.php:349 addons/migrator.php:354
1428
+ #: addons/migrator.php:358
1429
+ msgid "Error: unexpected empty parameter (%s, %s)"
1430
+ msgstr "Σφάλμα: απρόσμενη κενή παράμετρος (%s, %s)"
1431
+
1432
+ #: addons/morefiles.php:71
1433
+ msgid "The above files comprise everything in a WordPress installation."
1434
+ msgstr "Τα παραπάνω αρχεία περιλαμβάνουν τα πάντα σε μια εγκατάσταση του WordPress."
1435
+
1436
+ #: addons/morefiles.php:78
1437
+ msgid "WordPress core (including any additions to your WordPress root directory)"
1438
+ msgstr "Πυρήνας του WordPress (συμπεριλαμβανομένων τυχόν προσθηκών στο ριζικό φάκελο του WordPress)"
1439
+
1440
+ #: addons/morefiles.php:126
1441
+ msgid "Any other directory on your server that you wish to back up"
1442
+ msgstr "Κάθε άλλο αρχείο στο φάκελο του εξυπηρετητή σας που θέλετε να κρατήσετε αντίγραφο ασφαλείας"
1443
+
1444
+ #: addons/morefiles.php:127
1445
+ msgid "More Files"
1446
+ msgstr "Περισσότερα Αρχεία"
1447
+
1448
+ #: addons/morefiles.php:142
1449
+ msgid "Enter the directory:"
1450
+ msgstr "Εισάγετε το φάκελο:"
1451
+
1452
+ #: addons/morefiles.php:146
1453
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
1454
+ msgstr "Εάν δεν είστε σίγουροι τι κάνει αυτή η επιλογή τότε πιθανόν να μην τη χρειάζεστε και καλό θα ήταν να την απενεργοποιήσετε."
1455
+
1456
+ #: addons/morefiles.php:146
1457
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
1458
+ msgstr "Αν το χρησιμοποιείτε, πληκτρολογήστε μια απόλυτη διαδρομή (δεν είναι σχετική με την εγκατάστασή σας του WordPress)."
1459
+
1460
+ #: addons/morefiles.php:148
1461
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
1462
+ msgstr "Προσέξτε τι εισάγετε - εάν εισάγετε / τότε πραγματικά θα γίνει προσπάθεια να δημιουργηθεί ένα αρχείο zip που περιέχει ολόκληρο το διακομιστή σας."
1463
+
1464
+ #: addons/morefiles.php:220 addons/morefiles.php:297
1465
+ msgid "No backup of %s directories: there was nothing found to back up"
1466
+ msgstr "Δεν δημιουργήθηκε αντίγραφο ασφαλείας για τους φακέλους %s: δε βρέθηκε τίποτα για να γίνει αντίγραφο ασφαλείας"
1467
+
1468
+ #: addons/morefiles.php:220
1469
+ msgid "more"
1470
+ msgstr "περισσότερα"
1471
+
1472
+ #: addons/sftp.php:27
1473
+ msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
1474
+ msgstr "Είναι διαθέσιμο FTP με κρυπτογράφηση και αυτόματα θα δοκιμαστεί πρώτο (πριν γυρίσει και πάλι σε μη κρυπτογραφημένο, αν δεν είναι επιτυχής η διαδικασία), εκτός και αν το απενεργοποιήσετε χρησιμοποιώντας τις επιλογές για προχωρημένους. Το κουμπί 'Δοκιμή Σύνδεσης FTP' θα σας εμφανίσει ποιο είδος σύνδεσης είναι σε χρήση."
1475
+
1476
+ #: addons/sftp.php:27
1477
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
1478
+ msgstr "Ρητή κρυπτογράφηση χρησιμοποιείται από προεπιλογή. Για να επιβάλετε σιωπηρή κρυπτογράφησης (θύρα 990), προσθέστε: 990 στον FTP server σας παρακάτω."
1479
+
1480
+ #: addons/sftp.php:34 addons/sftp.php:35 addons/sftp.php:36
1481
+ msgid "No %s found"
1482
+ msgstr "Κανένα %s δε βρέθηκε"
1483
+
1484
+ #: addons/sftp.php:398
1485
+ msgid "Check your file permissions: Could not successfully create and enter:"
1486
+ msgstr "Ελέγξτε τα δικαιώματα αρχείου σας: αδυναμία επιτυχούς να δημιουργίας και εισαγωγής:"
1487
+
1488
+ #: methods/ftp.php:186
1489
+ msgid "FTP Server"
1490
+ msgstr "Εξυπηρετητής FTP"
1491
+
1492
+ #: methods/ftp.php:190
1493
+ msgid "FTP Login"
1494
+ msgstr "Είσοδος FTP "
1495
+
1496
+ #: methods/ftp.php:194
1497
+ msgid "FTP Password"
1498
+ msgstr "Κωδικός FTP "
1499
+
1500
+ #: methods/ftp.php:198
1501
+ msgid "Remote Path"
1502
+ msgstr "Απομακρυσμένη διαδρομή"
1503
+
1504
+ #: methods/ftp.php:199
1505
+ msgid "Needs to already exist"
1506
+ msgstr "Πρέπει να υπάρχει ήδη"
1507
+
1508
+ #: methods/ftp.php:224
1509
+ msgid "Failure: No server details were given."
1510
+ msgstr "Αποτυχία: Δεν δόθηκαν λεπτομέρειες για τον εξυπηρετητή."
1511
+
1512
+ #: methods/ftp.php:239
1513
+ msgid "Failure: we did not successfully log in with those credentials."
1514
+ msgstr "Αποτυχία:αδυναμία σύνδεσης με επιτυχία με αυτά τα διαπιστευτήρια."
1515
+
1516
+ #: methods/ftp.php:247
1517
+ msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
1518
+ msgstr "Αποτυχία: συνέβη ένα απροσδόκητο εσωτερικό σφάλμα του UpdraftPlus κατά την εξέταση των διαπιστευτηρίων - επικοινωνήστε με τον προγραμματιστή"
1519
+
1520
+ #: methods/ftp.php:251
1521
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
1522
+ msgstr "Επιτυχία: συνδεθήκαμε επιτυχώς και επιβεβαιώσαμε τη δυνατότητα να δημιουργήσουμε ένα αρχείο στο συγκεκριμένο φάκελο (είσοδος τύπου:"
1523
+
1524
+ #: methods/ftp.php:254
1525
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
1526
+ msgstr "Αποτυχία: συνδεθήκαμε επιτυχώς αλλά δεν μπορέσαμε να δημιουργήσουμε ένα αρχείο στο συγκεκριμένο φάκελο."
1527
+
1528
+ #: addons/webdav.php:40 addons/webdav.php:161 addons/webdav.php:197
1529
+ #: addons/sftp.php:32
1530
+ msgid "No %s settings were found"
1531
+ msgstr "Δε βρέθηκαν ρυθμίσεις για το %s"
1532
+
1533
+ #: addons/webdav.php:123 addons/webdav.php:127
1534
+ msgid "Chunk %s: A %s error occurred"
1535
+ msgstr "Κομμάτι %s: Συνέβη λάθος %s "
1536
+
1537
+ #: addons/webdav.php:213 addons/webdav.php:220 addons/webdav.php:233
1538
+ msgid "WebDAV Error"
1539
+ msgstr "WebDAV Λάθος"
1540
+
1541
+ #: addons/webdav.php:220
1542
+ msgid "Error opening remote file: Failed to download"
1543
+ msgstr "Σφάλμα κατά το άνοιγμα απομακρυσμένου αρχείου: Αποτυχία κατεβάσματος"
1544
+
1545
+ #: addons/webdav.php:233
1546
+ msgid "Local write failed: Failed to download"
1547
+ msgstr "Σφάλμα κατά τη διαδικασία εγγραφής τοπικά: Αποτυχία κατεβάσματος "
1548
+
1549
+ #: addons/webdav.php:269
1550
+ msgid "WebDAV URL"
1551
+ msgstr "WebDAV URL"
1552
+
1553
+ #: addons/webdav.php:273
1554
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
1555
+ msgstr "Εισάγετε ένα πλήρες URL, αρχίζοντας με το webdav:// ή webdavs:// και συμπεριλάβετε τη διαδρομή, το όνομα χρήστη, τον κωδικό πρόσβασης και τη θύρα όπως απαιτείται - π.χ.%s"
1556
+
1557
+ #: admin.php:1908 admin.php:1933
1558
+ msgid "Failed"
1559
+ msgstr "Αποτυχία"
1560
+
1561
+ #: addons/webdav.php:331
1562
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
1563
+ msgstr "Αποτυχία: Δεν μπορέσαμε να τοποθετήσουμε ένα αρχείο σε αυτόν το φάκελο - παρακαλώ ελέγξτε τα διαπιστευτήριά σας."
1564
+
1565
+ #: addons/morefiles.php:48 addons/morefiles.php:297
1566
+ msgid "WordPress Core"
1567
+ msgstr "Πυρήνας του WordPress "
1568
+
1569
+ #: addons/morefiles.php:52
1570
+ msgid "Over-write wp-config.php"
1571
+ msgstr "Αντικατάσταση του wp-config.php"
1572
+
1573
+ #: addons/morefiles.php:52
1574
+ msgid "(learn more about this important option)"
1575
+ msgstr "(μάθετε περισσότερα για αυτή τη σημαντική επιλογή)"
1576
+
1577
+ #: methods/dropbox.php:290
1578
+ msgid "Authenticate with Dropbox"
1579
+ msgstr "Πιστοποίηση ταυτότητας με το Dropbox"
1580
+
1581
+ #: methods/dropbox.php:291
1582
+ msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Dropbox."
1583
+ msgstr "<strong>Αφού</strong> έχετε αποθηκεύσει τις ρυθμίσεις σας (κάνοντας κλικ στο \"Αποθήκευση Αλλαγών\" παρακάτω), τότε επιστρέψτε εδώ μια φορά και κάντε κλικ σε αυτό το σύνδεσμο για να ολοκληρωθεί η πιστοποίηση με το Dropbox."
1584
+
1585
+ #: methods/dropbox.php:334
1586
+ msgid "you have authenticated your %s account"
1587
+ msgstr "έχετε πιστοποιηθεί για το λογαριασμό %s"
1588
+
1589
+ #: methods/dropbox.php:337
1590
+ msgid "though part of the returned information was not as expected - your mileage may vary"
1591
+ msgstr "αν και μέρος των πληροφοριών που επεστράφησαν δεν ήταν τα αναμενόμενα - η χρέωσή σας μπορεί να ποικίλει"
1592
+
1593
+ #: methods/dropbox.php:340
1594
+ msgid "Your %s account name: %s"
1595
+ msgstr "Το %s όνομα του λογαριασμού σας: %s"
1596
+
1597
+ #: methods/ftp.php:182
1598
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1599
+ msgstr "Μόνο μη κρυπτογραφημένο FTP υποστηρίζεται από το απλό UpdraftPlus."
1600
+
1601
+ #: methods/ftp.php:182
1602
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
1603
+ msgstr "Αν θέλετε κρυπτογράφηση (π.χ. έχετε αποθηκευμένα ευαίσθητα επιχειρηματικά δεδομένα), τότε υπάρχει διαθέσιμο ένα πρόσθετο."
1604
+
1605
+ #: methods/s3.php:335
1606
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
1607
+ msgstr "Σφάλμα %s: Απέτυχε η λήψη του %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
1608
+
1609
+ #: methods/s3.php:271 methods/s3.php:339
1610
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
1611
+ msgstr "Σφάλμα %s: Αποτυχία πρόσβασης στον κάδο %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
1612
+
1613
+ #: methods/s3.php:416
1614
+ msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
1615
+ msgstr "Λάβετε το κλειδί πρόσβασης σας και το μυστικό κλειδί <a href=\"%s\"> από την κονσόλα σας %s </a>, στη συνέχεια επιλέξτε ένα (μοναδικό παγκοσμίως - όλοι οι %s χρήστες) όνομα κάδου (γράμματα και αριθμοί) (και προαιρετικά μια διαδρομή) που θα χρησιμοποιηθεί για την αποθήκευση. Η κάδος θα δημιουργηθεί για σας εάν δεν υπάρχει ήδη."
1616
+
1617
+ #: methods/s3.php:416
1618
+ msgid "If you see errors about SSL certificates, then please go here for help."
1619
+ msgstr "Εάν δείτε λάθη σχετικά με τα πιστοποιητικά SSL τότε πηγαίνετε εδώ για βοήθεια."
1620
+
1621
+ #: methods/s3.php:427
1622
+ msgid "%s access key"
1623
+ msgstr "%s κλειδί πρόσβασης"
1624
+
1625
+ #: methods/s3.php:431
1626
+ msgid "%s secret key"
1627
+ msgstr "%s μυστικό κλειδί"
1628
+
1629
+ #: methods/s3.php:435
1630
+ msgid "%s location"
1631
+ msgstr "%s τοποθεσία"
1632
+
1633
+ #: methods/s3.php:436
1634
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
1635
+ msgstr "Εισάγετε μόνο ένα όνομα κάδου ή έναν κάδο και τη διαδρομή. Παραδείγματα: mybucket, mybucket/mypath"
1636
+
1637
+ #: methods/s3.php:457
1638
+ msgid "API secret"
1639
+ msgstr "μυστικό API"
1640
+
1641
+ #: methods/s3.php:478
1642
+ msgid "Failure: No bucket details were given."
1643
+ msgstr "Αποτυχία: Δε δόθηκαν στοιχεία για τον κάδο."
1644
+
1645
+ #: methods/s3.php:493
1646
+ msgid "Region"
1647
+ msgstr "Περιοχή"
1648
+
1649
+ #: methods/s3.php:511
1650
+ msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
1651
+ msgstr "Αποτυχία: Δεν μπορέσαμε επιτυχώς να έχουμε πρόσβαση ή να δημιουργήσεουμε ένα τέτοιο κάδο. Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας, και εάν αυτά είναι σωστά τότε δοκιμάστε με ένα άλλο όνομα κάδου (ενδεχομένως κάποιος άλλος χρήστης %s μπορεί να έχει ήδη πάρει το όνομά σας)."
1652
+
1653
+ #: methods/s3.php:525 methods/s3.php:537
1654
+ msgid "Failure"
1655
+ msgstr "Αποτυχία"
1656
+
1657
+ #: methods/s3.php:525 methods/s3.php:537
1658
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
1659
+ msgstr "Αποκτήσαμε πρόσβαση με επιτυχία στον κάδο, αλλά η προσπάθεια να δημιουργηθεί ένα αρχείο σε αυτόν απέτυχε."
1660
+
1661
+ #: methods/s3.php:527
1662
+ msgid "We accessed the bucket, and were able to create files within it."
1663
+ msgstr "Αποκτήσαμε πρόσβαση με επιτυχία στον κάδο και δημιουργήσαμε επιτυχώς αρχεία μέσα σε αυτόν. "
1664
+
1665
+ #: methods/s3.php:530
1666
+ msgid "The communication with %s was encrypted."
1667
+ msgstr "Η επικοινωνία με το %s κρυπτογραφήθηκε."
1668
+
1669
+ #: methods/s3.php:532
1670
+ msgid "The communication with %s was not encrypted."
1671
+ msgstr "Η επικοινωνία με το %s δεν κρυπτογραφήθηκε. "
1672
+
1673
+ #: methods/dropbox.php:41
1674
+ msgid "You do not appear to be authenticated with Dropbox"
1675
+ msgstr "Δε φαίνεται να είστε πιστοποιημένος στο Dropbox"
1676
+
1677
+ #: methods/dropbox.php:137 methods/dropbox.php:142
1678
+ msgid "error: failed to upload file to %s (see log file for more)"
1679
+ msgstr "σφάλμα: αποτυχία ανεβάσματος του αρχείου στο %s (δείτε το αρχείο καταγραφής για περισσότερες πληροφορίες)"
1680
+
1681
+ #: methods/dropbox.php:285
1682
+ msgid "Need to use sub-folders?"
1683
+ msgstr "Χρειάζεται να χρησιμοποιήσετε υπο-φακέλους;"
1684
+
1685
+ #: methods/dropbox.php:285
1686
+ msgid "Backups are saved in"
1687
+ msgstr "Τα αρχεία ασφαλείας αποθηκεύτηκαν στο "
1688
+
1689
+ #: methods/dropbox.php:285
1690
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
1691
+ msgstr "Εάν κάνετε αντίγραφα ασφαλείας για πολλές ιστοσελίδες στο ίδιο Dropbox και χρειάζεται να τα οργανώσετε σε υπο-φακέλους, τότε "
1692
+
1693
+ #: methods/dropbox.php:285
1694
+ msgid "there's an add-on for that."
1695
+ msgstr "υπάρχει ένα πρόσθετο για αυτό το σκοπό."
1696
+
1697
+ #: methods/cloudfiles.php:408
1698
+ msgid "US or UK Cloud"
1699
+ msgstr "US ή UK Σύννεφο"
1700
+
1701
+ #: methods/cloudfiles.php:414
1702
+ msgid "US (default)"
1703
+ msgstr "US (προεπιλογή)"
1704
+
1705
+ #: methods/cloudfiles.php:415
1706
+ msgid "UK"
1707
+ msgstr "UK"
1708
+
1709
+ #: methods/cloudfiles.php:420
1710
+ msgid "Cloud Files username"
1711
+ msgstr "Όνομα χρήστη των Αρχείων στο Σύννεφο"
1712
+
1713
+ #: methods/cloudfiles.php:424
1714
+ msgid "Cloud Files API key"
1715
+ msgstr "Κλειδί API των Αρχείων στο Σύννεφο"
1716
+
1717
+ #: methods/cloudfiles.php:428
1718
+ msgid "Cloud Files container"
1719
+ msgstr "Σημείο αποθήκευσης των Αρχείων στο Σύννεφο"
1720
+
1721
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
1722
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
1723
+ msgstr "Η μονάδα του UpdraftPlus %s <strong>απαιτεί</strong> %s. Παρακαλώ μην υποβάλετε οποιαδήποτε αιτήματα υποστήριξης, δεν υπάρχει εναλλακτική λύση."
1724
+
1725
+ #: methods/cloudfiles.php:442 methods/cloudfiles.php:447
1726
+ msgid "Failure: No %s was given."
1727
+ msgstr "Αποτυχία: Δε δόθηκε κανένα %s."
1728
+
1729
+ #: methods/cloudfiles.php:442
1730
+ msgid "API key"
1731
+ msgstr "Κλειδί API"
1732
+
1733
+ #: methods/cloudfiles.php:447
1734
+ msgid "Username"
1735
+ msgstr "Όνομα χρήστη"
1736
+
1737
+ #: methods/cloudfiles.php:467
1738
+ msgid "Failure: No container details were given."
1739
+ msgstr "Αποτυχία: Δε δόθηκαν λεπτομέρειες για το σημείο αποθήκευσης."
1740
+
1741
+ #: methods/cloudfiles.php:494
1742
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
1743
+ msgstr "Λάθος των Αρχείων στο Σύννεφο - αποκτήθηκε πρόσβαση στο σημείο αποθήκευσης αλλά δεν ήταν δυνατή η δημιουργία ενός αρχείου μέσα σε αυτό"
1744
+
1745
+ #: methods/cloudfiles.php:498
1746
+ msgid "We accessed the container, and were able to create files within it."
1747
+ msgstr "Αποκτήθηκε πρόσβαση στο σημείο αποθήκευσης και δημιουργήθηκαν αρχεία μέσα σε αυτό."
1748
+
1749
+ #: methods/email.php:32
1750
+ msgid "WordPress Backup"
1751
+ msgstr "Αντίγραφο ασφαλείας του Wordpress"
1752
+
1753
+ #: methods/email.php:32
1754
+ msgid "Be wary; email backups may fail because of file size limitations on mail servers."
1755
+ msgstr "Να είστε επιφυλακτικοί, τα αντίγραφα ασφαλείας με email ενδέχεται να αποτύχουν εξαιτίας των περιορισμών στο μέγεθος αρχείων των διακομιστών ηλεκτρονικού ταχυδρομείου."
1756
+
1757
+ #: methods/email.php:48
1758
+ msgid "Note:"
1759
+ msgstr "Σημείωση:"
1760
+
1761
+ #: methods/s3.php:172
1762
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
1763
+ msgstr "αποστολή %s: η λήψη uploadID για μεταφόρτωση πολλαπλών αρχείων απέτυχε - δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες"
1764
+
1765
+ #: methods/s3.php:195
1766
+ msgid "%s error: file %s was shortened unexpectedly"
1767
+ msgstr "σφάλμα %s: Το αρχείο %s έγινε απροσδόκητα μικρότερο "
1768
+
1769
+ #: methods/s3.php:205
1770
+ msgid "%s chunk %s: upload failed"
1771
+ msgstr "σφάλμα %s: Το αρχείο %s ήταν απροσδόκητα μικρότερο "
1772
+
1773
+ #: methods/s3.php:219
1774
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
1775
+ msgstr "%s μεταφόρτωσης (%s): η επανασυναρμολόγηση απέτυχε (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
1776
+
1777
+ #: methods/s3.php:223
1778
+ msgid "%s re-assembly error (%s): (see log file for more)"
1779
+ msgstr "%s λάθος επανασυναρμολόγησης (%s): (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
1780
+
1781
+ #: methods/s3.php:235
1782
+ msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
1783
+ msgstr "Σφάλμα %s: Απέτυχε η δημιουργία κάδου %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
1784
+
1785
+ #: methods/googledrive.php:462
1786
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
1787
+ msgstr "Για περισσότερη βοήθεια, η οποία περιλαμβάνει εικόνες οθόνης, ακολουθήστε αυτό το σύνδεσμο. Η περιγραφή πιο κάτω είναι επαρκής για τους πιο έμπειρους χρήστες."
1788
+
1789
+ #: methods/googledrive.php:463
1790
+ msgid "Follow this link to your Google API Console, and there create a Client ID in the API Access section."
1791
+ msgstr "Ακολουθήστε αυτό το σύνδεσμο στο Google API Console, κι εκεί δημιουργήστε ένα Client ID στον τομέα API Access."
1792
+
1793
+ #: methods/googledrive.php:463
1794
+ msgid "Select 'Web Application' as the application type."
1795
+ msgstr "Επιλέξτε 'Εφαρμογή διαδικτύου' ως τον τύπο εφαρμογής."
1796
+
1797
+ #: methods/googledrive.php:463
1798
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
1799
+ msgstr "Πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI (κάτω από το \"Περισσότερες Επιλογές\"), όταν σας ζητηθεί "
1800
+
1801
+ #: methods/googledrive.php:463
1802
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your client ID; you must create a new one from your Google API console for each site."
1803
+ msgstr "Σημειώστε καλά: Αν εγκαταστήσετε το UpdraftPlus σε διάφορες ιστοσελίδες του WordPress, τότε δεν μπορείτε να χρησιμοποιήσετε ξανά το client ID σας, θα πρέπει να δημιουργήσετε ένα νέο από την κονσόλα Google API σας για κάθε χώρο."
1804
+
1805
+ #: methods/googledrive.php:466
1806
+ msgid "You do not have the SimpleXMLElement installed. Google Drive backups will <b>not</b> work until you do."
1807
+ msgstr "Δεν έχετε εγκατεστημένο το SimpleXMLElement. Τα αντίγραφα ασφαλείας του Google Drive <b>δε</b> θα λειτουργήσουν μέχρι να το εγκαταστήσετε."
1808
+
1809
+ #: methods/googledrive.php:473
1810
+ msgid "Client ID"
1811
+ msgstr "Client ID"
1812
+
1813
+ #: methods/googledrive.php:474
1814
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
1815
+ msgstr "Εάν η Google σας εμφανίσει αργότερα το μήνυμα \"invalid_client\", σημαίνει ότι δεν εισαγάγετε ένα έγκυρο client ID εδώ."
1816
+
1817
+ #: methods/googledrive.php:477
1818
+ msgid "Client Secret"
1819
+ msgstr "Μυστικό του Client"
1820
+
1821
+ #: methods/googledrive.php:481
1822
+ msgid "Folder ID"
1823
+ msgstr "ID του φακέλου"
1824
+
1825
+ #: methods/googledrive.php:485
1826
+ msgid "Authenticate with Google"
1827
+ msgstr "Έλεγχος ταυτότητας με το Google"
1828
+
1829
+ #: methods/googledrive.php:486
1830
+ msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
1831
+ msgstr "<strong>Αφού</strong> έχετε αποθηκεύσει τις ρυθμίσεις σας (κάνοντας κλικ στο \"Αποθήκευση Αλλαγών\" παρακάτω), επιστρέψτε εδώ μια φορά και κάντε κλικ σε αυτό το σύνδεσμο για να ολοκληρωθεί η πιστοποίηση με το Google."
1832
+
1833
+ #: methods/cloudfiles.php:477 methods/cloudfiles.php:480
1834
+ #: methods/cloudfiles.php:483
1835
+ msgid "Cloud Files authentication failed"
1836
+ msgstr "Αποτυχία πιστοποίησης των Αρχείων στο Σύννεφο"
1837
+
1838
+ #: methods/cloudfiles.php:61 methods/cloudfiles.php:270
1839
+ #: methods/cloudfiles.php:289
1840
+ msgid "Cloud Files error - failed to create and access the container"
1841
+ msgstr "Λάθος των Αρχείων στο Σύννεφο , αποτυχία δημιουργίας και προσπέλασης του χώρου αποθήκευσης"
1842
+
1843
+ #: methods/cloudfiles.php:88
1844
+ msgid "%s Error: Failed to open local file"
1845
+ msgstr "Σφάλμα%s: Απέτυχε το άνοιγμα του τοπικού αρχείου"
1846
+
1847
+ #: methods/cloudfiles.php:105 methods/cloudfiles.php:147
1848
+ msgid "%s Error: Failed to upload"
1849
+ msgstr "Σφάλμα %s: Αποτυχία ανεβάσματος"
1850
+
1851
+ #: methods/cloudfiles.php:178
1852
+ msgid "Cloud Files error - failed to upload file"
1853
+ msgstr "Λάθος των Αρχείων στο Σύννεφο - Αποτυχία ανεβάσματος αρχείου"
1854
+
1855
+ #: methods/cloudfiles.php:318
1856
+ msgid "Error opening local file: Failed to download"
1857
+ msgstr "Λάθος κατά το άνοιγμα του τοπικού αρχείου: Αποτυχία κατεβάσματος"
1858
+
1859
+ #: methods/cloudfiles.php:335
1860
+ msgid "Error downloading remote file: Failed to download ("
1861
+ msgstr "Λάθος κατεβάσματος απομακρυσμένου αρχείου: Αποτυχία κατεβάσματος ("
1862
+
1863
+ #: methods/cloudfiles.php:357
1864
+ msgid "Testing - Please Wait..."
1865
+ msgstr "Γίνεται έλεγχος - Παρακαλώ Περιμένετε..."
1866
+
1867
+ #: methods/cloudfiles.php:371 methods/cloudfiles.php:434
1868
+ msgid "Test %s Settings"
1869
+ msgstr "Γίνεται έλεγχος %s Ρυθμίσεων"
1870
+
1871
+ #: methods/cloudfiles.php:404
1872
+ msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
1873
+ msgstr "Αποκτήστε ένα κλειδί API <a href=\"https://mycloud.rackspace.com/\"> από την κονσόλα σας του Rackspace Cloud</a> (διαβάστε τις οδηγίες <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">εδώ</a>), στη συνέχεια επιλέξτε ένα όνομα χώρου αποθήκευσης που θα χρησιμοποιηθεί για την αποθήκευση. Αυτός ο χώρος αποθήκευσης θα δημιουργηθεί για σας εάν δεν υπάρχει ήδη."
1874
+
1875
+ #: methods/cloudfiles.php:404
1876
+ msgid "Also, you should read this important FAQ."
1877
+ msgstr "Επίσης, θα πρέπει να διαβάσετε αυτές τις σημαντικές Συχνές Ερωτήσεις."
1878
+
1879
+ #: methods/googledrive.php:201
1880
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
1881
+ msgstr "Ο λογαριασμός σας είναι πλήρης: Ο λογαριασμός σας %s σας έχει μόνο %d bytes ελεύθερα, αλλά το αρχείο που πρέπει να μεταφορτωθεί έχει μέγεθος %d bytes"
1882
+
1883
+ #: methods/googledrive.php:216
1884
+ msgid "Failed to upload to %s"
1885
+ msgstr "Αποτυχία μεταφόρτωσης στο %s"
1886
+
1887
+ #: methods/googledrive.php:334
1888
+ msgid "An error occurred during %s upload (see log for more details)"
1889
+ msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτωση του %s (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
1890
+
1891
+ #: methods/googledrive.php:373
1892
+ msgid "Google Drive error: %d: could not download: could not find a record of the Google Drive file ID for this file"
1893
+ msgstr "Σφάλμα του Google Drive: %d: δεν θα ήταν δυνατό το κατέβασμα: αδυναμία εύρεσης της εγγραφής του αναγνωριστικού αρχείου του Google Drive για αυτό το αρχείο"
1894
+
1895
+ #: methods/googledrive.php:378
1896
+ msgid "Could not find %s in order to download it"
1897
+ msgstr "Αδυναμία εύρεσης του %s με σκοπό να γίνει κατέβασμά του"
1898
+
1899
+ #: methods/googledrive.php:391
1900
+ msgid "Google Drive "
1901
+ msgstr "Google Drive "
1902
+
1903
+ #: methods/googledrive.php:409
1904
+ msgid "Account is not authorized."
1905
+ msgstr "Ο λογαριασμός δεν είναι πιστοποιημένος."
1906
+
1907
+ #: methods/googledrive.php:442 methods/cloudfiles.php:384
1908
+ msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
1909
+ msgstr "Το %s είναι μια εξαιρετική επιλογή, διότι το UpdraftPlus υποστηρίζει κατατμημένες μεταφορτώσεις - δεν έχει σημασία πόσο μεγάλη είναι η ιστοσελίδα σας, το UpdraftPlus μπορεί να την ανεβάσει σε λίγο χρόνο χωρίς να εξουδετερώνεται από χρονικά όρια."
1910
+
1911
+ #: restorer.php:858
1912
+ msgid "will restore as:"
1913
+ msgstr "θα γίνει επαναφορά ως:"
1914
+
1915
+ #: restorer.php:927
1916
+ msgid "An error (%s) occured:"
1917
+ msgstr "Ένα λάθος συνέβη (%s):"
1918
+
1919
+ #: restorer.php:927
1920
+ msgid "the database query being run was:"
1921
+ msgstr "το ερώτημα που τρέχει στη βάση δεδομένων ήταν:"
1922
+
1923
+ #: restorer.php:933
1924
+ msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
1925
+ msgstr "Έχουν συμβεί πάρα πολλά λάθη στη βάση δεδομένων - ματαίωση επαναφοράς (θα χρειαστεί να κάνετε επαναφορά με το χέρι)"
1926
+
1927
+ #: restorer.php:941
1928
+ msgid "Database lines processed: %d in %.2f seconds"
1929
+ msgstr "Γραμμές της βάσης δεδομένων που έχει γίνει επεξεργασία: %d σε %.2f δευτερόλεπτα"
1930
+
1931
+ #: restorer.php:884
1932
+ msgid "Finished: lines processed: %d in %.2f seconds"
1933
+ msgstr "Ολοκληρώθηκε: γραμμές της βάσης δεδομένων που έγινε: %d σε %.2f δευτερόλεπτα "
1934
+
1935
+ #: restorer.php:985 restorer.php:1006
1936
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
1937
+ msgstr "Το πρόθεμα του πίνακα έχει αλλάξει: γίνεται αλλαγή του-των πεδίου-ων %s του πίνακα αναλόγως:"
1938
+
1939
+ #: restorer.php:989 restorer.php:1032 admin.php:1911 admin.php:1935
1940
+ #: admin.php:2813 admin.php:2826
1941
+ msgid "OK"
1942
+ msgstr "Εντάξει"
1943
+
1944
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:97
1945
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
1946
+ msgstr "Θα πρέπει να επαναλάβει την πιστοποίηση με το%s, καθώς τα υφιστάμενα διαπιστευτήρια σας δεν λειτουργούν."
1947
+
1948
+ #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1949
+ #: methods/sftp.php:12 methods/sftp.php:32 methods/sftp.php:47
1950
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1951
+ msgstr "Δεν έχετε εγκατεστημένο το πρόσθετο %s του UpdraftPlus - πάρτε το από %s"
1952
+
1953
+ #: methods/webdav.php:63 methods/sftp.php:60
1954
+ msgid "%s support is available as an add-on"
1955
+ msgstr "η υποστήριξη του %s είναι διαθέσιμη ως προσθετο"
1956
+
1957
+ #: methods/webdav.php:63 methods/sftp.php:60
1958
+ msgid "follow this link to get it"
1959
+ msgstr "ακολουθήστε αυτό το σύνδεσμο για να το πάρετε"
1960
+
1961
+ #: methods/googledrive.php:115
1962
+ msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
1963
+ msgstr "Δεν ελήφθη καμία ένδειξη ανανέωσης από το Google. Αυτό συχνά σημαίνει ότι έχετε εισάγει μυστικό πελάτη σας λανθασμένα ή ότι δεν έχουν ακόμη πιστοποιηθεί εκ νέου (πιο κάτω) από τη στιγμή που έγινε διόρθωσή τους. Ελέγξτε το ξανά, και στη συνέχεια ακολουθήστε το σύνδεσμο για την επικύρωση του και πάλι. Τέλος, αν αυτό δεν λειτουργήσει, τότε χρησιμοποιήστε τη λειτουργία για έμπειρους χρήστες για να διαγράψετε όλες τις ρυθμίσεις σας, να δημιουργήσετε ένα νέο clientID/μυστικό στο Google, και κάντε τη διαδικασία ξανά."
1964
+
1965
+ #: methods/googledrive.php:124
1966
+ msgid "Authorization failed"
1967
+ msgstr "Η εξουσιοδότηση απέτυχε"
1968
+
1969
+ #: methods/googledrive.php:145
1970
+ msgid "Your %s quota usage: %s %% used, %s available"
1971
+ msgstr "Χρήση του μεριδίου σας %s: %s %% χρησιμοποιείται,%s διαθέσιμο"
1972
+
1973
+ #: methods/googledrive.php:151 methods/cloudfiles.php:498
1974
+ msgid "Success"
1975
+ msgstr "Επιτυχία"
1976
+
1977
+ #: methods/googledrive.php:151
1978
+ msgid "you have authenticated your %s account."
1979
+ msgstr "έχετε πιστοποιήσει το λογαριασμό σας %s."
1980
+
1981
+ #: methods/googledrive.php:167 methods/googledrive.php:232
1982
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
1983
+ msgstr "Δεν έχετε αποκτήσει ακόμη ένα διακριτικό πρόσβασης από το Google - θα πρέπει να πιστοποιήσετε ή να πιστοποιήσετε εκ νέου τη σύνδεσή σας στο Google Drive."
1984
+
1985
+ #: methods/googledrive.php:168 methods/googledrive.php:363
1986
+ msgid "Have not yet obtained an access token from Google (has the user authorised?)"
1987
+ msgstr "Δεν έχετε αποκτήσει ακόμη ένα διακριτικό πρόσβασης από το Google (έχει ο χρήστης πιστοποιηθεί;)"
1988
+
1989
+ #: restorer.php:156
1990
+ msgid "wp-config.php from backup: restoring (as per user's request)"
1991
+ msgstr "wp-config.php από το αντίγραφο ασφαλείας: επαναφορά (σύμφωνα με το αίτημα του χρήστη)"
1992
+
1993
+ #: restorer.php:600
1994
+ msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
1995
+ msgstr "Προειδοποίηση: Είναι ενεργή η ασφαλής λειτουργία της PHP στον εξυπηρετητή σας. Είναι πολύ πιθανόν να έχουν τεθεί χρονικά όρια. Αν συμβαίνει αυτό, τότε θα χρειαστεί να επαναφέρετε το χέρι το αρχείο μέσω phpMyAdmin ή άλλης μεθόδου."
1996
+
1997
+ #: restorer.php:605
1998
+ msgid "Failed to find database file"
1999
+ msgstr "Αποτυχία εύρεσης του αρχείου της βάσης δεδομένων"
2000
+
2001
+ #: restorer.php:611
2002
+ msgid "Failed to open database file"
2003
+ msgstr "Αποτυχία ανοίγματος του αρχείου της βάσης δεδομένων "
2004
+
2005
+ #: restorer.php:635
2006
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
2007
+ msgstr "Πρόσβαση στη βάση δεδομένων: Η άμεση πρόσβαση στη MySQL δεν είναι διαθέσιμη, έτσι χρησιμοποιείται η wpdb (αυτή θα είναι σημαντικά πιο αργή διαδικασία)"
2008
+
2009
+ #: restorer.php:710 admin.php:945
2010
+ msgid "Backup of:"
2011
+ msgstr "Αντίγραφο ασφαλείας του:"
2012
+
2013
+ #: restorer.php:718 restorer.php:789
2014
+ msgid "Old table prefix:"
2015
+ msgstr "Παλιό πρόθεμα πίνακα:"
2016
+
2017
+ #: admin.php:2823
2018
+ msgid "Archive is expected to be size:"
2019
+ msgstr "Το αρχείο αναμένεται να έχει μέγεθος:"
2020
+
2021
+ #: admin.php:2831
2022
+ msgid "The backup records do not contain information about the proper size of this file."
2023
+ msgstr "Τα στοιχεία μητρώου του αντιγράφου ασφαλείας δεν περιέχουν πληροφορίες σχετικά με το κατάλληλο μέγεθος για αυτό το αρχείο."
2024
+
2025
+ #: admin.php:2878
2026
+ msgid "Error message"
2027
+ msgstr "Μήνυμα λάθους"
2028
+
2029
+ #: admin.php:2834 admin.php:2835
2030
+ msgid "Could not find one of the files for restoration"
2031
+ msgstr "Δεν μπόρεσε να βρεθεί ένα από τα αρχεία για την επαναφορά"
2032
+
2033
+ #: restorer.php:21
2034
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
2035
+ msgstr "Το UpdraftPlus δεν μπορεί να επαναφέρει απευθείας αυτού του είδους την οντότητα. Πρέπει να γίνει επαναφορά με το χέρι."
2036
+
2037
+ #: restorer.php:22
2038
+ msgid "Backup file not available."
2039
+ msgstr "Δεν είναι διαθέσιμο αντίγραφο ασφαλείας γι' αυτό το αρχείο."
2040
+
2041
+ #: restorer.php:23
2042
+ msgid "Copying this entity failed."
2043
+ msgstr "Η αντιγραφή αυτής της οντότητας απέτυχε."
2044
+
2045
+ #: restorer.php:24
2046
+ msgid "Unpacking backup..."
2047
+ msgstr "Αποσυσκευάζεται το αντίγραφο ασφαλείας..."
2048
+
2049
+ #: restorer.php:25
2050
+ msgid "Decrypting database (can take a while)..."
2051
+ msgstr "Αποκρυπτογραφείται η βάση δεδομένων (μπορεί να διαρκέσει λίγο χρόνο)..."
2052
+
2053
+ #: restorer.php:26
2054
+ msgid "Database successfully decrypted."
2055
+ msgstr "Η βάση δεδομένων αποκρυπτογραφήθηκε επιτυχώς."
2056
+
2057
+ #: restorer.php:27
2058
+ msgid "Moving old directory out of the way..."
2059
+ msgstr "Διαγράφεται ο παλιός φάκελος..."
2060
+
2061
+ #: restorer.php:29
2062
+ msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
2063
+ msgstr "Επαναφορά της βάσης δεδομένων (για μια μεγάλη ιστοσελίδα η διαδικασία μπορεί να πάρει πολύ χρόνο - εάν παρουσιαστεί πρόβλημα λήξης χρόνου -timeout- (το οποίο μπορεί να συμβεί εάν ο πάροχος του εξυπηρετητή σας έχει ρυθμίσει τη φιλοξενία σας με περιορισμό των πόρων), τότε θα πρέπει να χρησιμοποιήσετε μια διαφορετική μέθοδο, όπως το phpMyAdmin)..."
2064
+
2065
+ #: restorer.php:30
2066
+ msgid "Cleaning up rubbish..."
2067
+ msgstr "Γίνεται εκκαθάριση των περιττών..."
2068
+
2069
+ #: restorer.php:31
2070
+ msgid "Could not move old directory out of the way. Perhaps you already have -old directories that need deleting first?"
2071
+ msgstr "Αδυναμία διαγραφής των παλιών φακέλων. Μήπως έχετε ήδη φακέλους με την κατάληξη -old τα οποία πρέπει να διαγραφούν πρώτα;"
2072
+
2073
+ #: restorer.php:32
2074
+ msgid "Could not delete old directory."
2075
+ msgstr "Αδυναμία διαγραφής παλιού φακέλου."
2076
+
2077
+ #: restorer.php:33
2078
+ msgid "Could not move new directory into place. Check your wp-content/upgrade folder."
2079
+ msgstr "Αδυναμία μετακίνησης του νέο φακέλου στη θέση του. Ελέγξτε το φάκελο wp-content/upgrade."
2080
+
2081
+ #: restorer.php:34
2082
+ msgid "Failed to delete working directory after restoring."
2083
+ msgstr "Αδυναμία διαγραφής του ενεργού φακέλου μετά την επαναφορά."
2084
+
2085
+ #: restorer.php:81
2086
+ msgid "Failed to create a temporary directory"
2087
+ msgstr "Αδυναμία δημιουργίας προσωρινού φακέλου."
2088
+
2089
+ #: restorer.php:94
2090
+ msgid "Failed to write out the decrypted database to the filesystem"
2091
+ msgstr "Αδυναμία εγγραφής της αποκρυπτογραφημένης βάσης δεδομένων στο σύστημα αρχείων"
2092
+
2093
+ #: restorer.php:152
2094
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
2095
+ msgstr "wp-config.php από το αντίγραφο ασφαλείας: θα γίνει επαναφορά ως wp-config-backup.php"
2096
+
2097
+ #: admin.php:2345
2098
+ msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
2099
+ msgstr "Κάνοντας αυτή την επιλογή μειώνετε το επίπεδο ασφάλειας εμποδίζοντας το UpdraftPlus από το να χρησιμοποιήσει τεχνολογία SSL για την πιστοποίηση και την κρυπτογραφημένη μεταφορά, όπου αυτό είναι δυνατό. Σημειώστε πως κάποιοι πάροχοι συστημάτων απομακρυσμένης αποθήκευσης στο σύννεφο δεν το επιτρέπουν αυτό (π.χ. το Dropbox), κατά συνέπεια με παρόχους αυτού του είδους αυτή η ρύθμιση δε θα έχει καμία επίδραση."
2100
+
2101
+ #: admin.php:2369
2102
+ msgid "Save Changes"
2103
+ msgstr "Αποθήκευση Αλλαγών"
2104
+
2105
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
2106
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
2107
+ msgstr "Η εγκατάσταση της PHP στον εξυπηρετητή σας δεν συμπεριλαμβάνει μια απαραίτητη μονάδα %s). Παρακαλούμε επικοινωνήστε με το τμήμα υποστήριξης του παρόχου του εξυπηρετητή σας."
2108
+
2109
+ #: admin.php:2403
2110
+ msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
2111
+ msgstr "Η εγκατάσταση της PHP/Curl στον εξυπηρετητή σας δεν υποστηρίζει πρόσβαση https. Η επικοινωνίες με το %s δε θα είναι κρυπτογραφημένες. Ζητήστε από τον πάροχο σας να εγκαταστήσει το Curl/SSL για να έχετε τη δυνατότητα κρυπτογράφησης (με χρήση ενός πρόσθετου). "
2112
+
2113
+ #: admin.php:2405
2114
+ msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
2115
+ msgstr "Η εγκατάσταση της PHP/Curl στον εξυπηρετητή σας δεν υποστηρίζει πρόσβαση https. Υπάρχει αδυναμία πρόσβασης του %s χωρίς αυτό. Παρακαλούμε επικοινωνήστε με το τμήμα υποστήριξης του παρόχου του εξυπηρετητή σας. %s <strong>απαιτεί</strong> Curl+https. Παρακαλούμε μην υποβάλετε οποιαδήποτε αιτήματα υποστήριξης, δεν υπάρχει εναλλακτική λύση."
2116
+
2117
+ #: admin.php:2408
2118
+ msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
2119
+ msgstr "Καλά νέα: Η επικοινωνία με το %s μπορεί να κρυπτογραφηθεί. Εάν δείτε λάθη που έχουν να κάνουν με την κρυπτογράφηση παρακαλούμε ανατρέξτε στις 'Ρυθμίσεις για προχωρημένους' για περισσότερη βοήθεια."
2120
+
2121
+ #: admin.php:2491
2122
+ msgid "Delete this backup set"
2123
+ msgstr "Διαγραφή αυτού του συνόλου αντιγράφων ασφαλείας"
2124
+
2125
+ #: admin.php:2546
2126
+ msgid "Press here to download"
2127
+ msgstr "Πατήστε εδώ για να μεταφορτώσετε"
2128
+
2129
+ #: admin.php:2519 admin.php:2574
2130
+ msgid "(No %s)"
2131
+ msgstr "(Όχι %s)"
2132
+
2133
+ #: admin.php:2582
2134
+ msgid "Backup Log"
2135
+ msgstr "Αρχείο δραστηριοτήτων αντιγράφων ασφαλείας"
2136
+
2137
+ #: admin.php:2603
2138
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
2139
+ msgstr "Αφού πατήσετε αυτό το κουμπί, θα σας δοθεί η δυνατότητα να επιλέξετε ποια μέρη θέλετε να επαναφέρετε "
2140
+
2141
+ #: admin.php:2694
2142
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
2143
+ msgstr "Αυτό το αντίγραφο ασφαλείας δεν υπάρχει στο ιστορικό των αντιγράφων ασφαλείας - η επαναφορά ακυρώθηκε. Σφραγίδα χρόνου:"
2144
+
2145
+ #: admin.php:2729
2146
+ msgid "UpdraftPlus Restoration: Progress"
2147
+ msgstr "Επαναφορά του UpdraftPlus: Πρόοδος "
2148
+
2149
+ #: admin.php:2756
2150
+ msgid "ABORT: Could not find the information on which entities to restore."
2151
+ msgstr "ΑΚΥΡΩΣΗ: Δε βρέθηκαν οι πληροφορίες για το ποιες οντότητες να επαναφερθούν."
2152
+
2153
+ #: admin.php:2757
2154
+ msgid "If making a request for support, please include this information:"
2155
+ msgstr "Αν κάνετε ένα αίτημα υποστήριξης, παρακαλούμε να συμπεριλάβετε αυτές τις πληροφορίες:"
2156
+
2157
+ #: admin.php:2339
2158
+ msgid "Do not verify SSL certificates"
2159
+ msgstr "Να μην επαληθευτούν τα πιστοποιητικά SSL "
2160
+
2161
+ #: admin.php:2340
2162
+ msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
2163
+ msgstr "Κάνοντας αυτή την επιλογή μειώνετε το επίπεδο ασφάλειας εμποδίζοντας το UpdraftPlus από το να επιβεβαιώσει την ταυτότητα των ιστοσελίδων στις οποίες συνδέεται (π.χ. Dropbox, Google Drive). Αυτό σημαίνει πως το UpdraftPlus θα χρησιμοποιεί SSL μόνο για την κρυπτογράφηση της κυκλοφορίας και όχι για την πιστοποίηση."
2164
+
2165
+ #: admin.php:2340
2166
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
2167
+ msgstr "Σημειώστε πως δε χρησιμοποιούν κατ' ανάγκη όλες οι μέθοδοι αποθήκευσης στο σύννεφο πιστοποίηση SSL."
2168
+
2169
+ #: admin.php:2344
2170
+ msgid "Disable SSL entirely where possible"
2171
+ msgstr "Πλήρης απενεργοποίηση του SSL όπου αυτό είναι δυνατό"
2172
+
2173
+ #: admin.php:2291
2174
+ msgid "Expert settings"
2175
+ msgstr "Ρυθμίσεις για προχωρημένους"
2176
+
2177
+ #: admin.php:2292
2178
+ msgid "Show expert settings"
2179
+ msgstr "Προβολή ρυθμίσεων για προχωρημένους"
2180
+
2181
+ #: admin.php:2292
2182
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
2183
+ msgstr "κάντε κλικ εδώ για να δείτε μερικές ακόμα επιλογές, μην ασχοληθείτε με αυτό εκτός αν έχετε κάποιο πρόβλημα ή αν είστε περίεργος."
2184
+
2185
+ #: admin.php:2307
2186
+ msgid "Delete local backup"
2187
+ msgstr "Διαγραφή τοπικού αντιγράφου ασφαλείας"
2188
+
2189
+ #: admin.php:2312
2190
+ msgid "Backup directory"
2191
+ msgstr "Φάκελος αντιγράφων ασφαλείας"
2192
+
2193
+ #: admin.php:2319
2194
+ msgid "Backup directory specified is writable, which is good."
2195
+ msgstr "Ο φάκελος που υπεδείχθη για τα αντίγραφα ασφαλείας είναι εγγράψιμος, πράγμα που είναι καλό. "
2196
+
2197
+ #: admin.php:2327
2198
+ msgid "Click here to attempt to create the directory and set the permissions"
2199
+ msgstr "Κάντε κλικ εδώ για να προσπαθήσετε να δημιουργήσετε το φάκελο και να ρυθμίσετε τα δικαιώματα"
2200
+
2201
+ #: admin.php:2327
2202
+ msgid "or, to reset this option"
2203
+ msgstr "ή, για να επαναφέρετε αυτή την επιλογή"
2204
+
2205
+ #: admin.php:2327
2206
+ msgid "click here"
2207
+ msgstr "κάντε κλικ εδώ"
2208
+
2209
+ #: admin.php:2327
2210
+ msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
2211
+ msgstr "Εάν αυτό έγινε ανεπιτυχώς ελέγξτε τα δικαιώματα στον εξυπηρετητή σας ή αλλάξτε το σε έναν άλλο φάκελο που να είναι εγγράψιμος στον εξυπηρετητή σας από τη διεργασία."
2212
+
2213
+ #: admin.php:2334
2214
+ msgid "Use the server's SSL certificates"
2215
+ msgstr "Χρήση των πιστοποιητικών SSL του εξυπηρετητή σας"
2216
+
2217
+ #: admin.php:2335
2218
+ msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
2219
+ msgstr "Από προεπιλογή το UpdraftPlus χρησιμοποιεί δικό της αρχείο των SSL πιστοποιητικών για να επιβεβαιώσει την ταυτότητα των απομακρυσμένων τοποθεσιών (π.χ. για να βεβαιωθεί ότι συνδιαλέγεται με το πραγματικό Dropbox, Amazon S3, κλπ., και όχι με κάποιον εισβολέα). Κρατάμε το αρχείο μας αυτό διαρκώς ενημερωμένο. Ωστόσο, αν λαμβάνετε ένα μήνυμα λάθους για το SSL, διαλέγοντας αυτή την επιλογή (η οποία επιβάλλει στο UpdraftPlus να χρησιμοποιήσει αντ' αυτού τη συλλογή πιστοποιητικών του εξυπηρετητή σας) μπορεί να βοηθήσει."
2220
+
2221
+ #: admin.php:2135
2222
+ msgid "Use WordShell for automatic backup, version control and patching"
2223
+ msgstr "Χρησιμοποιήστε το WordShell για την αυτόματη δημιουργία αντιγράφων ασφαλείας, τον έλεγχο έκδοσης και την επιδιόρθωση"
2224
+
2225
+ #: admin.php:2139 udaddons/options.php:95
2226
+ msgid "Email"
2227
+ msgstr "Ηλεκτρονικό ταχυδρομείο"
2228
+
2229
+ #: admin.php:2144
2230
+ msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
2231
+ msgstr "Εισάγετε μια διεύθυνση για να αποσταλεί σ' αυτή η αναφορά (και ολόκληρο το αντίγραφο ασφαλείας, εάν το επιλέξετε)."
2232
+
2233
+ #: admin.php:2163
2234
+ msgid "Database encryption phrase"
2235
+ msgstr "Φράση κρυπτογράφησης της βάσης δεδομένων"
2236
+
2237
+ #: admin.php:2174
2238
+ msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
2239
+ msgstr "Εάν πληκτρολογήσετε ένα κείμενο εδώ, αυτό θα χρησιμοποιείται για την κρυπτογράφηση των αντιγράφων ασφαλείας (Rijndael). <strong>Κάντε μια ξεχωριστή καταχώρηση αυτού και μην το χάσετε γιατί αλλιώς όλα τα αντίγραφα ασφαλείας σας <em>θα</em> είναι άχρηστα.</strong> Επί του παρόντος, μόνο το αρχείο της βάσης δεδομένων είναι κρυπτογραφημένο. Αυτό είναι επίσης το κλειδί που θα χρησιμοποιείται για την αποκρυπτογράφηση των αντιγράφων ασφαλείας από αυτό τον πίνακα ελέγχου του διαχειριστή (οπότε αν το αλλάξετε, τότε η αυτόματη αποκρυπτογράφηση δεν θα λειτουργήσει μέχρι να το επαναφέρετε στο αρχικό)."
2240
+
2241
+ #: admin.php:2174
2242
+ msgid "You can also decrypt a database manually here."
2243
+ msgstr "Μπορείτε επίσης να αποκρυπτογραφήσετε τη βάση δεδομένων χειροκίνητα εδώ."
2244
+
2245
+ #: admin.php:2186
2246
+ msgid "Manually decrypt a database backup file"
2247
+ msgstr "Χειροκίνητη αποκρυπτογράφηση αντιγράφου ασφαλείας της βάσης δεδομένων"
2248
+
2249
+ #: admin.php:2193
2250
+ msgid "Use decryption key"
2251
+ msgstr "Χρήση κλειδιού αποκρυπτογράφησης "
2252
+
2253
+ #: admin.php:2207
2254
+ msgid "Copying Your Backup To Remote Storage"
2255
+ msgstr "Μεταφόρτωση του αντιγράφου ασφαλείας στο χώρο απομακρυσμένης αποθήκευσης "
2256
+
2257
+ #: admin.php:2217
2258
+ msgid "Choose your remote storage"
2259
+ msgstr "Επιλέξτε το χώρο απομακρυσμένης αποθήκευσης"
2260
+
2261
+ #: admin.php:2226
2262
+ msgid "None"
2263
+ msgstr "Κανένα"
2264
+
2265
+ #: admin.php:114
2266
+ msgid "Cancel"
2267
+ msgstr "Άκυρο"
2268
+
2269
+ #: admin.php:100
2270
+ msgid "Requesting start of backup..."
2271
+ msgstr "Ζητώντας την έναρξη της δημιουργίας αντιγράφων ασφαλείας..."
2272
+
2273
+ #: admin.php:2284
2274
+ msgid "Advanced / Debugging Settings"
2275
+ msgstr "Σύνθετες ρυθμίσεις / Ρυθμίσεις αποσφαλμάτωσης "
2276
+
2277
+ #: admin.php:2287
2278
+ msgid "Debug mode"
2279
+ msgstr "Λειτουργία αποσφαλμάτωσης "
2280
+
2281
+ #: admin.php:2288
2282
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
2283
+ msgstr "Επιλέξτε αυτό για να λάβετε περισσότερες πληροφορίες και μηνύματα ηλεκτρονικού ταχυδρομείου σχετικά με τη διαδικασία δημιουργίας αντιγράφων ασφαλείας - είναι χρήσιμο αν κάτι πάει στραβά. <strong>Πρέπει</strong> να μας στείλετε αυτό το αρχείο καταγραφής εάν καταχωρείτε μια αναφορά σφάλματος."
2284
+
2285
+ #: admin.php:2135
2286
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
2287
+ msgstr "Τα παραπάνω είναι όλα όσα μπορούν να συμπεριληφθούν στο αντίγραφο ασφαλείας, εκτός από τον τον ίδιο τον πυρήνα του WordPress τον οποίο μπορείτε να κατεβάσετε εκ νέου από το WordPress.org."
2288
+
2289
+ #: admin.php:2066
2290
+ msgid "Daily"
2291
+ msgstr "Ημερήσια"
2292
+
2293
+ #: admin.php:2066
2294
+ msgid "Weekly"
2295
+ msgstr "Εβδομαδιαία"
2296
+
2297
+ #: admin.php:2066
2298
+ msgid "Fortnightly"
2299
+ msgstr "Δεκαπενθήμερα"
2300
+
2301
+ #: admin.php:2066
2302
+ msgid "Monthly"
2303
+ msgstr "Μηνιαία"
2304
+
2305
+ #: admin.php:2075 admin.php:2093
2306
+ msgid "and retain this many backups"
2307
+ msgstr "και διατηρείστε τόσα αντίγραφα ασφαλείας"
2308
+
2309
+ #: admin.php:2082
2310
+ msgid "Database backup intervals"
2311
+ msgstr "Διαστήματα λήψης αντιγράφων ασφαλείας της βάσης δεδομένων"
2312
+
2313
+ #: admin.php:2100
2314
+ msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
2315
+ msgstr "Αν θέλετε να προγραμματίσετε να λαμβάνονται αντίγραφα ασφαλείας αυτόματα, επιλέξτε το χρονοδιάγραμμα που θέλετε από τα αναπτυσσόμενα μενού παραπάνω. Τα αντίγραφα ασφαλείας θα λαμβάνονται στα καθορισμένα χρονικά διαστήματα. Εάν οι δύο επιλογές είναι ίδιες, τότε τα δύο αντίγραφα ασφαλείας θα λαμβάνονται ταυτόχρονα. Αν διαλέξετε \"χειροκίνητα\", τότε θα πρέπει να κάνετε κλικ στο κουμπί \"Λήψη αντιγράφου ασφαλείας\" κάθε φορά που θέλετε να λάβετε ένα αντίγραφο ασφαλείας."
2316
+
2317
+ #: admin.php:2101
2318
+ msgid "To fix the time at which a backup should take place,"
2319
+ msgstr "Για να ρυθμίσετε την ώρα που θα λαμβάνεται το αντίγραφο ασφαλείας,"
2320
+
2321
+ #: admin.php:2101
2322
+ msgid "e.g. if your server is busy at day and you want to run overnight"
2323
+ msgstr "π.χ. εάν ο εξυπηρετητής σας είναι απασχολημένος τη μέρα και θέλετε να ληφθεί το αντίγραφο ασφαλείας τη νύχτα"
2324
+
2325
+ #: admin.php:2101
2326
+ msgid "use the \"Fix Time\" add-on"
2327
+ msgstr "χρησιμοποιήστε το πρόσθετο \"Fix Time\""
2328
+
2329
+ #: admin.php:2105
2330
+ msgid "Include in files backup"
2331
+ msgstr "Να συμπεριλαμβάνονται στα αρχεία του αντιγράφου ασφαλείας"
2332
+
2333
+ #: admin.php:2115
2334
+ msgid "Any other directories found inside wp-content"
2335
+ msgstr "Όλοι οι άλλοι φάκελοι που βρίσκονται μέσα στο wp-content"
2336
+
2337
+ #: admin.php:2121
2338
+ msgid "Exclude these:"
2339
+ msgstr "Να εξαιρεθούν αυτά:"
2340
+
2341
+ #: admin.php:1706
2342
+ msgid "Debug Database Backup"
2343
+ msgstr "Αποσφαλμάτωση αντιγράφου ασφαλείας της βάσης δεδομένων"
2344
+
2345
+ #: admin.php:1706
2346
+ msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
2347
+ msgstr "Αυτό θα προκαλέσει την άμεση δημιουργία αντιγράφων ασφαλείας της βάσης δεδομένων. Η σελίδα θα σταματήσει τη φόρτωση μέχρι να ολοκληρωθεί (δηλ., μη προγραμματισμένα). Η δημιουργία αντιγράφων ασφαλείας μπορεί κάλλιστα να μείνει από χρόνο, πραγματικά αυτό το κουμπί είναι χρήσιμο μόνο για τον έλεγχο ότι το αντίγραφο ασφαλείας είναι σε θέση να περάσει τα αρχικά στάδια, είτε για μικρές ιστοσελίδες του WordPress.."
2348
+
2349
+ #: admin.php:1712
2350
+ msgid "Wipe Settings"
2351
+ msgstr "Διαγραφή Ρυθμίσεων"
2352
+
2353
+ #: admin.php:1713
2354
+ msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2355
+ msgstr "Αυτό το κουμπί θα διαγράψει όλες τις ρυθμίσεις του UpdraftPlus (αλλά όχι οποιοδήποτε από τα υπάρχοντα αντίγραφα ασφαλείας που έχουν αποθηκευτεί στο σύννεφο). Στη συνέχεια, θα πρέπει να εισάγετε όλες τις ρυθμίσεις σας και πάλι. Μπορείτε επίσης, αν θέλετε, να το κάνετε αυτό πριν από την απενεργοποίηση/απεγκατάσταση του UpdraftPlus."
2356
+
2357
+ #: admin.php:1716
2358
+ msgid "Wipe All Settings"
2359
+ msgstr "Διαγραφή όλων των Ρυθμίσεεων"
2360
+
2361
+ #: admin.php:1716
2362
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
2363
+ msgstr "Αυτό το κουμπί θα διαγράψει όλες τις ρυθμίσεις του UpdraftPlus - είστε σίγουροι ότι θέλετε να το κάνετε αυτό;"
2364
+
2365
+ #: admin.php:1867
2366
+ msgid "show log"
2367
+ msgstr "προβολή αρχείου καταγραφής"
2368
+
2369
+ #: admin.php:1869
2370
+ msgid "delete schedule"
2371
+ msgstr "διαγραφή προγραμματισμένης εργασίας"
2372
+
2373
+ #: admin.php:115 admin.php:1905 admin.php:1930
2374
+ msgid "Delete"
2375
+ msgstr "Διαγραφή"
2376
+
2377
+ #: admin.php:1971
2378
+ msgid "The request to the filesystem to create the directory failed."
2379
+ msgstr "Η αίτηση στο σύστημα αρχείων για τη δημιουργία του φακέλου απέτυχε."
2380
+
2381
+ #: admin.php:1985
2382
+ msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
2383
+ msgstr "Ο φάκελος δημιουργήθηκε, αλλά έπρεπε να αλλάξουμε τα δικαιώματα του αρχείου σε 777 (world-writable) για να είμαστε σε θέση να γράψουμε σε αυτό. Θα πρέπει να ελέγξετε με τον πάροχο φιλοξενίας σας ότι αυτό δεν θα προκαλέσει κανένα πρόβλημα"
2384
+
2385
+ #: admin.php:1989
2386
+ msgid "The folder exists, but your webserver does not have permission to write to it."
2387
+ msgstr "Ο φάκελος υπάρχει, αλλά ο διακομιστής σας δεν έχει άδεια για να γράψει σε αυτό."
2388
+
2389
+ #: admin.php:1989
2390
+ msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
2391
+ msgstr "Θα πρέπει να συμβουλευτείτε τον πάροχο του εξυπηρετητή σας για να μάθετε να ρυθμίζετε τα δικαιώματα για ένα πρόσθετο του WordPress να μπορέσει να γράψει στο φάκελο."
2392
+
2393
+ #: admin.php:2043
2394
+ msgid "Download log file"
2395
+ msgstr "Μεταφόρτωση αρχείου καταγραφής"
2396
+
2397
+ #: admin.php:2047
2398
+ msgid "No backup has been completed."
2399
+ msgstr "Κανένα αντίγραφο ασφαλείας δεν έχει ολοκληρωθεί."
2400
+
2401
+ #: admin.php:2063
2402
+ msgid "File backup intervals"
2403
+ msgstr "Διαστήματα λήψης αντιγράφων ασφαλείας αρχείων"
2404
+
2405
+ #: admin.php:2066
2406
+ msgid "Manual"
2407
+ msgstr "Χειροκίνητα"
2408
+
2409
+ #: admin.php:2066
2410
+ msgid "Every 4 hours"
2411
+ msgstr "Κάθε 4 ώρες"
2412
+
2413
+ #: admin.php:2066
2414
+ msgid "Every 8 hours"
2415
+ msgstr "Κάθε 8 ώρες"
2416
+
2417
+ #: admin.php:2066
2418
+ msgid "Every 12 hours"
2419
+ msgstr "Κάθε 12 ώρες"
2420
+
2421
+ #: admin.php:1617
2422
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
2423
+ msgstr "Για να συνεχίσετε, πατήστε 'Λήψη αντιγράφου ασφαλείας'. Στη συνέχεια, να παρακολουθήσετε το πεδίο 'Τελευταίο Μήνυμα Καταγραφής' για να παρακολουθείτε τη δραστηριότητα μετά από περίπου 10 δευτερόλεπτα.Το WordPress θα πρέπει να ξεκινήσει τη δημιουργία αντιγράφων ασφαλείας η οποία εκτελείται στο παρασκήνιο."
2424
+
2425
+ #: admin.php:1624
2426
+ msgid "Go here for help."
2427
+ msgstr "Πηγαίνετε εδώ για βοήθεια."
2428
+
2429
+ #: admin.php:1630
2430
+ msgid "Multisite"
2431
+ msgstr "Πολλαπλές ιστοσελίδες"
2432
+
2433
+ #: admin.php:1634
2434
+ msgid "Do you need WordPress Multisite support?"
2435
+ msgstr "Χρειάζεστε υποστήριξη για το WordPress πολλαπλών ιστοσελίδων;"
2436
+
2437
+ #: admin.php:1634
2438
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
2439
+ msgstr "Παρακαλούμε δείτε το UpdraftPlus Premium ή το αυτόνομο πρόσθετο Multisite."
2440
+
2441
+ #: admin.php:1639
2442
+ msgid "Configure Backup Contents And Schedule"
2443
+ msgstr "Διαμόρφωση Περιεχομένων των Αντιγράφων Ασφαλείας και του Χρονοδιαγράμματος "
2444
+
2445
+ #: admin.php:1645
2446
+ msgid "Debug Information And Expert Options"
2447
+ msgstr "Πληροφορίες Εντοπισμού Σφαλμάτων και Επιλογές για Προχωρημένους"
2448
+
2449
+ #: admin.php:1648
2450
+ msgid "Web server:"
2451
+ msgstr "Εξυπηρετητής: "
2452
+
2453
+ #: admin.php:1651
2454
+ msgid "Peak memory usage"
2455
+ msgstr "Μέγιστη χρήση μνήμης"
2456
+
2457
+ #: admin.php:1652
2458
+ msgid "Current memory usage"
2459
+ msgstr "Τρέχουσα χρήση μνήμης"
2460
+
2461
+ #: admin.php:1653
2462
+ msgid "PHP memory limit"
2463
+ msgstr "Όριο μνήμης PHP"
2464
+
2465
+ #: admin.php:1654 admin.php:1656
2466
+ msgid "%s version:"
2467
+ msgstr "%s έκδοση:"
2468
+
2469
+ #: admin.php:1659 admin.php:1661 admin.php:1668
2470
+ msgid "Yes"
2471
+ msgstr "Ναι"
2472
+
2473
+ #: admin.php:1661 admin.php:1668
2474
+ msgid "No"
2475
+ msgstr "Όχι"
2476
+
2477
+ #: admin.php:1664
2478
+ msgid "PHP has support for ZipArchive::addFile:"
2479
+ msgstr "Η PHP διαθέτει υποστήριξη για το ZipArchive::addFile:"
2480
+
2481
+ #: admin.php:1679
2482
+ msgid "Total (uncompressed) on-disk data:"
2483
+ msgstr "Συνολικά (μη συμπιεσμένα) δεδομένα στο δίσκο:"
2484
+
2485
+ #: admin.php:1680
2486
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
2487
+ msgstr "Σημειώστε καλά: Η μέτρηση βασίζεται σε αυτό που ήταν, ή δεν ήταν, εξαιρουμένης της τελευταίας φοράς που αποθηκεύσατε τις επιλογές."
2488
+
2489
+ #: admin.php:1687
2490
+ msgid "count"
2491
+ msgstr "μέτρηση"
2492
+
2493
+ #: admin.php:1693
2494
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
2495
+ msgstr "Τα κουμπιά παρακάτω θα εκτελέσουν αμέσως τη δημιουργία αντιγράφων ασφαλείας, ανεξάρτητα από τον προγραμματισμό του WordPress. Αν αυτό λειτουργήσει, ενώ η προγραμματισμένη δημιουργία αντιγράφων ασφαλείας σας και το κουμπί \"Λήψη αντιγράφου ασφαλείας\" δεν κάνουν απολύτως τίποτα (δηλαδή δεν παράγουν ούτε καν αρχείο καταγραφής), τότε αυτό σημαίνει ότι ο προγραμματισμός σας δεν λειτουργεί. Θα πρέπει να απενεργοποιήστε όλα τα άλλα πρόσθετα που έχετε εγκατεστημένα και να δοκιμάστε το να πατήσετε το κουμπί \"Λήψη αντιγράφου ασφαλείας\". Αν αυτό αποτύχει, τότε επικοινωνήστε με τον πάροχο του εξυπηρετητή σας και ρωτήστε αν έχουν απενεργοποιήσει το wp-cron. Αν πετύχει, στη συνέχεια ενεργοποιήστε εκ νέου ένα-ένα τα άλλα πρόσθετά σας, και βρείτε αυτό που δημιουργεί το πρόβλημα και αναφέρετε το σφάλμα στο δημιουργό του."
2496
+
2497
+ #: admin.php:1701
2498
+ msgid "Debug Full Backup"
2499
+ msgstr "Αποσφαλμάτωση πλήρους αντιγράφου ασφαλείας"
2500
+
2501
+ #: admin.php:1701
2502
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
2503
+ msgstr "Αυτό θα προκαλέσει την άμεση δημιουργία αντιγράφων ασφαλείας. Η σελίδα θα σταματήσει τη φόρτωση μέχρι να ολοκληρωθεί (δηλ., μη προγραμματισμένη)."
2504
+
2505
+ #: admin.php:1489
2506
+ msgid "UpdraftPlus - Upload backup files"
2507
+ msgstr "UpdraftPlus - Ανέβασμα αρχείων αντιγράφων ασφαλείας"
2508
+
2509
+ #: admin.php:1490
2510
+ msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
2511
+ msgstr "Ανέβασμα αρχείων στο UpdraftPlus. Χρησιμοποιήστε το για να εισάγετε αντίγραφα ασφαλείας που έχουν ληφθεί σε μια διαφορετική εγκατάσταση του WordPress."
2512
+
2513
+ #: admin.php:1495 admin.php:2191
2514
+ msgid "or"
2515
+ msgstr "ή"
2516
+
2517
+ #: admin.php:85
2518
+ msgid "calculating..."
2519
+ msgstr "υπολογισμός..."
2520
+
2521
+ #: restorer.php:556 admin.php:93 admin.php:2828 admin.php:2846
2522
+ msgid "Error:"
2523
+ msgstr "Λάθος:"
2524
+
2525
+ #: admin.php:95
2526
+ msgid "You should:"
2527
+ msgstr "Θα πρέπει:"
2528
+
2529
+ #: admin.php:99
2530
+ msgid "Download error: the server sent us a response which we did not understand."
2531
+ msgstr "Λάθος μεταφόρτωσης: ο εξυπηρετητής έστειλε μια απάντηση την οποία δεν μπορούμε να καταλάβουμε."
2532
+
2533
+ #: admin.php:1515
2534
+ msgid "Delete backup set"
2535
+ msgstr "Διαγραφή σετ αντιγράφων ασφαλείας"
2536
+
2537
+ #: admin.php:1518
2538
+ msgid "Are you sure that you wish to delete this backup set?"
2539
+ msgstr "Είστε σίγουροι πως θέλετε να διαγράψετε αυτό το σετ αντιγράφων ασφαλείας;"
2540
+
2541
+ #: admin.php:1533
2542
+ msgid "Restore backup"
2543
+ msgstr "Επαναφορά αντιγράφου ασφαλείας"
2544
+
2545
+ #: admin.php:1534
2546
+ msgid "Restore backup from"
2547
+ msgstr "Επαναφορά αντιγράφου ασφαλείας από"
2548
+
2549
+ #: admin.php:1546
2550
+ msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
2551
+ msgstr "Η επαναφορά θα αντικαταστήσει τα θέματα, τα πρόσθετα, τις προσθήκες, τη βάση δεδομένων και/ή άλλους φακέλους περιεχομένου αυτής της ιστοσελίδας (σύμφωνα με όσα περιέχονται στο σετ αντιγράφου ασφαλείας, και την επιλογή σας)."
2552
+
2553
+ #: admin.php:1546
2554
+ msgid "Choose the components to restore"
2555
+ msgstr "Επιλέξτε τα στοιχεία που θα επαναφερθούν"
2556
+
2557
+ #: admin.php:1555
2558
+ msgid "Your web server has PHP's so-called safe_mode active."
2559
+ msgstr "Ο εξυπηρετητής σας έχει ενεργοποιημένη τη λεγόμενη ασφαλή_λειτουργία του PHP."
2560
+
2561
+ #: admin.php:1555
2562
+ msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
2563
+ msgstr "Αυτό καθιστά πολύ πιθανό να συμβούν λήξεις χρόνου -time-outs-. Σας προτείνουμε να απενεργοποιήσετε την ασφαλή_λειτουργία ή να επαναφέρετε μία μόνο οντότητα κάθε φορά, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">ή να κάνετε επαναφορά χειροκίνητα</a>."
2564
+
2565
+ #: admin.php:1568
2566
+ msgid "The following entity cannot be restored automatically: \"%s\"."
2567
+ msgstr "Η επόμενη οντότητα δεν μπορεί να επαναφερθεί αυτόματα: \"%s\"."
2568
+
2569
+ #: admin.php:1568
2570
+ msgid "You will need to restore it manually."
2571
+ msgstr "Θα πρέπει να το επαναφέρετε χειροκίνητα."
2572
+
2573
+ #: admin.php:1575
2574
+ msgid "%s restoration options:"
2575
+ msgstr "%s επιλογές επαναφοράς:"
2576
+
2577
+ #: admin.php:1583
2578
+ msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
2579
+ msgstr "Μπορείτε να αναζητήσετε και να αντικαταστήσετε τη βάση δεδομένων σας (για τη μετάβαση ενός δικτυακού τόπου σε μια νέα τοποθεσία/διεύθυνση URL) με το πρόσθετο Migrator - ακολουθήστε αυτό το σύνδεσμο για περισσότερες πληροφορίες"
2580
+
2581
+ #: admin.php:1594
2582
+ msgid "Do read this helpful article of useful things to know before restoring."
2583
+ msgstr "Διαβάστε αυτό το άρθρο το οποίο θα σας βοηθήσει να μάθετε χρήσιμα πράγματα πριν κάνετε επαναφορά. "
2584
+
2585
+ #: admin.php:1616
2586
+ msgid "Perform a one-time backup"
2587
+ msgstr "Εκτέλεση δημιουργίας αντιγράφου ασφαλείας μια φορά"
2588
+
2589
+ #: admin.php:1413
2590
+ msgid "Time now"
2591
+ msgstr "Τρέχουσα ώρα"
2592
+
2593
+ #: admin.php:113 admin.php:1423
2594
+ msgid "Backup Now"
2595
+ msgstr "Λήψη αντιγράφου ασφαλείας"
2596
+
2597
+ #: admin.php:117 admin.php:1430 admin.php:2603
2598
+ msgid "Restore"
2599
+ msgstr "Επαναφορά"
2600
+
2601
+ #: admin.php:1441
2602
+ msgid "Last log message"
2603
+ msgstr "Τελευταίο μήνυμα αρχείου καταγραφής"
2604
+
2605
+ #: admin.php:1443
2606
+ msgid "(Nothing yet logged)"
2607
+ msgstr "(Τίποτα δεν έχει ακόμη συνδεθεί)"
2608
+
2609
+ #: admin.php:1444
2610
+ msgid "Download most recently modified log file"
2611
+ msgstr "Κατεβάστε το πιο πρόσφατα τροποποιημένο αρχείο καταγραφής"
2612
+
2613
+ #: admin.php:1455
2614
+ msgid "Backups, logs & restoring"
2615
+ msgstr "Αντίγραφα ασφαλείας, αρχεία καταγραφής κι επαναφοράς"
2616
+
2617
+ #: admin.php:1456
2618
+ msgid "Press to see available backups"
2619
+ msgstr "Πατήστε για να δείτε τα διαθέσιμα αντίγραφα ασφαλείας"
2620
+
2621
+ #: admin.php:741 admin.php:796 admin.php:1456
2622
+ msgid "%d set(s) available"
2623
+ msgstr "%d σετ(ς) είναι διαθέσιμα"
2624
+
2625
+ #: admin.php:1472
2626
+ msgid "Downloading and restoring"
2627
+ msgstr "Μεταφόρτωση κι επαναφορά"
2628
+
2629
+ #: admin.php:1477
2630
+ msgid "Downloading"
2631
+ msgstr "Μεταφόρτωση"
2632
+
2633
+ #: admin.php:1477
2634
+ msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
2635
+ msgstr "Πατώντας ένα κουμπί για την Βάση δεδομένων/Πρόσθετα/Θέματα/Ανεβασμένα/Άλλα θα κάνει το UpdraftPlus να προσπαθήσει να μεταφορτώσει το αρχείο αντιγράφου ασφαλείας από το χώρο απομακρυσμένης αποθήκευσης (αν υπάρχει - π.χ. Amazon S3, Dropbox,Google Drive, FTP) στο διακομιστή σας. Στη συνέχεια, θα σας επιτραπεί να το κατεβάσετε στον υπολογιστή σας. Αν η μεταφόρτωση από το χώρο απομακρυσμένης αποθήκευσης σταματήσει να εξελίσσεται (περιμένετε 30 δευτερόλεπτα για να βεβαιωθείτε), πατήστε ξανά για να συνεχίσετε. Μην ξεχνάτε επίσης ότι μπορείτε να επισκεφθείτε την ιστοσελίδα του χώρου απομακρυσμένης αποθήκευσης στο σύννεφο άμεσα."
2636
+
2637
+ #: admin.php:1478
2638
+ msgid "More tasks:"
2639
+ msgstr "Περισσότερες εργασίες:"
2640
+
2641
+ #: admin.php:1478
2642
+ msgid "upload backup files"
2643
+ msgstr "Ανεβάστε τα αρχεία των αντιγράφων ασφαλείας"
2644
+
2645
+ #: admin.php:1478
2646
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
2647
+ msgstr "Πατήστε εδώ για να δείτε μέσα στο φάκελο του UpdraftPlus (στο χώρο του εξυπηρετητή σας) κάθε νέο σετ αντιγράφων ασφαλείας που έχετε ανεβάσει. Η θέση αυτού του φακέλου έχει οριστεί στις ρυθμίσεις για προχωρημένους, παρακάτω."
2648
+
2649
+ #: admin.php:1478
2650
+ msgid "rescan folder for new backup sets"
2651
+ msgstr "Επανέλεγχος φακέλου για νέα σετ αντιγράφων ασφαλείας"
2652
+
2653
+ #: admin.php:1479
2654
+ msgid "Opera web browser"
2655
+ msgstr "Φυλλομετρητής Opera"
2656
+
2657
+ #: admin.php:1479
2658
+ msgid "If you are using this, then turn Turbo/Road mode off."
2659
+ msgstr "Εάν χρησιμοποιείτε αυτόν τον φυλλομετρητή τότε απενεργοποιήστε το Turbo/Road mode."
2660
+
2661
+ #: admin.php:1484
2662
+ msgid "Google Drive"
2663
+ msgstr "Google Drive"
2664
+
2665
+ #: admin.php:1484
2666
+ msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
2667
+ msgstr "Η Google άλλαξε τις άδειες εγκατάστασης της πρόσφατα (Απρίλιος 2013). Για να κατεβάσετε ή να επαναφέρετε από το Google Drive, <strong>πρέπει</strong> να κάνετε εκ νέου επαλήθευση της ταυτότητας σας (χρησιμοποιώντας το σύνδεσμο στο τμήμα διαμόρφωσης του Google Drive)."
2668
+
2669
+ #: admin.php:1487
2670
+ msgid "This is a count of the contents of your Updraft directory"
2671
+ msgstr "Αυτή είναι μια καταμέτρηση του περιεχομένου του φακέλου σας του Updraft "
2672
+
2673
+ #: admin.php:1487
2674
+ msgid "Web-server disk space in use by UpdraftPlus"
2675
+ msgstr "Χώρος αποθήκευσης σε χρήση στο διακομιστή από το UpdraftPlus"
2676
+
2677
+ #: admin.php:1487
2678
+ msgid "refresh"
2679
+ msgstr "ανανέωση"
2680
+
2681
+ #: admin.php:1323
2682
+ msgid "By UpdraftPlus.Com"
2683
+ msgstr "Από το UpdraftPlus.Com"
2684
+
2685
+ #: admin.php:1323
2686
+ msgid "Lead developer's homepage"
2687
+ msgstr "Ιστοσελίδα του αρχι-προγραμματιστή"
2688
+
2689
+ #: admin.php:1323
2690
+ msgid "Donate"
2691
+ msgstr "Κάντε δωρεά"
2692
+
2693
+ #: admin.php:1323
2694
+ msgid "Version"
2695
+ msgstr "Έκδοση"
2696
+
2697
+ #: admin.php:1333
2698
+ msgid "Your backup has been restored."
2699
+ msgstr "Έγινε επαναφορά από το αντίγραφο ασφαλείας σας"
2700
+
2701
+ #: admin.php:1339
2702
+ msgid "Old directories successfully deleted."
2703
+ msgstr "Οι παλιοί φάκελοι διεγράφησαν επιτυχώς "
2704
+
2705
+ #: admin.php:1342
2706
+ msgid "Current limit is:"
2707
+ msgstr "Το τρέχων όριο είναι:"
2708
+
2709
+ #: admin.php:1350
2710
+ msgid "Delete Old Directories"
2711
+ msgstr "Διαγραφή Παλαιών Φακέλων"
2712
+
2713
+ #: admin.php:1362
2714
+ msgid "Existing Schedule And Backups"
2715
+ msgstr "Προγραμματισμός & Αντίγραφα Ασφαλείας"
2716
+
2717
+ #: admin.php:1366
2718
+ msgid "JavaScript warning"
2719
+ msgstr "προειδοποίηση JavaScript "
2720
+
2721
+ #: admin.php:1367
2722
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
2723
+ msgstr "Η διεπαφή του διαχειριστή χρησιμοποιεί τη JavaScript σε μεγάλο βαθμό. Θα πρέπει είτε να την ενεργοποιήσετε στο πρόγραμμα περιήγησής σας είτε να χρησιμοποιήσετε ένα πρόγραμμα περιήγησης που υποστηρίζει τη JavaScript."
2724
+
2725
+ #: admin.php:1380 admin.php:1393
2726
+ msgid "Nothing currently scheduled"
2727
+ msgstr "Δεν έχει επί του παρόντος προγραμματιστεί τίποτα "
2728
+
2729
+ #: admin.php:1385
2730
+ msgid "At the same time as the files backup"
2731
+ msgstr "Στον ίδιο χρόνο όπως και τα αρχεία των αντιγράφων ασφαλείας"
2732
+
2733
+ #: admin.php:1409
2734
+ msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
2735
+ msgstr "Όλοι οι χρόνοι που εμφανίζονται σε αυτήν την ενότητα χρησιμοποιούν τη ζώνη ώρας που έχει διαμορφωθεί στο WordPress, την οποία μπορείτε να ορίσετε στο Ρυθμίσεις -> Γενικά"
2736
+
2737
+ #: admin.php:1409
2738
+ msgid "Next scheduled backups"
2739
+ msgstr "Επόμενη προγραμματισμένη λήψη αντιγράφων ασφαλείας "
2740
+
2741
+ #: admin.php:1411
2742
+ msgid "Files"
2743
+ msgstr "Αρχεία"
2744
+
2745
+ #: admin.php:572 admin.php:1412 admin.php:1572 admin.php:1575 admin.php:2506
2746
+ #: admin.php:2508 admin.php:2869
2747
+ msgid "Database"
2748
+ msgstr "Βάση δεδομένων"
2749
+
2750
+ #: admin.php:312
2751
+ msgid "Your website is hosted using the %s web server."
2752
+ msgstr "Η ιστοσελίδα σας φιλοξενείτε χρησιμοποιώντας τον %s εξυπηρετητή."
2753
+
2754
+ #: admin.php:312
2755
+ msgid "Please consult this FAQ if you have problems backing up."
2756
+ msgstr "Παρακαλούμε συμβουλευτείτε τις Συχνές Ερωτήσεις αν έχετε προβλήματα κατά τη λήψη των αντιγράφων ασφαλείας."
2757
+
2758
+ #: admin.php:325 admin.php:329
2759
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
2760
+ msgstr "Κάντε κλικ εδώ και να πιστοποιήσετε τον λογαριασμό σας στο %s (δεν υπάρχει η δυνατότητα δημιουργίας αντιγράφων ασφαλείας στο %s χωρίς αυτόν)"
2761
+
2762
+ #: admin.php:510 admin.php:536
2763
+ msgid "Nothing yet logged"
2764
+ msgstr "Τίποτα δεν έχει ακόμη συνδεθεί"
2765
+
2766
+ #: admin.php:748
2767
+ msgid "Schedule backup"
2768
+ msgstr "Προγραμματισμένη λήψη αντιγράφων ασφαλείας"
2769
+
2770
+ #: admin.php:752
2771
+ msgid "Failed."
2772
+ msgstr "Αποτυχία:"
2773
+
2774
+ #: admin.php:754
2775
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
2776
+ msgstr "Εντάξει. Θα πρέπει σύντομα να δείτε δραστηριότητα στο πεδίο \"Τελευταίο μήνυμα αρχείου καταγραφής\" πιο κάτω."
2777
+
2778
+ #: admin.php:754
2779
+ msgid "Nothing happening? Follow this link for help."
2780
+ msgstr "Δε συμβαίνει τίποτα; Ακολουθήστε αυτό το σύνδεσμο για βοήθεια."
2781
+
2782
+ #: admin.php:770
2783
+ msgid "Job deleted"
2784
+ msgstr "Η εργασία διεγράφη. "
2785
+
2786
+ #: admin.php:777
2787
+ msgid "Could not find that job - perhaps it has already finished?"
2788
+ msgstr "Δεν μπόρεσε να βρεθεί αυτή η εργασία - μήπως έχει ήδη τελειώσει;"
2789
+
2790
+ #: restorer.php:987 restorer.php:1030 admin.php:788 admin.php:2811
2791
+ msgid "Error"
2792
+ msgstr "Λάθος"
2793
+
2794
+ #: admin.php:827
2795
+ msgid "Download failed"
2796
+ msgstr "Αποτυχία μεταφόρτωσης "
2797
+
2798
+ #: admin.php:94 admin.php:845
2799
+ msgid "File ready."
2800
+ msgstr "Το αρχείο είναι έτοιμο."
2801
+
2802
+ #: admin.php:853
2803
+ msgid "Download in progress"
2804
+ msgstr "Μεταφόρτωση σε εξέλιξη"
2805
+
2806
+ #: admin.php:856
2807
+ msgid "No local copy present."
2808
+ msgstr "Δεν υπάρχει τοπικό αντίγραφο."
2809
+
2810
+ #: admin.php:1132
2811
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2812
+ msgstr "Λανθασμένη μορφή αρχείου - αυτό δε μοιάζει με αρχείο που έχει δημιουργηθεί από το UpdraftPlus"
2813
+
2814
+ #: admin.php:1219
2815
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2816
+ msgstr "Λανθασμένη μορφή αρχείου - αυτό δε μοιάζει με κρυπτογραφημένο αρχείο βάσης δεδομένων που έχει δημιουργηθεί από το UpdraftPlus "
2817
+
2818
+ #: admin.php:1248
2819
+ msgid "Restore successful!"
2820
+ msgstr "Επιτυχής επαναφορά!"
2821
+
2822
+ #: admin.php:1249 admin.php:1275 admin.php:1294
2823
+ msgid "Actions"
2824
+ msgstr "Ενέργειες"
2825
+
2826
+ #: admin.php:1249 admin.php:1254 admin.php:1275 admin.php:1294
2827
+ msgid "Return to UpdraftPlus Configuration"
2828
+ msgstr "Επιστροφή στις Ρυθμίσεις του UpdraftPlus "
2829
+
2830
+ #: admin.php:1264
2831
+ msgid "Remove old directories"
2832
+ msgstr "Διαγραφή παλαιών φακέλων "
2833
+
2834
+ #: admin.php:1270
2835
+ msgid "Old directories successfully removed."
2836
+ msgstr "Οι παλαιοί φάκελοι διεγράφησαν επιτυχώς."
2837
+
2838
+ #: admin.php:1273
2839
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
2840
+ msgstr "Η διαγραφή των παλαιών φακέλων απέτυχε για κάποιο λόγο. Ίσως χρειαστεί να το κάνετε χειροκίνητα."
2841
+
2842
+ #: admin.php:1285
2843
+ msgid "Backup directory could not be created"
2844
+ msgstr "Αποτυχία δημιουργίας φακέλου των αντιγράφων ασφαλείας"
2845
+
2846
+ #: admin.php:1292
2847
+ msgid "Backup directory successfully created."
2848
+ msgstr "Η δημιουργία φακέλου των αντιγράφων ασφαλείας έγινε επιτυχώς."
2849
+
2850
+ #: admin.php:1316
2851
+ msgid "Your settings have been wiped."
2852
+ msgstr "Οι ρυθμίσεις σας διεγράφησαν."
2853
+
2854
+ #: updraftplus.php:2069 updraftplus.php:2075
2855
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
2856
+ msgstr "Παρακαλούμε βοηθήστε το UpdraftPlus κάνοντας θετική κριτική στο wordpress.org"
2857
+
2858
+ #: updraftplus.php:2082
2859
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
2860
+ msgstr "Θέλετε ακόμα περισσότερα χαρακτηριστικά και βοήθεια; Δείτε το UpdraftPlus Premium"
2861
+
2862
+ #: updraftplus.php:2092
2863
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
2864
+ msgstr "Δείτε το UpdraftPlus.Com για βοήθεια, πρόσθετα και υποστήριξη"
2865
+
2866
+ #: updraftplus.php:2095
2867
+ msgid "Want to say thank-you for UpdraftPlus?"
2868
+ msgstr "Θέλετε να πείτε ευχαριστώ UpdraftPlus;"
2869
+
2870
+ #: updraftplus.php:2095
2871
+ msgid "Please buy our very cheap 'no adverts' add-on."
2872
+ msgstr "Παρακαλώ αγοράστε το πολύ φθηνό και χωρίς διαφημίσεις πρόσθετο "
2873
+
2874
+ #: backup.php:1168
2875
+ msgid "Infinite recursion: consult your log for more information"
2876
+ msgstr "Άπειρη αναδρομή: συμβουλευτείτε το αρχείο καταγραφής σας για περισσότερες πληροφορίες"
2877
+
2878
+ #: backup.php:158
2879
+ msgid "Could not create %s zip. Consult the log file for more information."
2880
+ msgstr "Αδυναμία δημιουργίας του αρχείου zip %s. συμβουλευτείτε το αρχείο καταγραφής για περισσότερες πληροφορίες."
2881
+
2882
+ #: admin.php:164 admin.php:186
2883
+ msgid "Allowed Files"
2884
+ msgstr "Επιτρεπόμενα Αρχεία"
2885
+
2886
+ #: admin.php:249
2887
+ msgid "Settings"
2888
+ msgstr "Ρυθμίσεις"
2889
+
2890
+ #: admin.php:253
2891
+ msgid "Add-Ons / Pro Support"
2892
+ msgstr "Πρόσθετα / Πρόσθετη Υποστήριξη "
2893
+
2894
+ #: admin.php:296 admin.php:300 admin.php:304 admin.php:308 admin.php:312
2895
+ #: admin.php:321 admin.php:1474 admin.php:2396 admin.php:2403 admin.php:2405
2896
+ msgid "Warning"
2897
+ msgstr "Προειδοποίηση"
2898
+
2899
+ #: admin.php:304
2900
+ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2901
+ msgstr "Έχετε λιγότερο από %s ελεύθερο χώρο στο δίσκο που το UpdraftPlus έχει ρυθμιστεί να χρησιμοποιήσει για να δημιουργήσει αντίγραφα ασφαλείας. Το UpdraftPlus είναι πιθανό να ξεμείνει από διαθέσιμο χώρο. Επικοινωνήστε με το λειτουργό του διακομιστή σας (π.χ. την εταιρεία του εξυπηρετητή σας) για να επιλύσετε αυτό το ζήτημα."
2902
+
2903
+ #: admin.php:308
2904
+ msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2905
+ msgstr "Το UpdraftPlus δεν υποστηρίζει επίσημα εκδόσεις του WordPress πριν από την %s. Μπορεί να λειτουργήσει για εσάς αλλά αν όχι, παρακαλούμε να γνωρίζετε πως δε θα υπάρξει διαθέσιμη υποστήριξη μέχρι να αναβαθμίσετε το WordPress."
2906
+
2907
+ #: backup.php:453
2908
+ msgid "Backed up"
2909
+ msgstr "Ελήφθησαν τα αντίγραφα ασφαλείας"
2910
+
2911
+ #: backup.php:453
2912
+ msgid "WordPress backup is complete"
2913
+ msgstr "Η λήψη αντιγράφων ασφαλείας του WordPress ολοκληρώθηκε"
2914
+
2915
+ #: backup.php:453
2916
+ msgid "Backup contains"
2917
+ msgstr "Το αντίγραφο ασφαλείας περιέχει"
2918
+
2919
+ #: backup.php:453
2920
+ msgid "Latest status"
2921
+ msgstr "Τελευταία ενημέρωση κατάστασης"
2922
+
2923
+ #: backup.php:532
2924
+ msgid "Backup directory (%s) is not writable, or does not exist."
2925
+ msgstr "Ο φάκελος (%s) των αντιγράφων ασφαλείας δεν είναι εγγράψιμος ή δεν υπάρχει."
2926
+
2927
+ #: updraftplus.php:1786
2928
+ msgid "Could not read the directory"
2929
+ msgstr "Αδυναμία ανάγνωσης του φακέλου"
2930
+
2931
+ #: updraftplus.php:1803
2932
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
2933
+ msgstr "Δεν ήταν δυνατή η αποθήκευση του ιστορικού των αντιγράφων ασφαλείας επειδή δεν υπάρχει πίνακας αντιγράφων ασφαλείας. Η δημιουργία αντιγράφων ασφαλείας πιθανώς απέτυχε."
2934
+
2935
+ #: backup.php:1100
2936
+ msgid "Could not open the backup file for writing"
2937
+ msgstr "Αδυναμία ανοίγματος του αρχείου του αντιγράφου ασφαλείας για εγγραφή"
2938
+
2939
+ #: backup.php:1135
2940
+ msgid "Generated: %s"
2941
+ msgstr "Δημιουργήθηκε: %s"
2942
+
2943
+ #: backup.php:1136
2944
+ msgid "Hostname: %s"
2945
+ msgstr "Όνομα κεντρικού υπολογιστή: %s"
2946
+
2947
+ #: backup.php:1137
2948
+ msgid "Database: %s"
2949
+ msgstr "Βάση δεδομένων: %s"
2950
+
2951
+ #: backup.php:762
2952
+ msgid "Table: %s"
2953
+ msgstr "Πίνακας: %s"
2954
+
2955
+ #: backup.php:935
2956
+ msgid "Delete any existing table %s"
2957
+ msgstr "Διαγραφή υπαρχόντων πινάκων %s"
2958
+
2959
+ #: backup.php:941
2960
+ msgid "Table structure of table %s"
2961
+ msgstr "Δομή πίνακα του πίνακα %s"
2962
+
2963
+ #: backup.php:945
2964
+ msgid "Error with SHOW CREATE TABLE for %s."
2965
+ msgstr "Λάθος του SHOW CREATE TABLE για το %s."
2966
+
2967
+ #: backup.php:1037
2968
+ msgid "End of data contents of table %s"
2969
+ msgstr "Τέλος περιεχόμενου των δεδομένων του πίνακα %s"
2970
+
2971
+ #: updraftplus.php:1974 restorer.php:87 admin.php:887
2972
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
2973
+ msgstr "Η αποκρυπτογράφηση απέτυχε. Το αρχείο της βάσης δεδομένων είναι κρυπτογραφημένο αλλά δεν έχει εισαχθεί κανένα κλειδί κρυπτογράφησης."
2974
+
2975
+ #: updraftplus.php:1984 restorer.php:97 admin.php:901
2976
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
2977
+ msgstr "Η αποκρυπτογράφηση απέτυχε. Η πιο πιθανή αιτία είναι ότι χρησιμοποιήσατε λάθος κλειδί."
2978
+
2979
+ #: updraftplus.php:1984
2980
+ msgid "The decryption key used:"
2981
+ msgstr "Το κλειδί αποκρυπτογράφησης που χρησιμοποιήθηκε είναι το:"
2982
+
2983
+ #: updraftplus.php:2002
2984
+ msgid "File not found"
2985
+ msgstr "Το αρχείο δεν βρέθηκε"
2986
+
2987
+ #: updraftplus.php:2067
2988
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
2989
+ msgstr "Μπορείτε να μεταφράσετε; Θέλετε να βελτιώσετε το UpdraftPlus για ομιλούντες την δική σας γλώσσα;"
2990
+
2991
+ #: updraftplus.php:2069 updraftplus.php:2075
2992
+ msgid "Like UpdraftPlus and can spare one minute?"
2993
+ msgstr "Σας αρέσει το UpdraftPlus και μπορείτε να αφιερώσετε ένα λεπτό;"
2994
+
2995
+ #: updraftplus.php:946
2996
+ msgid "Themes"
2997
+ msgstr "Θέματα"
2998
+
2999
+ #: updraftplus.php:947
3000
+ msgid "Uploads"
3001
+ msgstr "Μεταφορτώσεις"
3002
+
3003
+ #: updraftplus.php:962
3004
+ msgid "Others"
3005
+ msgstr "Άλλα"
3006
+
3007
+ #: updraftplus.php:1347
3008
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
3009
+ msgstr "Αδυναμία δημιουργίας αρχείων στο φάκελο των αντιγράφων ασφαλείας. Η δημιουργία αντιγράφων ασφαλείας ματαιώθηκε - ελέγξτε τις ρυθμίσεις του UpdraftPlus."
3010
+
3011
+ #: backup.php:1072
3012
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
3013
+ msgstr "Παρουσιάστηκε σφάλμα κρυπτογράφησης κατά την κρυπτογράφηση της βάσης δεδομένων. Η κρυπτογράφηση ματαιώθηκε."
3014
+
3015
+ #: updraftplus.php:1503
3016
+ msgid "The backup apparently succeeded and is now complete"
3017
+ msgstr "Η διαδικασία λήψης αντιγράφων ασφαλείας έγινε και ολοκληρώθηκε επιτυχώς"
3018
+
3019
+ #: updraftplus.php:1516
3020
+ msgid "The backup attempt has finished, apparently unsuccessfully"
3021
+ msgstr "Η προσπάθεια για τη λήψη αντιγράφων ασφαλείας τελείωσε, προφανώς όμως ανεπιτυχώς"
3022
+
3023
+ #: options.php:34
3024
+ msgid "UpdraftPlus Backups"
3025
+ msgstr "Αντίγραφα ασφαλείας του UpdraftPlus "
3026
+
3027
+ #: updraftplus.php:400 updraftplus.php:405 updraftplus.php:410 admin.php:325
3028
+ #: admin.php:329
3029
+ msgid "UpdraftPlus notice:"
3030
+ msgstr "Σημείωση του UpdraftPlus:"
3031
+
3032
+ #: updraftplus.php:400
3033
+ msgid "The log file could not be read."
3034
+ msgstr "Το αρχείο καταγραφής δεν μπορεί να διαβαστεί."
3035
+
3036
+ #: updraftplus.php:405
3037
+ msgid "No log files were found."
3038
+ msgstr "Δεν βρέθηκε κανένα αρχείο καταγραφής."
3039
+
3040
+ #: updraftplus.php:410
3041
+ msgid "The given file could not be read."
3042
+ msgstr "Το αρχείο που δώσατε δεν μπορεί να διαβαστεί."
3043
+
3044
+ #: updraftplus.php:945
3045
+ msgid "Plugins"
3046
+ msgstr "Πρόσθετα"
languages/updraftplus-it_IT.mo CHANGED
Binary file
languages/updraftplus-it_IT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-09-17 09:04:42+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,177 +10,453 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
- #: admin.php:1776
14
- msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
15
  msgstr ""
16
 
17
- #: admin.php:1729
18
- msgid "(%s%%, file %s of %s)"
19
  msgstr ""
20
 
21
- #: addons/sftp.php:408
22
- msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
23
  msgstr ""
24
 
25
- #: addons/sftp.php:410
26
- msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
27
  msgstr ""
28
 
29
- #: addons/autobackup.php:29 addons/autobackup.php:229
30
- msgid "Read more about how this works..."
31
  msgstr ""
32
 
33
- #: addons/sftp.php:298
34
- msgid "Use SCP instead of SFTP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgstr ""
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  #: addons/sftp.php:36
38
  msgid "SCP/SFTP password"
39
- msgstr ""
40
 
41
  #: addons/sftp.php:34
42
  msgid "SCP/SFTP host setting"
43
- msgstr ""
44
 
45
  #: addons/sftp.php:35
46
  msgid "SCP/SFTP user setting"
47
- msgstr ""
48
 
49
- #: methods/email.php:20
50
  msgid "Backup is of: %s."
51
- msgstr ""
52
 
53
- #: methods/email.php:27
54
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
55
- msgstr ""
56
 
57
- #: methods/cloudfiles.php:372 methods/s3.php:349
58
  msgid "%s settings test result:"
59
- msgstr ""
60
 
61
- #: admin.php:2355
62
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
63
- msgstr ""
64
 
65
- #: admin.php:2355
66
  msgid "(Not finished)"
67
- msgstr ""
68
 
69
- #: admin.php:2195
70
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
71
- msgstr ""
72
 
73
- #: admin.php:2195
74
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
75
- msgstr ""
76
 
77
- #: admin.php:2168
78
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
79
- msgstr ""
80
 
81
- #: admin.php:1738
82
  msgid "Waiting until scheduled time to retry because of errors"
83
- msgstr ""
84
 
85
- #: admin.php:1743
86
  msgid "Backup finished"
87
- msgstr ""
88
 
89
- #: admin.php:1746
90
  msgid "Unknown"
91
- msgstr ""
92
 
93
- #: admin.php:1761
94
  msgid "next resumption: %d (after %ss)"
95
- msgstr ""
96
 
97
- #: admin.php:1762
98
  msgid "last activity: %ss ago"
99
- msgstr ""
100
 
101
- #: admin.php:1772
102
  msgid "Job ID: %s"
103
- msgstr ""
104
 
105
- #: admin.php:1700
106
  msgid "table: %s"
107
- msgstr ""
108
 
109
- #: admin.php:1708
110
  msgid "Created database backup"
111
- msgstr ""
112
 
113
- #: admin.php:1713
114
  msgid "Encrypting database"
115
- msgstr ""
116
 
117
- #: admin.php:1717
118
  msgid "Encrypted database"
119
- msgstr ""
120
 
121
- #: admin.php:1722
122
  msgid "Uploading files to remote storage"
123
- msgstr ""
124
 
125
- #: admin.php:1734
126
  msgid "Pruning old backup sets"
127
- msgstr ""
128
 
129
- #: admin.php:1680
130
  msgid "Creating file backup zips"
131
- msgstr ""
132
 
133
- #: admin.php:1693
134
  msgid "Created file backup zips"
135
- msgstr ""
136
 
137
- #: admin.php:1698
138
  msgid "Creating database backup"
139
- msgstr ""
140
 
141
- #: admin.php:1675
142
  msgid "Backup begun"
143
- msgstr ""
144
 
145
- #: admin.php:1391
146
  msgid "Backups in progress:"
147
- msgstr ""
148
 
149
- #: admin.php:288
150
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
151
- msgstr ""
152
 
153
- #: restorer.php:283 restorer.php:289
154
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
155
- msgstr ""
156
 
157
- #: restorer.php:283
158
  msgid "folder"
159
- msgstr ""
160
 
161
- #: restorer.php:289
162
  msgid "file"
163
- msgstr ""
164
 
165
- #: backup.php:1046
166
  msgid "Failed to open directory (check the file permissions): %s"
167
- msgstr ""
168
 
169
- #: backup.php:1040
170
  msgid "%s: unreadable file - could not be backed up (check the file permissions)"
171
- msgstr ""
172
 
173
- #: updraftplus.php:1244
174
  msgid "The backup has not finished; a resumption is scheduled"
175
- msgstr ""
176
 
177
- #: updraftplus.php:494
178
- msgid "You should go to the W3 Total Cache settings page and turn it off."
179
- msgstr ""
180
-
181
- #: updraftplus.php:871
182
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
183
- msgstr ""
184
 
185
  #: methods/googledrive.php:482
186
  msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
@@ -191,72 +467,68 @@ msgstr "<strong>Questo NON è il nome della cartella</strong>. Per ottenere l'ID
191
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
192
  msgstr "L'autenticazione %s non può andare avanti, perché qualcos'altro sul tuo sito l'ha interrotta. Prova a disabilitare gli altri plugin e a fare il passaggio a un tema predefinito. (In particolare, si sta cercando il componente che invia l'output (molto probabilmente avvertimenti e/o errori PHP) prima dell'inizio della pagina. Spegnere le impostazioni di debug può anche aiutare)."
193
 
194
- #: admin.php:1283
195
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
196
  msgstr "Il tuo limite di memoria PHP (fissato dalla società di web hosting) è molto basso. UpdraftPlus ha tentato di sollevarlo, ma senza successo. Questo plugin può lavorare con un limite di memoria di almeno di 64 Mb - soprattutto se si sono caricati file di grandi dimensioni (anche se d'altra parte, molti siti avranno successo con un limite di 32Mb - la vostra esperienza può variare)."
197
 
198
- #: addons/autobackup.php:173
199
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - now proceeding with the updates..."
200
  msgstr "Backup riuscito <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(vedi il log...)</a> - ora si procede con gli aggiornamenti..."
201
 
202
- #: addons/autobackup.php:225
203
  msgid "UpdraftPlus Automatic Backups"
204
  msgstr "UpdraftPlus Backup automatico"
205
 
206
- #: addons/autobackup.php:230
207
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
208
  msgstr "Non abortire dopo aver premuto Procedi sotto - attendere il backup completo."
209
 
210
- #: addons/autobackup.php:231
211
  msgid "Proceed with update"
212
  msgstr "Procedere con l'aggiornamento"
213
 
214
- #: addons/autobackup.php:53 addons/autobackup.php:116
215
- msgid "(logs can be found in the UpdraftPlus settings page as normal - or will be shown here if something goes wrong)..."
216
- msgstr "(il log può essere essere trovato nella pagina delle impostazioni di UpdraftPlus - o saranno mostrati qui se qualcosa va storto) ..."
217
-
218
- #: addons/autobackup.php:57 addons/autobackup.php:122
219
  msgid "Starting automatic backup..."
220
  msgstr "Avvio backup automatico..."
221
 
222
- #: addons/autobackup.php:79
223
  msgid "plugins"
224
  msgstr "plugin"
225
 
226
- #: addons/autobackup.php:86
227
  msgid "themes"
228
  msgstr "temi"
229
 
230
- #: addons/autobackup.php:108
231
  msgid "You do not have sufficient permissions to update this site."
232
  msgstr "Non si dispone di autorizzazioni sufficienti per aggiornare questo sito."
233
 
234
- #: addons/autobackup.php:116
235
  msgid "Creating database backup with UpdraftPlus..."
236
  msgstr "Creazione del backup del database con UpdraftPlus in corso..."
237
 
238
- #: addons/autobackup.php:124 addons/autobackup.php:194
239
- #: addons/autobackup.php:217
240
  msgid "Automatic Backup"
241
  msgstr "Backup Automatico"
242
 
243
- #: addons/autobackup.php:151
244
  msgid "Creating backup with UpdraftPlus..."
245
  msgstr "Creazione del backup con UpdraftPlus..."
246
 
247
- #: addons/autobackup.php:158
248
  msgid "Errors have occurred:"
249
  msgstr "Si sono verificati errori:"
250
 
251
- #: addons/autobackup.php:171
252
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - now proceeding with the updates..."
253
  msgstr "Backup riuscito <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(vedi il log...)</a> - ora si procede con gli aggiornamenti..."
254
 
255
- #: addons/autobackup.php:29 addons/autobackup.php:229
256
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
257
  msgstr "Backup Automatico (se rilevante) di plugin, temi e il database di WordPress con UpdraftPlus prima di aggiornare"
258
 
259
- #: addons/autobackup.php:53
260
  msgid "Creating %s and database backup with UpdraftPlus..."
261
  msgstr "Creazione di %s e backup del database con UpdraftPlus..."
262
 
@@ -276,215 +548,215 @@ msgstr "Questo non sembra un backup valido del core di WordPress - il file %s è
276
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
277
  msgstr "Se non si è sicuri, è consigliabile di non procedere: si potrebbe distruggere questa installazione di WordPress."
278
 
279
- #: admin.php:1264
280
  msgid "Support"
281
  msgstr "Supporto"
282
 
283
- #: admin.php:1264
284
  msgid "More plugins"
285
  msgstr "Altri plugin"
286
 
287
- #: admin.php:905
288
  msgid "%s version: %s"
289
  msgstr "%s versione: %s"
290
 
291
- #: admin.php:906
292
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
293
  msgstr "Si sta importando da una nuova versione di WordPress (%s) ad una più vecchia (%s). Non ci sono garanzie che WordPress sia in grado di gestire questo."
294
 
295
- #: admin.php:980
296
  msgid "This database backup is missing core WordPress tables: %s"
297
  msgstr "In questo backup del database mancano le tabelle del core di WordPress: %s"
298
 
299
- #: admin.php:983
300
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
301
  msgstr "UpdraftPlus non è riuscito a trovare il prefisso della tabella durante la scansione dell backup del database."
302
 
303
- #: admin.php:862
304
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
305
  msgstr "Il database è troppo piccolo per essere un database di WordPress valido (dimensione: %s Kb)."
306
 
307
- #: admin.php:130 admin.php:277
308
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
309
  msgstr "UpdraftPlus Premium può fare <strong>automaticamente</strong> un backup dei vostri plugin o dei temi e database prima dell'aggiornamento."
310
 
311
- #: admin.php:130 admin.php:277
312
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
313
  msgstr "Essere in sicurezza ogni volta, senza bisogno di ricordare - seguire questo link per saperne di più."
314
 
315
- #: admin.php:262
316
  msgid "Update Plugin"
317
  msgstr "Aggiornamento Plugin"
318
 
319
- #: admin.php:266
320
  msgid "Update Theme"
321
  msgstr "Aggiornamento Tema"
322
 
323
- #: admin.php:128 admin.php:275
324
  msgid "Dismiss (for %s weeks)"
325
  msgstr "Respingere (per %s settimane)"
326
 
327
- #: admin.php:129 admin.php:276
328
  msgid "Be safe with an automatic backup"
329
  msgstr "Al sicuro con un backup automatico"
330
 
331
- #: restorer.php:988
332
  msgid "Uploads path (%s) does not exist - resetting (%s)"
333
  msgstr "Il percorso di caricamento (%s) non esiste - reset (%s)"
334
 
335
- #: admin.php:1268
336
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
337
  msgstr "Se è ancora possibile leggere queste parole dopo che il caricamento della pagina è terminato, allora c'è un problema JavaScript o jQuery nel sito."
338
 
339
- #: admin.php:109
340
  msgid "Follow this link to attempt decryption and download the database file to your computer."
341
  msgstr "Segui questo link per tentare la decrittazione e scaricare il file di database sul tuo computer."
342
 
343
- #: admin.php:110
344
  msgid "This decryption key will be attempted:"
345
  msgstr "Questa chiave di decifratura verrà tentata:"
346
 
347
- #: admin.php:111
348
  msgid "Unknown server response:"
349
  msgstr "Risposta del server sconosciuta:"
350
 
351
- #: admin.php:112
352
  msgid "Unknown server response status:"
353
  msgstr "Stato di risposta del server sconosciuto:"
354
 
355
- #: admin.php:113
356
  msgid "The file was uploaded."
357
  msgstr "Il fil eè stato caricato."
358
 
359
- #: admin.php:104
360
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
361
  msgstr "Questo file non sembra essere un archivio di backup UpdraftPlus (questi file sono .zip o .gz che hanno un nome come:... Backup_(data)_(nome del sito)_(codice) _ (tipo).(zip|gz) ). Tuttavia, gli archivi UpdraftPlus sono file zip/SQL standard - quindi se si è sicuri che il file ha il formato giusto, allora è possibile rinominarla per percorrere quel modello."
362
 
363
- #: admin.php:105
364
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
365
  msgstr "(assicurarsi che si stava tentando di caricare un file zip precedentemente creato da UpdraftPlus)"
366
 
367
- #: admin.php:106
368
  msgid "Upload error:"
369
  msgstr "Errore di caricamento:"
370
 
371
- #: admin.php:107
372
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
373
  msgstr "Questo file non sembra essere un archivio database crittografato da UpdraftPlus (questi file sono file gz.crypt che hanno un nome come:. Backup_(data)_(nome del sito)_(codice)_db.crypt.gz)."
374
 
375
- #: admin.php:108
376
  msgid "Upload error"
377
  msgstr "Errore caricamento"
378
 
379
- #: admin.php:97
380
  msgid "Delete from your web server"
381
  msgstr "Cancella dal tuo web server"
382
 
383
- #: admin.php:98
384
  msgid "Download to your computer"
385
  msgstr "Scarica sul tuo computer"
386
 
387
- #: admin.php:99
388
  msgid "and then, if you wish,"
389
  msgstr "e poi, se vuoi,"
390
 
391
- #: methods/s3.php:369
392
  msgid "Examples of S3-compatible storage providers:"
393
  msgstr "Esempi di provider di storage S3-compatibili:"
394
 
395
- #: methods/googledrive.php:208
396
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
397
  msgstr "Previsto il fallimento dell'upload: il limite di %s per ogni singolo file è %s, mentre il file è %s Gb (%d byte)"
398
 
399
- #: backup.php:667
400
  msgid "The backup directory is not writable - the database backup is expected to shortly fail."
401
  msgstr "La cartella di backup non è scrivibile - il backup del database dovrebbe fallire a breve."
402
 
403
- #: admin.php:2699
404
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
405
  msgstr "Non verrà cancellato nessun archivio dopo averlo scompattato, perché non c'è un cloud storage per questo backup"
406
 
407
- #: admin.php:2407
408
  msgid "(%d archive(s) in set)."
409
  msgstr "(%d archivi nel set)."
410
 
411
- #: admin.php:2410
412
  msgid "You appear to be missing one or more archives from this multi-archive set."
413
  msgstr "Sembra che uno o più archivi di questo set multi-archivio sia mancante."
414
 
415
- #: admin.php:2167
416
  msgid "Split archives every:"
417
  msgstr "Dividi gli archivi ogni:"
418
 
419
- #: admin.php:2041
420
  msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
421
  msgstr "Se si immettono più file/directory, separarli con le virgole. È possibile utilizzare un * alla fine di una voce come wildcard."
422
 
423
- #: admin.php:90
424
  msgid "Error: the server sent an empty response."
425
  msgstr "Errore: il server ha inviato una risposta vuota."
426
 
427
- #: admin.php:91
428
  msgid "Warnings:"
429
  msgstr "Attenzione:"
430
 
431
- #: admin.php:93
432
  msgid "Error: the server sent us a response (JSON) which we did not understand."
433
  msgstr "Errore: il server ha inviato una risposta sconosciuta (JSON)."
434
 
435
- #: admin.php:1287
436
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
437
  msgstr "La tua installazione di WordPress ha vecchie directory dal suo stato precedente il ripristinato/migrazione (informazioni tecniche: questi hanno un suffisso -old). Utilizzare questo pulsante per eliminarle (se si è verificato che il ripristina ha funzionato)."
438
 
439
- #: admin.php:1081
440
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
441
  msgstr "Questo sembra un file creato da UpdraftPlus, ma questa installazione non riconosce questo tipo di oggetto:%s. Forse è necessario installare un add-on?"
442
 
443
- #: admin.php:571
444
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
445
  msgstr "L'archivio di backup è stato processato correttamente. Ora premi ancora Ripristina per procedere."
446
 
447
- #: admin.php:573
448
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
449
  msgstr "I file di archivio di backup sono stati elaborati, ma con alcune avvertenze. Se tutto va bene, premere nuovamente Ripristina per procedere. Altrimenti, annullare e correggere eventuali problemi."
450
 
451
- #: admin.php:575
452
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
453
  msgstr "I file di archivio di backup sono stati elaborati, ma con alcuni errori. Avrete bisogno di cancellare e correggere gli eventuali problemi prima di riprovare."
454
 
455
- #: admin.php:479
456
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
457
  msgstr "L'archivio di backup di questo file non è stato trovato. Il metodo di archiviazione remota in uso (%s) non ci permette di recuperare il file. Per eseguire qualsiasi ripristino con UpdraftPlus, è necessario ottenere una copia di questo file e posizionarlo all'interno della cartella di lavoro di UpdraftPlus"
458
 
459
- #: admin.php:508
460
  msgid "No such backup set exists"
461
  msgstr "Nessun set di backup esistente"
462
 
463
- #: admin.php:546
464
  msgid "File not found (you need to upload it): %s"
465
  msgstr "File non trovato (è necessario caricarlo): %s"
466
 
467
- #: admin.php:548
468
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
469
  msgstr "Il file è stato trovato, ma ha dimensione nulla (è necessario ri-caricare il file): %s"
470
 
471
- #: admin.php:552
472
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
473
  msgstr "il file (%s) è stato trovato, ma ha una dimensione differente da quella prevista (%s invece che %s) - potrebbe essere corrotto."
474
 
475
- #: admin.php:566
476
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
477
  msgstr "Questo set di backup multiarchivio sembra che non comprenda il seguente archivio: %s"
478
 
479
- #: restorer.php:234
480
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
481
  msgstr "Impossibile spostare la directory (controllare i permessi e le quote del disco): %s"
482
 
483
- #: restorer.php:451
484
  msgid "This directory already exists, and will be replaced"
485
  msgstr "Questa directory esiste già, e verrà sovrascritta."
486
 
487
- #: restorer.php:225
488
  msgid "Failed to move file (check your file permissions and disk quota): %s"
489
  msgstr "Impossibile spostare il file (controllare i permessi e le quote del disco): %s"
490
 
@@ -492,7 +764,7 @@ msgstr "Impossibile spostare il file (controllare i permessi e le quote del disc
492
  msgid "Moving unpacked backup into place..."
493
  msgstr "Spostamento del backup scompattato in posizione..."
494
 
495
- #: backup.php:1294 backup.php:1530
496
  msgid "Failed to open the zip file (%s) - %s"
497
  msgstr "Impossibile aprire il file .zip (%s) - %s"
498
 
@@ -500,15 +772,15 @@ msgstr "Impossibile aprire il file .zip (%s) - %s"
500
  msgid "WordPress root directory server path: %s"
501
  msgstr "Percorso cartella di root di WordPress sul server: %s"
502
 
503
- #: methods/s3.php:377
504
  msgid "... and many more!"
505
  msgstr "... e molti altri!"
506
 
507
- #: methods/s3.php:402
508
  msgid "%s end-point"
509
  msgstr "end-point %s"
510
 
511
- #: admin.php:2656
512
  msgid "File is not locally present - needs retrieving from remote storage"
513
  msgstr "Il file non è presente in locale - è necessario il recupero dallo storage remoto"
514
 
@@ -516,115 +788,115 @@ msgstr "Il file non è presente in locale - è necessario il recupero dallo sto
516
  msgid "S3 (Compatible)"
517
  msgstr "S3 (Compatibile)"
518
 
519
- #: admin.php:2631
520
  msgid "Final checks"
521
  msgstr "Controlli Finali"
522
 
523
- #: admin.php:2654
524
  msgid "Looking for %s archive: file name: %s"
525
  msgstr "Ricerca archivio %s: nome file:%s"
526
 
527
- #: admin.php:2173
528
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
529
  msgstr "Selezionare questa opzione per eliminare tutti i file di backup superflui dal server al termine del backup stesso (ad esempio, se si deseleziona, tutti i file spediti in remoto rimarranno anche in locale, e tutti i file in locale non saranno soggetti ai limiti di ritenzione)."
530
 
531
- #: admin.php:2076
532
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
533
  msgstr "Trascinare qui i file di database crittografati (file db.gz.crypt) per caricarli per la decrittazione"
534
 
535
- #: admin.php:2033
536
  msgid "Your wp-content directory server path: %s"
537
  msgstr "Il vostro percorso della cartella wp-content sul server: %s"
538
 
539
- #: admin.php:103
540
  msgid "Raw backup history"
541
  msgstr "Cronologia di backup raw"
542
 
543
- #: admin.php:1602
544
  msgid "Show raw backup and file list"
545
  msgstr "Mostra backup raw e lista file"
546
 
547
- #: admin.php:89
548
  msgid "Processing files - please wait..."
549
  msgstr "Elaborazione file - attendere prego...."
550
 
551
- #: admin.php:1415
552
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
553
  msgstr "La tua installazione di WordPress ha un problema con l'output in più spazi bianchi. Questo può corrompere i backup che si scaricano da qui."
554
 
555
- #: admin.php:1415
556
  msgid "Please consult this FAQ for help on what to do about it."
557
  msgstr "Si prega di consultare questa FAQ per un aiuto su che cosa fare a riguardo."
558
 
559
- #: admin.php:868
560
  msgid "Failed to open database file."
561
  msgstr "Impossibile aprire il file di database."
562
 
563
- #: admin.php:850
564
  msgid "Failed to write out the decrypted database to the filesystem."
565
  msgstr "Impossibile scrivere il database decodificato sul filesystem."
566
 
567
- #: admin.php:674
568
  msgid "Known backups (raw)"
569
  msgstr "Backup noti (raw)"
570
 
571
- #: restorer.php:542
572
  msgid "Using directory from backup: %s"
573
  msgstr "Utilizzo directory dal backup: %s"
574
 
575
- #: restorer.php:494
576
  msgid "Files found:"
577
  msgstr "File trovati:"
578
 
579
- #: restorer.php:500
580
  msgid "Unable to enumerate files in that directory."
581
  msgstr "Impossibile enumerare i file nella directory."
582
 
583
- #: restorer.php:835
584
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
585
  msgstr "Il motore tabella richiesto (%s) non è presente - cambio a MyISAM."
586
 
587
- #: restorer.php:846
588
  msgid "Restoring table (%s)"
589
  msgstr "Ripristino tabella (%s)"
590
 
591
- #: restorer.php:302
592
  msgid "An existing unremoved backup from a previous restore exists: %s"
593
  msgstr "Un backup non rimossi è esistente da un ripristino precedente: %s"
594
 
595
- #: backup.php:1347 backup.php:1540
596
  msgid "A zip error occurred - check your log for more details."
597
  msgstr "Si è verificato un errore zip - controllare il log per maggiori dettagli."
598
 
599
- #: addons/migrator.php:41
600
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
601
  msgstr "Questo appare come una migrazione (il backup è da un sito con un indirizzo / URL diverso), ma non è stata selezionata l'opzione di ricerca e sostituzione del database. Questo è di solito un errore."
602
 
603
- #: restorer.php:919
604
  msgid "An error occured on the first CREATE TABLE command - aborting run"
605
  msgstr "Si è verificato un errore al primo comando di CREATE TABLE - annullamento"
606
 
607
- #: admin.php:2668
608
  msgid "file is size:"
609
  msgstr "il file ha dimensioni:"
610
 
611
- #: admin.php:2374
612
  msgid "database"
613
  msgstr "database"
614
 
615
- #: admin.php:288 admin.php:1268
616
  msgid "Go here for more information."
617
  msgstr "Vai qui per maggiori informazioni."
618
 
619
- #: admin.php:1475
620
  msgid "Downloading / preparing backup files..."
621
  msgstr "Download / preparazione dei file di backup ..."
622
 
623
- #: admin.php:88
624
  msgid "Some files are still downloading or being processed - please wait."
625
  msgstr "Alcuni file sono ancora in download o in fase di elaborazione - attendere prego."
626
 
627
- #: admin.php:899
628
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
629
  msgstr "Questo set di backup è di un sito diverso - non si tratta di un ripristino, ma di una migrazione. È necessario il Migrator add-on per eseguire questo compito."
630
 
@@ -690,96 +962,96 @@ msgstr "Errore %s - riassemblaggio delle porzioni di file fallito"
690
  msgid "%s error: zero-size file was downloaded"
691
  msgstr "Errore %s: è stato scaricato un file di dimensione zero"
692
 
693
- #: restorer.php:488 admin.php:837 admin.php:918 admin.php:923 admin.php:1074
694
- #: admin.php:1081
695
  msgid "Error: %s"
696
  msgstr "Errore %s"
697
 
698
- #: admin.php:2190
699
  msgid "Backup directory specified exists, but is <b>not</b> writable."
700
  msgstr "La cartella di backup specificata esiste, ma <b>non</b> è scrivibile."
701
 
702
- #: admin.php:2188
703
  msgid "Backup directory specified does <b>not</b> exist."
704
  msgstr "La cartella di backup specificata <b>non</b> esiste."
705
 
706
- #: admin.php:899 admin.php:1781 admin.php:1945
707
  msgid "Warning: %s"
708
  msgstr "Attenzione: %s"
709
 
710
- #: admin.php:1358
711
  msgid "Last backup job run:"
712
  msgstr "Esecuzione ultimo backup:"
713
 
714
- #: backup.php:1060 backup.php:1072
715
  msgid "%s: unreadable file - could not be backed up"
716
  msgstr "%s: file illeggibile - impossibile eseguirne il backup"
717
 
718
- #: backup.php:1308
719
  msgid "A very large file was encountered: %s (size: %s Mb)"
720
  msgstr "Il file è di dimensioni molto grandi: %s (dimensione: %s Mb)"
721
 
722
- #: backup.php:829
723
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
724
  msgstr "La tabella %s ha un numero di campi elevato (%s) - ci auguriamo che il vostro hosting vi permetta sufficienti risorse per riversare questa tabella nel backup"
725
 
726
- #: backup.php:746
727
  msgid "An error occurred whilst closing the final database file"
728
  msgstr "Errore durante la chiusura del file di database finale"
729
 
730
- #: backup.php:375
731
  msgid "Warnings encountered:"
732
  msgstr "Riscontrati avvisi:"
733
 
734
- #: updraftplus.php:1234
735
  msgid "The backup apparently succeeded (with warnings) and is now complete"
736
  msgstr "Backup avvenuto e completato apparentemente con successo (riscontrati avvisi)"
737
 
738
- #: updraftplus.php:502
739
  msgid "Your free disk space is very low - only %s Mb remain"
740
  msgstr "Il tuo spazio disco disponibile si sta esaurendo - solo %s Mb rimanenti"
741
 
742
- #: addons/migrator.php:446
743
  msgid "<strong>Search and replacing table:</strong> %s"
744
  msgstr "<strong>Ricerca e sostituizione della tabella:</strong> %s"
745
 
746
- #: addons/migrator.php:99
747
  msgid "Site Name:"
748
  msgstr "Nome Sito:"
749
 
750
- #: addons/migrator.php:101
751
  msgid "Site Domain:"
752
  msgstr "Nome Dominio:"
753
 
754
- #: addons/migrator.php:118
755
  msgid "Migrated site (from UpdraftPlus)"
756
  msgstr "Sito migrato (da UpdraftPlus)"
757
 
758
- #: addons/migrator.php:147
759
  msgid "<strong>ERROR</strong>: Site URL already taken."
760
  msgstr "<strong>ERRORE</strong>: URL del sito già preso."
761
 
762
- #: addons/migrator.php:154
763
  msgid "New site:"
764
  msgstr "Nuovo Sito:"
765
 
766
- #: addons/migrator.php:86
767
  msgid "Information needed to continue:"
768
  msgstr "Informazioni necessarie per continuare:"
769
 
770
- #: addons/migrator.php:87
771
  msgid "Please supply the following information:"
772
  msgstr "Prego, inserire le seguenti informazioni:"
773
 
774
- #: addons/migrator.php:90
775
  msgid "Enter details for where this new site is to live within your multisite install:"
776
  msgstr "Inserire i dettagli per il nuovo sito all'interno di una installazione multi-sito:"
777
 
778
- #: addons/migrator.php:45
779
  msgid "Processed plugin:"
780
  msgstr "Plugin processato:"
781
 
782
- #: addons/migrator.php:53
783
  msgid "Network activating theme:"
784
  msgstr "Attivazione del tema da rete: "
785
 
@@ -795,227 +1067,228 @@ msgstr "Controlla i tuoi permessi di accesso al file: non è possibile creare ed
795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
796
  msgstr "L'installazione di PHP sul tuo server non include un modulo necessario (%s). Contattare il supporto del provider di web hosting, e chiedere di abilitarlo."
797
 
798
- #: methods/s3.php:519
799
  msgid "Please check your access credentials."
800
  msgstr "Si prega di verificare i propri dati di accesso."
801
 
802
- #: methods/s3.php:494
803
  msgid "The error reported by %s was:"
804
  msgstr "L'errore riportato da %s è:"
805
 
806
- #: restorer.php:558
807
  msgid "Please supply the requested information, and then continue."
808
  msgstr "Si prega di fornire le informazioni richieste, e quindi di continuare."
809
 
810
- #: restorer.php:565
811
  msgid "New table prefix:"
812
  msgstr "Nuovo prefisso di tabella:"
813
 
814
- #: restorer.php:901
815
  msgid "Cannot drop tables, so deleting instead (%s)"
816
  msgstr "Impossibile eliminare le tabelle dal database, la cancellazione avverrà tramite comando DELETE (%s)"
817
 
818
- #: restorer.php:731 admin.php:923
819
  msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
820
  msgstr "Per importare un sito WordPress comune in una installazione multi-sito è necessario sia il multisite che il migrator add-on."
821
 
822
- #: restorer.php:737 admin.php:931
823
  msgid "Site information:"
824
  msgstr "Informazioni sul sito:"
825
 
826
- #: restorer.php:896
827
  msgid "Cannot create new tables, so skipping this command (%s)"
828
  msgstr "Impossibile creare nuove tabelle, il comando è tralasciato (%s)"
829
 
830
- #: restorer.php:685 restorer.php:700 admin.php:1268
831
  msgid "Warning:"
832
  msgstr "Attenzione:"
833
 
834
- #: restorer.php:685
835
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
836
  msgstr "Il tuo utente per l'accesso al database non ha i diritti per creare tabelle. Cercheremo di ripristinare semplicemente svuotando le tabelle; questo dovrebbe funzionare fino a quando a) si esegue il ripristino di una versione di WordPress con la stessa struttura di database, e b) Il database importato non contiene le tabelle che non sono già presenti sul sito sul quale importare."
837
 
838
- #: restorer.php:700
839
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
840
  msgstr "Il tuo utente del database non dispone dell'autorizzazione per eliminare tabelle. Cercheremo di ripristinare semplicemente svuotando le tabelle; questo dovrebbe funzionare fino a quando si esegue il ripristino da una versione di WordPress con la stessa struttura del database."
841
 
842
- #: restorer.php:35 admin.php:918
843
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
844
  msgstr "Esecuzione su un sito WordPress multi-sito - ma il tuo backup non è per un sito multi-sito. "
845
 
846
- #: admin.php:2643
847
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
848
  msgstr "Esclusione del ripristino del core WordPress quando si importa un singolo sito in una installazione multi-sito. Se c'è qualcosa di necessario nella tua cartella WordPress allora sarà necessario ri-aggiungerlo manualmente dal file .zip."
849
 
850
- #: admin.php:2261
851
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
852
  msgstr "L'installazione PHP del tuo server web non ha incluso un modulo <strong>necessario</strong> (per %s - nome modulo %s). Contattare il supporto del provider di web hosting e chiedere di abilitarlo."
853
 
854
- #: admin.php:2261
855
  msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
856
  msgstr "Le opzioni disponibili sono: 1) Installare/abilitare %s oppure 2) Cambiare società di web hosting -%s è un componente standard di PHP, ed è richiesto da tutti i plug-in di cloud backup conosciuti."
857
 
858
- #: admin.php:117
859
  msgid "Close"
860
  msgstr "Chiudi"
861
 
862
- #: admin.php:85
863
  msgid "Unexpected response:"
864
  msgstr "Risposta sconosciuta:"
865
 
866
- #: admin.php:2058
867
  msgid "To send to more than one address, separate each address with a comma."
868
  msgstr "Per inviare a più di un indirizzo, separate ognuno da una virgola."
869
 
870
- #: admin.php:102
871
  msgid "PHP information"
872
  msgstr "Informazioni PHP"
873
 
874
- #: admin.php:1587
875
  msgid "show PHP information (phpinfo)"
876
  msgstr "Mostra informazioni PHP (phpinfo)"
877
 
878
- #: admin.php:1600
879
  msgid "zip executable found:"
880
  msgstr "zip eseguibile trovato:"
881
 
882
- #: admin.php:1536
883
  msgid "Migrate Site"
884
  msgstr "Migrare sito"
885
 
886
- #: admin.php:1540
887
  msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
888
  msgstr "La migrazione dei dati da un altro sito avviene attraverso il pulsante \"Ripristina\". Un \"migrazione\" è in definitiva la stessa cosa di un ripristino, ma utilizzando gli archivi di backup che si importano da un altro sito. UpdraftPlus modifica l'operazione di ripristino in modo appropriato, per soddisfare i dati di backup al nuovo sito."
889
 
890
- #: admin.php:1540
891
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
892
  msgstr "<a href=\"%s\">Leggi questo articolo per vedere passo-passo com'è fatto.</a>"
893
 
894
- #: admin.php:1542
895
  msgid "Do you want to migrate or clone/duplicate a site?"
896
  msgstr "Vuoi migrare o clonare/duplicare un sito?"
897
 
898
- #: admin.php:1542
899
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
900
  msgstr "Prova il nostro \"Migrator\" add-on. Dopo averlo usato una volta, avrete ammortizzato il costo di acquisto rispetto al tempo necessario per copiare un sito a mano."
901
 
902
- #: admin.php:1542
903
  msgid "Get it here."
904
  msgstr "Lo trovi qui."
905
 
906
- #: admin.php:1464
907
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
908
  msgstr "Eliminazione ... Si prega di lasciare il tempo per le comunicazioni con l'archiviazione remota per completare"
909
 
910
- #: admin.php:1463
911
  msgid "Also delete from remote storage"
912
  msgstr "Cancellazione anche dall'archiviazione remota"
913
 
914
- #: admin.php:1403
915
  msgid "Latest UpdraftPlus.com news:"
916
  msgstr "Ultime notizie da UpdraftPlus.com:"
917
 
918
- #: admin.php:1374
919
  msgid "Clone/Migrate"
920
  msgstr "Clona/Migra"
921
 
922
- #: admin.php:1264
923
  msgid "News"
924
  msgstr "Notizie"
925
 
926
- #: admin.php:1264
927
  msgid "Premium"
928
  msgstr "Premium"
929
 
930
- #: admin.php:668
931
  msgid "Local archives deleted: %d"
932
  msgstr "Archivi locali cancellati: %d"
933
 
934
- #: admin.php:669
935
  msgid "Remote archives deleted: %d"
936
  msgstr "Archivi remoti cancellati: %d"
937
 
938
- #: backup.php:84
939
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
940
  msgstr "%s - impossibile eseguire il backup di questo; la cartella corrispondente non esiste (%s) "
941
 
942
- #: admin.php:585
943
  msgid "Backup set not found"
944
  msgstr "Set di backup non trovato"
945
 
946
- #: admin.php:667
947
  msgid "The backup set has been removed."
948
  msgstr "Il backup è stato rimosso."
949
 
950
- #: updraftplus.php:1787
951
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
952
  msgstr "Iscriviti al blog di UpdraftPlus per avere le ultime notizie e le offerte"
953
 
954
- #: updraftplus.php:1787
955
  msgid "Blog link"
956
  msgstr "Collegamento al Blog"
957
 
958
- #: updraftplus.php:1787
959
  msgid "RSS link"
960
  msgstr "Collegamento RSS"
961
 
962
- #: methods/s3.php:333
 
963
  msgid "Testing %s Settings..."
964
  msgstr "Analisi impostazioni di %s..."
965
 
966
- #: admin.php:1427
967
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
968
  msgstr "In alternativa, è possibile inserire manualmente nella cartella UpdraftPlus (solitamente wp-content/updraft), ad esempio via FTP, e quindi utilizzare il link \"nuova scansione\" di cui sopra."
969
 
970
- #: admin.php:304
971
  msgid "Notice"
972
  msgstr "Nota"
973
 
974
- #: admin.php:304
975
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
976
  msgstr "Modalità di debug di UpdraftPlus attivata. E' possibile visualizzare avvisi di debug in questa pagina non solamente di UpdraftPlus, ma di qualsiasi altro plug-in installato. Si prega verificare che l'avviso che state vedendo sia generato da UpdraftPlus prima di inviare una richiesta di supporto."
977
 
978
- #: updraftplus.php:494 admin.php:309
979
  msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
980
  msgstr "W3 Total Cache è attivo. E' noto che questo componente ha un bug che scombussola tutti i task schedulati (inclusi i processi di backup)"
981
 
982
- #: admin.php:309
983
  msgid "Go here to turn it off."
984
  msgstr "Vai qui per disattivarlo."
985
 
986
- #: admin.php:309
987
  msgid "<a href=\"%s\">Go here</a> for more information."
988
  msgstr "<a href=\"%s\">Vai qui</a> per maggiori informazioni."
989
 
990
- #: backup.php:358
991
  msgid "Errors encountered:"
992
  msgstr "Errori riscontrati:"
993
 
994
- #: admin.php:84
995
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
996
  msgstr "Rescan in corsco (ricerca di backup uploadati manualmente nello spazio interno di archiviazione).."
997
 
998
- #: admin.php:87
999
  msgid "Begun looking for this entity"
1000
  msgstr "Inizio ricerca di questo termine"
1001
 
1002
- #: addons/migrator.php:386
1003
  msgid "SQL update commands run:"
1004
  msgstr "Comandi di aggiornamento SQL eseguiti:"
1005
 
1006
- #: admin.php:92
1007
  msgid "Errors:"
1008
  msgstr "Errori:"
1009
 
1010
- #: addons/migrator.php:388
1011
  msgid "Time taken (seconds):"
1012
  msgstr "Tempo necessario (secondi):"
1013
 
1014
- #: addons/migrator.php:475
1015
  msgid "rows: %d"
1016
  msgstr "linee: %d"
1017
 
1018
- #: addons/migrator.php:578
1019
  msgid "\"%s\" has no primary key, manual change needed on row %s."
1020
  msgstr "\"%s\" non ha una chiave primaria, necessaria modifica manuale sulla linea %s."
1021
 
@@ -1023,79 +1296,79 @@ msgstr "\"%s\" non ha una chiave primaria, necessaria modifica manuale sulla lin
1023
  msgid "Store at"
1024
  msgstr "Archivia in"
1025
 
1026
- #: addons/migrator.php:303
1027
  msgid "Nothing to do: the site URL is already: %s"
1028
  msgstr "Nessuna modifica: l'URL del sito &egrave; gi&agrave;: %s"
1029
 
1030
- #: addons/migrator.php:308
1031
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
1032
  msgstr "Attenzione: l'URL del database del sito (%s) è differente dalla posizione originale (%s)"
1033
 
1034
- #: addons/migrator.php:315
1035
  msgid "Database search and replace: replace %s in backup dump with %s"
1036
  msgstr "Ricerca e sostituzione del database: sostituisci %s nel backup con %s"
1037
 
1038
- #: addons/migrator.php:332
1039
  msgid "Could not get list of tables"
1040
  msgstr "Impossibile caricare la lista delle tabelle"
1041
 
1042
- #: addons/migrator.php:343
1043
  msgid "<strong>Search and replacing table:</strong> %s: already done"
1044
  msgstr "<strong>Ricerca e Sostituzione Tabella:</strong> %s: già fatto"
1045
 
1046
- #: addons/migrator.php:383
1047
  msgid "Tables examined:"
1048
  msgstr "Tabelle esaminate:"
1049
 
1050
- #: addons/migrator.php:384
1051
  msgid "Rows examined:"
1052
  msgstr "Righe esaminate:"
1053
 
1054
- #: addons/migrator.php:385
1055
  msgid "Changes made:"
1056
  msgstr "Cambiamenti fatti:"
1057
 
1058
- #: addons/sftp.php:188
1059
  msgid "%s Error: Failed to download"
1060
  msgstr "Errore %s: download fallito"
1061
 
1062
- #: addons/sftp.php:247
1063
  msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1064
  msgstr "Non è possibile riprendere upload parziali, è quindi necessario assicurarsi che il vostro server web permetta ai processi PHP di funzionare abbastanza a lungo per caricare il vostro file di backup più grande."
1065
 
1066
- #: addons/sftp.php:252
1067
  msgid "Host"
1068
  msgstr "Host"
1069
 
1070
- #: addons/sftp.php:259
1071
  msgid "Port"
1072
  msgstr "Porta"
1073
 
1074
- #: addons/sftp.php:273
1075
  msgid "Password"
1076
  msgstr "Password"
1077
 
1078
- #: addons/sftp.php:289
1079
  msgid "Directory path"
1080
  msgstr "Percorso cartella"
1081
 
1082
- #: addons/sftp.php:291
1083
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
1084
  msgstr "Dove cambiare cartella dopo il login - spesso questo è relativo alla vostra cartella di home."
1085
 
1086
- #: addons/sftp.php:342
1087
  msgid "host name"
1088
  msgstr "Nome Host"
1089
 
1090
- #: addons/sftp.php:346
1091
  msgid "username"
1092
  msgstr "Nome Utente"
1093
 
1094
- #: addons/sftp.php:350
1095
  msgid "password"
1096
  msgstr "Password"
1097
 
1098
- #: addons/sftp.php:355
1099
  msgid "Failure: Port must be an integer."
1100
  msgstr "Errore: la porta deve essere un numero intero."
1101
 
@@ -1103,55 +1376,56 @@ msgstr "Errore: la porta deve essere un numero intero."
1103
  msgid "starting from next time it is"
1104
  msgstr "Inizio prossima volta è "
1105
 
1106
- #: addons/multisite.php:128
1107
  msgid "Multisite Install"
1108
  msgstr "Installazione Multi-sito"
1109
 
1110
- #: udaddons/options.php:151
1111
  msgid "You do not have sufficient permissions to access this page."
1112
  msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
1113
 
1114
- #: addons/multisite.php:153
1115
  msgid "You do not have permission to access this page."
1116
  msgstr "Non hai il permesso di accedere a questa pagina."
1117
 
1118
- #: addons/multisite.php:221
1119
  msgid "Must-use plugins"
1120
  msgstr "Plugin essenziali"
1121
 
1122
- #: addons/multisite.php:228
1123
  msgid "Blog uploads"
1124
  msgstr "Caricamenti dal blog"
1125
 
1126
- #: addons/migrator.php:169
1127
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
1128
  msgstr "Tutti i riferimenti alla posizione del sito nel database saranno sostituiti con l'URL del sito attuale, che è:%s"
1129
 
1130
- #: addons/migrator.php:169
1131
  msgid "Search and replace site location in the database (migrate)"
1132
  msgstr "Ricerca e sostituzione della posizione del sito nel database (migrazione)"
1133
 
1134
- #: addons/migrator.php:169
1135
  msgid "(learn more)"
1136
  msgstr "(ulteriori informazioni)"
1137
 
1138
- #: addons/migrator.php:252 addons/migrator.php:365
1139
  msgid "Failed: the %s operation was not able to start."
1140
  msgstr "Errore: Non è stato possibile avviare l'operazione %s"
1141
 
1142
- #: addons/migrator.php:254 addons/migrator.php:367
1143
  msgid "Failed: we did not understand the result returned by the %s operation."
1144
  msgstr "Errore: Codice di ritorno dell'operazione %s non conosciuto."
1145
 
1146
- #: addons/migrator.php:275
1147
  msgid "Database: search and replace site URL"
1148
  msgstr "Database: ricerca e sostituzione dell'URL del sito"
1149
 
1150
- #: addons/migrator.php:278
1151
  msgid "This option was not selected."
1152
  msgstr "Questa opzione non è stata selezionata."
1153
 
1154
- #: addons/migrator.php:293 addons/migrator.php:298
 
1155
  msgid "Error: unexpected empty parameter (%s, %s)"
1156
  msgstr "Errore: parametro vuoto inatteso (%s, %s)"
1157
 
@@ -1207,84 +1481,84 @@ msgstr "La crittografia esplicita viene utilizzato come impostazione predefinita
1207
  msgid "No %s found"
1208
  msgstr "%s non trovato"
1209
 
1210
- #: addons/sftp.php:385
1211
  msgid "Check your file permissions: Could not successfully create and enter:"
1212
  msgstr "Controllare le autorizzazioni file: Impossibile creare ed entrare con successo:"
1213
 
1214
- #: methods/ftp.php:185
1215
  msgid "FTP Server"
1216
  msgstr "Server FTP"
1217
 
1218
- #: methods/ftp.php:189
1219
  msgid "FTP Login"
1220
  msgstr "Login FTP"
1221
 
1222
- #: methods/ftp.php:193
1223
  msgid "FTP Password"
1224
  msgstr "Password FTP"
1225
 
1226
- #: methods/ftp.php:197
1227
  msgid "Remote Path"
1228
  msgstr "Percorso Remoto"
1229
 
1230
- #: methods/ftp.php:198
1231
  msgid "Needs to already exist"
1232
  msgstr "Deve essere esistente"
1233
 
1234
- #: methods/ftp.php:219
1235
  msgid "Failure: No server details were given."
1236
  msgstr "Errore: Nessun dettaglio sul server è stato fornito."
1237
 
1238
- #: methods/ftp.php:234
1239
  msgid "Failure: we did not successfully log in with those credentials."
1240
  msgstr "Errore: Non è possibile eseguire il log-in con queste credenziali"
1241
 
1242
- #: methods/ftp.php:242
1243
  msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
1244
  msgstr "Errore: si è verificato un errore interno imprevisto di UpdraftPlus durante la prova le credenziali - si prega di contattare lo sviluppatore"
1245
 
1246
- #: methods/ftp.php:246
1247
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
1248
  msgstr "Abbiamo effettuato correttamente il login, e confermato la nostra capacità di creare un file nella directory data (tipo di accesso:"
1249
 
1250
- #: methods/ftp.php:249
1251
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
1252
  msgstr "Errore: Log-in eseguito correttamente, ma non siamo riusciti a creare un file nella directory data."
1253
 
1254
- #: addons/webdav.php:40 addons/webdav.php:152 addons/webdav.php:188
1255
  #: addons/sftp.php:32
1256
  msgid "No %s settings were found"
1257
  msgstr "Non sono state trovate impostazioni di %s"
1258
 
1259
- #: addons/webdav.php:118 addons/webdav.php:122
1260
  msgid "Chunk %s: A %s error occurred"
1261
  msgstr "Parte %s: rilevato errore %s "
1262
 
1263
- #: addons/webdav.php:204 addons/webdav.php:211 addons/webdav.php:224
1264
  msgid "WebDAV Error"
1265
  msgstr "Errore WebDAV"
1266
 
1267
- #: addons/webdav.php:211
1268
  msgid "Error opening remote file: Failed to download"
1269
  msgstr "Errore nell'apertura di file remoto: impossibile eseguire il download"
1270
 
1271
- #: addons/webdav.php:224
1272
  msgid "Local write failed: Failed to download"
1273
  msgstr "Scrittura locale non riuscita: impossibile eseguire il download"
1274
 
1275
- #: addons/webdav.php:260
1276
  msgid "WebDAV URL"
1277
  msgstr "URL WebDAV"
1278
 
1279
- #: addons/webdav.php:264
1280
  msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
1281
  msgstr "Inserire un URL completo, che inizi con webdav:// o webdavs:// completo di percorso, nome utente, password e della porta come richiesto - ad esempio %s"
1282
 
1283
- #: admin.php:1821 admin.php:1846
1284
  msgid "Failed"
1285
  msgstr "Errore"
1286
 
1287
- #: addons/webdav.php:322
1288
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
1289
  msgstr "Errore: impossibile copiare un file in quella directory - controlla le tue autorizzazioni"
1290
 
@@ -1320,86 +1594,82 @@ msgstr "anche se parte delle informazioni restituite non era come previsto - la
1320
  msgid "Your %s account name: %s"
1321
  msgstr "Nome del tuo account %s: %s"
1322
 
1323
- #: methods/ftp.php:181
1324
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1325
  msgstr "UpdraftPlus regolare supporta solo FTP non cifrato."
1326
 
1327
- #: methods/ftp.php:181
1328
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
1329
  msgstr "Se si desidera la crittografia (ad esempio per memorizzare dati aziendali sensibili), è disponibile un add-on."
1330
 
1331
- #: methods/s3.php:317
1332
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
1333
  msgstr "Errore %s: Impossibile eseguire il download di %s. Controllare le autorizzazioni e le credenziali."
1334
 
1335
- #: methods/s3.php:253 methods/s3.php:321
1336
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
1337
  msgstr "Errore %s: Impossibile accedere al bucket %s. Controllare le autorizzazioni e le credenziali."
1338
 
1339
- #: methods/s3.php:398
1340
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
1341
  msgstr "Ottieni la tua chiave di accesso e la chiave segreta <a href=\"%s\">dalla console %s</a>, quindi scegli un nome bucket (Globally Unique - tutti gli utenti %s) (lettere e numeri) (e facoltativamente un percorso) da utilizzare per lo storage. Il bucket verrà creato, se non esiste già."
1342
 
1343
- #: methods/s3.php:398
1344
  msgid "If you see errors about SSL certificates, then please go here for help."
1345
  msgstr "Se si trovano errori sui certificati SSL, allora vai qui per un aiuto."
1346
 
1347
- #: methods/s3.php:409
1348
  msgid "%s access key"
1349
  msgstr "Chiave di accesso %s"
1350
 
1351
- #: methods/s3.php:413
1352
  msgid "%s secret key"
1353
  msgstr "Chiave segreta %s"
1354
 
1355
- #: methods/s3.php:417
1356
  msgid "%s location"
1357
  msgstr "posizione %s"
1358
 
1359
- #: methods/s3.php:418
1360
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
1361
  msgstr "Inserire solo il nome del bucket oppure il bucket e il percorso. Esempi: mybucket, mybucket/mypath"
1362
 
1363
- #: methods/s3.php:439
1364
  msgid "API secret"
1365
  msgstr "API segreto"
1366
 
1367
- #: methods/s3.php:460
1368
  msgid "Failure: No bucket details were given."
1369
  msgstr "Errore: Nessun dettaglio del bucket è stato inserito."
1370
 
1371
- #: methods/s3.php:475
1372
  msgid "Region"
1373
  msgstr "regione"
1374
 
1375
- #: methods/s3.php:493
1376
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
1377
  msgstr "Errore: Impossibile accedere o creare il bucket con successo. Si prega di verificare le credenziali di accesso, e se queste sono corrette si consiglia di provare un altro nome del bucket (un altro utente %s potrebbe già aver preso il suo nome)."
1378
 
1379
- #: methods/s3.php:507 methods/s3.php:519
1380
  msgid "Failure"
1381
  msgstr "Errore"
1382
 
1383
- #: methods/s3.php:507 methods/s3.php:519
1384
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
1385
  msgstr "Accesso al bucket ottenuto, ma il tentativo di creare un file in esso è fallito."
1386
 
1387
- #: methods/s3.php:509
1388
  msgid "We accessed the bucket, and were able to create files within it."
1389
  msgstr "Accesso al bucket ottenuto, ed è stato possibile creare files al suo interno."
1390
 
1391
- #: methods/s3.php:512
1392
  msgid "The communication with %s was encrypted."
1393
  msgstr "La comunicazione con %s era cifrata"
1394
 
1395
- #: methods/s3.php:514
1396
  msgid "The communication with %s was not encrypted."
1397
  msgstr "La comunicazione con %s non era cifrata."
1398
 
1399
- #: methods/dropbox.php:35
1400
- msgid "The %s PHP module is not installed"
1401
- msgstr "Il modulo PHP %s non è installato"
1402
-
1403
  #: methods/dropbox.php:41
1404
  msgid "You do not appear to be authenticated with Dropbox"
1405
  msgstr "Sembra che non si sia autenticati con Dropbox"
@@ -1448,16 +1718,15 @@ msgstr "Chiave API Cloud Files"
1448
  msgid "Cloud Files container"
1449
  msgstr "Contenitore di files remoti"
1450
 
1451
- #: methods/googledrive.php:452 methods/cloudfiles.php:394 methods/s3.php:388
1452
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
1453
  msgstr "il modulo %s di UpdraftPlus <strong>richiede</strong> %s. Si prega di non presentare alcuna richiesta di supporto, non ci sono alternative."
1454
 
1455
- #: methods/cloudfiles.php:442 methods/cloudfiles.php:447 methods/s3.php:435
1456
- #: methods/s3.php:439
1457
  msgid "Failure: No %s was given."
1458
  msgstr "Errore: %s non è stato fornito."
1459
 
1460
- #: methods/cloudfiles.php:442 methods/s3.php:435
1461
  msgid "API key"
1462
  msgstr "Chiave API"
1463
 
@@ -1477,43 +1746,39 @@ msgstr "Errore File remoto - abbiamo accede al contenitore, ma è impossiile cre
1477
  msgid "We accessed the container, and were able to create files within it."
1478
  msgstr "Si può accedere al contenitore, ed è possibile creare files al suo interno."
1479
 
1480
- #: methods/email.php:20
1481
  msgid "WordPress Backup"
1482
  msgstr "Backup di WordPress"
1483
 
1484
- #: methods/email.php:20
1485
  msgid "Be wary; email backups may fail because of file size limitations on mail servers."
1486
  msgstr "Attenzione: il backup via email potrebbe fallire a causa di limiti di dimensione dei file sui server di posta."
1487
 
1488
- #: methods/email.php:36
1489
  msgid "Note:"
1490
  msgstr "Nota:"
1491
 
1492
- #: methods/email.php:37
1493
- msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive. If you really need a large backup via email, then you could fund a new feature (to break the backup set into configurable-size pieces) - but the demand has not yet existed for such a feature."
1494
- msgstr "Verrà utilizzato l'indirizzo email inserito sopra. Se si sceglie \"E-Mail\", <strong>fare attenzione</strong> che i server di posta tendono ad avere limiti di dimensione, in genere intorno a 10-20Mb; i backup più grandi del limite non arriveranno. Se davvero si necessita di un backup grande via email, allora si potrebbe finanziare una nuova funzionalità (per dividere il set di backup in pezzi di dimensione configurabile) - ma ancora non esiste una tale funzione."
1495
-
1496
- #: methods/s3.php:154
1497
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
1498
  msgstr "upload di %s: impossibile ottenere l'uploadID per il caricamento multiparte - vedere il file di log per maggiori dettagli"
1499
 
1500
- #: methods/s3.php:177
1501
  msgid "%s error: file %s was shortened unexpectedly"
1502
  msgstr "Errore %s: il file %s è stato accorciato in modo imprevisto"
1503
 
1504
- #: methods/s3.php:187
1505
  msgid "%s chunk %s: upload failed"
1506
  msgstr "%s parte %s: caricamento fallito"
1507
 
1508
- #: methods/s3.php:201
1509
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
1510
  msgstr "Caricamento di %s (%s) riassemblaggio fallito (vedere il log per maggiori dettagli)"
1511
 
1512
- #: methods/s3.php:205
1513
  msgid "%s re-assembly error (%s): (see log file for more)"
1514
  msgstr "%s re-assembly error (%s): (guarda il file di log per più informazioni)"
1515
 
1516
- #: methods/s3.php:217
1517
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
1518
  msgstr "Errore %s: Impossibile creare il bucket %s. Controllare le autorizzazioni e le credenziali."
1519
 
@@ -1579,8 +1844,7 @@ msgstr "Errore Files remoti - impossibile creare ed accedere al contenitore"
1579
  msgid "%s Error: Failed to open local file"
1580
  msgstr "Errore %s: Impossibile aprire il file locale"
1581
 
1582
- #: methods/cloudfiles.php:105 methods/cloudfiles.php:147 methods/s3.php:128
1583
- #: methods/s3.php:134 methods/s3.php:135
1584
  msgid "%s Error: Failed to upload"
1585
  msgstr "Errore %s: Impossibile caricare il file."
1586
 
@@ -1600,8 +1864,7 @@ msgstr "Errore durante il download del file remoto: Impossibile scaricare ("
1600
  msgid "Testing - Please Wait..."
1601
  msgstr "Verifica - attendere prego..."
1602
 
1603
- #: methods/cloudfiles.php:371 methods/cloudfiles.php:434 methods/s3.php:348
1604
- #: methods/s3.php:422
1605
  msgid "Test %s Settings"
1606
  msgstr "Test dei settaggi %s"
1607
 
@@ -1613,11 +1876,11 @@ msgstr "Ottieni la tua chiave API <a href=\"https://mycloud.rackspace.com/\"> da
1613
  msgid "Also, you should read this important FAQ."
1614
  msgstr "Inoltre, si dovrebbe leggere questa importante FAQ."
1615
 
1616
- #: methods/googledrive.php:202
1617
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
1618
  msgstr "Account pieno: il tuo account %s ha solamente %d bytes liberi, ma il file da caricare è di %d bytes"
1619
 
1620
- #: methods/googledrive.php:217
1621
  msgid "Failed to upload to %s"
1622
  msgstr "Impossibile caricare su %s"
1623
 
@@ -1641,40 +1904,40 @@ msgstr "Google Drive"
1641
  msgid "Account is not authorized."
1642
  msgstr "Account non autorizzato."
1643
 
1644
- #: methods/googledrive.php:442 methods/cloudfiles.php:384 methods/s3.php:366
1645
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
1646
  msgstr "%s è una buona scelta, perché UpdraftPlus supporta i caricamenti frammentati - non importa quanto sia grande il vostro sito, UpdraftPlus può caricare un po 'alla volta, senza avere problemi con il timeout."
1647
 
1648
- #: restorer.php:849
1649
  msgid "will restore as:"
1650
  msgstr "sarà ripristinato come:"
1651
 
1652
- #: restorer.php:916
1653
  msgid "An error (%s) occured:"
1654
  msgstr "Si è verificato un errore (%s)"
1655
 
1656
- #: restorer.php:916
1657
  msgid "the database query being run was:"
1658
  msgstr "la query di database in corso di esecuzione è:"
1659
 
1660
- #: restorer.php:922
1661
  msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
1662
  msgstr "Si sono verificati troppi errori di database - ripristino annullato (è necessario ripristinare manualmente)"
1663
 
1664
- #: restorer.php:930
1665
  msgid "Database lines processed: %d in %.2f seconds"
1666
  msgstr "Linee di database processate: %d in %.2f secondi"
1667
 
1668
- #: restorer.php:875
1669
  msgid "Finished: lines processed: %d in %.2f seconds"
1670
  msgstr "Finito: linee processate: %d in %.2f secondi"
1671
 
1672
- #: restorer.php:974 restorer.php:995
1673
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
1674
  msgstr "Il prefisso di tabella è cambiato: cambio in accordo i campo(i) della tabella %s:"
1675
 
1676
- #: restorer.php:978 restorer.php:1025 admin.php:1824 admin.php:1848
1677
- #: admin.php:2666
1678
  msgid "OK"
1679
  msgstr "OK"
1680
 
@@ -1683,87 +1946,87 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
1683
  msgstr "È necessario autenticare nuovamente con %s, le credenziali esistenti non funzionano."
1684
 
1685
  #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1686
- #: methods/sftp.php:13 methods/sftp.php:34 methods/sftp.php:50
1687
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1688
  msgstr "L'add-on %s di UpdraftPlus non è installato - ottenerlo da %s"
1689
 
1690
- #: methods/webdav.php:63 methods/sftp.php:63
1691
  msgid "%s support is available as an add-on"
1692
  msgstr "Il supporto a %s è disponibile con un add-on"
1693
 
1694
- #: methods/webdav.php:63 methods/sftp.php:63
1695
  msgid "follow this link to get it"
1696
  msgstr "Clicca su questo collegamento per averlo."
1697
 
1698
- #: methods/googledrive.php:116
1699
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
1700
  msgstr "Nessun token di aggiornamento è stato ricevuto da Google. Questo spesso significa che si è inserito il \"Segreto Client\" in modo errato, o che non si è stati ancora ri-autenticati (sotto) in quanto correzione. Si prega di ricontrollare, e di seguire il link per autenticarsi nuovamente. Infine, se questo non dovesse funzionare, utilizzare la modalità expert per cancellare tutte le impostazioni, creare un nuovo nuovo ID cliente di Google / segreto, e iniziare nuovamente."
1701
 
1702
- #: methods/googledrive.php:125
1703
  msgid "Authorization failed"
1704
  msgstr "Autorizzazione fallita"
1705
 
1706
- #: methods/googledrive.php:146
1707
  msgid "Your %s quota usage: %s %% used, %s available"
1708
  msgstr "Quota di utilizzo %s: %s %% utilizzata, %s disponibile"
1709
 
1710
- #: methods/googledrive.php:152 methods/cloudfiles.php:498 methods/s3.php:509
1711
  msgid "Success"
1712
  msgstr "Success"
1713
 
1714
- #: methods/googledrive.php:152
1715
  msgid "you have authenticated your %s account."
1716
  msgstr "hai autenticato il tuo account %s."
1717
 
1718
- #: methods/googledrive.php:168 methods/googledrive.php:232
1719
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
1720
  msgstr "Non si è ancora ottenuto un token di accesso da parte di Google - è necessario autorizzare o ri-autorizzare la connessione a Google Drive."
1721
 
1722
- #: methods/googledrive.php:169 methods/googledrive.php:363
1723
  msgid "Have not yet obtained an access token from Google (has the user authorised?)"
1724
  msgstr "Non si è ancora ottenuto il token di accesso da Google (l'utente potrebbe non essere autorizzato)"
1725
 
1726
- #: restorer.php:161
1727
  msgid "wp-config.php from backup: restoring (as per user's request)"
1728
  msgstr "wp-config.php da backup: ripristino (come da richiesta dell'utente)"
1729
 
1730
- #: restorer.php:605
1731
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
1732
  msgstr "Attenzione: PHP safe_mode &egrave; attivo sul tuo server. Questo pu&ograve; facilmente portare a Timeout. Nel caso dovesse verificarsene uno &egrave; necessario ripristinare manualmente il file tramite phpMyAdmin o simili."
1733
 
1734
- #: restorer.php:610
1735
  msgid "Failed to find database file"
1736
  msgstr "Impossibile trovare il file del database"
1737
 
1738
- #: restorer.php:616
1739
  msgid "Failed to open database file"
1740
  msgstr "Impossibile aprire il file del database"
1741
 
1742
- #: restorer.php:640
1743
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
1744
  msgstr "Accesso al database: l'accesso diretto a MySQL non è disponibile, quindi si utilizzerà wpdb (sarà notevolmente più lento)"
1745
 
1746
- #: restorer.php:715 admin.php:896
1747
  msgid "Backup of:"
1748
  msgstr "Backup di:"
1749
 
1750
- #: restorer.php:719 restorer.php:789
1751
  msgid "Old table prefix:"
1752
  msgstr "Vecchio prefisso di tabella"
1753
 
1754
- #: admin.php:2663
1755
  msgid "Archive is expected to be size:"
1756
  msgstr "Dimensione stimata dell'archivio:"
1757
 
1758
- #: admin.php:2671
1759
  msgid "The backup records do not contain information about the proper size of this file."
1760
  msgstr "I registri di backup non contengono informazioni valide sulle dimensioni di questo file."
1761
 
1762
- #: admin.php:2718
1763
  msgid "Error message"
1764
  msgstr "Messaggio d'errore"
1765
 
1766
- #: admin.php:2674 admin.php:2675
1767
  msgid "Could not find one of the files for restoration"
1768
  msgstr "Impossibile trovare uno dei file per il ripristino"
1769
 
@@ -1823,991 +2086,963 @@ msgstr "Impossibile cancellare la catrella di lavoro dopo il rispristino."
1823
  msgid "Failed to create a temporary directory"
1824
  msgstr "Impossibile creare una cartella temporanea"
1825
 
1826
- #: restorer.php:99
1827
  msgid "Failed to write out the decrypted database to the filesystem"
1828
  msgstr "Impossibile scrivere il database decodificato sul filesystem"
1829
 
1830
- #: restorer.php:157
1831
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
1832
  msgstr "wp-config.php dal backup: verrà ripristinato come wp-config-backup.php"
1833
 
1834
- #: admin.php:2210
1835
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
1836
  msgstr "Scegliendo questa opzione si riduce la sicurezza, impedendo a UpdraftPlus di utilizzare SSL per l'autenticazione e il trasporto criptato, dove possibile. Si noti che alcuni provider di cloud storage non consentono questo (ad esempio Dropbox), così con quei fornitori questa impostazione non avrà alcun effetto."
1837
 
1838
- #: admin.php:2234
1839
  msgid "Save Changes"
1840
  msgstr "Salva i cambiamenti"
1841
 
1842
- #: methods/googledrive.php:452 methods/cloudfiles.php:394 methods/s3.php:388
1843
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
1844
  msgstr "L'installazione di PHP sull tuo server web non ha incluso un modulo necessario (%s). Contattare il supporto del provider di web hosting."
1845
 
1846
- #: admin.php:2268
1847
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
1848
  msgstr "L'installazione PHP/Curl sul server web non supporta l'accesso tramite HTTPS. Le comunicazioni con %s saranno crittografate. chiedete al vostro host web di installare Curl/SSL al fine di poter utilizzare la cifratura (tramite un add-on)."
1849
 
1850
- #: admin.php:2270
1851
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
1852
  msgstr ""
1853
  "L'installazione del web server PHP/Curl non supporta l'accesso tramite HTTPS.\n"
1854
  "E' impossibile accedere a %s senza questo supporto. Si prega di contattare il supporto del provider di web hosting. %s <strong>richiede</strong> Curl + https. Si prega di non presentare alcuna richiesta a sostegno, non ci sono alternative."
1855
 
1856
- #: admin.php:2273
1857
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
1858
  msgstr "Buona notizie: la comunicazione del tuo sito con %s può essere cifrata. Se si notano errori dovuti alla crittografia, cercare in \"Impostazioni Avanzate\" per ulteriori informazioni."
1859
 
1860
- #: admin.php:2346
1861
  msgid "Delete this backup set"
1862
  msgstr "Cancella questo set di backup"
1863
 
1864
- #: admin.php:2401
1865
  msgid "Press here to download"
1866
  msgstr "Premi qui per il download"
1867
 
1868
- #: admin.php:2374 admin.php:2429
1869
  msgid "(No %s)"
1870
  msgstr "(Nessun %s)"
1871
 
1872
- #: admin.php:2437
1873
  msgid "Backup Log"
1874
  msgstr "Backup Log"
1875
 
1876
- #: admin.php:2457
1877
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
1878
  msgstr "Dopo aver premuto questo pulsante, si potrà scegliere quali componenti si desidera ripristinare"
1879
 
1880
- #: admin.php:2548
1881
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
1882
  msgstr "Questo backup non esiste nella Cronologia Backup - ripristino interrotto. Timestamp:"
1883
 
1884
- #: admin.php:2582
1885
  msgid "UpdraftPlus Restoration: Progress"
1886
  msgstr "UpdraftPlus Ripristino: avanzamento"
1887
 
1888
- #: admin.php:2608
1889
  msgid "ABORT: Could not find the information on which entities to restore."
1890
  msgstr "ANNULLATO: Impossibile trovare le informazioni sulle entità da ripristinare."
1891
 
1892
- #: admin.php:2609
1893
  msgid "If making a request for support, please include this information:"
1894
  msgstr "Se si fa la richiesta di assistenza, si prega di includere le seguenti informazioni:"
1895
 
1896
- #: admin.php:2204
1897
  msgid "Do not verify SSL certificates"
1898
  msgstr "Non verificare i certificati SSL"
1899
 
1900
- #: admin.php:2205
1901
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
1902
  msgstr "La scelta di questa opzione riduce la sicurezza impedendo a UpdraftPlus di verificare l'identità dei siti cifrati a cui si collega (ad esempio Dropbox, Google Drive). Ciò significa che UpdraftPlus userà SSL solo per la crittografia del traffico, e non per l'autenticazione."
1903
 
1904
- #: admin.php:2205
1905
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
1906
  msgstr "Ricorda che non tutti i metodi di backup su Cloud utilizzano obbligatoriamente un autenticazione SSL."
1907
 
1908
- #: admin.php:2209
1909
  msgid "Disable SSL entirely where possible"
1910
  msgstr "Disattivare SSL del tutto, se possibile"
1911
 
1912
- #: admin.php:2156
1913
  msgid "Expert settings"
1914
  msgstr "Impostazioni avanzate"
1915
 
1916
- #: admin.php:2157
1917
  msgid "Show expert settings"
1918
  msgstr "Mostra impostazioni avanzate"
1919
 
1920
- #: admin.php:2157
1921
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
1922
  msgstr "fare clic su questo elemento per mostrare ulteriori opzioni, non perdete tempo a meno che non hai un problema o sei curioso."
1923
 
1924
- #: admin.php:2172
1925
  msgid "Delete local backup"
1926
  msgstr "Cancella backup locale"
1927
 
1928
- #: admin.php:2177
1929
  msgid "Backup directory"
1930
  msgstr "Cartella di Backup"
1931
 
1932
- #: admin.php:2184
1933
  msgid "Backup directory specified is writable, which is good."
1934
  msgstr "La cartella di backup specificata è scrivibile, che è buona cosa."
1935
 
1936
- #: admin.php:2192
1937
  msgid "Click here to attempt to create the directory and set the permissions"
1938
  msgstr "Clicca qui per tentare di creare la directory e impostare le autorizzazioni"
1939
 
1940
- #: admin.php:2192
1941
  msgid "or, to reset this option"
1942
  msgstr "o, per resettare questa opzione"
1943
 
1944
- #: admin.php:2192
1945
  msgid "click here"
1946
  msgstr "Clicca qui"
1947
 
1948
- #: admin.php:2192
1949
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
1950
  msgstr "Se questo è infruttuoso controllare i permessi sul vostro server o cambiarlo in un'altra cartella che sia scrivibile dal tuo web server."
1951
 
1952
- #: admin.php:2199
1953
  msgid "Use the server's SSL certificates"
1954
  msgstr "Utilizza i certificati SSL del server"
1955
 
1956
- #: admin.php:2200
1957
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
1958
  msgstr "Per impostazione predefinita UpdraftPlus utilizza il proprio archivio di certificati SSL per verificare l'identità dei siti remoti (cioè per assicurarsi che sta parlando con il vero Dropbox, Amazon S3, ecc, e non un attaccante). Teniamo questi certificati aggiornati. Tuttavia, se si verificasse un errore SSL, allora la scelta di questa opzione può aiutare ( Scegliendo questa opzione, si permette a UpdraftPlus di utilizzare la collezione di certificati del vostro web server) ."
1959
 
1960
- #: admin.php:2053
1961
  msgid "Use WordShell for automatic backup, version control and patching"
1962
  msgstr "Utilizza WordShell per il backup automatico, il controllo di versione e per gestire le patch"
1963
 
1964
- #: admin.php:2057
1965
  msgid "Email"
1966
  msgstr "E-mail"
1967
 
1968
- #: admin.php:2058
1969
  msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
1970
  msgstr "Inserire un indirizzo qui per avere l'invio del rapporto (e l'intero backup, se scelto)."
1971
 
1972
- #: admin.php:2062
1973
  msgid "Database encryption phrase"
1974
  msgstr "Frase di crittografia del database"
1975
 
1976
- #: admin.php:2069
1977
  msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
1978
  msgstr "Se si immette del testo qui, verrà utilizzato per cifrare i backup (Rijndael). <strong>Si prega di fare una copia separata di essa e di non perderla, o tutti i backup <em>saranno inutili</em>. </strong> Al momento, solo il file di database è crittografato. Questa è anche la chiave utilizzata per decifrare i backup da questa interfaccia di amministrazione (quindi se la si cambia, la decrittografia automatica non funzionerà fino a quando non si cambia di nuovo)."
1979
 
1980
- #: admin.php:2069
1981
  msgid "You can also decrypt a database manually here."
1982
  msgstr "Qui puoi anche decrittare manualmente un database."
1983
 
1984
- #: admin.php:2072
1985
  msgid "Manually decrypt a database backup file"
1986
  msgstr "Decifra manualmente un file di backup del database"
1987
 
1988
- #: admin.php:2079
1989
  msgid "Use decryption key"
1990
  msgstr "Utilizzo chiave di decrittazione"
1991
 
1992
- #: admin.php:2093
1993
  msgid "Copying Your Backup To Remote Storage"
1994
  msgstr "Copia del backup per archiviazione remota"
1995
 
1996
- #: admin.php:2097
1997
  msgid "Choose your remote storage"
1998
  msgstr "Scegli il tuo Storage Remoto"
1999
 
2000
- #: admin.php:2109
2001
  msgid "None"
2002
  msgstr "Nessuno"
2003
 
2004
- #: admin.php:115
2005
  msgid "Cancel"
2006
  msgstr "Annulla"
2007
 
2008
- #: admin.php:101
2009
  msgid "Requesting start of backup..."
2010
  msgstr "Inizio del backup richiesto..."
2011
 
2012
- #: admin.php:2149
2013
  msgid "Advanced / Debugging Settings"
2014
  msgstr "Impostazioni Avanzate e di Debug"
2015
 
2016
- #: admin.php:2152
2017
  msgid "Debug mode"
2018
  msgstr "Debug mode"
2019
 
2020
- #: admin.php:2153
2021
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
2022
  msgstr "Spunta qui per ricevere maggiori informazioni e email sul processo di backup - utile se qualcosa è andato storto. <strong>Si deve</strong> inviare questo log se si sta inoltrando una segnalazione di bug."
2023
 
2024
- #: admin.php:2053
2025
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
2026
  msgstr "Le cartelle sopra contengono tutto, tranne il core di WordPress che può essere scaricato da WordPress.org."
2027
 
2028
- #: admin.php:2053
2029
- msgid "Or, get the \"More Files\" add-on from our shop."
2030
- msgstr "Oppure, ottenere l'add-on \"More Files\" dal nostro negozio online."
2031
-
2032
- #: admin.php:1984
2033
  msgid "Daily"
2034
  msgstr "Giornaliero"
2035
 
2036
- #: admin.php:1984
2037
  msgid "Weekly"
2038
  msgstr "Settimanale"
2039
 
2040
- #: admin.php:1984
2041
  msgid "Fortnightly"
2042
  msgstr "Quindicinale"
2043
 
2044
- #: admin.php:1984
2045
  msgid "Monthly"
2046
  msgstr "Mensile"
2047
 
2048
- #: admin.php:1993 admin.php:2011
2049
  msgid "and retain this many backups"
2050
  msgstr "e conservare questo numero di backup"
2051
 
2052
- #: admin.php:2000
2053
  msgid "Database backup intervals"
2054
  msgstr "Intervalli di backup del batabase"
2055
 
2056
- #: admin.php:2018
2057
  msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
2058
  msgstr "Se si desidera pianificare automaticamente i backup, scegliere la pianificazione dal menu a tendina sopra. I backup avverranno agli intervalli indicati. Se due pianificazioni coincidono, avverranno entrambi insieme. Se si sceglie \"manuale\", allora sarà necessario fare clic sul pulsante \"Esegui Backup\" ogni volta che si desidera una copia di backup."
2059
 
2060
- #: admin.php:2019
2061
  msgid "To fix the time at which a backup should take place,"
2062
  msgstr "Fissare il momento in cui un backup deve avvenire,"
2063
 
2064
- #: admin.php:2019
2065
  msgid "e.g. if your server is busy at day and you want to run overnight"
2066
  msgstr "ad esempio, se il server è occupato di giorno si può eseguirlo durante la notte"
2067
 
2068
- #: admin.php:2019
2069
  msgid "use the \"Fix Time\" add-on"
2070
  msgstr "utilizzare il \"Fix Time\" add-on"
2071
 
2072
- #: admin.php:2023
2073
  msgid "Include in files backup"
2074
  msgstr "Includere nei files di backup"
2075
 
2076
- #: admin.php:2033
2077
  msgid "Any other directories found inside wp-content"
2078
  msgstr "Eventuali altre directory trovati dentro wp-content"
2079
 
2080
- #: admin.php:2039
2081
  msgid "Exclude these:"
2082
  msgstr "Escludi questi:"
2083
 
2084
- #: admin.php:1632
2085
  msgid "Debug Database Backup"
2086
  msgstr "Debug Database Backup"
2087
 
2088
- #: admin.php:1632
2089
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
2090
  msgstr "Questo causerà un backup immediato del database. La pagina non riuscirà a caricarsi fino a che non finisce il processo(cioè, non in programma). Il backup potrebbe andare in timeout; in realtà questo pulsante è solo utile per verificare che il backup sia in grado di passare le fasi iniziali, o per piccoli siti WordPress .."
2091
 
2092
- #: admin.php:1638
2093
  msgid "Wipe Settings"
2094
  msgstr "Pulizia dei settaggi"
2095
 
2096
- #: admin.php:1639
2097
  msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2098
  msgstr "Questo pulsante consente di cancellare tutte le impostazioni di UpdraftPlus (ma non i vostri backup esistenti nel vostro cloud storage). Sarà quindi necessario inserire di nuovo tutte le impostazioni. Se lo si desidera è possibile farlo prima della disattivazione / disinstallazione di UpdraftPlus."
2099
 
2100
- #: admin.php:1642
2101
  msgid "Wipe All Settings"
2102
  msgstr "Pulizia di tutti i settaggi"
2103
 
2104
- #: admin.php:1642
2105
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
2106
  msgstr "Questa operazione eliminerà tutte le impostazioni di UpdraftPlus - si è sicuri di volerlo fare?"
2107
 
2108
- #: admin.php:1776
2109
  msgid "show log"
2110
  msgstr "Mostra log"
2111
 
2112
- #: admin.php:1776
2113
  msgid "delete schedule"
2114
  msgstr "elimina programmazione"
2115
 
2116
- #: admin.php:116 admin.php:1818 admin.php:1843
2117
  msgid "Delete"
2118
  msgstr "Cancella"
2119
 
2120
- #: admin.php:1884
2121
  msgid "The request to the filesystem to create the directory failed."
2122
  msgstr "La richiesta di creazione della cartella al file system è fallita."
2123
 
2124
- #: admin.php:1898
2125
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
2126
  msgstr "La cartella è stata creata, ma abbiamo dovuto cambiare i permessi dei file a 777 (tutto scrivibile) per essere in grado di scrivere. Si consiglia di verificare con il fornitore di hosting che questo non causerà alcun problema"
2127
 
2128
- #: admin.php:1902
2129
  msgid "The folder exists, but your webserver does not have permission to write to it."
2130
  msgstr "La cartella esiste, ma il server web non ha il permesso di scrivere."
2131
 
2132
- #: admin.php:1902
2133
  msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
2134
  msgstr "È necessario consultare il proprio web hosting provider per sapere come impostare le autorizzazioni per permettere a un plugin di WordPress di scrivere nella cartella."
2135
 
2136
- #: admin.php:1961
2137
  msgid "Download log file"
2138
  msgstr "Scarica il file di log"
2139
 
2140
- #: admin.php:1965
2141
  msgid "No backup has been completed."
2142
  msgstr "Nessun backup è stato completato."
2143
 
2144
- #: admin.php:1981
2145
  msgid "File backup intervals"
2146
  msgstr "Intervallo di creazione backup"
2147
 
2148
- #: admin.php:1984
2149
  msgid "Manual"
2150
  msgstr "Manuale"
2151
 
2152
- #: admin.php:1984
2153
  msgid "Every 4 hours"
2154
  msgstr "Ogni 4 ore"
2155
 
2156
- #: admin.php:1984
2157
  msgid "Every 8 hours"
2158
  msgstr "Ogni 8 ore"
2159
 
2160
- #: admin.php:1984
2161
  msgid "Every 12 hours"
2162
  msgstr "Ogni 12 ore"
2163
 
2164
- #: admin.php:1554
2165
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
2166
  msgstr "Per continuare, premere 'Esegui Backup'. Poi, guarda il campo 'Ultimo Messaggio di log' per l'attività dopo circa 10 secondi. WordPress dovrebbe avviare il backup in esecuzione in background."
2167
 
2168
- #: admin.php:1556
2169
- msgid "Does nothing happen when you schedule backups?"
2170
- msgstr "Non succede nulla quando si pianifica i backup?"
2171
-
2172
- #: admin.php:1556
2173
  msgid "Go here for help."
2174
  msgstr "Vai qui per l'aiuto."
2175
 
2176
- #: admin.php:1562
2177
  msgid "Multisite"
2178
  msgstr "Multi-sito"
2179
 
2180
- #: admin.php:1566
2181
  msgid "Do you need WordPress Multisite support?"
2182
  msgstr "Hai bisogno di supporto per WordPress multi-sito?"
2183
 
2184
- #: admin.php:1566
2185
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
2186
  msgstr "Si prega di verificare UpdraftPlus Premium, oppure l'add-on stand-alone multi-sito."
2187
 
2188
- #: admin.php:1571
2189
  msgid "Configure Backup Contents And Schedule"
2190
  msgstr "Configurare Contenuti di backup e Pianificazione"
2191
 
2192
- #: admin.php:1577
2193
  msgid "Debug Information And Expert Options"
2194
  msgstr "Informazioni di debug e Opzioni Avanzate"
2195
 
2196
- #: admin.php:1580
2197
  msgid "Web server:"
2198
  msgstr "Web server:"
2199
 
2200
- #: admin.php:1583
2201
  msgid "Peak memory usage"
2202
  msgstr "Utilizzo di memoria (picco)"
2203
 
2204
- #: admin.php:1584
2205
  msgid "Current memory usage"
2206
  msgstr "Utilizzo di memoria attuale"
2207
 
2208
- #: admin.php:1585
2209
  msgid "PHP memory limit"
2210
  msgstr "Limite di memoria PHP"
2211
 
2212
- #: admin.php:1586 admin.php:1588
2213
  msgid "%s version:"
2214
  msgstr "Versione %s"
2215
 
2216
- #: admin.php:1591 admin.php:1593 admin.php:1600
2217
  msgid "Yes"
2218
  msgstr "Si"
2219
 
2220
- #: admin.php:1593 admin.php:1600
2221
  msgid "No"
2222
  msgstr "No"
2223
 
2224
- #: admin.php:1596
2225
  msgid "PHP has support for ZipArchive::addFile:"
2226
  msgstr "PHP supporta ZipArchive::addFile:"
2227
 
2228
- #: admin.php:1605
2229
  msgid "Total (uncompressed) on-disk data:"
2230
  msgstr "Totale (non compresso) dati su disco:"
2231
 
2232
- #: admin.php:1606
2233
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
2234
  msgstr "N.B. Questo conteggio si basa su quello che era, o non era, escluso l'ultima volta che sono state salvate le opzioni."
2235
 
2236
- #: admin.php:1613
2237
  msgid "count"
2238
  msgstr "conteggio"
2239
 
2240
- #: admin.php:1619
2241
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
2242
  msgstr "I pulsanti sotto eseguono immediatamente un backup, indipendentemente dallo scheduler di WordPress. Se questi funzionano, mentre i backup schedulati e il pulsante \"Backup Now\" non fanno assolutamente nulla (cioè nemmeno produrre un file di log), allora significa che lo scheduler non funziona. Si dovrebbe quindi disabilitare tutti gli altri plugin, e provare a premere il pulsante \"Esegui Backup\". Se non funziona, allora contattare la società di web hosting e chiedere loro se hanno disabilitato wp-cron. Se invece funziona, ri-attivare tutti gli altri plugin uno per uno, in modo da trovare quello che genera il problema e segnalare il bug allo sviluppatore."
2243
 
2244
- #: admin.php:1627
2245
  msgid "Debug Full Backup"
2246
  msgstr "Debug backup completo"
2247
 
2248
- #: admin.php:1627
2249
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
2250
  msgstr "Questo causerà un backup immediato. La pagina non verrà caricata fino a che non finirà il backup(cioè, non programmato)."
2251
 
2252
- #: admin.php:1426
2253
  msgid "UpdraftPlus - Upload backup files"
2254
  msgstr "UpdraftPlus - Carica file di backup"
2255
 
2256
- #: admin.php:1427
2257
  msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
2258
  msgstr "Carica file in UpdraftPlus. Utilizzare questa funzione per importare i backup fatti su una diversa installazione di WordPress."
2259
 
2260
- #: admin.php:1431
2261
- msgid "Drop backup zips here"
2262
- msgstr "Eliminare file zip di backup qui"
2263
-
2264
- #: admin.php:1432 admin.php:2077
2265
  msgid "or"
2266
  msgstr "oppure"
2267
 
2268
- #: admin.php:86
2269
  msgid "calculating..."
2270
  msgstr "sto calcolando..."
2271
 
2272
- #: restorer.php:561 admin.php:94 admin.php:2668 admin.php:2686
2273
  msgid "Error:"
2274
  msgstr "Errore:"
2275
 
2276
- #: admin.php:96
2277
  msgid "You should:"
2278
  msgstr "Dovresti:"
2279
 
2280
- #: admin.php:100
2281
  msgid "Download error: the server sent us a response which we did not understand."
2282
  msgstr "Errore di Download: il server ha inviato una risposta non conosciuta."
2283
 
2284
- #: admin.php:1452
2285
  msgid "Delete backup set"
2286
  msgstr "Cancellazione del set di backup"
2287
 
2288
- #: admin.php:1455
2289
  msgid "Are you sure that you wish to delete this backup set?"
2290
  msgstr "Sei sicuro di voler cancellare questo set di backup?"
2291
 
2292
- #: admin.php:1470
2293
  msgid "Restore backup"
2294
  msgstr "Ripristina backup"
2295
 
2296
- #: admin.php:1471
2297
  msgid "Restore backup from"
2298
  msgstr "Ripristina backup da"
2299
 
2300
- #: admin.php:1483
2301
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
2302
  msgstr "Il ripristino sostituirà i temi di questo sito, i plugin, gli upload, e i database e / o altre cartelle di contenuti (in base a ciò che è contenuto nel set di backup, e alla selezione)."
2303
 
2304
- #: admin.php:1483
2305
  msgid "Choose the components to restore"
2306
  msgstr "Scegli i componenti da ripristinare"
2307
 
2308
- #: admin.php:1492
2309
  msgid "Your web server has PHP's so-called safe_mode active."
2310
  msgstr "Il tuo server web ha il safe_mode PHP attivo."
2311
 
2312
- #: admin.php:1492
2313
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
2314
  msgstr "Questo rende i time-out molto più probabili. Si consiglia di disabilitare il safe_mode, oppure di ripristinare una sola entità per volta,<a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">oppure di fare il ripristino manualmente</a>."
2315
 
2316
- #: admin.php:1505
2317
  msgid "The following entity cannot be restored automatically: \"%s\"."
2318
  msgstr "Le seguenti entità non può essere ripristinata automaticamente: \"%s\"."
2319
 
2320
- #: admin.php:1505
2321
  msgid "You will need to restore it manually."
2322
  msgstr "Sarà necessario fare il ripristino manualmente."
2323
 
2324
- #: admin.php:1512
2325
  msgid "%s restoration options:"
2326
  msgstr "Opzione di ripristino %s:"
2327
 
2328
- #: admin.php:1520
2329
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
2330
  msgstr "È possibile cercare e sostituire il database (per la migrazione di un sito web verso una nuova posizione/URL) con il Migrator add-on - segui questo collegamento per maggiori informazioni"
2331
 
2332
- #: admin.php:1531
2333
  msgid "Do read this helpful article of useful things to know before restoring."
2334
  msgstr "Si prega di leggere questo articolo esplicativo di cose utili da sapere prima di ripristinare."
2335
 
2336
- #: admin.php:1553
2337
  msgid "Perform a one-time backup"
2338
  msgstr "Eseguire un backup singolo"
2339
 
2340
- #: admin.php:1354
2341
  msgid "Time now"
2342
  msgstr "Ora attuale"
2343
 
2344
- #: admin.php:114 admin.php:1364
2345
  msgid "Backup Now"
2346
  msgstr "Esegui Backup"
2347
 
2348
- #: admin.php:118 admin.php:1371 admin.php:2457
2349
  msgid "Restore"
2350
  msgstr "Ripristino"
2351
 
2352
- #: admin.php:1382
2353
  msgid "Last log message"
2354
  msgstr "Ultimo messaggio di Log"
2355
 
2356
- #: admin.php:1384
2357
  msgid "(Nothing yet logged)"
2358
  msgstr "(Niente è stato loggato)"
2359
 
2360
- #: admin.php:1385
2361
  msgid "Download most recently modified log file"
2362
  msgstr "Scarica il file di log più recente"
2363
 
2364
- #: admin.php:1396
2365
  msgid "Backups, logs & restoring"
2366
  msgstr "Backups, logs & rispristino"
2367
 
2368
- #: admin.php:1397
2369
  msgid "Press to see available backups"
2370
  msgstr "Premi per vedere backup disponibili"
2371
 
2372
- #: admin.php:698 admin.php:752 admin.php:1397
2373
  msgid "%d set(s) available"
2374
  msgstr "%d set Disponibili"
2375
 
2376
- #: admin.php:1413
2377
  msgid "Downloading and restoring"
2378
  msgstr "Download e Ripristino."
2379
 
2380
- #: admin.php:1418
2381
  msgid "Downloading"
2382
  msgstr "Download"
2383
 
2384
- #: admin.php:1418
2385
  msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
2386
  msgstr "La pressione di un pulsante per il Database/Plugins/Temi/Uploads/Altri farà in modo che UpdraftPlus provi a prendere il file di backup dallo storage remoto (se presente - ad esempio Amazon S3, Dropbox, Google Drive, FTP) verso il server web. Poi vi sarà possibile scaricarlo sul computer locale. Se l'operazione di recupero da memoria remota smettesse di progredire (attendere 30 secondi per essere sicuri), premere di nuovo per riprendere. Ricorda che puoi anche visitare direttamente il sito del servizio di cloud storage."
2387
 
2388
- #: admin.php:1419
2389
- msgid "Restoring"
2390
- msgstr "Ripristino"
2391
-
2392
- #: admin.php:1419
2393
- msgid "Press the button for the backup you wish to restore. If your site is large and you are using remote storage, then you should first click on each entity in order to retrieve it back to the webserver. This will prevent time-outs from occuring during the restore process itself."
2394
- msgstr "Premere il pulsante per il backup che si desidera ripristinare. Se il sito è di grandi dimensioni e si utilizza lo storage remoto, allora si deve prima fare clic su ciascuna entità, al fine di recuperarlo di nuovo nel server web. Questo consentirà di evitare timeout che possono verificarsi durante il processo di ripristino stesso."
2395
-
2396
- #: admin.php:1419
2397
  msgid "More tasks:"
2398
  msgstr "Altre attività: "
2399
 
2400
- #: admin.php:1419
2401
  msgid "upload backup files"
2402
  msgstr "Carica i file di backup"
2403
 
2404
- #: admin.php:1419
2405
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
2406
  msgstr "Premere qui per guardare dentro la cartella UpdraftPlus (nel tuo spazio web hosting) per ogni nuovo set di backup che hai caricato. La posizione di questa cartella è impostata nelle impostazioni avanzate, di seguito."
2407
 
2408
- #: admin.php:1419
2409
  msgid "rescan folder for new backup sets"
2410
  msgstr "ri-analizza la cartella per nuovi set di backup"
2411
 
2412
- #: admin.php:1420
2413
  msgid "Opera web browser"
2414
  msgstr "Browser web Opera"
2415
 
2416
- #: admin.php:1420
2417
  msgid "If you are using this, then turn Turbo/Road mode off."
2418
  msgstr "Se stai utilizzando questo, allora imposta Turbo/Road Mode su off"
2419
 
2420
- #: admin.php:1422
2421
  msgid "Google Drive"
2422
  msgstr "Google Drive"
2423
 
2424
- #: admin.php:1422
2425
  msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
2426
  msgstr "Google ha cambiato la loro impostazione di autorizzazioni di recente (aprile 2013). Per scaricare o ripristinare da Google Drive, <strong>è necessario</strong>autenticarsi nuovamente (utilizzando il link nella sezione di configurazione di Google Drive)."
2427
 
2428
- #: admin.php:1424
2429
  msgid "This is a count of the contents of your Updraft directory"
2430
  msgstr "Questo è un conteggio dei contenuti della cartella Updraft"
2431
 
2432
- #: admin.php:1424
2433
  msgid "Web-server disk space in use by UpdraftPlus"
2434
  msgstr "Spazio sul server web in uso da UpdraftPlus"
2435
 
2436
- #: admin.php:1424
2437
  msgid "refresh"
2438
  msgstr "aggiorna"
2439
 
2440
- #: admin.php:1264
2441
  msgid "By UpdraftPlus.Com"
2442
  msgstr "By UpdraftPlus.Com"
2443
 
2444
- #: admin.php:1264
2445
  msgid "Lead developer's homepage"
2446
  msgstr "Vai alla homepage dello sviluppatore"
2447
 
2448
- #: admin.php:1264
2449
  msgid "Donate"
2450
  msgstr "Dona"
2451
 
2452
- #: admin.php:1264
2453
  msgid "Version"
2454
  msgstr "Versione"
2455
 
2456
- #: admin.php:1274
2457
  msgid "Your backup has been restored."
2458
  msgstr "Il backup è stato ripristinato."
2459
 
2460
- #: admin.php:1274
2461
- msgid "Your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
2462
- msgstr "Le cartelle vecchie (temi, upload, plugin, quali che siano) sono state mantenute con \"-old\" aggiunto al nome. Rimuoverli quando si è soddisfatti che il backup è andato a buon fine."
2463
-
2464
- #: admin.php:1280
2465
  msgid "Old directories successfully deleted."
2466
  msgstr "Vecchie cartelle cancellate correttamente."
2467
 
2468
- #: admin.php:1283
2469
  msgid "Current limit is:"
2470
  msgstr "Il limite corrente è:"
2471
 
2472
- #: admin.php:1291
2473
  msgid "Delete Old Directories"
2474
  msgstr "Elimina Vecchie Cartelle"
2475
 
2476
- #: admin.php:1303
2477
  msgid "Existing Schedule And Backups"
2478
  msgstr "Pianificazione e backup esistenti"
2479
 
2480
- #: admin.php:1307
2481
  msgid "JavaScript warning"
2482
  msgstr "Notifiche JavaScript"
2483
 
2484
- #: admin.php:1308
2485
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
2486
  msgstr "Questa interfaccia di amministrazione utilizza JavaScript. È necessario attivarne la gestione all'interno del tuo browser, oppure utilizzare un browser che supporti JavaScript."
2487
 
2488
- #: admin.php:1321 admin.php:1334
2489
  msgid "Nothing currently scheduled"
2490
  msgstr "Nessuna schedulazione."
2491
 
2492
- #: admin.php:1326
2493
  msgid "At the same time as the files backup"
2494
  msgstr "Contemporaneamente al backup dei file"
2495
 
2496
- #: admin.php:1350
2497
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
2498
  msgstr "Tutti gli orari riportati in questa sezione utilizzano il fuso orario configurato di WordPress, che è possibile impostare in Impostazioni -> Generali"
2499
 
2500
- #: admin.php:1350
2501
  msgid "Next scheduled backups"
2502
  msgstr "Prossimo Backup programmato"
2503
 
2504
- #: admin.php:1352
2505
  msgid "Files"
2506
  msgstr "Files"
2507
 
2508
- #: admin.php:531 admin.php:1353 admin.php:1509 admin.php:1512 admin.php:2361
2509
- #: admin.php:2363 admin.php:2709
2510
  msgid "Database"
2511
  msgstr "Database"
2512
 
2513
- #: admin.php:300
2514
  msgid "Your website is hosted using the %s web server."
2515
  msgstr "Il tuo sito web è ospitato utilizzando il web server %s."
2516
 
2517
- #: admin.php:300
2518
  msgid "Please consult this FAQ if you have problems backing up."
2519
  msgstr "Si prega di consultare questa FAQ se hai problemi di backup."
2520
 
2521
- #: admin.php:313 admin.php:317
2522
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
2523
  msgstr "Clicca qui per autenticare il tuo account %s (non sarai in grado di eseguire il backup su %s senza di essa)."
2524
 
2525
- #: admin.php:493 admin.php:496
2526
  msgid "Nothing yet logged"
2527
  msgstr "Niente ancora loggato"
2528
 
2529
- #: admin.php:705
2530
  msgid "Schedule backup"
2531
  msgstr "backup programmato"
2532
 
2533
- #: admin.php:708
2534
  msgid "Failed."
2535
  msgstr "Fallito."
2536
 
2537
- #: admin.php:710
2538
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
2539
  msgstr "OK. A breve si dovrebbe vedere l'attività nel campo \"Ultimo Messaggio di log\" di seguito."
2540
 
2541
- #: admin.php:710
2542
  msgid "Nothing happening? Follow this link for help."
2543
  msgstr "Non succede niente? Segui questo collegamento per un aiuto."
2544
 
2545
- #: admin.php:726
2546
  msgid "Job deleted"
2547
  msgstr "Processo cancellato"
2548
 
2549
- #: admin.php:733
2550
  msgid "Could not find that job - perhaps it has already finished?"
2551
  msgstr "Impossibile trovare il processo - forse è già stata completata."
2552
 
2553
- #: restorer.php:976 restorer.php:1023 admin.php:744
2554
  msgid "Error"
2555
  msgstr "Errore"
2556
 
2557
- #: admin.php:763
2558
  msgid "Download failed"
2559
  msgstr "Download fallito"
2560
 
2561
- #: admin.php:95 admin.php:781
2562
  msgid "File ready."
2563
  msgstr "File pronto."
2564
 
2565
- #: admin.php:789
2566
  msgid "Download in progress"
2567
  msgstr "Download in corso"
2568
 
2569
- #: admin.php:792
2570
  msgid "No local copy present."
2571
  msgstr "Nessuna copia locale presente."
2572
 
2573
- #: admin.php:1074
2574
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2575
  msgstr "Errore nel formato del nome del file - questo file sembra non sia stato creato da UpdraftPlus"
2576
 
2577
- #: admin.php:1161
2578
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2579
  msgstr "Errore nel formato del nome del file - questo file non sembra un file di database crittografato e creato da UpdraftPlus"
2580
 
2581
- #: admin.php:1190
2582
  msgid "Restore successful!"
2583
  msgstr "Ripristino avvenuto con successo!"
2584
 
2585
- #: admin.php:1191 admin.php:1219 admin.php:1238
2586
  msgid "Actions"
2587
  msgstr "Azioni"
2588
 
2589
- #: admin.php:1191 admin.php:1196 admin.php:1219 admin.php:1238
2590
  msgid "Return to UpdraftPlus Configuration"
2591
  msgstr "Ritorno a Configurazione di UpdraftPlus"
2592
 
2593
- #: admin.php:1208
2594
  msgid "Remove old directories"
2595
  msgstr "Rimuove vecchie cartelle"
2596
 
2597
- #: admin.php:1214
2598
  msgid "Old directories successfully removed."
2599
  msgstr "Vecchie cartelle rimosse con successo."
2600
 
2601
- #: admin.php:1217
2602
  msgid "Old directory removal failed for some reason. You may want to do this manually."
2603
  msgstr "Problemi nella rimozione della vecchia cartella, prova a cancellarla manualmente."
2604
 
2605
- #: admin.php:1229
2606
  msgid "Backup directory could not be created"
2607
  msgstr "Impossibile creare la cartella di backup"
2608
 
2609
- #: admin.php:1236
2610
  msgid "Backup directory successfully created."
2611
  msgstr "Cartella di backup creata con successo."
2612
 
2613
- #: admin.php:1257
2614
  msgid "Your settings have been wiped."
2615
  msgstr "Le tue impostazioni sono state cancellate."
2616
 
2617
- #: updraftplus.php:1767 updraftplus.php:1773
2618
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
2619
  msgstr "Si prega di aiutare UpdraftPlus dando un giudizio positivo su wordpress.org"
2620
 
2621
- #: updraftplus.php:1780
2622
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
2623
  msgstr "Hai bisogno di ancora più funzionalità e supporto? Scopri UpdraftPlus Premium"
2624
 
2625
- #: updraftplus.php:1790
2626
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
2627
  msgstr "Scopri UpdraftPlus.Com per aiuto, add-on e supporto"
2628
 
2629
- #: updraftplus.php:1793
2630
  msgid "Want to say thank-you for UpdraftPlus?"
2631
  msgstr "Vuoi ringraziare per UpdraftPlus?"
2632
 
2633
- #: updraftplus.php:1793
2634
  msgid "Please buy our very cheap 'no adverts' add-on."
2635
  msgstr "Si prega di acquistare il nostro economicissimo add-on 'no adverts' (senza pubblicità)"
2636
 
2637
- #: backup.php:1028
2638
  msgid "Infinite recursion: consult your log for more information"
2639
  msgstr "Ricursione infinita: consultare il log per maggiori informazioni"
2640
 
2641
- #: backup.php:131
2642
  msgid "Could not create %s zip. Consult the log file for more information."
2643
  msgstr "Impossibile creare il file zip %s. Consultare il file di registro per ulteriori informazioni."
2644
 
2645
- #: admin.php:159 admin.php:181
2646
  msgid "Allowed Files"
2647
  msgstr "File consentiti"
2648
 
2649
- #: admin.php:244
2650
  msgid "Settings"
2651
  msgstr "Settaggi"
2652
 
2653
- #: admin.php:248
2654
  msgid "Add-Ons / Pro Support"
2655
  msgstr "Add-Ons / Supporto Versione Pro"
2656
 
2657
- #: admin.php:288 admin.php:292 admin.php:296 admin.php:300 admin.php:309
2658
- #: admin.php:1415 admin.php:2261 admin.php:2268 admin.php:2270
2659
  msgid "Warning"
2660
  msgstr "Attenzione"
2661
 
2662
- #: admin.php:292
2663
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2664
  msgstr "Hai meno di %s di spazio libero su disco che UpdraftPlus può utilizzare per creare copie di backup. UpdraftPlus potrebbero ben esaurire lo spazio disponibile. Contattare il gestore del server (ad esempio, la vostra società di web hosting) per risolvere questo problema."
2665
 
2666
- #: admin.php:296
2667
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2668
  msgstr "UpdraftPlus non supporta ufficialmente le versioni di WordPress prima di %s. Potrebbe essere funzionante, ma se non lo fosse, si avvisa del fatto che nessun supporto è disponibile fino a quando non si esegue l'aggiornamento di WordPress."
2669
 
2670
- #: backup.php:388
2671
  msgid "Backed up"
2672
  msgstr "Backup eseguito"
2673
 
2674
- #: backup.php:388
2675
  msgid "WordPress backup is complete"
2676
  msgstr "WordPress backup è completo"
2677
 
2678
- #: backup.php:388
2679
  msgid "Backup contains"
2680
  msgstr "Il backup contiene"
2681
 
2682
- #: backup.php:388
2683
  msgid "Latest status"
2684
  msgstr "Ultimo stato"
2685
 
2686
- #: backup.php:459
2687
  msgid "Backup directory (%s) is not writable, or does not exist."
2688
  msgstr "La cartella di backup (%s) non è scrivibile o non esiste."
2689
 
2690
- #: updraftplus.php:1500
2691
  msgid "Could not read the directory"
2692
  msgstr "Impossibile leggere la cartella."
2693
 
2694
- #: updraftplus.php:1517
2695
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
2696
  msgstr "Impossibile salvare la cronologia di backup perché non c'è un backup array. Backup probabilmente fallito."
2697
 
2698
- #: backup.php:961
2699
  msgid "Could not open the backup file for writing"
2700
  msgstr "Impossibile aprire il file di backup per la scrittura"
2701
 
2702
- #: backup.php:995
2703
  msgid "Generated: %s"
2704
  msgstr "Generato: %s"
2705
 
2706
- #: backup.php:996
2707
  msgid "Hostname: %s"
2708
  msgstr "Nome Host: %s"
2709
 
2710
- #: backup.php:997
2711
  msgid "Database: %s"
2712
  msgstr "atabase: %s"
2713
 
2714
- #: backup.php:691
2715
  msgid "Table: %s"
2716
  msgstr "Tabella: %s"
2717
 
2718
- #: backup.php:695
2719
- msgid "Skipping non-WP table: %s"
2720
- msgstr "Salta tabelle non-WP: %s"
2721
-
2722
- #: backup.php:789
2723
  msgid "Delete any existing table %s"
2724
  msgstr "Elimina ogni tabella esistente %s"
2725
 
2726
- #: backup.php:795
2727
  msgid "Table structure of table %s"
2728
  msgstr "Struttura della tabella %s"
2729
 
2730
- #: backup.php:799
2731
  msgid "Error with SHOW CREATE TABLE for %s."
2732
  msgstr "Errore con SHOW CREATE TABLE per %s."
2733
 
2734
- #: backup.php:899
2735
  msgid "End of data contents of table %s"
2736
  msgstr "Fine del contenuto dati di tabella%s"
2737
 
2738
- #: updraftplus.php:1683 restorer.php:87 admin.php:837
2739
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
2740
  msgstr "Decifratura fallita. Il file di database è criptato, ma non è immesso nessuna chiave di crittografia."
2741
 
2742
- #: updraftplus.php:1696 restorer.php:102 admin.php:855
2743
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
2744
  msgstr "Decriptaggio fallito: La causa più probabile è che sia stata utilizzata una chiave errata."
2745
 
2746
- #: updraftplus.php:1696
2747
  msgid "The decryption key used:"
2748
  msgstr "La chiave di decriptaggio utilizzata è:"
2749
 
2750
- #: updraftplus.php:1714
2751
  msgid "File not found"
2752
  msgstr "File non trovato"
2753
 
2754
- #: updraftplus.php:1765
2755
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
2756
  msgstr "Puoi tradurre? Vuoi migliorare UpdraftPlus per chi parla della tua lingua?"
2757
 
2758
- #: updraftplus.php:1767 updraftplus.php:1773
2759
  msgid "Like UpdraftPlus and can spare one minute?"
2760
  msgstr "Ti piace UpdraftPlus e puoi dedicarci un minuto?"
2761
 
2762
- #: updraftplus.php:776
2763
  msgid "Themes"
2764
  msgstr "Temi"
2765
 
2766
- #: updraftplus.php:777
2767
  msgid "Uploads"
2768
  msgstr "Uploads"
2769
 
2770
- #: updraftplus.php:792
2771
  msgid "Others"
2772
  msgstr "Altri"
2773
 
2774
- #: updraftplus.php:1123
2775
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
2776
  msgstr "Impossibile creare files nella cartella di backup. Il backup è annullato - controlla i settaggi di UpdraftPlus"
2777
 
2778
- #: backup.php:933
2779
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
2780
  msgstr "Errore di crittografia durante la crittografia del database. Crittografia interrotta."
2781
 
2782
- #: updraftplus.php:1228
2783
  msgid "The backup apparently succeeded and is now complete"
2784
  msgstr "Il backup apparentemente è riuscito ed ora è completo"
2785
 
2786
- #: updraftplus.php:1241
2787
  msgid "The backup attempt has finished, apparently unsuccessfully"
2788
  msgstr "Il tentativo di backup è terminato, a quanto pare senza successo"
2789
 
2790
- #: options.php:26
2791
  msgid "UpdraftPlus Backups"
2792
  msgstr "Backup di UpdraftPlus "
2793
 
2794
- #: updraftplus.php:372 updraftplus.php:377 updraftplus.php:382 admin.php:313
2795
- #: admin.php:317
2796
  msgid "UpdraftPlus notice:"
2797
  msgstr "Note di UpdraftPlus:"
2798
 
2799
- #: updraftplus.php:372
2800
  msgid "The log file could not be read."
2801
  msgstr "Il file di log non pu&ograve; essere letto."
2802
 
2803
- #: updraftplus.php:377
2804
  msgid "No log files were found."
2805
  msgstr "Nessun file di log trovato."
2806
 
2807
- #: updraftplus.php:382
2808
  msgid "The given file could not be read."
2809
  msgstr "Il file passato non può essere letto"
2810
 
2811
- #: updraftplus.php:775
2812
  msgid "Plugins"
2813
  msgstr "Plugins"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-10-21 10:07:06+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
+ #: admin.php:2135
14
+ msgid "See also the \"More Files\" add-on from our shop."
15
  msgstr ""
16
 
17
+ #: admin.php:1673
18
+ msgid "Free disk space in account: %s (%s used)"
19
  msgstr ""
20
 
21
+ #: updraftplus.php:561
22
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
23
  msgstr ""
24
 
25
+ #: updraftplus.php:695
26
+ msgid "See: %s"
27
  msgstr ""
28
 
29
+ #: updraftplus.php:539
30
+ msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
31
  msgstr ""
32
 
33
+ #: updraftplus.php:542 admin.php:296
34
+ msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)"
35
+ msgstr ""
36
+
37
+ #: methods/email.php:49
38
+ msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive."
39
+ msgstr ""
40
+
41
+ #: udaddons/options.php:375
42
+ msgid "You have an inactive purchase"
43
+ msgstr ""
44
+
45
+ #: udaddons/options.php:375
46
+ msgid "activate it on this site"
47
+ msgstr ""
48
+
49
+ #: udaddons/options.php:378
50
+ msgid "Get it from the UpdraftPlus.Com Store"
51
+ msgstr ""
52
+
53
+ #: udaddons/options.php:379
54
+ msgid "Buy It"
55
+ msgstr ""
56
+
57
+ #: udaddons/options.php:402
58
+ msgid "Manage Addons"
59
+ msgstr ""
60
+
61
+ #: methods/email.php:18
62
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s). See: %s"
63
+ msgstr ""
64
+
65
+ #: udaddons/options.php:280
66
+ msgid "An unknown response was received. Response was:"
67
+ msgstr ""
68
+
69
+ #: udaddons/options.php:321
70
+ msgid "An error occurred when trying to retrieve your add-ons."
71
+ msgstr ""
72
+
73
+ #: udaddons/options.php:335
74
+ msgid "Need to get support?"
75
+ msgstr ""
76
+
77
+ #: udaddons/options.php:335
78
+ msgid "Go here"
79
+ msgstr ""
80
+
81
+ #: udaddons/options.php:360
82
+ msgid "(apparently a pre-release or withdrawn release)"
83
+ msgstr ""
84
+
85
+ #: udaddons/options.php:366
86
+ msgid "Available for this site (via your all-addons purchase)"
87
+ msgstr ""
88
+
89
+ #: udaddons/options.php:366
90
+ msgid "please update the plugin in order to get it"
91
+ msgstr ""
92
+
93
+ #: udaddons/options.php:369
94
+ msgid "Assigned to this site"
95
+ msgstr ""
96
+
97
+ #: udaddons/options.php:369
98
+ msgid "please update the plugin in order to activate it"
99
  msgstr ""
100
 
101
+ #: udaddons/options.php:201
102
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
103
+ msgstr ""
104
+
105
+ #: udaddons/options.php:221
106
+ msgid "An unknown error occured when trying to connect to UpdraftPlus.Com"
107
+ msgstr ""
108
+
109
+ #: udaddons/options.php:227
110
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
111
+ msgstr ""
112
+
113
+ #: udaddons/options.php:228
114
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
115
+ msgstr ""
116
+
117
+ #: udaddons/options.php:230
118
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
119
+ msgstr ""
120
+
121
+ #: udaddons/options.php:236
122
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
123
+ msgstr ""
124
+
125
+ #: udaddons/options.php:277
126
+ msgid "Please wait whilst we make the claim..."
127
+ msgstr ""
128
+
129
+ #: udaddons/options.php:278
130
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else?"
131
+ msgstr ""
132
+
133
+ #: udaddons/options.php:279
134
+ msgid "Claim not granted - your account login details were wrong"
135
+ msgstr ""
136
+
137
+ #: udaddons/options.php:73
138
+ msgid "Your web server's version of PHP is too old ("
139
+ msgstr ""
140
+
141
+ #: udaddons/options.php:93
142
+ msgid "Connect with your UpdraftPlus.Com account"
143
+ msgstr ""
144
+
145
+ #: udaddons/options.php:118
146
+ msgid "Not yet got an account (it's free)? Go get one!"
147
+ msgstr ""
148
+
149
+ #: udaddons/options.php:128
150
+ msgid "Forgotten your details?"
151
+ msgstr ""
152
+
153
+ #: udaddons/options.php:56
154
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
155
+ msgstr ""
156
+
157
+ #: udaddons/options.php:56
158
+ msgid "Go here to connect."
159
+ msgstr ""
160
+
161
+ #: udaddons/options.php:62
162
+ msgid "UpdraftPlus is not yet activated."
163
+ msgstr ""
164
+
165
+ #: udaddons/options.php:63
166
+ msgid "Go here to activate it."
167
+ msgstr ""
168
+
169
+ #: udaddons/options.php:66
170
+ msgid "UpdraftPlus is not yet installed."
171
+ msgstr ""
172
+
173
+ #: udaddons/options.php:66
174
+ msgid "Go here to begin installing it."
175
+ msgstr ""
176
+
177
+ #: udaddons/options.php:67
178
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
179
+ msgstr ""
180
+
181
+ #: admin.php:2152
182
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s)."
183
+ msgstr ""
184
+
185
+ #: admin.php:2178
186
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on, and add the capability to encrypt files also."
187
+ msgstr ""
188
+
189
+ #: admin.php:1333
190
+ msgid "If your restore included files, then your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
191
+ msgstr ""
192
+
193
+ #: backup.php:794
194
+ msgid "Skipping table (lacks our prefix): %s"
195
+ msgstr ""
196
+
197
+ #: updraftplus.php:692 admin.php:2172
198
+ msgid "Your web-server does not have the %s module installed."
199
+ msgstr ""
200
+
201
+ #: updraftplus.php:692 admin.php:2172
202
+ msgid "Without it, encryption will be a lot slower."
203
+ msgstr ""
204
+
205
+ #: updraftplus.php:695
206
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on (and add more features to it)."
207
+ msgstr ""
208
+
209
+ #: admin.php:1494
210
+ msgid "Drop backup files here"
211
+ msgstr ""
212
+
213
+ #: methods/googledrive.php:486
214
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
215
+ msgstr ""
216
+
217
+ #: methods/dropbox.php:291
218
+ msgid "(You appear to be already authenticated)"
219
+ msgstr ""
220
+
221
+ #: updraftplus.php:2063
222
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
223
+ msgstr ""
224
+
225
+ #: updraftplus.php:2072
226
+ msgid "Check out WordShell"
227
+ msgstr ""
228
+
229
+ #: updraftplus.php:2072
230
+ msgid "manage WordPress from the command line - huge time-saver"
231
+ msgstr ""
232
+
233
+ #: methods/dropbox.php:35
234
+ msgid "The %s PHP module is not installed - ask your web hosting company to enable it"
235
+ msgstr "Il modulo PHP %s non è installato - chiedere alla società di web hosting per abilitarlo."
236
+
237
+ #: admin.php:1624
238
+ msgid "Does nothing happen when you attempt backups?"
239
+ msgstr "Non succede nulla quando si tenta di fare il backup?"
240
+
241
+ #: admin.php:1620
242
+ msgid "Don't include the database in the backup"
243
+ msgstr "Non includere il database nel backup"
244
+
245
+ #: admin.php:1621
246
+ msgid "Don't include any files in the backup"
247
+ msgstr "Non includere i file nel backup"
248
+
249
+ #: admin.php:1478
250
+ msgid "Restoring:"
251
+ msgstr "Ripristino:"
252
+
253
+ #: admin.php:1478
254
+ msgid "Press the Restore button next to the chosen backup set."
255
+ msgstr "Premere il pulsante Ripristina accanto al set di backup prescelto."
256
+
257
+ #: admin.php:82
258
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
259
+ msgstr "L'operazione di ripristino è iniziata. Non premere stop e non chiudere il browser fino a quando non viene segnalato la fine."
260
+
261
+ #: admin.php:84
262
+ msgid "The web server returned an error code (try again, or check your web server logs)"
263
+ msgstr "Il web server ha restituito un codice di errore (riprova, o controlla i log del server web)"
264
+
265
+ #: admin.php:81
266
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
267
+ msgstr "Se si esclude sia il database che i files, allora si è escluso tutto!"
268
+
269
+ #: restorer.php:714
270
+ msgid "Site home:"
271
+ msgstr "Sito home:"
272
+
273
+ #: addons/morestorage.php:80
274
+ msgid "Remote Storage Options"
275
+ msgstr "Opzioni di Archiviazione Remota"
276
+
277
+ #: addons/autobackup.php:29 addons/autobackup.php:278
278
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
279
+ msgstr "Ricorda questa scelta per la prossima volta (si potrà cambiare anche in seguito)"
280
+
281
+ #: addons/autobackup.php:64 addons/autobackup.php:148
282
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
283
+ msgstr "(i logs possono essere ritrovati nella pagine dei settaggi di UpdraftPlus)"
284
+
285
+ #: addons/webdav.php:139
286
+ msgid "Upload failed"
287
+ msgstr "Caricamento fallito"
288
+
289
+ #: admin.php:2237
290
+ msgid "You can send a backup to more than one destination with an add-on."
291
+ msgstr "È possibile inviare una copia di backup a più di una destinazione con un add-on."
292
+
293
+ #: admin.php:1869
294
+ msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
295
+ msgstr "Nota: la barra di avanzamento che segue si basa sulle fasi, non sul tempo. Non interrompere il backup solo perché sembra essere rimasto nello stesso posto per un po '- che è normale."
296
+
297
+ #: admin.php:1819
298
+ msgid "(%s%%, file %s of %s)"
299
+ msgstr "(%s%%, file %s di %s)"
300
+
301
+ #: addons/sftp.php:421
302
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
303
+ msgstr "Errore: Si è in grado di accedere e passare alla directory indicata, ma non è possibile creare con successo un file in quella posizione."
304
+
305
+ #: addons/sftp.php:423
306
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
307
+ msgstr "Errore: Si è in grado di accedere, ma non è possibile creare con successo un file in quella posizione."
308
+
309
+ #: addons/autobackup.php:29 addons/autobackup.php:278
310
+ msgid "Read more about how this works..."
311
+ msgstr "Per saperne di più su come funziona..."
312
+
313
+ #: addons/sftp.php:311
314
+ msgid "Use SCP instead of SFTP"
315
+ msgstr "Utilizza SCP invece che SFTP"
316
+
317
  #: addons/sftp.php:36
318
  msgid "SCP/SFTP password"
319
+ msgstr "Password SCP/SFTP"
320
 
321
  #: addons/sftp.php:34
322
  msgid "SCP/SFTP host setting"
323
+ msgstr "Settaggio host SCP/SFTP"
324
 
325
  #: addons/sftp.php:35
326
  msgid "SCP/SFTP user setting"
327
+ msgstr "Settaggio utente SCP/SFTP"
328
 
329
+ #: methods/email.php:32
330
  msgid "Backup is of: %s."
331
+ msgstr "Il backup è di: %s."
332
 
333
+ #: methods/email.php:39
334
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
335
+ msgstr "Il tentativo di inviare il backup tramite e-mail non è riuscita (probabilmente il backup era troppo grande per questo metodo)"
336
 
337
+ #: methods/cloudfiles.php:372
338
  msgid "%s settings test result:"
339
+ msgstr "%s impostazioni del risultato del test:"
340
 
341
+ #: admin.php:2500
342
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
343
+ msgstr "Se si vedono più backup di quello che ci si aspetta, probabilmente è perché la cancellazione dei vecchi set di backup non avviene fino a quando non si completa un backup nuovo."
344
 
345
+ #: admin.php:2500
346
  msgid "(Not finished)"
347
+ msgstr "(Non finito)"
348
 
349
+ #: admin.php:2330
350
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
351
+ msgstr "Questo è dove UpdraftPlus scriverà i file zip che crea inizialmente. Questa directory deve essere scrivibile dal server web. Esso è relativo alla directory di contenuto (che di default è chiamato wp-content)."
352
 
353
+ #: admin.php:2330
354
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
355
+ msgstr "<b>Non</b> inserirlo dentro i tuoi upload o nella directory dei plugins, perché causerà ricorsione (backup di backup di backup di ...)."
356
 
357
+ #: admin.php:2303
358
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
359
+ msgstr "UpdraftPlus dividerà gli archivi di backup quando superano questa dimensione del file. Il valore di default è di 800 megabyte. Fate attenzione a lasciare un po 'di margine, se il tuo web server ha un limite rigido di dimensioni (ad esempio, il 2 Gb /2048 Mb limite su alcuni server a 32 bit / file system)."
360
 
361
+ #: admin.php:1828
362
  msgid "Waiting until scheduled time to retry because of errors"
363
+ msgstr "Aspettare il tempo previsto per riprovare a causa di errori."
364
 
365
+ #: admin.php:1833
366
  msgid "Backup finished"
367
+ msgstr "Backup finito"
368
 
369
+ #: admin.php:1836
370
  msgid "Unknown"
371
+ msgstr "Sconosciuto"
372
 
373
+ #: admin.php:1852
374
  msgid "next resumption: %d (after %ss)"
375
+ msgstr "successiva ripresa: %d (dopo %ss)"
376
 
377
+ #: admin.php:1853
378
  msgid "last activity: %ss ago"
379
+ msgstr "Ultima attività: %ss fa"
380
 
381
+ #: admin.php:1863
382
  msgid "Job ID: %s"
383
+ msgstr "Job ID: %s"
384
 
385
+ #: admin.php:1790
386
  msgid "table: %s"
387
+ msgstr "tabella: %s"
388
 
389
+ #: admin.php:1798
390
  msgid "Created database backup"
391
+ msgstr "Backup del database creato"
392
 
393
+ #: admin.php:1803
394
  msgid "Encrypting database"
395
+ msgstr "Crittografia del database"
396
 
397
+ #: admin.php:1807
398
  msgid "Encrypted database"
399
+ msgstr "database crittografato"
400
 
401
+ #: admin.php:1812
402
  msgid "Uploading files to remote storage"
403
+ msgstr "Caricamento dei files nell'archiviazione remota"
404
 
405
+ #: admin.php:1824
406
  msgid "Pruning old backup sets"
407
+ msgstr "Potatura vecchi set di backup"
408
 
409
+ #: admin.php:1770
410
  msgid "Creating file backup zips"
411
+ msgstr "Creazione di file di backup zip"
412
 
413
+ #: admin.php:1783
414
  msgid "Created file backup zips"
415
+ msgstr "Creato zip di backup dei file"
416
 
417
+ #: admin.php:1788
418
  msgid "Creating database backup"
419
+ msgstr "Creazione di backup del database"
420
 
421
+ #: admin.php:1765
422
  msgid "Backup begun"
423
+ msgstr "Backup avviato"
424
 
425
+ #: admin.php:1450
426
  msgid "Backups in progress:"
427
+ msgstr "Backup in corso:"
428
 
429
+ #: admin.php:300
430
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
431
+ msgstr "Lo scheduler è disabilitato nella tua installazione di WordPress tramite l'impostazione DISABLE_WP_CRON. Nessun backup può essere eseguito (anche &quot;Backup Now&quot;), a meno che non sia impostata una funzione per chiamare lo scheduler manualmente, o fino a quando non viene abilitato."
432
 
433
+ #: restorer.php:278 restorer.php:284
434
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
435
+ msgstr "UpdraftPlus ha bisogno di creare %s nella directory di contenuti, ma non è riuscito nella creazione - si prega di controllare i permessi dei file e consentire l'accesso (%s)"
436
 
437
+ #: restorer.php:278
438
  msgid "folder"
439
+ msgstr "Cartella"
440
 
441
+ #: restorer.php:284
442
  msgid "file"
443
+ msgstr "file"
444
 
445
+ #: backup.php:1186
446
  msgid "Failed to open directory (check the file permissions): %s"
447
+ msgstr "Impossibile aprire la cartella (controllare i permessi): %s"
448
 
449
+ #: backup.php:1180
450
  msgid "%s: unreadable file - could not be backed up (check the file permissions)"
451
+ msgstr "%s: file non leggibile - impossibile eseguire il backup del file (controllare i permessi del file)"
452
 
453
+ #: updraftplus.php:1519
454
  msgid "The backup has not finished; a resumption is scheduled"
455
+ msgstr "Il backup non è ultimato; è stata rischedulata una ripresa."
456
 
457
+ #: updraftplus.php:1067
 
 
 
 
458
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
459
+ msgstr "Il tuo sito web è visitato raramente e UpdraftPlus non sta ottenendo le risorse sperate, ti consigliamo di leggere questa pagina:"
460
 
461
  #: methods/googledrive.php:482
462
  msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
467
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
468
  msgstr "L'autenticazione %s non può andare avanti, perché qualcos'altro sul tuo sito l'ha interrotta. Prova a disabilitare gli altri plugin e a fare il passaggio a un tema predefinito. (In particolare, si sta cercando il componente che invia l'output (molto probabilmente avvertimenti e/o errori PHP) prima dell'inizio della pagina. Spegnere le impostazioni di debug può anche aiutare)."
469
 
470
+ #: admin.php:1342
471
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
472
  msgstr "Il tuo limite di memoria PHP (fissato dalla società di web hosting) è molto basso. UpdraftPlus ha tentato di sollevarlo, ma senza successo. Questo plugin può lavorare con un limite di memoria di almeno di 64 Mb - soprattutto se si sono caricati file di grandi dimensioni (anche se d'altra parte, molti siti avranno successo con un limite di 32Mb - la vostra esperienza può variare)."
473
 
474
+ #: addons/autobackup.php:221
475
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - now proceeding with the updates..."
476
  msgstr "Backup riuscito <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(vedi il log...)</a> - ora si procede con gli aggiornamenti..."
477
 
478
+ #: addons/autobackup.php:274
479
  msgid "UpdraftPlus Automatic Backups"
480
  msgstr "UpdraftPlus Backup automatico"
481
 
482
+ #: addons/autobackup.php:279
483
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
484
  msgstr "Non abortire dopo aver premuto Procedi sotto - attendere il backup completo."
485
 
486
+ #: addons/autobackup.php:280
487
  msgid "Proceed with update"
488
  msgstr "Procedere con l'aggiornamento"
489
 
490
+ #: addons/autobackup.php:68 addons/autobackup.php:155
 
 
 
 
491
  msgid "Starting automatic backup..."
492
  msgstr "Avvio backup automatico..."
493
 
494
+ #: addons/autobackup.php:113
495
  msgid "plugins"
496
  msgstr "plugin"
497
 
498
+ #: addons/autobackup.php:118
499
  msgid "themes"
500
  msgstr "temi"
501
 
502
+ #: addons/autobackup.php:138
503
  msgid "You do not have sufficient permissions to update this site."
504
  msgstr "Non si dispone di autorizzazioni sufficienti per aggiornare questo sito."
505
 
506
+ #: addons/autobackup.php:148
507
  msgid "Creating database backup with UpdraftPlus..."
508
  msgstr "Creazione del backup del database con UpdraftPlus in corso..."
509
 
510
+ #: addons/autobackup.php:157 addons/autobackup.php:243
511
+ #: addons/autobackup.php:266
512
  msgid "Automatic Backup"
513
  msgstr "Backup Automatico"
514
 
515
+ #: addons/autobackup.php:199
516
  msgid "Creating backup with UpdraftPlus..."
517
  msgstr "Creazione del backup con UpdraftPlus..."
518
 
519
+ #: addons/autobackup.php:206
520
  msgid "Errors have occurred:"
521
  msgstr "Si sono verificati errori:"
522
 
523
+ #: addons/autobackup.php:219
524
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - now proceeding with the updates..."
525
  msgstr "Backup riuscito <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(vedi il log...)</a> - ora si procede con gli aggiornamenti..."
526
 
527
+ #: addons/autobackup.php:29 addons/autobackup.php:278
528
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
529
  msgstr "Backup Automatico (se rilevante) di plugin, temi e il database di WordPress con UpdraftPlus prima di aggiornare"
530
 
531
+ #: addons/autobackup.php:64
532
  msgid "Creating %s and database backup with UpdraftPlus..."
533
  msgstr "Creazione di %s e backup del database con UpdraftPlus..."
534
 
548
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
549
  msgstr "Se non si è sicuri, è consigliabile di non procedere: si potrebbe distruggere questa installazione di WordPress."
550
 
551
+ #: admin.php:1323
552
  msgid "Support"
553
  msgstr "Supporto"
554
 
555
+ #: admin.php:1323
556
  msgid "More plugins"
557
  msgstr "Altri plugin"
558
 
559
+ #: admin.php:963
560
  msgid "%s version: %s"
561
  msgstr "%s versione: %s"
562
 
563
+ #: admin.php:964
564
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
565
  msgstr "Si sta importando da una nuova versione di WordPress (%s) ad una più vecchia (%s). Non ci sono garanzie che WordPress sia in grado di gestire questo."
566
 
567
+ #: admin.php:1038
568
  msgid "This database backup is missing core WordPress tables: %s"
569
  msgstr "In questo backup del database mancano le tabelle del core di WordPress: %s"
570
 
571
+ #: admin.php:1041
572
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
573
  msgstr "UpdraftPlus non è riuscito a trovare il prefisso della tabella durante la scansione dell backup del database."
574
 
575
+ #: admin.php:908
576
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
577
  msgstr "Il database è troppo piccolo per essere un database di WordPress valido (dimensione: %s Kb)."
578
 
579
+ #: admin.php:135 admin.php:285
580
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
581
  msgstr "UpdraftPlus Premium può fare <strong>automaticamente</strong> un backup dei vostri plugin o dei temi e database prima dell'aggiornamento."
582
 
583
+ #: admin.php:135 admin.php:285
584
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
585
  msgstr "Essere in sicurezza ogni volta, senza bisogno di ricordare - seguire questo link per saperne di più."
586
 
587
+ #: admin.php:270
588
  msgid "Update Plugin"
589
  msgstr "Aggiornamento Plugin"
590
 
591
+ #: admin.php:274
592
  msgid "Update Theme"
593
  msgstr "Aggiornamento Tema"
594
 
595
+ #: admin.php:133 admin.php:283
596
  msgid "Dismiss (for %s weeks)"
597
  msgstr "Respingere (per %s settimane)"
598
 
599
+ #: admin.php:134 admin.php:284
600
  msgid "Be safe with an automatic backup"
601
  msgstr "Al sicuro con un backup automatico"
602
 
603
+ #: restorer.php:999
604
  msgid "Uploads path (%s) does not exist - resetting (%s)"
605
  msgstr "Il percorso di caricamento (%s) non esiste - reset (%s)"
606
 
607
+ #: admin.php:1327
608
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
609
  msgstr "Se è ancora possibile leggere queste parole dopo che il caricamento della pagina è terminato, allora c'è un problema JavaScript o jQuery nel sito."
610
 
611
+ #: admin.php:108
612
  msgid "Follow this link to attempt decryption and download the database file to your computer."
613
  msgstr "Segui questo link per tentare la decrittazione e scaricare il file di database sul tuo computer."
614
 
615
+ #: admin.php:109
616
  msgid "This decryption key will be attempted:"
617
  msgstr "Questa chiave di decifratura verrà tentata:"
618
 
619
+ #: admin.php:110
620
  msgid "Unknown server response:"
621
  msgstr "Risposta del server sconosciuta:"
622
 
623
+ #: admin.php:111
624
  msgid "Unknown server response status:"
625
  msgstr "Stato di risposta del server sconosciuto:"
626
 
627
+ #: admin.php:112
628
  msgid "The file was uploaded."
629
  msgstr "Il fil eè stato caricato."
630
 
631
+ #: admin.php:103
632
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
633
  msgstr "Questo file non sembra essere un archivio di backup UpdraftPlus (questi file sono .zip o .gz che hanno un nome come:... Backup_(data)_(nome del sito)_(codice) _ (tipo).(zip|gz) ). Tuttavia, gli archivi UpdraftPlus sono file zip/SQL standard - quindi se si è sicuri che il file ha il formato giusto, allora è possibile rinominarla per percorrere quel modello."
634
 
635
+ #: admin.php:104
636
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
637
  msgstr "(assicurarsi che si stava tentando di caricare un file zip precedentemente creato da UpdraftPlus)"
638
 
639
+ #: admin.php:105
640
  msgid "Upload error:"
641
  msgstr "Errore di caricamento:"
642
 
643
+ #: admin.php:106
644
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
645
  msgstr "Questo file non sembra essere un archivio database crittografato da UpdraftPlus (questi file sono file gz.crypt che hanno un nome come:. Backup_(data)_(nome del sito)_(codice)_db.crypt.gz)."
646
 
647
+ #: admin.php:107
648
  msgid "Upload error"
649
  msgstr "Errore caricamento"
650
 
651
+ #: admin.php:96
652
  msgid "Delete from your web server"
653
  msgstr "Cancella dal tuo web server"
654
 
655
+ #: admin.php:97
656
  msgid "Download to your computer"
657
  msgstr "Scarica sul tuo computer"
658
 
659
+ #: admin.php:98
660
  msgid "and then, if you wish,"
661
  msgstr "e poi, se vuoi,"
662
 
663
+ #: methods/s3.php:387
664
  msgid "Examples of S3-compatible storage providers:"
665
  msgstr "Esempi di provider di storage S3-compatibili:"
666
 
667
+ #: methods/googledrive.php:207
668
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
669
  msgstr "Previsto il fallimento dell'upload: il limite di %s per ogni singolo file è %s, mentre il file è %s Gb (%d byte)"
670
 
671
+ #: backup.php:736
672
  msgid "The backup directory is not writable - the database backup is expected to shortly fail."
673
  msgstr "La cartella di backup non è scrivibile - il backup del database dovrebbe fallire a breve."
674
 
675
+ #: admin.php:2859
676
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
677
  msgstr "Non verrà cancellato nessun archivio dopo averlo scompattato, perché non c'è un cloud storage per questo backup"
678
 
679
+ #: admin.php:2552
680
  msgid "(%d archive(s) in set)."
681
  msgstr "(%d archivi nel set)."
682
 
683
+ #: admin.php:2555
684
  msgid "You appear to be missing one or more archives from this multi-archive set."
685
  msgstr "Sembra che uno o più archivi di questo set multi-archivio sia mancante."
686
 
687
+ #: admin.php:2302
688
  msgid "Split archives every:"
689
  msgstr "Dividi gli archivi ogni:"
690
 
691
+ #: admin.php:2123
692
  msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
693
  msgstr "Se si immettono più file/directory, separarli con le virgole. È possibile utilizzare un * alla fine di una voce come wildcard."
694
 
695
+ #: admin.php:89
696
  msgid "Error: the server sent an empty response."
697
  msgstr "Errore: il server ha inviato una risposta vuota."
698
 
699
+ #: admin.php:90
700
  msgid "Warnings:"
701
  msgstr "Attenzione:"
702
 
703
+ #: admin.php:92
704
  msgid "Error: the server sent us a response (JSON) which we did not understand."
705
  msgstr "Errore: il server ha inviato una risposta sconosciuta (JSON)."
706
 
707
+ #: admin.php:1346
708
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
709
  msgstr "La tua installazione di WordPress ha vecchie directory dal suo stato precedente il ripristinato/migrazione (informazioni tecniche: questi hanno un suffisso -old). Utilizzare questo pulsante per eliminarle (se si è verificato che il ripristina ha funzionato)."
710
 
711
+ #: admin.php:1139
712
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
713
  msgstr "Questo sembra un file creato da UpdraftPlus, ma questa installazione non riconosce questo tipo di oggetto:%s. Forse è necessario installare un add-on?"
714
 
715
+ #: admin.php:612
716
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
717
  msgstr "L'archivio di backup è stato processato correttamente. Ora premi ancora Ripristina per procedere."
718
 
719
+ #: admin.php:614
720
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
721
  msgstr "I file di archivio di backup sono stati elaborati, ma con alcune avvertenze. Se tutto va bene, premere nuovamente Ripristina per procedere. Altrimenti, annullare e correggere eventuali problemi."
722
 
723
+ #: admin.php:616
724
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
725
  msgstr "I file di archivio di backup sono stati elaborati, ma con alcuni errori. Avrete bisogno di cancellare e correggere gli eventuali problemi prima di riprovare."
726
 
727
+ #: admin.php:496
728
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
729
  msgstr "L'archivio di backup di questo file non è stato trovato. Il metodo di archiviazione remota in uso (%s) non ci permette di recuperare il file. Per eseguire qualsiasi ripristino con UpdraftPlus, è necessario ottenere una copia di questo file e posizionarlo all'interno della cartella di lavoro di UpdraftPlus"
730
 
731
+ #: admin.php:549
732
  msgid "No such backup set exists"
733
  msgstr "Nessun set di backup esistente"
734
 
735
+ #: admin.php:587
736
  msgid "File not found (you need to upload it): %s"
737
  msgstr "File non trovato (è necessario caricarlo): %s"
738
 
739
+ #: admin.php:589
740
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
741
  msgstr "Il file è stato trovato, ma ha dimensione nulla (è necessario ri-caricare il file): %s"
742
 
743
+ #: admin.php:593
744
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
745
  msgstr "il file (%s) è stato trovato, ma ha una dimensione differente da quella prevista (%s invece che %s) - potrebbe essere corrotto."
746
 
747
+ #: admin.php:607
748
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
749
  msgstr "Questo set di backup multiarchivio sembra che non comprenda il seguente archivio: %s"
750
 
751
+ #: restorer.php:229
752
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
753
  msgstr "Impossibile spostare la directory (controllare i permessi e le quote del disco): %s"
754
 
755
+ #: restorer.php:446
756
  msgid "This directory already exists, and will be replaced"
757
  msgstr "Questa directory esiste già, e verrà sovrascritta."
758
 
759
+ #: restorer.php:220
760
  msgid "Failed to move file (check your file permissions and disk quota): %s"
761
  msgstr "Impossibile spostare il file (controllare i permessi e le quote del disco): %s"
762
 
764
  msgid "Moving unpacked backup into place..."
765
  msgstr "Spostamento del backup scompattato in posizione..."
766
 
767
+ #: backup.php:1449 backup.php:1685
768
  msgid "Failed to open the zip file (%s) - %s"
769
  msgstr "Impossibile aprire il file .zip (%s) - %s"
770
 
772
  msgid "WordPress root directory server path: %s"
773
  msgstr "Percorso cartella di root di WordPress sul server: %s"
774
 
775
+ #: methods/s3.php:395
776
  msgid "... and many more!"
777
  msgstr "... e molti altri!"
778
 
779
+ #: methods/s3.php:420
780
  msgid "%s end-point"
781
  msgstr "end-point %s"
782
 
783
+ #: admin.php:2807
784
  msgid "File is not locally present - needs retrieving from remote storage"
785
  msgstr "Il file non è presente in locale - è necessario il recupero dallo storage remoto"
786
 
788
  msgid "S3 (Compatible)"
789
  msgstr "S3 (Compatibile)"
790
 
791
+ #: admin.php:2779
792
  msgid "Final checks"
793
  msgstr "Controlli Finali"
794
 
795
+ #: admin.php:2802
796
  msgid "Looking for %s archive: file name: %s"
797
  msgstr "Ricerca archivio %s: nome file:%s"
798
 
799
+ #: admin.php:2308
800
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
801
  msgstr "Selezionare questa opzione per eliminare tutti i file di backup superflui dal server al termine del backup stesso (ad esempio, se si deseleziona, tutti i file spediti in remoto rimarranno anche in locale, e tutti i file in locale non saranno soggetti ai limiti di ritenzione)."
802
 
803
+ #: admin.php:2190
804
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
805
  msgstr "Trascinare qui i file di database crittografati (file db.gz.crypt) per caricarli per la decrittazione"
806
 
807
+ #: admin.php:2115
808
  msgid "Your wp-content directory server path: %s"
809
  msgstr "Il vostro percorso della cartella wp-content sul server: %s"
810
 
811
+ #: admin.php:102
812
  msgid "Raw backup history"
813
  msgstr "Cronologia di backup raw"
814
 
815
+ #: admin.php:1676
816
  msgid "Show raw backup and file list"
817
  msgstr "Mostra backup raw e lista file"
818
 
819
+ #: admin.php:88
820
  msgid "Processing files - please wait..."
821
  msgstr "Elaborazione file - attendere prego...."
822
 
823
+ #: admin.php:1474
824
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
825
  msgstr "La tua installazione di WordPress ha un problema con l'output in più spazi bianchi. Questo può corrompere i backup che si scaricano da qui."
826
 
827
+ #: admin.php:1474
828
  msgid "Please consult this FAQ for help on what to do about it."
829
  msgstr "Si prega di consultare questa FAQ per un aiuto su che cosa fare a riguardo."
830
 
831
+ #: admin.php:914
832
  msgid "Failed to open database file."
833
  msgstr "Impossibile aprire il file di database."
834
 
835
+ #: admin.php:896
836
  msgid "Failed to write out the decrypted database to the filesystem."
837
  msgstr "Impossibile scrivere il database decodificato sul filesystem."
838
 
839
+ #: admin.php:717
840
  msgid "Known backups (raw)"
841
  msgstr "Backup noti (raw)"
842
 
843
+ #: restorer.php:537
844
  msgid "Using directory from backup: %s"
845
  msgstr "Utilizzo directory dal backup: %s"
846
 
847
+ #: restorer.php:489
848
  msgid "Files found:"
849
  msgstr "File trovati:"
850
 
851
+ #: restorer.php:495
852
  msgid "Unable to enumerate files in that directory."
853
  msgstr "Impossibile enumerare i file nella directory."
854
 
855
+ #: restorer.php:844
856
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
857
  msgstr "Il motore tabella richiesto (%s) non è presente - cambio a MyISAM."
858
 
859
+ #: restorer.php:855
860
  msgid "Restoring table (%s)"
861
  msgstr "Ripristino tabella (%s)"
862
 
863
+ #: restorer.php:297
864
  msgid "An existing unremoved backup from a previous restore exists: %s"
865
  msgstr "Un backup non rimossi è esistente da un ripristino precedente: %s"
866
 
867
+ #: backup.php:1502 backup.php:1695
868
  msgid "A zip error occurred - check your log for more details."
869
  msgstr "Si è verificato un errore zip - controllare il log per maggiori dettagli."
870
 
871
+ #: addons/migrator.php:44
872
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
873
  msgstr "Questo appare come una migrazione (il backup è da un sito con un indirizzo / URL diverso), ma non è stata selezionata l'opzione di ricerca e sostituzione del database. Questo è di solito un errore."
874
 
875
+ #: restorer.php:930
876
  msgid "An error occured on the first CREATE TABLE command - aborting run"
877
  msgstr "Si è verificato un errore al primo comando di CREATE TABLE - annullamento"
878
 
879
+ #: admin.php:2828
880
  msgid "file is size:"
881
  msgstr "il file ha dimensioni:"
882
 
883
+ #: admin.php:2519
884
  msgid "database"
885
  msgstr "database"
886
 
887
+ #: admin.php:300 admin.php:1327
888
  msgid "Go here for more information."
889
  msgstr "Vai qui per maggiori informazioni."
890
 
891
+ #: admin.php:1538
892
  msgid "Downloading / preparing backup files..."
893
  msgstr "Download / preparazione dei file di backup ..."
894
 
895
+ #: admin.php:87
896
  msgid "Some files are still downloading or being processed - please wait."
897
  msgstr "Alcuni file sono ancora in download o in fase di elaborazione - attendere prego."
898
 
899
+ #: admin.php:949 admin.php:957
900
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
901
  msgstr "Questo set di backup è di un sito diverso - non si tratta di un ripristino, ma di una migrazione. È necessario il Migrator add-on per eseguire questo compito."
902
 
962
  msgid "%s error: zero-size file was downloaded"
963
  msgstr "Errore %s: è stato scaricato un file di dimensione zero"
964
 
965
+ #: restorer.php:483 admin.php:887 admin.php:976 admin.php:981 admin.php:1132
966
+ #: admin.php:1139
967
  msgid "Error: %s"
968
  msgstr "Errore %s"
969
 
970
+ #: admin.php:2325
971
  msgid "Backup directory specified exists, but is <b>not</b> writable."
972
  msgstr "La cartella di backup specificata esiste, ma <b>non</b> è scrivibile."
973
 
974
+ #: admin.php:2323
975
  msgid "Backup directory specified does <b>not</b> exist."
976
  msgstr "La cartella di backup specificata <b>non</b> esiste."
977
 
978
+ #: admin.php:949 admin.php:957 admin.php:1874 admin.php:2027
979
  msgid "Warning: %s"
980
  msgstr "Attenzione: %s"
981
 
982
+ #: admin.php:1417
983
  msgid "Last backup job run:"
984
  msgstr "Esecuzione ultimo backup:"
985
 
986
+ #: backup.php:1200 backup.php:1212
987
  msgid "%s: unreadable file - could not be backed up"
988
  msgstr "%s: file illeggibile - impossibile eseguirne il backup"
989
 
990
+ #: backup.php:1463
991
  msgid "A very large file was encountered: %s (size: %s Mb)"
992
  msgstr "Il file è di dimensioni molto grandi: %s (dimensione: %s Mb)"
993
 
994
+ #: backup.php:772
995
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
996
  msgstr "La tabella %s ha un numero di campi elevato (%s) - ci auguriamo che il vostro hosting vi permetta sufficienti risorse per riversare questa tabella nel backup"
997
 
998
+ #: backup.php:843
999
  msgid "An error occurred whilst closing the final database file"
1000
  msgstr "Errore durante la chiusura del file di database finale"
1001
 
1002
+ #: backup.php:439
1003
  msgid "Warnings encountered:"
1004
  msgstr "Riscontrati avvisi:"
1005
 
1006
+ #: updraftplus.php:1509
1007
  msgid "The backup apparently succeeded (with warnings) and is now complete"
1008
  msgstr "Backup avvenuto e completato apparentemente con successo (riscontrati avvisi)"
1009
 
1010
+ #: updraftplus.php:573
1011
  msgid "Your free disk space is very low - only %s Mb remain"
1012
  msgstr "Il tuo spazio disco disponibile si sta esaurendo - solo %s Mb rimanenti"
1013
 
1014
+ #: addons/migrator.php:516
1015
  msgid "<strong>Search and replacing table:</strong> %s"
1016
  msgstr "<strong>Ricerca e sostituizione della tabella:</strong> %s"
1017
 
1018
+ #: addons/migrator.php:102
1019
  msgid "Site Name:"
1020
  msgstr "Nome Sito:"
1021
 
1022
+ #: addons/migrator.php:104
1023
  msgid "Site Domain:"
1024
  msgstr "Nome Dominio:"
1025
 
1026
+ #: addons/migrator.php:121
1027
  msgid "Migrated site (from UpdraftPlus)"
1028
  msgstr "Sito migrato (da UpdraftPlus)"
1029
 
1030
+ #: addons/migrator.php:150
1031
  msgid "<strong>ERROR</strong>: Site URL already taken."
1032
  msgstr "<strong>ERRORE</strong>: URL del sito già preso."
1033
 
1034
+ #: addons/migrator.php:157
1035
  msgid "New site:"
1036
  msgstr "Nuovo Sito:"
1037
 
1038
+ #: addons/migrator.php:89
1039
  msgid "Information needed to continue:"
1040
  msgstr "Informazioni necessarie per continuare:"
1041
 
1042
+ #: addons/migrator.php:90
1043
  msgid "Please supply the following information:"
1044
  msgstr "Prego, inserire le seguenti informazioni:"
1045
 
1046
+ #: addons/migrator.php:93
1047
  msgid "Enter details for where this new site is to live within your multisite install:"
1048
  msgstr "Inserire i dettagli per il nuovo sito all'interno di una installazione multi-sito:"
1049
 
1050
+ #: addons/migrator.php:48
1051
  msgid "Processed plugin:"
1052
  msgstr "Plugin processato:"
1053
 
1054
+ #: addons/migrator.php:56
1055
  msgid "Network activating theme:"
1056
  msgstr "Attivazione del tema da rete: "
1057
 
1067
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1068
  msgstr "L'installazione di PHP sul tuo server non include un modulo necessario (%s). Contattare il supporto del provider di web hosting, e chiedere di abilitarlo."
1069
 
1070
+ #: methods/s3.php:537
1071
  msgid "Please check your access credentials."
1072
  msgstr "Si prega di verificare i propri dati di accesso."
1073
 
1074
+ #: methods/s3.php:512
1075
  msgid "The error reported by %s was:"
1076
  msgstr "L'errore riportato da %s è:"
1077
 
1078
+ #: restorer.php:553
1079
  msgid "Please supply the requested information, and then continue."
1080
  msgstr "Si prega di fornire le informazioni richieste, e quindi di continuare."
1081
 
1082
+ #: restorer.php:560
1083
  msgid "New table prefix:"
1084
  msgstr "Nuovo prefisso di tabella:"
1085
 
1086
+ #: restorer.php:911
1087
  msgid "Cannot drop tables, so deleting instead (%s)"
1088
  msgstr "Impossibile eliminare le tabelle dal database, la cancellazione avverrà tramite comando DELETE (%s)"
1089
 
1090
+ #: restorer.php:730 admin.php:981
1091
  msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
1092
  msgstr "Per importare un sito WordPress comune in una installazione multi-sito è necessario sia il multisite che il migrator add-on."
1093
 
1094
+ #: restorer.php:736 admin.php:989
1095
  msgid "Site information:"
1096
  msgstr "Informazioni sul sito:"
1097
 
1098
+ #: restorer.php:906
1099
  msgid "Cannot create new tables, so skipping this command (%s)"
1100
  msgstr "Impossibile creare nuove tabelle, il comando è tralasciato (%s)"
1101
 
1102
+ #: restorer.php:680 restorer.php:695 admin.php:1327
1103
  msgid "Warning:"
1104
  msgstr "Attenzione:"
1105
 
1106
+ #: restorer.php:680
1107
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
1108
  msgstr "Il tuo utente per l'accesso al database non ha i diritti per creare tabelle. Cercheremo di ripristinare semplicemente svuotando le tabelle; questo dovrebbe funzionare fino a quando a) si esegue il ripristino di una versione di WordPress con la stessa struttura di database, e b) Il database importato non contiene le tabelle che non sono già presenti sul sito sul quale importare."
1109
 
1110
+ #: restorer.php:695
1111
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
1112
  msgstr "Il tuo utente del database non dispone dell'autorizzazione per eliminare tabelle. Cercheremo di ripristinare semplicemente svuotando le tabelle; questo dovrebbe funzionare fino a quando si esegue il ripristino da una versione di WordPress con la stessa struttura del database."
1113
 
1114
+ #: restorer.php:35 admin.php:976
1115
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
1116
  msgstr "Esecuzione su un sito WordPress multi-sito - ma il tuo backup non è per un sito multi-sito. "
1117
 
1118
+ #: admin.php:2791
1119
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
1120
  msgstr "Esclusione del ripristino del core WordPress quando si importa un singolo sito in una installazione multi-sito. Se c'è qualcosa di necessario nella tua cartella WordPress allora sarà necessario ri-aggiungerlo manualmente dal file .zip."
1121
 
1122
+ #: admin.php:2396
1123
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1124
  msgstr "L'installazione PHP del tuo server web non ha incluso un modulo <strong>necessario</strong> (per %s - nome modulo %s). Contattare il supporto del provider di web hosting e chiedere di abilitarlo."
1125
 
1126
+ #: admin.php:2396
1127
  msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
1128
  msgstr "Le opzioni disponibili sono: 1) Installare/abilitare %s oppure 2) Cambiare società di web hosting -%s è un componente standard di PHP, ed è richiesto da tutti i plug-in di cloud backup conosciuti."
1129
 
1130
+ #: admin.php:116
1131
  msgid "Close"
1132
  msgstr "Chiudi"
1133
 
1134
+ #: admin.php:83
1135
  msgid "Unexpected response:"
1136
  msgstr "Risposta sconosciuta:"
1137
 
1138
+ #: admin.php:2144
1139
  msgid "To send to more than one address, separate each address with a comma."
1140
  msgstr "Per inviare a più di un indirizzo, separate ognuno da una virgola."
1141
 
1142
+ #: admin.php:101
1143
  msgid "PHP information"
1144
  msgstr "Informazioni PHP"
1145
 
1146
+ #: admin.php:1655
1147
  msgid "show PHP information (phpinfo)"
1148
  msgstr "Mostra informazioni PHP (phpinfo)"
1149
 
1150
+ #: admin.php:1668
1151
  msgid "zip executable found:"
1152
  msgstr "zip eseguibile trovato:"
1153
 
1154
+ #: admin.php:1599
1155
  msgid "Migrate Site"
1156
  msgstr "Migrare sito"
1157
 
1158
+ #: admin.php:1603
1159
  msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
1160
  msgstr "La migrazione dei dati da un altro sito avviene attraverso il pulsante \"Ripristina\". Un \"migrazione\" è in definitiva la stessa cosa di un ripristino, ma utilizzando gli archivi di backup che si importano da un altro sito. UpdraftPlus modifica l'operazione di ripristino in modo appropriato, per soddisfare i dati di backup al nuovo sito."
1161
 
1162
+ #: admin.php:1603
1163
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
1164
  msgstr "<a href=\"%s\">Leggi questo articolo per vedere passo-passo com'è fatto.</a>"
1165
 
1166
+ #: admin.php:1605
1167
  msgid "Do you want to migrate or clone/duplicate a site?"
1168
  msgstr "Vuoi migrare o clonare/duplicare un sito?"
1169
 
1170
+ #: admin.php:1605
1171
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1172
  msgstr "Prova il nostro \"Migrator\" add-on. Dopo averlo usato una volta, avrete ammortizzato il costo di acquisto rispetto al tempo necessario per copiare un sito a mano."
1173
 
1174
+ #: admin.php:1605
1175
  msgid "Get it here."
1176
  msgstr "Lo trovi qui."
1177
 
1178
+ #: admin.php:1527
1179
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
1180
  msgstr "Eliminazione ... Si prega di lasciare il tempo per le comunicazioni con l'archiviazione remota per completare"
1181
 
1182
+ #: admin.php:1526
1183
  msgid "Also delete from remote storage"
1184
  msgstr "Cancellazione anche dall'archiviazione remota"
1185
 
1186
+ #: admin.php:1462
1187
  msgid "Latest UpdraftPlus.com news:"
1188
  msgstr "Ultime notizie da UpdraftPlus.com:"
1189
 
1190
+ #: admin.php:1433
1191
  msgid "Clone/Migrate"
1192
  msgstr "Clona/Migra"
1193
 
1194
+ #: admin.php:1323
1195
  msgid "News"
1196
  msgstr "Notizie"
1197
 
1198
+ #: admin.php:1323
1199
  msgid "Premium"
1200
  msgstr "Premium"
1201
 
1202
+ #: admin.php:708
1203
  msgid "Local archives deleted: %d"
1204
  msgstr "Archivi locali cancellati: %d"
1205
 
1206
+ #: admin.php:709
1207
  msgid "Remote archives deleted: %d"
1208
  msgstr "Archivi remoti cancellati: %d"
1209
 
1210
+ #: backup.php:91
1211
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
1212
  msgstr "%s - impossibile eseguire il backup di questo; la cartella corrispondente non esiste (%s) "
1213
 
1214
+ #: admin.php:626
1215
  msgid "Backup set not found"
1216
  msgstr "Set di backup non trovato"
1217
 
1218
+ #: admin.php:707
1219
  msgid "The backup set has been removed."
1220
  msgstr "Il backup è stato rimosso."
1221
 
1222
+ #: updraftplus.php:2089
1223
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
1224
  msgstr "Iscriviti al blog di UpdraftPlus per avere le ultime notizie e le offerte"
1225
 
1226
+ #: updraftplus.php:2089
1227
  msgid "Blog link"
1228
  msgstr "Collegamento al Blog"
1229
 
1230
+ #: updraftplus.php:2089
1231
  msgid "RSS link"
1232
  msgstr "Collegamento RSS"
1233
 
1234
+ #: methods/s3.php:351 methods/ftp.php:148 addons/webdav.php:289
1235
+ #: addons/sftp.php:326
1236
  msgid "Testing %s Settings..."
1237
  msgstr "Analisi impostazioni di %s..."
1238
 
1239
+ #: admin.php:1490
1240
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
1241
  msgstr "In alternativa, è possibile inserire manualmente nella cartella UpdraftPlus (solitamente wp-content/updraft), ad esempio via FTP, e quindi utilizzare il link \"nuova scansione\" di cui sopra."
1242
 
1243
+ #: admin.php:316
1244
  msgid "Notice"
1245
  msgstr "Nota"
1246
 
1247
+ #: admin.php:316
1248
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
1249
  msgstr "Modalità di debug di UpdraftPlus attivata. E' possibile visualizzare avvisi di debug in questa pagina non solamente di UpdraftPlus, ma di qualsiasi altro plug-in installato. Si prega verificare che l'avviso che state vedendo sia generato da UpdraftPlus prima di inviare una richiesta di supporto."
1250
 
1251
+ #: admin.php:321
1252
  msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
1253
  msgstr "W3 Total Cache è attivo. E' noto che questo componente ha un bug che scombussola tutti i task schedulati (inclusi i processi di backup)"
1254
 
1255
+ #: admin.php:321
1256
  msgid "Go here to turn it off."
1257
  msgstr "Vai qui per disattivarlo."
1258
 
1259
+ #: admin.php:321
1260
  msgid "<a href=\"%s\">Go here</a> for more information."
1261
  msgstr "<a href=\"%s\">Vai qui</a> per maggiori informazioni."
1262
 
1263
+ #: backup.php:422
1264
  msgid "Errors encountered:"
1265
  msgstr "Errori riscontrati:"
1266
 
1267
+ #: admin.php:80
1268
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
1269
  msgstr "Rescan in corsco (ricerca di backup uploadati manualmente nello spazio interno di archiviazione).."
1270
 
1271
+ #: admin.php:86
1272
  msgid "Begun looking for this entity"
1273
  msgstr "Inizio ricerca di questo termine"
1274
 
1275
+ #: addons/migrator.php:455
1276
  msgid "SQL update commands run:"
1277
  msgstr "Comandi di aggiornamento SQL eseguiti:"
1278
 
1279
+ #: admin.php:91
1280
  msgid "Errors:"
1281
  msgstr "Errori:"
1282
 
1283
+ #: addons/migrator.php:457
1284
  msgid "Time taken (seconds):"
1285
  msgstr "Tempo necessario (secondi):"
1286
 
1287
+ #: addons/migrator.php:545
1288
  msgid "rows: %d"
1289
  msgstr "linee: %d"
1290
 
1291
+ #: addons/migrator.php:648
1292
  msgid "\"%s\" has no primary key, manual change needed on row %s."
1293
  msgstr "\"%s\" non ha una chiave primaria, necessaria modifica manuale sulla linea %s."
1294
 
1296
  msgid "Store at"
1297
  msgstr "Archivia in"
1298
 
1299
+ #: addons/migrator.php:363
1300
  msgid "Nothing to do: the site URL is already: %s"
1301
  msgstr "Nessuna modifica: l'URL del sito &egrave; gi&agrave;: %s"
1302
 
1303
+ #: addons/migrator.php:368 addons/migrator.php:371
1304
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
1305
  msgstr "Attenzione: l'URL del database del sito (%s) è differente dalla posizione originale (%s)"
1306
 
1307
+ #: addons/migrator.php:378 addons/migrator.php:381
1308
  msgid "Database search and replace: replace %s in backup dump with %s"
1309
  msgstr "Ricerca e sostituzione del database: sostituisci %s nel backup con %s"
1310
 
1311
+ #: addons/migrator.php:399
1312
  msgid "Could not get list of tables"
1313
  msgstr "Impossibile caricare la lista delle tabelle"
1314
 
1315
+ #: addons/migrator.php:410
1316
  msgid "<strong>Search and replacing table:</strong> %s: already done"
1317
  msgstr "<strong>Ricerca e Sostituzione Tabella:</strong> %s: già fatto"
1318
 
1319
+ #: addons/migrator.php:452
1320
  msgid "Tables examined:"
1321
  msgstr "Tabelle esaminate:"
1322
 
1323
+ #: addons/migrator.php:453
1324
  msgid "Rows examined:"
1325
  msgstr "Righe esaminate:"
1326
 
1327
+ #: addons/migrator.php:454
1328
  msgid "Changes made:"
1329
  msgstr "Cambiamenti fatti:"
1330
 
1331
+ #: addons/sftp.php:201
1332
  msgid "%s Error: Failed to download"
1333
  msgstr "Errore %s: download fallito"
1334
 
1335
+ #: addons/sftp.php:260
1336
  msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1337
  msgstr "Non è possibile riprendere upload parziali, è quindi necessario assicurarsi che il vostro server web permetta ai processi PHP di funzionare abbastanza a lungo per caricare il vostro file di backup più grande."
1338
 
1339
+ #: addons/sftp.php:265
1340
  msgid "Host"
1341
  msgstr "Host"
1342
 
1343
+ #: addons/sftp.php:272
1344
  msgid "Port"
1345
  msgstr "Porta"
1346
 
1347
+ #: udaddons/options.php:97
1348
  msgid "Password"
1349
  msgstr "Password"
1350
 
1351
+ #: addons/sftp.php:302
1352
  msgid "Directory path"
1353
  msgstr "Percorso cartella"
1354
 
1355
+ #: addons/sftp.php:304
1356
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
1357
  msgstr "Dove cambiare cartella dopo il login - spesso questo è relativo alla vostra cartella di home."
1358
 
1359
+ #: addons/sftp.php:355
1360
  msgid "host name"
1361
  msgstr "Nome Host"
1362
 
1363
+ #: addons/sftp.php:359
1364
  msgid "username"
1365
  msgstr "Nome Utente"
1366
 
1367
+ #: addons/sftp.php:363
1368
  msgid "password"
1369
  msgstr "Password"
1370
 
1371
+ #: addons/sftp.php:368
1372
  msgid "Failure: Port must be an integer."
1373
  msgstr "Errore: la porta deve essere un numero intero."
1374
 
1376
  msgid "starting from next time it is"
1377
  msgstr "Inizio prossima volta è "
1378
 
1379
+ #: addons/multisite.php:140
1380
  msgid "Multisite Install"
1381
  msgstr "Installazione Multi-sito"
1382
 
1383
+ #: udaddons/options.php:174
1384
  msgid "You do not have sufficient permissions to access this page."
1385
  msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa pagina."
1386
 
1387
+ #: udaddons/options.php:153
1388
  msgid "You do not have permission to access this page."
1389
  msgstr "Non hai il permesso di accedere a questa pagina."
1390
 
1391
+ #: addons/multisite.php:237
1392
  msgid "Must-use plugins"
1393
  msgstr "Plugin essenziali"
1394
 
1395
+ #: addons/multisite.php:244
1396
  msgid "Blog uploads"
1397
  msgstr "Caricamenti dal blog"
1398
 
1399
+ #: addons/migrator.php:174
1400
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
1401
  msgstr "Tutti i riferimenti alla posizione del sito nel database saranno sostituiti con l'URL del sito attuale, che è:%s"
1402
 
1403
+ #: addons/migrator.php:174
1404
  msgid "Search and replace site location in the database (migrate)"
1405
  msgstr "Ricerca e sostituzione della posizione del sito nel database (migrazione)"
1406
 
1407
+ #: addons/migrator.php:174
1408
  msgid "(learn more)"
1409
  msgstr "(ulteriori informazioni)"
1410
 
1411
+ #: addons/migrator.php:270 addons/migrator.php:434
1412
  msgid "Failed: the %s operation was not able to start."
1413
  msgstr "Errore: Non è stato possibile avviare l'operazione %s"
1414
 
1415
+ #: addons/migrator.php:272 addons/migrator.php:436
1416
  msgid "Failed: we did not understand the result returned by the %s operation."
1417
  msgstr "Errore: Codice di ritorno dell'operazione %s non conosciuto."
1418
 
1419
+ #: addons/migrator.php:319
1420
  msgid "Database: search and replace site URL"
1421
  msgstr "Database: ricerca e sostituzione dell'URL del sito"
1422
 
1423
+ #: addons/migrator.php:322
1424
  msgid "This option was not selected."
1425
  msgstr "Questa opzione non è stata selezionata."
1426
 
1427
+ #: addons/migrator.php:345 addons/migrator.php:349 addons/migrator.php:354
1428
+ #: addons/migrator.php:358
1429
  msgid "Error: unexpected empty parameter (%s, %s)"
1430
  msgstr "Errore: parametro vuoto inatteso (%s, %s)"
1431
 
1481
  msgid "No %s found"
1482
  msgstr "%s non trovato"
1483
 
1484
+ #: addons/sftp.php:398
1485
  msgid "Check your file permissions: Could not successfully create and enter:"
1486
  msgstr "Controllare le autorizzazioni file: Impossibile creare ed entrare con successo:"
1487
 
1488
+ #: methods/ftp.php:186
1489
  msgid "FTP Server"
1490
  msgstr "Server FTP"
1491
 
1492
+ #: methods/ftp.php:190
1493
  msgid "FTP Login"
1494
  msgstr "Login FTP"
1495
 
1496
+ #: methods/ftp.php:194
1497
  msgid "FTP Password"
1498
  msgstr "Password FTP"
1499
 
1500
+ #: methods/ftp.php:198
1501
  msgid "Remote Path"
1502
  msgstr "Percorso Remoto"
1503
 
1504
+ #: methods/ftp.php:199
1505
  msgid "Needs to already exist"
1506
  msgstr "Deve essere esistente"
1507
 
1508
+ #: methods/ftp.php:224
1509
  msgid "Failure: No server details were given."
1510
  msgstr "Errore: Nessun dettaglio sul server è stato fornito."
1511
 
1512
+ #: methods/ftp.php:239
1513
  msgid "Failure: we did not successfully log in with those credentials."
1514
  msgstr "Errore: Non è possibile eseguire il log-in con queste credenziali"
1515
 
1516
+ #: methods/ftp.php:247
1517
  msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
1518
  msgstr "Errore: si è verificato un errore interno imprevisto di UpdraftPlus durante la prova le credenziali - si prega di contattare lo sviluppatore"
1519
 
1520
+ #: methods/ftp.php:251
1521
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
1522
  msgstr "Abbiamo effettuato correttamente il login, e confermato la nostra capacità di creare un file nella directory data (tipo di accesso:"
1523
 
1524
+ #: methods/ftp.php:254
1525
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
1526
  msgstr "Errore: Log-in eseguito correttamente, ma non siamo riusciti a creare un file nella directory data."
1527
 
1528
+ #: addons/webdav.php:40 addons/webdav.php:161 addons/webdav.php:197
1529
  #: addons/sftp.php:32
1530
  msgid "No %s settings were found"
1531
  msgstr "Non sono state trovate impostazioni di %s"
1532
 
1533
+ #: addons/webdav.php:123 addons/webdav.php:127
1534
  msgid "Chunk %s: A %s error occurred"
1535
  msgstr "Parte %s: rilevato errore %s "
1536
 
1537
+ #: addons/webdav.php:213 addons/webdav.php:220 addons/webdav.php:233
1538
  msgid "WebDAV Error"
1539
  msgstr "Errore WebDAV"
1540
 
1541
+ #: addons/webdav.php:220
1542
  msgid "Error opening remote file: Failed to download"
1543
  msgstr "Errore nell'apertura di file remoto: impossibile eseguire il download"
1544
 
1545
+ #: addons/webdav.php:233
1546
  msgid "Local write failed: Failed to download"
1547
  msgstr "Scrittura locale non riuscita: impossibile eseguire il download"
1548
 
1549
+ #: addons/webdav.php:269
1550
  msgid "WebDAV URL"
1551
  msgstr "URL WebDAV"
1552
 
1553
+ #: addons/webdav.php:273
1554
  msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
1555
  msgstr "Inserire un URL completo, che inizi con webdav:// o webdavs:// completo di percorso, nome utente, password e della porta come richiesto - ad esempio %s"
1556
 
1557
+ #: admin.php:1908 admin.php:1933
1558
  msgid "Failed"
1559
  msgstr "Errore"
1560
 
1561
+ #: addons/webdav.php:331
1562
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
1563
  msgstr "Errore: impossibile copiare un file in quella directory - controlla le tue autorizzazioni"
1564
 
1594
  msgid "Your %s account name: %s"
1595
  msgstr "Nome del tuo account %s: %s"
1596
 
1597
+ #: methods/ftp.php:182
1598
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1599
  msgstr "UpdraftPlus regolare supporta solo FTP non cifrato."
1600
 
1601
+ #: methods/ftp.php:182
1602
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
1603
  msgstr "Se si desidera la crittografia (ad esempio per memorizzare dati aziendali sensibili), è disponibile un add-on."
1604
 
1605
+ #: methods/s3.php:335
1606
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
1607
  msgstr "Errore %s: Impossibile eseguire il download di %s. Controllare le autorizzazioni e le credenziali."
1608
 
1609
+ #: methods/s3.php:271 methods/s3.php:339
1610
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
1611
  msgstr "Errore %s: Impossibile accedere al bucket %s. Controllare le autorizzazioni e le credenziali."
1612
 
1613
+ #: methods/s3.php:416
1614
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
1615
  msgstr "Ottieni la tua chiave di accesso e la chiave segreta <a href=\"%s\">dalla console %s</a>, quindi scegli un nome bucket (Globally Unique - tutti gli utenti %s) (lettere e numeri) (e facoltativamente un percorso) da utilizzare per lo storage. Il bucket verrà creato, se non esiste già."
1616
 
1617
+ #: methods/s3.php:416
1618
  msgid "If you see errors about SSL certificates, then please go here for help."
1619
  msgstr "Se si trovano errori sui certificati SSL, allora vai qui per un aiuto."
1620
 
1621
+ #: methods/s3.php:427
1622
  msgid "%s access key"
1623
  msgstr "Chiave di accesso %s"
1624
 
1625
+ #: methods/s3.php:431
1626
  msgid "%s secret key"
1627
  msgstr "Chiave segreta %s"
1628
 
1629
+ #: methods/s3.php:435
1630
  msgid "%s location"
1631
  msgstr "posizione %s"
1632
 
1633
+ #: methods/s3.php:436
1634
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
1635
  msgstr "Inserire solo il nome del bucket oppure il bucket e il percorso. Esempi: mybucket, mybucket/mypath"
1636
 
1637
+ #: methods/s3.php:457
1638
  msgid "API secret"
1639
  msgstr "API segreto"
1640
 
1641
+ #: methods/s3.php:478
1642
  msgid "Failure: No bucket details were given."
1643
  msgstr "Errore: Nessun dettaglio del bucket è stato inserito."
1644
 
1645
+ #: methods/s3.php:493
1646
  msgid "Region"
1647
  msgstr "regione"
1648
 
1649
+ #: methods/s3.php:511
1650
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
1651
  msgstr "Errore: Impossibile accedere o creare il bucket con successo. Si prega di verificare le credenziali di accesso, e se queste sono corrette si consiglia di provare un altro nome del bucket (un altro utente %s potrebbe già aver preso il suo nome)."
1652
 
1653
+ #: methods/s3.php:525 methods/s3.php:537
1654
  msgid "Failure"
1655
  msgstr "Errore"
1656
 
1657
+ #: methods/s3.php:525 methods/s3.php:537
1658
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
1659
  msgstr "Accesso al bucket ottenuto, ma il tentativo di creare un file in esso è fallito."
1660
 
1661
+ #: methods/s3.php:527
1662
  msgid "We accessed the bucket, and were able to create files within it."
1663
  msgstr "Accesso al bucket ottenuto, ed è stato possibile creare files al suo interno."
1664
 
1665
+ #: methods/s3.php:530
1666
  msgid "The communication with %s was encrypted."
1667
  msgstr "La comunicazione con %s era cifrata"
1668
 
1669
+ #: methods/s3.php:532
1670
  msgid "The communication with %s was not encrypted."
1671
  msgstr "La comunicazione con %s non era cifrata."
1672
 
 
 
 
 
1673
  #: methods/dropbox.php:41
1674
  msgid "You do not appear to be authenticated with Dropbox"
1675
  msgstr "Sembra che non si sia autenticati con Dropbox"
1718
  msgid "Cloud Files container"
1719
  msgstr "Contenitore di files remoti"
1720
 
1721
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
1722
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
1723
  msgstr "il modulo %s di UpdraftPlus <strong>richiede</strong> %s. Si prega di non presentare alcuna richiesta di supporto, non ci sono alternative."
1724
 
1725
+ #: methods/cloudfiles.php:442 methods/cloudfiles.php:447
 
1726
  msgid "Failure: No %s was given."
1727
  msgstr "Errore: %s non è stato fornito."
1728
 
1729
+ #: methods/cloudfiles.php:442
1730
  msgid "API key"
1731
  msgstr "Chiave API"
1732
 
1746
  msgid "We accessed the container, and were able to create files within it."
1747
  msgstr "Si può accedere al contenitore, ed è possibile creare files al suo interno."
1748
 
1749
+ #: methods/email.php:32
1750
  msgid "WordPress Backup"
1751
  msgstr "Backup di WordPress"
1752
 
1753
+ #: methods/email.php:32
1754
  msgid "Be wary; email backups may fail because of file size limitations on mail servers."
1755
  msgstr "Attenzione: il backup via email potrebbe fallire a causa di limiti di dimensione dei file sui server di posta."
1756
 
1757
+ #: methods/email.php:48
1758
  msgid "Note:"
1759
  msgstr "Nota:"
1760
 
1761
+ #: methods/s3.php:172
 
 
 
 
1762
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
1763
  msgstr "upload di %s: impossibile ottenere l'uploadID per il caricamento multiparte - vedere il file di log per maggiori dettagli"
1764
 
1765
+ #: methods/s3.php:195
1766
  msgid "%s error: file %s was shortened unexpectedly"
1767
  msgstr "Errore %s: il file %s è stato accorciato in modo imprevisto"
1768
 
1769
+ #: methods/s3.php:205
1770
  msgid "%s chunk %s: upload failed"
1771
  msgstr "%s parte %s: caricamento fallito"
1772
 
1773
+ #: methods/s3.php:219
1774
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
1775
  msgstr "Caricamento di %s (%s) riassemblaggio fallito (vedere il log per maggiori dettagli)"
1776
 
1777
+ #: methods/s3.php:223
1778
  msgid "%s re-assembly error (%s): (see log file for more)"
1779
  msgstr "%s re-assembly error (%s): (guarda il file di log per più informazioni)"
1780
 
1781
+ #: methods/s3.php:235
1782
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
1783
  msgstr "Errore %s: Impossibile creare il bucket %s. Controllare le autorizzazioni e le credenziali."
1784
 
1844
  msgid "%s Error: Failed to open local file"
1845
  msgstr "Errore %s: Impossibile aprire il file locale"
1846
 
1847
+ #: methods/cloudfiles.php:105 methods/cloudfiles.php:147
 
1848
  msgid "%s Error: Failed to upload"
1849
  msgstr "Errore %s: Impossibile caricare il file."
1850
 
1864
  msgid "Testing - Please Wait..."
1865
  msgstr "Verifica - attendere prego..."
1866
 
1867
+ #: methods/cloudfiles.php:371 methods/cloudfiles.php:434
 
1868
  msgid "Test %s Settings"
1869
  msgstr "Test dei settaggi %s"
1870
 
1876
  msgid "Also, you should read this important FAQ."
1877
  msgstr "Inoltre, si dovrebbe leggere questa importante FAQ."
1878
 
1879
+ #: methods/googledrive.php:201
1880
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
1881
  msgstr "Account pieno: il tuo account %s ha solamente %d bytes liberi, ma il file da caricare è di %d bytes"
1882
 
1883
+ #: methods/googledrive.php:216
1884
  msgid "Failed to upload to %s"
1885
  msgstr "Impossibile caricare su %s"
1886
 
1904
  msgid "Account is not authorized."
1905
  msgstr "Account non autorizzato."
1906
 
1907
+ #: methods/googledrive.php:442 methods/cloudfiles.php:384
1908
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
1909
  msgstr "%s è una buona scelta, perché UpdraftPlus supporta i caricamenti frammentati - non importa quanto sia grande il vostro sito, UpdraftPlus può caricare un po 'alla volta, senza avere problemi con il timeout."
1910
 
1911
+ #: restorer.php:858
1912
  msgid "will restore as:"
1913
  msgstr "sarà ripristinato come:"
1914
 
1915
+ #: restorer.php:927
1916
  msgid "An error (%s) occured:"
1917
  msgstr "Si è verificato un errore (%s)"
1918
 
1919
+ #: restorer.php:927
1920
  msgid "the database query being run was:"
1921
  msgstr "la query di database in corso di esecuzione è:"
1922
 
1923
+ #: restorer.php:933
1924
  msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
1925
  msgstr "Si sono verificati troppi errori di database - ripristino annullato (è necessario ripristinare manualmente)"
1926
 
1927
+ #: restorer.php:941
1928
  msgid "Database lines processed: %d in %.2f seconds"
1929
  msgstr "Linee di database processate: %d in %.2f secondi"
1930
 
1931
+ #: restorer.php:884
1932
  msgid "Finished: lines processed: %d in %.2f seconds"
1933
  msgstr "Finito: linee processate: %d in %.2f secondi"
1934
 
1935
+ #: restorer.php:985 restorer.php:1006
1936
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
1937
  msgstr "Il prefisso di tabella è cambiato: cambio in accordo i campo(i) della tabella %s:"
1938
 
1939
+ #: restorer.php:989 restorer.php:1032 admin.php:1911 admin.php:1935
1940
+ #: admin.php:2813 admin.php:2826
1941
  msgid "OK"
1942
  msgstr "OK"
1943
 
1946
  msgstr "È necessario autenticare nuovamente con %s, le credenziali esistenti non funzionano."
1947
 
1948
  #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1949
+ #: methods/sftp.php:12 methods/sftp.php:32 methods/sftp.php:47
1950
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1951
  msgstr "L'add-on %s di UpdraftPlus non è installato - ottenerlo da %s"
1952
 
1953
+ #: methods/webdav.php:63 methods/sftp.php:60
1954
  msgid "%s support is available as an add-on"
1955
  msgstr "Il supporto a %s è disponibile con un add-on"
1956
 
1957
+ #: methods/webdav.php:63 methods/sftp.php:60
1958
  msgid "follow this link to get it"
1959
  msgstr "Clicca su questo collegamento per averlo."
1960
 
1961
+ #: methods/googledrive.php:115
1962
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
1963
  msgstr "Nessun token di aggiornamento è stato ricevuto da Google. Questo spesso significa che si è inserito il \"Segreto Client\" in modo errato, o che non si è stati ancora ri-autenticati (sotto) in quanto correzione. Si prega di ricontrollare, e di seguire il link per autenticarsi nuovamente. Infine, se questo non dovesse funzionare, utilizzare la modalità expert per cancellare tutte le impostazioni, creare un nuovo nuovo ID cliente di Google / segreto, e iniziare nuovamente."
1964
 
1965
+ #: methods/googledrive.php:124
1966
  msgid "Authorization failed"
1967
  msgstr "Autorizzazione fallita"
1968
 
1969
+ #: methods/googledrive.php:145
1970
  msgid "Your %s quota usage: %s %% used, %s available"
1971
  msgstr "Quota di utilizzo %s: %s %% utilizzata, %s disponibile"
1972
 
1973
+ #: methods/googledrive.php:151 methods/cloudfiles.php:498
1974
  msgid "Success"
1975
  msgstr "Success"
1976
 
1977
+ #: methods/googledrive.php:151
1978
  msgid "you have authenticated your %s account."
1979
  msgstr "hai autenticato il tuo account %s."
1980
 
1981
+ #: methods/googledrive.php:167 methods/googledrive.php:232
1982
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
1983
  msgstr "Non si è ancora ottenuto un token di accesso da parte di Google - è necessario autorizzare o ri-autorizzare la connessione a Google Drive."
1984
 
1985
+ #: methods/googledrive.php:168 methods/googledrive.php:363
1986
  msgid "Have not yet obtained an access token from Google (has the user authorised?)"
1987
  msgstr "Non si è ancora ottenuto il token di accesso da Google (l'utente potrebbe non essere autorizzato)"
1988
 
1989
+ #: restorer.php:156
1990
  msgid "wp-config.php from backup: restoring (as per user's request)"
1991
  msgstr "wp-config.php da backup: ripristino (come da richiesta dell'utente)"
1992
 
1993
+ #: restorer.php:600
1994
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
1995
  msgstr "Attenzione: PHP safe_mode &egrave; attivo sul tuo server. Questo pu&ograve; facilmente portare a Timeout. Nel caso dovesse verificarsene uno &egrave; necessario ripristinare manualmente il file tramite phpMyAdmin o simili."
1996
 
1997
+ #: restorer.php:605
1998
  msgid "Failed to find database file"
1999
  msgstr "Impossibile trovare il file del database"
2000
 
2001
+ #: restorer.php:611
2002
  msgid "Failed to open database file"
2003
  msgstr "Impossibile aprire il file del database"
2004
 
2005
+ #: restorer.php:635
2006
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
2007
  msgstr "Accesso al database: l'accesso diretto a MySQL non è disponibile, quindi si utilizzerà wpdb (sarà notevolmente più lento)"
2008
 
2009
+ #: restorer.php:710 admin.php:945
2010
  msgid "Backup of:"
2011
  msgstr "Backup di:"
2012
 
2013
+ #: restorer.php:718 restorer.php:789
2014
  msgid "Old table prefix:"
2015
  msgstr "Vecchio prefisso di tabella"
2016
 
2017
+ #: admin.php:2823
2018
  msgid "Archive is expected to be size:"
2019
  msgstr "Dimensione stimata dell'archivio:"
2020
 
2021
+ #: admin.php:2831
2022
  msgid "The backup records do not contain information about the proper size of this file."
2023
  msgstr "I registri di backup non contengono informazioni valide sulle dimensioni di questo file."
2024
 
2025
+ #: admin.php:2878
2026
  msgid "Error message"
2027
  msgstr "Messaggio d'errore"
2028
 
2029
+ #: admin.php:2834 admin.php:2835
2030
  msgid "Could not find one of the files for restoration"
2031
  msgstr "Impossibile trovare uno dei file per il ripristino"
2032
 
2086
  msgid "Failed to create a temporary directory"
2087
  msgstr "Impossibile creare una cartella temporanea"
2088
 
2089
+ #: restorer.php:94
2090
  msgid "Failed to write out the decrypted database to the filesystem"
2091
  msgstr "Impossibile scrivere il database decodificato sul filesystem"
2092
 
2093
+ #: restorer.php:152
2094
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
2095
  msgstr "wp-config.php dal backup: verrà ripristinato come wp-config-backup.php"
2096
 
2097
+ #: admin.php:2345
2098
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
2099
  msgstr "Scegliendo questa opzione si riduce la sicurezza, impedendo a UpdraftPlus di utilizzare SSL per l'autenticazione e il trasporto criptato, dove possibile. Si noti che alcuni provider di cloud storage non consentono questo (ad esempio Dropbox), così con quei fornitori questa impostazione non avrà alcun effetto."
2100
 
2101
+ #: admin.php:2369
2102
  msgid "Save Changes"
2103
  msgstr "Salva i cambiamenti"
2104
 
2105
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
2106
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
2107
  msgstr "L'installazione di PHP sull tuo server web non ha incluso un modulo necessario (%s). Contattare il supporto del provider di web hosting."
2108
 
2109
+ #: admin.php:2403
2110
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
2111
  msgstr "L'installazione PHP/Curl sul server web non supporta l'accesso tramite HTTPS. Le comunicazioni con %s saranno crittografate. chiedete al vostro host web di installare Curl/SSL al fine di poter utilizzare la cifratura (tramite un add-on)."
2112
 
2113
+ #: admin.php:2405
2114
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
2115
  msgstr ""
2116
  "L'installazione del web server PHP/Curl non supporta l'accesso tramite HTTPS.\n"
2117
  "E' impossibile accedere a %s senza questo supporto. Si prega di contattare il supporto del provider di web hosting. %s <strong>richiede</strong> Curl + https. Si prega di non presentare alcuna richiesta a sostegno, non ci sono alternative."
2118
 
2119
+ #: admin.php:2408
2120
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
2121
  msgstr "Buona notizie: la comunicazione del tuo sito con %s può essere cifrata. Se si notano errori dovuti alla crittografia, cercare in \"Impostazioni Avanzate\" per ulteriori informazioni."
2122
 
2123
+ #: admin.php:2491
2124
  msgid "Delete this backup set"
2125
  msgstr "Cancella questo set di backup"
2126
 
2127
+ #: admin.php:2546
2128
  msgid "Press here to download"
2129
  msgstr "Premi qui per il download"
2130
 
2131
+ #: admin.php:2519 admin.php:2574
2132
  msgid "(No %s)"
2133
  msgstr "(Nessun %s)"
2134
 
2135
+ #: admin.php:2582
2136
  msgid "Backup Log"
2137
  msgstr "Backup Log"
2138
 
2139
+ #: admin.php:2603
2140
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
2141
  msgstr "Dopo aver premuto questo pulsante, si potrà scegliere quali componenti si desidera ripristinare"
2142
 
2143
+ #: admin.php:2694
2144
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
2145
  msgstr "Questo backup non esiste nella Cronologia Backup - ripristino interrotto. Timestamp:"
2146
 
2147
+ #: admin.php:2729
2148
  msgid "UpdraftPlus Restoration: Progress"
2149
  msgstr "UpdraftPlus Ripristino: avanzamento"
2150
 
2151
+ #: admin.php:2756
2152
  msgid "ABORT: Could not find the information on which entities to restore."
2153
  msgstr "ANNULLATO: Impossibile trovare le informazioni sulle entità da ripristinare."
2154
 
2155
+ #: admin.php:2757
2156
  msgid "If making a request for support, please include this information:"
2157
  msgstr "Se si fa la richiesta di assistenza, si prega di includere le seguenti informazioni:"
2158
 
2159
+ #: admin.php:2339
2160
  msgid "Do not verify SSL certificates"
2161
  msgstr "Non verificare i certificati SSL"
2162
 
2163
+ #: admin.php:2340
2164
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
2165
  msgstr "La scelta di questa opzione riduce la sicurezza impedendo a UpdraftPlus di verificare l'identità dei siti cifrati a cui si collega (ad esempio Dropbox, Google Drive). Ciò significa che UpdraftPlus userà SSL solo per la crittografia del traffico, e non per l'autenticazione."
2166
 
2167
+ #: admin.php:2340
2168
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
2169
  msgstr "Ricorda che non tutti i metodi di backup su Cloud utilizzano obbligatoriamente un autenticazione SSL."
2170
 
2171
+ #: admin.php:2344
2172
  msgid "Disable SSL entirely where possible"
2173
  msgstr "Disattivare SSL del tutto, se possibile"
2174
 
2175
+ #: admin.php:2291
2176
  msgid "Expert settings"
2177
  msgstr "Impostazioni avanzate"
2178
 
2179
+ #: admin.php:2292
2180
  msgid "Show expert settings"
2181
  msgstr "Mostra impostazioni avanzate"
2182
 
2183
+ #: admin.php:2292
2184
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
2185
  msgstr "fare clic su questo elemento per mostrare ulteriori opzioni, non perdete tempo a meno che non hai un problema o sei curioso."
2186
 
2187
+ #: admin.php:2307
2188
  msgid "Delete local backup"
2189
  msgstr "Cancella backup locale"
2190
 
2191
+ #: admin.php:2312
2192
  msgid "Backup directory"
2193
  msgstr "Cartella di Backup"
2194
 
2195
+ #: admin.php:2319
2196
  msgid "Backup directory specified is writable, which is good."
2197
  msgstr "La cartella di backup specificata è scrivibile, che è buona cosa."
2198
 
2199
+ #: admin.php:2327
2200
  msgid "Click here to attempt to create the directory and set the permissions"
2201
  msgstr "Clicca qui per tentare di creare la directory e impostare le autorizzazioni"
2202
 
2203
+ #: admin.php:2327
2204
  msgid "or, to reset this option"
2205
  msgstr "o, per resettare questa opzione"
2206
 
2207
+ #: admin.php:2327
2208
  msgid "click here"
2209
  msgstr "Clicca qui"
2210
 
2211
+ #: admin.php:2327
2212
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
2213
  msgstr "Se questo è infruttuoso controllare i permessi sul vostro server o cambiarlo in un'altra cartella che sia scrivibile dal tuo web server."
2214
 
2215
+ #: admin.php:2334
2216
  msgid "Use the server's SSL certificates"
2217
  msgstr "Utilizza i certificati SSL del server"
2218
 
2219
+ #: admin.php:2335
2220
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
2221
  msgstr "Per impostazione predefinita UpdraftPlus utilizza il proprio archivio di certificati SSL per verificare l'identità dei siti remoti (cioè per assicurarsi che sta parlando con il vero Dropbox, Amazon S3, ecc, e non un attaccante). Teniamo questi certificati aggiornati. Tuttavia, se si verificasse un errore SSL, allora la scelta di questa opzione può aiutare ( Scegliendo questa opzione, si permette a UpdraftPlus di utilizzare la collezione di certificati del vostro web server) ."
2222
 
2223
+ #: admin.php:2135
2224
  msgid "Use WordShell for automatic backup, version control and patching"
2225
  msgstr "Utilizza WordShell per il backup automatico, il controllo di versione e per gestire le patch"
2226
 
2227
+ #: admin.php:2139 udaddons/options.php:95
2228
  msgid "Email"
2229
  msgstr "E-mail"
2230
 
2231
+ #: admin.php:2144
2232
  msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
2233
  msgstr "Inserire un indirizzo qui per avere l'invio del rapporto (e l'intero backup, se scelto)."
2234
 
2235
+ #: admin.php:2163
2236
  msgid "Database encryption phrase"
2237
  msgstr "Frase di crittografia del database"
2238
 
2239
+ #: admin.php:2174
2240
  msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
2241
  msgstr "Se si immette del testo qui, verrà utilizzato per cifrare i backup (Rijndael). <strong>Si prega di fare una copia separata di essa e di non perderla, o tutti i backup <em>saranno inutili</em>. </strong> Al momento, solo il file di database è crittografato. Questa è anche la chiave utilizzata per decifrare i backup da questa interfaccia di amministrazione (quindi se la si cambia, la decrittografia automatica non funzionerà fino a quando non si cambia di nuovo)."
2242
 
2243
+ #: admin.php:2174
2244
  msgid "You can also decrypt a database manually here."
2245
  msgstr "Qui puoi anche decrittare manualmente un database."
2246
 
2247
+ #: admin.php:2186
2248
  msgid "Manually decrypt a database backup file"
2249
  msgstr "Decifra manualmente un file di backup del database"
2250
 
2251
+ #: admin.php:2193
2252
  msgid "Use decryption key"
2253
  msgstr "Utilizzo chiave di decrittazione"
2254
 
2255
+ #: admin.php:2207
2256
  msgid "Copying Your Backup To Remote Storage"
2257
  msgstr "Copia del backup per archiviazione remota"
2258
 
2259
+ #: admin.php:2217
2260
  msgid "Choose your remote storage"
2261
  msgstr "Scegli il tuo Storage Remoto"
2262
 
2263
+ #: admin.php:2226
2264
  msgid "None"
2265
  msgstr "Nessuno"
2266
 
2267
+ #: admin.php:114
2268
  msgid "Cancel"
2269
  msgstr "Annulla"
2270
 
2271
+ #: admin.php:100
2272
  msgid "Requesting start of backup..."
2273
  msgstr "Inizio del backup richiesto..."
2274
 
2275
+ #: admin.php:2284
2276
  msgid "Advanced / Debugging Settings"
2277
  msgstr "Impostazioni Avanzate e di Debug"
2278
 
2279
+ #: admin.php:2287
2280
  msgid "Debug mode"
2281
  msgstr "Debug mode"
2282
 
2283
+ #: admin.php:2288
2284
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
2285
  msgstr "Spunta qui per ricevere maggiori informazioni e email sul processo di backup - utile se qualcosa è andato storto. <strong>Si deve</strong> inviare questo log se si sta inoltrando una segnalazione di bug."
2286
 
2287
+ #: admin.php:2135
2288
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
2289
  msgstr "Le cartelle sopra contengono tutto, tranne il core di WordPress che può essere scaricato da WordPress.org."
2290
 
2291
+ #: admin.php:2066
 
 
 
 
2292
  msgid "Daily"
2293
  msgstr "Giornaliero"
2294
 
2295
+ #: admin.php:2066
2296
  msgid "Weekly"
2297
  msgstr "Settimanale"
2298
 
2299
+ #: admin.php:2066
2300
  msgid "Fortnightly"
2301
  msgstr "Quindicinale"
2302
 
2303
+ #: admin.php:2066
2304
  msgid "Monthly"
2305
  msgstr "Mensile"
2306
 
2307
+ #: admin.php:2075 admin.php:2093
2308
  msgid "and retain this many backups"
2309
  msgstr "e conservare questo numero di backup"
2310
 
2311
+ #: admin.php:2082
2312
  msgid "Database backup intervals"
2313
  msgstr "Intervalli di backup del batabase"
2314
 
2315
+ #: admin.php:2100
2316
  msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
2317
  msgstr "Se si desidera pianificare automaticamente i backup, scegliere la pianificazione dal menu a tendina sopra. I backup avverranno agli intervalli indicati. Se due pianificazioni coincidono, avverranno entrambi insieme. Se si sceglie \"manuale\", allora sarà necessario fare clic sul pulsante \"Esegui Backup\" ogni volta che si desidera una copia di backup."
2318
 
2319
+ #: admin.php:2101
2320
  msgid "To fix the time at which a backup should take place,"
2321
  msgstr "Fissare il momento in cui un backup deve avvenire,"
2322
 
2323
+ #: admin.php:2101
2324
  msgid "e.g. if your server is busy at day and you want to run overnight"
2325
  msgstr "ad esempio, se il server è occupato di giorno si può eseguirlo durante la notte"
2326
 
2327
+ #: admin.php:2101
2328
  msgid "use the \"Fix Time\" add-on"
2329
  msgstr "utilizzare il \"Fix Time\" add-on"
2330
 
2331
+ #: admin.php:2105
2332
  msgid "Include in files backup"
2333
  msgstr "Includere nei files di backup"
2334
 
2335
+ #: admin.php:2115
2336
  msgid "Any other directories found inside wp-content"
2337
  msgstr "Eventuali altre directory trovati dentro wp-content"
2338
 
2339
+ #: admin.php:2121
2340
  msgid "Exclude these:"
2341
  msgstr "Escludi questi:"
2342
 
2343
+ #: admin.php:1706
2344
  msgid "Debug Database Backup"
2345
  msgstr "Debug Database Backup"
2346
 
2347
+ #: admin.php:1706
2348
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
2349
  msgstr "Questo causerà un backup immediato del database. La pagina non riuscirà a caricarsi fino a che non finisce il processo(cioè, non in programma). Il backup potrebbe andare in timeout; in realtà questo pulsante è solo utile per verificare che il backup sia in grado di passare le fasi iniziali, o per piccoli siti WordPress .."
2350
 
2351
+ #: admin.php:1712
2352
  msgid "Wipe Settings"
2353
  msgstr "Pulizia dei settaggi"
2354
 
2355
+ #: admin.php:1713
2356
  msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2357
  msgstr "Questo pulsante consente di cancellare tutte le impostazioni di UpdraftPlus (ma non i vostri backup esistenti nel vostro cloud storage). Sarà quindi necessario inserire di nuovo tutte le impostazioni. Se lo si desidera è possibile farlo prima della disattivazione / disinstallazione di UpdraftPlus."
2358
 
2359
+ #: admin.php:1716
2360
  msgid "Wipe All Settings"
2361
  msgstr "Pulizia di tutti i settaggi"
2362
 
2363
+ #: admin.php:1716
2364
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
2365
  msgstr "Questa operazione eliminerà tutte le impostazioni di UpdraftPlus - si è sicuri di volerlo fare?"
2366
 
2367
+ #: admin.php:1867
2368
  msgid "show log"
2369
  msgstr "Mostra log"
2370
 
2371
+ #: admin.php:1869
2372
  msgid "delete schedule"
2373
  msgstr "elimina programmazione"
2374
 
2375
+ #: admin.php:115 admin.php:1905 admin.php:1930
2376
  msgid "Delete"
2377
  msgstr "Cancella"
2378
 
2379
+ #: admin.php:1971
2380
  msgid "The request to the filesystem to create the directory failed."
2381
  msgstr "La richiesta di creazione della cartella al file system è fallita."
2382
 
2383
+ #: admin.php:1985
2384
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
2385
  msgstr "La cartella è stata creata, ma abbiamo dovuto cambiare i permessi dei file a 777 (tutto scrivibile) per essere in grado di scrivere. Si consiglia di verificare con il fornitore di hosting che questo non causerà alcun problema"
2386
 
2387
+ #: admin.php:1989
2388
  msgid "The folder exists, but your webserver does not have permission to write to it."
2389
  msgstr "La cartella esiste, ma il server web non ha il permesso di scrivere."
2390
 
2391
+ #: admin.php:1989
2392
  msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
2393
  msgstr "È necessario consultare il proprio web hosting provider per sapere come impostare le autorizzazioni per permettere a un plugin di WordPress di scrivere nella cartella."
2394
 
2395
+ #: admin.php:2043
2396
  msgid "Download log file"
2397
  msgstr "Scarica il file di log"
2398
 
2399
+ #: admin.php:2047
2400
  msgid "No backup has been completed."
2401
  msgstr "Nessun backup è stato completato."
2402
 
2403
+ #: admin.php:2063
2404
  msgid "File backup intervals"
2405
  msgstr "Intervallo di creazione backup"
2406
 
2407
+ #: admin.php:2066
2408
  msgid "Manual"
2409
  msgstr "Manuale"
2410
 
2411
+ #: admin.php:2066
2412
  msgid "Every 4 hours"
2413
  msgstr "Ogni 4 ore"
2414
 
2415
+ #: admin.php:2066
2416
  msgid "Every 8 hours"
2417
  msgstr "Ogni 8 ore"
2418
 
2419
+ #: admin.php:2066
2420
  msgid "Every 12 hours"
2421
  msgstr "Ogni 12 ore"
2422
 
2423
+ #: admin.php:1617
2424
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
2425
  msgstr "Per continuare, premere 'Esegui Backup'. Poi, guarda il campo 'Ultimo Messaggio di log' per l'attività dopo circa 10 secondi. WordPress dovrebbe avviare il backup in esecuzione in background."
2426
 
2427
+ #: admin.php:1624
 
 
 
 
2428
  msgid "Go here for help."
2429
  msgstr "Vai qui per l'aiuto."
2430
 
2431
+ #: admin.php:1630
2432
  msgid "Multisite"
2433
  msgstr "Multi-sito"
2434
 
2435
+ #: admin.php:1634
2436
  msgid "Do you need WordPress Multisite support?"
2437
  msgstr "Hai bisogno di supporto per WordPress multi-sito?"
2438
 
2439
+ #: admin.php:1634
2440
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
2441
  msgstr "Si prega di verificare UpdraftPlus Premium, oppure l'add-on stand-alone multi-sito."
2442
 
2443
+ #: admin.php:1639
2444
  msgid "Configure Backup Contents And Schedule"
2445
  msgstr "Configurare Contenuti di backup e Pianificazione"
2446
 
2447
+ #: admin.php:1645
2448
  msgid "Debug Information And Expert Options"
2449
  msgstr "Informazioni di debug e Opzioni Avanzate"
2450
 
2451
+ #: admin.php:1648
2452
  msgid "Web server:"
2453
  msgstr "Web server:"
2454
 
2455
+ #: admin.php:1651
2456
  msgid "Peak memory usage"
2457
  msgstr "Utilizzo di memoria (picco)"
2458
 
2459
+ #: admin.php:1652
2460
  msgid "Current memory usage"
2461
  msgstr "Utilizzo di memoria attuale"
2462
 
2463
+ #: admin.php:1653
2464
  msgid "PHP memory limit"
2465
  msgstr "Limite di memoria PHP"
2466
 
2467
+ #: admin.php:1654 admin.php:1656
2468
  msgid "%s version:"
2469
  msgstr "Versione %s"
2470
 
2471
+ #: admin.php:1659 admin.php:1661 admin.php:1668
2472
  msgid "Yes"
2473
  msgstr "Si"
2474
 
2475
+ #: admin.php:1661 admin.php:1668
2476
  msgid "No"
2477
  msgstr "No"
2478
 
2479
+ #: admin.php:1664
2480
  msgid "PHP has support for ZipArchive::addFile:"
2481
  msgstr "PHP supporta ZipArchive::addFile:"
2482
 
2483
+ #: admin.php:1679
2484
  msgid "Total (uncompressed) on-disk data:"
2485
  msgstr "Totale (non compresso) dati su disco:"
2486
 
2487
+ #: admin.php:1680
2488
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
2489
  msgstr "N.B. Questo conteggio si basa su quello che era, o non era, escluso l'ultima volta che sono state salvate le opzioni."
2490
 
2491
+ #: admin.php:1687
2492
  msgid "count"
2493
  msgstr "conteggio"
2494
 
2495
+ #: admin.php:1693
2496
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
2497
  msgstr "I pulsanti sotto eseguono immediatamente un backup, indipendentemente dallo scheduler di WordPress. Se questi funzionano, mentre i backup schedulati e il pulsante \"Backup Now\" non fanno assolutamente nulla (cioè nemmeno produrre un file di log), allora significa che lo scheduler non funziona. Si dovrebbe quindi disabilitare tutti gli altri plugin, e provare a premere il pulsante \"Esegui Backup\". Se non funziona, allora contattare la società di web hosting e chiedere loro se hanno disabilitato wp-cron. Se invece funziona, ri-attivare tutti gli altri plugin uno per uno, in modo da trovare quello che genera il problema e segnalare il bug allo sviluppatore."
2498
 
2499
+ #: admin.php:1701
2500
  msgid "Debug Full Backup"
2501
  msgstr "Debug backup completo"
2502
 
2503
+ #: admin.php:1701
2504
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
2505
  msgstr "Questo causerà un backup immediato. La pagina non verrà caricata fino a che non finirà il backup(cioè, non programmato)."
2506
 
2507
+ #: admin.php:1489
2508
  msgid "UpdraftPlus - Upload backup files"
2509
  msgstr "UpdraftPlus - Carica file di backup"
2510
 
2511
+ #: admin.php:1490
2512
  msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
2513
  msgstr "Carica file in UpdraftPlus. Utilizzare questa funzione per importare i backup fatti su una diversa installazione di WordPress."
2514
 
2515
+ #: admin.php:1495 admin.php:2191
 
 
 
 
2516
  msgid "or"
2517
  msgstr "oppure"
2518
 
2519
+ #: admin.php:85
2520
  msgid "calculating..."
2521
  msgstr "sto calcolando..."
2522
 
2523
+ #: restorer.php:556 admin.php:93 admin.php:2828 admin.php:2846
2524
  msgid "Error:"
2525
  msgstr "Errore:"
2526
 
2527
+ #: admin.php:95
2528
  msgid "You should:"
2529
  msgstr "Dovresti:"
2530
 
2531
+ #: admin.php:99
2532
  msgid "Download error: the server sent us a response which we did not understand."
2533
  msgstr "Errore di Download: il server ha inviato una risposta non conosciuta."
2534
 
2535
+ #: admin.php:1515
2536
  msgid "Delete backup set"
2537
  msgstr "Cancellazione del set di backup"
2538
 
2539
+ #: admin.php:1518
2540
  msgid "Are you sure that you wish to delete this backup set?"
2541
  msgstr "Sei sicuro di voler cancellare questo set di backup?"
2542
 
2543
+ #: admin.php:1533
2544
  msgid "Restore backup"
2545
  msgstr "Ripristina backup"
2546
 
2547
+ #: admin.php:1534
2548
  msgid "Restore backup from"
2549
  msgstr "Ripristina backup da"
2550
 
2551
+ #: admin.php:1546
2552
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
2553
  msgstr "Il ripristino sostituirà i temi di questo sito, i plugin, gli upload, e i database e / o altre cartelle di contenuti (in base a ciò che è contenuto nel set di backup, e alla selezione)."
2554
 
2555
+ #: admin.php:1546
2556
  msgid "Choose the components to restore"
2557
  msgstr "Scegli i componenti da ripristinare"
2558
 
2559
+ #: admin.php:1555
2560
  msgid "Your web server has PHP's so-called safe_mode active."
2561
  msgstr "Il tuo server web ha il safe_mode PHP attivo."
2562
 
2563
+ #: admin.php:1555
2564
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
2565
  msgstr "Questo rende i time-out molto più probabili. Si consiglia di disabilitare il safe_mode, oppure di ripristinare una sola entità per volta,<a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">oppure di fare il ripristino manualmente</a>."
2566
 
2567
+ #: admin.php:1568
2568
  msgid "The following entity cannot be restored automatically: \"%s\"."
2569
  msgstr "Le seguenti entità non può essere ripristinata automaticamente: \"%s\"."
2570
 
2571
+ #: admin.php:1568
2572
  msgid "You will need to restore it manually."
2573
  msgstr "Sarà necessario fare il ripristino manualmente."
2574
 
2575
+ #: admin.php:1575
2576
  msgid "%s restoration options:"
2577
  msgstr "Opzione di ripristino %s:"
2578
 
2579
+ #: admin.php:1583
2580
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
2581
  msgstr "È possibile cercare e sostituire il database (per la migrazione di un sito web verso una nuova posizione/URL) con il Migrator add-on - segui questo collegamento per maggiori informazioni"
2582
 
2583
+ #: admin.php:1594
2584
  msgid "Do read this helpful article of useful things to know before restoring."
2585
  msgstr "Si prega di leggere questo articolo esplicativo di cose utili da sapere prima di ripristinare."
2586
 
2587
+ #: admin.php:1616
2588
  msgid "Perform a one-time backup"
2589
  msgstr "Eseguire un backup singolo"
2590
 
2591
+ #: admin.php:1413
2592
  msgid "Time now"
2593
  msgstr "Ora attuale"
2594
 
2595
+ #: admin.php:113 admin.php:1423
2596
  msgid "Backup Now"
2597
  msgstr "Esegui Backup"
2598
 
2599
+ #: admin.php:117 admin.php:1430 admin.php:2603
2600
  msgid "Restore"
2601
  msgstr "Ripristino"
2602
 
2603
+ #: admin.php:1441
2604
  msgid "Last log message"
2605
  msgstr "Ultimo messaggio di Log"
2606
 
2607
+ #: admin.php:1443
2608
  msgid "(Nothing yet logged)"
2609
  msgstr "(Niente è stato loggato)"
2610
 
2611
+ #: admin.php:1444
2612
  msgid "Download most recently modified log file"
2613
  msgstr "Scarica il file di log più recente"
2614
 
2615
+ #: admin.php:1455
2616
  msgid "Backups, logs & restoring"
2617
  msgstr "Backups, logs & rispristino"
2618
 
2619
+ #: admin.php:1456
2620
  msgid "Press to see available backups"
2621
  msgstr "Premi per vedere backup disponibili"
2622
 
2623
+ #: admin.php:741 admin.php:796 admin.php:1456
2624
  msgid "%d set(s) available"
2625
  msgstr "%d set Disponibili"
2626
 
2627
+ #: admin.php:1472
2628
  msgid "Downloading and restoring"
2629
  msgstr "Download e Ripristino."
2630
 
2631
+ #: admin.php:1477
2632
  msgid "Downloading"
2633
  msgstr "Download"
2634
 
2635
+ #: admin.php:1477
2636
  msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
2637
  msgstr "La pressione di un pulsante per il Database/Plugins/Temi/Uploads/Altri farà in modo che UpdraftPlus provi a prendere il file di backup dallo storage remoto (se presente - ad esempio Amazon S3, Dropbox, Google Drive, FTP) verso il server web. Poi vi sarà possibile scaricarlo sul computer locale. Se l'operazione di recupero da memoria remota smettesse di progredire (attendere 30 secondi per essere sicuri), premere di nuovo per riprendere. Ricorda che puoi anche visitare direttamente il sito del servizio di cloud storage."
2638
 
2639
+ #: admin.php:1478
 
 
 
 
 
 
 
 
2640
  msgid "More tasks:"
2641
  msgstr "Altre attività: "
2642
 
2643
+ #: admin.php:1478
2644
  msgid "upload backup files"
2645
  msgstr "Carica i file di backup"
2646
 
2647
+ #: admin.php:1478
2648
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
2649
  msgstr "Premere qui per guardare dentro la cartella UpdraftPlus (nel tuo spazio web hosting) per ogni nuovo set di backup che hai caricato. La posizione di questa cartella è impostata nelle impostazioni avanzate, di seguito."
2650
 
2651
+ #: admin.php:1478
2652
  msgid "rescan folder for new backup sets"
2653
  msgstr "ri-analizza la cartella per nuovi set di backup"
2654
 
2655
+ #: admin.php:1479
2656
  msgid "Opera web browser"
2657
  msgstr "Browser web Opera"
2658
 
2659
+ #: admin.php:1479
2660
  msgid "If you are using this, then turn Turbo/Road mode off."
2661
  msgstr "Se stai utilizzando questo, allora imposta Turbo/Road Mode su off"
2662
 
2663
+ #: admin.php:1484
2664
  msgid "Google Drive"
2665
  msgstr "Google Drive"
2666
 
2667
+ #: admin.php:1484
2668
  msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
2669
  msgstr "Google ha cambiato la loro impostazione di autorizzazioni di recente (aprile 2013). Per scaricare o ripristinare da Google Drive, <strong>è necessario</strong>autenticarsi nuovamente (utilizzando il link nella sezione di configurazione di Google Drive)."
2670
 
2671
+ #: admin.php:1487
2672
  msgid "This is a count of the contents of your Updraft directory"
2673
  msgstr "Questo è un conteggio dei contenuti della cartella Updraft"
2674
 
2675
+ #: admin.php:1487
2676
  msgid "Web-server disk space in use by UpdraftPlus"
2677
  msgstr "Spazio sul server web in uso da UpdraftPlus"
2678
 
2679
+ #: admin.php:1487
2680
  msgid "refresh"
2681
  msgstr "aggiorna"
2682
 
2683
+ #: admin.php:1323
2684
  msgid "By UpdraftPlus.Com"
2685
  msgstr "By UpdraftPlus.Com"
2686
 
2687
+ #: admin.php:1323
2688
  msgid "Lead developer's homepage"
2689
  msgstr "Vai alla homepage dello sviluppatore"
2690
 
2691
+ #: admin.php:1323
2692
  msgid "Donate"
2693
  msgstr "Dona"
2694
 
2695
+ #: admin.php:1323
2696
  msgid "Version"
2697
  msgstr "Versione"
2698
 
2699
+ #: admin.php:1333
2700
  msgid "Your backup has been restored."
2701
  msgstr "Il backup è stato ripristinato."
2702
 
2703
+ #: admin.php:1339
 
 
 
 
2704
  msgid "Old directories successfully deleted."
2705
  msgstr "Vecchie cartelle cancellate correttamente."
2706
 
2707
+ #: admin.php:1342
2708
  msgid "Current limit is:"
2709
  msgstr "Il limite corrente è:"
2710
 
2711
+ #: admin.php:1350
2712
  msgid "Delete Old Directories"
2713
  msgstr "Elimina Vecchie Cartelle"
2714
 
2715
+ #: admin.php:1362
2716
  msgid "Existing Schedule And Backups"
2717
  msgstr "Pianificazione e backup esistenti"
2718
 
2719
+ #: admin.php:1366
2720
  msgid "JavaScript warning"
2721
  msgstr "Notifiche JavaScript"
2722
 
2723
+ #: admin.php:1367
2724
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
2725
  msgstr "Questa interfaccia di amministrazione utilizza JavaScript. È necessario attivarne la gestione all'interno del tuo browser, oppure utilizzare un browser che supporti JavaScript."
2726
 
2727
+ #: admin.php:1380 admin.php:1393
2728
  msgid "Nothing currently scheduled"
2729
  msgstr "Nessuna schedulazione."
2730
 
2731
+ #: admin.php:1385
2732
  msgid "At the same time as the files backup"
2733
  msgstr "Contemporaneamente al backup dei file"
2734
 
2735
+ #: admin.php:1409
2736
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
2737
  msgstr "Tutti gli orari riportati in questa sezione utilizzano il fuso orario configurato di WordPress, che è possibile impostare in Impostazioni -> Generali"
2738
 
2739
+ #: admin.php:1409
2740
  msgid "Next scheduled backups"
2741
  msgstr "Prossimo Backup programmato"
2742
 
2743
+ #: admin.php:1411
2744
  msgid "Files"
2745
  msgstr "Files"
2746
 
2747
+ #: admin.php:572 admin.php:1412 admin.php:1572 admin.php:1575 admin.php:2506
2748
+ #: admin.php:2508 admin.php:2869
2749
  msgid "Database"
2750
  msgstr "Database"
2751
 
2752
+ #: admin.php:312
2753
  msgid "Your website is hosted using the %s web server."
2754
  msgstr "Il tuo sito web è ospitato utilizzando il web server %s."
2755
 
2756
+ #: admin.php:312
2757
  msgid "Please consult this FAQ if you have problems backing up."
2758
  msgstr "Si prega di consultare questa FAQ se hai problemi di backup."
2759
 
2760
+ #: admin.php:325 admin.php:329
2761
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
2762
  msgstr "Clicca qui per autenticare il tuo account %s (non sarai in grado di eseguire il backup su %s senza di essa)."
2763
 
2764
+ #: admin.php:510 admin.php:536
2765
  msgid "Nothing yet logged"
2766
  msgstr "Niente ancora loggato"
2767
 
2768
+ #: admin.php:748
2769
  msgid "Schedule backup"
2770
  msgstr "backup programmato"
2771
 
2772
+ #: admin.php:752
2773
  msgid "Failed."
2774
  msgstr "Fallito."
2775
 
2776
+ #: admin.php:754
2777
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
2778
  msgstr "OK. A breve si dovrebbe vedere l'attività nel campo \"Ultimo Messaggio di log\" di seguito."
2779
 
2780
+ #: admin.php:754
2781
  msgid "Nothing happening? Follow this link for help."
2782
  msgstr "Non succede niente? Segui questo collegamento per un aiuto."
2783
 
2784
+ #: admin.php:770
2785
  msgid "Job deleted"
2786
  msgstr "Processo cancellato"
2787
 
2788
+ #: admin.php:777
2789
  msgid "Could not find that job - perhaps it has already finished?"
2790
  msgstr "Impossibile trovare il processo - forse è già stata completata."
2791
 
2792
+ #: restorer.php:987 restorer.php:1030 admin.php:788 admin.php:2811
2793
  msgid "Error"
2794
  msgstr "Errore"
2795
 
2796
+ #: admin.php:827
2797
  msgid "Download failed"
2798
  msgstr "Download fallito"
2799
 
2800
+ #: admin.php:94 admin.php:845
2801
  msgid "File ready."
2802
  msgstr "File pronto."
2803
 
2804
+ #: admin.php:853
2805
  msgid "Download in progress"
2806
  msgstr "Download in corso"
2807
 
2808
+ #: admin.php:856
2809
  msgid "No local copy present."
2810
  msgstr "Nessuna copia locale presente."
2811
 
2812
+ #: admin.php:1132
2813
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2814
  msgstr "Errore nel formato del nome del file - questo file sembra non sia stato creato da UpdraftPlus"
2815
 
2816
+ #: admin.php:1219
2817
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2818
  msgstr "Errore nel formato del nome del file - questo file non sembra un file di database crittografato e creato da UpdraftPlus"
2819
 
2820
+ #: admin.php:1248
2821
  msgid "Restore successful!"
2822
  msgstr "Ripristino avvenuto con successo!"
2823
 
2824
+ #: admin.php:1249 admin.php:1275 admin.php:1294
2825
  msgid "Actions"
2826
  msgstr "Azioni"
2827
 
2828
+ #: admin.php:1249 admin.php:1254 admin.php:1275 admin.php:1294
2829
  msgid "Return to UpdraftPlus Configuration"
2830
  msgstr "Ritorno a Configurazione di UpdraftPlus"
2831
 
2832
+ #: admin.php:1264
2833
  msgid "Remove old directories"
2834
  msgstr "Rimuove vecchie cartelle"
2835
 
2836
+ #: admin.php:1270
2837
  msgid "Old directories successfully removed."
2838
  msgstr "Vecchie cartelle rimosse con successo."
2839
 
2840
+ #: admin.php:1273
2841
  msgid "Old directory removal failed for some reason. You may want to do this manually."
2842
  msgstr "Problemi nella rimozione della vecchia cartella, prova a cancellarla manualmente."
2843
 
2844
+ #: admin.php:1285
2845
  msgid "Backup directory could not be created"
2846
  msgstr "Impossibile creare la cartella di backup"
2847
 
2848
+ #: admin.php:1292
2849
  msgid "Backup directory successfully created."
2850
  msgstr "Cartella di backup creata con successo."
2851
 
2852
+ #: admin.php:1316
2853
  msgid "Your settings have been wiped."
2854
  msgstr "Le tue impostazioni sono state cancellate."
2855
 
2856
+ #: updraftplus.php:2069 updraftplus.php:2075
2857
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
2858
  msgstr "Si prega di aiutare UpdraftPlus dando un giudizio positivo su wordpress.org"
2859
 
2860
+ #: updraftplus.php:2082
2861
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
2862
  msgstr "Hai bisogno di ancora più funzionalità e supporto? Scopri UpdraftPlus Premium"
2863
 
2864
+ #: updraftplus.php:2092
2865
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
2866
  msgstr "Scopri UpdraftPlus.Com per aiuto, add-on e supporto"
2867
 
2868
+ #: updraftplus.php:2095
2869
  msgid "Want to say thank-you for UpdraftPlus?"
2870
  msgstr "Vuoi ringraziare per UpdraftPlus?"
2871
 
2872
+ #: updraftplus.php:2095
2873
  msgid "Please buy our very cheap 'no adverts' add-on."
2874
  msgstr "Si prega di acquistare il nostro economicissimo add-on 'no adverts' (senza pubblicità)"
2875
 
2876
+ #: backup.php:1168
2877
  msgid "Infinite recursion: consult your log for more information"
2878
  msgstr "Ricursione infinita: consultare il log per maggiori informazioni"
2879
 
2880
+ #: backup.php:158
2881
  msgid "Could not create %s zip. Consult the log file for more information."
2882
  msgstr "Impossibile creare il file zip %s. Consultare il file di registro per ulteriori informazioni."
2883
 
2884
+ #: admin.php:164 admin.php:186
2885
  msgid "Allowed Files"
2886
  msgstr "File consentiti"
2887
 
2888
+ #: admin.php:249
2889
  msgid "Settings"
2890
  msgstr "Settaggi"
2891
 
2892
+ #: admin.php:253
2893
  msgid "Add-Ons / Pro Support"
2894
  msgstr "Add-Ons / Supporto Versione Pro"
2895
 
2896
+ #: admin.php:296 admin.php:300 admin.php:304 admin.php:308 admin.php:312
2897
+ #: admin.php:321 admin.php:1474 admin.php:2396 admin.php:2403 admin.php:2405
2898
  msgid "Warning"
2899
  msgstr "Attenzione"
2900
 
2901
+ #: admin.php:304
2902
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2903
  msgstr "Hai meno di %s di spazio libero su disco che UpdraftPlus può utilizzare per creare copie di backup. UpdraftPlus potrebbero ben esaurire lo spazio disponibile. Contattare il gestore del server (ad esempio, la vostra società di web hosting) per risolvere questo problema."
2904
 
2905
+ #: admin.php:308
2906
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2907
  msgstr "UpdraftPlus non supporta ufficialmente le versioni di WordPress prima di %s. Potrebbe essere funzionante, ma se non lo fosse, si avvisa del fatto che nessun supporto è disponibile fino a quando non si esegue l'aggiornamento di WordPress."
2908
 
2909
+ #: backup.php:453
2910
  msgid "Backed up"
2911
  msgstr "Backup eseguito"
2912
 
2913
+ #: backup.php:453
2914
  msgid "WordPress backup is complete"
2915
  msgstr "WordPress backup è completo"
2916
 
2917
+ #: backup.php:453
2918
  msgid "Backup contains"
2919
  msgstr "Il backup contiene"
2920
 
2921
+ #: backup.php:453
2922
  msgid "Latest status"
2923
  msgstr "Ultimo stato"
2924
 
2925
+ #: backup.php:532
2926
  msgid "Backup directory (%s) is not writable, or does not exist."
2927
  msgstr "La cartella di backup (%s) non è scrivibile o non esiste."
2928
 
2929
+ #: updraftplus.php:1786
2930
  msgid "Could not read the directory"
2931
  msgstr "Impossibile leggere la cartella."
2932
 
2933
+ #: updraftplus.php:1803
2934
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
2935
  msgstr "Impossibile salvare la cronologia di backup perché non c'è un backup array. Backup probabilmente fallito."
2936
 
2937
+ #: backup.php:1100
2938
  msgid "Could not open the backup file for writing"
2939
  msgstr "Impossibile aprire il file di backup per la scrittura"
2940
 
2941
+ #: backup.php:1135
2942
  msgid "Generated: %s"
2943
  msgstr "Generato: %s"
2944
 
2945
+ #: backup.php:1136
2946
  msgid "Hostname: %s"
2947
  msgstr "Nome Host: %s"
2948
 
2949
+ #: backup.php:1137
2950
  msgid "Database: %s"
2951
  msgstr "atabase: %s"
2952
 
2953
+ #: backup.php:762
2954
  msgid "Table: %s"
2955
  msgstr "Tabella: %s"
2956
 
2957
+ #: backup.php:935
 
 
 
 
2958
  msgid "Delete any existing table %s"
2959
  msgstr "Elimina ogni tabella esistente %s"
2960
 
2961
+ #: backup.php:941
2962
  msgid "Table structure of table %s"
2963
  msgstr "Struttura della tabella %s"
2964
 
2965
+ #: backup.php:945
2966
  msgid "Error with SHOW CREATE TABLE for %s."
2967
  msgstr "Errore con SHOW CREATE TABLE per %s."
2968
 
2969
+ #: backup.php:1037
2970
  msgid "End of data contents of table %s"
2971
  msgstr "Fine del contenuto dati di tabella%s"
2972
 
2973
+ #: updraftplus.php:1974 restorer.php:87 admin.php:887
2974
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
2975
  msgstr "Decifratura fallita. Il file di database è criptato, ma non è immesso nessuna chiave di crittografia."
2976
 
2977
+ #: updraftplus.php:1984 restorer.php:97 admin.php:901
2978
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
2979
  msgstr "Decriptaggio fallito: La causa più probabile è che sia stata utilizzata una chiave errata."
2980
 
2981
+ #: updraftplus.php:1984
2982
  msgid "The decryption key used:"
2983
  msgstr "La chiave di decriptaggio utilizzata è:"
2984
 
2985
+ #: updraftplus.php:2002
2986
  msgid "File not found"
2987
  msgstr "File non trovato"
2988
 
2989
+ #: updraftplus.php:2067
2990
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
2991
  msgstr "Puoi tradurre? Vuoi migliorare UpdraftPlus per chi parla della tua lingua?"
2992
 
2993
+ #: updraftplus.php:2069 updraftplus.php:2075
2994
  msgid "Like UpdraftPlus and can spare one minute?"
2995
  msgstr "Ti piace UpdraftPlus e puoi dedicarci un minuto?"
2996
 
2997
+ #: updraftplus.php:946
2998
  msgid "Themes"
2999
  msgstr "Temi"
3000
 
3001
+ #: updraftplus.php:947
3002
  msgid "Uploads"
3003
  msgstr "Uploads"
3004
 
3005
+ #: updraftplus.php:962
3006
  msgid "Others"
3007
  msgstr "Altri"
3008
 
3009
+ #: updraftplus.php:1347
3010
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
3011
  msgstr "Impossibile creare files nella cartella di backup. Il backup è annullato - controlla i settaggi di UpdraftPlus"
3012
 
3013
+ #: backup.php:1072
3014
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
3015
  msgstr "Errore di crittografia durante la crittografia del database. Crittografia interrotta."
3016
 
3017
+ #: updraftplus.php:1503
3018
  msgid "The backup apparently succeeded and is now complete"
3019
  msgstr "Il backup apparentemente è riuscito ed ora è completo"
3020
 
3021
+ #: updraftplus.php:1516
3022
  msgid "The backup attempt has finished, apparently unsuccessfully"
3023
  msgstr "Il tentativo di backup è terminato, a quanto pare senza successo"
3024
 
3025
+ #: options.php:34
3026
  msgid "UpdraftPlus Backups"
3027
  msgstr "Backup di UpdraftPlus "
3028
 
3029
+ #: updraftplus.php:400 updraftplus.php:405 updraftplus.php:410 admin.php:325
3030
+ #: admin.php:329
3031
  msgid "UpdraftPlus notice:"
3032
  msgstr "Note di UpdraftPlus:"
3033
 
3034
+ #: updraftplus.php:400
3035
  msgid "The log file could not be read."
3036
  msgstr "Il file di log non pu&ograve; essere letto."
3037
 
3038
+ #: updraftplus.php:405
3039
  msgid "No log files were found."
3040
  msgstr "Nessun file di log trovato."
3041
 
3042
+ #: updraftplus.php:410
3043
  msgid "The given file could not be read."
3044
  msgstr "Il file passato non può essere letto"
3045
 
3046
+ #: updraftplus.php:945
3047
  msgid "Plugins"
3048
  msgstr "Plugins"
languages/updraftplus-sv_SE.mo CHANGED
Binary file
languages/updraftplus-sv_SE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-09-17 09:06:20+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,481 +10,753 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
- #: admin.php:1776
14
- msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
15
  msgstr ""
16
 
17
- #: admin.php:1729
18
- msgid "(%s%%, file %s of %s)"
19
  msgstr ""
20
 
21
- #: addons/sftp.php:408
22
- msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
23
  msgstr ""
24
 
25
- #: addons/sftp.php:410
26
- msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
27
  msgstr ""
28
 
29
- #: addons/autobackup.php:29 addons/autobackup.php:229
30
- msgid "Read more about how this works..."
31
  msgstr ""
32
 
33
- #: addons/sftp.php:298
34
- msgid "Use SCP instead of SFTP"
35
  msgstr ""
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  #: addons/sftp.php:36
38
  msgid "SCP/SFTP password"
39
- msgstr ""
40
 
41
  #: addons/sftp.php:34
42
  msgid "SCP/SFTP host setting"
43
- msgstr ""
44
 
45
  #: addons/sftp.php:35
46
  msgid "SCP/SFTP user setting"
47
- msgstr ""
48
 
49
- #: methods/email.php:20
50
  msgid "Backup is of: %s."
51
- msgstr ""
52
 
53
- #: methods/email.php:27
54
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
55
- msgstr ""
56
 
57
- #: methods/cloudfiles.php:372 methods/s3.php:349
58
  msgid "%s settings test result:"
59
- msgstr ""
60
 
61
- #: admin.php:2355
62
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
63
- msgstr ""
64
 
65
- #: admin.php:2355
66
  msgid "(Not finished)"
67
- msgstr ""
68
 
69
- #: admin.php:2195
70
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
71
- msgstr ""
72
 
73
- #: admin.php:2195
74
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
75
- msgstr ""
76
 
77
- #: admin.php:2168
78
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
79
- msgstr ""
80
 
81
- #: admin.php:1738
82
  msgid "Waiting until scheduled time to retry because of errors"
83
- msgstr ""
84
 
85
- #: admin.php:1743
86
  msgid "Backup finished"
87
- msgstr ""
88
 
89
- #: admin.php:1746
90
  msgid "Unknown"
91
- msgstr ""
92
 
93
- #: admin.php:1761
94
  msgid "next resumption: %d (after %ss)"
95
- msgstr ""
96
 
97
- #: admin.php:1762
98
  msgid "last activity: %ss ago"
99
- msgstr ""
100
 
101
- #: admin.php:1772
102
  msgid "Job ID: %s"
103
- msgstr ""
104
 
105
- #: admin.php:1700
106
  msgid "table: %s"
107
- msgstr ""
108
 
109
- #: admin.php:1708
110
  msgid "Created database backup"
111
- msgstr ""
112
 
113
- #: admin.php:1713
114
  msgid "Encrypting database"
115
- msgstr ""
116
 
117
- #: admin.php:1717
118
  msgid "Encrypted database"
119
- msgstr ""
120
 
121
- #: admin.php:1722
122
  msgid "Uploading files to remote storage"
123
- msgstr ""
124
 
125
- #: admin.php:1734
126
  msgid "Pruning old backup sets"
127
- msgstr ""
128
 
129
- #: admin.php:1680
130
  msgid "Creating file backup zips"
131
- msgstr ""
132
 
133
- #: admin.php:1693
134
  msgid "Created file backup zips"
135
- msgstr ""
136
 
137
- #: admin.php:1698
138
  msgid "Creating database backup"
139
- msgstr ""
140
 
141
- #: admin.php:1675
142
  msgid "Backup begun"
143
- msgstr ""
144
 
145
- #: admin.php:1391
146
  msgid "Backups in progress:"
147
- msgstr ""
148
 
149
- #: admin.php:288
150
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
151
- msgstr ""
152
 
153
- #: restorer.php:283 restorer.php:289
154
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
155
- msgstr ""
156
 
157
- #: restorer.php:283
158
  msgid "folder"
159
- msgstr ""
160
 
161
- #: restorer.php:289
162
  msgid "file"
163
- msgstr ""
164
 
165
- #: backup.php:1046
166
  msgid "Failed to open directory (check the file permissions): %s"
167
- msgstr ""
168
 
169
- #: backup.php:1040
170
  msgid "%s: unreadable file - could not be backed up (check the file permissions)"
171
- msgstr ""
172
 
173
- #: updraftplus.php:1244
174
  msgid "The backup has not finished; a resumption is scheduled"
175
- msgstr ""
176
-
177
- #: updraftplus.php:494
178
- msgid "You should go to the W3 Total Cache settings page and turn it off."
179
- msgstr ""
180
 
181
- #: updraftplus.php:871
182
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
183
- msgstr ""
184
 
185
  #: methods/googledrive.php:482
186
  msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
187
- msgstr "<strong>Detta är inte ett mappnamn</strong>. För att hitta en mapps ID navigerar du till den mappen i Google Drive med din webbläsare och kopierar ID:t från webbläsarens adressfält. Det är den delen som kommer efter <kbd>#mappar/</kbd>. Lämna tomt för att använda din root-mapp."
188
 
189
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:88
190
  #: methods/googledrive.php:63
191
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
192
- msgstr ""
193
 
194
- #: admin.php:1283
195
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
196
- msgstr ""
197
 
198
- #: addons/autobackup.php:173
199
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - now proceeding with the updates..."
200
- msgstr ""
201
 
202
- #: addons/autobackup.php:225
203
  msgid "UpdraftPlus Automatic Backups"
204
- msgstr ""
205
 
206
- #: addons/autobackup.php:230
207
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
208
- msgstr ""
209
 
210
- #: addons/autobackup.php:231
211
  msgid "Proceed with update"
212
  msgstr "Fortsätt med uppdateringen"
213
 
214
- #: addons/autobackup.php:53 addons/autobackup.php:116
215
- msgid "(logs can be found in the UpdraftPlus settings page as normal - or will be shown here if something goes wrong)..."
216
- msgstr ""
217
-
218
- #: addons/autobackup.php:57 addons/autobackup.php:122
219
  msgid "Starting automatic backup..."
220
  msgstr "Startar automatisk säkerhetskopiering..."
221
 
222
- #: addons/autobackup.php:79
223
  msgid "plugins"
224
  msgstr "tillägg"
225
 
226
- #: addons/autobackup.php:86
227
  msgid "themes"
228
  msgstr "teman"
229
 
230
- #: addons/autobackup.php:108
231
  msgid "You do not have sufficient permissions to update this site."
232
- msgstr ""
233
 
234
- #: addons/autobackup.php:116
235
  msgid "Creating database backup with UpdraftPlus..."
236
- msgstr ""
237
 
238
- #: addons/autobackup.php:124 addons/autobackup.php:194
239
- #: addons/autobackup.php:217
240
  msgid "Automatic Backup"
241
  msgstr "Automatisk säkerhetskopiering"
242
 
243
- #: addons/autobackup.php:151
244
  msgid "Creating backup with UpdraftPlus..."
245
- msgstr ""
246
 
247
- #: addons/autobackup.php:158
248
  msgid "Errors have occurred:"
249
- msgstr ""
250
 
251
- #: addons/autobackup.php:171
252
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - now proceeding with the updates..."
253
- msgstr ""
254
 
255
- #: addons/autobackup.php:29 addons/autobackup.php:229
256
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
257
- msgstr ""
258
 
259
- #: addons/autobackup.php:53
260
  msgid "Creating %s and database backup with UpdraftPlus..."
261
- msgstr ""
262
 
263
  #: addons/morefiles.php:94
264
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
265
- msgstr ""
266
 
267
  #: addons/morefiles.php:99
268
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
269
- msgstr ""
270
 
271
  #: addons/morefiles.php:118 addons/morefiles.php:119
272
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
273
- msgstr ""
274
 
275
  #: addons/morefiles.php:118 addons/morefiles.php:119
276
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
277
- msgstr ""
278
 
279
- #: admin.php:1264
280
  msgid "Support"
281
- msgstr ""
282
 
283
- #: admin.php:1264
284
  msgid "More plugins"
285
- msgstr ""
286
 
287
- #: admin.php:905
288
  msgid "%s version: %s"
289
- msgstr ""
290
 
291
- #: admin.php:906
292
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
293
- msgstr ""
294
 
295
- #: admin.php:980
296
  msgid "This database backup is missing core WordPress tables: %s"
297
- msgstr ""
298
 
299
- #: admin.php:983
300
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
301
- msgstr ""
302
 
303
- #: admin.php:862
304
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
305
- msgstr ""
306
 
307
- #: admin.php:130 admin.php:277
308
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
309
- msgstr ""
310
 
311
- #: admin.php:130 admin.php:277
312
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
313
- msgstr ""
314
 
315
- #: admin.php:262
316
  msgid "Update Plugin"
317
- msgstr ""
318
 
319
- #: admin.php:266
320
  msgid "Update Theme"
321
- msgstr ""
322
 
323
- #: admin.php:128 admin.php:275
324
  msgid "Dismiss (for %s weeks)"
325
- msgstr ""
326
 
327
- #: admin.php:129 admin.php:276
328
  msgid "Be safe with an automatic backup"
329
- msgstr ""
330
 
331
- #: restorer.php:988
332
  msgid "Uploads path (%s) does not exist - resetting (%s)"
333
- msgstr ""
334
 
335
- #: admin.php:1268
336
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
337
  msgstr "Om du fortfarande kan läsa dessa ord efter att sidan laddat färdigt, då finns det ett JavaScript- eller jQuery-problem på webbplatsen."
338
 
339
- #: admin.php:109
340
  msgid "Follow this link to attempt decryption and download the database file to your computer."
341
  msgstr "Följ denna länk för att försöka avkryptera och ladda ner databasfilen till din dator."
342
 
343
- #: admin.php:110
344
  msgid "This decryption key will be attempted:"
345
  msgstr "Denna avkrypteringsnyckel kommer att testas:"
346
 
347
- #: admin.php:111
348
  msgid "Unknown server response:"
349
  msgstr "Okänt serversvar:"
350
 
351
- #: admin.php:112
352
  msgid "Unknown server response status:"
353
  msgstr "Status för okänt serversvar:"
354
 
355
- #: admin.php:113
356
  msgid "The file was uploaded."
357
  msgstr "Filen laddades upp."
358
 
359
- #: admin.php:104
360
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
361
  msgstr "Denna fil verkar inte vara ett UpdraftPlus backup-arkiv (sådana filer är .zip eller .gz-filer och har namn såsom: backup_(time)_(site name)_(code)_(type).(zip|gz)). Men UpdraftPlus-arkiv är standard zip/SQL-filer, så om du är säker på att din fil har rätt format, då kan du ge den ett nytt namn som matchar detta mönster."
362
 
363
- #: admin.php:105
364
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
365
  msgstr "(se till att du försökte ladda upp en zip-fil som tidigare skapad av UpdraftPlus)"
366
 
367
- #: admin.php:106
368
  msgid "Upload error:"
369
  msgstr "Fel vid uppladdning:"
370
 
371
- #: admin.php:107
372
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
373
  msgstr "Denna fil verkar inte vara ett krypterat UpdraftPlus databasarkiv (sådana filer är .gz.crypt -filer med namn som exempelvis: backup_(tid)_(webbplatsnamn)_(kod)_db.crypt.gz)."
374
 
375
- #: admin.php:108
376
  msgid "Upload error"
377
  msgstr "Uppladdningsfel"
378
 
379
- #: admin.php:97
380
  msgid "Delete from your web server"
381
  msgstr "Ta bort från din webbserver"
382
 
383
- #: admin.php:98
384
  msgid "Download to your computer"
385
  msgstr "Ladda ner till din dator"
386
 
387
- #: admin.php:99
388
  msgid "and then, if you wish,"
389
  msgstr "och sedan, om du önskar,"
390
 
391
- #: methods/s3.php:369
392
  msgid "Examples of S3-compatible storage providers:"
393
  msgstr "Exempel på S3-kompatibla lagringstjänster:"
394
 
395
- #: methods/googledrive.php:208
396
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
397
  msgstr "Uppladdning förväntas misslyckas: %s-gränsen för enstaka filer är %s, och filen är %s Gb (%d bytes)"
398
 
399
- #: backup.php:667
400
  msgid "The backup directory is not writable - the database backup is expected to shortly fail."
401
  msgstr "Backup-katalogen är inte skrivbar - databasbackupen förväntas misslyckas inom kort."
402
 
403
- #: admin.php:2699
404
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
405
  msgstr "Kommer inte att ta bort några arkiv efter uppackning eftersom det inte fanns någon molnlagring för denna backup"
406
 
407
- #: admin.php:2407
408
  msgid "(%d archive(s) in set)."
409
  msgstr "(%d arkiv i setet)."
410
 
411
- #: admin.php:2410
412
  msgid "You appear to be missing one or more archives from this multi-archive set."
413
  msgstr "Du verkar sakna ett eller flera arkiv från detta multiarkiv-set."
414
 
415
- #: admin.php:2167
416
  msgid "Split archives every:"
417
  msgstr "Dela upp arkiv varje:"
418
 
419
- #: admin.php:2041
420
  msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
421
  msgstr "Om du matar in flera filer/kataloger, skilj dem åt med kommatecken. Du kan använda ett * på slutet som jokertecken."
422
 
423
- #: admin.php:90
424
  msgid "Error: the server sent an empty response."
425
  msgstr "Fel: servern skickade ett tomt svar."
426
 
427
- #: admin.php:91
428
  msgid "Warnings:"
429
  msgstr "Varningar:"
430
 
431
- #: admin.php:93
432
  msgid "Error: the server sent us a response (JSON) which we did not understand."
433
  msgstr "Fel: servern skickade oss ett svar (JSON) som vi inte förstod."
434
 
435
- #: admin.php:1287
436
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
437
  msgstr "Din WordPress-installation har gamla kataloger från sitt tillstånd innan du återskapade/migrerade (teknisk information: dessa har suffixet -old). Använd denna knapp för att ta bort dem (om du har verifierat att återställningen lyckades)."
438
 
439
- #: admin.php:1081
440
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
441
  msgstr "Detta ser ut som en fil skapad av UpdraftPlus, men den här installationen känner inte igen den här typen av objekt: %s. Kanske måste du installera ett insticksprogram?"
442
 
443
- #: admin.php:571
444
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
445
  msgstr "Backup-arkivfilen har framgångsrikt behandlats. Tryck nu på Återställ igen för att fortsätta."
446
 
447
- #: admin.php:573
448
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
449
  msgstr "Backup-arkivfilen har behandlats, men med några varningar. Om allt fungerar så kan du klicka Återställ igen för att fortsätta. Annars avbryt och rätta till eventuella problem först."
450
 
451
- #: admin.php:575
452
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
453
  msgstr "Backup-arkivfilen har bearbetats, men några fel har uppstått. Du måste avbryta och rätta till alla problem innan du försöker igen."
454
 
455
- #: admin.php:479
456
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
457
  msgstr "Backup-arkivet för denna fil kunde inte hittas. Fjärrlagringsmetoden som används (%s) tillåter oss inte att hämta filer. För att utföra återställning med hjälp av UpdraftPlus, måste du hämta en kopia av denna fil och placera den inuti UpdraftPlus arbetskatalog."
458
 
459
- #: admin.php:508
460
  msgid "No such backup set exists"
461
  msgstr "Inget sådant backup-set existerar"
462
 
463
- #: admin.php:546
464
  msgid "File not found (you need to upload it): %s"
465
  msgstr "Filen hittades inte (du måste ladda upp den): %s"
466
 
467
- #: admin.php:548
468
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
469
  msgstr "Filen hittades, men har nollstorlek (du måste ladda upp den igen): %s"
470
 
471
- #: admin.php:552
472
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
473
  msgstr "Filen (%s) hittades, men har en annan storlek (%s) jämfört med förväntade (%s) - den kan vara korrupt."
474
 
475
- #: admin.php:566
476
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
477
  msgstr "Detta multibackup-set verkar sakna följande arkiv: %s"
478
 
479
- #: restorer.php:234
480
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
481
  msgstr "Misslyckades med att flytta katalog (kontrollera dina behörigheter och disktilldelning): %s"
482
 
483
- #: restorer.php:451
484
  msgid "This directory already exists, and will be replaced"
485
  msgstr "Katalogen existerar redan och kommer att ersättas"
486
 
487
- #: restorer.php:225
488
  msgid "Failed to move file (check your file permissions and disk quota): %s"
489
  msgstr "Misslyckades med att flytta fil (kontrollera dina behörigheter och disktilldelning): %s"
490
 
@@ -492,7 +764,7 @@ msgstr "Misslyckades med att flytta fil (kontrollera dina behörigheter och disk
492
  msgid "Moving unpacked backup into place..."
493
  msgstr "Flyttar uppackad backup till sin plats..."
494
 
495
- #: backup.php:1294 backup.php:1530
496
  msgid "Failed to open the zip file (%s) - %s"
497
  msgstr "Misslyckades med att öppna zip-fil (%s) - %s"
498
 
@@ -500,15 +772,15 @@ msgstr "Misslyckades med att öppna zip-fil (%s) - %s"
500
  msgid "WordPress root directory server path: %s"
501
  msgstr "Sökväg till WordPress rotkatalog: %s"
502
 
503
- #: methods/s3.php:377
504
  msgid "... and many more!"
505
  msgstr "...och många mer!"
506
 
507
- #: methods/s3.php:402
508
  msgid "%s end-point"
509
  msgstr "%s slutpunkt"
510
 
511
- #: admin.php:2656
512
  msgid "File is not locally present - needs retrieving from remote storage"
513
  msgstr "Filen är inte närvarande lokalt - måste hämtas från fjärrlagringsplats"
514
 
@@ -516,115 +788,115 @@ msgstr "Filen är inte närvarande lokalt - måste hämtas från fjärrlagringsp
516
  msgid "S3 (Compatible)"
517
  msgstr "S3 (Kompatibel)"
518
 
519
- #: admin.php:2631
520
  msgid "Final checks"
521
  msgstr "Slutkontroller"
522
 
523
- #: admin.php:2654
524
  msgid "Looking for %s archive: file name: %s"
525
  msgstr "Letar efter %s-arkiv: filnamn: %s"
526
 
527
- #: admin.php:2173
528
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
529
  msgstr "Markera denna för att ta bort överflödiga backupfiler från din server efter att backupen kört klart (om du avmarkerar kommer alla filer som skickats för fjärrlagring också att bli kvar lokalt, och alla filer som lagras lokalt kommer inte att omfattas av bevarande-gränserna)."
530
 
531
- #: admin.php:2076
532
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
533
  msgstr "Släpp krypterade databasfiler (db.gz.crypt-filer) här för att ladda upp dem för dekryptering"
534
 
535
- #: admin.php:2033
536
  msgid "Your wp-content directory server path: %s"
537
  msgstr "Sökväg till din wp-content-katalog: %s"
538
 
539
- #: admin.php:103
540
  msgid "Raw backup history"
541
  msgstr "Råbackuphistoria"
542
 
543
- #: admin.php:1602
544
  msgid "Show raw backup and file list"
545
  msgstr "Visa råbackup och fillista"
546
 
547
- #: admin.php:89
548
  msgid "Processing files - please wait..."
549
  msgstr "Bearbetar filer - var god vänta..."
550
 
551
- #: admin.php:1415
552
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
553
  msgstr "Din WordPress-installation har problem med utmatning av extra blanksteg. Detta kan göra backuper som du laddar ner härifrån korrupta."
554
 
555
- #: admin.php:1415
556
  msgid "Please consult this FAQ for help on what to do about it."
557
  msgstr "Vänligen konsultera denna FAQ för hjälp om vad du kan göra åt det."
558
 
559
- #: admin.php:868
560
  msgid "Failed to open database file."
561
  msgstr "Misslyckades med att öppna databasfil."
562
 
563
- #: admin.php:850
564
  msgid "Failed to write out the decrypted database to the filesystem."
565
  msgstr "Misslyckades med att skriva den dekrypterade databasen till filsystemet."
566
 
567
- #: admin.php:674
568
  msgid "Known backups (raw)"
569
  msgstr "Kända backuper (råa)"
570
 
571
- #: restorer.php:542
572
  msgid "Using directory from backup: %s"
573
  msgstr "Använder katalog från backup: %s"
574
 
575
- #: restorer.php:494
576
  msgid "Files found:"
577
  msgstr "Hittade filer:"
578
 
579
- #: restorer.php:500
580
  msgid "Unable to enumerate files in that directory."
581
  msgstr "Kan inte räkna upp filer i den katalogen."
582
 
583
- #: restorer.php:835
584
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
585
  msgstr "Begärd tabellmotor (%s) finns inte tillgänglig ä ändrar till MyISAM."
586
 
587
- #: restorer.php:846
588
  msgid "Restoring table (%s)"
589
  msgstr "Återställer tabell (%s)"
590
 
591
- #: restorer.php:302
592
  msgid "An existing unremoved backup from a previous restore exists: %s"
593
  msgstr "En befintlig ej borttagen backup från en tidigare återställning finns: %s"
594
 
595
- #: backup.php:1347 backup.php:1540
596
  msgid "A zip error occurred - check your log for more details."
597
  msgstr "Ett zip-fel inträffade - kontrollera din logg för fler detaljer."
598
 
599
- #: addons/migrator.php:41
600
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
601
  msgstr "Detta ser ut som en migration (backupen kommer från en webbplats med en annan adress/URL), men du valde inte alternativet sök-och-ersätt i databasen. Det är vanligen ett misstag."
602
 
603
- #: restorer.php:919
604
  msgid "An error occured on the first CREATE TABLE command - aborting run"
605
  msgstr "Ett fel inträffade vid det första CREATE TABLE-kommandot - avbryter körning"
606
 
607
- #: admin.php:2668
608
  msgid "file is size:"
609
  msgstr "filen har storleken:"
610
 
611
- #: admin.php:2374
612
  msgid "database"
613
  msgstr "databas"
614
 
615
- #: admin.php:288 admin.php:1268
616
  msgid "Go here for more information."
617
  msgstr "Gå hit för mer information."
618
 
619
- #: admin.php:1475
620
  msgid "Downloading / preparing backup files..."
621
  msgstr "Laddar ner / förbereder backupfiler"
622
 
623
- #: admin.php:88
624
  msgid "Some files are still downloading or being processed - please wait."
625
  msgstr "Några filer laddas fortfarande ner eller bearbetas - var god vänta."
626
 
627
- #: admin.php:899
628
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
629
  msgstr "Detta backup-set kommer från en annan webbplats - det här är inte en återställning utan en migration. Du måste ha Migrator-insticksprogrammet för att få detta att fungera."
630
 
@@ -690,96 +962,96 @@ msgstr "%s fel - misslyckades att återsammansätta delarna"
690
  msgid "%s error: zero-size file was downloaded"
691
  msgstr "%s fel: fil med nollstorlek laddades ner"
692
 
693
- #: restorer.php:488 admin.php:837 admin.php:918 admin.php:923 admin.php:1074
694
- #: admin.php:1081
695
  msgid "Error: %s"
696
  msgstr "Fel: %s"
697
 
698
- #: admin.php:2190
699
  msgid "Backup directory specified exists, but is <b>not</b> writable."
700
  msgstr "Backup-katalogen som specificerats existerar men är <b>inte</b> skrivbar."
701
 
702
- #: admin.php:2188
703
  msgid "Backup directory specified does <b>not</b> exist."
704
  msgstr "Backup-katalogen som specificerats existerar <b>inte</b>."
705
 
706
- #: admin.php:899 admin.php:1781 admin.php:1945
707
  msgid "Warning: %s"
708
  msgstr "Varning: %s"
709
 
710
- #: admin.php:1358
711
  msgid "Last backup job run:"
712
  msgstr "Senaste körning av backup-jobb:"
713
 
714
- #: backup.php:1060 backup.php:1072
715
  msgid "%s: unreadable file - could not be backed up"
716
  msgstr "%s: oläsbar fil - kunde inte backas upp"
717
 
718
- #: backup.php:1308
719
  msgid "A very large file was encountered: %s (size: %s Mb)"
720
  msgstr "En mycket stor fil påträffades: %s (storlek: %s Mb)"
721
 
722
- #: backup.php:829
723
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
724
  msgstr "Tabell %s har väldigt många rader (%s) - vi hoppas att ditt webbhotell ger dig tillräckliga resurser att dumpa ut den tabellen i backupen."
725
 
726
- #: backup.php:746
727
  msgid "An error occurred whilst closing the final database file"
728
  msgstr "Ett fel uppstod under stängning av den sista databasfilen"
729
 
730
- #: backup.php:375
731
  msgid "Warnings encountered:"
732
  msgstr "Påträffade varningar:"
733
 
734
- #: updraftplus.php:1234
735
  msgid "The backup apparently succeeded (with warnings) and is now complete"
736
  msgstr "Backupen verkar ha lyckats (med varningar) och är nu komplett"
737
 
738
- #: updraftplus.php:502
739
  msgid "Your free disk space is very low - only %s Mb remain"
740
  msgstr "Ditt lediga diskutrymme är väldigt lågt - bara %s Mb återstår"
741
 
742
- #: addons/migrator.php:446
743
  msgid "<strong>Search and replacing table:</strong> %s"
744
  msgstr "<strong>Sök och ersätt tabell:</strong> %s"
745
 
746
- #: addons/migrator.php:99
747
  msgid "Site Name:"
748
  msgstr "Webbplatsnamn:"
749
 
750
- #: addons/migrator.php:101
751
  msgid "Site Domain:"
752
  msgstr "Webbplatsdomän:"
753
 
754
- #: addons/migrator.php:118
755
  msgid "Migrated site (from UpdraftPlus)"
756
  msgstr "Migrerad webbplats (från UpdraftPlus)"
757
 
758
- #: addons/migrator.php:147
759
  msgid "<strong>ERROR</strong>: Site URL already taken."
760
  msgstr "<strong>FEL</strong>: Webbplats-URL är redan upptaget."
761
 
762
- #: addons/migrator.php:154
763
  msgid "New site:"
764
  msgstr "Ny webbplats:"
765
 
766
- #: addons/migrator.php:86
767
  msgid "Information needed to continue:"
768
  msgstr "Information som behövs för att fortsätta:"
769
 
770
- #: addons/migrator.php:87
771
  msgid "Please supply the following information:"
772
  msgstr "Vänligen ange följande information:"
773
 
774
- #: addons/migrator.php:90
775
  msgid "Enter details for where this new site is to live within your multisite install:"
776
  msgstr "Ange detaljer för var den nya webbplatsen ska existera inom din multisajt-installation"
777
 
778
- #: addons/migrator.php:45
779
  msgid "Processed plugin:"
780
  msgstr "Bearbetat tillägg:"
781
 
782
- #: addons/migrator.php:53
783
  msgid "Network activating theme:"
784
  msgstr "Nätverk aktiverar tema:"
785
 
@@ -795,227 +1067,228 @@ msgstr "Kontrollera dina filbehörigheter: Kunde inte skapa och öppna katalog:"
795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
796
  msgstr "Din webbservers PHP-installation saknar en nödvändig modul (%s). Vänligen kontakta ditt webbhotells support och be dem aktivera den."
797
 
798
- #: methods/s3.php:519
799
  msgid "Please check your access credentials."
800
  msgstr "Vänligen kontrollera dina åtkomstuppgifter."
801
 
802
- #: methods/s3.php:494
803
  msgid "The error reported by %s was:"
804
  msgstr "Felet som rapporterades av %s var:"
805
 
806
- #: restorer.php:558
807
  msgid "Please supply the requested information, and then continue."
808
  msgstr "Vänligen tillhandahåll den efterfrågade informationen och fortsätt sedan."
809
 
810
- #: restorer.php:565
811
  msgid "New table prefix:"
812
  msgstr "Nytt tabell-prefix:"
813
 
814
- #: restorer.php:901
815
  msgid "Cannot drop tables, so deleting instead (%s)"
816
  msgstr "Kan inte släppa tabeller, så vänligen ta istället bort (%s)"
817
 
818
- #: restorer.php:731 admin.php:923
819
  msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
820
  msgstr "För att importera en vanlig WordPress-webbplats till en multisajt-installation krävs både multisajt- och migrator-insticksprogrammen."
821
 
822
- #: restorer.php:737 admin.php:931
823
  msgid "Site information:"
824
  msgstr "Webbplatsinformation:"
825
 
826
- #: restorer.php:896
827
  msgid "Cannot create new tables, so skipping this command (%s)"
828
  msgstr "Kan inte skapa nya tabeller, hoppar över kommandot (%s)"
829
 
830
- #: restorer.php:685 restorer.php:700 admin.php:1268
831
  msgid "Warning:"
832
  msgstr "Varning:"
833
 
834
- #: restorer.php:685
835
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
836
  msgstr "Din databasanvändare har inte behörighet att skapa tabeller. Vi kommer att försöka återskapa genom att helt enkelt tömma tabellerna; detta borde fungera såvida a)du återställer från en WordPress-version med samma databasstruktur, och b) Din importerade databas inte innehåller några tabeller som inte redan finns på den importerande webbplatsen."
837
 
838
- #: restorer.php:700
839
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
840
  msgstr "Din databasanvändare har inte behörighet att släppa tabeller. Vi kommer att försöka återskapa genom att helt enkelt tömma tabellerna; detta borde fungera såvida du återställer från en WordPress-version med samma databasstruktur"
841
 
842
- #: restorer.php:35 admin.php:918
843
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
844
  msgstr "Du kör med WordPress multisajt - men din backup är inte från en multisajt-webbplats."
845
 
846
- #: admin.php:2643
847
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
848
  msgstr "Hoppar över återskapande av WordPress-kärnan vid import av enkel webbplats till en multisajt-installation. Om du hade något nödvändigt i WordPress-katalogen kommer du att behöva lägga tillbaka det manuellt från zip-filen."
849
 
850
- #: admin.php:2261
851
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
852
  msgstr "Din webbservers PHP-installation inkluderar inte en <strong>nödvändig</strong> (för %s) modul (%s). Vänligen kontakta ditt webbhotells support och be dem aktivera den."
853
 
854
- #: admin.php:2261
855
  msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
856
  msgstr "Dina alternativ är 1) Installera/aktivera %s eller 2) Byta webbhotell - %s är en standard PHP-komponent som krävs av alla backuptillägg vi känner till som använder molnlagring."
857
 
858
- #: admin.php:117
859
  msgid "Close"
860
  msgstr "Stäng"
861
 
862
- #: admin.php:85
863
  msgid "Unexpected response:"
864
  msgstr "Oväntat svar:"
865
 
866
- #: admin.php:2058
867
  msgid "To send to more than one address, separate each address with a comma."
868
  msgstr "För att skicka mer än en adress, åtskilj varje adress med ett kommatecken."
869
 
870
- #: admin.php:102
871
  msgid "PHP information"
872
  msgstr "PHP-information"
873
 
874
- #: admin.php:1587
875
  msgid "show PHP information (phpinfo)"
876
  msgstr "visa PHP-information (phpinfo)"
877
 
878
- #: admin.php:1600
879
  msgid "zip executable found:"
880
  msgstr "zip exekverbar fil hittades:"
881
 
882
- #: admin.php:1536
883
  msgid "Migrate Site"
884
  msgstr "Migrera Webbplats"
885
 
886
- #: admin.php:1540
887
  msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
888
  msgstr "Migrering av data från en annan webbplats sker genom \"Återställ\"-knappen. En \"migration\" är ytterst samma sak som en återställning - men man använder backup-arkiv som importeras från en annan webbplats. UpdraftPlus modifierar återställningsprocessen efter behov för att överföra backup-data till den nya webbplatsen."
889
 
890
- #: admin.php:1540
891
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
892
  msgstr "<a href=\"%s\">Läs denna artikel för att se hur det görs steg-för-steg.</a>"
893
 
894
- #: admin.php:1542
895
  msgid "Do you want to migrate or clone/duplicate a site?"
896
  msgstr "Vill du migrera eller klona/duplicera en webbplats?"
897
 
898
- #: admin.php:1542
899
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
900
  msgstr "Testa då vårt insticksprogram \"Migrator\". Efter att ha använt det en gång har du tjänat in inköpspriset jämfört med tiden som skulle ha behövts för att kopiera webbplatsen manuellt."
901
 
902
- #: admin.php:1542
903
  msgid "Get it here."
904
  msgstr "Skaffa den här."
905
 
906
- #: admin.php:1464
907
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
908
  msgstr "Tar bort... vänligen vänta på att kommunikationen med fjärrlagringsplatsen slutförs."
909
 
910
- #: admin.php:1463
911
  msgid "Also delete from remote storage"
912
  msgstr "Ta också bort från fjärrlagringsplatsen"
913
 
914
- #: admin.php:1403
915
  msgid "Latest UpdraftPlus.com news:"
916
  msgstr "Senaste Nyheter från UpdraftPlus.com"
917
 
918
- #: admin.php:1374
919
  msgid "Clone/Migrate"
920
  msgstr "Klona/Migrera"
921
 
922
- #: admin.php:1264
923
  msgid "News"
924
  msgstr "Nyheter"
925
 
926
- #: admin.php:1264
927
  msgid "Premium"
928
  msgstr "Premium"
929
 
930
- #: admin.php:668
931
  msgid "Local archives deleted: %d"
932
  msgstr "Lokala arkiv borttagna: %d"
933
 
934
- #: admin.php:669
935
  msgid "Remote archives deleted: %d"
936
  msgstr "Fjärrarkiv borttagna: %d"
937
 
938
- #: backup.php:84
939
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
940
  msgstr "%s - kunde inte backa upp denna enhet; den motsvarande katalogen existerar inte (%s)"
941
 
942
- #: admin.php:585
943
  msgid "Backup set not found"
944
  msgstr "Backup-setet hittades inte"
945
 
946
- #: admin.php:667
947
  msgid "The backup set has been removed."
948
  msgstr "Backup-setet har tagits bort."
949
 
950
- #: updraftplus.php:1787
951
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
952
  msgstr "Prenumerera på UpdraftPlus-bloggen för att få uppdaterade nyheter och erbjudanden"
953
 
954
- #: updraftplus.php:1787
955
  msgid "Blog link"
956
  msgstr "Blogg-länk"
957
 
958
- #: updraftplus.php:1787
959
  msgid "RSS link"
960
  msgstr "RSS-länk"
961
 
962
- #: methods/s3.php:333
 
963
  msgid "Testing %s Settings..."
964
  msgstr "Testar %s Inställningar..."
965
 
966
- #: admin.php:1427
967
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
968
  msgstr "Eller så kan du lägga till dem manuellt i din UpdraftPlus-katalog (vanligtvis wp-content/updraft), till exempel via FTP, och sedan använda \"scanna om\"-länken ovan"
969
 
970
- #: admin.php:304
971
  msgid "Notice"
972
  msgstr "Meddelande"
973
 
974
- #: admin.php:304
975
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
976
  msgstr "UpdraftPlus avbuggningsläge är aktivt. Du kan se avbuggningsmeddelanden på denna sida inte bara från UpdraftPlus, utan också från alla andra tillägg som installerats. Vänligen kontrollera att meddelandet du ser kommer från UpdraftPlus innan du begär support från oss."
977
 
978
- #: updraftplus.php:494 admin.php:309
979
  msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
980
  msgstr "W3 Total Caches objektcache är aktiv. Denna har en känd bugg som ställer till problem för alla schemalagda uppgifter (inklusive backup-jobb)."
981
 
982
- #: admin.php:309
983
  msgid "Go here to turn it off."
984
  msgstr "Gå hit för att stänga av den."
985
 
986
- #: admin.php:309
987
  msgid "<a href=\"%s\">Go here</a> for more information."
988
  msgstr "<a href=\"%s\">Gå hit</a> för mer information."
989
 
990
- #: backup.php:358
991
  msgid "Errors encountered:"
992
  msgstr "Fel påträffades:"
993
 
994
- #: admin.php:84
995
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
996
  msgstr "Scannar om (söker backuper som du har laddat upp manuellt till den interna backup-förvaringen)..."
997
 
998
- #: admin.php:87
999
  msgid "Begun looking for this entity"
1000
  msgstr "Har börjat leta efter denna entitet"
1001
 
1002
- #: addons/migrator.php:386
1003
  msgid "SQL update commands run:"
1004
  msgstr "SQL uppdateringskommandon kör:"
1005
 
1006
- #: admin.php:92
1007
  msgid "Errors:"
1008
  msgstr "Fel:"
1009
 
1010
- #: addons/migrator.php:388
1011
  msgid "Time taken (seconds):"
1012
  msgstr "Tid det tog (sekunder):"
1013
 
1014
- #: addons/migrator.php:475
1015
  msgid "rows: %d"
1016
  msgstr "rader: %d"
1017
 
1018
- #: addons/migrator.php:578
1019
  msgid "\"%s\" has no primary key, manual change needed on row %s."
1020
  msgstr "\"%s\" har ingen primärnyckel, manuell ändring krävs på rad %s."
1021
 
@@ -1023,79 +1296,79 @@ msgstr "\"%s\" har ingen primärnyckel, manuell ändring krävs på rad %s."
1023
  msgid "Store at"
1024
  msgstr "Lagra på"
1025
 
1026
- #: addons/migrator.php:303
1027
  msgid "Nothing to do: the site URL is already: %s"
1028
  msgstr "Inget att göra: webbplatsens URL är redan: %s"
1029
 
1030
- #: addons/migrator.php:308
1031
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
1032
  msgstr "Varning: databasens URL webbplats-URL (%s) avviker från den förväntade (%s)"
1033
 
1034
- #: addons/migrator.php:315
1035
  msgid "Database search and replace: replace %s in backup dump with %s"
1036
  msgstr "Databas sök och ersätt: ersätt %s i denna backup-dump med %s"
1037
 
1038
- #: addons/migrator.php:332
1039
  msgid "Could not get list of tables"
1040
  msgstr "Kunde inte hämta lista över tabeller"
1041
 
1042
- #: addons/migrator.php:343
1043
  msgid "<strong>Search and replacing table:</strong> %s: already done"
1044
  msgstr "<strong>Sök och ersätt tabell:</strong> %s: är redan utfört"
1045
 
1046
- #: addons/migrator.php:383
1047
  msgid "Tables examined:"
1048
  msgstr "Undersökta tabeller:"
1049
 
1050
- #: addons/migrator.php:384
1051
  msgid "Rows examined:"
1052
  msgstr "Undersökta rader:"
1053
 
1054
- #: addons/migrator.php:385
1055
  msgid "Changes made:"
1056
  msgstr "Gjorda ändringar:"
1057
 
1058
- #: addons/sftp.php:188
1059
  msgid "%s Error: Failed to download"
1060
  msgstr "%s Fel: Misslyckades med nedladdning"
1061
 
1062
- #: addons/sftp.php:247
1063
  msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1064
  msgstr "Att återuppta delvis utförda uppladdningar stöds inte, så du måste säkerställa att din webbserver tillåter PHP-processer att köra tillräckligt länge för att ladda upp din största backup-fil."
1065
 
1066
- #: addons/sftp.php:252
1067
  msgid "Host"
1068
  msgstr "Värd"
1069
 
1070
- #: addons/sftp.php:259
1071
  msgid "Port"
1072
  msgstr "Port"
1073
 
1074
- #: addons/sftp.php:273
1075
  msgid "Password"
1076
  msgstr "Lösenord"
1077
 
1078
- #: addons/sftp.php:289
1079
  msgid "Directory path"
1080
  msgstr "Sökväg till katalog"
1081
 
1082
- #: addons/sftp.php:291
1083
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
1084
  msgstr "Till vad ska katalogen ändras efter inloggning - ofta är detta relativt till din hemkatalog."
1085
 
1086
- #: addons/sftp.php:342
1087
  msgid "host name"
1088
  msgstr "Värdnamn"
1089
 
1090
- #: addons/sftp.php:346
1091
  msgid "username"
1092
  msgstr "användarnamn"
1093
 
1094
- #: addons/sftp.php:350
1095
  msgid "password"
1096
  msgstr "lösenord"
1097
 
1098
- #: addons/sftp.php:355
1099
  msgid "Failure: Port must be an integer."
1100
  msgstr "Fel: Porten måste vara ett heltal."
1101
 
@@ -1103,55 +1376,56 @@ msgstr "Fel: Porten måste vara ett heltal."
1103
  msgid "starting from next time it is"
1104
  msgstr "med början från nästa gång är det"
1105
 
1106
- #: addons/multisite.php:128
1107
  msgid "Multisite Install"
1108
  msgstr "Multisajt-Installation"
1109
 
1110
- #: udaddons/options.php:151
1111
  msgid "You do not have sufficient permissions to access this page."
1112
  msgstr "Du har inte tillräcklig behörighet för att komma åt denna sida."
1113
 
1114
- #: addons/multisite.php:153
1115
  msgid "You do not have permission to access this page."
1116
  msgstr "Du har inte behörighet att komma åt denna sida."
1117
 
1118
- #: addons/multisite.php:221
1119
  msgid "Must-use plugins"
1120
  msgstr "Tillägg som krävs"
1121
 
1122
- #: addons/multisite.php:228
1123
  msgid "Blog uploads"
1124
  msgstr "Blogg-uppladdningar"
1125
 
1126
- #: addons/migrator.php:169
1127
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
1128
  msgstr "Alla referenser till sajtens hemvist i databasen kommer att bytas ut mot din nuvarande webbplats-URL som är: %s"
1129
 
1130
- #: addons/migrator.php:169
1131
  msgid "Search and replace site location in the database (migrate)"
1132
  msgstr "Sök och ersätt webbplatsens hemvist i databasen (migrera)"
1133
 
1134
- #: addons/migrator.php:169
1135
  msgid "(learn more)"
1136
  msgstr "(lär dig mer)"
1137
 
1138
- #: addons/migrator.php:252 addons/migrator.php:365
1139
  msgid "Failed: the %s operation was not able to start."
1140
  msgstr "Misslyckades: %s-operationen kunde inte starta."
1141
 
1142
- #: addons/migrator.php:254 addons/migrator.php:367
1143
  msgid "Failed: we did not understand the result returned by the %s operation."
1144
  msgstr "Misslyckades: vi kunde inte förstå resultatet som returnerades av %s-operationen."
1145
 
1146
- #: addons/migrator.php:275
1147
  msgid "Database: search and replace site URL"
1148
  msgstr "Databas: sök och ersätt webbplats-URL"
1149
 
1150
- #: addons/migrator.php:278
1151
  msgid "This option was not selected."
1152
  msgstr "Detta alternativ var inte valt."
1153
 
1154
- #: addons/migrator.php:293 addons/migrator.php:298
 
1155
  msgid "Error: unexpected empty parameter (%s, %s)"
1156
  msgstr "Fel: oväntat tom parameter (%s, %s)"
1157
 
@@ -1207,84 +1481,84 @@ msgstr "Explicit kryptering används som förvalt alternativ. För att tvinga im
1207
  msgid "No %s found"
1208
  msgstr "Inga %s hittades"
1209
 
1210
- #: addons/sftp.php:385
1211
  msgid "Check your file permissions: Could not successfully create and enter:"
1212
  msgstr "Kontrollera dina filbehörigheter: Kunde inte skapa och ange:"
1213
 
1214
- #: methods/ftp.php:185
1215
  msgid "FTP Server"
1216
  msgstr "FTP-Server"
1217
 
1218
- #: methods/ftp.php:189
1219
  msgid "FTP Login"
1220
  msgstr "FTP-Inloggning"
1221
 
1222
- #: methods/ftp.php:193
1223
  msgid "FTP Password"
1224
  msgstr "FTP-Lösenord"
1225
 
1226
- #: methods/ftp.php:197
1227
  msgid "Remote Path"
1228
  msgstr "Fjärrsökväg"
1229
 
1230
- #: methods/ftp.php:198
1231
  msgid "Needs to already exist"
1232
  msgstr "Måste redan existera"
1233
 
1234
- #: methods/ftp.php:219
1235
  msgid "Failure: No server details were given."
1236
  msgstr "Fel: Inga server-uppgifter lämnades."
1237
 
1238
- #: methods/ftp.php:234
1239
  msgid "Failure: we did not successfully log in with those credentials."
1240
  msgstr "Fel: Vi kunde inte logga in med dessa användaruppgifter."
1241
 
1242
- #: methods/ftp.php:242
1243
  msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
1244
  msgstr "Fel: ett oväntat internt UpdraftPlus-fel uppstod när användaruppgifterna testades - vänlige kontakta utvecklaren"
1245
 
1246
- #: methods/ftp.php:246
1247
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
1248
  msgstr "Framgång: vi loggade in och bekräftade vår förmåga att skapa en fil i den utpekade katalogen (inloggningstyp:"
1249
 
1250
- #: methods/ftp.php:249
1251
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
1252
  msgstr "Fel: vi loggade in men kunde inte skapa en fil i den utpekade katalogen."
1253
 
1254
- #: addons/webdav.php:40 addons/webdav.php:152 addons/webdav.php:188
1255
  #: addons/sftp.php:32
1256
  msgid "No %s settings were found"
1257
  msgstr "Inga %s-inställningar hittades"
1258
 
1259
- #: addons/webdav.php:118 addons/webdav.php:122
1260
  msgid "Chunk %s: A %s error occurred"
1261
  msgstr "Del %s: Ett %s-fel uppstod"
1262
 
1263
- #: addons/webdav.php:204 addons/webdav.php:211 addons/webdav.php:224
1264
  msgid "WebDAV Error"
1265
  msgstr "WebDAV-Fel"
1266
 
1267
- #: addons/webdav.php:211
1268
  msgid "Error opening remote file: Failed to download"
1269
  msgstr "Fel vid öppning av fjärrfil: Nedladdning misslyckades"
1270
 
1271
- #: addons/webdav.php:224
1272
  msgid "Local write failed: Failed to download"
1273
  msgstr "Lokal skrivning misslyckades: Nedladdning misslyckades."
1274
 
1275
- #: addons/webdav.php:260
1276
  msgid "WebDAV URL"
1277
  msgstr "WebDAV URL"
1278
 
1279
- #: addons/webdav.php:264
1280
  msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
1281
  msgstr "Ange en fullständig URL, börj med webdav:// eller webdavs:// och inkludera sökväg, användarnamn, lösenord och port efter behov - ex %s"
1282
 
1283
- #: admin.php:1821 admin.php:1846
1284
  msgid "Failed"
1285
  msgstr "Misslyckades"
1286
 
1287
- #: addons/webdav.php:322
1288
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
1289
  msgstr "Misslyckades: Vi kunde inte placera en fil i den katalogen - var god kontrollera dina användaruppgifter."
1290
 
@@ -1320,86 +1594,82 @@ msgstr "men en del av den returnerade informationen var inte som väntat - din k
1320
  msgid "Your %s account name: %s"
1321
  msgstr "Ditt %s kontonamn: %s"
1322
 
1323
- #: methods/ftp.php:181
1324
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1325
  msgstr "Endast ickekrypterad FTP stöds av vanliga UpdraftPlus."
1326
 
1327
- #: methods/ftp.php:181
1328
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
1329
  msgstr "Om du vill ha kryptering (exempelvis om du vill lagra affärskritisk information), då finns ett insticksprogram tillgängligt."
1330
 
1331
- #: methods/s3.php:317
1332
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
1333
  msgstr "%s -fek; Misslyckades ladda ner %s. Kontrollera din behörighet och dina användaruppgifter."
1334
 
1335
- #: methods/s3.php:253 methods/s3.php:321
1336
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
1337
  msgstr "%s Fel: Misslyckades att komma åt bucket %s. Kontroller dina behörigheter och dina användaruppgifter."
1338
 
1339
- #: methods/s3.php:398
1340
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
1341
  msgstr "Hämta din åtkomstnyckel och din hemliga nyckel <a href=\"%s\">från din %s konsol</a>, välj sedan ett (globalt unikt - alla %s-användare) bucket-namn (bokstäver och siffror) (och - valfritt - en sökväg) att använda för lagring. Denna bucket kommer att skapas för dig om den inte redan finns."
1342
 
1343
- #: methods/s3.php:398
1344
  msgid "If you see errors about SSL certificates, then please go here for help."
1345
  msgstr "Om du ser fel om SSL-certifikat, gå då hit för hjälp."
1346
 
1347
- #: methods/s3.php:409
1348
  msgid "%s access key"
1349
  msgstr "%s åtkomstnyckel"
1350
 
1351
- #: methods/s3.php:413
1352
  msgid "%s secret key"
1353
  msgstr "%s hemlig nyckel"
1354
 
1355
- #: methods/s3.php:417
1356
  msgid "%s location"
1357
  msgstr "%s plats"
1358
 
1359
- #: methods/s3.php:418
1360
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
1361
  msgstr "Ange endast ett bucket-namn eller en bucket och sökväg. Exempel: mybucket, mybucket/mypath"
1362
 
1363
- #: methods/s3.php:439
1364
  msgid "API secret"
1365
  msgstr "API-hemlighet"
1366
 
1367
- #: methods/s3.php:460
1368
  msgid "Failure: No bucket details were given."
1369
  msgstr "Misslyckades: Inga uppgifter om bucket lämnades."
1370
 
1371
- #: methods/s3.php:475
1372
  msgid "Region"
1373
  msgstr "Region"
1374
 
1375
- #: methods/s3.php:493
1376
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
1377
  msgstr "Misslyckades: Vi kunde inte komma åt eller skapa en sådan bucket. Vänligen kontrollera dina användaruppgifter, och om dessa är korrekta försöka med ett annat bucket-namn (eftersom en annan %s-användare redan kan ha tagit ditt namn)."
1378
 
1379
- #: methods/s3.php:507 methods/s3.php:519
1380
  msgid "Failure"
1381
  msgstr "Misslyckades"
1382
 
1383
- #: methods/s3.php:507 methods/s3.php:519
1384
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
1385
  msgstr "Vi skapade din bucket med framgång, men försöket att skapa en fil i den misslyckades."
1386
 
1387
- #: methods/s3.php:509
1388
  msgid "We accessed the bucket, and were able to create files within it."
1389
  msgstr "Vi kom åt din bucket och kunde skapa filer i den."
1390
 
1391
- #: methods/s3.php:512
1392
  msgid "The communication with %s was encrypted."
1393
  msgstr "Kommunikationen med %s var krypterad."
1394
 
1395
- #: methods/s3.php:514
1396
  msgid "The communication with %s was not encrypted."
1397
  msgstr "Kommunikationen med %s var inte krypterad."
1398
 
1399
- #: methods/dropbox.php:35
1400
- msgid "The %s PHP module is not installed"
1401
- msgstr "PHP-modulen %s är inte installerad"
1402
-
1403
  #: methods/dropbox.php:41
1404
  msgid "You do not appear to be authenticated with Dropbox"
1405
  msgstr "Du verkar inte vara autentiserad hos Dropbox"
@@ -1448,16 +1718,15 @@ msgstr "Cloud Files API-nyckel"
1448
  msgid "Cloud Files container"
1449
  msgstr "Cloud Files container"
1450
 
1451
- #: methods/googledrive.php:452 methods/cloudfiles.php:394 methods/s3.php:388
1452
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
1453
  msgstr "UpdraftPlus %s-modul <strong>kräver</strong> %s. Vänligen skicka ingen supportbegäran; det finns inga alternativ."
1454
 
1455
- #: methods/cloudfiles.php:442 methods/cloudfiles.php:447 methods/s3.php:435
1456
- #: methods/s3.php:439
1457
  msgid "Failure: No %s was given."
1458
  msgstr "Misslyckades: Ingen %s angavs."
1459
 
1460
- #: methods/cloudfiles.php:442 methods/s3.php:435
1461
  msgid "API key"
1462
  msgstr "API-nyckel"
1463
 
@@ -1477,43 +1746,39 @@ msgstr "Cloud Files fel - vi fick åtkomst till containern, men misslyckades med
1477
  msgid "We accessed the container, and were able to create files within it."
1478
  msgstr "Vi fick åtkomst till containern, och vi kunde skapa filer i den."
1479
 
1480
- #: methods/email.php:20
1481
  msgid "WordPress Backup"
1482
  msgstr "WordPress Backup"
1483
 
1484
- #: methods/email.php:20
1485
  msgid "Be wary; email backups may fail because of file size limitations on mail servers."
1486
  msgstr "Var uppmärksam: epost-backuper kan misslyckas på grund av begränsningar i filstorlek hos epostservrar."
1487
 
1488
- #: methods/email.php:36
1489
  msgid "Note:"
1490
  msgstr "Notera:"
1491
 
1492
- #: methods/email.php:37
1493
- msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive. If you really need a large backup via email, then you could fund a new feature (to break the backup set into configurable-size pieces) - but the demand has not yet existed for such a feature."
1494
- msgstr "Epostadressen som angavs ovan kommer att användas. Om du väljer \"E-post\" så <strong>var uppmärksam</strong> på att epostservrar tenderar att ha storleksbegränsningar; typiskt runt 10-20Mb; backuper som blir större än så kommer inte att komma fram. Om du verkligen behöver en stor backup via epost kan du finansiera en ny funktion (att bryta isär backup-setet i delar med konfigurerbar storlek) - men det har inte ännu funnits någon efterfrågan på en sådan funktion."
1495
-
1496
- #: methods/s3.php:154
1497
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
1498
  msgstr "%s upload: hämttande av uploadID för multipart-uppladdning misslyckades - se logg-fil för fler detaljer"
1499
 
1500
- #: methods/s3.php:177
1501
  msgid "%s error: file %s was shortened unexpectedly"
1502
  msgstr "%s fel: filen %s avkortades oväntat"
1503
 
1504
- #: methods/s3.php:187
1505
  msgid "%s chunk %s: upload failed"
1506
  msgstr "%s del %s: uppladdning misslyckades"
1507
 
1508
- #: methods/s3.php:201
1509
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
1510
  msgstr "%s uppladdning (%s): återsammanfogning misslyckades (se logg för fler detaljer)"
1511
 
1512
- #: methods/s3.php:205
1513
  msgid "%s re-assembly error (%s): (see log file for more)"
1514
  msgstr "%s återsammanfogningsfel (%s): (se logg-filen för mer information)"
1515
 
1516
- #: methods/s3.php:217
1517
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
1518
  msgstr "%s Fel: Misslyckades med att skapa bucket %s. Kontrollera behörigheter och användaruppgifter."
1519
 
@@ -1579,8 +1844,7 @@ msgstr "Cloud Files fel - misslyckades att skapa och få åtkomst till container
1579
  msgid "%s Error: Failed to open local file"
1580
  msgstr "%s Fel: Misslyckades med att öppna lokal fil"
1581
 
1582
- #: methods/cloudfiles.php:105 methods/cloudfiles.php:147 methods/s3.php:128
1583
- #: methods/s3.php:134 methods/s3.php:135
1584
  msgid "%s Error: Failed to upload"
1585
  msgstr "%s Error: Misslyckades med uppladdning"
1586
 
@@ -1600,8 +1864,7 @@ msgstr "Fel vid nedladdning av fjärrfil: Misslyckades att ladda ner ("
1600
  msgid "Testing - Please Wait..."
1601
  msgstr "Testar - Var god vänta..."
1602
 
1603
- #: methods/cloudfiles.php:371 methods/cloudfiles.php:434 methods/s3.php:348
1604
- #: methods/s3.php:422
1605
  msgid "Test %s Settings"
1606
  msgstr "Testa %s-inställningar"
1607
 
@@ -1613,11 +1876,11 @@ msgstr "Hämta din API-nyckel <a href=\"https://mycloud.rackspace.com/\">från d
1613
  msgid "Also, you should read this important FAQ."
1614
  msgstr "Du bör också läsa denna viktiga FAQ."
1615
 
1616
- #: methods/googledrive.php:202
1617
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
1618
  msgstr "Kontot fullt: ditt %s-konto har bara %d bytes kvar, men filen som ska laddas upp är %d bytes"
1619
 
1620
- #: methods/googledrive.php:217
1621
  msgid "Failed to upload to %s"
1622
  msgstr "Misslyckades att ladda upp till %s"
1623
 
@@ -1641,40 +1904,40 @@ msgstr "Google Drive"
1641
  msgid "Account is not authorized."
1642
  msgstr "Kontot är inte godkänt."
1643
 
1644
- #: methods/googledrive.php:442 methods/cloudfiles.php:384 methods/s3.php:366
1645
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
1646
  msgstr "%s är ett bra val, eftersom UpdraftPlus stöder delade uppladdningar - det spelar ingen roll hur stor din webbplats är, så kan UpdraftPlus ladda upp den lite i taget utan att avbrytas av timeouts."
1647
 
1648
- #: restorer.php:849
1649
  msgid "will restore as:"
1650
  msgstr "kommer att återställa som:"
1651
 
1652
- #: restorer.php:916
1653
  msgid "An error (%s) occured:"
1654
  msgstr "Ett fel (%s) uppstod:"
1655
 
1656
- #: restorer.php:916
1657
  msgid "the database query being run was:"
1658
  msgstr "databasfrågan som kördes var:"
1659
 
1660
- #: restorer.php:922
1661
  msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
1662
  msgstr "För många databasfel har uppstått - avbryter återställning (du måste återställa manuellt)"
1663
 
1664
- #: restorer.php:930
1665
  msgid "Database lines processed: %d in %.2f seconds"
1666
  msgstr "Databasrader som bearbetats: %d på %2f sekunder"
1667
 
1668
- #: restorer.php:875
1669
  msgid "Finished: lines processed: %d in %.2f seconds"
1670
  msgstr "Klart: rader som bearbetats: %d på %2f sekunder"
1671
 
1672
- #: restorer.php:974 restorer.php:995
1673
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
1674
  msgstr "Tabellprefix har ändrats: ändrar %s tabellfält motsvarande:"
1675
 
1676
- #: restorer.php:978 restorer.php:1025 admin.php:1824 admin.php:1848
1677
- #: admin.php:2666
1678
  msgid "OK"
1679
  msgstr "OK"
1680
 
@@ -1683,87 +1946,87 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
1683
  msgstr "Du behöver åter-autentisera med %s eftersom dina befintliga användaruppgifter inte fungerar."
1684
 
1685
  #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1686
- #: methods/sftp.php:13 methods/sftp.php:34 methods/sftp.php:50
1687
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1688
  msgstr "Du har inte UpdraftPuls %s-insticksprogrammet installerat - skaffa det från %s"
1689
 
1690
- #: methods/webdav.php:63 methods/sftp.php:63
1691
  msgid "%s support is available as an add-on"
1692
  msgstr "%s support finns tillgängligt som tillval"
1693
 
1694
- #: methods/webdav.php:63 methods/sftp.php:63
1695
  msgid "follow this link to get it"
1696
  msgstr "följ denna länk för att skaffa det"
1697
 
1698
- #: methods/googledrive.php:116
1699
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
1700
  msgstr "Ingen refresh token mottogs från Google. Det betyder oftast att du matat in din client-hemlighet fel, eller att du inte har återautentiserat (nedan) sedan du korrigerade den. Markera den igen, följ sedan länken för att autentisera igen. Slutligen, om det inte fungerar, använd expert-läget för att rensa alla dina inställningar, skapa en ny Google client ID/hemlighet och börja om igen."
1701
 
1702
- #: methods/googledrive.php:125
1703
  msgid "Authorization failed"
1704
  msgstr "Godkännande misslyckades"
1705
 
1706
- #: methods/googledrive.php:146
1707
  msgid "Your %s quota usage: %s %% used, %s available"
1708
  msgstr "Din %s tilldelningsanvändning: %s %% använt, %s tillgängligt"
1709
 
1710
- #: methods/googledrive.php:152 methods/cloudfiles.php:498 methods/s3.php:509
1711
  msgid "Success"
1712
  msgstr "Framgång"
1713
 
1714
- #: methods/googledrive.php:152
1715
  msgid "you have authenticated your %s account."
1716
  msgstr "du har autentiserat ditt %s-konto."
1717
 
1718
- #: methods/googledrive.php:168 methods/googledrive.php:232
1719
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
1720
  msgstr "Har ännu inte fått något åtkomstbevis från Google - du måste godkänna och återgodkänna din anslutning till Google Drive."
1721
 
1722
- #: methods/googledrive.php:169 methods/googledrive.php:363
1723
  msgid "Have not yet obtained an access token from Google (has the user authorised?)"
1724
  msgstr "Har ännu inte fått något åtkomstbevis från Google (har användaren godkänt?)"
1725
 
1726
- #: restorer.php:161
1727
  msgid "wp-config.php from backup: restoring (as per user's request)"
1728
  msgstr "wp-config.php från backup: återställer (enligt användarens önskemål)"
1729
 
1730
- #: restorer.php:605
1731
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
1732
  msgstr "Varning: PHP safe_mode är aktivt på din server. Det betyder ökad risk för timeouts. Om sådana inträffar kommer du att behöva manuellt återställa filen via phpMyAdmin eller annan metod."
1733
 
1734
- #: restorer.php:610
1735
  msgid "Failed to find database file"
1736
  msgstr "Hittade inte databasfil"
1737
 
1738
- #: restorer.php:616
1739
  msgid "Failed to open database file"
1740
  msgstr "Kunde inte öppna databasfil"
1741
 
1742
- #: restorer.php:640
1743
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
1744
  msgstr "Databas-åtkomst: Direkt MySQL-åtkomst är inte tillgängligt, så vi faller tillbaka till wpdb (detta kommer att vara betydligt långsammare)"
1745
 
1746
- #: restorer.php:715 admin.php:896
1747
  msgid "Backup of:"
1748
  msgstr "Backup av:"
1749
 
1750
- #: restorer.php:719 restorer.php:789
1751
  msgid "Old table prefix:"
1752
  msgstr "Prefix för gamla tabeller:"
1753
 
1754
- #: admin.php:2663
1755
  msgid "Archive is expected to be size:"
1756
  msgstr "Arkivet förväntas ha storleken:"
1757
 
1758
- #: admin.php:2671
1759
  msgid "The backup records do not contain information about the proper size of this file."
1760
  msgstr "Backupnoteringarna innehåller ingen information om den rätta storleken på den här filen."
1761
 
1762
- #: admin.php:2718
1763
  msgid "Error message"
1764
  msgstr "Felmeddelande"
1765
 
1766
- #: admin.php:2674 admin.php:2675
1767
  msgid "Could not find one of the files for restoration"
1768
  msgstr "Kunde inte hitta en av filerna för återskapning"
1769
 
@@ -1823,989 +2086,961 @@ msgstr "Misslyckades med att ta bort arbetskatalog efter återställning."
1823
  msgid "Failed to create a temporary directory"
1824
  msgstr "Misslyckades skapa tillfällig katalog"
1825
 
1826
- #: restorer.php:99
1827
  msgid "Failed to write out the decrypted database to the filesystem"
1828
  msgstr "Misslyckades med att skriva ut den avkrypterade databasen till filsystemet"
1829
 
1830
- #: restorer.php:157
1831
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
1832
  msgstr "wp-config.php från backup: återskapas som wp-config-backup.php"
1833
 
1834
- #: admin.php:2210
1835
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
1836
  msgstr "Väljer du detta alternativ minskar säkerheten då du stoppar UpdraftPlus helt från att använda SSL för autentisering och krypterad transport, där det är möjligt. Notera att vissa molnlagringstjänster inte tillåter detta (exempelvis Dropbox), så för dessa tjänster kommer denna inställning inte att ha någon effekt."
1837
 
1838
- #: admin.php:2234
1839
  msgid "Save Changes"
1840
  msgstr "Spara Ändringar"
1841
 
1842
- #: methods/googledrive.php:452 methods/cloudfiles.php:394 methods/s3.php:388
1843
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
1844
  msgstr "Din webbservers PHP-installation saknar en nödvändig modul (%s). Vänligen kontakta ditt webbhotells support."
1845
 
1846
- #: admin.php:2268
1847
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
1848
  msgstr "Din webbservers PHP/Curl-installation stöder inte https-åtkomst. Kommunikationen med %s kommer att vara okrypterad. Be ditt webbhotell installera Curl/SSL för att kunna kryptera (via ett insticksprogram)."
1849
 
1850
- #: admin.php:2270
1851
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
1852
  msgstr "Din webbservers PHP/Curl-installation stöder inte https-åtkomst. Vi kan inte komma åt %s utan detta stöd. Vänligen kontakta ditt webbhotells support. %s <strong>kräver</strong> Curl+https. Vänligen skicka ingen supportbegäran; det finns inget alternativ."
1853
 
1854
- #: admin.php:2273
1855
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
1856
  msgstr "Goda nyheter: Din webbplats kommunikation med %s kan krypteras. Om du ser några fel som rör krypteringen, titta i 'Expert-Inställningar' för mer hjälp."
1857
 
1858
- #: admin.php:2346
1859
  msgid "Delete this backup set"
1860
  msgstr "Ta bort detta backup-set"
1861
 
1862
- #: admin.php:2401
1863
  msgid "Press here to download"
1864
  msgstr "Tryck här för att ladda ner"
1865
 
1866
- #: admin.php:2374 admin.php:2429
1867
  msgid "(No %s)"
1868
  msgstr "(Inga %s)"
1869
 
1870
- #: admin.php:2437
1871
  msgid "Backup Log"
1872
  msgstr "Backup-Logg"
1873
 
1874
- #: admin.php:2457
1875
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
1876
  msgstr "Efter att ha tryckt på denna knapp kommer du att ges möjlighet att välja vilka komponenter du önskar återställa"
1877
 
1878
- #: admin.php:2548
1879
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
1880
  msgstr "Denna backup existerar inte i backup-historiken - återställning avbryts. Tidsstämpel:"
1881
 
1882
- #: admin.php:2582
1883
  msgid "UpdraftPlus Restoration: Progress"
1884
  msgstr "UpdraftPlus Återställning: Pågår"
1885
 
1886
- #: admin.php:2608
1887
  msgid "ABORT: Could not find the information on which entities to restore."
1888
  msgstr "AVBRYT: Kunde inte hitta information om vilka enheter som ska återställas."
1889
 
1890
- #: admin.php:2609
1891
  msgid "If making a request for support, please include this information:"
1892
  msgstr "Om du begär support, vänligen inkludera denna information:"
1893
 
1894
- #: admin.php:2204
1895
  msgid "Do not verify SSL certificates"
1896
  msgstr "Verifiera inte SSL-certifikat"
1897
 
1898
- #: admin.php:2205
1899
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
1900
  msgstr "Väljer du detta alternativ minskar du säkerheten genom att du stoppar UpdraftPlus från att verifiera identiteten hos krypterade webbplatser som den ansluter till (exempelvis Dropbox, Google Drive). Det betyder att UpdraftPlus bara kommer att använda SSL för kryptering av trafik, inte för autentisering."
1901
 
1902
- #: admin.php:2205
1903
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
1904
  msgstr "Notera att inte alla molnbackuptjänster nödvändigtvis använder SSL-autentisering."
1905
 
1906
- #: admin.php:2209
1907
  msgid "Disable SSL entirely where possible"
1908
  msgstr "Stäng av SSL helt där det är möjligt"
1909
 
1910
- #: admin.php:2156
1911
  msgid "Expert settings"
1912
  msgstr "Expert-Inställningar"
1913
 
1914
- #: admin.php:2157
1915
  msgid "Show expert settings"
1916
  msgstr "Visa expert-inställningar"
1917
 
1918
- #: admin.php:2157
1919
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
1920
  msgstr "klicka denna för att visa några ytterligare alternativ; men låt bli såvida du inte har problem eller är nyfiken."
1921
 
1922
- #: admin.php:2172
1923
  msgid "Delete local backup"
1924
  msgstr "Ta bort lokal backup"
1925
 
1926
- #: admin.php:2177
1927
  msgid "Backup directory"
1928
  msgstr "Backup-katalog"
1929
 
1930
- #: admin.php:2184
1931
  msgid "Backup directory specified is writable, which is good."
1932
  msgstr "Backup-katalogen som specificerades är skrivbar, vilket är bra."
1933
 
1934
- #: admin.php:2192
1935
  msgid "Click here to attempt to create the directory and set the permissions"
1936
  msgstr "Klicka här för att försöka skapa katalogen och ställa in behörigheterna"
1937
 
1938
- #: admin.php:2192
1939
  msgid "or, to reset this option"
1940
  msgstr "eller, för att nollställa detta alternativ"
1941
 
1942
- #: admin.php:2192
1943
  msgid "click here"
1944
  msgstr "klicka här"
1945
 
1946
- #: admin.php:2192
1947
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
1948
  msgstr "Om detta inte lyckas kontrollera behörigheterna på din server eller ändra den till en annan katalog som är skrivbar för din webbserverprocess."
1949
 
1950
- #: admin.php:2199
1951
  msgid "Use the server's SSL certificates"
1952
  msgstr "Använd serverns SSL-certifikat"
1953
 
1954
- #: admin.php:2200
1955
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
1956
  msgstr "Vanligtvis använder UpdraftPlus sin egen uppsättning SSL-certifikat för att verifiera identiteten hos fjärrwebbplatser (för att säkerställa att den talar med det verkliga Dropbox, Amazon S3 osv och inte en hackare). Vi håller dessa uppdaterade. Men om du råkar ut för ett SSL-fel, då kan detta alternativ (som får UpdraftPlus att använda din webbservers uppsättning istället) kanske hjälpa."
1957
 
1958
- #: admin.php:2053
1959
  msgid "Use WordShell for automatic backup, version control and patching"
1960
  msgstr "Använd WordShell för automatisk backup, versionskontroll och patchning."
1961
 
1962
- #: admin.php:2057
1963
  msgid "Email"
1964
  msgstr "Epost"
1965
 
1966
- #: admin.php:2058
1967
  msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
1968
  msgstr "Ange en adress här för att få en rapport (och hela backupen, om du väljer det) skickad till."
1969
 
1970
- #: admin.php:2062
1971
  msgid "Database encryption phrase"
1972
  msgstr "Fras för databaskryptering"
1973
 
1974
- #: admin.php:2069
1975
  msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
1976
  msgstr "Om du matar in text här så används den för att kryptera backuper (Rijndael). <strong>Gör en separat notering av det och slarva inte bort den, eller så <em>kommer</em> alla dina backuper att bli oanvändbara.</strong> För närvarande är bara databasfilen krypterad. Detta är också den nyckel som används för att avkryptera backuper från detta administrationsgränssnitt (så om du ändrar den så kommer den automatiska avkrypteringen inte att fungera förrän då ändrar den tillbaka)."
1977
 
1978
- #: admin.php:2069
1979
  msgid "You can also decrypt a database manually here."
1980
  msgstr "Du kan också avkryptera en databas manuellt här."
1981
 
1982
- #: admin.php:2072
1983
  msgid "Manually decrypt a database backup file"
1984
  msgstr "Avkryptera en databas-backupfil manuellt"
1985
 
1986
- #: admin.php:2079
1987
  msgid "Use decryption key"
1988
  msgstr "Använd avkrypteringsnyckel"
1989
 
1990
- #: admin.php:2093
1991
  msgid "Copying Your Backup To Remote Storage"
1992
  msgstr "Kopiering av Din Backup Till Fjärrlagring"
1993
 
1994
- #: admin.php:2097
1995
  msgid "Choose your remote storage"
1996
  msgstr "Välj din fjärrlagringsplats"
1997
 
1998
- #: admin.php:2109
1999
  msgid "None"
2000
  msgstr "Ingen"
2001
 
2002
- #: admin.php:115
2003
  msgid "Cancel"
2004
  msgstr "Avbryt"
2005
 
2006
- #: admin.php:101
2007
  msgid "Requesting start of backup..."
2008
  msgstr "Begär start av backup..."
2009
 
2010
- #: admin.php:2149
2011
  msgid "Advanced / Debugging Settings"
2012
  msgstr "Avancerat / Avbuggningsinställningar"
2013
 
2014
- #: admin.php:2152
2015
  msgid "Debug mode"
2016
  msgstr "Avbuggningsläge"
2017
 
2018
- #: admin.php:2153
2019
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
2020
  msgstr "Markera denna för att få mer information och epost om backup-processen - användbart om något går fel. Du <strong>måste</strong> skicka oss denna logg om du skickar in en felrapport."
2021
 
2022
- #: admin.php:2053
2023
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
2024
  msgstr "Ovanstående kataloger är allt, förutom WordPress-kärnan, som du kan ladda ner ånyo från WordPress.org."
2025
 
2026
- #: admin.php:2053
2027
- msgid "Or, get the \"More Files\" add-on from our shop."
2028
- msgstr "Eller, skaffa \"Fler Filer\"-insticksprogrammet från vår shop."
2029
-
2030
- #: admin.php:1984
2031
  msgid "Daily"
2032
  msgstr "Dagligen"
2033
 
2034
- #: admin.php:1984
2035
  msgid "Weekly"
2036
  msgstr "Varje vecka"
2037
 
2038
- #: admin.php:1984
2039
  msgid "Fortnightly"
2040
  msgstr "Var 14:e dag"
2041
 
2042
- #: admin.php:1984
2043
  msgid "Monthly"
2044
  msgstr "Månatligen"
2045
 
2046
- #: admin.php:1993 admin.php:2011
2047
  msgid "and retain this many backups"
2048
  msgstr "och behåll så här många backuper"
2049
 
2050
- #: admin.php:2000
2051
  msgid "Database backup intervals"
2052
  msgstr "Intervaller för databas-backup"
2053
 
2054
- #: admin.php:2018
2055
  msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
2056
  msgstr "Om du vill schemalägga backuper automatiskt, välj scheman från rullgardinsmenyerna ovan. Backuper sker i enlighet med specificerade intervaller. Om de två schemana är samma, då kommer båda backuperna att ske tillsammans. OM du väljer \"manuellt\" måste du klicka \"Gör Backup Nu\"-knappen när du vill att en backup ska göras."
2057
 
2058
- #: admin.php:2019
2059
  msgid "To fix the time at which a backup should take place,"
2060
  msgstr "För att bestämma vid vilken tidpunkt en backup ska göras,"
2061
 
2062
- #: admin.php:2019
2063
  msgid "e.g. if your server is busy at day and you want to run overnight"
2064
  msgstr "exempelvis om din server är hårt belastad dagtid och du vill köra den under natten"
2065
 
2066
- #: admin.php:2019
2067
  msgid "use the \"Fix Time\" add-on"
2068
  msgstr "använd \"Fastställ Tid\"-insticksprogrammet"
2069
 
2070
- #: admin.php:2023
2071
  msgid "Include in files backup"
2072
  msgstr "Inkludera i filbackupen"
2073
 
2074
- #: admin.php:2033
2075
  msgid "Any other directories found inside wp-content"
2076
  msgstr "Varje annan katalog som hittas inuti wp-content"
2077
 
2078
- #: admin.php:2039
2079
  msgid "Exclude these:"
2080
  msgstr "Exkludera dessa:"
2081
 
2082
- #: admin.php:1632
2083
  msgid "Debug Database Backup"
2084
  msgstr "Avbugga Databas-backup"
2085
 
2086
- #: admin.php:1632
2087
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
2088
  msgstr "Detta orsakar en omedelbar databas-backup. Sidan kommer att frysas under laddning till dess att den är klar (alltså ej schemalagt). Backupen kan mycket väl råka ut för timeout; denna knapp är enbart bra till att kontrollera att backupen klarar att ta sig igenom de inledande stegen, eller för små WordPress-webbplatser..."
2089
 
2090
- #: admin.php:1638
2091
  msgid "Wipe Settings"
2092
  msgstr "Radera Inställningar"
2093
 
2094
- #: admin.php:1639
2095
  msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2096
  msgstr "Denna knapp tar bort alla UpdraftPlus-inställningar (men inte några av dina befintliga backuper från din molnlagringstjänst). Du kommer sedan behöva göra om alla inställningar igen. Du kan också göra detta innan du avaktiverar eller avinstallerar UpdraftPlus om du så önskar."
2097
 
2098
- #: admin.php:1642
2099
  msgid "Wipe All Settings"
2100
  msgstr "Radera Alla Inställningar"
2101
 
2102
- #: admin.php:1642
2103
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
2104
  msgstr "Detta raderar alla dina UpdraftPlus-inställningar - är du säker på att du vill göra detta?"
2105
 
2106
- #: admin.php:1776
2107
  msgid "show log"
2108
  msgstr "visa logg"
2109
 
2110
- #: admin.php:1776
2111
  msgid "delete schedule"
2112
  msgstr "ta bort schema"
2113
 
2114
- #: admin.php:116 admin.php:1818 admin.php:1843
2115
  msgid "Delete"
2116
  msgstr "Ta bort"
2117
 
2118
- #: admin.php:1884
2119
  msgid "The request to the filesystem to create the directory failed."
2120
  msgstr "Begäran till filsystemet att skapa katalogen misslyckades."
2121
 
2122
- #: admin.php:1898
2123
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
2124
  msgstr "Katalogen skapades, men vi var tvingade att ställa behörigheten till 777 (skrivbart för alla) för att kunna skriva till den. Du bör kontrollera med ditt webbhotell att detta inte kommer att orsaka några problem"
2125
 
2126
- #: admin.php:1902
2127
  msgid "The folder exists, but your webserver does not have permission to write to it."
2128
  msgstr "Katalogen existerar, men din webbserver har inte behörighet att skriva till den."
2129
 
2130
- #: admin.php:1902
2131
  msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
2132
  msgstr "Du kommer att behöva konsultera ditt webbhotell för att få veta hur du ställer in behörighet för ett WordPress-tillägg att skriva till katalogen."
2133
 
2134
- #: admin.php:1961
2135
  msgid "Download log file"
2136
  msgstr "Ladda ner logg-fil"
2137
 
2138
- #: admin.php:1965
2139
  msgid "No backup has been completed."
2140
  msgstr "Ingen backup har slutförts."
2141
 
2142
- #: admin.php:1981
2143
  msgid "File backup intervals"
2144
  msgstr "Intervall för fil-backuper"
2145
 
2146
- #: admin.php:1984
2147
  msgid "Manual"
2148
  msgstr "Manell"
2149
 
2150
- #: admin.php:1984
2151
  msgid "Every 4 hours"
2152
  msgstr "Var 4:e timma"
2153
 
2154
- #: admin.php:1984
2155
  msgid "Every 8 hours"
2156
  msgstr "Var 8.e timma"
2157
 
2158
- #: admin.php:1984
2159
  msgid "Every 12 hours"
2160
  msgstr "Var 12:e timma"
2161
 
2162
- #: admin.php:1554
2163
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
2164
  msgstr "För att fortsätta, tryck 'Ta Backup Nu' Titta sedan på 'Sista Logg-Meddelande'-fältet för aktivitet efter ungefär 10 sekunder. WordPress bör börja köra backupen i bakgrunden."
2165
 
2166
- #: admin.php:1556
2167
- msgid "Does nothing happen when you schedule backups?"
2168
- msgstr "Händer inget när du schemalägger backuper?"
2169
-
2170
- #: admin.php:1556
2171
  msgid "Go here for help."
2172
  msgstr "Gå hit för hjälp."
2173
 
2174
- #: admin.php:1562
2175
  msgid "Multisite"
2176
  msgstr "Multisajt"
2177
 
2178
- #: admin.php:1566
2179
  msgid "Do you need WordPress Multisite support?"
2180
  msgstr "Behöver du WordPress Multisajt-support?"
2181
 
2182
- #: admin.php:1566
2183
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
2184
  msgstr "Vänligen ta en titt på UpdraftPlus Premium, eller det fristående Multisajt-insticksprogrammet."
2185
 
2186
- #: admin.php:1571
2187
  msgid "Configure Backup Contents And Schedule"
2188
  msgstr "Konfigurera Backup-Innehåll Och Schemalägg"
2189
 
2190
- #: admin.php:1577
2191
  msgid "Debug Information And Expert Options"
2192
  msgstr "Avbuggnings-Information Och Expert-Alternativ"
2193
 
2194
- #: admin.php:1580
2195
  msgid "Web server:"
2196
  msgstr "Webbserver:"
2197
 
2198
- #: admin.php:1583
2199
  msgid "Peak memory usage"
2200
  msgstr "Högsta minnesanvändning"
2201
 
2202
- #: admin.php:1584
2203
  msgid "Current memory usage"
2204
  msgstr "Nuvarande minnesanvändning"
2205
 
2206
- #: admin.php:1585
2207
  msgid "PHP memory limit"
2208
  msgstr "PHP minnesgräns"
2209
 
2210
- #: admin.php:1586 admin.php:1588
2211
  msgid "%s version:"
2212
  msgstr "%s version:"
2213
 
2214
- #: admin.php:1591 admin.php:1593 admin.php:1600
2215
  msgid "Yes"
2216
  msgstr "Ja"
2217
 
2218
- #: admin.php:1593 admin.php:1600
2219
  msgid "No"
2220
  msgstr "Nej"
2221
 
2222
- #: admin.php:1596
2223
  msgid "PHP has support for ZipArchive::addFile:"
2224
  msgstr "PHP har stöd för ZipArchive::addFile:"
2225
 
2226
- #: admin.php:1605
2227
  msgid "Total (uncompressed) on-disk data:"
2228
  msgstr "Total (okomprimerad) data på disk:"
2229
 
2230
- #: admin.php:1606
2231
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
2232
  msgstr "Notera. Denna siffra baseras på vad som exkluderades eller inte senast du sparade alternativen."
2233
 
2234
- #: admin.php:1613
2235
  msgid "count"
2236
  msgstr "räkna"
2237
 
2238
- #: admin.php:1619
2239
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
2240
  msgstr "Knapparna nedan kommer omedelbart att utföra en backup-körning, oberoende av WordPress egen schemaläggare. Om dessa fungerar medan dina schemalagda backuper och \"Ta Backup Nu\"-knappen gör absolut ingenting (alltså inte ens producerar en logg-fil), då betyder det att din schemaläggare är trasig. Du bör avaktivera alla andra tillägg, och försöka \"Ta Backup Nu\"-knappen. Om det inte fungerar, kontakta ditt webbhotell och fråga dem om de har avaktiverat wp-cron. Om det fungerar, så återaktivera dina andra tillägg ett efter ett för att hitta vilket som orsakar problemet och rapportera felet till dem."
2241
 
2242
- #: admin.php:1627
2243
  msgid "Debug Full Backup"
2244
  msgstr "Avbugga Hel Backup"
2245
 
2246
- #: admin.php:1627
2247
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
2248
  msgstr "Detta orsakar en omedelbar backup. Sidan kommer att frysa under laddning tills den är klar (alltså ej schemalagt)."
2249
 
2250
- #: admin.php:1426
2251
  msgid "UpdraftPlus - Upload backup files"
2252
  msgstr "UpdraftPlus - Ladda upp backup-filer"
2253
 
2254
- #: admin.php:1427
2255
  msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
2256
  msgstr "Ladda upp filer till UpdraftPlus. Använd denna för att importera backuper gjorda på en annan WordPress-installation"
2257
 
2258
- #: admin.php:1431
2259
- msgid "Drop backup zips here"
2260
- msgstr "Släpp backup-zipfiler här"
2261
-
2262
- #: admin.php:1432 admin.php:2077
2263
  msgid "or"
2264
  msgstr "eller"
2265
 
2266
- #: admin.php:86
2267
  msgid "calculating..."
2268
  msgstr "beräknar..."
2269
 
2270
- #: restorer.php:561 admin.php:94 admin.php:2668 admin.php:2686
2271
  msgid "Error:"
2272
  msgstr "Fel:"
2273
 
2274
- #: admin.php:96
2275
  msgid "You should:"
2276
  msgstr "Du bör:"
2277
 
2278
- #: admin.php:100
2279
  msgid "Download error: the server sent us a response which we did not understand."
2280
  msgstr "Nedladdningsfel: servern skickade oss ett svar som vi inte kunde förstå."
2281
 
2282
- #: admin.php:1452
2283
  msgid "Delete backup set"
2284
  msgstr "Ta bort backup-set"
2285
 
2286
- #: admin.php:1455
2287
  msgid "Are you sure that you wish to delete this backup set?"
2288
  msgstr "Är du säker på att du vill ta bort detta backup-set?"
2289
 
2290
- #: admin.php:1470
2291
  msgid "Restore backup"
2292
  msgstr "Återställ backup"
2293
 
2294
- #: admin.php:1471
2295
  msgid "Restore backup from"
2296
  msgstr "Återställ backup från"
2297
 
2298
- #: admin.php:1483
2299
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
2300
  msgstr "Återställning ersätter denna webbplats teman, tillägg, uppladdningar, databas och/eller andra innehållskataloger (i enlighet med vad detta backup-set innehåller, och baserat på dina val)."
2301
 
2302
- #: admin.php:1483
2303
  msgid "Choose the components to restore"
2304
  msgstr "Välj komponenter att återställa"
2305
 
2306
- #: admin.php:1492
2307
  msgid "Your web server has PHP's so-called safe_mode active."
2308
  msgstr "Din webbserver har PHP:s så kallade safe_mode aktivt."
2309
 
2310
- #: admin.php:1492
2311
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
2312
  msgstr "Detta gör att time-outs blir mer sannolika. Du rekommenderas att stänga av safe_mode, eller att bara återställa en entitet åt gången, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">eller att återställa manuellt</a>."
2313
 
2314
- #: admin.php:1505
2315
  msgid "The following entity cannot be restored automatically: \"%s\"."
2316
  msgstr "Följande entitet kunde inte återställas automatiskt: \"%s\"."
2317
 
2318
- #: admin.php:1505
2319
  msgid "You will need to restore it manually."
2320
  msgstr "Du kommer att behöva återställa den manuellt."
2321
 
2322
- #: admin.php:1512
2323
  msgid "%s restoration options:"
2324
  msgstr "%s återställningsalternativ:"
2325
 
2326
- #: admin.php:1520
2327
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
2328
  msgstr "Du kan söka och ersätta din databas (för migrering av en webbplats till en ny plats/URL) med Migrator-insticksprogrammet - följ denna länk för mer information"
2329
 
2330
- #: admin.php:1531
2331
  msgid "Do read this helpful article of useful things to know before restoring."
2332
  msgstr "Läs denna hjälpsamma artikel om användbara saker att veta innan du börjar återställa."
2333
 
2334
- #: admin.php:1553
2335
  msgid "Perform a one-time backup"
2336
  msgstr "Utför en engångs-backup"
2337
 
2338
- #: admin.php:1354
2339
  msgid "Time now"
2340
  msgstr "Tid nu"
2341
 
2342
- #: admin.php:114 admin.php:1364
2343
  msgid "Backup Now"
2344
  msgstr "Ta Backup Nu"
2345
 
2346
- #: admin.php:118 admin.php:1371 admin.php:2457
2347
  msgid "Restore"
2348
  msgstr "Återställ"
2349
 
2350
- #: admin.php:1382
2351
  msgid "Last log message"
2352
  msgstr "Senaste logg-meddelandet"
2353
 
2354
- #: admin.php:1384
2355
  msgid "(Nothing yet logged)"
2356
  msgstr "(Inget loggat ännu)"
2357
 
2358
- #: admin.php:1385
2359
  msgid "Download most recently modified log file"
2360
  msgstr "Ladda ner den senast modifierade loggfilen"
2361
 
2362
- #: admin.php:1396
2363
  msgid "Backups, logs & restoring"
2364
  msgstr "Backuper, loggar & återställning"
2365
 
2366
- #: admin.php:1397
2367
  msgid "Press to see available backups"
2368
  msgstr "Tryck för att se tillgängliga backuper"
2369
 
2370
- #: admin.php:698 admin.php:752 admin.php:1397
2371
  msgid "%d set(s) available"
2372
  msgstr "%d set tillgängliga"
2373
 
2374
- #: admin.php:1413
2375
  msgid "Downloading and restoring"
2376
  msgstr "Nedladdning och Återställning"
2377
 
2378
- #: admin.php:1418
2379
  msgid "Downloading"
2380
  msgstr "Nedleddning"
2381
 
2382
- #: admin.php:1418
2383
  msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
2384
  msgstr "När du trycker en knapp för Databas/Tillägg/Teman/Uppladdningar/Annat kommer UpdraftPlus försöka hämta tillbaka backup-filen från fjärrlagringen (om sådan finns - till exempel Amazon S3, Dropbox, Google Drive, FTP) till din webbserver. Du kommer då att kunna ladda ner den till din dator. Om hämtningen från fjärrlagringsplatsen slutar framskrida (vänta 30 sekunder för att vara säker), tryck då igen för att återuppta. Kom ihåg att du kan också besöka lagringstjänstföretagets webbsida direkt."
2385
 
2386
- #: admin.php:1419
2387
- msgid "Restoring"
2388
- msgstr "Återställning"
2389
-
2390
- #: admin.php:1419
2391
- msgid "Press the button for the backup you wish to restore. If your site is large and you are using remote storage, then you should first click on each entity in order to retrieve it back to the webserver. This will prevent time-outs from occuring during the restore process itself."
2392
- msgstr "Tryck på knappen för den backup du vill återställa. Om din webbplats är stor och du använder fjärrlagring bör du först klicka på varje entitet för att hämta tillbaka den till webbservern. Detta förhindrar time-outs från att inträffa under resten av själva återställningsprocessen."
2393
-
2394
- #: admin.php:1419
2395
  msgid "More tasks:"
2396
  msgstr "Fler uppgifter:"
2397
 
2398
- #: admin.php:1419
2399
  msgid "upload backup files"
2400
  msgstr "ladda upp backup-filer"
2401
 
2402
- #: admin.php:1419
2403
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
2404
  msgstr "Tryck här för att titta in i din UpdraftPlus-katalog (på utrymmet i ditt webbhotell) för att se om det finns nya backup-set som du laddat upp. Var denna katalog finns ställs in med expert-inställningar nedan."
2405
 
2406
- #: admin.php:1419
2407
  msgid "rescan folder for new backup sets"
2408
  msgstr "Scanna om en folder efter nya backup-set"
2409
 
2410
- #: admin.php:1420
2411
  msgid "Opera web browser"
2412
  msgstr "Webbläsaren Opera"
2413
 
2414
- #: admin.php:1420
2415
  msgid "If you are using this, then turn Turbo/Road mode off."
2416
  msgstr "Om du använder denna, stäng då av Turbo/Road-läget."
2417
 
2418
- #: admin.php:1422
2419
  msgid "Google Drive"
2420
  msgstr "Google Drive"
2421
 
2422
- #: admin.php:1422
2423
  msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
2424
  msgstr "Google ändrade sin behörighetsinställning i April 2013. För att ladda ner eller återställa från Google Drive, <strong>måste</strong> du först återautentisera (med länken i Google Drives konfigureringssektion)."
2425
 
2426
- #: admin.php:1424
2427
  msgid "This is a count of the contents of your Updraft directory"
2428
  msgstr "Detta är en räkning av innehållet i din Updraft-katalog"
2429
 
2430
- #: admin.php:1424
2431
  msgid "Web-server disk space in use by UpdraftPlus"
2432
  msgstr "Utrymme på webbservern som används av UpdraftPlus"
2433
 
2434
- #: admin.php:1424
2435
  msgid "refresh"
2436
  msgstr "uppdatera"
2437
 
2438
- #: admin.php:1264
2439
  msgid "By UpdraftPlus.Com"
2440
  msgstr "Av UpdraftPlus.Com"
2441
 
2442
- #: admin.php:1264
2443
  msgid "Lead developer's homepage"
2444
  msgstr "Huvudutvecklarens hemsida"
2445
 
2446
- #: admin.php:1264
2447
  msgid "Donate"
2448
  msgstr "Donera"
2449
 
2450
- #: admin.php:1264
2451
  msgid "Version"
2452
  msgstr "Version"
2453
 
2454
- #: admin.php:1274
2455
  msgid "Your backup has been restored."
2456
  msgstr "Din backup har återskapats."
2457
 
2458
- #: admin.php:1274
2459
- msgid "Your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
2460
- msgstr "Dina gamla kataloger (teman, uppladdningar, tillägg, och så vidare) har behållits med tillägget \"-old\" till sina namn. Ta bort dem när du är övertygad om att backupen fungerar som den ska."
2461
-
2462
- #: admin.php:1280
2463
  msgid "Old directories successfully deleted."
2464
  msgstr "Gamla kataloger togs framgångsrikt bort."
2465
 
2466
- #: admin.php:1283
2467
  msgid "Current limit is:"
2468
  msgstr "Nuvarande gräns är:"
2469
 
2470
- #: admin.php:1291
2471
  msgid "Delete Old Directories"
2472
  msgstr "Ta bort Gamla Kataloger"
2473
 
2474
- #: admin.php:1303
2475
  msgid "Existing Schedule And Backups"
2476
  msgstr "Befintligt Schema Och Backuper"
2477
 
2478
- #: admin.php:1307
2479
  msgid "JavaScript warning"
2480
  msgstr "JavaScript-varning"
2481
 
2482
- #: admin.php:1308
2483
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
2484
  msgstr "Detta administrationsgränssnitt använder JavaScipt i stor utsträckning. Du måste antingen aktivera det i din webbläsare eller använda en annan JavaScript-kapabel webbläsare."
2485
 
2486
- #: admin.php:1321 admin.php:1334
2487
  msgid "Nothing currently scheduled"
2488
  msgstr "Inget schemalagt för närvarande"
2489
 
2490
- #: admin.php:1326
2491
  msgid "At the same time as the files backup"
2492
  msgstr "Samtidigt som filbackupen"
2493
 
2494
- #: admin.php:1350
2495
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
2496
  msgstr "Alla tider som visas i denna sektion använder WordPress konfigurerade tidszon, som du ställer in i Inställningar -> Allmänt"
2497
 
2498
- #: admin.php:1350
2499
  msgid "Next scheduled backups"
2500
  msgstr "Nästa schemalagda backuper"
2501
 
2502
- #: admin.php:1352
2503
  msgid "Files"
2504
  msgstr "Filer"
2505
 
2506
- #: admin.php:531 admin.php:1353 admin.php:1509 admin.php:1512 admin.php:2361
2507
- #: admin.php:2363 admin.php:2709
2508
  msgid "Database"
2509
  msgstr "Databas"
2510
 
2511
- #: admin.php:300
2512
  msgid "Your website is hosted using the %s web server."
2513
  msgstr "Din webbplats körs på %s-webbservern."
2514
 
2515
- #: admin.php:300
2516
  msgid "Please consult this FAQ if you have problems backing up."
2517
  msgstr "Vänligen konsultera denna FAQ om du har problem med att ta backuper."
2518
 
2519
- #: admin.php:313 admin.php:317
2520
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
2521
  msgstr "Klicka här för att autentisera ditt %s-konto (du kommer inte att kunna göra backup till %s utan att göra det)."
2522
 
2523
- #: admin.php:493 admin.php:496
2524
  msgid "Nothing yet logged"
2525
  msgstr "Inget loggat ännu."
2526
 
2527
- #: admin.php:705
2528
  msgid "Schedule backup"
2529
  msgstr "Schemalägg backup"
2530
 
2531
- #: admin.php:708
2532
  msgid "Failed."
2533
  msgstr "Misslyckades."
2534
 
2535
- #: admin.php:710
2536
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
2537
  msgstr "OK. Du bör snart se aktivitet i \"Senaste Logg-meddelande\"-fältet ovan."
2538
 
2539
- #: admin.php:710
2540
  msgid "Nothing happening? Follow this link for help."
2541
  msgstr "Händer det inget? Följ denna länk för hjälp."
2542
 
2543
- #: admin.php:726
2544
  msgid "Job deleted"
2545
  msgstr "Jobb borttaget"
2546
 
2547
- #: admin.php:733
2548
  msgid "Could not find that job - perhaps it has already finished?"
2549
  msgstr "Kunde inte hitta detta jobb - kanske är det redan klart?"
2550
 
2551
- #: restorer.php:976 restorer.php:1023 admin.php:744
2552
  msgid "Error"
2553
  msgstr "Fel"
2554
 
2555
- #: admin.php:763
2556
  msgid "Download failed"
2557
  msgstr "Nedladdning misslyckades"
2558
 
2559
- #: admin.php:95 admin.php:781
2560
  msgid "File ready."
2561
  msgstr "Filen klar."
2562
 
2563
- #: admin.php:789
2564
  msgid "Download in progress"
2565
  msgstr "Nedladdning pågår"
2566
 
2567
- #: admin.php:792
2568
  msgid "No local copy present."
2569
  msgstr "Ingen lokal kopia närvarande."
2570
 
2571
- #: admin.php:1074
2572
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2573
  msgstr "Felaktigt filnamnsformat - detta ser inte ut som en fil skapad av UpdraftPlus"
2574
 
2575
- #: admin.php:1161
2576
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2577
  msgstr "Felaktigt filnamnsformat - detta ser inte ut som en krypterad databasfil skapad av UpdraftPlus"
2578
 
2579
- #: admin.php:1190
2580
  msgid "Restore successful!"
2581
  msgstr "Återställningen lyckades!"
2582
 
2583
- #: admin.php:1191 admin.php:1219 admin.php:1238
2584
  msgid "Actions"
2585
  msgstr "Aktiviteter"
2586
 
2587
- #: admin.php:1191 admin.php:1196 admin.php:1219 admin.php:1238
2588
  msgid "Return to UpdraftPlus Configuration"
2589
  msgstr "Återvänd till UpdraftPlus-konfiguration"
2590
 
2591
- #: admin.php:1208
2592
  msgid "Remove old directories"
2593
  msgstr "Ta bort gamla kataloger"
2594
 
2595
- #: admin.php:1214
2596
  msgid "Old directories successfully removed."
2597
  msgstr "Gamla kataloger togs bort med framgång."
2598
 
2599
- #: admin.php:1217
2600
  msgid "Old directory removal failed for some reason. You may want to do this manually."
2601
  msgstr "Borttagning av gamla kataloger misslyckades av någon anledning. Du kan vilja göra detta manuellt."
2602
 
2603
- #: admin.php:1229
2604
  msgid "Backup directory could not be created"
2605
  msgstr "Backup-katalog kunde inte skapas"
2606
 
2607
- #: admin.php:1236
2608
  msgid "Backup directory successfully created."
2609
  msgstr "Backup-katalog skapades framgångsrikt."
2610
 
2611
- #: admin.php:1257
2612
  msgid "Your settings have been wiped."
2613
  msgstr "Dina inställningar har raderats."
2614
 
2615
- #: updraftplus.php:1767 updraftplus.php:1773
2616
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
2617
  msgstr "Vänligen hjälp UpdraftPlus genom att ge ett positivt omdöme på wordpress.org"
2618
 
2619
- #: updraftplus.php:1780
2620
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
2621
  msgstr "Behöver du ännu fler funktioner och support? Ta en titt på UpdraftPlus Premium"
2622
 
2623
- #: updraftplus.php:1790
2624
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
2625
  msgstr "Ta en titt på UpdraftPlus.Com för hjälp, insticksprogram och support"
2626
 
2627
- #: updraftplus.php:1793
2628
  msgid "Want to say thank-you for UpdraftPlus?"
2629
  msgstr "Vill du säga tack för UpdraftPlus?"
2630
 
2631
- #: updraftplus.php:1793
2632
  msgid "Please buy our very cheap 'no adverts' add-on."
2633
  msgstr "Köp gärna vårt billiga 'inga annonser'-insticksprogram."
2634
 
2635
- #: backup.php:1028
2636
  msgid "Infinite recursion: consult your log for more information"
2637
  msgstr "Oändlig upprepning. konsultera din logg för mer information"
2638
 
2639
- #: backup.php:131
2640
  msgid "Could not create %s zip. Consult the log file for more information."
2641
  msgstr "Kunde inte skapa %s-zip. Konsultera loggfilen för mer information."
2642
 
2643
- #: admin.php:159 admin.php:181
2644
  msgid "Allowed Files"
2645
  msgstr "Tillåtna Filer"
2646
 
2647
- #: admin.php:244
2648
  msgid "Settings"
2649
  msgstr "Inställningar"
2650
 
2651
- #: admin.php:248
2652
  msgid "Add-Ons / Pro Support"
2653
  msgstr "Insticksprogram / Pro Support"
2654
 
2655
- #: admin.php:288 admin.php:292 admin.php:296 admin.php:300 admin.php:309
2656
- #: admin.php:1415 admin.php:2261 admin.php:2268 admin.php:2270
2657
  msgid "Warning"
2658
  msgstr "Varning"
2659
 
2660
- #: admin.php:292
2661
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2662
  msgstr "Du har mindre än %s ledigt diskutrymme på disken som UpdraftPlus konfigurerats att använda för att skapa backuper. UpdraftPlus kan få slut på utrymme. Kontakta ditt webbhotell för att lösa detta problem."
2663
 
2664
- #: admin.php:296
2665
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2666
  msgstr "UpdraftPlus stöder inte officiellt versioner av WordPress före %s. Det kan fungera för dig, men om det inte gör det, var då medveten om att ingen support är tillgänglig förrän du uppgraderar WordPress."
2667
 
2668
- #: backup.php:388
2669
  msgid "Backed up"
2670
  msgstr "Backade upp"
2671
 
2672
- #: backup.php:388
2673
  msgid "WordPress backup is complete"
2674
  msgstr "WordPress-backup är klar"
2675
 
2676
- #: backup.php:388
2677
  msgid "Backup contains"
2678
  msgstr "Backupen innehåller"
2679
 
2680
- #: backup.php:388
2681
  msgid "Latest status"
2682
  msgstr "Senaste status"
2683
 
2684
- #: backup.php:459
2685
  msgid "Backup directory (%s) is not writable, or does not exist."
2686
  msgstr "Backup-katalog (%s) är inte skrivbar, eller existerar inte."
2687
 
2688
- #: updraftplus.php:1500
2689
  msgid "Could not read the directory"
2690
  msgstr "Kunde inte läsa katalogen"
2691
 
2692
- #: updraftplus.php:1517
2693
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
2694
  msgstr "Kunde inte spara backup-historik eftersom vi inte har någon backup-matris. Backupen misslyckades troligen."
2695
 
2696
- #: backup.php:961
2697
  msgid "Could not open the backup file for writing"
2698
  msgstr "Kunde inte öppna backupfilen för skrivning"
2699
 
2700
- #: backup.php:995
2701
  msgid "Generated: %s"
2702
  msgstr "Genererade: %s"
2703
 
2704
- #: backup.php:996
2705
  msgid "Hostname: %s"
2706
  msgstr "Värdnamn: %s"
2707
 
2708
- #: backup.php:997
2709
  msgid "Database: %s"
2710
  msgstr "Databas: %s"
2711
 
2712
- #: backup.php:691
2713
  msgid "Table: %s"
2714
  msgstr "Tabell: %s"
2715
 
2716
- #: backup.php:695
2717
- msgid "Skipping non-WP table: %s"
2718
- msgstr "Hoppar över icke-WP-tabeller: %s"
2719
-
2720
- #: backup.php:789
2721
  msgid "Delete any existing table %s"
2722
  msgstr "Ta bort eventuell befintlig tabell %s"
2723
 
2724
- #: backup.php:795
2725
  msgid "Table structure of table %s"
2726
  msgstr "Tabellstruktur i tabell %s"
2727
 
2728
- #: backup.php:799
2729
  msgid "Error with SHOW CREATE TABLE for %s."
2730
  msgstr "Fel med SHOW CREATE TABLE för %s."
2731
 
2732
- #: backup.php:899
2733
  msgid "End of data contents of table %s"
2734
  msgstr "Slut på datainnehåll i tabell %s"
2735
 
2736
- #: updraftplus.php:1683 restorer.php:87 admin.php:837
2737
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
2738
  msgstr "Avkryptering misslyckades. Databasfilen är krypterad, men du har inte angett någon krypteringsnyckel."
2739
 
2740
- #: updraftplus.php:1696 restorer.php:102 admin.php:855
2741
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
2742
  msgstr "Avkryptering misslyckades. Den mest troliga anledningen är att du använt fel nyckel."
2743
 
2744
- #: updraftplus.php:1696
2745
  msgid "The decryption key used:"
2746
  msgstr "Avkrypteringsnyckeln som användes:"
2747
 
2748
- #: updraftplus.php:1714
2749
  msgid "File not found"
2750
  msgstr "Filen hittades ej"
2751
 
2752
- #: updraftplus.php:1765
2753
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
2754
  msgstr "Kan du översätta? Vill du förbättra UpdraftPlus för de som talar ditt språk?"
2755
 
2756
- #: updraftplus.php:1767 updraftplus.php:1773
2757
  msgid "Like UpdraftPlus and can spare one minute?"
2758
  msgstr "Gillar du UpdraftPlus och kan avvara en minut?"
2759
 
2760
- #: updraftplus.php:776
2761
  msgid "Themes"
2762
  msgstr "Teman"
2763
 
2764
- #: updraftplus.php:777
2765
  msgid "Uploads"
2766
  msgstr "Uppladdningar"
2767
 
2768
- #: updraftplus.php:792
2769
  msgid "Others"
2770
  msgstr "Annat"
2771
 
2772
- #: updraftplus.php:1123
2773
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
2774
  msgstr "Kunde inte skapa filer i backup-katalogen. Backup avbröts - kontrollera dina UpdraftPlus-inställningar."
2775
 
2776
- #: backup.php:933
2777
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
2778
  msgstr "Krypteringsfel uppstod vid kryptering av databasen. Krypteringen avbröts."
2779
 
2780
- #: updraftplus.php:1228
2781
  msgid "The backup apparently succeeded and is now complete"
2782
  msgstr "Backupen lyckades uppenbarligen och är nu klar"
2783
 
2784
- #: updraftplus.php:1241
2785
  msgid "The backup attempt has finished, apparently unsuccessfully"
2786
  msgstr "Backup-försöket har avslutats, uppenbarligen utan framgång"
2787
 
2788
- #: options.php:26
2789
  msgid "UpdraftPlus Backups"
2790
  msgstr "UpdraftPlus-backuper"
2791
 
2792
- #: updraftplus.php:372 updraftplus.php:377 updraftplus.php:382 admin.php:313
2793
- #: admin.php:317
2794
  msgid "UpdraftPlus notice:"
2795
  msgstr "UpdraftPlus-meddelande:"
2796
 
2797
- #: updraftplus.php:372
2798
  msgid "The log file could not be read."
2799
  msgstr "Loggfilen kunde inte läsas."
2800
 
2801
- #: updraftplus.php:377
2802
  msgid "No log files were found."
2803
  msgstr "Ingen loggfil hittades."
2804
 
2805
- #: updraftplus.php:382
2806
  msgid "The given file could not be read."
2807
  msgstr "Den aktuella filen kunde inte läsas."
2808
 
2809
- #: updraftplus.php:775
2810
  msgid "Plugins"
2811
  msgstr "Tillägg"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-10-21 10:06:36+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
+ #: admin.php:2135
14
+ msgid "See also the \"More Files\" add-on from our shop."
15
  msgstr ""
16
 
17
+ #: admin.php:1673
18
+ msgid "Free disk space in account: %s (%s used)"
19
  msgstr ""
20
 
21
+ #: updraftplus.php:561
22
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
23
  msgstr ""
24
 
25
+ #: updraftplus.php:695
26
+ msgid "See: %s"
27
  msgstr ""
28
 
29
+ #: updraftplus.php:539
30
+ msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
31
  msgstr ""
32
 
33
+ #: updraftplus.php:542 admin.php:296
34
+ msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)"
35
  msgstr ""
36
 
37
+ #: methods/email.php:49
38
+ msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive."
39
+ msgstr "Epost-adressen som angavs ovan kommer att användas. Om du väljer \"E-post\", så <strong>var medveten</strong> om att mailservrar vanligen har storleksbegränsningar; typiskt omkring 10-20Mb; backuper större än dessa begränsningar kommer inte fram."
40
+
41
+ #: udaddons/options.php:375
42
+ msgid "You have an inactive purchase"
43
+ msgstr "Du har ett inaktivt köp"
44
+
45
+ #: udaddons/options.php:375
46
+ msgid "activate it on this site"
47
+ msgstr "aktivera på denna sajt"
48
+
49
+ #: udaddons/options.php:378
50
+ msgid "Get it from the UpdraftPlus.Com Store"
51
+ msgstr "Skaffa den från UpdraftPlus.Com-butiken."
52
+
53
+ #: udaddons/options.php:379
54
+ msgid "Buy It"
55
+ msgstr "Köp Den"
56
+
57
+ #: udaddons/options.php:402
58
+ msgid "Manage Addons"
59
+ msgstr "Hantera Tillägg"
60
+
61
+ #: methods/email.php:18
62
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s). See: %s"
63
+ msgstr "Med nästa release av UpdraftPlus, kommer du att behöva ett tillägg för att använda en annan epostadress till sajtägarens (%s>. Se: %s"
64
+
65
+ #: udaddons/options.php:280
66
+ msgid "An unknown response was received. Response was:"
67
+ msgstr "Ett okänt svar mottogs. Svaret var:"
68
+
69
+ #: udaddons/options.php:321
70
+ msgid "An error occurred when trying to retrieve your add-ons."
71
+ msgstr "Ett fel inträffade när dina tillägg skulle hämtas."
72
+
73
+ #: udaddons/options.php:335
74
+ msgid "Need to get support?"
75
+ msgstr "Behöver du support?"
76
+
77
+ #: udaddons/options.php:335
78
+ msgid "Go here"
79
+ msgstr "Gå hit"
80
+
81
+ #: udaddons/options.php:360
82
+ msgid "(apparently a pre-release or withdrawn release)"
83
+ msgstr "(uppenbarligen en för-release eller en återkallad release)"
84
+
85
+ #: udaddons/options.php:366
86
+ msgid "Available for this site (via your all-addons purchase)"
87
+ msgstr "Tillgängligt för denna sajt (via ditt köp av alla tillägg)"
88
+
89
+ #: udaddons/options.php:366
90
+ msgid "please update the plugin in order to get it"
91
+ msgstr "vänligen uppdatera detta tillägg för att hämta det"
92
+
93
+ #: udaddons/options.php:369
94
+ msgid "Assigned to this site"
95
+ msgstr "Tilldelad denna sajt"
96
+
97
+ #: udaddons/options.php:369
98
+ msgid "please update the plugin in order to activate it"
99
+ msgstr "vänligen uppdatera tillägget för att aktivera det"
100
+
101
+ #: udaddons/options.php:201
102
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
103
+ msgstr "Intresserad av att veta hur säkert ditt UpdraftPlus.Com-lösenord är? Läs om det här."
104
+
105
+ #: udaddons/options.php:221
106
+ msgid "An unknown error occured when trying to connect to UpdraftPlus.Com"
107
+ msgstr "Ett okänt fel inträffade vid kontakten med UpdraftPlus.Com"
108
+
109
+ #: udaddons/options.php:227
110
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
111
+ msgstr "Du är för närvarande <strong>ansluten</strong> till ett UpdraftPlus.Com-konto."
112
+
113
+ #: udaddons/options.php:228
114
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
115
+ msgstr "Om du köpte nya tillägg, följ denna länk för att uppdatera din anslutning"
116
+
117
+ #: udaddons/options.php:230
118
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
119
+ msgstr "Du är för närvarande <strong>inte ansluten</strong> till ett UpdraftPlus.Com-konto."
120
+
121
+ #: udaddons/options.php:236
122
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
123
+ msgstr "Fel inträffade vid försök att ansluta till UpdraftPlus.Com:"
124
+
125
+ #: udaddons/options.php:277
126
+ msgid "Please wait whilst we make the claim..."
127
+ msgstr "Vänta medan vi gör en begäran..."
128
+
129
+ #: udaddons/options.php:278
130
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else?"
131
+ msgstr "Begäran kunde inte godkännas - kanske använder du redan detta köp någon annanstans?"
132
+
133
+ #: udaddons/options.php:279
134
+ msgid "Claim not granted - your account login details were wrong"
135
+ msgstr "Begäran kunde inte godkännas - dina inloggningsuppgifter var felaktiga"
136
+
137
+ #: udaddons/options.php:73
138
+ msgid "Your web server's version of PHP is too old ("
139
+ msgstr "Din webbservers version av PHP är för gammal ("
140
+
141
+ #: udaddons/options.php:93
142
+ msgid "Connect with your UpdraftPlus.Com account"
143
+ msgstr "Anslut med ditt UpdraftPlus.Com-konto"
144
+
145
+ #: udaddons/options.php:118
146
+ msgid "Not yet got an account (it's free)? Go get one!"
147
+ msgstr "Har du inget konto än (det är gratis)? Skaffa ett nu!"
148
+
149
+ #: udaddons/options.php:128
150
+ msgid "Forgotten your details?"
151
+ msgstr "Glömt dina uppgifter?"
152
+
153
+ #: udaddons/options.php:56
154
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
155
+ msgstr "Du har ännu inte anslutit med ditt UpdraftPlus.Com-konto, för att möjliggöra att lista dina köpta tillägg."
156
+
157
+ #: udaddons/options.php:56
158
+ msgid "Go here to connect."
159
+ msgstr "Gå hit för att ansluta."
160
+
161
+ #: udaddons/options.php:62
162
+ msgid "UpdraftPlus is not yet activated."
163
+ msgstr "UpdraftPlus är ännu inte aktiverat."
164
+
165
+ #: udaddons/options.php:63
166
+ msgid "Go here to activate it."
167
+ msgstr "Gå hit för att aktivera det."
168
+
169
+ #: udaddons/options.php:66
170
+ msgid "UpdraftPlus is not yet installed."
171
+ msgstr "UpdraftPlus är ännu inte installerat."
172
+
173
+ #: udaddons/options.php:66
174
+ msgid "Go here to begin installing it."
175
+ msgstr "Gå hit för att börja installera."
176
+
177
+ #: udaddons/options.php:67
178
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
179
+ msgstr "Du verkar ha en utdaterad version av Updraft-tillägget installerat - kanske har du blandat ihop dem?"
180
+
181
+ #: admin.php:2152
182
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s)."
183
+ msgstr "Med nästa utgåva av UpdraftPlus kommer du att behöva ett tillägg för att använda en annan epostadress än webbplatsägarens (%s)."
184
+
185
+ #: admin.php:2178
186
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on, and add the capability to encrypt files also."
187
+ msgstr "En framtida version av UpdraftPlus kommer att flytta krypteringsfunktionen till ett tillägg, och lägga till möjligheten att även kryptera filer."
188
+
189
+ #: admin.php:1333
190
+ msgid "If your restore included files, then your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
191
+ msgstr "Om du återställer inkluderade filer kommer dina gamla (teman, uppladdningar, tillägg osv) filmappar att behållas med tillägger \"-old\" efter respektive namn. Ta bort dem när du är säker på att återställningen har fungerat som den ska."
192
+
193
+ #: backup.php:794
194
+ msgid "Skipping table (lacks our prefix): %s"
195
+ msgstr "Hoppar över tabell (saknar vårt prefix): %s"
196
+
197
+ #: updraftplus.php:692 admin.php:2172
198
+ msgid "Your web-server does not have the %s module installed."
199
+ msgstr "Din webbserver har inte %s-modulen installerad."
200
+
201
+ #: updraftplus.php:692 admin.php:2172
202
+ msgid "Without it, encryption will be a lot slower."
203
+ msgstr "Utan den kommer krypteringen att vara mycket långsammare."
204
+
205
+ #: updraftplus.php:695
206
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on (and add more features to it)."
207
+ msgstr "En framtida utgåva av UpdraftPlus kommer att flytta krypterings-funktionen till ett tillägg (och lägga till fler funktioner till den)."
208
+
209
+ #: admin.php:1494
210
+ msgid "Drop backup files here"
211
+ msgstr "Släpp dina backup-filer här"
212
+
213
+ #: methods/googledrive.php:486
214
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
215
+ msgstr "<strong>(Du verkar redan vara autentiserad,</strong> men du kan autentisera igen för att förnya din anslutning om du hade problem)."
216
+
217
+ #: methods/dropbox.php:291
218
+ msgid "(You appear to be already authenticated)"
219
+ msgstr "(Du verkar redan vara autentiserad)"
220
+
221
+ #: updraftplus.php:2063
222
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
223
+ msgstr "Vill du ha fler funktioner eller betalad, garanterad support? Ta en titt på UpdraftPlus.Com"
224
+
225
+ #: updraftplus.php:2072
226
+ msgid "Check out WordShell"
227
+ msgstr "Ta en titt på WordShell"
228
+
229
+ #: updraftplus.php:2072
230
+ msgid "manage WordPress from the command line - huge time-saver"
231
+ msgstr "hantera WordPress från kommandoraden - en stor tidsbesparing"
232
+
233
+ #: methods/dropbox.php:35
234
+ msgid "The %s PHP module is not installed - ask your web hosting company to enable it"
235
+ msgstr "%s PHP-modulen är inte installerad - be ditt webbhotell att aktivera den"
236
+
237
+ #: admin.php:1624
238
+ msgid "Does nothing happen when you attempt backups?"
239
+ msgstr "Händer det ingenting när du försöker ta backup?"
240
+
241
+ #: admin.php:1620
242
+ msgid "Don't include the database in the backup"
243
+ msgstr "Inkludera inte databasen i backupen."
244
+
245
+ #: admin.php:1621
246
+ msgid "Don't include any files in the backup"
247
+ msgstr "Inkludera inga filer i backupen"
248
+
249
+ #: admin.php:1478
250
+ msgid "Restoring:"
251
+ msgstr "Återställer:"
252
+
253
+ #: admin.php:1478
254
+ msgid "Press the Restore button next to the chosen backup set."
255
+ msgstr "Tryck Återställ-knappen intill det valda backup-setet."
256
+
257
+ #: admin.php:82
258
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
259
+ msgstr "Återställningen har påbörjats. Tryck inte på stopp eller stäng din webbläsare förrän den själv rapporterar att den är klar."
260
+
261
+ #: admin.php:84
262
+ msgid "The web server returned an error code (try again, or check your web server logs)"
263
+ msgstr "Webbservern returnerade en felkod (försök igen, eller kontrollera dina webbserverloggar)"
264
+
265
+ #: admin.php:81
266
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
267
+ msgstr "Om du exkluderar både databasen och filerna, då har du exkluderat allt!"
268
+
269
+ #: restorer.php:714
270
+ msgid "Site home:"
271
+ msgstr "Webbplatsens hem:"
272
+
273
+ #: addons/morestorage.php:80
274
+ msgid "Remote Storage Options"
275
+ msgstr "Fjärrlagringsalternativ"
276
+
277
+ #: addons/autobackup.php:29 addons/autobackup.php:278
278
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
279
+ msgstr "Minns detta val nästa gång (du kommer fortfarande att ha möjlighet att ändra det)"
280
+
281
+ #: addons/autobackup.php:64 addons/autobackup.php:148
282
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
283
+ msgstr "(loggar kan hittas på UpdraftPlus inställningssida som vanligt)..."
284
+
285
+ #: addons/webdav.php:139
286
+ msgid "Upload failed"
287
+ msgstr "Uppladdning misslyckades"
288
+
289
+ #: admin.php:2237
290
+ msgid "You can send a backup to more than one destination with an add-on."
291
+ msgstr "Du kan skicka en backup till mer än en destination med ett tillägg."
292
+
293
+ #: admin.php:1869
294
+ msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
295
+ msgstr "Observera: progressmätaren nedan är baserad på steg, INTE på tid. Stoppa inte backupen bara för att den verkar ha stannat på samma ställe en längre stund - det är normalt."
296
+
297
+ #: admin.php:1819
298
+ msgid "(%s%%, file %s of %s)"
299
+ msgstr "(%s%%, fil %s av %s)"
300
+
301
+ #: addons/sftp.php:421
302
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
303
+ msgstr "Misslyckades: Vi kunde logga in och flytta till den valda katalogen, men misslyckades att skapa en fil på den platsen."
304
+
305
+ #: addons/sftp.php:423
306
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
307
+ msgstr "Misslyckades. Vi kunde logga in, men misslyckades att skapa en fil på den platsen."
308
+
309
+ #: addons/autobackup.php:29 addons/autobackup.php:278
310
+ msgid "Read more about how this works..."
311
+ msgstr "Läs mer om hur detta fungerar..."
312
+
313
+ #: addons/sftp.php:311
314
+ msgid "Use SCP instead of SFTP"
315
+ msgstr "Använd SCP istället för SFTP"
316
+
317
  #: addons/sftp.php:36
318
  msgid "SCP/SFTP password"
319
+ msgstr "SCP/SFTP lösenord"
320
 
321
  #: addons/sftp.php:34
322
  msgid "SCP/SFTP host setting"
323
+ msgstr "SCP/SFTP värdinställningar"
324
 
325
  #: addons/sftp.php:35
326
  msgid "SCP/SFTP user setting"
327
+ msgstr "SCP/SFTP användarinställningar"
328
 
329
+ #: methods/email.php:32
330
  msgid "Backup is of: %s."
331
+ msgstr "Backupen är av: %s."
332
 
333
+ #: methods/email.php:39
334
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
335
+ msgstr "Försöet att skicka backupen via epost misslyckades (förmodligen för att backupen var för stor för denna metod)"
336
 
337
+ #: methods/cloudfiles.php:372
338
  msgid "%s settings test result:"
339
+ msgstr "%s inställningar testresultat:"
340
 
341
+ #: admin.php:2500
342
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
343
+ msgstr "Om du ser fler backuper än du väntat dig, så beror det troligen på att borttagandet av gamla backup-set inte sker förrän en ny backup färdigställts. "
344
 
345
+ #: admin.php:2500
346
  msgid "(Not finished)"
347
+ msgstr "(Ej klar)"
348
 
349
+ #: admin.php:2330
350
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
351
+ msgstr "Detta är den plats där UpdraftPlus kommer att skriva zip-filer som den skapar inledningsvis. Denna katalog måste vara skrivbar för webbservern. Den är relativ till din innehållskatalog (som förinställt har namnet wp-content)."
352
 
353
+ #: admin.php:2330
354
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
355
+ msgstr "Placera den <b>INTE</b> inuti dina uploads- eller plugin-kataloger, eftersom detta skapar upprepningsproblem (backuper av backuper av backuper av...)"
356
 
357
+ #: admin.php:2303
358
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
359
+ msgstr "UpdraftPlus kommer att dela backup-arkiven när de överstiger denna filstorlek. Det förinställda värdet är 800 megabyte. Var försiktig och lämna marginal ifall webbservern har en egen storleksbegränsning (ex. den 2 Gb / 2048 Mb-gräns som förekommer på vissa 32-bitars servrar och filsystem)."
360
 
361
+ #: admin.php:1828
362
  msgid "Waiting until scheduled time to retry because of errors"
363
+ msgstr "Väntar till schemalagd tidpunkt med att försöka igen pga fel"
364
 
365
+ #: admin.php:1833
366
  msgid "Backup finished"
367
+ msgstr "Backup färdigställdes"
368
 
369
+ #: admin.php:1836
370
  msgid "Unknown"
371
+ msgstr "Okänt"
372
 
373
+ #: admin.php:1852
374
  msgid "next resumption: %d (after %ss)"
375
+ msgstr "nästa återupptagande: %d (efter %ss)"
376
 
377
+ #: admin.php:1853
378
  msgid "last activity: %ss ago"
379
+ msgstr "senaste aktivitet: %ss sedan"
380
 
381
+ #: admin.php:1863
382
  msgid "Job ID: %s"
383
+ msgstr "Jobb-ID: %s"
384
 
385
+ #: admin.php:1790
386
  msgid "table: %s"
387
+ msgstr "tabell: %s"
388
 
389
+ #: admin.php:1798
390
  msgid "Created database backup"
391
+ msgstr "Skapade databas-backup"
392
 
393
+ #: admin.php:1803
394
  msgid "Encrypting database"
395
+ msgstr "Krypterar databas"
396
 
397
+ #: admin.php:1807
398
  msgid "Encrypted database"
399
+ msgstr "Krypterade databas"
400
 
401
+ #: admin.php:1812
402
  msgid "Uploading files to remote storage"
403
+ msgstr "Laddar upp filer till fjärrlagringsplats"
404
 
405
+ #: admin.php:1824
406
  msgid "Pruning old backup sets"
407
+ msgstr "Rensar gamla backup-set"
408
 
409
+ #: admin.php:1770
410
  msgid "Creating file backup zips"
411
+ msgstr "Skapar zip-filer med fil-backuper"
412
 
413
+ #: admin.php:1783
414
  msgid "Created file backup zips"
415
+ msgstr "Skapade zip-filer med fil-backuper"
416
 
417
+ #: admin.php:1788
418
  msgid "Creating database backup"
419
+ msgstr "Skapar databas-backup"
420
 
421
+ #: admin.php:1765
422
  msgid "Backup begun"
423
+ msgstr "Backup påbörjades"
424
 
425
+ #: admin.php:1450
426
  msgid "Backups in progress:"
427
+ msgstr "Backuper som pågår:"
428
 
429
+ #: admin.php:300
430
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
431
+ msgstr "Schemaläggaren är avstängd i din WordPress-installation, via inställningen DISABLE_WP_CRON. Inga backuper kan köras (inte ens &quot;Ta Backup Nu&quot:) såvida du inte endera har ställt in någon anordning att anropa schemaläggaren manuellt, eller till dess att den aktiverats."
432
 
433
+ #: restorer.php:278 restorer.php:284
434
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
435
+ msgstr "UpdraftPlus behövde skapa en %s i din innehållskatalog, men misslyckades - vänligen kontrollera dina filbehörigheter och aktivera åtkomsten (%s)"
436
 
437
+ #: restorer.php:278
438
  msgid "folder"
439
+ msgstr "katalog"
440
 
441
+ #: restorer.php:284
442
  msgid "file"
443
+ msgstr "fil"
444
 
445
+ #: backup.php:1186
446
  msgid "Failed to open directory (check the file permissions): %s"
447
+ msgstr "Misslyckades att öppna katalogen (kontrollera filrättigheterna): %s"
448
 
449
+ #: backup.php:1180
450
  msgid "%s: unreadable file - could not be backed up (check the file permissions)"
451
+ msgstr "%s: oläsbar fil - kunde inte backas upp (kontrollera filrättigheterna)"
452
 
453
+ #: updraftplus.php:1519
454
  msgid "The backup has not finished; a resumption is scheduled"
455
+ msgstr "Backupen har inte färdigställts; ett återupptagande har schemalagts"
 
 
 
 
456
 
457
+ #: updraftplus.php:1067
458
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
459
+ msgstr "Din webbplats besöks sällan och UpdraftPlus får inte de resurser den hoppades på; vänligen läs denna sida:"
460
 
461
  #: methods/googledrive.php:482
462
  msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
463
+ msgstr "<strong>Detta är inte ett katalognamn</strong>. För att hitta en katalogs ID navigerar du till den katalogen i Google Drive med din webbläsare och kopierar ID:t från webbläsarens adressfält. Det är den delen som kommer efter <kbd>#mappar/</kbd>. Lämna tomt för att använda din root-katalog."
464
 
465
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:88
466
  #: methods/googledrive.php:63
467
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
468
+ msgstr "%s-autentiseringen kunde inte fortsätta, eftersom något annat på din sajt förhindrar det. Försök stänga av dina andra tillägg och växla till det förinställda temat. (Specifikt letar du efter en komponent som skickar ut information (mest troligt PHP-varningar och -fel) innan sidan börjar. Att stänga av eventuella avbuggningsinställningar kan också hjälpa)."
469
 
470
+ #: admin.php:1342
471
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
472
+ msgstr "Din PHP-minnesgräns (inställd av ditt webbhotell) är mycket låg. UpdraftPlus försökte höja den men misslyckades. Detta tillägg kan få det besvärligt med en minnesgräns lägre än 64 Mb - särskilt om du har väldigt stora filer uppladdade (men å andra sidan så kommer många sajter att lyckas med bara 32Mb gräns - erfarenheterna kan variera)."
473
 
474
+ #: addons/autobackup.php:221
475
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(view log...)</a> - now proceeding with the updates..."
476
+ msgstr "Backupen lyckades <a href=\"#updraftplus-autobackup-log\" onclick=\"var s = document.getElementById('updraftplus-autobackup-log'); s.style.display = 'block';\">(visa logg...)</a> - fortsätter nu uppdateringarna..."
477
 
478
+ #: addons/autobackup.php:274
479
  msgid "UpdraftPlus Automatic Backups"
480
+ msgstr "UpdraftPlus Automatiska Backuper"
481
 
482
+ #: addons/autobackup.php:279
483
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
484
+ msgstr "Avbryt inte efter att ha tryckt Fortsätt nedan - vänta till dess backupen färdigställts."
485
 
486
+ #: addons/autobackup.php:280
487
  msgid "Proceed with update"
488
  msgstr "Fortsätt med uppdateringen"
489
 
490
+ #: addons/autobackup.php:68 addons/autobackup.php:155
 
 
 
 
491
  msgid "Starting automatic backup..."
492
  msgstr "Startar automatisk säkerhetskopiering..."
493
 
494
+ #: addons/autobackup.php:113
495
  msgid "plugins"
496
  msgstr "tillägg"
497
 
498
+ #: addons/autobackup.php:118
499
  msgid "themes"
500
  msgstr "teman"
501
 
502
+ #: addons/autobackup.php:138
503
  msgid "You do not have sufficient permissions to update this site."
504
+ msgstr "Du har inte tillräckliga behörigheter för att uppdatera denna webbplats."
505
 
506
+ #: addons/autobackup.php:148
507
  msgid "Creating database backup with UpdraftPlus..."
508
+ msgstr "Skapar databas-backup med UpdraftPlus..."
509
 
510
+ #: addons/autobackup.php:157 addons/autobackup.php:243
511
+ #: addons/autobackup.php:266
512
  msgid "Automatic Backup"
513
  msgstr "Automatisk säkerhetskopiering"
514
 
515
+ #: addons/autobackup.php:199
516
  msgid "Creating backup with UpdraftPlus..."
517
+ msgstr "Skapar backup med UpdraftPlus..."
518
 
519
+ #: addons/autobackup.php:206
520
  msgid "Errors have occurred:"
521
+ msgstr "Fel har inträffat:"
522
 
523
+ #: addons/autobackup.php:219
524
  msgid "Backup succeeded <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(view log...)</a> - now proceeding with the updates..."
525
+ msgstr "Backup lyckades <a href=\"#updraftplus-autobackup-log\" onclick=\"jQuery('#updraftplus-autobackup-log').slideToggle();\">(visa logg...)</a> - fortsätter nu uppdateringarna..."
526
 
527
+ #: addons/autobackup.php:29 addons/autobackup.php:278
528
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
529
+ msgstr "Ta automatiskt backup (där det är relevant) på tillägg, teman och WordPress-databasen med UpdraftPlus före uppdatering"
530
 
531
+ #: addons/autobackup.php:64
532
  msgid "Creating %s and database backup with UpdraftPlus..."
533
+ msgstr "Skapar %s och databas-backup med UpdraftPlus..."
534
 
535
  #: addons/morefiles.php:94
536
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
537
+ msgstr "Kunde inte läsa zip-fil (%s) - kunde inte förskanna för att kontrollera dess integritet."
538
 
539
  #: addons/morefiles.php:99
540
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
541
+ msgstr "Kunde inte öppna zip-fil (%s) - kunde inte förskanna för att kontrollera dess integritet."
542
 
543
  #: addons/morefiles.php:118 addons/morefiles.php:119
544
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
545
+ msgstr "Detta ser inte ut som en giltig backup av WordPress-kärnan - filen %s saknades."
546
 
547
  #: addons/morefiles.php:118 addons/morefiles.php:119
548
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
549
+ msgstr "Om du inte är säker så bör du avsluta; annars kan du förstöra denna WordPress-installation."
550
 
551
+ #: admin.php:1323
552
  msgid "Support"
553
+ msgstr "Support"
554
 
555
+ #: admin.php:1323
556
  msgid "More plugins"
557
+ msgstr "Fler tillägg"
558
 
559
+ #: admin.php:963
560
  msgid "%s version: %s"
561
+ msgstr "%s version: %s"
562
 
563
+ #: admin.php:964
564
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
565
+ msgstr "Du importerar från en nyare version av WordPress (%s) till en äldre (%s). Det finns inga garantier att WordPress kan hantera detta."
566
 
567
+ #: admin.php:1038
568
  msgid "This database backup is missing core WordPress tables: %s"
569
+ msgstr "Denna databas-backup saknar tabeller från WordPress-kärnan: %s"
570
 
571
+ #: admin.php:1041
572
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
573
+ msgstr "UpdraftPlus kunde inte hitta tabellprefixen när den skannade databasbackupen."
574
 
575
+ #: admin.php:908
576
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
577
+ msgstr "Databasen är för liten för att vara en giltig WordPress-databas (storlek: %s Kb)."
578
 
579
+ #: admin.php:135 admin.php:285
580
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
581
+ msgstr "UpdraftPlus Premium kan <strong>automatiskt</strong> ta en backup på dina tillägg eller teman och databasen innan du fortsätter."
582
 
583
+ #: admin.php:135 admin.php:285
584
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
585
+ msgstr "Var säker varje gång, utan att behöva komma ihåg - följ denna länk för att lära dig mer."
586
 
587
+ #: admin.php:270
588
  msgid "Update Plugin"
589
+ msgstr "Uppdatera Tillägg"
590
 
591
+ #: admin.php:274
592
  msgid "Update Theme"
593
+ msgstr "Uppdatera Tema"
594
 
595
+ #: admin.php:133 admin.php:283
596
  msgid "Dismiss (for %s weeks)"
597
+ msgstr "Avfärda (för %s veckor)"
598
 
599
+ #: admin.php:134 admin.php:284
600
  msgid "Be safe with an automatic backup"
601
+ msgstr "Var säker med en automatisk backup"
602
 
603
+ #: restorer.php:999
604
  msgid "Uploads path (%s) does not exist - resetting (%s)"
605
+ msgstr "Uppladdnings-sökväg (%s) existerar inte - nollställer (%s)"
606
 
607
+ #: admin.php:1327
608
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
609
  msgstr "Om du fortfarande kan läsa dessa ord efter att sidan laddat färdigt, då finns det ett JavaScript- eller jQuery-problem på webbplatsen."
610
 
611
+ #: admin.php:108
612
  msgid "Follow this link to attempt decryption and download the database file to your computer."
613
  msgstr "Följ denna länk för att försöka avkryptera och ladda ner databasfilen till din dator."
614
 
615
+ #: admin.php:109
616
  msgid "This decryption key will be attempted:"
617
  msgstr "Denna avkrypteringsnyckel kommer att testas:"
618
 
619
+ #: admin.php:110
620
  msgid "Unknown server response:"
621
  msgstr "Okänt serversvar:"
622
 
623
+ #: admin.php:111
624
  msgid "Unknown server response status:"
625
  msgstr "Status för okänt serversvar:"
626
 
627
+ #: admin.php:112
628
  msgid "The file was uploaded."
629
  msgstr "Filen laddades upp."
630
 
631
+ #: admin.php:103
632
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
633
  msgstr "Denna fil verkar inte vara ett UpdraftPlus backup-arkiv (sådana filer är .zip eller .gz-filer och har namn såsom: backup_(time)_(site name)_(code)_(type).(zip|gz)). Men UpdraftPlus-arkiv är standard zip/SQL-filer, så om du är säker på att din fil har rätt format, då kan du ge den ett nytt namn som matchar detta mönster."
634
 
635
+ #: admin.php:104
636
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
637
  msgstr "(se till att du försökte ladda upp en zip-fil som tidigare skapad av UpdraftPlus)"
638
 
639
+ #: admin.php:105
640
  msgid "Upload error:"
641
  msgstr "Fel vid uppladdning:"
642
 
643
+ #: admin.php:106
644
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
645
  msgstr "Denna fil verkar inte vara ett krypterat UpdraftPlus databasarkiv (sådana filer är .gz.crypt -filer med namn som exempelvis: backup_(tid)_(webbplatsnamn)_(kod)_db.crypt.gz)."
646
 
647
+ #: admin.php:107
648
  msgid "Upload error"
649
  msgstr "Uppladdningsfel"
650
 
651
+ #: admin.php:96
652
  msgid "Delete from your web server"
653
  msgstr "Ta bort från din webbserver"
654
 
655
+ #: admin.php:97
656
  msgid "Download to your computer"
657
  msgstr "Ladda ner till din dator"
658
 
659
+ #: admin.php:98
660
  msgid "and then, if you wish,"
661
  msgstr "och sedan, om du önskar,"
662
 
663
+ #: methods/s3.php:387
664
  msgid "Examples of S3-compatible storage providers:"
665
  msgstr "Exempel på S3-kompatibla lagringstjänster:"
666
 
667
+ #: methods/googledrive.php:207
668
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
669
  msgstr "Uppladdning förväntas misslyckas: %s-gränsen för enstaka filer är %s, och filen är %s Gb (%d bytes)"
670
 
671
+ #: backup.php:736
672
  msgid "The backup directory is not writable - the database backup is expected to shortly fail."
673
  msgstr "Backup-katalogen är inte skrivbar - databasbackupen förväntas misslyckas inom kort."
674
 
675
+ #: admin.php:2859
676
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
677
  msgstr "Kommer inte att ta bort några arkiv efter uppackning eftersom det inte fanns någon molnlagring för denna backup"
678
 
679
+ #: admin.php:2552
680
  msgid "(%d archive(s) in set)."
681
  msgstr "(%d arkiv i setet)."
682
 
683
+ #: admin.php:2555
684
  msgid "You appear to be missing one or more archives from this multi-archive set."
685
  msgstr "Du verkar sakna ett eller flera arkiv från detta multiarkiv-set."
686
 
687
+ #: admin.php:2302
688
  msgid "Split archives every:"
689
  msgstr "Dela upp arkiv varje:"
690
 
691
+ #: admin.php:2123
692
  msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
693
  msgstr "Om du matar in flera filer/kataloger, skilj dem åt med kommatecken. Du kan använda ett * på slutet som jokertecken."
694
 
695
+ #: admin.php:89
696
  msgid "Error: the server sent an empty response."
697
  msgstr "Fel: servern skickade ett tomt svar."
698
 
699
+ #: admin.php:90
700
  msgid "Warnings:"
701
  msgstr "Varningar:"
702
 
703
+ #: admin.php:92
704
  msgid "Error: the server sent us a response (JSON) which we did not understand."
705
  msgstr "Fel: servern skickade oss ett svar (JSON) som vi inte förstod."
706
 
707
+ #: admin.php:1346
708
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
709
  msgstr "Din WordPress-installation har gamla kataloger från sitt tillstånd innan du återskapade/migrerade (teknisk information: dessa har suffixet -old). Använd denna knapp för att ta bort dem (om du har verifierat att återställningen lyckades)."
710
 
711
+ #: admin.php:1139
712
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
713
  msgstr "Detta ser ut som en fil skapad av UpdraftPlus, men den här installationen känner inte igen den här typen av objekt: %s. Kanske måste du installera ett insticksprogram?"
714
 
715
+ #: admin.php:612
716
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
717
  msgstr "Backup-arkivfilen har framgångsrikt behandlats. Tryck nu på Återställ igen för att fortsätta."
718
 
719
+ #: admin.php:614
720
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
721
  msgstr "Backup-arkivfilen har behandlats, men med några varningar. Om allt fungerar så kan du klicka Återställ igen för att fortsätta. Annars avbryt och rätta till eventuella problem först."
722
 
723
+ #: admin.php:616
724
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
725
  msgstr "Backup-arkivfilen har bearbetats, men några fel har uppstått. Du måste avbryta och rätta till alla problem innan du försöker igen."
726
 
727
+ #: admin.php:496
728
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
729
  msgstr "Backup-arkivet för denna fil kunde inte hittas. Fjärrlagringsmetoden som används (%s) tillåter oss inte att hämta filer. För att utföra återställning med hjälp av UpdraftPlus, måste du hämta en kopia av denna fil och placera den inuti UpdraftPlus arbetskatalog."
730
 
731
+ #: admin.php:549
732
  msgid "No such backup set exists"
733
  msgstr "Inget sådant backup-set existerar"
734
 
735
+ #: admin.php:587
736
  msgid "File not found (you need to upload it): %s"
737
  msgstr "Filen hittades inte (du måste ladda upp den): %s"
738
 
739
+ #: admin.php:589
740
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
741
  msgstr "Filen hittades, men har nollstorlek (du måste ladda upp den igen): %s"
742
 
743
+ #: admin.php:593
744
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
745
  msgstr "Filen (%s) hittades, men har en annan storlek (%s) jämfört med förväntade (%s) - den kan vara korrupt."
746
 
747
+ #: admin.php:607
748
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
749
  msgstr "Detta multibackup-set verkar sakna följande arkiv: %s"
750
 
751
+ #: restorer.php:229
752
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
753
  msgstr "Misslyckades med att flytta katalog (kontrollera dina behörigheter och disktilldelning): %s"
754
 
755
+ #: restorer.php:446
756
  msgid "This directory already exists, and will be replaced"
757
  msgstr "Katalogen existerar redan och kommer att ersättas"
758
 
759
+ #: restorer.php:220
760
  msgid "Failed to move file (check your file permissions and disk quota): %s"
761
  msgstr "Misslyckades med att flytta fil (kontrollera dina behörigheter och disktilldelning): %s"
762
 
764
  msgid "Moving unpacked backup into place..."
765
  msgstr "Flyttar uppackad backup till sin plats..."
766
 
767
+ #: backup.php:1449 backup.php:1685
768
  msgid "Failed to open the zip file (%s) - %s"
769
  msgstr "Misslyckades med att öppna zip-fil (%s) - %s"
770
 
772
  msgid "WordPress root directory server path: %s"
773
  msgstr "Sökväg till WordPress rotkatalog: %s"
774
 
775
+ #: methods/s3.php:395
776
  msgid "... and many more!"
777
  msgstr "...och många mer!"
778
 
779
+ #: methods/s3.php:420
780
  msgid "%s end-point"
781
  msgstr "%s slutpunkt"
782
 
783
+ #: admin.php:2807
784
  msgid "File is not locally present - needs retrieving from remote storage"
785
  msgstr "Filen är inte närvarande lokalt - måste hämtas från fjärrlagringsplats"
786
 
788
  msgid "S3 (Compatible)"
789
  msgstr "S3 (Kompatibel)"
790
 
791
+ #: admin.php:2779
792
  msgid "Final checks"
793
  msgstr "Slutkontroller"
794
 
795
+ #: admin.php:2802
796
  msgid "Looking for %s archive: file name: %s"
797
  msgstr "Letar efter %s-arkiv: filnamn: %s"
798
 
799
+ #: admin.php:2308
800
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
801
  msgstr "Markera denna för att ta bort överflödiga backupfiler från din server efter att backupen kört klart (om du avmarkerar kommer alla filer som skickats för fjärrlagring också att bli kvar lokalt, och alla filer som lagras lokalt kommer inte att omfattas av bevarande-gränserna)."
802
 
803
+ #: admin.php:2190
804
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
805
  msgstr "Släpp krypterade databasfiler (db.gz.crypt-filer) här för att ladda upp dem för dekryptering"
806
 
807
+ #: admin.php:2115
808
  msgid "Your wp-content directory server path: %s"
809
  msgstr "Sökväg till din wp-content-katalog: %s"
810
 
811
+ #: admin.php:102
812
  msgid "Raw backup history"
813
  msgstr "Råbackuphistoria"
814
 
815
+ #: admin.php:1676
816
  msgid "Show raw backup and file list"
817
  msgstr "Visa råbackup och fillista"
818
 
819
+ #: admin.php:88
820
  msgid "Processing files - please wait..."
821
  msgstr "Bearbetar filer - var god vänta..."
822
 
823
+ #: admin.php:1474
824
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
825
  msgstr "Din WordPress-installation har problem med utmatning av extra blanksteg. Detta kan göra backuper som du laddar ner härifrån korrupta."
826
 
827
+ #: admin.php:1474
828
  msgid "Please consult this FAQ for help on what to do about it."
829
  msgstr "Vänligen konsultera denna FAQ för hjälp om vad du kan göra åt det."
830
 
831
+ #: admin.php:914
832
  msgid "Failed to open database file."
833
  msgstr "Misslyckades med att öppna databasfil."
834
 
835
+ #: admin.php:896
836
  msgid "Failed to write out the decrypted database to the filesystem."
837
  msgstr "Misslyckades med att skriva den dekrypterade databasen till filsystemet."
838
 
839
+ #: admin.php:717
840
  msgid "Known backups (raw)"
841
  msgstr "Kända backuper (råa)"
842
 
843
+ #: restorer.php:537
844
  msgid "Using directory from backup: %s"
845
  msgstr "Använder katalog från backup: %s"
846
 
847
+ #: restorer.php:489
848
  msgid "Files found:"
849
  msgstr "Hittade filer:"
850
 
851
+ #: restorer.php:495
852
  msgid "Unable to enumerate files in that directory."
853
  msgstr "Kan inte räkna upp filer i den katalogen."
854
 
855
+ #: restorer.php:844
856
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
857
  msgstr "Begärd tabellmotor (%s) finns inte tillgänglig ä ändrar till MyISAM."
858
 
859
+ #: restorer.php:855
860
  msgid "Restoring table (%s)"
861
  msgstr "Återställer tabell (%s)"
862
 
863
+ #: restorer.php:297
864
  msgid "An existing unremoved backup from a previous restore exists: %s"
865
  msgstr "En befintlig ej borttagen backup från en tidigare återställning finns: %s"
866
 
867
+ #: backup.php:1502 backup.php:1695
868
  msgid "A zip error occurred - check your log for more details."
869
  msgstr "Ett zip-fel inträffade - kontrollera din logg för fler detaljer."
870
 
871
+ #: addons/migrator.php:44
872
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
873
  msgstr "Detta ser ut som en migration (backupen kommer från en webbplats med en annan adress/URL), men du valde inte alternativet sök-och-ersätt i databasen. Det är vanligen ett misstag."
874
 
875
+ #: restorer.php:930
876
  msgid "An error occured on the first CREATE TABLE command - aborting run"
877
  msgstr "Ett fel inträffade vid det första CREATE TABLE-kommandot - avbryter körning"
878
 
879
+ #: admin.php:2828
880
  msgid "file is size:"
881
  msgstr "filen har storleken:"
882
 
883
+ #: admin.php:2519
884
  msgid "database"
885
  msgstr "databas"
886
 
887
+ #: admin.php:300 admin.php:1327
888
  msgid "Go here for more information."
889
  msgstr "Gå hit för mer information."
890
 
891
+ #: admin.php:1538
892
  msgid "Downloading / preparing backup files..."
893
  msgstr "Laddar ner / förbereder backupfiler"
894
 
895
+ #: admin.php:87
896
  msgid "Some files are still downloading or being processed - please wait."
897
  msgstr "Några filer laddas fortfarande ner eller bearbetas - var god vänta."
898
 
899
+ #: admin.php:949 admin.php:957
900
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
901
  msgstr "Detta backup-set kommer från en annan webbplats - det här är inte en återställning utan en migration. Du måste ha Migrator-insticksprogrammet för att få detta att fungera."
902
 
962
  msgid "%s error: zero-size file was downloaded"
963
  msgstr "%s fel: fil med nollstorlek laddades ner"
964
 
965
+ #: restorer.php:483 admin.php:887 admin.php:976 admin.php:981 admin.php:1132
966
+ #: admin.php:1139
967
  msgid "Error: %s"
968
  msgstr "Fel: %s"
969
 
970
+ #: admin.php:2325
971
  msgid "Backup directory specified exists, but is <b>not</b> writable."
972
  msgstr "Backup-katalogen som specificerats existerar men är <b>inte</b> skrivbar."
973
 
974
+ #: admin.php:2323
975
  msgid "Backup directory specified does <b>not</b> exist."
976
  msgstr "Backup-katalogen som specificerats existerar <b>inte</b>."
977
 
978
+ #: admin.php:949 admin.php:957 admin.php:1874 admin.php:2027
979
  msgid "Warning: %s"
980
  msgstr "Varning: %s"
981
 
982
+ #: admin.php:1417
983
  msgid "Last backup job run:"
984
  msgstr "Senaste körning av backup-jobb:"
985
 
986
+ #: backup.php:1200 backup.php:1212
987
  msgid "%s: unreadable file - could not be backed up"
988
  msgstr "%s: oläsbar fil - kunde inte backas upp"
989
 
990
+ #: backup.php:1463
991
  msgid "A very large file was encountered: %s (size: %s Mb)"
992
  msgstr "En mycket stor fil påträffades: %s (storlek: %s Mb)"
993
 
994
+ #: backup.php:772
995
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
996
  msgstr "Tabell %s har väldigt många rader (%s) - vi hoppas att ditt webbhotell ger dig tillräckliga resurser att dumpa ut den tabellen i backupen."
997
 
998
+ #: backup.php:843
999
  msgid "An error occurred whilst closing the final database file"
1000
  msgstr "Ett fel uppstod under stängning av den sista databasfilen"
1001
 
1002
+ #: backup.php:439
1003
  msgid "Warnings encountered:"
1004
  msgstr "Påträffade varningar:"
1005
 
1006
+ #: updraftplus.php:1509
1007
  msgid "The backup apparently succeeded (with warnings) and is now complete"
1008
  msgstr "Backupen verkar ha lyckats (med varningar) och är nu komplett"
1009
 
1010
+ #: updraftplus.php:573
1011
  msgid "Your free disk space is very low - only %s Mb remain"
1012
  msgstr "Ditt lediga diskutrymme är väldigt lågt - bara %s Mb återstår"
1013
 
1014
+ #: addons/migrator.php:516
1015
  msgid "<strong>Search and replacing table:</strong> %s"
1016
  msgstr "<strong>Sök och ersätt tabell:</strong> %s"
1017
 
1018
+ #: addons/migrator.php:102
1019
  msgid "Site Name:"
1020
  msgstr "Webbplatsnamn:"
1021
 
1022
+ #: addons/migrator.php:104
1023
  msgid "Site Domain:"
1024
  msgstr "Webbplatsdomän:"
1025
 
1026
+ #: addons/migrator.php:121
1027
  msgid "Migrated site (from UpdraftPlus)"
1028
  msgstr "Migrerad webbplats (från UpdraftPlus)"
1029
 
1030
+ #: addons/migrator.php:150
1031
  msgid "<strong>ERROR</strong>: Site URL already taken."
1032
  msgstr "<strong>FEL</strong>: Webbplats-URL är redan upptaget."
1033
 
1034
+ #: addons/migrator.php:157
1035
  msgid "New site:"
1036
  msgstr "Ny webbplats:"
1037
 
1038
+ #: addons/migrator.php:89
1039
  msgid "Information needed to continue:"
1040
  msgstr "Information som behövs för att fortsätta:"
1041
 
1042
+ #: addons/migrator.php:90
1043
  msgid "Please supply the following information:"
1044
  msgstr "Vänligen ange följande information:"
1045
 
1046
+ #: addons/migrator.php:93
1047
  msgid "Enter details for where this new site is to live within your multisite install:"
1048
  msgstr "Ange detaljer för var den nya webbplatsen ska existera inom din multisajt-installation"
1049
 
1050
+ #: addons/migrator.php:48
1051
  msgid "Processed plugin:"
1052
  msgstr "Bearbetat tillägg:"
1053
 
1054
+ #: addons/migrator.php:56
1055
  msgid "Network activating theme:"
1056
  msgstr "Nätverk aktiverar tema:"
1057
 
1067
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1068
  msgstr "Din webbservers PHP-installation saknar en nödvändig modul (%s). Vänligen kontakta ditt webbhotells support och be dem aktivera den."
1069
 
1070
+ #: methods/s3.php:537
1071
  msgid "Please check your access credentials."
1072
  msgstr "Vänligen kontrollera dina åtkomstuppgifter."
1073
 
1074
+ #: methods/s3.php:512
1075
  msgid "The error reported by %s was:"
1076
  msgstr "Felet som rapporterades av %s var:"
1077
 
1078
+ #: restorer.php:553
1079
  msgid "Please supply the requested information, and then continue."
1080
  msgstr "Vänligen tillhandahåll den efterfrågade informationen och fortsätt sedan."
1081
 
1082
+ #: restorer.php:560
1083
  msgid "New table prefix:"
1084
  msgstr "Nytt tabell-prefix:"
1085
 
1086
+ #: restorer.php:911
1087
  msgid "Cannot drop tables, so deleting instead (%s)"
1088
  msgstr "Kan inte släppa tabeller, så vänligen ta istället bort (%s)"
1089
 
1090
+ #: restorer.php:730 admin.php:981
1091
  msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
1092
  msgstr "För att importera en vanlig WordPress-webbplats till en multisajt-installation krävs både multisajt- och migrator-insticksprogrammen."
1093
 
1094
+ #: restorer.php:736 admin.php:989
1095
  msgid "Site information:"
1096
  msgstr "Webbplatsinformation:"
1097
 
1098
+ #: restorer.php:906
1099
  msgid "Cannot create new tables, so skipping this command (%s)"
1100
  msgstr "Kan inte skapa nya tabeller, hoppar över kommandot (%s)"
1101
 
1102
+ #: restorer.php:680 restorer.php:695 admin.php:1327
1103
  msgid "Warning:"
1104
  msgstr "Varning:"
1105
 
1106
+ #: restorer.php:680
1107
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
1108
  msgstr "Din databasanvändare har inte behörighet att skapa tabeller. Vi kommer att försöka återskapa genom att helt enkelt tömma tabellerna; detta borde fungera såvida a)du återställer från en WordPress-version med samma databasstruktur, och b) Din importerade databas inte innehåller några tabeller som inte redan finns på den importerande webbplatsen."
1109
 
1110
+ #: restorer.php:695
1111
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
1112
  msgstr "Din databasanvändare har inte behörighet att släppa tabeller. Vi kommer att försöka återskapa genom att helt enkelt tömma tabellerna; detta borde fungera såvida du återställer från en WordPress-version med samma databasstruktur"
1113
 
1114
+ #: restorer.php:35 admin.php:976
1115
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
1116
  msgstr "Du kör med WordPress multisajt - men din backup är inte från en multisajt-webbplats."
1117
 
1118
+ #: admin.php:2791
1119
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
1120
  msgstr "Hoppar över återskapande av WordPress-kärnan vid import av enkel webbplats till en multisajt-installation. Om du hade något nödvändigt i WordPress-katalogen kommer du att behöva lägga tillbaka det manuellt från zip-filen."
1121
 
1122
+ #: admin.php:2396
1123
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1124
  msgstr "Din webbservers PHP-installation inkluderar inte en <strong>nödvändig</strong> (för %s) modul (%s). Vänligen kontakta ditt webbhotells support och be dem aktivera den."
1125
 
1126
+ #: admin.php:2396
1127
  msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
1128
  msgstr "Dina alternativ är 1) Installera/aktivera %s eller 2) Byta webbhotell - %s är en standard PHP-komponent som krävs av alla backuptillägg vi känner till som använder molnlagring."
1129
 
1130
+ #: admin.php:116
1131
  msgid "Close"
1132
  msgstr "Stäng"
1133
 
1134
+ #: admin.php:83
1135
  msgid "Unexpected response:"
1136
  msgstr "Oväntat svar:"
1137
 
1138
+ #: admin.php:2144
1139
  msgid "To send to more than one address, separate each address with a comma."
1140
  msgstr "För att skicka mer än en adress, åtskilj varje adress med ett kommatecken."
1141
 
1142
+ #: admin.php:101
1143
  msgid "PHP information"
1144
  msgstr "PHP-information"
1145
 
1146
+ #: admin.php:1655
1147
  msgid "show PHP information (phpinfo)"
1148
  msgstr "visa PHP-information (phpinfo)"
1149
 
1150
+ #: admin.php:1668
1151
  msgid "zip executable found:"
1152
  msgstr "zip exekverbar fil hittades:"
1153
 
1154
+ #: admin.php:1599
1155
  msgid "Migrate Site"
1156
  msgstr "Migrera Webbplats"
1157
 
1158
+ #: admin.php:1603
1159
  msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
1160
  msgstr "Migrering av data från en annan webbplats sker genom \"Återställ\"-knappen. En \"migration\" är ytterst samma sak som en återställning - men man använder backup-arkiv som importeras från en annan webbplats. UpdraftPlus modifierar återställningsprocessen efter behov för att överföra backup-data till den nya webbplatsen."
1161
 
1162
+ #: admin.php:1603
1163
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
1164
  msgstr "<a href=\"%s\">Läs denna artikel för att se hur det görs steg-för-steg.</a>"
1165
 
1166
+ #: admin.php:1605
1167
  msgid "Do you want to migrate or clone/duplicate a site?"
1168
  msgstr "Vill du migrera eller klona/duplicera en webbplats?"
1169
 
1170
+ #: admin.php:1605
1171
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1172
  msgstr "Testa då vårt insticksprogram \"Migrator\". Efter att ha använt det en gång har du tjänat in inköpspriset jämfört med tiden som skulle ha behövts för att kopiera webbplatsen manuellt."
1173
 
1174
+ #: admin.php:1605
1175
  msgid "Get it here."
1176
  msgstr "Skaffa den här."
1177
 
1178
+ #: admin.php:1527
1179
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
1180
  msgstr "Tar bort... vänligen vänta på att kommunikationen med fjärrlagringsplatsen slutförs."
1181
 
1182
+ #: admin.php:1526
1183
  msgid "Also delete from remote storage"
1184
  msgstr "Ta också bort från fjärrlagringsplatsen"
1185
 
1186
+ #: admin.php:1462
1187
  msgid "Latest UpdraftPlus.com news:"
1188
  msgstr "Senaste Nyheter från UpdraftPlus.com"
1189
 
1190
+ #: admin.php:1433
1191
  msgid "Clone/Migrate"
1192
  msgstr "Klona/Migrera"
1193
 
1194
+ #: admin.php:1323
1195
  msgid "News"
1196
  msgstr "Nyheter"
1197
 
1198
+ #: admin.php:1323
1199
  msgid "Premium"
1200
  msgstr "Premium"
1201
 
1202
+ #: admin.php:708
1203
  msgid "Local archives deleted: %d"
1204
  msgstr "Lokala arkiv borttagna: %d"
1205
 
1206
+ #: admin.php:709
1207
  msgid "Remote archives deleted: %d"
1208
  msgstr "Fjärrarkiv borttagna: %d"
1209
 
1210
+ #: backup.php:91
1211
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
1212
  msgstr "%s - kunde inte backa upp denna enhet; den motsvarande katalogen existerar inte (%s)"
1213
 
1214
+ #: admin.php:626
1215
  msgid "Backup set not found"
1216
  msgstr "Backup-setet hittades inte"
1217
 
1218
+ #: admin.php:707
1219
  msgid "The backup set has been removed."
1220
  msgstr "Backup-setet har tagits bort."
1221
 
1222
+ #: updraftplus.php:2089
1223
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
1224
  msgstr "Prenumerera på UpdraftPlus-bloggen för att få uppdaterade nyheter och erbjudanden"
1225
 
1226
+ #: updraftplus.php:2089
1227
  msgid "Blog link"
1228
  msgstr "Blogg-länk"
1229
 
1230
+ #: updraftplus.php:2089
1231
  msgid "RSS link"
1232
  msgstr "RSS-länk"
1233
 
1234
+ #: methods/s3.php:351 methods/ftp.php:148 addons/webdav.php:289
1235
+ #: addons/sftp.php:326
1236
  msgid "Testing %s Settings..."
1237
  msgstr "Testar %s Inställningar..."
1238
 
1239
+ #: admin.php:1490
1240
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
1241
  msgstr "Eller så kan du lägga till dem manuellt i din UpdraftPlus-katalog (vanligtvis wp-content/updraft), till exempel via FTP, och sedan använda \"scanna om\"-länken ovan"
1242
 
1243
+ #: admin.php:316
1244
  msgid "Notice"
1245
  msgstr "Meddelande"
1246
 
1247
+ #: admin.php:316
1248
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
1249
  msgstr "UpdraftPlus avbuggningsläge är aktivt. Du kan se avbuggningsmeddelanden på denna sida inte bara från UpdraftPlus, utan också från alla andra tillägg som installerats. Vänligen kontrollera att meddelandet du ser kommer från UpdraftPlus innan du begär support från oss."
1250
 
1251
+ #: admin.php:321
1252
  msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
1253
  msgstr "W3 Total Caches objektcache är aktiv. Denna har en känd bugg som ställer till problem för alla schemalagda uppgifter (inklusive backup-jobb)."
1254
 
1255
+ #: admin.php:321
1256
  msgid "Go here to turn it off."
1257
  msgstr "Gå hit för att stänga av den."
1258
 
1259
+ #: admin.php:321
1260
  msgid "<a href=\"%s\">Go here</a> for more information."
1261
  msgstr "<a href=\"%s\">Gå hit</a> för mer information."
1262
 
1263
+ #: backup.php:422
1264
  msgid "Errors encountered:"
1265
  msgstr "Fel påträffades:"
1266
 
1267
+ #: admin.php:80
1268
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
1269
  msgstr "Scannar om (söker backuper som du har laddat upp manuellt till den interna backup-förvaringen)..."
1270
 
1271
+ #: admin.php:86
1272
  msgid "Begun looking for this entity"
1273
  msgstr "Har börjat leta efter denna entitet"
1274
 
1275
+ #: addons/migrator.php:455
1276
  msgid "SQL update commands run:"
1277
  msgstr "SQL uppdateringskommandon kör:"
1278
 
1279
+ #: admin.php:91
1280
  msgid "Errors:"
1281
  msgstr "Fel:"
1282
 
1283
+ #: addons/migrator.php:457
1284
  msgid "Time taken (seconds):"
1285
  msgstr "Tid det tog (sekunder):"
1286
 
1287
+ #: addons/migrator.php:545
1288
  msgid "rows: %d"
1289
  msgstr "rader: %d"
1290
 
1291
+ #: addons/migrator.php:648
1292
  msgid "\"%s\" has no primary key, manual change needed on row %s."
1293
  msgstr "\"%s\" har ingen primärnyckel, manuell ändring krävs på rad %s."
1294
 
1296
  msgid "Store at"
1297
  msgstr "Lagra på"
1298
 
1299
+ #: addons/migrator.php:363
1300
  msgid "Nothing to do: the site URL is already: %s"
1301
  msgstr "Inget att göra: webbplatsens URL är redan: %s"
1302
 
1303
+ #: addons/migrator.php:368 addons/migrator.php:371
1304
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
1305
  msgstr "Varning: databasens URL webbplats-URL (%s) avviker från den förväntade (%s)"
1306
 
1307
+ #: addons/migrator.php:378 addons/migrator.php:381
1308
  msgid "Database search and replace: replace %s in backup dump with %s"
1309
  msgstr "Databas sök och ersätt: ersätt %s i denna backup-dump med %s"
1310
 
1311
+ #: addons/migrator.php:399
1312
  msgid "Could not get list of tables"
1313
  msgstr "Kunde inte hämta lista över tabeller"
1314
 
1315
+ #: addons/migrator.php:410
1316
  msgid "<strong>Search and replacing table:</strong> %s: already done"
1317
  msgstr "<strong>Sök och ersätt tabell:</strong> %s: är redan utfört"
1318
 
1319
+ #: addons/migrator.php:452
1320
  msgid "Tables examined:"
1321
  msgstr "Undersökta tabeller:"
1322
 
1323
+ #: addons/migrator.php:453
1324
  msgid "Rows examined:"
1325
  msgstr "Undersökta rader:"
1326
 
1327
+ #: addons/migrator.php:454
1328
  msgid "Changes made:"
1329
  msgstr "Gjorda ändringar:"
1330
 
1331
+ #: addons/sftp.php:201
1332
  msgid "%s Error: Failed to download"
1333
  msgstr "%s Fel: Misslyckades med nedladdning"
1334
 
1335
+ #: addons/sftp.php:260
1336
  msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1337
  msgstr "Att återuppta delvis utförda uppladdningar stöds inte, så du måste säkerställa att din webbserver tillåter PHP-processer att köra tillräckligt länge för att ladda upp din största backup-fil."
1338
 
1339
+ #: addons/sftp.php:265
1340
  msgid "Host"
1341
  msgstr "Värd"
1342
 
1343
+ #: addons/sftp.php:272
1344
  msgid "Port"
1345
  msgstr "Port"
1346
 
1347
+ #: udaddons/options.php:97
1348
  msgid "Password"
1349
  msgstr "Lösenord"
1350
 
1351
+ #: addons/sftp.php:302
1352
  msgid "Directory path"
1353
  msgstr "Sökväg till katalog"
1354
 
1355
+ #: addons/sftp.php:304
1356
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
1357
  msgstr "Till vad ska katalogen ändras efter inloggning - ofta är detta relativt till din hemkatalog."
1358
 
1359
+ #: addons/sftp.php:355
1360
  msgid "host name"
1361
  msgstr "Värdnamn"
1362
 
1363
+ #: addons/sftp.php:359
1364
  msgid "username"
1365
  msgstr "användarnamn"
1366
 
1367
+ #: addons/sftp.php:363
1368
  msgid "password"
1369
  msgstr "lösenord"
1370
 
1371
+ #: addons/sftp.php:368
1372
  msgid "Failure: Port must be an integer."
1373
  msgstr "Fel: Porten måste vara ett heltal."
1374
 
1376
  msgid "starting from next time it is"
1377
  msgstr "med början från nästa gång är det"
1378
 
1379
+ #: addons/multisite.php:140
1380
  msgid "Multisite Install"
1381
  msgstr "Multisajt-Installation"
1382
 
1383
+ #: udaddons/options.php:174
1384
  msgid "You do not have sufficient permissions to access this page."
1385
  msgstr "Du har inte tillräcklig behörighet för att komma åt denna sida."
1386
 
1387
+ #: udaddons/options.php:153
1388
  msgid "You do not have permission to access this page."
1389
  msgstr "Du har inte behörighet att komma åt denna sida."
1390
 
1391
+ #: addons/multisite.php:237
1392
  msgid "Must-use plugins"
1393
  msgstr "Tillägg som krävs"
1394
 
1395
+ #: addons/multisite.php:244
1396
  msgid "Blog uploads"
1397
  msgstr "Blogg-uppladdningar"
1398
 
1399
+ #: addons/migrator.php:174
1400
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
1401
  msgstr "Alla referenser till sajtens hemvist i databasen kommer att bytas ut mot din nuvarande webbplats-URL som är: %s"
1402
 
1403
+ #: addons/migrator.php:174
1404
  msgid "Search and replace site location in the database (migrate)"
1405
  msgstr "Sök och ersätt webbplatsens hemvist i databasen (migrera)"
1406
 
1407
+ #: addons/migrator.php:174
1408
  msgid "(learn more)"
1409
  msgstr "(lär dig mer)"
1410
 
1411
+ #: addons/migrator.php:270 addons/migrator.php:434
1412
  msgid "Failed: the %s operation was not able to start."
1413
  msgstr "Misslyckades: %s-operationen kunde inte starta."
1414
 
1415
+ #: addons/migrator.php:272 addons/migrator.php:436
1416
  msgid "Failed: we did not understand the result returned by the %s operation."
1417
  msgstr "Misslyckades: vi kunde inte förstå resultatet som returnerades av %s-operationen."
1418
 
1419
+ #: addons/migrator.php:319
1420
  msgid "Database: search and replace site URL"
1421
  msgstr "Databas: sök och ersätt webbplats-URL"
1422
 
1423
+ #: addons/migrator.php:322
1424
  msgid "This option was not selected."
1425
  msgstr "Detta alternativ var inte valt."
1426
 
1427
+ #: addons/migrator.php:345 addons/migrator.php:349 addons/migrator.php:354
1428
+ #: addons/migrator.php:358
1429
  msgid "Error: unexpected empty parameter (%s, %s)"
1430
  msgstr "Fel: oväntat tom parameter (%s, %s)"
1431
 
1481
  msgid "No %s found"
1482
  msgstr "Inga %s hittades"
1483
 
1484
+ #: addons/sftp.php:398
1485
  msgid "Check your file permissions: Could not successfully create and enter:"
1486
  msgstr "Kontrollera dina filbehörigheter: Kunde inte skapa och ange:"
1487
 
1488
+ #: methods/ftp.php:186
1489
  msgid "FTP Server"
1490
  msgstr "FTP-Server"
1491
 
1492
+ #: methods/ftp.php:190
1493
  msgid "FTP Login"
1494
  msgstr "FTP-Inloggning"
1495
 
1496
+ #: methods/ftp.php:194
1497
  msgid "FTP Password"
1498
  msgstr "FTP-Lösenord"
1499
 
1500
+ #: methods/ftp.php:198
1501
  msgid "Remote Path"
1502
  msgstr "Fjärrsökväg"
1503
 
1504
+ #: methods/ftp.php:199
1505
  msgid "Needs to already exist"
1506
  msgstr "Måste redan existera"
1507
 
1508
+ #: methods/ftp.php:224
1509
  msgid "Failure: No server details were given."
1510
  msgstr "Fel: Inga server-uppgifter lämnades."
1511
 
1512
+ #: methods/ftp.php:239
1513
  msgid "Failure: we did not successfully log in with those credentials."
1514
  msgstr "Fel: Vi kunde inte logga in med dessa användaruppgifter."
1515
 
1516
+ #: methods/ftp.php:247
1517
  msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
1518
  msgstr "Fel: ett oväntat internt UpdraftPlus-fel uppstod när användaruppgifterna testades - vänlige kontakta utvecklaren"
1519
 
1520
+ #: methods/ftp.php:251
1521
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
1522
  msgstr "Framgång: vi loggade in och bekräftade vår förmåga att skapa en fil i den utpekade katalogen (inloggningstyp:"
1523
 
1524
+ #: methods/ftp.php:254
1525
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
1526
  msgstr "Fel: vi loggade in men kunde inte skapa en fil i den utpekade katalogen."
1527
 
1528
+ #: addons/webdav.php:40 addons/webdav.php:161 addons/webdav.php:197
1529
  #: addons/sftp.php:32
1530
  msgid "No %s settings were found"
1531
  msgstr "Inga %s-inställningar hittades"
1532
 
1533
+ #: addons/webdav.php:123 addons/webdav.php:127
1534
  msgid "Chunk %s: A %s error occurred"
1535
  msgstr "Del %s: Ett %s-fel uppstod"
1536
 
1537
+ #: addons/webdav.php:213 addons/webdav.php:220 addons/webdav.php:233
1538
  msgid "WebDAV Error"
1539
  msgstr "WebDAV-Fel"
1540
 
1541
+ #: addons/webdav.php:220
1542
  msgid "Error opening remote file: Failed to download"
1543
  msgstr "Fel vid öppning av fjärrfil: Nedladdning misslyckades"
1544
 
1545
+ #: addons/webdav.php:233
1546
  msgid "Local write failed: Failed to download"
1547
  msgstr "Lokal skrivning misslyckades: Nedladdning misslyckades."
1548
 
1549
+ #: addons/webdav.php:269
1550
  msgid "WebDAV URL"
1551
  msgstr "WebDAV URL"
1552
 
1553
+ #: addons/webdav.php:273
1554
  msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
1555
  msgstr "Ange en fullständig URL, börj med webdav:// eller webdavs:// och inkludera sökväg, användarnamn, lösenord och port efter behov - ex %s"
1556
 
1557
+ #: admin.php:1908 admin.php:1933
1558
  msgid "Failed"
1559
  msgstr "Misslyckades"
1560
 
1561
+ #: addons/webdav.php:331
1562
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
1563
  msgstr "Misslyckades: Vi kunde inte placera en fil i den katalogen - var god kontrollera dina användaruppgifter."
1564
 
1594
  msgid "Your %s account name: %s"
1595
  msgstr "Ditt %s kontonamn: %s"
1596
 
1597
+ #: methods/ftp.php:182
1598
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
1599
  msgstr "Endast ickekrypterad FTP stöds av vanliga UpdraftPlus."
1600
 
1601
+ #: methods/ftp.php:182
1602
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
1603
  msgstr "Om du vill ha kryptering (exempelvis om du vill lagra affärskritisk information), då finns ett insticksprogram tillgängligt."
1604
 
1605
+ #: methods/s3.php:335
1606
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
1607
  msgstr "%s -fek; Misslyckades ladda ner %s. Kontrollera din behörighet och dina användaruppgifter."
1608
 
1609
+ #: methods/s3.php:271 methods/s3.php:339
1610
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
1611
  msgstr "%s Fel: Misslyckades att komma åt bucket %s. Kontroller dina behörigheter och dina användaruppgifter."
1612
 
1613
+ #: methods/s3.php:416
1614
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
1615
  msgstr "Hämta din åtkomstnyckel och din hemliga nyckel <a href=\"%s\">från din %s konsol</a>, välj sedan ett (globalt unikt - alla %s-användare) bucket-namn (bokstäver och siffror) (och - valfritt - en sökväg) att använda för lagring. Denna bucket kommer att skapas för dig om den inte redan finns."
1616
 
1617
+ #: methods/s3.php:416
1618
  msgid "If you see errors about SSL certificates, then please go here for help."
1619
  msgstr "Om du ser fel om SSL-certifikat, gå då hit för hjälp."
1620
 
1621
+ #: methods/s3.php:427
1622
  msgid "%s access key"
1623
  msgstr "%s åtkomstnyckel"
1624
 
1625
+ #: methods/s3.php:431
1626
  msgid "%s secret key"
1627
  msgstr "%s hemlig nyckel"
1628
 
1629
+ #: methods/s3.php:435
1630
  msgid "%s location"
1631
  msgstr "%s plats"
1632
 
1633
+ #: methods/s3.php:436
1634
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
1635
  msgstr "Ange endast ett bucket-namn eller en bucket och sökväg. Exempel: mybucket, mybucket/mypath"
1636
 
1637
+ #: methods/s3.php:457
1638
  msgid "API secret"
1639
  msgstr "API-hemlighet"
1640
 
1641
+ #: methods/s3.php:478
1642
  msgid "Failure: No bucket details were given."
1643
  msgstr "Misslyckades: Inga uppgifter om bucket lämnades."
1644
 
1645
+ #: methods/s3.php:493
1646
  msgid "Region"
1647
  msgstr "Region"
1648
 
1649
+ #: methods/s3.php:511
1650
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
1651
  msgstr "Misslyckades: Vi kunde inte komma åt eller skapa en sådan bucket. Vänligen kontrollera dina användaruppgifter, och om dessa är korrekta försöka med ett annat bucket-namn (eftersom en annan %s-användare redan kan ha tagit ditt namn)."
1652
 
1653
+ #: methods/s3.php:525 methods/s3.php:537
1654
  msgid "Failure"
1655
  msgstr "Misslyckades"
1656
 
1657
+ #: methods/s3.php:525 methods/s3.php:537
1658
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
1659
  msgstr "Vi skapade din bucket med framgång, men försöket att skapa en fil i den misslyckades."
1660
 
1661
+ #: methods/s3.php:527
1662
  msgid "We accessed the bucket, and were able to create files within it."
1663
  msgstr "Vi kom åt din bucket och kunde skapa filer i den."
1664
 
1665
+ #: methods/s3.php:530
1666
  msgid "The communication with %s was encrypted."
1667
  msgstr "Kommunikationen med %s var krypterad."
1668
 
1669
+ #: methods/s3.php:532
1670
  msgid "The communication with %s was not encrypted."
1671
  msgstr "Kommunikationen med %s var inte krypterad."
1672
 
 
 
 
 
1673
  #: methods/dropbox.php:41
1674
  msgid "You do not appear to be authenticated with Dropbox"
1675
  msgstr "Du verkar inte vara autentiserad hos Dropbox"
1718
  msgid "Cloud Files container"
1719
  msgstr "Cloud Files container"
1720
 
1721
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
1722
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
1723
  msgstr "UpdraftPlus %s-modul <strong>kräver</strong> %s. Vänligen skicka ingen supportbegäran; det finns inga alternativ."
1724
 
1725
+ #: methods/cloudfiles.php:442 methods/cloudfiles.php:447
 
1726
  msgid "Failure: No %s was given."
1727
  msgstr "Misslyckades: Ingen %s angavs."
1728
 
1729
+ #: methods/cloudfiles.php:442
1730
  msgid "API key"
1731
  msgstr "API-nyckel"
1732
 
1746
  msgid "We accessed the container, and were able to create files within it."
1747
  msgstr "Vi fick åtkomst till containern, och vi kunde skapa filer i den."
1748
 
1749
+ #: methods/email.php:32
1750
  msgid "WordPress Backup"
1751
  msgstr "WordPress Backup"
1752
 
1753
+ #: methods/email.php:32
1754
  msgid "Be wary; email backups may fail because of file size limitations on mail servers."
1755
  msgstr "Var uppmärksam: epost-backuper kan misslyckas på grund av begränsningar i filstorlek hos epostservrar."
1756
 
1757
+ #: methods/email.php:48
1758
  msgid "Note:"
1759
  msgstr "Notera:"
1760
 
1761
+ #: methods/s3.php:172
 
 
 
 
1762
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
1763
  msgstr "%s upload: hämttande av uploadID för multipart-uppladdning misslyckades - se logg-fil för fler detaljer"
1764
 
1765
+ #: methods/s3.php:195
1766
  msgid "%s error: file %s was shortened unexpectedly"
1767
  msgstr "%s fel: filen %s avkortades oväntat"
1768
 
1769
+ #: methods/s3.php:205
1770
  msgid "%s chunk %s: upload failed"
1771
  msgstr "%s del %s: uppladdning misslyckades"
1772
 
1773
+ #: methods/s3.php:219
1774
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
1775
  msgstr "%s uppladdning (%s): återsammanfogning misslyckades (se logg för fler detaljer)"
1776
 
1777
+ #: methods/s3.php:223
1778
  msgid "%s re-assembly error (%s): (see log file for more)"
1779
  msgstr "%s återsammanfogningsfel (%s): (se logg-filen för mer information)"
1780
 
1781
+ #: methods/s3.php:235
1782
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
1783
  msgstr "%s Fel: Misslyckades med att skapa bucket %s. Kontrollera behörigheter och användaruppgifter."
1784
 
1844
  msgid "%s Error: Failed to open local file"
1845
  msgstr "%s Fel: Misslyckades med att öppna lokal fil"
1846
 
1847
+ #: methods/cloudfiles.php:105 methods/cloudfiles.php:147
 
1848
  msgid "%s Error: Failed to upload"
1849
  msgstr "%s Error: Misslyckades med uppladdning"
1850
 
1864
  msgid "Testing - Please Wait..."
1865
  msgstr "Testar - Var god vänta..."
1866
 
1867
+ #: methods/cloudfiles.php:371 methods/cloudfiles.php:434
 
1868
  msgid "Test %s Settings"
1869
  msgstr "Testa %s-inställningar"
1870
 
1876
  msgid "Also, you should read this important FAQ."
1877
  msgstr "Du bör också läsa denna viktiga FAQ."
1878
 
1879
+ #: methods/googledrive.php:201
1880
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
1881
  msgstr "Kontot fullt: ditt %s-konto har bara %d bytes kvar, men filen som ska laddas upp är %d bytes"
1882
 
1883
+ #: methods/googledrive.php:216
1884
  msgid "Failed to upload to %s"
1885
  msgstr "Misslyckades att ladda upp till %s"
1886
 
1904
  msgid "Account is not authorized."
1905
  msgstr "Kontot är inte godkänt."
1906
 
1907
+ #: methods/googledrive.php:442 methods/cloudfiles.php:384
1908
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
1909
  msgstr "%s är ett bra val, eftersom UpdraftPlus stöder delade uppladdningar - det spelar ingen roll hur stor din webbplats är, så kan UpdraftPlus ladda upp den lite i taget utan att avbrytas av timeouts."
1910
 
1911
+ #: restorer.php:858
1912
  msgid "will restore as:"
1913
  msgstr "kommer att återställa som:"
1914
 
1915
+ #: restorer.php:927
1916
  msgid "An error (%s) occured:"
1917
  msgstr "Ett fel (%s) uppstod:"
1918
 
1919
+ #: restorer.php:927
1920
  msgid "the database query being run was:"
1921
  msgstr "databasfrågan som kördes var:"
1922
 
1923
+ #: restorer.php:933
1924
  msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
1925
  msgstr "För många databasfel har uppstått - avbryter återställning (du måste återställa manuellt)"
1926
 
1927
+ #: restorer.php:941
1928
  msgid "Database lines processed: %d in %.2f seconds"
1929
  msgstr "Databasrader som bearbetats: %d på %2f sekunder"
1930
 
1931
+ #: restorer.php:884
1932
  msgid "Finished: lines processed: %d in %.2f seconds"
1933
  msgstr "Klart: rader som bearbetats: %d på %2f sekunder"
1934
 
1935
+ #: restorer.php:985 restorer.php:1006
1936
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
1937
  msgstr "Tabellprefix har ändrats: ändrar %s tabellfält motsvarande:"
1938
 
1939
+ #: restorer.php:989 restorer.php:1032 admin.php:1911 admin.php:1935
1940
+ #: admin.php:2813 admin.php:2826
1941
  msgid "OK"
1942
  msgstr "OK"
1943
 
1946
  msgstr "Du behöver åter-autentisera med %s eftersom dina befintliga användaruppgifter inte fungerar."
1947
 
1948
  #: methods/webdav.php:13 methods/webdav.php:34 methods/webdav.php:50
1949
+ #: methods/sftp.php:12 methods/sftp.php:32 methods/sftp.php:47
1950
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
1951
  msgstr "Du har inte UpdraftPuls %s-insticksprogrammet installerat - skaffa det från %s"
1952
 
1953
+ #: methods/webdav.php:63 methods/sftp.php:60
1954
  msgid "%s support is available as an add-on"
1955
  msgstr "%s support finns tillgängligt som tillval"
1956
 
1957
+ #: methods/webdav.php:63 methods/sftp.php:60
1958
  msgid "follow this link to get it"
1959
  msgstr "följ denna länk för att skaffa det"
1960
 
1961
+ #: methods/googledrive.php:115
1962
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
1963
  msgstr "Ingen refresh token mottogs från Google. Det betyder oftast att du matat in din client-hemlighet fel, eller att du inte har återautentiserat (nedan) sedan du korrigerade den. Markera den igen, följ sedan länken för att autentisera igen. Slutligen, om det inte fungerar, använd expert-läget för att rensa alla dina inställningar, skapa en ny Google client ID/hemlighet och börja om igen."
1964
 
1965
+ #: methods/googledrive.php:124
1966
  msgid "Authorization failed"
1967
  msgstr "Godkännande misslyckades"
1968
 
1969
+ #: methods/googledrive.php:145
1970
  msgid "Your %s quota usage: %s %% used, %s available"
1971
  msgstr "Din %s tilldelningsanvändning: %s %% använt, %s tillgängligt"
1972
 
1973
+ #: methods/googledrive.php:151 methods/cloudfiles.php:498
1974
  msgid "Success"
1975
  msgstr "Framgång"
1976
 
1977
+ #: methods/googledrive.php:151
1978
  msgid "you have authenticated your %s account."
1979
  msgstr "du har autentiserat ditt %s-konto."
1980
 
1981
+ #: methods/googledrive.php:167 methods/googledrive.php:232
1982
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
1983
  msgstr "Har ännu inte fått något åtkomstbevis från Google - du måste godkänna och återgodkänna din anslutning till Google Drive."
1984
 
1985
+ #: methods/googledrive.php:168 methods/googledrive.php:363
1986
  msgid "Have not yet obtained an access token from Google (has the user authorised?)"
1987
  msgstr "Har ännu inte fått något åtkomstbevis från Google (har användaren godkänt?)"
1988
 
1989
+ #: restorer.php:156
1990
  msgid "wp-config.php from backup: restoring (as per user's request)"
1991
  msgstr "wp-config.php från backup: återställer (enligt användarens önskemål)"
1992
 
1993
+ #: restorer.php:600
1994
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
1995
  msgstr "Varning: PHP safe_mode är aktivt på din server. Det betyder ökad risk för timeouts. Om sådana inträffar kommer du att behöva manuellt återställa filen via phpMyAdmin eller annan metod."
1996
 
1997
+ #: restorer.php:605
1998
  msgid "Failed to find database file"
1999
  msgstr "Hittade inte databasfil"
2000
 
2001
+ #: restorer.php:611
2002
  msgid "Failed to open database file"
2003
  msgstr "Kunde inte öppna databasfil"
2004
 
2005
+ #: restorer.php:635
2006
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
2007
  msgstr "Databas-åtkomst: Direkt MySQL-åtkomst är inte tillgängligt, så vi faller tillbaka till wpdb (detta kommer att vara betydligt långsammare)"
2008
 
2009
+ #: restorer.php:710 admin.php:945
2010
  msgid "Backup of:"
2011
  msgstr "Backup av:"
2012
 
2013
+ #: restorer.php:718 restorer.php:789
2014
  msgid "Old table prefix:"
2015
  msgstr "Prefix för gamla tabeller:"
2016
 
2017
+ #: admin.php:2823
2018
  msgid "Archive is expected to be size:"
2019
  msgstr "Arkivet förväntas ha storleken:"
2020
 
2021
+ #: admin.php:2831
2022
  msgid "The backup records do not contain information about the proper size of this file."
2023
  msgstr "Backupnoteringarna innehåller ingen information om den rätta storleken på den här filen."
2024
 
2025
+ #: admin.php:2878
2026
  msgid "Error message"
2027
  msgstr "Felmeddelande"
2028
 
2029
+ #: admin.php:2834 admin.php:2835
2030
  msgid "Could not find one of the files for restoration"
2031
  msgstr "Kunde inte hitta en av filerna för återskapning"
2032
 
2086
  msgid "Failed to create a temporary directory"
2087
  msgstr "Misslyckades skapa tillfällig katalog"
2088
 
2089
+ #: restorer.php:94
2090
  msgid "Failed to write out the decrypted database to the filesystem"
2091
  msgstr "Misslyckades med att skriva ut den avkrypterade databasen till filsystemet"
2092
 
2093
+ #: restorer.php:152
2094
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
2095
  msgstr "wp-config.php från backup: återskapas som wp-config-backup.php"
2096
 
2097
+ #: admin.php:2345
2098
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
2099
  msgstr "Väljer du detta alternativ minskar säkerheten då du stoppar UpdraftPlus helt från att använda SSL för autentisering och krypterad transport, där det är möjligt. Notera att vissa molnlagringstjänster inte tillåter detta (exempelvis Dropbox), så för dessa tjänster kommer denna inställning inte att ha någon effekt."
2100
 
2101
+ #: admin.php:2369
2102
  msgid "Save Changes"
2103
  msgstr "Spara Ändringar"
2104
 
2105
+ #: methods/googledrive.php:452 methods/cloudfiles.php:394
2106
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
2107
  msgstr "Din webbservers PHP-installation saknar en nödvändig modul (%s). Vänligen kontakta ditt webbhotells support."
2108
 
2109
+ #: admin.php:2403
2110
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
2111
  msgstr "Din webbservers PHP/Curl-installation stöder inte https-åtkomst. Kommunikationen med %s kommer att vara okrypterad. Be ditt webbhotell installera Curl/SSL för att kunna kryptera (via ett insticksprogram)."
2112
 
2113
+ #: admin.php:2405
2114
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
2115
  msgstr "Din webbservers PHP/Curl-installation stöder inte https-åtkomst. Vi kan inte komma åt %s utan detta stöd. Vänligen kontakta ditt webbhotells support. %s <strong>kräver</strong> Curl+https. Vänligen skicka ingen supportbegäran; det finns inget alternativ."
2116
 
2117
+ #: admin.php:2408
2118
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
2119
  msgstr "Goda nyheter: Din webbplats kommunikation med %s kan krypteras. Om du ser några fel som rör krypteringen, titta i 'Expert-Inställningar' för mer hjälp."
2120
 
2121
+ #: admin.php:2491
2122
  msgid "Delete this backup set"
2123
  msgstr "Ta bort detta backup-set"
2124
 
2125
+ #: admin.php:2546
2126
  msgid "Press here to download"
2127
  msgstr "Tryck här för att ladda ner"
2128
 
2129
+ #: admin.php:2519 admin.php:2574
2130
  msgid "(No %s)"
2131
  msgstr "(Inga %s)"
2132
 
2133
+ #: admin.php:2582
2134
  msgid "Backup Log"
2135
  msgstr "Backup-Logg"
2136
 
2137
+ #: admin.php:2603
2138
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
2139
  msgstr "Efter att ha tryckt på denna knapp kommer du att ges möjlighet att välja vilka komponenter du önskar återställa"
2140
 
2141
+ #: admin.php:2694
2142
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
2143
  msgstr "Denna backup existerar inte i backup-historiken - återställning avbryts. Tidsstämpel:"
2144
 
2145
+ #: admin.php:2729
2146
  msgid "UpdraftPlus Restoration: Progress"
2147
  msgstr "UpdraftPlus Återställning: Pågår"
2148
 
2149
+ #: admin.php:2756
2150
  msgid "ABORT: Could not find the information on which entities to restore."
2151
  msgstr "AVBRYT: Kunde inte hitta information om vilka enheter som ska återställas."
2152
 
2153
+ #: admin.php:2757
2154
  msgid "If making a request for support, please include this information:"
2155
  msgstr "Om du begär support, vänligen inkludera denna information:"
2156
 
2157
+ #: admin.php:2339
2158
  msgid "Do not verify SSL certificates"
2159
  msgstr "Verifiera inte SSL-certifikat"
2160
 
2161
+ #: admin.php:2340
2162
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
2163
  msgstr "Väljer du detta alternativ minskar du säkerheten genom att du stoppar UpdraftPlus från att verifiera identiteten hos krypterade webbplatser som den ansluter till (exempelvis Dropbox, Google Drive). Det betyder att UpdraftPlus bara kommer att använda SSL för kryptering av trafik, inte för autentisering."
2164
 
2165
+ #: admin.php:2340
2166
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
2167
  msgstr "Notera att inte alla molnbackuptjänster nödvändigtvis använder SSL-autentisering."
2168
 
2169
+ #: admin.php:2344
2170
  msgid "Disable SSL entirely where possible"
2171
  msgstr "Stäng av SSL helt där det är möjligt"
2172
 
2173
+ #: admin.php:2291
2174
  msgid "Expert settings"
2175
  msgstr "Expert-Inställningar"
2176
 
2177
+ #: admin.php:2292
2178
  msgid "Show expert settings"
2179
  msgstr "Visa expert-inställningar"
2180
 
2181
+ #: admin.php:2292
2182
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
2183
  msgstr "klicka denna för att visa några ytterligare alternativ; men låt bli såvida du inte har problem eller är nyfiken."
2184
 
2185
+ #: admin.php:2307
2186
  msgid "Delete local backup"
2187
  msgstr "Ta bort lokal backup"
2188
 
2189
+ #: admin.php:2312
2190
  msgid "Backup directory"
2191
  msgstr "Backup-katalog"
2192
 
2193
+ #: admin.php:2319
2194
  msgid "Backup directory specified is writable, which is good."
2195
  msgstr "Backup-katalogen som specificerades är skrivbar, vilket är bra."
2196
 
2197
+ #: admin.php:2327
2198
  msgid "Click here to attempt to create the directory and set the permissions"
2199
  msgstr "Klicka här för att försöka skapa katalogen och ställa in behörigheterna"
2200
 
2201
+ #: admin.php:2327
2202
  msgid "or, to reset this option"
2203
  msgstr "eller, för att nollställa detta alternativ"
2204
 
2205
+ #: admin.php:2327
2206
  msgid "click here"
2207
  msgstr "klicka här"
2208
 
2209
+ #: admin.php:2327
2210
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
2211
  msgstr "Om detta inte lyckas kontrollera behörigheterna på din server eller ändra den till en annan katalog som är skrivbar för din webbserverprocess."
2212
 
2213
+ #: admin.php:2334
2214
  msgid "Use the server's SSL certificates"
2215
  msgstr "Använd serverns SSL-certifikat"
2216
 
2217
+ #: admin.php:2335
2218
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
2219
  msgstr "Vanligtvis använder UpdraftPlus sin egen uppsättning SSL-certifikat för att verifiera identiteten hos fjärrwebbplatser (för att säkerställa att den talar med det verkliga Dropbox, Amazon S3 osv och inte en hackare). Vi håller dessa uppdaterade. Men om du råkar ut för ett SSL-fel, då kan detta alternativ (som får UpdraftPlus att använda din webbservers uppsättning istället) kanske hjälpa."
2220
 
2221
+ #: admin.php:2135
2222
  msgid "Use WordShell for automatic backup, version control and patching"
2223
  msgstr "Använd WordShell för automatisk backup, versionskontroll och patchning."
2224
 
2225
+ #: admin.php:2139 udaddons/options.php:95
2226
  msgid "Email"
2227
  msgstr "Epost"
2228
 
2229
+ #: admin.php:2144
2230
  msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
2231
  msgstr "Ange en adress här för att få en rapport (och hela backupen, om du väljer det) skickad till."
2232
 
2233
+ #: admin.php:2163
2234
  msgid "Database encryption phrase"
2235
  msgstr "Fras för databaskryptering"
2236
 
2237
+ #: admin.php:2174
2238
  msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
2239
  msgstr "Om du matar in text här så används den för att kryptera backuper (Rijndael). <strong>Gör en separat notering av det och slarva inte bort den, eller så <em>kommer</em> alla dina backuper att bli oanvändbara.</strong> För närvarande är bara databasfilen krypterad. Detta är också den nyckel som används för att avkryptera backuper från detta administrationsgränssnitt (så om du ändrar den så kommer den automatiska avkrypteringen inte att fungera förrän då ändrar den tillbaka)."
2240
 
2241
+ #: admin.php:2174
2242
  msgid "You can also decrypt a database manually here."
2243
  msgstr "Du kan också avkryptera en databas manuellt här."
2244
 
2245
+ #: admin.php:2186
2246
  msgid "Manually decrypt a database backup file"
2247
  msgstr "Avkryptera en databas-backupfil manuellt"
2248
 
2249
+ #: admin.php:2193
2250
  msgid "Use decryption key"
2251
  msgstr "Använd avkrypteringsnyckel"
2252
 
2253
+ #: admin.php:2207
2254
  msgid "Copying Your Backup To Remote Storage"
2255
  msgstr "Kopiering av Din Backup Till Fjärrlagring"
2256
 
2257
+ #: admin.php:2217
2258
  msgid "Choose your remote storage"
2259
  msgstr "Välj din fjärrlagringsplats"
2260
 
2261
+ #: admin.php:2226
2262
  msgid "None"
2263
  msgstr "Ingen"
2264
 
2265
+ #: admin.php:114
2266
  msgid "Cancel"
2267
  msgstr "Avbryt"
2268
 
2269
+ #: admin.php:100
2270
  msgid "Requesting start of backup..."
2271
  msgstr "Begär start av backup..."
2272
 
2273
+ #: admin.php:2284
2274
  msgid "Advanced / Debugging Settings"
2275
  msgstr "Avancerat / Avbuggningsinställningar"
2276
 
2277
+ #: admin.php:2287
2278
  msgid "Debug mode"
2279
  msgstr "Avbuggningsläge"
2280
 
2281
+ #: admin.php:2288
2282
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
2283
  msgstr "Markera denna för att få mer information och epost om backup-processen - användbart om något går fel. Du <strong>måste</strong> skicka oss denna logg om du skickar in en felrapport."
2284
 
2285
+ #: admin.php:2135
2286
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
2287
  msgstr "Ovanstående kataloger är allt, förutom WordPress-kärnan, som du kan ladda ner ånyo från WordPress.org."
2288
 
2289
+ #: admin.php:2066
 
 
 
 
2290
  msgid "Daily"
2291
  msgstr "Dagligen"
2292
 
2293
+ #: admin.php:2066
2294
  msgid "Weekly"
2295
  msgstr "Varje vecka"
2296
 
2297
+ #: admin.php:2066
2298
  msgid "Fortnightly"
2299
  msgstr "Var 14:e dag"
2300
 
2301
+ #: admin.php:2066
2302
  msgid "Monthly"
2303
  msgstr "Månatligen"
2304
 
2305
+ #: admin.php:2075 admin.php:2093
2306
  msgid "and retain this many backups"
2307
  msgstr "och behåll så här många backuper"
2308
 
2309
+ #: admin.php:2082
2310
  msgid "Database backup intervals"
2311
  msgstr "Intervaller för databas-backup"
2312
 
2313
+ #: admin.php:2100
2314
  msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
2315
  msgstr "Om du vill schemalägga backuper automatiskt, välj scheman från rullgardinsmenyerna ovan. Backuper sker i enlighet med specificerade intervaller. Om de två schemana är samma, då kommer båda backuperna att ske tillsammans. OM du väljer \"manuellt\" måste du klicka \"Gör Backup Nu\"-knappen när du vill att en backup ska göras."
2316
 
2317
+ #: admin.php:2101
2318
  msgid "To fix the time at which a backup should take place,"
2319
  msgstr "För att bestämma vid vilken tidpunkt en backup ska göras,"
2320
 
2321
+ #: admin.php:2101
2322
  msgid "e.g. if your server is busy at day and you want to run overnight"
2323
  msgstr "exempelvis om din server är hårt belastad dagtid och du vill köra den under natten"
2324
 
2325
+ #: admin.php:2101
2326
  msgid "use the \"Fix Time\" add-on"
2327
  msgstr "använd \"Fastställ Tid\"-insticksprogrammet"
2328
 
2329
+ #: admin.php:2105
2330
  msgid "Include in files backup"
2331
  msgstr "Inkludera i filbackupen"
2332
 
2333
+ #: admin.php:2115
2334
  msgid "Any other directories found inside wp-content"
2335
  msgstr "Varje annan katalog som hittas inuti wp-content"
2336
 
2337
+ #: admin.php:2121
2338
  msgid "Exclude these:"
2339
  msgstr "Exkludera dessa:"
2340
 
2341
+ #: admin.php:1706
2342
  msgid "Debug Database Backup"
2343
  msgstr "Avbugga Databas-backup"
2344
 
2345
+ #: admin.php:1706
2346
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
2347
  msgstr "Detta orsakar en omedelbar databas-backup. Sidan kommer att frysas under laddning till dess att den är klar (alltså ej schemalagt). Backupen kan mycket väl råka ut för timeout; denna knapp är enbart bra till att kontrollera att backupen klarar att ta sig igenom de inledande stegen, eller för små WordPress-webbplatser..."
2348
 
2349
+ #: admin.php:1712
2350
  msgid "Wipe Settings"
2351
  msgstr "Radera Inställningar"
2352
 
2353
+ #: admin.php:1713
2354
  msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2355
  msgstr "Denna knapp tar bort alla UpdraftPlus-inställningar (men inte några av dina befintliga backuper från din molnlagringstjänst). Du kommer sedan behöva göra om alla inställningar igen. Du kan också göra detta innan du avaktiverar eller avinstallerar UpdraftPlus om du så önskar."
2356
 
2357
+ #: admin.php:1716
2358
  msgid "Wipe All Settings"
2359
  msgstr "Radera Alla Inställningar"
2360
 
2361
+ #: admin.php:1716
2362
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
2363
  msgstr "Detta raderar alla dina UpdraftPlus-inställningar - är du säker på att du vill göra detta?"
2364
 
2365
+ #: admin.php:1867
2366
  msgid "show log"
2367
  msgstr "visa logg"
2368
 
2369
+ #: admin.php:1869
2370
  msgid "delete schedule"
2371
  msgstr "ta bort schema"
2372
 
2373
+ #: admin.php:115 admin.php:1905 admin.php:1930
2374
  msgid "Delete"
2375
  msgstr "Ta bort"
2376
 
2377
+ #: admin.php:1971
2378
  msgid "The request to the filesystem to create the directory failed."
2379
  msgstr "Begäran till filsystemet att skapa katalogen misslyckades."
2380
 
2381
+ #: admin.php:1985
2382
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
2383
  msgstr "Katalogen skapades, men vi var tvingade att ställa behörigheten till 777 (skrivbart för alla) för att kunna skriva till den. Du bör kontrollera med ditt webbhotell att detta inte kommer att orsaka några problem"
2384
 
2385
+ #: admin.php:1989
2386
  msgid "The folder exists, but your webserver does not have permission to write to it."
2387
  msgstr "Katalogen existerar, men din webbserver har inte behörighet att skriva till den."
2388
 
2389
+ #: admin.php:1989
2390
  msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
2391
  msgstr "Du kommer att behöva konsultera ditt webbhotell för att få veta hur du ställer in behörighet för ett WordPress-tillägg att skriva till katalogen."
2392
 
2393
+ #: admin.php:2043
2394
  msgid "Download log file"
2395
  msgstr "Ladda ner logg-fil"
2396
 
2397
+ #: admin.php:2047
2398
  msgid "No backup has been completed."
2399
  msgstr "Ingen backup har slutförts."
2400
 
2401
+ #: admin.php:2063
2402
  msgid "File backup intervals"
2403
  msgstr "Intervall för fil-backuper"
2404
 
2405
+ #: admin.php:2066
2406
  msgid "Manual"
2407
  msgstr "Manell"
2408
 
2409
+ #: admin.php:2066
2410
  msgid "Every 4 hours"
2411
  msgstr "Var 4:e timma"
2412
 
2413
+ #: admin.php:2066
2414
  msgid "Every 8 hours"
2415
  msgstr "Var 8.e timma"
2416
 
2417
+ #: admin.php:2066
2418
  msgid "Every 12 hours"
2419
  msgstr "Var 12:e timma"
2420
 
2421
+ #: admin.php:1617
2422
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
2423
  msgstr "För att fortsätta, tryck 'Ta Backup Nu' Titta sedan på 'Sista Logg-Meddelande'-fältet för aktivitet efter ungefär 10 sekunder. WordPress bör börja köra backupen i bakgrunden."
2424
 
2425
+ #: admin.php:1624
 
 
 
 
2426
  msgid "Go here for help."
2427
  msgstr "Gå hit för hjälp."
2428
 
2429
+ #: admin.php:1630
2430
  msgid "Multisite"
2431
  msgstr "Multisajt"
2432
 
2433
+ #: admin.php:1634
2434
  msgid "Do you need WordPress Multisite support?"
2435
  msgstr "Behöver du WordPress Multisajt-support?"
2436
 
2437
+ #: admin.php:1634
2438
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
2439
  msgstr "Vänligen ta en titt på UpdraftPlus Premium, eller det fristående Multisajt-insticksprogrammet."
2440
 
2441
+ #: admin.php:1639
2442
  msgid "Configure Backup Contents And Schedule"
2443
  msgstr "Konfigurera Backup-Innehåll Och Schemalägg"
2444
 
2445
+ #: admin.php:1645
2446
  msgid "Debug Information And Expert Options"
2447
  msgstr "Avbuggnings-Information Och Expert-Alternativ"
2448
 
2449
+ #: admin.php:1648
2450
  msgid "Web server:"
2451
  msgstr "Webbserver:"
2452
 
2453
+ #: admin.php:1651
2454
  msgid "Peak memory usage"
2455
  msgstr "Högsta minnesanvändning"
2456
 
2457
+ #: admin.php:1652
2458
  msgid "Current memory usage"
2459
  msgstr "Nuvarande minnesanvändning"
2460
 
2461
+ #: admin.php:1653
2462
  msgid "PHP memory limit"
2463
  msgstr "PHP minnesgräns"
2464
 
2465
+ #: admin.php:1654 admin.php:1656
2466
  msgid "%s version:"
2467
  msgstr "%s version:"
2468
 
2469
+ #: admin.php:1659 admin.php:1661 admin.php:1668
2470
  msgid "Yes"
2471
  msgstr "Ja"
2472
 
2473
+ #: admin.php:1661 admin.php:1668
2474
  msgid "No"
2475
  msgstr "Nej"
2476
 
2477
+ #: admin.php:1664
2478
  msgid "PHP has support for ZipArchive::addFile:"
2479
  msgstr "PHP har stöd för ZipArchive::addFile:"
2480
 
2481
+ #: admin.php:1679
2482
  msgid "Total (uncompressed) on-disk data:"
2483
  msgstr "Total (okomprimerad) data på disk:"
2484
 
2485
+ #: admin.php:1680
2486
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
2487
  msgstr "Notera. Denna siffra baseras på vad som exkluderades eller inte senast du sparade alternativen."
2488
 
2489
+ #: admin.php:1687
2490
  msgid "count"
2491
  msgstr "räkna"
2492
 
2493
+ #: admin.php:1693
2494
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
2495
  msgstr "Knapparna nedan kommer omedelbart att utföra en backup-körning, oberoende av WordPress egen schemaläggare. Om dessa fungerar medan dina schemalagda backuper och \"Ta Backup Nu\"-knappen gör absolut ingenting (alltså inte ens producerar en logg-fil), då betyder det att din schemaläggare är trasig. Du bör avaktivera alla andra tillägg, och försöka \"Ta Backup Nu\"-knappen. Om det inte fungerar, kontakta ditt webbhotell och fråga dem om de har avaktiverat wp-cron. Om det fungerar, så återaktivera dina andra tillägg ett efter ett för att hitta vilket som orsakar problemet och rapportera felet till dem."
2496
 
2497
+ #: admin.php:1701
2498
  msgid "Debug Full Backup"
2499
  msgstr "Avbugga Hel Backup"
2500
 
2501
+ #: admin.php:1701
2502
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
2503
  msgstr "Detta orsakar en omedelbar backup. Sidan kommer att frysa under laddning tills den är klar (alltså ej schemalagt)."
2504
 
2505
+ #: admin.php:1489
2506
  msgid "UpdraftPlus - Upload backup files"
2507
  msgstr "UpdraftPlus - Ladda upp backup-filer"
2508
 
2509
+ #: admin.php:1490
2510
  msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
2511
  msgstr "Ladda upp filer till UpdraftPlus. Använd denna för att importera backuper gjorda på en annan WordPress-installation"
2512
 
2513
+ #: admin.php:1495 admin.php:2191
 
 
 
 
2514
  msgid "or"
2515
  msgstr "eller"
2516
 
2517
+ #: admin.php:85
2518
  msgid "calculating..."
2519
  msgstr "beräknar..."
2520
 
2521
+ #: restorer.php:556 admin.php:93 admin.php:2828 admin.php:2846
2522
  msgid "Error:"
2523
  msgstr "Fel:"
2524
 
2525
+ #: admin.php:95
2526
  msgid "You should:"
2527
  msgstr "Du bör:"
2528
 
2529
+ #: admin.php:99
2530
  msgid "Download error: the server sent us a response which we did not understand."
2531
  msgstr "Nedladdningsfel: servern skickade oss ett svar som vi inte kunde förstå."
2532
 
2533
+ #: admin.php:1515
2534
  msgid "Delete backup set"
2535
  msgstr "Ta bort backup-set"
2536
 
2537
+ #: admin.php:1518
2538
  msgid "Are you sure that you wish to delete this backup set?"
2539
  msgstr "Är du säker på att du vill ta bort detta backup-set?"
2540
 
2541
+ #: admin.php:1533
2542
  msgid "Restore backup"
2543
  msgstr "Återställ backup"
2544
 
2545
+ #: admin.php:1534
2546
  msgid "Restore backup from"
2547
  msgstr "Återställ backup från"
2548
 
2549
+ #: admin.php:1546
2550
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
2551
  msgstr "Återställning ersätter denna webbplats teman, tillägg, uppladdningar, databas och/eller andra innehållskataloger (i enlighet med vad detta backup-set innehåller, och baserat på dina val)."
2552
 
2553
+ #: admin.php:1546
2554
  msgid "Choose the components to restore"
2555
  msgstr "Välj komponenter att återställa"
2556
 
2557
+ #: admin.php:1555
2558
  msgid "Your web server has PHP's so-called safe_mode active."
2559
  msgstr "Din webbserver har PHP:s så kallade safe_mode aktivt."
2560
 
2561
+ #: admin.php:1555
2562
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
2563
  msgstr "Detta gör att time-outs blir mer sannolika. Du rekommenderas att stänga av safe_mode, eller att bara återställa en entitet åt gången, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">eller att återställa manuellt</a>."
2564
 
2565
+ #: admin.php:1568
2566
  msgid "The following entity cannot be restored automatically: \"%s\"."
2567
  msgstr "Följande entitet kunde inte återställas automatiskt: \"%s\"."
2568
 
2569
+ #: admin.php:1568
2570
  msgid "You will need to restore it manually."
2571
  msgstr "Du kommer att behöva återställa den manuellt."
2572
 
2573
+ #: admin.php:1575
2574
  msgid "%s restoration options:"
2575
  msgstr "%s återställningsalternativ:"
2576
 
2577
+ #: admin.php:1583
2578
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
2579
  msgstr "Du kan söka och ersätta din databas (för migrering av en webbplats till en ny plats/URL) med Migrator-insticksprogrammet - följ denna länk för mer information"
2580
 
2581
+ #: admin.php:1594
2582
  msgid "Do read this helpful article of useful things to know before restoring."
2583
  msgstr "Läs denna hjälpsamma artikel om användbara saker att veta innan du börjar återställa."
2584
 
2585
+ #: admin.php:1616
2586
  msgid "Perform a one-time backup"
2587
  msgstr "Utför en engångs-backup"
2588
 
2589
+ #: admin.php:1413
2590
  msgid "Time now"
2591
  msgstr "Tid nu"
2592
 
2593
+ #: admin.php:113 admin.php:1423
2594
  msgid "Backup Now"
2595
  msgstr "Ta Backup Nu"
2596
 
2597
+ #: admin.php:117 admin.php:1430 admin.php:2603
2598
  msgid "Restore"
2599
  msgstr "Återställ"
2600
 
2601
+ #: admin.php:1441
2602
  msgid "Last log message"
2603
  msgstr "Senaste logg-meddelandet"
2604
 
2605
+ #: admin.php:1443
2606
  msgid "(Nothing yet logged)"
2607
  msgstr "(Inget loggat ännu)"
2608
 
2609
+ #: admin.php:1444
2610
  msgid "Download most recently modified log file"
2611
  msgstr "Ladda ner den senast modifierade loggfilen"
2612
 
2613
+ #: admin.php:1455
2614
  msgid "Backups, logs & restoring"
2615
  msgstr "Backuper, loggar & återställning"
2616
 
2617
+ #: admin.php:1456
2618
  msgid "Press to see available backups"
2619
  msgstr "Tryck för att se tillgängliga backuper"
2620
 
2621
+ #: admin.php:741 admin.php:796 admin.php:1456
2622
  msgid "%d set(s) available"
2623
  msgstr "%d set tillgängliga"
2624
 
2625
+ #: admin.php:1472
2626
  msgid "Downloading and restoring"
2627
  msgstr "Nedladdning och Återställning"
2628
 
2629
+ #: admin.php:1477
2630
  msgid "Downloading"
2631
  msgstr "Nedleddning"
2632
 
2633
+ #: admin.php:1477
2634
  msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
2635
  msgstr "När du trycker en knapp för Databas/Tillägg/Teman/Uppladdningar/Annat kommer UpdraftPlus försöka hämta tillbaka backup-filen från fjärrlagringen (om sådan finns - till exempel Amazon S3, Dropbox, Google Drive, FTP) till din webbserver. Du kommer då att kunna ladda ner den till din dator. Om hämtningen från fjärrlagringsplatsen slutar framskrida (vänta 30 sekunder för att vara säker), tryck då igen för att återuppta. Kom ihåg att du kan också besöka lagringstjänstföretagets webbsida direkt."
2636
 
2637
+ #: admin.php:1478
 
 
 
 
 
 
 
 
2638
  msgid "More tasks:"
2639
  msgstr "Fler uppgifter:"
2640
 
2641
+ #: admin.php:1478
2642
  msgid "upload backup files"
2643
  msgstr "ladda upp backup-filer"
2644
 
2645
+ #: admin.php:1478
2646
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
2647
  msgstr "Tryck här för att titta in i din UpdraftPlus-katalog (på utrymmet i ditt webbhotell) för att se om det finns nya backup-set som du laddat upp. Var denna katalog finns ställs in med expert-inställningar nedan."
2648
 
2649
+ #: admin.php:1478
2650
  msgid "rescan folder for new backup sets"
2651
  msgstr "Scanna om en folder efter nya backup-set"
2652
 
2653
+ #: admin.php:1479
2654
  msgid "Opera web browser"
2655
  msgstr "Webbläsaren Opera"
2656
 
2657
+ #: admin.php:1479
2658
  msgid "If you are using this, then turn Turbo/Road mode off."
2659
  msgstr "Om du använder denna, stäng då av Turbo/Road-läget."
2660
 
2661
+ #: admin.php:1484
2662
  msgid "Google Drive"
2663
  msgstr "Google Drive"
2664
 
2665
+ #: admin.php:1484
2666
  msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
2667
  msgstr "Google ändrade sin behörighetsinställning i April 2013. För att ladda ner eller återställa från Google Drive, <strong>måste</strong> du först återautentisera (med länken i Google Drives konfigureringssektion)."
2668
 
2669
+ #: admin.php:1487
2670
  msgid "This is a count of the contents of your Updraft directory"
2671
  msgstr "Detta är en räkning av innehållet i din Updraft-katalog"
2672
 
2673
+ #: admin.php:1487
2674
  msgid "Web-server disk space in use by UpdraftPlus"
2675
  msgstr "Utrymme på webbservern som används av UpdraftPlus"
2676
 
2677
+ #: admin.php:1487
2678
  msgid "refresh"
2679
  msgstr "uppdatera"
2680
 
2681
+ #: admin.php:1323
2682
  msgid "By UpdraftPlus.Com"
2683
  msgstr "Av UpdraftPlus.Com"
2684
 
2685
+ #: admin.php:1323
2686
  msgid "Lead developer's homepage"
2687
  msgstr "Huvudutvecklarens hemsida"
2688
 
2689
+ #: admin.php:1323
2690
  msgid "Donate"
2691
  msgstr "Donera"
2692
 
2693
+ #: admin.php:1323
2694
  msgid "Version"
2695
  msgstr "Version"
2696
 
2697
+ #: admin.php:1333
2698
  msgid "Your backup has been restored."
2699
  msgstr "Din backup har återskapats."
2700
 
2701
+ #: admin.php:1339
 
 
 
 
2702
  msgid "Old directories successfully deleted."
2703
  msgstr "Gamla kataloger togs framgångsrikt bort."
2704
 
2705
+ #: admin.php:1342
2706
  msgid "Current limit is:"
2707
  msgstr "Nuvarande gräns är:"
2708
 
2709
+ #: admin.php:1350
2710
  msgid "Delete Old Directories"
2711
  msgstr "Ta bort Gamla Kataloger"
2712
 
2713
+ #: admin.php:1362
2714
  msgid "Existing Schedule And Backups"
2715
  msgstr "Befintligt Schema Och Backuper"
2716
 
2717
+ #: admin.php:1366
2718
  msgid "JavaScript warning"
2719
  msgstr "JavaScript-varning"
2720
 
2721
+ #: admin.php:1367
2722
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
2723
  msgstr "Detta administrationsgränssnitt använder JavaScipt i stor utsträckning. Du måste antingen aktivera det i din webbläsare eller använda en annan JavaScript-kapabel webbläsare."
2724
 
2725
+ #: admin.php:1380 admin.php:1393
2726
  msgid "Nothing currently scheduled"
2727
  msgstr "Inget schemalagt för närvarande"
2728
 
2729
+ #: admin.php:1385
2730
  msgid "At the same time as the files backup"
2731
  msgstr "Samtidigt som filbackupen"
2732
 
2733
+ #: admin.php:1409
2734
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
2735
  msgstr "Alla tider som visas i denna sektion använder WordPress konfigurerade tidszon, som du ställer in i Inställningar -> Allmänt"
2736
 
2737
+ #: admin.php:1409
2738
  msgid "Next scheduled backups"
2739
  msgstr "Nästa schemalagda backuper"
2740
 
2741
+ #: admin.php:1411
2742
  msgid "Files"
2743
  msgstr "Filer"
2744
 
2745
+ #: admin.php:572 admin.php:1412 admin.php:1572 admin.php:1575 admin.php:2506
2746
+ #: admin.php:2508 admin.php:2869
2747
  msgid "Database"
2748
  msgstr "Databas"
2749
 
2750
+ #: admin.php:312
2751
  msgid "Your website is hosted using the %s web server."
2752
  msgstr "Din webbplats körs på %s-webbservern."
2753
 
2754
+ #: admin.php:312
2755
  msgid "Please consult this FAQ if you have problems backing up."
2756
  msgstr "Vänligen konsultera denna FAQ om du har problem med att ta backuper."
2757
 
2758
+ #: admin.php:325 admin.php:329
2759
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
2760
  msgstr "Klicka här för att autentisera ditt %s-konto (du kommer inte att kunna göra backup till %s utan att göra det)."
2761
 
2762
+ #: admin.php:510 admin.php:536
2763
  msgid "Nothing yet logged"
2764
  msgstr "Inget loggat ännu."
2765
 
2766
+ #: admin.php:748
2767
  msgid "Schedule backup"
2768
  msgstr "Schemalägg backup"
2769
 
2770
+ #: admin.php:752
2771
  msgid "Failed."
2772
  msgstr "Misslyckades."
2773
 
2774
+ #: admin.php:754
2775
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
2776
  msgstr "OK. Du bör snart se aktivitet i \"Senaste Logg-meddelande\"-fältet ovan."
2777
 
2778
+ #: admin.php:754
2779
  msgid "Nothing happening? Follow this link for help."
2780
  msgstr "Händer det inget? Följ denna länk för hjälp."
2781
 
2782
+ #: admin.php:770
2783
  msgid "Job deleted"
2784
  msgstr "Jobb borttaget"
2785
 
2786
+ #: admin.php:777
2787
  msgid "Could not find that job - perhaps it has already finished?"
2788
  msgstr "Kunde inte hitta detta jobb - kanske är det redan klart?"
2789
 
2790
+ #: restorer.php:987 restorer.php:1030 admin.php:788 admin.php:2811
2791
  msgid "Error"
2792
  msgstr "Fel"
2793
 
2794
+ #: admin.php:827
2795
  msgid "Download failed"
2796
  msgstr "Nedladdning misslyckades"
2797
 
2798
+ #: admin.php:94 admin.php:845
2799
  msgid "File ready."
2800
  msgstr "Filen klar."
2801
 
2802
+ #: admin.php:853
2803
  msgid "Download in progress"
2804
  msgstr "Nedladdning pågår"
2805
 
2806
+ #: admin.php:856
2807
  msgid "No local copy present."
2808
  msgstr "Ingen lokal kopia närvarande."
2809
 
2810
+ #: admin.php:1132
2811
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2812
  msgstr "Felaktigt filnamnsformat - detta ser inte ut som en fil skapad av UpdraftPlus"
2813
 
2814
+ #: admin.php:1219
2815
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2816
  msgstr "Felaktigt filnamnsformat - detta ser inte ut som en krypterad databasfil skapad av UpdraftPlus"
2817
 
2818
+ #: admin.php:1248
2819
  msgid "Restore successful!"
2820
  msgstr "Återställningen lyckades!"
2821
 
2822
+ #: admin.php:1249 admin.php:1275 admin.php:1294
2823
  msgid "Actions"
2824
  msgstr "Aktiviteter"
2825
 
2826
+ #: admin.php:1249 admin.php:1254 admin.php:1275 admin.php:1294
2827
  msgid "Return to UpdraftPlus Configuration"
2828
  msgstr "Återvänd till UpdraftPlus-konfiguration"
2829
 
2830
+ #: admin.php:1264
2831
  msgid "Remove old directories"
2832
  msgstr "Ta bort gamla kataloger"
2833
 
2834
+ #: admin.php:1270
2835
  msgid "Old directories successfully removed."
2836
  msgstr "Gamla kataloger togs bort med framgång."
2837
 
2838
+ #: admin.php:1273
2839
  msgid "Old directory removal failed for some reason. You may want to do this manually."
2840
  msgstr "Borttagning av gamla kataloger misslyckades av någon anledning. Du kan vilja göra detta manuellt."
2841
 
2842
+ #: admin.php:1285
2843
  msgid "Backup directory could not be created"
2844
  msgstr "Backup-katalog kunde inte skapas"
2845
 
2846
+ #: admin.php:1292
2847
  msgid "Backup directory successfully created."
2848
  msgstr "Backup-katalog skapades framgångsrikt."
2849
 
2850
+ #: admin.php:1316
2851
  msgid "Your settings have been wiped."
2852
  msgstr "Dina inställningar har raderats."
2853
 
2854
+ #: updraftplus.php:2069 updraftplus.php:2075
2855
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
2856
  msgstr "Vänligen hjälp UpdraftPlus genom att ge ett positivt omdöme på wordpress.org"
2857
 
2858
+ #: updraftplus.php:2082
2859
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
2860
  msgstr "Behöver du ännu fler funktioner och support? Ta en titt på UpdraftPlus Premium"
2861
 
2862
+ #: updraftplus.php:2092
2863
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
2864
  msgstr "Ta en titt på UpdraftPlus.Com för hjälp, insticksprogram och support"
2865
 
2866
+ #: updraftplus.php:2095
2867
  msgid "Want to say thank-you for UpdraftPlus?"
2868
  msgstr "Vill du säga tack för UpdraftPlus?"
2869
 
2870
+ #: updraftplus.php:2095
2871
  msgid "Please buy our very cheap 'no adverts' add-on."
2872
  msgstr "Köp gärna vårt billiga 'inga annonser'-insticksprogram."
2873
 
2874
+ #: backup.php:1168
2875
  msgid "Infinite recursion: consult your log for more information"
2876
  msgstr "Oändlig upprepning. konsultera din logg för mer information"
2877
 
2878
+ #: backup.php:158
2879
  msgid "Could not create %s zip. Consult the log file for more information."
2880
  msgstr "Kunde inte skapa %s-zip. Konsultera loggfilen för mer information."
2881
 
2882
+ #: admin.php:164 admin.php:186
2883
  msgid "Allowed Files"
2884
  msgstr "Tillåtna Filer"
2885
 
2886
+ #: admin.php:249
2887
  msgid "Settings"
2888
  msgstr "Inställningar"
2889
 
2890
+ #: admin.php:253
2891
  msgid "Add-Ons / Pro Support"
2892
  msgstr "Insticksprogram / Pro Support"
2893
 
2894
+ #: admin.php:296 admin.php:300 admin.php:304 admin.php:308 admin.php:312
2895
+ #: admin.php:321 admin.php:1474 admin.php:2396 admin.php:2403 admin.php:2405
2896
  msgid "Warning"
2897
  msgstr "Varning"
2898
 
2899
+ #: admin.php:304
2900
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2901
  msgstr "Du har mindre än %s ledigt diskutrymme på disken som UpdraftPlus konfigurerats att använda för att skapa backuper. UpdraftPlus kan få slut på utrymme. Kontakta ditt webbhotell för att lösa detta problem."
2902
 
2903
+ #: admin.php:308
2904
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2905
  msgstr "UpdraftPlus stöder inte officiellt versioner av WordPress före %s. Det kan fungera för dig, men om det inte gör det, var då medveten om att ingen support är tillgänglig förrän du uppgraderar WordPress."
2906
 
2907
+ #: backup.php:453
2908
  msgid "Backed up"
2909
  msgstr "Backade upp"
2910
 
2911
+ #: backup.php:453
2912
  msgid "WordPress backup is complete"
2913
  msgstr "WordPress-backup är klar"
2914
 
2915
+ #: backup.php:453
2916
  msgid "Backup contains"
2917
  msgstr "Backupen innehåller"
2918
 
2919
+ #: backup.php:453
2920
  msgid "Latest status"
2921
  msgstr "Senaste status"
2922
 
2923
+ #: backup.php:532
2924
  msgid "Backup directory (%s) is not writable, or does not exist."
2925
  msgstr "Backup-katalog (%s) är inte skrivbar, eller existerar inte."
2926
 
2927
+ #: updraftplus.php:1786
2928
  msgid "Could not read the directory"
2929
  msgstr "Kunde inte läsa katalogen"
2930
 
2931
+ #: updraftplus.php:1803
2932
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
2933
  msgstr "Kunde inte spara backup-historik eftersom vi inte har någon backup-matris. Backupen misslyckades troligen."
2934
 
2935
+ #: backup.php:1100
2936
  msgid "Could not open the backup file for writing"
2937
  msgstr "Kunde inte öppna backupfilen för skrivning"
2938
 
2939
+ #: backup.php:1135
2940
  msgid "Generated: %s"
2941
  msgstr "Genererade: %s"
2942
 
2943
+ #: backup.php:1136
2944
  msgid "Hostname: %s"
2945
  msgstr "Värdnamn: %s"
2946
 
2947
+ #: backup.php:1137
2948
  msgid "Database: %s"
2949
  msgstr "Databas: %s"
2950
 
2951
+ #: backup.php:762
2952
  msgid "Table: %s"
2953
  msgstr "Tabell: %s"
2954
 
2955
+ #: backup.php:935
 
 
 
 
2956
  msgid "Delete any existing table %s"
2957
  msgstr "Ta bort eventuell befintlig tabell %s"
2958
 
2959
+ #: backup.php:941
2960
  msgid "Table structure of table %s"
2961
  msgstr "Tabellstruktur i tabell %s"
2962
 
2963
+ #: backup.php:945
2964
  msgid "Error with SHOW CREATE TABLE for %s."
2965
  msgstr "Fel med SHOW CREATE TABLE för %s."
2966
 
2967
+ #: backup.php:1037
2968
  msgid "End of data contents of table %s"
2969
  msgstr "Slut på datainnehåll i tabell %s"
2970
 
2971
+ #: updraftplus.php:1974 restorer.php:87 admin.php:887
2972
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
2973
  msgstr "Avkryptering misslyckades. Databasfilen är krypterad, men du har inte angett någon krypteringsnyckel."
2974
 
2975
+ #: updraftplus.php:1984 restorer.php:97 admin.php:901
2976
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
2977
  msgstr "Avkryptering misslyckades. Den mest troliga anledningen är att du använt fel nyckel."
2978
 
2979
+ #: updraftplus.php:1984
2980
  msgid "The decryption key used:"
2981
  msgstr "Avkrypteringsnyckeln som användes:"
2982
 
2983
+ #: updraftplus.php:2002
2984
  msgid "File not found"
2985
  msgstr "Filen hittades ej"
2986
 
2987
+ #: updraftplus.php:2067
2988
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
2989
  msgstr "Kan du översätta? Vill du förbättra UpdraftPlus för de som talar ditt språk?"
2990
 
2991
+ #: updraftplus.php:2069 updraftplus.php:2075
2992
  msgid "Like UpdraftPlus and can spare one minute?"
2993
  msgstr "Gillar du UpdraftPlus och kan avvara en minut?"
2994
 
2995
+ #: updraftplus.php:946
2996
  msgid "Themes"
2997
  msgstr "Teman"
2998
 
2999
+ #: updraftplus.php:947
3000
  msgid "Uploads"
3001
  msgstr "Uppladdningar"
3002
 
3003
+ #: updraftplus.php:962
3004
  msgid "Others"
3005
  msgstr "Annat"
3006
 
3007
+ #: updraftplus.php:1347
3008
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
3009
  msgstr "Kunde inte skapa filer i backup-katalogen. Backup avbröts - kontrollera dina UpdraftPlus-inställningar."
3010
 
3011
+ #: backup.php:1072
3012
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
3013
  msgstr "Krypteringsfel uppstod vid kryptering av databasen. Krypteringen avbröts."
3014
 
3015
+ #: updraftplus.php:1503
3016
  msgid "The backup apparently succeeded and is now complete"
3017
  msgstr "Backupen lyckades uppenbarligen och är nu klar"
3018
 
3019
+ #: updraftplus.php:1516
3020
  msgid "The backup attempt has finished, apparently unsuccessfully"
3021
  msgstr "Backup-försöket har avslutats, uppenbarligen utan framgång"
3022
 
3023
+ #: options.php:34
3024
  msgid "UpdraftPlus Backups"
3025
  msgstr "UpdraftPlus-backuper"
3026
 
3027
+ #: updraftplus.php:400 updraftplus.php:405 updraftplus.php:410 admin.php:325
3028
+ #: admin.php:329
3029
  msgid "UpdraftPlus notice:"
3030
  msgstr "UpdraftPlus-meddelande:"
3031
 
3032
+ #: updraftplus.php:400
3033
  msgid "The log file could not be read."
3034
  msgstr "Loggfilen kunde inte läsas."
3035
 
3036
+ #: updraftplus.php:405
3037
  msgid "No log files were found."
3038
  msgstr "Ingen loggfil hittades."
3039
 
3040
+ #: updraftplus.php:410
3041
  msgid "The given file could not be read."
3042
  msgstr "Den aktuella filen kunde inte läsas."
3043
 
3044
+ #: updraftplus.php:945
3045
  msgid "Plugins"
3046
  msgstr "Tillägg"
languages/updraftplus.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: UpdraftPlus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-17 10:08+0100\n"
6
- "PO-Revision-Date: 2013-09-17 10:08+0100\n"
7
  "Last-Translator: David Anderson <contact@updraftplus.com>\n"
8
  "Language-Team: <contact@updraftplus.com>\n"
9
  "Language: \n"
@@ -14,292 +14,331 @@ msgstr ""
14
  "X-Poedit-Basepath: /home/david/MissionaryHosting/UpdraftPlus/svn/trunk\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: options.php:26
18
  msgid "UpdraftPlus Backups"
19
  msgstr ""
20
 
21
- #: updraftplus.php:361
22
- #: updraftplus.php:366
23
- #: updraftplus.php:371
24
  #: admin.php:325
25
  #: admin.php:329
26
  msgid "UpdraftPlus notice:"
27
  msgstr ""
28
 
29
- #: updraftplus.php:361
30
  msgid "The log file could not be read."
31
  msgstr ""
32
 
33
- #: updraftplus.php:366
34
  msgid "No log files were found."
35
  msgstr ""
36
 
37
- #: updraftplus.php:371
38
  msgid "The given file could not be read."
39
  msgstr ""
40
 
41
- #: updraftplus.php:496
42
- #: admin.php:321
43
- msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
 
 
 
 
 
 
44
  msgstr ""
45
 
46
- #: updraftplus.php:496
47
- msgid "You should go to the W3 Total Cache settings page and turn it off."
 
48
  msgstr ""
49
 
50
- #: updraftplus.php:504
51
  #, php-format
52
  msgid "Your free disk space is very low - only %s Mb remain"
53
  msgstr ""
54
 
55
- #: updraftplus.php:777
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  msgid "Plugins"
57
  msgstr ""
58
 
59
- #: updraftplus.php:778
60
  msgid "Themes"
61
  msgstr ""
62
 
63
- #: updraftplus.php:779
64
  msgid "Uploads"
65
  msgstr ""
66
 
67
- #: updraftplus.php:794
68
  msgid "Others"
69
  msgstr ""
70
 
71
- #: updraftplus.php:877
72
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
73
  msgstr ""
74
 
75
- #: updraftplus.php:1134
76
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
77
  msgstr ""
78
 
79
- #: updraftplus.php:1244
80
  msgid "The backup apparently succeeded and is now complete"
81
  msgstr ""
82
 
83
- #: updraftplus.php:1250
84
  msgid "The backup apparently succeeded (with warnings) and is now complete"
85
  msgstr ""
86
 
87
- #: updraftplus.php:1257
88
  msgid "The backup attempt has finished, apparently unsuccessfully"
89
  msgstr ""
90
 
91
- #: updraftplus.php:1260
92
  msgid "The backup has not finished; a resumption is scheduled"
93
  msgstr ""
94
 
95
- #: updraftplus.php:1529
96
  msgid "Could not read the directory"
97
  msgstr ""
98
 
99
- #: updraftplus.php:1546
100
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
101
  msgstr ""
102
 
103
- #: updraftplus.php:1712
104
  #: restorer.php:87
105
- #: admin.php:862
106
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
107
  msgstr ""
108
 
109
- #: updraftplus.php:1725
110
- #: restorer.php:102
111
- #: admin.php:880
112
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
113
  msgstr ""
114
 
115
- #: updraftplus.php:1725
116
  msgid "The decryption key used:"
117
  msgstr ""
118
 
119
- #: updraftplus.php:1743
120
  msgid "File not found"
121
  msgstr ""
122
 
123
- #: updraftplus.php:1800
 
 
 
 
124
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
125
  msgstr ""
126
 
127
- #: updraftplus.php:1802
128
- #: updraftplus.php:1808
129
  msgid "Like UpdraftPlus and can spare one minute?"
130
  msgstr ""
131
 
132
- #: updraftplus.php:1802
133
- #: updraftplus.php:1808
134
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
135
  msgstr ""
136
 
137
- #: updraftplus.php:1815
 
 
 
 
 
 
 
 
138
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
139
  msgstr ""
140
 
141
- #: updraftplus.php:1822
142
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
143
  msgstr ""
144
 
145
- #: updraftplus.php:1822
146
  msgid "Blog link"
147
  msgstr ""
148
 
149
- #: updraftplus.php:1822
150
  msgid "RSS link"
151
  msgstr ""
152
 
153
- #: updraftplus.php:1825
154
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
155
  msgstr ""
156
 
157
- #: updraftplus.php:1828
158
  msgid "Want to say thank-you for UpdraftPlus?"
159
  msgstr ""
160
 
161
- #: updraftplus.php:1828
162
  msgid "Please buy our very cheap 'no adverts' add-on."
163
  msgstr ""
164
 
165
- #: backup.php:84
166
  #, php-format
167
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
168
  msgstr ""
169
 
170
- #: backup.php:146
171
  #, php-format
172
  msgid "Could not create %s zip. Consult the log file for more information."
173
  msgstr ""
174
 
175
- #: backup.php:409
176
  msgid "Errors encountered:"
177
  msgstr ""
178
 
179
- #: backup.php:426
180
  msgid "Warnings encountered:"
181
  msgstr ""
182
 
183
- #: backup.php:439
184
  msgid "Backed up"
185
  msgstr ""
186
 
187
- #: backup.php:439
188
  msgid "WordPress backup is complete"
189
  msgstr ""
190
 
191
- #: backup.php:439
192
  msgid "Backup contains"
193
  msgstr ""
194
 
195
- #: backup.php:439
196
  msgid "Latest status"
197
  msgstr ""
198
 
199
- #: backup.php:508
200
  #, php-format
201
  msgid "Backup directory (%s) is not writable, or does not exist."
202
  msgstr ""
203
 
204
- #: backup.php:716
205
  msgid "The backup directory is not writable - the database backup is expected to shortly fail."
206
  msgstr ""
207
 
208
- #: backup.php:740
209
  #, php-format
210
  msgid "Table: %s"
211
  msgstr ""
212
 
213
- #: backup.php:744
214
  #, php-format
215
- msgid "Skipping non-WP table: %s"
216
  msgstr ""
217
 
218
- #: backup.php:795
 
 
 
 
 
219
  msgid "An error occurred whilst closing the final database file"
220
  msgstr ""
221
 
222
- #: backup.php:838
223
  #, php-format
224
  msgid "Delete any existing table %s"
225
  msgstr ""
226
 
227
- #: backup.php:844
228
  #, php-format
229
  msgid "Table structure of table %s"
230
  msgstr ""
231
 
232
- #: backup.php:848
233
  #, php-format
234
  msgid "Error with SHOW CREATE TABLE for %s."
235
  msgstr ""
236
 
237
- #: backup.php:878
238
- #, php-format
239
- msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
240
- msgstr ""
241
-
242
- #: backup.php:948
243
  #, php-format
244
  msgid "End of data contents of table %s"
245
  msgstr ""
246
 
247
- #: backup.php:982
248
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
249
  msgstr ""
250
 
251
- #: backup.php:1010
252
  msgid "Could not open the backup file for writing"
253
  msgstr ""
254
 
255
- #: backup.php:1044
256
  #, php-format
257
  msgid "Generated: %s"
258
  msgstr ""
259
 
260
- #: backup.php:1045
261
  #, php-format
262
  msgid "Hostname: %s"
263
  msgstr ""
264
 
265
- #: backup.php:1046
266
  #, php-format
267
  msgid "Database: %s"
268
  msgstr ""
269
 
270
- #: backup.php:1077
271
  msgid "Infinite recursion: consult your log for more information"
272
  msgstr ""
273
 
274
- #: backup.php:1089
275
  #, php-format
276
  msgid "%s: unreadable file - could not be backed up (check the file permissions)"
277
  msgstr ""
278
 
279
- #: backup.php:1095
280
  #, php-format
281
  msgid "Failed to open directory (check the file permissions): %s"
282
  msgstr ""
283
 
284
- #: backup.php:1109
285
- #: backup.php:1121
286
  #, php-format
287
  msgid "%s: unreadable file - could not be backed up"
288
  msgstr ""
289
 
290
- #: backup.php:1352
291
- #: backup.php:1588
292
  #, php-format
293
  msgid "Failed to open the zip file (%s) - %s"
294
  msgstr ""
295
 
296
- #: backup.php:1366
297
  #, php-format
298
  msgid "A very large file was encountered: %s (size: %s Mb)"
299
  msgstr ""
300
 
301
- #: backup.php:1405
302
- #: backup.php:1598
303
  msgid "A zip error occurred - check your log for more details."
304
  msgstr ""
305
 
@@ -360,7 +399,7 @@ msgid "Failed to delete working directory after restoring."
360
  msgstr ""
361
 
362
  #: restorer.php:35
363
- #: admin.php:943
364
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
365
  msgstr ""
366
 
@@ -368,410 +407,427 @@ msgstr ""
368
  msgid "Failed to create a temporary directory"
369
  msgstr ""
370
 
371
- #: restorer.php:99
372
  msgid "Failed to write out the decrypted database to the filesystem"
373
  msgstr ""
374
 
375
- #: restorer.php:157
376
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
377
  msgstr ""
378
 
379
- #: restorer.php:161
380
  msgid "wp-config.php from backup: restoring (as per user's request)"
381
  msgstr ""
382
 
383
- #: restorer.php:225
384
  #, php-format
385
  msgid "Failed to move file (check your file permissions and disk quota): %s"
386
  msgstr ""
387
 
388
- #: restorer.php:234
389
  #, php-format
390
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
391
  msgstr ""
392
 
393
- #: restorer.php:283
394
- #: restorer.php:289
395
  #, php-format
396
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
397
  msgstr ""
398
 
399
- #: restorer.php:283
400
  msgid "folder"
401
  msgstr ""
402
 
403
- #: restorer.php:289
404
  msgid "file"
405
  msgstr ""
406
 
407
- #: restorer.php:302
408
  #, php-format
409
  msgid "An existing unremoved backup from a previous restore exists: %s"
410
  msgstr ""
411
 
412
- #: restorer.php:451
413
  msgid "This directory already exists, and will be replaced"
414
  msgstr ""
415
 
416
- #: restorer.php:488
417
- #: admin.php:862
418
- #: admin.php:943
419
- #: admin.php:948
420
- #: admin.php:1099
421
- #: admin.php:1106
422
  #, php-format
423
  msgid "Error: %s"
424
  msgstr ""
425
 
426
- #: restorer.php:494
427
  msgid "Files found:"
428
  msgstr ""
429
 
430
- #: restorer.php:500
431
  msgid "Unable to enumerate files in that directory."
432
  msgstr ""
433
 
434
- #: restorer.php:542
435
  #, php-format
436
  msgid "Using directory from backup: %s"
437
  msgstr ""
438
 
439
- #: restorer.php:558
440
  msgid "Please supply the requested information, and then continue."
441
  msgstr ""
442
 
443
- #: restorer.php:561
444
- #: admin.php:97
445
- #: admin.php:2756
446
- #: admin.php:2774
447
  msgid "Error:"
448
  msgstr ""
449
 
450
- #: restorer.php:565
451
  msgid "New table prefix:"
452
  msgstr ""
453
 
454
- #: restorer.php:605
455
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
456
  msgstr ""
457
 
458
- #: restorer.php:610
459
  msgid "Failed to find database file"
460
  msgstr ""
461
 
462
- #: restorer.php:616
463
  msgid "Failed to open database file"
464
  msgstr ""
465
 
466
- #: restorer.php:640
467
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
468
  msgstr ""
469
 
470
- #: restorer.php:685
471
- #: restorer.php:700
472
- #: admin.php:1296
473
  msgid "Warning:"
474
  msgstr ""
475
 
476
- #: restorer.php:685
477
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
478
  msgstr ""
479
 
480
- #: restorer.php:700
481
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
482
  msgstr ""
483
 
484
- #: restorer.php:715
485
- #: admin.php:921
486
  msgid "Backup of:"
487
  msgstr ""
488
 
489
- #: restorer.php:719
 
 
 
 
490
  #: restorer.php:789
491
  msgid "Old table prefix:"
492
  msgstr ""
493
 
494
- #: restorer.php:731
495
- #: admin.php:948
496
  msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
497
  msgstr ""
498
 
499
- #: restorer.php:737
500
- #: admin.php:956
501
  msgid "Site information:"
502
  msgstr ""
503
 
504
- #: restorer.php:835
505
  #, php-format
506
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
507
  msgstr ""
508
 
509
- #: restorer.php:846
510
  #, php-format
511
  msgid "Restoring table (%s)"
512
  msgstr ""
513
 
514
- #: restorer.php:849
515
  msgid "will restore as:"
516
  msgstr ""
517
 
518
- #: restorer.php:875
519
  #, php-format
520
  msgid "Finished: lines processed: %d in %.2f seconds"
521
  msgstr ""
522
 
523
- #: restorer.php:896
524
  #, php-format
525
  msgid "Cannot create new tables, so skipping this command (%s)"
526
  msgstr ""
527
 
528
- #: restorer.php:901
529
  #, php-format
530
  msgid "Cannot drop tables, so deleting instead (%s)"
531
  msgstr ""
532
 
533
- #: restorer.php:916
534
  #, php-format
535
  msgid "An error (%s) occured:"
536
  msgstr ""
537
 
538
- #: restorer.php:916
539
  msgid "the database query being run was:"
540
  msgstr ""
541
 
542
- #: restorer.php:919
543
  msgid "An error occured on the first CREATE TABLE command - aborting run"
544
  msgstr ""
545
 
546
- #: restorer.php:922
547
  msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
548
  msgstr ""
549
 
550
- #: restorer.php:930
551
  #, php-format
552
  msgid "Database lines processed: %d in %.2f seconds"
553
  msgstr ""
554
 
555
- #: restorer.php:974
556
- #: restorer.php:995
557
  #, php-format
558
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
559
  msgstr ""
560
 
561
- #: restorer.php:976
562
- #: restorer.php:1023
563
- #: admin.php:769
564
- #: admin.php:2739
565
  msgid "Error"
566
  msgstr ""
567
 
568
- #: restorer.php:978
569
- #: restorer.php:1025
570
- #: admin.php:1868
571
- #: admin.php:1892
572
- #: admin.php:2741
573
- #: admin.php:2754
574
  msgid "OK"
575
  msgstr ""
576
 
577
- #: restorer.php:988
578
  #, php-format
579
  msgid "Uploads path (%s) does not exist - resetting (%s)"
580
  msgstr ""
581
 
582
- #: admin.php:87
583
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
584
  msgstr ""
585
 
586
- #: admin.php:88
 
 
 
 
 
 
 
 
587
  msgid "Unexpected response:"
588
  msgstr ""
589
 
590
- #: admin.php:89
 
 
 
 
591
  msgid "calculating..."
592
  msgstr ""
593
 
594
- #: admin.php:90
595
  msgid "Begun looking for this entity"
596
  msgstr ""
597
 
598
- #: admin.php:91
599
  msgid "Some files are still downloading or being processed - please wait."
600
  msgstr ""
601
 
602
- #: admin.php:92
603
  msgid "Processing files - please wait..."
604
  msgstr ""
605
 
606
- #: admin.php:93
607
  msgid "Error: the server sent an empty response."
608
  msgstr ""
609
 
610
- #: admin.php:94
611
  msgid "Warnings:"
612
  msgstr ""
613
 
614
- #: admin.php:95
615
  msgid "Errors:"
616
  msgstr ""
617
 
618
- #: admin.php:96
619
  msgid "Error: the server sent us a response (JSON) which we did not understand."
620
  msgstr ""
621
 
622
- #: admin.php:98
623
- #: admin.php:806
624
  msgid "File ready."
625
  msgstr ""
626
 
627
- #: admin.php:99
628
  msgid "You should:"
629
  msgstr ""
630
 
631
- #: admin.php:100
632
  msgid "Delete from your web server"
633
  msgstr ""
634
 
635
- #: admin.php:101
636
  msgid "Download to your computer"
637
  msgstr ""
638
 
639
- #: admin.php:102
640
  msgid "and then, if you wish,"
641
  msgstr ""
642
 
643
- #: admin.php:103
644
  msgid "Download error: the server sent us a response which we did not understand."
645
  msgstr ""
646
 
647
- #: admin.php:104
648
  msgid "Requesting start of backup..."
649
  msgstr ""
650
 
651
- #: admin.php:105
652
  msgid "PHP information"
653
  msgstr ""
654
 
655
- #: admin.php:106
656
  msgid "Raw backup history"
657
  msgstr ""
658
 
659
- #: admin.php:107
660
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
661
  msgstr ""
662
 
663
- #: admin.php:108
664
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
665
  msgstr ""
666
 
667
- #: admin.php:109
668
  msgid "Upload error:"
669
  msgstr ""
670
 
671
- #: admin.php:110
672
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
673
  msgstr ""
674
 
675
- #: admin.php:111
676
  msgid "Upload error"
677
  msgstr ""
678
 
679
- #: admin.php:112
680
  msgid "Follow this link to attempt decryption and download the database file to your computer."
681
  msgstr ""
682
 
683
- #: admin.php:113
684
  msgid "This decryption key will be attempted:"
685
  msgstr ""
686
 
687
- #: admin.php:114
688
  msgid "Unknown server response:"
689
  msgstr ""
690
 
691
- #: admin.php:115
692
  msgid "Unknown server response status:"
693
  msgstr ""
694
 
695
- #: admin.php:116
696
  msgid "The file was uploaded."
697
  msgstr ""
698
 
699
- #: admin.php:117
700
- #: admin.php:1392
701
  msgid "Backup Now"
702
  msgstr ""
703
 
704
- #: admin.php:118
705
  msgid "Cancel"
706
  msgstr ""
707
 
708
- #: admin.php:119
709
- #: admin.php:1862
710
- #: admin.php:1887
711
  msgid "Delete"
712
  msgstr ""
713
 
714
- #: admin.php:120
715
  msgid "Close"
716
  msgstr ""
717
 
718
- #: admin.php:121
719
- #: admin.php:1399
720
- #: admin.php:2532
721
  msgid "Restore"
722
  msgstr ""
723
 
724
- #: admin.php:137
725
- #: admin.php:287
726
  #, php-format
727
  msgid "Dismiss (for %s weeks)"
728
  msgstr ""
729
 
730
- #: admin.php:138
731
- #: admin.php:288
732
  msgid "Be safe with an automatic backup"
733
  msgstr ""
734
 
735
- #: admin.php:139
736
- #: admin.php:289
737
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
738
  msgstr ""
739
 
740
- #: admin.php:139
741
- #: admin.php:289
742
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
743
  msgstr ""
744
 
745
- #: admin.php:168
746
- #: admin.php:190
747
  msgid "Allowed Files"
748
  msgstr ""
749
 
750
- #: admin.php:253
751
  msgid "Settings"
752
  msgstr ""
753
 
754
- #: admin.php:257
755
  msgid "Add-Ons / Pro Support"
756
  msgstr ""
757
 
758
- #: admin.php:274
759
  msgid "Update Plugin"
760
  msgstr ""
761
 
762
- #: admin.php:278
763
  msgid "Update Theme"
764
  msgstr ""
765
 
 
766
  #: admin.php:300
767
  #: admin.php:304
768
  #: admin.php:308
769
  #: admin.php:312
770
  #: admin.php:321
771
- #: admin.php:1443
772
- #: admin.php:2326
773
- #: admin.php:2333
774
- #: admin.php:2335
775
  msgid "Warning"
776
  msgstr ""
777
 
@@ -780,7 +836,7 @@ msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_C
780
  msgstr ""
781
 
782
  #: admin.php:300
783
- #: admin.php:1296
784
  msgid "Go here for more information."
785
  msgstr ""
786
 
@@ -811,6 +867,10 @@ msgstr ""
811
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
812
  msgstr ""
813
 
 
 
 
 
814
  #: admin.php:321
815
  msgid "Go here to turn it off."
816
  msgstr ""
@@ -826,1180 +886,1349 @@ msgstr ""
826
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
827
  msgstr ""
828
 
829
- #: admin.php:497
830
  #, php-format
831
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
832
  msgstr ""
833
 
834
- #: admin.php:511
835
- #: admin.php:520
836
  msgid "Nothing yet logged"
837
  msgstr ""
838
 
839
- #: admin.php:532
840
  msgid "No such backup set exists"
841
  msgstr ""
842
 
843
- #: admin.php:555
844
- #: admin.php:1381
845
- #: admin.php:1541
846
- #: admin.php:1544
847
- #: admin.php:2436
848
- #: admin.php:2438
849
- #: admin.php:2797
850
  msgid "Database"
851
  msgstr ""
852
 
853
- #: admin.php:570
854
  #, php-format
855
  msgid "File not found (you need to upload it): %s"
856
  msgstr ""
857
 
858
- #: admin.php:572
859
  #, php-format
860
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
861
  msgstr ""
862
 
863
- #: admin.php:576
864
  #, php-format
865
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
866
  msgstr ""
867
 
868
- #: admin.php:590
869
  #, php-format
870
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
871
  msgstr ""
872
 
873
- #: admin.php:595
874
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
875
  msgstr ""
876
 
877
- #: admin.php:597
878
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
879
  msgstr ""
880
 
881
- #: admin.php:599
882
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
883
  msgstr ""
884
 
885
- #: admin.php:609
886
  msgid "Backup set not found"
887
  msgstr ""
888
 
889
- #: admin.php:689
890
  msgid "The backup set has been removed."
891
  msgstr ""
892
 
893
- #: admin.php:690
894
  #, php-format
895
  msgid "Local archives deleted: %d"
896
  msgstr ""
897
 
898
- #: admin.php:691
899
  #, php-format
900
  msgid "Remote archives deleted: %d"
901
  msgstr ""
902
 
903
- #: admin.php:699
904
  msgid "Known backups (raw)"
905
  msgstr ""
906
 
907
- #: admin.php:723
908
- #: admin.php:777
909
- #: admin.php:1425
910
  #, php-format
911
  msgid "%d set(s) available"
912
  msgstr ""
913
 
914
- #: admin.php:730
915
  msgid "Schedule backup"
916
  msgstr ""
917
 
918
- #: admin.php:733
919
  msgid "Failed."
920
  msgstr ""
921
 
922
- #: admin.php:735
923
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
924
  msgstr ""
925
 
926
- #: admin.php:735
927
  msgid "Nothing happening? Follow this link for help."
928
  msgstr ""
929
 
930
- #: admin.php:751
931
  msgid "Job deleted"
932
  msgstr ""
933
 
934
- #: admin.php:758
935
  msgid "Could not find that job - perhaps it has already finished?"
936
  msgstr ""
937
 
938
- #: admin.php:788
939
  msgid "Download failed"
940
  msgstr ""
941
 
942
- #: admin.php:814
943
  msgid "Download in progress"
944
  msgstr ""
945
 
946
- #: admin.php:817
947
  msgid "No local copy present."
948
  msgstr ""
949
 
950
- #: admin.php:875
951
  msgid "Failed to write out the decrypted database to the filesystem."
952
  msgstr ""
953
 
954
- #: admin.php:887
955
  #, php-format
956
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
957
  msgstr ""
958
 
959
- #: admin.php:893
960
  msgid "Failed to open database file."
961
  msgstr ""
962
 
963
- #: admin.php:924
964
- #: admin.php:1831
965
- #: admin.php:1989
 
966
  #, php-format
967
  msgid "Warning: %s"
968
  msgstr ""
969
 
970
- #: admin.php:924
 
971
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
972
  msgstr ""
973
 
974
- #: admin.php:930
975
  #, php-format
976
  msgid "%s version: %s"
977
  msgstr ""
978
 
979
- #: admin.php:931
980
  #, php-format
981
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
982
  msgstr ""
983
 
984
- #: admin.php:1005
985
  #, php-format
986
  msgid "This database backup is missing core WordPress tables: %s"
987
  msgstr ""
988
 
989
- #: admin.php:1008
990
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
991
  msgstr ""
992
 
993
- #: admin.php:1099
994
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
995
  msgstr ""
996
 
997
- #: admin.php:1106
998
  #, php-format
999
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
1000
  msgstr ""
1001
 
1002
- #: admin.php:1186
1003
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
1004
  msgstr ""
1005
 
1006
- #: admin.php:1215
1007
  msgid "Restore successful!"
1008
  msgstr ""
1009
 
1010
- #: admin.php:1216
1011
- #: admin.php:1244
1012
- #: admin.php:1263
1013
  msgid "Actions"
1014
  msgstr ""
1015
 
1016
- #: admin.php:1216
1017
- #: admin.php:1221
1018
- #: admin.php:1244
1019
- #: admin.php:1263
1020
  msgid "Return to UpdraftPlus Configuration"
1021
  msgstr ""
1022
 
1023
- #: admin.php:1233
1024
  msgid "Remove old directories"
1025
  msgstr ""
1026
 
1027
- #: admin.php:1239
1028
  msgid "Old directories successfully removed."
1029
  msgstr ""
1030
 
1031
- #: admin.php:1242
1032
  msgid "Old directory removal failed for some reason. You may want to do this manually."
1033
  msgstr ""
1034
 
1035
- #: admin.php:1254
1036
  msgid "Backup directory could not be created"
1037
  msgstr ""
1038
 
1039
- #: admin.php:1261
1040
  msgid "Backup directory successfully created."
1041
  msgstr ""
1042
 
1043
- #: admin.php:1285
1044
  msgid "Your settings have been wiped."
1045
  msgstr ""
1046
 
1047
- #: admin.php:1292
1048
  msgid "By UpdraftPlus.Com"
1049
  msgstr ""
1050
 
1051
- #: admin.php:1292
1052
  msgid "News"
1053
  msgstr ""
1054
 
1055
- #: admin.php:1292
1056
  msgid "Premium"
1057
  msgstr ""
1058
 
1059
- #: admin.php:1292
1060
  msgid "Support"
1061
  msgstr ""
1062
 
1063
- #: admin.php:1292
1064
  msgid "Lead developer's homepage"
1065
  msgstr ""
1066
 
1067
- #: admin.php:1292
1068
  msgid "Donate"
1069
  msgstr ""
1070
 
1071
- #: admin.php:1292
1072
  msgid "More plugins"
1073
  msgstr ""
1074
 
1075
- #: admin.php:1292
1076
  msgid "Version"
1077
  msgstr ""
1078
 
1079
- #: admin.php:1296
1080
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
1081
  msgstr ""
1082
 
1083
- #: admin.php:1302
1084
  msgid "Your backup has been restored."
1085
  msgstr ""
1086
 
1087
- #: admin.php:1302
1088
- msgid "Your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
1089
  msgstr ""
1090
 
1091
- #: admin.php:1308
1092
  msgid "Old directories successfully deleted."
1093
  msgstr ""
1094
 
1095
- #: admin.php:1311
1096
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
1097
  msgstr ""
1098
 
1099
- #: admin.php:1311
1100
  msgid "Current limit is:"
1101
  msgstr ""
1102
 
1103
- #: admin.php:1315
1104
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
1105
  msgstr ""
1106
 
1107
- #: admin.php:1319
1108
  msgid "Delete Old Directories"
1109
  msgstr ""
1110
 
1111
- #: admin.php:1331
1112
  msgid "Existing Schedule And Backups"
1113
  msgstr ""
1114
 
1115
- #: admin.php:1335
1116
  msgid "JavaScript warning"
1117
  msgstr ""
1118
 
1119
- #: admin.php:1336
1120
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
1121
  msgstr ""
1122
 
1123
- #: admin.php:1349
1124
- #: admin.php:1362
1125
  msgid "Nothing currently scheduled"
1126
  msgstr ""
1127
 
1128
- #: admin.php:1354
1129
  msgid "At the same time as the files backup"
1130
  msgstr ""
1131
 
1132
- #: admin.php:1378
1133
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
1134
  msgstr ""
1135
 
1136
- #: admin.php:1378
1137
  msgid "Next scheduled backups"
1138
  msgstr ""
1139
 
1140
- #: admin.php:1380
1141
  msgid "Files"
1142
  msgstr ""
1143
 
1144
- #: admin.php:1382
1145
  msgid "Time now"
1146
  msgstr ""
1147
 
1148
- #: admin.php:1386
1149
  msgid "Last backup job run:"
1150
  msgstr ""
1151
 
1152
- #: admin.php:1402
1153
  msgid "Clone/Migrate"
1154
  msgstr ""
1155
 
1156
- #: admin.php:1410
1157
  msgid "Last log message"
1158
  msgstr ""
1159
 
1160
- #: admin.php:1412
1161
  msgid "(Nothing yet logged)"
1162
  msgstr ""
1163
 
1164
- #: admin.php:1413
1165
  msgid "Download most recently modified log file"
1166
  msgstr ""
1167
 
1168
- #: admin.php:1419
1169
  msgid "Backups in progress:"
1170
  msgstr ""
1171
 
1172
- #: admin.php:1424
1173
  msgid "Backups, logs & restoring"
1174
  msgstr ""
1175
 
1176
- #: admin.php:1425
1177
  msgid "Press to see available backups"
1178
  msgstr ""
1179
 
1180
- #: admin.php:1431
1181
  msgid "Latest UpdraftPlus.com news:"
1182
  msgstr ""
1183
 
1184
- #: admin.php:1441
1185
  msgid "Downloading and restoring"
1186
  msgstr ""
1187
 
1188
- #: admin.php:1443
1189
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
1190
  msgstr ""
1191
 
1192
- #: admin.php:1443
1193
  msgid "Please consult this FAQ for help on what to do about it."
1194
  msgstr ""
1195
 
1196
- #: admin.php:1446
1197
  msgid "Downloading"
1198
  msgstr ""
1199
 
1200
- #: admin.php:1446
1201
  msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
1202
  msgstr ""
1203
 
1204
- #: admin.php:1447
1205
- msgid "Restoring"
1206
  msgstr ""
1207
 
1208
- #: admin.php:1447
1209
- msgid "Press the button for the backup you wish to restore. If your site is large and you are using remote storage, then you should first click on each entity in order to retrieve it back to the webserver. This will prevent time-outs from occuring during the restore process itself."
1210
  msgstr ""
1211
 
1212
- #: admin.php:1447
1213
  msgid "More tasks:"
1214
  msgstr ""
1215
 
1216
- #: admin.php:1447
1217
  msgid "upload backup files"
1218
  msgstr ""
1219
 
1220
- #: admin.php:1447
1221
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
1222
  msgstr ""
1223
 
1224
- #: admin.php:1447
1225
  msgid "rescan folder for new backup sets"
1226
  msgstr ""
1227
 
1228
- #: admin.php:1448
1229
  msgid "Opera web browser"
1230
  msgstr ""
1231
 
1232
- #: admin.php:1448
1233
  msgid "If you are using this, then turn Turbo/Road mode off."
1234
  msgstr ""
1235
 
1236
- #: admin.php:1453
1237
  msgid "Google Drive"
1238
  msgstr ""
1239
 
1240
- #: admin.php:1453
1241
  msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
1242
  msgstr ""
1243
 
1244
- #: admin.php:1456
1245
  msgid "This is a count of the contents of your Updraft directory"
1246
  msgstr ""
1247
 
1248
- #: admin.php:1456
1249
  msgid "Web-server disk space in use by UpdraftPlus"
1250
  msgstr ""
1251
 
1252
- #: admin.php:1456
1253
  msgid "refresh"
1254
  msgstr ""
1255
 
1256
- #: admin.php:1458
1257
  msgid "UpdraftPlus - Upload backup files"
1258
  msgstr ""
1259
 
1260
- #: admin.php:1459
1261
  msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
1262
  msgstr ""
1263
 
1264
- #: admin.php:1459
1265
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
1266
  msgstr ""
1267
 
1268
- #: admin.php:1463
1269
- msgid "Drop backup zips here"
1270
  msgstr ""
1271
 
1272
- #: admin.php:1464
1273
- #: admin.php:2121
1274
  msgid "or"
1275
  msgstr ""
1276
 
1277
- #: admin.php:1484
1278
  msgid "Delete backup set"
1279
  msgstr ""
1280
 
1281
- #: admin.php:1487
1282
  msgid "Are you sure that you wish to delete this backup set?"
1283
  msgstr ""
1284
 
1285
- #: admin.php:1495
1286
  msgid "Also delete from remote storage"
1287
  msgstr ""
1288
 
1289
- #: admin.php:1496
1290
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
1291
  msgstr ""
1292
 
1293
- #: admin.php:1502
1294
  msgid "Restore backup"
1295
  msgstr ""
1296
 
1297
- #: admin.php:1503
1298
  msgid "Restore backup from"
1299
  msgstr ""
1300
 
1301
- #: admin.php:1507
1302
  msgid "Downloading / preparing backup files..."
1303
  msgstr ""
1304
 
1305
- #: admin.php:1515
1306
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
1307
  msgstr ""
1308
 
1309
- #: admin.php:1515
1310
  msgid "Choose the components to restore"
1311
  msgstr ""
1312
 
1313
- #: admin.php:1524
1314
  msgid "Your web server has PHP's so-called safe_mode active."
1315
  msgstr ""
1316
 
1317
- #: admin.php:1524
1318
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1319
  msgstr ""
1320
 
1321
- #: admin.php:1537
1322
  #, php-format
1323
  msgid "The following entity cannot be restored automatically: \"%s\"."
1324
  msgstr ""
1325
 
1326
- #: admin.php:1537
1327
  msgid "You will need to restore it manually."
1328
  msgstr ""
1329
 
1330
- #: admin.php:1544
1331
  #, php-format
1332
  msgid "%s restoration options:"
1333
  msgstr ""
1334
 
1335
- #: admin.php:1552
1336
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
1337
  msgstr ""
1338
 
1339
- #: admin.php:1563
1340
  msgid "Do read this helpful article of useful things to know before restoring."
1341
  msgstr ""
1342
 
1343
- #: admin.php:1568
1344
  msgid "Migrate Site"
1345
  msgstr ""
1346
 
1347
- #: admin.php:1572
1348
  msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
1349
  msgstr ""
1350
 
1351
- #: admin.php:1572
1352
  #, php-format
1353
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
1354
  msgstr ""
1355
 
1356
- #: admin.php:1574
1357
  msgid "Do you want to migrate or clone/duplicate a site?"
1358
  msgstr ""
1359
 
1360
- #: admin.php:1574
1361
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1362
  msgstr ""
1363
 
1364
- #: admin.php:1574
1365
  msgid "Get it here."
1366
  msgstr ""
1367
 
1368
- #: admin.php:1585
1369
  msgid "Perform a one-time backup"
1370
  msgstr ""
1371
 
1372
- #: admin.php:1586
1373
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
1374
  msgstr ""
1375
 
1376
- #: admin.php:1588
1377
- msgid "Does nothing happen when you schedule backups?"
 
 
 
 
1378
  msgstr ""
1379
 
1380
- #: admin.php:1588
 
 
 
 
1381
  msgid "Go here for help."
1382
  msgstr ""
1383
 
1384
- #: admin.php:1594
1385
  msgid "Multisite"
1386
  msgstr ""
1387
 
1388
- #: admin.php:1598
1389
  msgid "Do you need WordPress Multisite support?"
1390
  msgstr ""
1391
 
1392
- #: admin.php:1598
1393
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
1394
  msgstr ""
1395
 
1396
- #: admin.php:1603
1397
  msgid "Configure Backup Contents And Schedule"
1398
  msgstr ""
1399
 
1400
- #: admin.php:1609
1401
  msgid "Debug Information And Expert Options"
1402
  msgstr ""
1403
 
1404
- #: admin.php:1612
1405
  msgid "Web server:"
1406
  msgstr ""
1407
 
1408
- #: admin.php:1615
1409
  msgid "Peak memory usage"
1410
  msgstr ""
1411
 
1412
- #: admin.php:1616
1413
  msgid "Current memory usage"
1414
  msgstr ""
1415
 
1416
- #: admin.php:1617
1417
  msgid "PHP memory limit"
1418
  msgstr ""
1419
 
1420
- #: admin.php:1618
1421
- #: admin.php:1620
1422
  #, php-format
1423
  msgid "%s version:"
1424
  msgstr ""
1425
 
1426
- #: admin.php:1619
1427
  msgid "show PHP information (phpinfo)"
1428
  msgstr ""
1429
 
1430
- #: admin.php:1623
1431
- #: admin.php:1625
1432
- #: admin.php:1632
1433
  msgid "Yes"
1434
  msgstr ""
1435
 
1436
- #: admin.php:1625
1437
- #: admin.php:1632
1438
  msgid "No"
1439
  msgstr ""
1440
 
1441
- #: admin.php:1628
1442
  msgid "PHP has support for ZipArchive::addFile:"
1443
  msgstr ""
1444
 
1445
- #: admin.php:1632
1446
  msgid "zip executable found:"
1447
  msgstr ""
1448
 
1449
- #: admin.php:1634
 
 
 
 
 
1450
  msgid "Show raw backup and file list"
1451
  msgstr ""
1452
 
1453
- #: admin.php:1637
1454
  msgid "Total (uncompressed) on-disk data:"
1455
  msgstr ""
1456
 
1457
- #: admin.php:1638
1458
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
1459
  msgstr ""
1460
 
1461
- #: admin.php:1645
1462
  msgid "count"
1463
  msgstr ""
1464
 
1465
- #: admin.php:1651
1466
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
1467
  msgstr ""
1468
 
1469
- #: admin.php:1659
1470
  msgid "Debug Full Backup"
1471
  msgstr ""
1472
 
1473
- #: admin.php:1659
1474
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
1475
  msgstr ""
1476
 
1477
- #: admin.php:1664
1478
  msgid "Debug Database Backup"
1479
  msgstr ""
1480
 
1481
- #: admin.php:1664
1482
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
1483
  msgstr ""
1484
 
1485
- #: admin.php:1670
1486
  msgid "Wipe Settings"
1487
  msgstr ""
1488
 
1489
- #: admin.php:1671
1490
  msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
1491
  msgstr ""
1492
 
1493
- #: admin.php:1674
1494
  msgid "Wipe All Settings"
1495
  msgstr ""
1496
 
1497
- #: admin.php:1674
1498
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
1499
  msgstr ""
1500
 
1501
- #: admin.php:1723
1502
  msgid "Backup begun"
1503
  msgstr ""
1504
 
1505
- #: admin.php:1728
1506
  msgid "Creating file backup zips"
1507
  msgstr ""
1508
 
1509
- #: admin.php:1741
1510
  msgid "Created file backup zips"
1511
  msgstr ""
1512
 
1513
- #: admin.php:1746
1514
  msgid "Creating database backup"
1515
  msgstr ""
1516
 
1517
- #: admin.php:1748
1518
  #, php-format
1519
  msgid "table: %s"
1520
  msgstr ""
1521
 
1522
- #: admin.php:1756
1523
  msgid "Created database backup"
1524
  msgstr ""
1525
 
1526
- #: admin.php:1761
1527
  msgid "Encrypting database"
1528
  msgstr ""
1529
 
1530
- #: admin.php:1765
1531
  msgid "Encrypted database"
1532
  msgstr ""
1533
 
1534
- #: admin.php:1770
1535
  msgid "Uploading files to remote storage"
1536
  msgstr ""
1537
 
1538
- #: admin.php:1777
1539
  #, php-format
1540
  msgid "(%s%%, file %s of %s)"
1541
  msgstr ""
1542
 
1543
- #: admin.php:1782
1544
  msgid "Pruning old backup sets"
1545
  msgstr ""
1546
 
1547
- #: admin.php:1786
1548
  msgid "Waiting until scheduled time to retry because of errors"
1549
  msgstr ""
1550
 
1551
- #: admin.php:1791
1552
  msgid "Backup finished"
1553
  msgstr ""
1554
 
1555
- #: admin.php:1794
1556
  msgid "Unknown"
1557
  msgstr ""
1558
 
1559
- #: admin.php:1809
1560
  #, php-format
1561
  msgid "next resumption: %d (after %ss)"
1562
  msgstr ""
1563
 
1564
- #: admin.php:1810
1565
  #, php-format
1566
  msgid "last activity: %ss ago"
1567
  msgstr ""
1568
 
1569
- #: admin.php:1820
1570
  #, php-format
1571
  msgid "Job ID: %s"
1572
  msgstr ""
1573
 
1574
- #: admin.php:1824
1575
  msgid "show log"
1576
  msgstr ""
1577
 
1578
- #: admin.php:1826
1579
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
1580
  msgstr ""
1581
 
1582
- #: admin.php:1826
1583
  msgid "delete schedule"
1584
  msgstr ""
1585
 
1586
- #: admin.php:1865
1587
- #: admin.php:1890
1588
  msgid "Failed"
1589
  msgstr ""
1590
 
1591
- #: admin.php:1928
1592
  msgid "The request to the filesystem to create the directory failed."
1593
  msgstr ""
1594
 
1595
- #: admin.php:1942
1596
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
1597
  msgstr ""
1598
 
1599
- #: admin.php:1946
1600
  msgid "The folder exists, but your webserver does not have permission to write to it."
1601
  msgstr ""
1602
 
1603
- #: admin.php:1946
1604
  msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
1605
  msgstr ""
1606
 
1607
- #: admin.php:2005
1608
  msgid "Download log file"
1609
  msgstr ""
1610
 
1611
- #: admin.php:2009
1612
  msgid "No backup has been completed."
1613
  msgstr ""
1614
 
1615
- #: admin.php:2025
1616
  msgid "File backup intervals"
1617
  msgstr ""
1618
 
1619
- #: admin.php:2028
1620
  msgid "Manual"
1621
  msgstr ""
1622
 
1623
- #: admin.php:2028
1624
  msgid "Every 4 hours"
1625
  msgstr ""
1626
 
1627
- #: admin.php:2028
1628
  msgid "Every 8 hours"
1629
  msgstr ""
1630
 
1631
- #: admin.php:2028
1632
  msgid "Every 12 hours"
1633
  msgstr ""
1634
 
1635
- #: admin.php:2028
1636
  msgid "Daily"
1637
  msgstr ""
1638
 
1639
- #: admin.php:2028
1640
  msgid "Weekly"
1641
  msgstr ""
1642
 
1643
- #: admin.php:2028
1644
  msgid "Fortnightly"
1645
  msgstr ""
1646
 
1647
- #: admin.php:2028
1648
  msgid "Monthly"
1649
  msgstr ""
1650
 
1651
- #: admin.php:2037
1652
- #: admin.php:2055
1653
  msgid "and retain this many backups"
1654
  msgstr ""
1655
 
1656
- #: admin.php:2044
1657
  msgid "Database backup intervals"
1658
  msgstr ""
1659
 
1660
- #: admin.php:2062
1661
  msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
1662
  msgstr ""
1663
 
1664
- #: admin.php:2063
1665
  msgid "To fix the time at which a backup should take place,"
1666
  msgstr ""
1667
 
1668
- #: admin.php:2063
1669
  msgid "e.g. if your server is busy at day and you want to run overnight"
1670
  msgstr ""
1671
 
1672
- #: admin.php:2063
1673
  msgid "use the \"Fix Time\" add-on"
1674
  msgstr ""
1675
 
1676
- #: admin.php:2067
1677
  msgid "Include in files backup"
1678
  msgstr ""
1679
 
1680
- #: admin.php:2077
1681
  #, php-format
1682
  msgid "Your wp-content directory server path: %s"
1683
  msgstr ""
1684
 
1685
- #: admin.php:2077
1686
  msgid "Any other directories found inside wp-content"
1687
  msgstr ""
1688
 
1689
- #: admin.php:2083
1690
  msgid "Exclude these:"
1691
  msgstr ""
1692
 
1693
- #: admin.php:2085
1694
  msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
1695
  msgstr ""
1696
 
1697
- #: admin.php:2097
1698
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
1699
  msgstr ""
1700
 
1701
- #: admin.php:2097
1702
- msgid "Or, get the \"More Files\" add-on from our shop."
1703
  msgstr ""
1704
 
1705
- #: admin.php:2097
1706
  msgid "Use WordShell for automatic backup, version control and patching"
1707
  msgstr ""
1708
 
1709
- #: admin.php:2101
 
1710
  msgid "Email"
1711
  msgstr ""
1712
 
1713
- #: admin.php:2102
1714
  msgid "To send to more than one address, separate each address with a comma."
1715
  msgstr ""
1716
 
1717
- #: admin.php:2102
1718
  msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
1719
  msgstr ""
1720
 
1721
- #: admin.php:2106
 
 
 
 
 
1722
  msgid "Database encryption phrase"
1723
  msgstr ""
1724
 
1725
- #: admin.php:2113
1726
  msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
1727
  msgstr ""
1728
 
1729
- #: admin.php:2113
1730
  msgid "You can also decrypt a database manually here."
1731
  msgstr ""
1732
 
1733
- #: admin.php:2116
 
 
 
 
1734
  msgid "Manually decrypt a database backup file"
1735
  msgstr ""
1736
 
1737
- #: admin.php:2120
1738
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
1739
  msgstr ""
1740
 
1741
- #: admin.php:2123
1742
  msgid "Use decryption key"
1743
  msgstr ""
1744
 
1745
- #: admin.php:2137
1746
  msgid "Copying Your Backup To Remote Storage"
1747
  msgstr ""
1748
 
1749
- #: admin.php:2147
1750
  msgid "Choose your remote storage"
1751
  msgstr ""
1752
 
1753
- #: admin.php:2156
1754
  msgid "None"
1755
  msgstr ""
1756
 
1757
- #: admin.php:2167
1758
  msgid "You can send a backup to more than one destination with an add-on."
1759
  msgstr ""
1760
 
1761
- #: admin.php:2214
1762
  msgid "Advanced / Debugging Settings"
1763
  msgstr ""
1764
 
1765
- #: admin.php:2217
1766
  msgid "Debug mode"
1767
  msgstr ""
1768
 
1769
- #: admin.php:2218
1770
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
1771
  msgstr ""
1772
 
1773
- #: admin.php:2221
1774
  msgid "Expert settings"
1775
  msgstr ""
1776
 
1777
- #: admin.php:2222
1778
  msgid "Show expert settings"
1779
  msgstr ""
1780
 
1781
- #: admin.php:2222
1782
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
1783
  msgstr ""
1784
 
1785
- #: admin.php:2232
1786
  msgid "Split archives every:"
1787
  msgstr ""
1788
 
1789
- #: admin.php:2233
1790
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
1791
  msgstr ""
1792
 
1793
- #: admin.php:2237
1794
  msgid "Delete local backup"
1795
  msgstr ""
1796
 
1797
- #: admin.php:2238
1798
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
1799
  msgstr ""
1800
 
1801
- #: admin.php:2242
1802
  msgid "Backup directory"
1803
  msgstr ""
1804
 
1805
- #: admin.php:2249
1806
  msgid "Backup directory specified is writable, which is good."
1807
  msgstr ""
1808
 
1809
- #: admin.php:2253
1810
  msgid "Backup directory specified does <b>not</b> exist."
1811
  msgstr ""
1812
 
1813
- #: admin.php:2255
1814
  msgid "Backup directory specified exists, but is <b>not</b> writable."
1815
  msgstr ""
1816
 
1817
- #: admin.php:2257
1818
  msgid "Click here to attempt to create the directory and set the permissions"
1819
  msgstr ""
1820
 
1821
- #: admin.php:2257
1822
  msgid "or, to reset this option"
1823
  msgstr ""
1824
 
1825
- #: admin.php:2257
1826
  msgid "click here"
1827
  msgstr ""
1828
 
1829
- #: admin.php:2257
1830
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
1831
  msgstr ""
1832
 
1833
- #: admin.php:2260
1834
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
1835
  msgstr ""
1836
 
1837
- #: admin.php:2260
1838
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
1839
  msgstr ""
1840
 
1841
- #: admin.php:2264
1842
  msgid "Use the server's SSL certificates"
1843
  msgstr ""
1844
 
1845
- #: admin.php:2265
1846
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
1847
  msgstr ""
1848
 
1849
- #: admin.php:2269
1850
  msgid "Do not verify SSL certificates"
1851
  msgstr ""
1852
 
1853
- #: admin.php:2270
1854
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
1855
  msgstr ""
1856
 
1857
- #: admin.php:2270
1858
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
1859
  msgstr ""
1860
 
1861
- #: admin.php:2274
1862
  msgid "Disable SSL entirely where possible"
1863
  msgstr ""
1864
 
1865
- #: admin.php:2275
1866
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
1867
  msgstr ""
1868
 
1869
- #: admin.php:2299
1870
  msgid "Save Changes"
1871
  msgstr ""
1872
 
1873
- #: admin.php:2326
1874
  #, php-format
1875
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1876
  msgstr ""
1877
 
1878
- #: admin.php:2326
1879
  #, php-format
1880
  msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
1881
  msgstr ""
1882
 
1883
- #: admin.php:2333
1884
  #, php-format
1885
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
1886
  msgstr ""
1887
 
1888
- #: admin.php:2335
1889
  #, php-format
1890
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
1891
  msgstr ""
1892
 
1893
- #: admin.php:2338
1894
  #, php-format
1895
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
1896
  msgstr ""
1897
 
1898
- #: admin.php:2421
1899
  msgid "Delete this backup set"
1900
  msgstr ""
1901
 
1902
- #: admin.php:2430
1903
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
1904
  msgstr ""
1905
 
1906
- #: admin.php:2430
1907
  msgid "(Not finished)"
1908
  msgstr ""
1909
 
1910
- #: admin.php:2449
1911
- #: admin.php:2504
1912
  #, php-format
1913
  msgid "(No %s)"
1914
  msgstr ""
1915
 
1916
- #: admin.php:2449
1917
  msgid "database"
1918
  msgstr ""
1919
 
1920
- #: admin.php:2476
1921
  msgid "Press here to download"
1922
  msgstr ""
1923
 
1924
- #: admin.php:2482
1925
  #, php-format
1926
  msgid "(%d archive(s) in set)."
1927
  msgstr ""
1928
 
1929
- #: admin.php:2485
1930
  msgid "You appear to be missing one or more archives from this multi-archive set."
1931
  msgstr ""
1932
 
1933
- #: admin.php:2512
1934
  msgid "Backup Log"
1935
  msgstr ""
1936
 
1937
- #: admin.php:2532
1938
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
1939
  msgstr ""
1940
 
1941
- #: admin.php:2623
1942
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
1943
  msgstr ""
1944
 
1945
- #: admin.php:2657
1946
  msgid "UpdraftPlus Restoration: Progress"
1947
  msgstr ""
1948
 
1949
- #: admin.php:2684
1950
  msgid "ABORT: Could not find the information on which entities to restore."
1951
  msgstr ""
1952
 
1953
- #: admin.php:2685
1954
  msgid "If making a request for support, please include this information:"
1955
  msgstr ""
1956
 
1957
- #: admin.php:2707
1958
  msgid "Final checks"
1959
  msgstr ""
1960
 
1961
- #: admin.php:2719
1962
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
1963
  msgstr ""
1964
 
1965
- #: admin.php:2730
1966
  #, php-format
1967
  msgid "Looking for %s archive: file name: %s"
1968
  msgstr ""
1969
 
1970
- #: admin.php:2735
1971
  msgid "File is not locally present - needs retrieving from remote storage"
1972
  msgstr ""
1973
 
1974
- #: admin.php:2751
1975
  msgid "Archive is expected to be size:"
1976
  msgstr ""
1977
 
1978
- #: admin.php:2756
1979
  msgid "file is size:"
1980
  msgstr ""
1981
 
1982
- #: admin.php:2759
1983
  msgid "The backup records do not contain information about the proper size of this file."
1984
  msgstr ""
1985
 
1986
- #: admin.php:2762
1987
- #: admin.php:2763
1988
  msgid "Could not find one of the files for restoration"
1989
  msgstr ""
1990
 
1991
- #: admin.php:2787
1992
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
1993
  msgstr ""
1994
 
1995
- #: admin.php:2806
1996
  msgid "Error message"
1997
  msgstr ""
1998
 
1999
- #: udaddons/options.php:151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2000
  msgid "You do not have sufficient permissions to access this page."
2001
  msgstr ""
2002
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2003
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:88
2004
  #: methods/googledrive.php:63
2005
  #, php-format
@@ -2037,153 +2266,153 @@ msgstr ""
2037
  msgid "S3 (Compatible)"
2038
  msgstr ""
2039
 
2040
- #: methods/googledrive.php:116
2041
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
2042
  msgstr ""
2043
 
2044
- #: methods/googledrive.php:125
2045
  msgid "Authorization failed"
2046
  msgstr ""
2047
 
2048
- #: methods/googledrive.php:146
2049
  #, php-format
2050
  msgid "Your %s quota usage: %s %% used, %s available"
2051
  msgstr ""
2052
 
2053
- #: methods/googledrive.php:152
2054
  #: methods/cloudfiles.php:498
2055
- #: methods/s3.php:509
2056
  msgid "Success"
2057
  msgstr ""
2058
 
2059
- #: methods/googledrive.php:152
2060
  #, php-format
2061
  msgid "you have authenticated your %s account."
2062
  msgstr ""
2063
 
2064
- #: methods/googledrive.php:168
2065
- #: methods/googledrive.php:233
2066
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
2067
  msgstr ""
2068
 
2069
- #: methods/googledrive.php:169
2070
- #: methods/googledrive.php:364
2071
  msgid "Have not yet obtained an access token from Google (has the user authorised?)"
2072
  msgstr ""
2073
 
2074
- #: methods/googledrive.php:202
2075
  #, php-format
2076
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
2077
  msgstr ""
2078
 
2079
- #: methods/googledrive.php:208
2080
  #, php-format
2081
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
2082
  msgstr ""
2083
 
2084
- #: methods/googledrive.php:217
2085
  #, php-format
2086
  msgid "Failed to upload to %s"
2087
  msgstr ""
2088
 
2089
- #: methods/googledrive.php:335
2090
  #, php-format
2091
  msgid "An error occurred during %s upload (see log for more details)"
2092
  msgstr ""
2093
 
2094
- #: methods/googledrive.php:374
2095
  #, php-format
2096
  msgid "Google Drive error: %d: could not download: could not find a record of the Google Drive file ID for this file"
2097
  msgstr ""
2098
 
2099
- #: methods/googledrive.php:379
2100
  #, php-format
2101
  msgid "Could not find %s in order to download it"
2102
  msgstr ""
2103
 
2104
- #: methods/googledrive.php:392
2105
  #, php-format
2106
  msgid "%s error: zero-size file was downloaded"
2107
  msgstr ""
2108
 
2109
- #: methods/googledrive.php:392
2110
  msgid "Google Drive "
2111
  msgstr ""
2112
 
2113
- #: methods/googledrive.php:410
2114
  msgid "Account is not authorized."
2115
  msgstr ""
2116
 
2117
- #: methods/googledrive.php:443
2118
  #: methods/cloudfiles.php:384
2119
- #: methods/s3.php:366
2120
  #, php-format
2121
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
2122
  msgstr ""
2123
 
2124
- #: methods/googledrive.php:453
2125
  #: methods/cloudfiles.php:394
2126
- #: methods/s3.php:388
2127
  #, php-format
2128
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
2129
  msgstr ""
2130
 
2131
- #: methods/googledrive.php:453
2132
  #: methods/cloudfiles.php:394
2133
- #: methods/s3.php:388
2134
  #, php-format
2135
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
2136
  msgstr ""
2137
 
2138
- #: methods/googledrive.php:463
2139
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
2140
  msgstr ""
2141
 
2142
- #: methods/googledrive.php:464
2143
  msgid "Follow this link to your Google API Console, and there create a Client ID in the API Access section."
2144
  msgstr ""
2145
 
2146
- #: methods/googledrive.php:464
2147
  msgid "Select 'Web Application' as the application type."
2148
  msgstr ""
2149
 
2150
- #: methods/googledrive.php:464
2151
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
2152
  msgstr ""
2153
 
2154
- #: methods/googledrive.php:464
2155
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your client ID; you must create a new one from your Google API console for each site."
2156
  msgstr ""
2157
 
2158
- #: methods/googledrive.php:467
2159
  msgid "You do not have the SimpleXMLElement installed. Google Drive backups will <b>not</b> work until you do."
2160
  msgstr ""
2161
 
2162
- #: methods/googledrive.php:474
2163
  msgid "Client ID"
2164
  msgstr ""
2165
 
2166
- #: methods/googledrive.php:475
2167
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
2168
  msgstr ""
2169
 
2170
- #: methods/googledrive.php:478
2171
  msgid "Client Secret"
2172
  msgstr ""
2173
 
2174
- #: methods/googledrive.php:482
2175
  msgid "Folder ID"
2176
  msgstr ""
2177
 
2178
- #: methods/googledrive.php:483
2179
  msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
2180
  msgstr ""
2181
 
2182
- #: methods/googledrive.php:486
2183
  msgid "Authenticate with Google"
2184
  msgstr ""
2185
 
2186
- #: methods/googledrive.php:487
 
 
 
 
2187
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
2188
  msgstr ""
2189
 
@@ -2209,9 +2438,6 @@ msgstr ""
2209
 
2210
  #: methods/cloudfiles.php:105
2211
  #: methods/cloudfiles.php:147
2212
- #: methods/s3.php:128
2213
- #: methods/s3.php:134
2214
- #: methods/s3.php:135
2215
  #, php-format
2216
  msgid "%s Error: Failed to upload"
2217
  msgstr ""
@@ -2260,14 +2486,11 @@ msgstr ""
2260
 
2261
  #: methods/cloudfiles.php:371
2262
  #: methods/cloudfiles.php:434
2263
- #: methods/s3.php:348
2264
- #: methods/s3.php:422
2265
  #, php-format
2266
  msgid "Test %s Settings"
2267
  msgstr ""
2268
 
2269
  #: methods/cloudfiles.php:372
2270
- #: methods/s3.php:349
2271
  #, php-format
2272
  msgid "%s settings test result:"
2273
  msgstr ""
@@ -2306,14 +2529,11 @@ msgstr ""
2306
 
2307
  #: methods/cloudfiles.php:442
2308
  #: methods/cloudfiles.php:447
2309
- #: methods/s3.php:435
2310
- #: methods/s3.php:439
2311
  #, php-format
2312
  msgid "Failure: No %s was given."
2313
  msgstr ""
2314
 
2315
  #: methods/cloudfiles.php:442
2316
- #: methods/s3.php:435
2317
  msgid "API key"
2318
  msgstr ""
2319
 
@@ -2339,171 +2559,179 @@ msgstr ""
2339
  msgid "We accessed the container, and were able to create files within it."
2340
  msgstr ""
2341
 
2342
- #: methods/email.php:20
 
 
 
 
 
2343
  msgid "WordPress Backup"
2344
  msgstr ""
2345
 
2346
- #: methods/email.php:20
2347
  #, php-format
2348
  msgid "Backup is of: %s."
2349
  msgstr ""
2350
 
2351
- #: methods/email.php:20
2352
  msgid "Be wary; email backups may fail because of file size limitations on mail servers."
2353
  msgstr ""
2354
 
2355
- #: methods/email.php:27
2356
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
2357
  msgstr ""
2358
 
2359
- #: methods/email.php:36
2360
  msgid "Note:"
2361
  msgstr ""
2362
 
2363
- #: methods/email.php:37
2364
- msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive. If you really need a large backup via email, then you could fund a new feature (to break the backup set into configurable-size pieces) - but the demand has not yet existed for such a feature."
2365
  msgstr ""
2366
 
2367
- #: methods/s3.php:154
2368
  #, php-format
2369
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
2370
  msgstr ""
2371
 
2372
- #: methods/s3.php:177
2373
  #, php-format
2374
  msgid "%s error: file %s was shortened unexpectedly"
2375
  msgstr ""
2376
 
2377
- #: methods/s3.php:187
2378
  #, php-format
2379
  msgid "%s chunk %s: upload failed"
2380
  msgstr ""
2381
 
2382
- #: methods/s3.php:201
2383
  #, php-format
2384
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
2385
  msgstr ""
2386
 
2387
- #: methods/s3.php:205
2388
  #, php-format
2389
  msgid "%s re-assembly error (%s): (see log file for more)"
2390
  msgstr ""
2391
 
2392
- #: methods/s3.php:217
2393
  #, php-format
2394
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
2395
  msgstr ""
2396
 
2397
- #: methods/s3.php:253
2398
- #: methods/s3.php:321
2399
  #, php-format
2400
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
2401
  msgstr ""
2402
 
2403
- #: methods/s3.php:317
2404
  #, php-format
2405
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
2406
  msgstr ""
2407
 
2408
- #: methods/s3.php:333
 
 
 
2409
  #, php-format
2410
  msgid "Testing %s Settings..."
2411
  msgstr ""
2412
 
2413
- #: methods/s3.php:369
2414
  msgid "Examples of S3-compatible storage providers:"
2415
  msgstr ""
2416
 
2417
- #: methods/s3.php:377
2418
  msgid "... and many more!"
2419
  msgstr ""
2420
 
2421
- #: methods/s3.php:398
2422
  #, php-format
2423
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
2424
  msgstr ""
2425
 
2426
- #: methods/s3.php:398
2427
  msgid "If you see errors about SSL certificates, then please go here for help."
2428
  msgstr ""
2429
 
2430
- #: methods/s3.php:402
2431
  #, php-format
2432
  msgid "%s end-point"
2433
  msgstr ""
2434
 
2435
- #: methods/s3.php:409
2436
  #, php-format
2437
  msgid "%s access key"
2438
  msgstr ""
2439
 
2440
- #: methods/s3.php:413
2441
  #, php-format
2442
  msgid "%s secret key"
2443
  msgstr ""
2444
 
2445
- #: methods/s3.php:417
2446
  #, php-format
2447
  msgid "%s location"
2448
  msgstr ""
2449
 
2450
- #: methods/s3.php:418
2451
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
2452
  msgstr ""
2453
 
2454
- #: methods/s3.php:439
2455
  msgid "API secret"
2456
  msgstr ""
2457
 
2458
- #: methods/s3.php:460
2459
  msgid "Failure: No bucket details were given."
2460
  msgstr ""
2461
 
2462
- #: methods/s3.php:475
2463
  msgid "Region"
2464
  msgstr ""
2465
 
2466
- #: methods/s3.php:493
2467
  #, php-format
2468
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
2469
  msgstr ""
2470
 
2471
- #: methods/s3.php:494
2472
  #, php-format
2473
  msgid "The error reported by %s was:"
2474
  msgstr ""
2475
 
2476
- #: methods/s3.php:507
2477
- #: methods/s3.php:519
2478
  msgid "Failure"
2479
  msgstr ""
2480
 
2481
- #: methods/s3.php:507
2482
- #: methods/s3.php:519
2483
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
2484
  msgstr ""
2485
 
2486
- #: methods/s3.php:509
2487
  msgid "We accessed the bucket, and were able to create files within it."
2488
  msgstr ""
2489
 
2490
- #: methods/s3.php:512
2491
  #, php-format
2492
  msgid "The communication with %s was encrypted."
2493
  msgstr ""
2494
 
2495
- #: methods/s3.php:514
2496
  #, php-format
2497
  msgid "The communication with %s was not encrypted."
2498
  msgstr ""
2499
 
2500
- #: methods/s3.php:519
2501
  msgid "Please check your access credentials."
2502
  msgstr ""
2503
 
2504
  #: methods/dropbox.php:35
2505
  #, php-format
2506
- msgid "The %s PHP module is not installed"
2507
  msgstr ""
2508
 
2509
  #: methods/dropbox.php:41
@@ -2561,6 +2789,10 @@ msgstr ""
2561
  msgid "Authenticate with Dropbox"
2562
  msgstr ""
2563
 
 
 
 
 
2564
  #: methods/dropbox.php:291
2565
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Dropbox."
2566
  msgstr ""
@@ -2590,51 +2822,51 @@ msgstr ""
2590
  msgid "%s upload failed"
2591
  msgstr ""
2592
 
2593
- #: methods/ftp.php:181
2594
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
2595
  msgstr ""
2596
 
2597
- #: methods/ftp.php:181
2598
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
2599
  msgstr ""
2600
 
2601
- #: methods/ftp.php:185
2602
  msgid "FTP Server"
2603
  msgstr ""
2604
 
2605
- #: methods/ftp.php:189
2606
  msgid "FTP Login"
2607
  msgstr ""
2608
 
2609
- #: methods/ftp.php:193
2610
  msgid "FTP Password"
2611
  msgstr ""
2612
 
2613
- #: methods/ftp.php:197
2614
  msgid "Remote Path"
2615
  msgstr ""
2616
 
2617
- #: methods/ftp.php:198
2618
  msgid "Needs to already exist"
2619
  msgstr ""
2620
 
2621
- #: methods/ftp.php:219
2622
  msgid "Failure: No server details were given."
2623
  msgstr ""
2624
 
2625
- #: methods/ftp.php:234
2626
  msgid "Failure: we did not successfully log in with those credentials."
2627
  msgstr ""
2628
 
2629
- #: methods/ftp.php:242
2630
  msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
2631
  msgstr ""
2632
 
2633
- #: methods/ftp.php:246
2634
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
2635
  msgstr ""
2636
 
2637
- #: methods/ftp.php:249
2638
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
2639
  msgstr ""
2640
 
@@ -2816,10 +3048,6 @@ msgstr ""
2816
  msgid "Port"
2817
  msgstr ""
2818
 
2819
- #: addons/sftp.php:286
2820
- msgid "Password"
2821
- msgstr ""
2822
-
2823
  #: addons/sftp.php:302
2824
  msgid "Directory path"
2825
  msgstr ""
@@ -2955,19 +3183,15 @@ msgstr ""
2955
  msgid "Proceed with update"
2956
  msgstr ""
2957
 
2958
- #: addons/multisite.php:130
2959
  msgid "Multisite Install"
2960
  msgstr ""
2961
 
2962
- #: addons/multisite.php:155
2963
- msgid "You do not have permission to access this page."
2964
- msgstr ""
2965
-
2966
- #: addons/multisite.php:225
2967
  msgid "Must-use plugins"
2968
  msgstr ""
2969
 
2970
- #: addons/multisite.php:232
2971
  msgid "Blog uploads"
2972
  msgstr ""
2973
 
@@ -2975,144 +3199,148 @@ msgstr ""
2975
  msgid "Remote Storage Options"
2976
  msgstr ""
2977
 
2978
- #: addons/migrator.php:41
2979
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
2980
  msgstr ""
2981
 
2982
- #: addons/migrator.php:45
2983
  msgid "Processed plugin:"
2984
  msgstr ""
2985
 
2986
- #: addons/migrator.php:53
2987
  msgid "Network activating theme:"
2988
  msgstr ""
2989
 
2990
- #: addons/migrator.php:86
2991
  msgid "Information needed to continue:"
2992
  msgstr ""
2993
 
2994
- #: addons/migrator.php:87
2995
  msgid "Please supply the following information:"
2996
  msgstr ""
2997
 
2998
- #: addons/migrator.php:90
2999
  msgid "Enter details for where this new site is to live within your multisite install:"
3000
  msgstr ""
3001
 
3002
- #: addons/migrator.php:99
3003
  msgid "Site Name:"
3004
  msgstr ""
3005
 
3006
- #: addons/migrator.php:101
3007
  msgid "Site Domain:"
3008
  msgstr ""
3009
 
3010
- #: addons/migrator.php:118
3011
  msgid "Migrated site (from UpdraftPlus)"
3012
  msgstr ""
3013
 
3014
- #: addons/migrator.php:147
3015
  msgid "<strong>ERROR</strong>: Site URL already taken."
3016
  msgstr ""
3017
 
3018
- #: addons/migrator.php:154
3019
  msgid "New site:"
3020
  msgstr ""
3021
 
3022
- #: addons/migrator.php:169
3023
  #, php-format
3024
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
3025
  msgstr ""
3026
 
3027
- #: addons/migrator.php:169
3028
  msgid "Search and replace site location in the database (migrate)"
3029
  msgstr ""
3030
 
3031
- #: addons/migrator.php:169
3032
  msgid "(learn more)"
3033
  msgstr ""
3034
 
3035
- #: addons/migrator.php:252
3036
- #: addons/migrator.php:365
3037
  #, php-format
3038
  msgid "Failed: the %s operation was not able to start."
3039
  msgstr ""
3040
 
3041
- #: addons/migrator.php:254
3042
- #: addons/migrator.php:367
3043
  #, php-format
3044
  msgid "Failed: we did not understand the result returned by the %s operation."
3045
  msgstr ""
3046
 
3047
- #: addons/migrator.php:275
3048
  msgid "Database: search and replace site URL"
3049
  msgstr ""
3050
 
3051
- #: addons/migrator.php:278
3052
  msgid "This option was not selected."
3053
  msgstr ""
3054
 
3055
- #: addons/migrator.php:293
3056
- #: addons/migrator.php:298
 
 
3057
  #, php-format
3058
  msgid "Error: unexpected empty parameter (%s, %s)"
3059
  msgstr ""
3060
 
3061
- #: addons/migrator.php:303
3062
  #, php-format
3063
  msgid "Nothing to do: the site URL is already: %s"
3064
  msgstr ""
3065
 
3066
- #: addons/migrator.php:308
 
3067
  #, php-format
3068
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
3069
  msgstr ""
3070
 
3071
- #: addons/migrator.php:315
 
3072
  #, php-format
3073
  msgid "Database search and replace: replace %s in backup dump with %s"
3074
  msgstr ""
3075
 
3076
- #: addons/migrator.php:332
3077
  msgid "Could not get list of tables"
3078
  msgstr ""
3079
 
3080
- #: addons/migrator.php:343
3081
  #, php-format
3082
  msgid "<strong>Search and replacing table:</strong> %s: already done"
3083
  msgstr ""
3084
 
3085
- #: addons/migrator.php:383
3086
  msgid "Tables examined:"
3087
  msgstr ""
3088
 
3089
- #: addons/migrator.php:384
3090
  msgid "Rows examined:"
3091
  msgstr ""
3092
 
3093
- #: addons/migrator.php:385
3094
  msgid "Changes made:"
3095
  msgstr ""
3096
 
3097
- #: addons/migrator.php:386
3098
  msgid "SQL update commands run:"
3099
  msgstr ""
3100
 
3101
- #: addons/migrator.php:388
3102
  msgid "Time taken (seconds):"
3103
  msgstr ""
3104
 
3105
- #: addons/migrator.php:446
3106
  #, php-format
3107
  msgid "<strong>Search and replacing table:</strong> %s"
3108
  msgstr ""
3109
 
3110
- #: addons/migrator.php:475
3111
  #, php-format
3112
  msgid "rows: %d"
3113
  msgstr ""
3114
 
3115
- #: addons/migrator.php:578
3116
  #, php-format
3117
  msgid "\"%s\" has no primary key, manual change needed on row %s."
3118
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: UpdraftPlus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-17 23:33+0100\n"
6
+ "PO-Revision-Date: 2013-10-17 23:33+0100\n"
7
  "Last-Translator: David Anderson <contact@updraftplus.com>\n"
8
  "Language-Team: <contact@updraftplus.com>\n"
9
  "Language: \n"
14
  "X-Poedit-Basepath: /home/david/MissionaryHosting/UpdraftPlus/svn/trunk\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: options.php:34
18
  msgid "UpdraftPlus Backups"
19
  msgstr ""
20
 
21
+ #: updraftplus.php:400
22
+ #: updraftplus.php:405
23
+ #: updraftplus.php:410
24
  #: admin.php:325
25
  #: admin.php:329
26
  msgid "UpdraftPlus notice:"
27
  msgstr ""
28
 
29
+ #: updraftplus.php:400
30
  msgid "The log file could not be read."
31
  msgstr ""
32
 
33
+ #: updraftplus.php:405
34
  msgid "No log files were found."
35
  msgstr ""
36
 
37
+ #: updraftplus.php:410
38
  msgid "The given file could not be read."
39
  msgstr ""
40
 
41
+ #: updraftplus.php:539
42
+ #, php-format
43
+ msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
44
+ msgstr ""
45
+
46
+ #: updraftplus.php:542
47
+ #: admin.php:296
48
+ #, php-format
49
+ msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)"
50
  msgstr ""
51
 
52
+ #: updraftplus.php:561
53
+ #, php-format
54
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
55
  msgstr ""
56
 
57
+ #: updraftplus.php:573
58
  #, php-format
59
  msgid "Your free disk space is very low - only %s Mb remain"
60
  msgstr ""
61
 
62
+ #: updraftplus.php:692
63
+ #: admin.php:2172
64
+ #, php-format
65
+ msgid "Your web-server does not have the %s module installed."
66
+ msgstr ""
67
+
68
+ #: updraftplus.php:692
69
+ #: admin.php:2172
70
+ msgid "Without it, encryption will be a lot slower."
71
+ msgstr ""
72
+
73
+ #: updraftplus.php:695
74
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on (and add more features to it)."
75
+ msgstr ""
76
+
77
+ #: updraftplus.php:695
78
+ #, php-format
79
+ msgid "See: %s"
80
+ msgstr ""
81
+
82
+ #: updraftplus.php:945
83
  msgid "Plugins"
84
  msgstr ""
85
 
86
+ #: updraftplus.php:946
87
  msgid "Themes"
88
  msgstr ""
89
 
90
+ #: updraftplus.php:947
91
  msgid "Uploads"
92
  msgstr ""
93
 
94
+ #: updraftplus.php:962
95
  msgid "Others"
96
  msgstr ""
97
 
98
+ #: updraftplus.php:1067
99
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
100
  msgstr ""
101
 
102
+ #: updraftplus.php:1347
103
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
104
  msgstr ""
105
 
106
+ #: updraftplus.php:1503
107
  msgid "The backup apparently succeeded and is now complete"
108
  msgstr ""
109
 
110
+ #: updraftplus.php:1509
111
  msgid "The backup apparently succeeded (with warnings) and is now complete"
112
  msgstr ""
113
 
114
+ #: updraftplus.php:1516
115
  msgid "The backup attempt has finished, apparently unsuccessfully"
116
  msgstr ""
117
 
118
+ #: updraftplus.php:1519
119
  msgid "The backup has not finished; a resumption is scheduled"
120
  msgstr ""
121
 
122
+ #: updraftplus.php:1786
123
  msgid "Could not read the directory"
124
  msgstr ""
125
 
126
+ #: updraftplus.php:1803
127
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
128
  msgstr ""
129
 
130
+ #: updraftplus.php:1974
131
  #: restorer.php:87
132
+ #: admin.php:887
133
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
134
  msgstr ""
135
 
136
+ #: updraftplus.php:1984
137
+ #: restorer.php:97
138
+ #: admin.php:901
139
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
140
  msgstr ""
141
 
142
+ #: updraftplus.php:1984
143
  msgid "The decryption key used:"
144
  msgstr ""
145
 
146
+ #: updraftplus.php:2002
147
  msgid "File not found"
148
  msgstr ""
149
 
150
+ #: updraftplus.php:2063
151
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
152
+ msgstr ""
153
+
154
+ #: updraftplus.php:2067
155
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
156
  msgstr ""
157
 
158
+ #: updraftplus.php:2069
159
+ #: updraftplus.php:2075
160
  msgid "Like UpdraftPlus and can spare one minute?"
161
  msgstr ""
162
 
163
+ #: updraftplus.php:2069
164
+ #: updraftplus.php:2075
165
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
166
  msgstr ""
167
 
168
+ #: updraftplus.php:2072
169
+ msgid "Check out WordShell"
170
+ msgstr ""
171
+
172
+ #: updraftplus.php:2072
173
+ msgid "manage WordPress from the command line - huge time-saver"
174
+ msgstr ""
175
+
176
+ #: updraftplus.php:2082
177
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
178
  msgstr ""
179
 
180
+ #: updraftplus.php:2089
181
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
182
  msgstr ""
183
 
184
+ #: updraftplus.php:2089
185
  msgid "Blog link"
186
  msgstr ""
187
 
188
+ #: updraftplus.php:2089
189
  msgid "RSS link"
190
  msgstr ""
191
 
192
+ #: updraftplus.php:2092
193
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
194
  msgstr ""
195
 
196
+ #: updraftplus.php:2095
197
  msgid "Want to say thank-you for UpdraftPlus?"
198
  msgstr ""
199
 
200
+ #: updraftplus.php:2095
201
  msgid "Please buy our very cheap 'no adverts' add-on."
202
  msgstr ""
203
 
204
+ #: backup.php:91
205
  #, php-format
206
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
207
  msgstr ""
208
 
209
+ #: backup.php:158
210
  #, php-format
211
  msgid "Could not create %s zip. Consult the log file for more information."
212
  msgstr ""
213
 
214
+ #: backup.php:422
215
  msgid "Errors encountered:"
216
  msgstr ""
217
 
218
+ #: backup.php:439
219
  msgid "Warnings encountered:"
220
  msgstr ""
221
 
222
+ #: backup.php:453
223
  msgid "Backed up"
224
  msgstr ""
225
 
226
+ #: backup.php:453
227
  msgid "WordPress backup is complete"
228
  msgstr ""
229
 
230
+ #: backup.php:453
231
  msgid "Backup contains"
232
  msgstr ""
233
 
234
+ #: backup.php:453
235
  msgid "Latest status"
236
  msgstr ""
237
 
238
+ #: backup.php:532
239
  #, php-format
240
  msgid "Backup directory (%s) is not writable, or does not exist."
241
  msgstr ""
242
 
243
+ #: backup.php:736
244
  msgid "The backup directory is not writable - the database backup is expected to shortly fail."
245
  msgstr ""
246
 
247
+ #: backup.php:762
248
  #, php-format
249
  msgid "Table: %s"
250
  msgstr ""
251
 
252
+ #: backup.php:772
253
  #, php-format
254
+ msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
255
  msgstr ""
256
 
257
+ #: backup.php:794
258
+ #, php-format
259
+ msgid "Skipping table (lacks our prefix): %s"
260
+ msgstr ""
261
+
262
+ #: backup.php:843
263
  msgid "An error occurred whilst closing the final database file"
264
  msgstr ""
265
 
266
+ #: backup.php:935
267
  #, php-format
268
  msgid "Delete any existing table %s"
269
  msgstr ""
270
 
271
+ #: backup.php:941
272
  #, php-format
273
  msgid "Table structure of table %s"
274
  msgstr ""
275
 
276
+ #: backup.php:945
277
  #, php-format
278
  msgid "Error with SHOW CREATE TABLE for %s."
279
  msgstr ""
280
 
281
+ #: backup.php:1037
 
 
 
 
 
282
  #, php-format
283
  msgid "End of data contents of table %s"
284
  msgstr ""
285
 
286
+ #: backup.php:1072
287
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
288
  msgstr ""
289
 
290
+ #: backup.php:1100
291
  msgid "Could not open the backup file for writing"
292
  msgstr ""
293
 
294
+ #: backup.php:1135
295
  #, php-format
296
  msgid "Generated: %s"
297
  msgstr ""
298
 
299
+ #: backup.php:1136
300
  #, php-format
301
  msgid "Hostname: %s"
302
  msgstr ""
303
 
304
+ #: backup.php:1137
305
  #, php-format
306
  msgid "Database: %s"
307
  msgstr ""
308
 
309
+ #: backup.php:1168
310
  msgid "Infinite recursion: consult your log for more information"
311
  msgstr ""
312
 
313
+ #: backup.php:1180
314
  #, php-format
315
  msgid "%s: unreadable file - could not be backed up (check the file permissions)"
316
  msgstr ""
317
 
318
+ #: backup.php:1186
319
  #, php-format
320
  msgid "Failed to open directory (check the file permissions): %s"
321
  msgstr ""
322
 
323
+ #: backup.php:1200
324
+ #: backup.php:1212
325
  #, php-format
326
  msgid "%s: unreadable file - could not be backed up"
327
  msgstr ""
328
 
329
+ #: backup.php:1449
330
+ #: backup.php:1685
331
  #, php-format
332
  msgid "Failed to open the zip file (%s) - %s"
333
  msgstr ""
334
 
335
+ #: backup.php:1463
336
  #, php-format
337
  msgid "A very large file was encountered: %s (size: %s Mb)"
338
  msgstr ""
339
 
340
+ #: backup.php:1502
341
+ #: backup.php:1695
342
  msgid "A zip error occurred - check your log for more details."
343
  msgstr ""
344
 
399
  msgstr ""
400
 
401
  #: restorer.php:35
402
+ #: admin.php:976
403
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
404
  msgstr ""
405
 
407
  msgid "Failed to create a temporary directory"
408
  msgstr ""
409
 
410
+ #: restorer.php:94
411
  msgid "Failed to write out the decrypted database to the filesystem"
412
  msgstr ""
413
 
414
+ #: restorer.php:152
415
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
416
  msgstr ""
417
 
418
+ #: restorer.php:156
419
  msgid "wp-config.php from backup: restoring (as per user's request)"
420
  msgstr ""
421
 
422
+ #: restorer.php:220
423
  #, php-format
424
  msgid "Failed to move file (check your file permissions and disk quota): %s"
425
  msgstr ""
426
 
427
+ #: restorer.php:229
428
  #, php-format
429
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
430
  msgstr ""
431
 
432
+ #: restorer.php:278
433
+ #: restorer.php:284
434
  #, php-format
435
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
436
  msgstr ""
437
 
438
+ #: restorer.php:278
439
  msgid "folder"
440
  msgstr ""
441
 
442
+ #: restorer.php:284
443
  msgid "file"
444
  msgstr ""
445
 
446
+ #: restorer.php:297
447
  #, php-format
448
  msgid "An existing unremoved backup from a previous restore exists: %s"
449
  msgstr ""
450
 
451
+ #: restorer.php:446
452
  msgid "This directory already exists, and will be replaced"
453
  msgstr ""
454
 
455
+ #: restorer.php:483
456
+ #: admin.php:887
457
+ #: admin.php:976
458
+ #: admin.php:981
459
+ #: admin.php:1132
460
+ #: admin.php:1139
461
  #, php-format
462
  msgid "Error: %s"
463
  msgstr ""
464
 
465
+ #: restorer.php:489
466
  msgid "Files found:"
467
  msgstr ""
468
 
469
+ #: restorer.php:495
470
  msgid "Unable to enumerate files in that directory."
471
  msgstr ""
472
 
473
+ #: restorer.php:537
474
  #, php-format
475
  msgid "Using directory from backup: %s"
476
  msgstr ""
477
 
478
+ #: restorer.php:553
479
  msgid "Please supply the requested information, and then continue."
480
  msgstr ""
481
 
482
+ #: restorer.php:556
483
+ #: admin.php:93
484
+ #: admin.php:2828
485
+ #: admin.php:2846
486
  msgid "Error:"
487
  msgstr ""
488
 
489
+ #: restorer.php:560
490
  msgid "New table prefix:"
491
  msgstr ""
492
 
493
+ #: restorer.php:600
494
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
495
  msgstr ""
496
 
497
+ #: restorer.php:605
498
  msgid "Failed to find database file"
499
  msgstr ""
500
 
501
+ #: restorer.php:611
502
  msgid "Failed to open database file"
503
  msgstr ""
504
 
505
+ #: restorer.php:635
506
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
507
  msgstr ""
508
 
509
+ #: restorer.php:680
510
+ #: restorer.php:695
511
+ #: admin.php:1327
512
  msgid "Warning:"
513
  msgstr ""
514
 
515
+ #: restorer.php:680
516
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
517
  msgstr ""
518
 
519
+ #: restorer.php:695
520
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure"
521
  msgstr ""
522
 
523
+ #: restorer.php:710
524
+ #: admin.php:945
525
  msgid "Backup of:"
526
  msgstr ""
527
 
528
+ #: restorer.php:714
529
+ msgid "Site home:"
530
+ msgstr ""
531
+
532
+ #: restorer.php:718
533
  #: restorer.php:789
534
  msgid "Old table prefix:"
535
  msgstr ""
536
 
537
+ #: restorer.php:730
538
+ #: admin.php:981
539
  msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
540
  msgstr ""
541
 
542
+ #: restorer.php:736
543
+ #: admin.php:989
544
  msgid "Site information:"
545
  msgstr ""
546
 
547
+ #: restorer.php:844
548
  #, php-format
549
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
550
  msgstr ""
551
 
552
+ #: restorer.php:855
553
  #, php-format
554
  msgid "Restoring table (%s)"
555
  msgstr ""
556
 
557
+ #: restorer.php:858
558
  msgid "will restore as:"
559
  msgstr ""
560
 
561
+ #: restorer.php:884
562
  #, php-format
563
  msgid "Finished: lines processed: %d in %.2f seconds"
564
  msgstr ""
565
 
566
+ #: restorer.php:906
567
  #, php-format
568
  msgid "Cannot create new tables, so skipping this command (%s)"
569
  msgstr ""
570
 
571
+ #: restorer.php:911
572
  #, php-format
573
  msgid "Cannot drop tables, so deleting instead (%s)"
574
  msgstr ""
575
 
576
+ #: restorer.php:927
577
  #, php-format
578
  msgid "An error (%s) occured:"
579
  msgstr ""
580
 
581
+ #: restorer.php:927
582
  msgid "the database query being run was:"
583
  msgstr ""
584
 
585
+ #: restorer.php:930
586
  msgid "An error occured on the first CREATE TABLE command - aborting run"
587
  msgstr ""
588
 
589
+ #: restorer.php:933
590
  msgid "Too many database errors have occurred - aborting restoration (you will need to restore manually)"
591
  msgstr ""
592
 
593
+ #: restorer.php:941
594
  #, php-format
595
  msgid "Database lines processed: %d in %.2f seconds"
596
  msgstr ""
597
 
598
+ #: restorer.php:985
599
+ #: restorer.php:1006
600
  #, php-format
601
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
602
  msgstr ""
603
 
604
+ #: restorer.php:987
605
+ #: restorer.php:1030
606
+ #: admin.php:788
607
+ #: admin.php:2811
608
  msgid "Error"
609
  msgstr ""
610
 
611
+ #: restorer.php:989
612
+ #: restorer.php:1032
613
+ #: admin.php:1911
614
+ #: admin.php:1935
615
+ #: admin.php:2813
616
+ #: admin.php:2826
617
  msgid "OK"
618
  msgstr ""
619
 
620
+ #: restorer.php:999
621
  #, php-format
622
  msgid "Uploads path (%s) does not exist - resetting (%s)"
623
  msgstr ""
624
 
625
+ #: admin.php:80
626
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
627
  msgstr ""
628
 
629
+ #: admin.php:81
630
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
631
+ msgstr ""
632
+
633
+ #: admin.php:82
634
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
635
+ msgstr ""
636
+
637
+ #: admin.php:83
638
  msgid "Unexpected response:"
639
  msgstr ""
640
 
641
+ #: admin.php:84
642
+ msgid "The web server returned an error code (try again, or check your web server logs)"
643
+ msgstr ""
644
+
645
+ #: admin.php:85
646
  msgid "calculating..."
647
  msgstr ""
648
 
649
+ #: admin.php:86
650
  msgid "Begun looking for this entity"
651
  msgstr ""
652
 
653
+ #: admin.php:87
654
  msgid "Some files are still downloading or being processed - please wait."
655
  msgstr ""
656
 
657
+ #: admin.php:88
658
  msgid "Processing files - please wait..."
659
  msgstr ""
660
 
661
+ #: admin.php:89
662
  msgid "Error: the server sent an empty response."
663
  msgstr ""
664
 
665
+ #: admin.php:90
666
  msgid "Warnings:"
667
  msgstr ""
668
 
669
+ #: admin.php:91
670
  msgid "Errors:"
671
  msgstr ""
672
 
673
+ #: admin.php:92
674
  msgid "Error: the server sent us a response (JSON) which we did not understand."
675
  msgstr ""
676
 
677
+ #: admin.php:94
678
+ #: admin.php:845
679
  msgid "File ready."
680
  msgstr ""
681
 
682
+ #: admin.php:95
683
  msgid "You should:"
684
  msgstr ""
685
 
686
+ #: admin.php:96
687
  msgid "Delete from your web server"
688
  msgstr ""
689
 
690
+ #: admin.php:97
691
  msgid "Download to your computer"
692
  msgstr ""
693
 
694
+ #: admin.php:98
695
  msgid "and then, if you wish,"
696
  msgstr ""
697
 
698
+ #: admin.php:99
699
  msgid "Download error: the server sent us a response which we did not understand."
700
  msgstr ""
701
 
702
+ #: admin.php:100
703
  msgid "Requesting start of backup..."
704
  msgstr ""
705
 
706
+ #: admin.php:101
707
  msgid "PHP information"
708
  msgstr ""
709
 
710
+ #: admin.php:102
711
  msgid "Raw backup history"
712
  msgstr ""
713
 
714
+ #: admin.php:103
715
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz)). However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
716
  msgstr ""
717
 
718
+ #: admin.php:104
719
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
720
  msgstr ""
721
 
722
+ #: admin.php:105
723
  msgid "Upload error:"
724
  msgstr ""
725
 
726
+ #: admin.php:106
727
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
728
  msgstr ""
729
 
730
+ #: admin.php:107
731
  msgid "Upload error"
732
  msgstr ""
733
 
734
+ #: admin.php:108
735
  msgid "Follow this link to attempt decryption and download the database file to your computer."
736
  msgstr ""
737
 
738
+ #: admin.php:109
739
  msgid "This decryption key will be attempted:"
740
  msgstr ""
741
 
742
+ #: admin.php:110
743
  msgid "Unknown server response:"
744
  msgstr ""
745
 
746
+ #: admin.php:111
747
  msgid "Unknown server response status:"
748
  msgstr ""
749
 
750
+ #: admin.php:112
751
  msgid "The file was uploaded."
752
  msgstr ""
753
 
754
+ #: admin.php:113
755
+ #: admin.php:1423
756
  msgid "Backup Now"
757
  msgstr ""
758
 
759
+ #: admin.php:114
760
  msgid "Cancel"
761
  msgstr ""
762
 
763
+ #: admin.php:115
764
+ #: admin.php:1905
765
+ #: admin.php:1930
766
  msgid "Delete"
767
  msgstr ""
768
 
769
+ #: admin.php:116
770
  msgid "Close"
771
  msgstr ""
772
 
773
+ #: admin.php:117
774
+ #: admin.php:1430
775
+ #: admin.php:2603
776
  msgid "Restore"
777
  msgstr ""
778
 
779
+ #: admin.php:133
780
+ #: admin.php:283
781
  #, php-format
782
  msgid "Dismiss (for %s weeks)"
783
  msgstr ""
784
 
785
+ #: admin.php:134
786
+ #: admin.php:284
787
  msgid "Be safe with an automatic backup"
788
  msgstr ""
789
 
790
+ #: admin.php:135
791
+ #: admin.php:285
792
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
793
  msgstr ""
794
 
795
+ #: admin.php:135
796
+ #: admin.php:285
797
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
798
  msgstr ""
799
 
800
+ #: admin.php:164
801
+ #: admin.php:186
802
  msgid "Allowed Files"
803
  msgstr ""
804
 
805
+ #: admin.php:249
806
  msgid "Settings"
807
  msgstr ""
808
 
809
+ #: admin.php:253
810
  msgid "Add-Ons / Pro Support"
811
  msgstr ""
812
 
813
+ #: admin.php:270
814
  msgid "Update Plugin"
815
  msgstr ""
816
 
817
+ #: admin.php:274
818
  msgid "Update Theme"
819
  msgstr ""
820
 
821
+ #: admin.php:296
822
  #: admin.php:300
823
  #: admin.php:304
824
  #: admin.php:308
825
  #: admin.php:312
826
  #: admin.php:321
827
+ #: admin.php:1474
828
+ #: admin.php:2396
829
+ #: admin.php:2403
830
+ #: admin.php:2405
831
  msgid "Warning"
832
  msgstr ""
833
 
836
  msgstr ""
837
 
838
  #: admin.php:300
839
+ #: admin.php:1327
840
  msgid "Go here for more information."
841
  msgstr ""
842
 
867
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
868
  msgstr ""
869
 
870
+ #: admin.php:321
871
+ msgid "W3 Total Cache's object cache is active. This is known to have a bug that messes with all scheduled tasks (including backup jobs)."
872
+ msgstr ""
873
+
874
  #: admin.php:321
875
  msgid "Go here to turn it off."
876
  msgstr ""
886
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
887
  msgstr ""
888
 
889
+ #: admin.php:496
890
  #, php-format
891
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
892
  msgstr ""
893
 
894
+ #: admin.php:510
895
+ #: admin.php:536
896
  msgid "Nothing yet logged"
897
  msgstr ""
898
 
899
+ #: admin.php:549
900
  msgid "No such backup set exists"
901
  msgstr ""
902
 
903
+ #: admin.php:572
904
+ #: admin.php:1412
905
+ #: admin.php:1572
906
+ #: admin.php:1575
907
+ #: admin.php:2506
908
+ #: admin.php:2508
909
+ #: admin.php:2869
910
  msgid "Database"
911
  msgstr ""
912
 
913
+ #: admin.php:587
914
  #, php-format
915
  msgid "File not found (you need to upload it): %s"
916
  msgstr ""
917
 
918
+ #: admin.php:589
919
  #, php-format
920
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
921
  msgstr ""
922
 
923
+ #: admin.php:593
924
  #, php-format
925
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
926
  msgstr ""
927
 
928
+ #: admin.php:607
929
  #, php-format
930
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
931
  msgstr ""
932
 
933
+ #: admin.php:612
934
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
935
  msgstr ""
936
 
937
+ #: admin.php:614
938
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
939
  msgstr ""
940
 
941
+ #: admin.php:616
942
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
943
  msgstr ""
944
 
945
+ #: admin.php:626
946
  msgid "Backup set not found"
947
  msgstr ""
948
 
949
+ #: admin.php:707
950
  msgid "The backup set has been removed."
951
  msgstr ""
952
 
953
+ #: admin.php:708
954
  #, php-format
955
  msgid "Local archives deleted: %d"
956
  msgstr ""
957
 
958
+ #: admin.php:709
959
  #, php-format
960
  msgid "Remote archives deleted: %d"
961
  msgstr ""
962
 
963
+ #: admin.php:717
964
  msgid "Known backups (raw)"
965
  msgstr ""
966
 
967
+ #: admin.php:741
968
+ #: admin.php:796
969
+ #: admin.php:1456
970
  #, php-format
971
  msgid "%d set(s) available"
972
  msgstr ""
973
 
974
+ #: admin.php:748
975
  msgid "Schedule backup"
976
  msgstr ""
977
 
978
+ #: admin.php:752
979
  msgid "Failed."
980
  msgstr ""
981
 
982
+ #: admin.php:754
983
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
984
  msgstr ""
985
 
986
+ #: admin.php:754
987
  msgid "Nothing happening? Follow this link for help."
988
  msgstr ""
989
 
990
+ #: admin.php:770
991
  msgid "Job deleted"
992
  msgstr ""
993
 
994
+ #: admin.php:777
995
  msgid "Could not find that job - perhaps it has already finished?"
996
  msgstr ""
997
 
998
+ #: admin.php:827
999
  msgid "Download failed"
1000
  msgstr ""
1001
 
1002
+ #: admin.php:853
1003
  msgid "Download in progress"
1004
  msgstr ""
1005
 
1006
+ #: admin.php:856
1007
  msgid "No local copy present."
1008
  msgstr ""
1009
 
1010
+ #: admin.php:896
1011
  msgid "Failed to write out the decrypted database to the filesystem."
1012
  msgstr ""
1013
 
1014
+ #: admin.php:908
1015
  #, php-format
1016
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
1017
  msgstr ""
1018
 
1019
+ #: admin.php:914
1020
  msgid "Failed to open database file."
1021
  msgstr ""
1022
 
1023
+ #: admin.php:949
1024
+ #: admin.php:957
1025
+ #: admin.php:1874
1026
+ #: admin.php:2027
1027
  #, php-format
1028
  msgid "Warning: %s"
1029
  msgstr ""
1030
 
1031
+ #: admin.php:949
1032
+ #: admin.php:957
1033
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
1034
  msgstr ""
1035
 
1036
+ #: admin.php:963
1037
  #, php-format
1038
  msgid "%s version: %s"
1039
  msgstr ""
1040
 
1041
+ #: admin.php:964
1042
  #, php-format
1043
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
1044
  msgstr ""
1045
 
1046
+ #: admin.php:1038
1047
  #, php-format
1048
  msgid "This database backup is missing core WordPress tables: %s"
1049
  msgstr ""
1050
 
1051
+ #: admin.php:1041
1052
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
1053
  msgstr ""
1054
 
1055
+ #: admin.php:1132
1056
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
1057
  msgstr ""
1058
 
1059
+ #: admin.php:1139
1060
  #, php-format
1061
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
1062
  msgstr ""
1063
 
1064
+ #: admin.php:1219
1065
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
1066
  msgstr ""
1067
 
1068
+ #: admin.php:1248
1069
  msgid "Restore successful!"
1070
  msgstr ""
1071
 
1072
+ #: admin.php:1249
1073
+ #: admin.php:1275
1074
+ #: admin.php:1294
1075
  msgid "Actions"
1076
  msgstr ""
1077
 
1078
+ #: admin.php:1249
1079
+ #: admin.php:1254
1080
+ #: admin.php:1275
1081
+ #: admin.php:1294
1082
  msgid "Return to UpdraftPlus Configuration"
1083
  msgstr ""
1084
 
1085
+ #: admin.php:1264
1086
  msgid "Remove old directories"
1087
  msgstr ""
1088
 
1089
+ #: admin.php:1270
1090
  msgid "Old directories successfully removed."
1091
  msgstr ""
1092
 
1093
+ #: admin.php:1273
1094
  msgid "Old directory removal failed for some reason. You may want to do this manually."
1095
  msgstr ""
1096
 
1097
+ #: admin.php:1285
1098
  msgid "Backup directory could not be created"
1099
  msgstr ""
1100
 
1101
+ #: admin.php:1292
1102
  msgid "Backup directory successfully created."
1103
  msgstr ""
1104
 
1105
+ #: admin.php:1316
1106
  msgid "Your settings have been wiped."
1107
  msgstr ""
1108
 
1109
+ #: admin.php:1323
1110
  msgid "By UpdraftPlus.Com"
1111
  msgstr ""
1112
 
1113
+ #: admin.php:1323
1114
  msgid "News"
1115
  msgstr ""
1116
 
1117
+ #: admin.php:1323
1118
  msgid "Premium"
1119
  msgstr ""
1120
 
1121
+ #: admin.php:1323
1122
  msgid "Support"
1123
  msgstr ""
1124
 
1125
+ #: admin.php:1323
1126
  msgid "Lead developer's homepage"
1127
  msgstr ""
1128
 
1129
+ #: admin.php:1323
1130
  msgid "Donate"
1131
  msgstr ""
1132
 
1133
+ #: admin.php:1323
1134
  msgid "More plugins"
1135
  msgstr ""
1136
 
1137
+ #: admin.php:1323
1138
  msgid "Version"
1139
  msgstr ""
1140
 
1141
+ #: admin.php:1327
1142
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
1143
  msgstr ""
1144
 
1145
+ #: admin.php:1333
1146
  msgid "Your backup has been restored."
1147
  msgstr ""
1148
 
1149
+ #: admin.php:1333
1150
+ msgid "If your restore included files, then your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
1151
  msgstr ""
1152
 
1153
+ #: admin.php:1339
1154
  msgid "Old directories successfully deleted."
1155
  msgstr ""
1156
 
1157
+ #: admin.php:1342
1158
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
1159
  msgstr ""
1160
 
1161
+ #: admin.php:1342
1162
  msgid "Current limit is:"
1163
  msgstr ""
1164
 
1165
+ #: admin.php:1346
1166
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). Use this button to delete them (if you have verified that the restoration worked)."
1167
  msgstr ""
1168
 
1169
+ #: admin.php:1350
1170
  msgid "Delete Old Directories"
1171
  msgstr ""
1172
 
1173
+ #: admin.php:1362
1174
  msgid "Existing Schedule And Backups"
1175
  msgstr ""
1176
 
1177
+ #: admin.php:1366
1178
  msgid "JavaScript warning"
1179
  msgstr ""
1180
 
1181
+ #: admin.php:1367
1182
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
1183
  msgstr ""
1184
 
1185
+ #: admin.php:1380
1186
+ #: admin.php:1393
1187
  msgid "Nothing currently scheduled"
1188
  msgstr ""
1189
 
1190
+ #: admin.php:1385
1191
  msgid "At the same time as the files backup"
1192
  msgstr ""
1193
 
1194
+ #: admin.php:1409
1195
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
1196
  msgstr ""
1197
 
1198
+ #: admin.php:1409
1199
  msgid "Next scheduled backups"
1200
  msgstr ""
1201
 
1202
+ #: admin.php:1411
1203
  msgid "Files"
1204
  msgstr ""
1205
 
1206
+ #: admin.php:1413
1207
  msgid "Time now"
1208
  msgstr ""
1209
 
1210
+ #: admin.php:1417
1211
  msgid "Last backup job run:"
1212
  msgstr ""
1213
 
1214
+ #: admin.php:1433
1215
  msgid "Clone/Migrate"
1216
  msgstr ""
1217
 
1218
+ #: admin.php:1441
1219
  msgid "Last log message"
1220
  msgstr ""
1221
 
1222
+ #: admin.php:1443
1223
  msgid "(Nothing yet logged)"
1224
  msgstr ""
1225
 
1226
+ #: admin.php:1444
1227
  msgid "Download most recently modified log file"
1228
  msgstr ""
1229
 
1230
+ #: admin.php:1450
1231
  msgid "Backups in progress:"
1232
  msgstr ""
1233
 
1234
+ #: admin.php:1455
1235
  msgid "Backups, logs & restoring"
1236
  msgstr ""
1237
 
1238
+ #: admin.php:1456
1239
  msgid "Press to see available backups"
1240
  msgstr ""
1241
 
1242
+ #: admin.php:1462
1243
  msgid "Latest UpdraftPlus.com news:"
1244
  msgstr ""
1245
 
1246
+ #: admin.php:1472
1247
  msgid "Downloading and restoring"
1248
  msgstr ""
1249
 
1250
+ #: admin.php:1474
1251
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
1252
  msgstr ""
1253
 
1254
+ #: admin.php:1474
1255
  msgid "Please consult this FAQ for help on what to do about it."
1256
  msgstr ""
1257
 
1258
+ #: admin.php:1477
1259
  msgid "Downloading"
1260
  msgstr ""
1261
 
1262
+ #: admin.php:1477
1263
  msgid "Pressing a button for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
1264
  msgstr ""
1265
 
1266
+ #: admin.php:1478
1267
+ msgid "Restoring:"
1268
  msgstr ""
1269
 
1270
+ #: admin.php:1478
1271
+ msgid "Press the Restore button next to the chosen backup set."
1272
  msgstr ""
1273
 
1274
+ #: admin.php:1478
1275
  msgid "More tasks:"
1276
  msgstr ""
1277
 
1278
+ #: admin.php:1478
1279
  msgid "upload backup files"
1280
  msgstr ""
1281
 
1282
+ #: admin.php:1478
1283
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded. The location of this directory is set in the expert settings, below."
1284
  msgstr ""
1285
 
1286
+ #: admin.php:1478
1287
  msgid "rescan folder for new backup sets"
1288
  msgstr ""
1289
 
1290
+ #: admin.php:1479
1291
  msgid "Opera web browser"
1292
  msgstr ""
1293
 
1294
+ #: admin.php:1479
1295
  msgid "If you are using this, then turn Turbo/Road mode off."
1296
  msgstr ""
1297
 
1298
+ #: admin.php:1484
1299
  msgid "Google Drive"
1300
  msgstr ""
1301
 
1302
+ #: admin.php:1484
1303
  msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
1304
  msgstr ""
1305
 
1306
+ #: admin.php:1487
1307
  msgid "This is a count of the contents of your Updraft directory"
1308
  msgstr ""
1309
 
1310
+ #: admin.php:1487
1311
  msgid "Web-server disk space in use by UpdraftPlus"
1312
  msgstr ""
1313
 
1314
+ #: admin.php:1487
1315
  msgid "refresh"
1316
  msgstr ""
1317
 
1318
+ #: admin.php:1489
1319
  msgid "UpdraftPlus - Upload backup files"
1320
  msgstr ""
1321
 
1322
+ #: admin.php:1490
1323
  msgid "Upload files into UpdraftPlus. Use this to import backups made on a different WordPress installation."
1324
  msgstr ""
1325
 
1326
+ #: admin.php:1490
1327
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
1328
  msgstr ""
1329
 
1330
+ #: admin.php:1494
1331
+ msgid "Drop backup files here"
1332
  msgstr ""
1333
 
1334
+ #: admin.php:1495
1335
+ #: admin.php:2191
1336
  msgid "or"
1337
  msgstr ""
1338
 
1339
+ #: admin.php:1515
1340
  msgid "Delete backup set"
1341
  msgstr ""
1342
 
1343
+ #: admin.php:1518
1344
  msgid "Are you sure that you wish to delete this backup set?"
1345
  msgstr ""
1346
 
1347
+ #: admin.php:1526
1348
  msgid "Also delete from remote storage"
1349
  msgstr ""
1350
 
1351
+ #: admin.php:1527
1352
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
1353
  msgstr ""
1354
 
1355
+ #: admin.php:1533
1356
  msgid "Restore backup"
1357
  msgstr ""
1358
 
1359
+ #: admin.php:1534
1360
  msgid "Restore backup from"
1361
  msgstr ""
1362
 
1363
+ #: admin.php:1538
1364
  msgid "Downloading / preparing backup files..."
1365
  msgstr ""
1366
 
1367
+ #: admin.php:1546
1368
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
1369
  msgstr ""
1370
 
1371
+ #: admin.php:1546
1372
  msgid "Choose the components to restore"
1373
  msgstr ""
1374
 
1375
+ #: admin.php:1555
1376
  msgid "Your web server has PHP's so-called safe_mode active."
1377
  msgstr ""
1378
 
1379
+ #: admin.php:1555
1380
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1381
  msgstr ""
1382
 
1383
+ #: admin.php:1568
1384
  #, php-format
1385
  msgid "The following entity cannot be restored automatically: \"%s\"."
1386
  msgstr ""
1387
 
1388
+ #: admin.php:1568
1389
  msgid "You will need to restore it manually."
1390
  msgstr ""
1391
 
1392
+ #: admin.php:1575
1393
  #, php-format
1394
  msgid "%s restoration options:"
1395
  msgstr ""
1396
 
1397
+ #: admin.php:1583
1398
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
1399
  msgstr ""
1400
 
1401
+ #: admin.php:1594
1402
  msgid "Do read this helpful article of useful things to know before restoring."
1403
  msgstr ""
1404
 
1405
+ #: admin.php:1599
1406
  msgid "Migrate Site"
1407
  msgstr ""
1408
 
1409
+ #: admin.php:1603
1410
  msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
1411
  msgstr ""
1412
 
1413
+ #: admin.php:1603
1414
  #, php-format
1415
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
1416
  msgstr ""
1417
 
1418
+ #: admin.php:1605
1419
  msgid "Do you want to migrate or clone/duplicate a site?"
1420
  msgstr ""
1421
 
1422
+ #: admin.php:1605
1423
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1424
  msgstr ""
1425
 
1426
+ #: admin.php:1605
1427
  msgid "Get it here."
1428
  msgstr ""
1429
 
1430
+ #: admin.php:1616
1431
  msgid "Perform a one-time backup"
1432
  msgstr ""
1433
 
1434
+ #: admin.php:1617
1435
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity after about 10 seconds. WordPress should start the backup running in the background."
1436
  msgstr ""
1437
 
1438
+ #: admin.php:1620
1439
+ msgid "Don't include the database in the backup"
1440
+ msgstr ""
1441
+
1442
+ #: admin.php:1621
1443
+ msgid "Don't include any files in the backup"
1444
  msgstr ""
1445
 
1446
+ #: admin.php:1624
1447
+ msgid "Does nothing happen when you attempt backups?"
1448
+ msgstr ""
1449
+
1450
+ #: admin.php:1624
1451
  msgid "Go here for help."
1452
  msgstr ""
1453
 
1454
+ #: admin.php:1630
1455
  msgid "Multisite"
1456
  msgstr ""
1457
 
1458
+ #: admin.php:1634
1459
  msgid "Do you need WordPress Multisite support?"
1460
  msgstr ""
1461
 
1462
+ #: admin.php:1634
1463
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
1464
  msgstr ""
1465
 
1466
+ #: admin.php:1639
1467
  msgid "Configure Backup Contents And Schedule"
1468
  msgstr ""
1469
 
1470
+ #: admin.php:1645
1471
  msgid "Debug Information And Expert Options"
1472
  msgstr ""
1473
 
1474
+ #: admin.php:1648
1475
  msgid "Web server:"
1476
  msgstr ""
1477
 
1478
+ #: admin.php:1651
1479
  msgid "Peak memory usage"
1480
  msgstr ""
1481
 
1482
+ #: admin.php:1652
1483
  msgid "Current memory usage"
1484
  msgstr ""
1485
 
1486
+ #: admin.php:1653
1487
  msgid "PHP memory limit"
1488
  msgstr ""
1489
 
1490
+ #: admin.php:1654
1491
+ #: admin.php:1656
1492
  #, php-format
1493
  msgid "%s version:"
1494
  msgstr ""
1495
 
1496
+ #: admin.php:1655
1497
  msgid "show PHP information (phpinfo)"
1498
  msgstr ""
1499
 
1500
+ #: admin.php:1659
1501
+ #: admin.php:1661
1502
+ #: admin.php:1668
1503
  msgid "Yes"
1504
  msgstr ""
1505
 
1506
+ #: admin.php:1661
1507
+ #: admin.php:1668
1508
  msgid "No"
1509
  msgstr ""
1510
 
1511
+ #: admin.php:1664
1512
  msgid "PHP has support for ZipArchive::addFile:"
1513
  msgstr ""
1514
 
1515
+ #: admin.php:1668
1516
  msgid "zip executable found:"
1517
  msgstr ""
1518
 
1519
+ #: admin.php:1673
1520
+ #, php-format
1521
+ msgid "Free disk space in account: %s (%s used)"
1522
+ msgstr ""
1523
+
1524
+ #: admin.php:1676
1525
  msgid "Show raw backup and file list"
1526
  msgstr ""
1527
 
1528
+ #: admin.php:1679
1529
  msgid "Total (uncompressed) on-disk data:"
1530
  msgstr ""
1531
 
1532
+ #: admin.php:1680
1533
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
1534
  msgstr ""
1535
 
1536
+ #: admin.php:1687
1537
  msgid "count"
1538
  msgstr ""
1539
 
1540
+ #: admin.php:1693
1541
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups and the \"Backup Now\" button do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken. You should then disable all your other plugins, and try the \"Backup Now\" button. If that fails, then contact your web hosting company and ask them if they have disabled wp-cron. If it succeeds, then re-activate your other plugins one-by-one, and find the one that is the problem and report a bug to them."
1542
  msgstr ""
1543
 
1544
+ #: admin.php:1701
1545
  msgid "Debug Full Backup"
1546
  msgstr ""
1547
 
1548
+ #: admin.php:1701
1549
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
1550
  msgstr ""
1551
 
1552
+ #: admin.php:1706
1553
  msgid "Debug Database Backup"
1554
  msgstr ""
1555
 
1556
+ #: admin.php:1706
1557
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
1558
  msgstr ""
1559
 
1560
+ #: admin.php:1712
1561
  msgid "Wipe Settings"
1562
  msgstr ""
1563
 
1564
+ #: admin.php:1713
1565
  msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
1566
  msgstr ""
1567
 
1568
+ #: admin.php:1716
1569
  msgid "Wipe All Settings"
1570
  msgstr ""
1571
 
1572
+ #: admin.php:1716
1573
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
1574
  msgstr ""
1575
 
1576
+ #: admin.php:1765
1577
  msgid "Backup begun"
1578
  msgstr ""
1579
 
1580
+ #: admin.php:1770
1581
  msgid "Creating file backup zips"
1582
  msgstr ""
1583
 
1584
+ #: admin.php:1783
1585
  msgid "Created file backup zips"
1586
  msgstr ""
1587
 
1588
+ #: admin.php:1788
1589
  msgid "Creating database backup"
1590
  msgstr ""
1591
 
1592
+ #: admin.php:1790
1593
  #, php-format
1594
  msgid "table: %s"
1595
  msgstr ""
1596
 
1597
+ #: admin.php:1798
1598
  msgid "Created database backup"
1599
  msgstr ""
1600
 
1601
+ #: admin.php:1803
1602
  msgid "Encrypting database"
1603
  msgstr ""
1604
 
1605
+ #: admin.php:1807
1606
  msgid "Encrypted database"
1607
  msgstr ""
1608
 
1609
+ #: admin.php:1812
1610
  msgid "Uploading files to remote storage"
1611
  msgstr ""
1612
 
1613
+ #: admin.php:1819
1614
  #, php-format
1615
  msgid "(%s%%, file %s of %s)"
1616
  msgstr ""
1617
 
1618
+ #: admin.php:1824
1619
  msgid "Pruning old backup sets"
1620
  msgstr ""
1621
 
1622
+ #: admin.php:1828
1623
  msgid "Waiting until scheduled time to retry because of errors"
1624
  msgstr ""
1625
 
1626
+ #: admin.php:1833
1627
  msgid "Backup finished"
1628
  msgstr ""
1629
 
1630
+ #: admin.php:1836
1631
  msgid "Unknown"
1632
  msgstr ""
1633
 
1634
+ #: admin.php:1852
1635
  #, php-format
1636
  msgid "next resumption: %d (after %ss)"
1637
  msgstr ""
1638
 
1639
+ #: admin.php:1853
1640
  #, php-format
1641
  msgid "last activity: %ss ago"
1642
  msgstr ""
1643
 
1644
+ #: admin.php:1863
1645
  #, php-format
1646
  msgid "Job ID: %s"
1647
  msgstr ""
1648
 
1649
+ #: admin.php:1867
1650
  msgid "show log"
1651
  msgstr ""
1652
 
1653
+ #: admin.php:1869
1654
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
1655
  msgstr ""
1656
 
1657
+ #: admin.php:1869
1658
  msgid "delete schedule"
1659
  msgstr ""
1660
 
1661
+ #: admin.php:1908
1662
+ #: admin.php:1933
1663
  msgid "Failed"
1664
  msgstr ""
1665
 
1666
+ #: admin.php:1971
1667
  msgid "The request to the filesystem to create the directory failed."
1668
  msgstr ""
1669
 
1670
+ #: admin.php:1985
1671
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
1672
  msgstr ""
1673
 
1674
+ #: admin.php:1989
1675
  msgid "The folder exists, but your webserver does not have permission to write to it."
1676
  msgstr ""
1677
 
1678
+ #: admin.php:1989
1679
  msgid "You will need to consult with your web hosting provider to find out to set permissions for a WordPress plugin to write to the directory."
1680
  msgstr ""
1681
 
1682
+ #: admin.php:2043
1683
  msgid "Download log file"
1684
  msgstr ""
1685
 
1686
+ #: admin.php:2047
1687
  msgid "No backup has been completed."
1688
  msgstr ""
1689
 
1690
+ #: admin.php:2063
1691
  msgid "File backup intervals"
1692
  msgstr ""
1693
 
1694
+ #: admin.php:2066
1695
  msgid "Manual"
1696
  msgstr ""
1697
 
1698
+ #: admin.php:2066
1699
  msgid "Every 4 hours"
1700
  msgstr ""
1701
 
1702
+ #: admin.php:2066
1703
  msgid "Every 8 hours"
1704
  msgstr ""
1705
 
1706
+ #: admin.php:2066
1707
  msgid "Every 12 hours"
1708
  msgstr ""
1709
 
1710
+ #: admin.php:2066
1711
  msgid "Daily"
1712
  msgstr ""
1713
 
1714
+ #: admin.php:2066
1715
  msgid "Weekly"
1716
  msgstr ""
1717
 
1718
+ #: admin.php:2066
1719
  msgid "Fortnightly"
1720
  msgstr ""
1721
 
1722
+ #: admin.php:2066
1723
  msgid "Monthly"
1724
  msgstr ""
1725
 
1726
+ #: admin.php:2075
1727
+ #: admin.php:2093
1728
  msgid "and retain this many backups"
1729
  msgstr ""
1730
 
1731
+ #: admin.php:2082
1732
  msgid "Database backup intervals"
1733
  msgstr ""
1734
 
1735
+ #: admin.php:2100
1736
  msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above. Backups will occur at the intervals specified. If the two schedules are the same, then the two backups will take place together. If you choose \"manual\" then you must click the \"Backup Now\" button whenever you wish a backup to occur."
1737
  msgstr ""
1738
 
1739
+ #: admin.php:2101
1740
  msgid "To fix the time at which a backup should take place,"
1741
  msgstr ""
1742
 
1743
+ #: admin.php:2101
1744
  msgid "e.g. if your server is busy at day and you want to run overnight"
1745
  msgstr ""
1746
 
1747
+ #: admin.php:2101
1748
  msgid "use the \"Fix Time\" add-on"
1749
  msgstr ""
1750
 
1751
+ #: admin.php:2105
1752
  msgid "Include in files backup"
1753
  msgstr ""
1754
 
1755
+ #: admin.php:2115
1756
  #, php-format
1757
  msgid "Your wp-content directory server path: %s"
1758
  msgstr ""
1759
 
1760
+ #: admin.php:2115
1761
  msgid "Any other directories found inside wp-content"
1762
  msgstr ""
1763
 
1764
+ #: admin.php:2121
1765
  msgid "Exclude these:"
1766
  msgstr ""
1767
 
1768
+ #: admin.php:2123
1769
  msgid "If entering multiple files/directories, then separate them with commas. You can use a * at the end of any entry as a wildcard."
1770
  msgstr ""
1771
 
1772
+ #: admin.php:2135
1773
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
1774
  msgstr ""
1775
 
1776
+ #: admin.php:2135
1777
+ msgid "See also the \"More Files\" add-on from our shop."
1778
  msgstr ""
1779
 
1780
+ #: admin.php:2135
1781
  msgid "Use WordShell for automatic backup, version control and patching"
1782
  msgstr ""
1783
 
1784
+ #: admin.php:2139
1785
+ #: udaddons/options.php:95
1786
  msgid "Email"
1787
  msgstr ""
1788
 
1789
+ #: admin.php:2144
1790
  msgid "To send to more than one address, separate each address with a comma."
1791
  msgstr ""
1792
 
1793
+ #: admin.php:2144
1794
  msgid "Enter an address here to have a report sent (and the whole backup, if you choose) to it."
1795
  msgstr ""
1796
 
1797
+ #: admin.php:2152
1798
+ #, php-format
1799
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s)."
1800
+ msgstr ""
1801
+
1802
+ #: admin.php:2163
1803
  msgid "Database encryption phrase"
1804
  msgstr ""
1805
 
1806
+ #: admin.php:2174
1807
  msgid "If you enter text here, it is used to encrypt backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> Presently, only the database file is encrypted. This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
1808
  msgstr ""
1809
 
1810
+ #: admin.php:2174
1811
  msgid "You can also decrypt a database manually here."
1812
  msgstr ""
1813
 
1814
+ #: admin.php:2178
1815
+ msgid "A future release of UpdraftPlus will move the encryption feature into an add-on, and add the capability to encrypt files also."
1816
+ msgstr ""
1817
+
1818
+ #: admin.php:2186
1819
  msgid "Manually decrypt a database backup file"
1820
  msgstr ""
1821
 
1822
+ #: admin.php:2190
1823
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
1824
  msgstr ""
1825
 
1826
+ #: admin.php:2193
1827
  msgid "Use decryption key"
1828
  msgstr ""
1829
 
1830
+ #: admin.php:2207
1831
  msgid "Copying Your Backup To Remote Storage"
1832
  msgstr ""
1833
 
1834
+ #: admin.php:2217
1835
  msgid "Choose your remote storage"
1836
  msgstr ""
1837
 
1838
+ #: admin.php:2226
1839
  msgid "None"
1840
  msgstr ""
1841
 
1842
+ #: admin.php:2237
1843
  msgid "You can send a backup to more than one destination with an add-on."
1844
  msgstr ""
1845
 
1846
+ #: admin.php:2284
1847
  msgid "Advanced / Debugging Settings"
1848
  msgstr ""
1849
 
1850
+ #: admin.php:2287
1851
  msgid "Debug mode"
1852
  msgstr ""
1853
 
1854
+ #: admin.php:2288
1855
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong. You <strong>must</strong> send us this log if you are filing a bug report."
1856
  msgstr ""
1857
 
1858
+ #: admin.php:2291
1859
  msgid "Expert settings"
1860
  msgstr ""
1861
 
1862
+ #: admin.php:2292
1863
  msgid "Show expert settings"
1864
  msgstr ""
1865
 
1866
+ #: admin.php:2292
1867
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
1868
  msgstr ""
1869
 
1870
+ #: admin.php:2302
1871
  msgid "Split archives every:"
1872
  msgstr ""
1873
 
1874
+ #: admin.php:2303
1875
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is 800 megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 Gb / 2048 Mb limit on some 32-bit servers/file systems)."
1876
  msgstr ""
1877
 
1878
+ #: admin.php:2307
1879
  msgid "Delete local backup"
1880
  msgstr ""
1881
 
1882
+ #: admin.php:2308
1883
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
1884
  msgstr ""
1885
 
1886
+ #: admin.php:2312
1887
  msgid "Backup directory"
1888
  msgstr ""
1889
 
1890
+ #: admin.php:2319
1891
  msgid "Backup directory specified is writable, which is good."
1892
  msgstr ""
1893
 
1894
+ #: admin.php:2323
1895
  msgid "Backup directory specified does <b>not</b> exist."
1896
  msgstr ""
1897
 
1898
+ #: admin.php:2325
1899
  msgid "Backup directory specified exists, but is <b>not</b> writable."
1900
  msgstr ""
1901
 
1902
+ #: admin.php:2327
1903
  msgid "Click here to attempt to create the directory and set the permissions"
1904
  msgstr ""
1905
 
1906
+ #: admin.php:2327
1907
  msgid "or, to reset this option"
1908
  msgstr ""
1909
 
1910
+ #: admin.php:2327
1911
  msgid "click here"
1912
  msgstr ""
1913
 
1914
+ #: admin.php:2327
1915
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
1916
  msgstr ""
1917
 
1918
+ #: admin.php:2330
1919
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
1920
  msgstr ""
1921
 
1922
+ #: admin.php:2330
1923
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
1924
  msgstr ""
1925
 
1926
+ #: admin.php:2334
1927
  msgid "Use the server's SSL certificates"
1928
  msgstr ""
1929
 
1930
+ #: admin.php:2335
1931
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
1932
  msgstr ""
1933
 
1934
+ #: admin.php:2339
1935
  msgid "Do not verify SSL certificates"
1936
  msgstr ""
1937
 
1938
+ #: admin.php:2340
1939
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
1940
  msgstr ""
1941
 
1942
+ #: admin.php:2340
1943
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
1944
  msgstr ""
1945
 
1946
+ #: admin.php:2344
1947
  msgid "Disable SSL entirely where possible"
1948
  msgstr ""
1949
 
1950
+ #: admin.php:2345
1951
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
1952
  msgstr ""
1953
 
1954
+ #: admin.php:2369
1955
  msgid "Save Changes"
1956
  msgstr ""
1957
 
1958
+ #: admin.php:2396
1959
  #, php-format
1960
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
1961
  msgstr ""
1962
 
1963
+ #: admin.php:2396
1964
  #, php-format
1965
  msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
1966
  msgstr ""
1967
 
1968
+ #: admin.php:2403
1969
  #, php-format
1970
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
1971
  msgstr ""
1972
 
1973
+ #: admin.php:2405
1974
  #, php-format
1975
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
1976
  msgstr ""
1977
 
1978
+ #: admin.php:2408
1979
  #, php-format
1980
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
1981
  msgstr ""
1982
 
1983
+ #: admin.php:2491
1984
  msgid "Delete this backup set"
1985
  msgstr ""
1986
 
1987
+ #: admin.php:2500
1988
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
1989
  msgstr ""
1990
 
1991
+ #: admin.php:2500
1992
  msgid "(Not finished)"
1993
  msgstr ""
1994
 
1995
+ #: admin.php:2519
1996
+ #: admin.php:2574
1997
  #, php-format
1998
  msgid "(No %s)"
1999
  msgstr ""
2000
 
2001
+ #: admin.php:2519
2002
  msgid "database"
2003
  msgstr ""
2004
 
2005
+ #: admin.php:2546
2006
  msgid "Press here to download"
2007
  msgstr ""
2008
 
2009
+ #: admin.php:2552
2010
  #, php-format
2011
  msgid "(%d archive(s) in set)."
2012
  msgstr ""
2013
 
2014
+ #: admin.php:2555
2015
  msgid "You appear to be missing one or more archives from this multi-archive set."
2016
  msgstr ""
2017
 
2018
+ #: admin.php:2582
2019
  msgid "Backup Log"
2020
  msgstr ""
2021
 
2022
+ #: admin.php:2603
2023
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
2024
  msgstr ""
2025
 
2026
+ #: admin.php:2694
2027
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
2028
  msgstr ""
2029
 
2030
+ #: admin.php:2729
2031
  msgid "UpdraftPlus Restoration: Progress"
2032
  msgstr ""
2033
 
2034
+ #: admin.php:2756
2035
  msgid "ABORT: Could not find the information on which entities to restore."
2036
  msgstr ""
2037
 
2038
+ #: admin.php:2757
2039
  msgid "If making a request for support, please include this information:"
2040
  msgstr ""
2041
 
2042
+ #: admin.php:2779
2043
  msgid "Final checks"
2044
  msgstr ""
2045
 
2046
+ #: admin.php:2791
2047
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
2048
  msgstr ""
2049
 
2050
+ #: admin.php:2802
2051
  #, php-format
2052
  msgid "Looking for %s archive: file name: %s"
2053
  msgstr ""
2054
 
2055
+ #: admin.php:2807
2056
  msgid "File is not locally present - needs retrieving from remote storage"
2057
  msgstr ""
2058
 
2059
+ #: admin.php:2823
2060
  msgid "Archive is expected to be size:"
2061
  msgstr ""
2062
 
2063
+ #: admin.php:2828
2064
  msgid "file is size:"
2065
  msgstr ""
2066
 
2067
+ #: admin.php:2831
2068
  msgid "The backup records do not contain information about the proper size of this file."
2069
  msgstr ""
2070
 
2071
+ #: admin.php:2834
2072
+ #: admin.php:2835
2073
  msgid "Could not find one of the files for restoration"
2074
  msgstr ""
2075
 
2076
+ #: admin.php:2859
2077
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
2078
  msgstr ""
2079
 
2080
+ #: admin.php:2878
2081
  msgid "Error message"
2082
  msgstr ""
2083
 
2084
+ #: udaddons/options.php:56
2085
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
2086
+ msgstr ""
2087
+
2088
+ #: udaddons/options.php:56
2089
+ msgid "Go here to connect."
2090
+ msgstr ""
2091
+
2092
+ #: udaddons/options.php:62
2093
+ msgid "UpdraftPlus is not yet activated."
2094
+ msgstr ""
2095
+
2096
+ #: udaddons/options.php:63
2097
+ msgid "Go here to activate it."
2098
+ msgstr ""
2099
+
2100
+ #: udaddons/options.php:66
2101
+ msgid "UpdraftPlus is not yet installed."
2102
+ msgstr ""
2103
+
2104
+ #: udaddons/options.php:66
2105
+ msgid "Go here to begin installing it."
2106
+ msgstr ""
2107
+
2108
+ #: udaddons/options.php:67
2109
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
2110
+ msgstr ""
2111
+
2112
+ #: udaddons/options.php:73
2113
+ msgid "Your web server's version of PHP is too old ("
2114
+ msgstr ""
2115
+
2116
+ #: udaddons/options.php:93
2117
+ msgid "Connect with your UpdraftPlus.Com account"
2118
+ msgstr ""
2119
+
2120
+ #: udaddons/options.php:97
2121
+ msgid "Password"
2122
+ msgstr ""
2123
+
2124
+ #: udaddons/options.php:118
2125
+ msgid "Not yet got an account (it's free)? Go get one!"
2126
+ msgstr ""
2127
+
2128
+ #: udaddons/options.php:128
2129
+ msgid "Forgotten your details?"
2130
+ msgstr ""
2131
+
2132
+ #: udaddons/options.php:153
2133
+ msgid "You do not have permission to access this page."
2134
+ msgstr ""
2135
+
2136
+ #: udaddons/options.php:174
2137
  msgid "You do not have sufficient permissions to access this page."
2138
  msgstr ""
2139
 
2140
+ #: udaddons/options.php:201
2141
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
2142
+ msgstr ""
2143
+
2144
+ #: udaddons/options.php:221
2145
+ msgid "An unknown error occured when trying to connect to UpdraftPlus.Com"
2146
+ msgstr ""
2147
+
2148
+ #: udaddons/options.php:227
2149
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
2150
+ msgstr ""
2151
+
2152
+ #: udaddons/options.php:228
2153
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
2154
+ msgstr ""
2155
+
2156
+ #: udaddons/options.php:230
2157
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
2158
+ msgstr ""
2159
+
2160
+ #: udaddons/options.php:236
2161
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
2162
+ msgstr ""
2163
+
2164
+ #: udaddons/options.php:277
2165
+ msgid "Please wait whilst we make the claim..."
2166
+ msgstr ""
2167
+
2168
+ #: udaddons/options.php:278
2169
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else?"
2170
+ msgstr ""
2171
+
2172
+ #: udaddons/options.php:279
2173
+ msgid "Claim not granted - your account login details were wrong"
2174
+ msgstr ""
2175
+
2176
+ #: udaddons/options.php:280
2177
+ msgid "An unknown response was received. Response was:"
2178
+ msgstr ""
2179
+
2180
+ #: udaddons/options.php:321
2181
+ msgid "An error occurred when trying to retrieve your add-ons."
2182
+ msgstr ""
2183
+
2184
+ #: udaddons/options.php:335
2185
+ msgid "Need to get support?"
2186
+ msgstr ""
2187
+
2188
+ #: udaddons/options.php:335
2189
+ msgid "Go here"
2190
+ msgstr ""
2191
+
2192
+ #: udaddons/options.php:360
2193
+ msgid "(apparently a pre-release or withdrawn release)"
2194
+ msgstr ""
2195
+
2196
+ #: udaddons/options.php:366
2197
+ msgid "Available for this site (via your all-addons purchase)"
2198
+ msgstr ""
2199
+
2200
+ #: udaddons/options.php:366
2201
+ msgid "please update the plugin in order to get it"
2202
+ msgstr ""
2203
+
2204
+ #: udaddons/options.php:369
2205
+ msgid "Assigned to this site"
2206
+ msgstr ""
2207
+
2208
+ #: udaddons/options.php:369
2209
+ msgid "please update the plugin in order to activate it"
2210
+ msgstr ""
2211
+
2212
+ #: udaddons/options.php:375
2213
+ msgid "You have an inactive purchase"
2214
+ msgstr ""
2215
+
2216
+ #: udaddons/options.php:375
2217
+ msgid "activate it on this site"
2218
+ msgstr ""
2219
+
2220
+ #: udaddons/options.php:378
2221
+ msgid "Get it from the UpdraftPlus.Com Store"
2222
+ msgstr ""
2223
+
2224
+ #: udaddons/options.php:379
2225
+ msgid "Buy It"
2226
+ msgstr ""
2227
+
2228
+ #: udaddons/options.php:402
2229
+ msgid "Manage Addons"
2230
+ msgstr ""
2231
+
2232
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:88
2233
  #: methods/googledrive.php:63
2234
  #, php-format
2266
  msgid "S3 (Compatible)"
2267
  msgstr ""
2268
 
2269
+ #: methods/googledrive.php:115
2270
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
2271
  msgstr ""
2272
 
2273
+ #: methods/googledrive.php:124
2274
  msgid "Authorization failed"
2275
  msgstr ""
2276
 
2277
+ #: methods/googledrive.php:145
2278
  #, php-format
2279
  msgid "Your %s quota usage: %s %% used, %s available"
2280
  msgstr ""
2281
 
2282
+ #: methods/googledrive.php:151
2283
  #: methods/cloudfiles.php:498
 
2284
  msgid "Success"
2285
  msgstr ""
2286
 
2287
+ #: methods/googledrive.php:151
2288
  #, php-format
2289
  msgid "you have authenticated your %s account."
2290
  msgstr ""
2291
 
2292
+ #: methods/googledrive.php:167
2293
+ #: methods/googledrive.php:232
2294
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
2295
  msgstr ""
2296
 
2297
+ #: methods/googledrive.php:168
2298
+ #: methods/googledrive.php:363
2299
  msgid "Have not yet obtained an access token from Google (has the user authorised?)"
2300
  msgstr ""
2301
 
2302
+ #: methods/googledrive.php:201
2303
  #, php-format
2304
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
2305
  msgstr ""
2306
 
2307
+ #: methods/googledrive.php:207
2308
  #, php-format
2309
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
2310
  msgstr ""
2311
 
2312
+ #: methods/googledrive.php:216
2313
  #, php-format
2314
  msgid "Failed to upload to %s"
2315
  msgstr ""
2316
 
2317
+ #: methods/googledrive.php:334
2318
  #, php-format
2319
  msgid "An error occurred during %s upload (see log for more details)"
2320
  msgstr ""
2321
 
2322
+ #: methods/googledrive.php:373
2323
  #, php-format
2324
  msgid "Google Drive error: %d: could not download: could not find a record of the Google Drive file ID for this file"
2325
  msgstr ""
2326
 
2327
+ #: methods/googledrive.php:378
2328
  #, php-format
2329
  msgid "Could not find %s in order to download it"
2330
  msgstr ""
2331
 
2332
+ #: methods/googledrive.php:391
2333
  #, php-format
2334
  msgid "%s error: zero-size file was downloaded"
2335
  msgstr ""
2336
 
2337
+ #: methods/googledrive.php:391
2338
  msgid "Google Drive "
2339
  msgstr ""
2340
 
2341
+ #: methods/googledrive.php:409
2342
  msgid "Account is not authorized."
2343
  msgstr ""
2344
 
2345
+ #: methods/googledrive.php:442
2346
  #: methods/cloudfiles.php:384
 
2347
  #, php-format
2348
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
2349
  msgstr ""
2350
 
2351
+ #: methods/googledrive.php:452
2352
  #: methods/cloudfiles.php:394
 
2353
  #, php-format
2354
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
2355
  msgstr ""
2356
 
2357
+ #: methods/googledrive.php:452
2358
  #: methods/cloudfiles.php:394
 
2359
  #, php-format
2360
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
2361
  msgstr ""
2362
 
2363
+ #: methods/googledrive.php:462
2364
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
2365
  msgstr ""
2366
 
2367
+ #: methods/googledrive.php:463
2368
  msgid "Follow this link to your Google API Console, and there create a Client ID in the API Access section."
2369
  msgstr ""
2370
 
2371
+ #: methods/googledrive.php:463
2372
  msgid "Select 'Web Application' as the application type."
2373
  msgstr ""
2374
 
2375
+ #: methods/googledrive.php:463
2376
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
2377
  msgstr ""
2378
 
2379
+ #: methods/googledrive.php:463
2380
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your client ID; you must create a new one from your Google API console for each site."
2381
  msgstr ""
2382
 
2383
+ #: methods/googledrive.php:466
2384
  msgid "You do not have the SimpleXMLElement installed. Google Drive backups will <b>not</b> work until you do."
2385
  msgstr ""
2386
 
2387
+ #: methods/googledrive.php:473
2388
  msgid "Client ID"
2389
  msgstr ""
2390
 
2391
+ #: methods/googledrive.php:474
2392
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
2393
  msgstr ""
2394
 
2395
+ #: methods/googledrive.php:477
2396
  msgid "Client Secret"
2397
  msgstr ""
2398
 
2399
+ #: methods/googledrive.php:481
2400
  msgid "Folder ID"
2401
  msgstr ""
2402
 
2403
+ #: methods/googledrive.php:482
2404
  msgid "<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder."
2405
  msgstr ""
2406
 
2407
+ #: methods/googledrive.php:485
2408
  msgid "Authenticate with Google"
2409
  msgstr ""
2410
 
2411
+ #: methods/googledrive.php:486
2412
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
2413
+ msgstr ""
2414
+
2415
+ #: methods/googledrive.php:486
2416
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
2417
  msgstr ""
2418
 
2438
 
2439
  #: methods/cloudfiles.php:105
2440
  #: methods/cloudfiles.php:147
 
 
 
2441
  #, php-format
2442
  msgid "%s Error: Failed to upload"
2443
  msgstr ""
2486
 
2487
  #: methods/cloudfiles.php:371
2488
  #: methods/cloudfiles.php:434
 
 
2489
  #, php-format
2490
  msgid "Test %s Settings"
2491
  msgstr ""
2492
 
2493
  #: methods/cloudfiles.php:372
 
2494
  #, php-format
2495
  msgid "%s settings test result:"
2496
  msgstr ""
2529
 
2530
  #: methods/cloudfiles.php:442
2531
  #: methods/cloudfiles.php:447
 
 
2532
  #, php-format
2533
  msgid "Failure: No %s was given."
2534
  msgstr ""
2535
 
2536
  #: methods/cloudfiles.php:442
 
2537
  msgid "API key"
2538
  msgstr ""
2539
 
2559
  msgid "We accessed the container, and were able to create files within it."
2560
  msgstr ""
2561
 
2562
+ #: methods/email.php:18
2563
+ #, php-format
2564
+ msgid "With the next release of UpdraftPlus, you will need an add-on to use a different email address to the site owner's (%s). See: %s"
2565
+ msgstr ""
2566
+
2567
+ #: methods/email.php:32
2568
  msgid "WordPress Backup"
2569
  msgstr ""
2570
 
2571
+ #: methods/email.php:32
2572
  #, php-format
2573
  msgid "Backup is of: %s."
2574
  msgstr ""
2575
 
2576
+ #: methods/email.php:32
2577
  msgid "Be wary; email backups may fail because of file size limitations on mail servers."
2578
  msgstr ""
2579
 
2580
+ #: methods/email.php:39
2581
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
2582
  msgstr ""
2583
 
2584
+ #: methods/email.php:48
2585
  msgid "Note:"
2586
  msgstr ""
2587
 
2588
+ #: methods/email.php:49
2589
+ msgid "The email address entered above will be used. If choosing \"E-Mail\", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive."
2590
  msgstr ""
2591
 
2592
+ #: methods/s3.php:172
2593
  #, php-format
2594
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
2595
  msgstr ""
2596
 
2597
+ #: methods/s3.php:195
2598
  #, php-format
2599
  msgid "%s error: file %s was shortened unexpectedly"
2600
  msgstr ""
2601
 
2602
+ #: methods/s3.php:205
2603
  #, php-format
2604
  msgid "%s chunk %s: upload failed"
2605
  msgstr ""
2606
 
2607
+ #: methods/s3.php:219
2608
  #, php-format
2609
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
2610
  msgstr ""
2611
 
2612
+ #: methods/s3.php:223
2613
  #, php-format
2614
  msgid "%s re-assembly error (%s): (see log file for more)"
2615
  msgstr ""
2616
 
2617
+ #: methods/s3.php:235
2618
  #, php-format
2619
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
2620
  msgstr ""
2621
 
2622
+ #: methods/s3.php:271
2623
+ #: methods/s3.php:339
2624
  #, php-format
2625
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
2626
  msgstr ""
2627
 
2628
+ #: methods/s3.php:335
2629
  #, php-format
2630
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
2631
  msgstr ""
2632
 
2633
+ #: methods/s3.php:351
2634
+ #: methods/ftp.php:148
2635
+ #: addons/webdav.php:289
2636
+ #: addons/sftp.php:326
2637
  #, php-format
2638
  msgid "Testing %s Settings..."
2639
  msgstr ""
2640
 
2641
+ #: methods/s3.php:387
2642
  msgid "Examples of S3-compatible storage providers:"
2643
  msgstr ""
2644
 
2645
+ #: methods/s3.php:395
2646
  msgid "... and many more!"
2647
  msgstr ""
2648
 
2649
+ #: methods/s3.php:416
2650
  #, php-format
2651
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
2652
  msgstr ""
2653
 
2654
+ #: methods/s3.php:416
2655
  msgid "If you see errors about SSL certificates, then please go here for help."
2656
  msgstr ""
2657
 
2658
+ #: methods/s3.php:420
2659
  #, php-format
2660
  msgid "%s end-point"
2661
  msgstr ""
2662
 
2663
+ #: methods/s3.php:427
2664
  #, php-format
2665
  msgid "%s access key"
2666
  msgstr ""
2667
 
2668
+ #: methods/s3.php:431
2669
  #, php-format
2670
  msgid "%s secret key"
2671
  msgstr ""
2672
 
2673
+ #: methods/s3.php:435
2674
  #, php-format
2675
  msgid "%s location"
2676
  msgstr ""
2677
 
2678
+ #: methods/s3.php:436
2679
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
2680
  msgstr ""
2681
 
2682
+ #: methods/s3.php:457
2683
  msgid "API secret"
2684
  msgstr ""
2685
 
2686
+ #: methods/s3.php:478
2687
  msgid "Failure: No bucket details were given."
2688
  msgstr ""
2689
 
2690
+ #: methods/s3.php:493
2691
  msgid "Region"
2692
  msgstr ""
2693
 
2694
+ #: methods/s3.php:511
2695
  #, php-format
2696
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
2697
  msgstr ""
2698
 
2699
+ #: methods/s3.php:512
2700
  #, php-format
2701
  msgid "The error reported by %s was:"
2702
  msgstr ""
2703
 
2704
+ #: methods/s3.php:525
2705
+ #: methods/s3.php:537
2706
  msgid "Failure"
2707
  msgstr ""
2708
 
2709
+ #: methods/s3.php:525
2710
+ #: methods/s3.php:537
2711
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
2712
  msgstr ""
2713
 
2714
+ #: methods/s3.php:527
2715
  msgid "We accessed the bucket, and were able to create files within it."
2716
  msgstr ""
2717
 
2718
+ #: methods/s3.php:530
2719
  #, php-format
2720
  msgid "The communication with %s was encrypted."
2721
  msgstr ""
2722
 
2723
+ #: methods/s3.php:532
2724
  #, php-format
2725
  msgid "The communication with %s was not encrypted."
2726
  msgstr ""
2727
 
2728
+ #: methods/s3.php:537
2729
  msgid "Please check your access credentials."
2730
  msgstr ""
2731
 
2732
  #: methods/dropbox.php:35
2733
  #, php-format
2734
+ msgid "The %s PHP module is not installed - ask your web hosting company to enable it"
2735
  msgstr ""
2736
 
2737
  #: methods/dropbox.php:41
2789
  msgid "Authenticate with Dropbox"
2790
  msgstr ""
2791
 
2792
+ #: methods/dropbox.php:291
2793
+ msgid "(You appear to be already authenticated)"
2794
+ msgstr ""
2795
+
2796
  #: methods/dropbox.php:291
2797
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Dropbox."
2798
  msgstr ""
2822
  msgid "%s upload failed"
2823
  msgstr ""
2824
 
2825
+ #: methods/ftp.php:182
2826
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
2827
  msgstr ""
2828
 
2829
+ #: methods/ftp.php:182
2830
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
2831
  msgstr ""
2832
 
2833
+ #: methods/ftp.php:186
2834
  msgid "FTP Server"
2835
  msgstr ""
2836
 
2837
+ #: methods/ftp.php:190
2838
  msgid "FTP Login"
2839
  msgstr ""
2840
 
2841
+ #: methods/ftp.php:194
2842
  msgid "FTP Password"
2843
  msgstr ""
2844
 
2845
+ #: methods/ftp.php:198
2846
  msgid "Remote Path"
2847
  msgstr ""
2848
 
2849
+ #: methods/ftp.php:199
2850
  msgid "Needs to already exist"
2851
  msgstr ""
2852
 
2853
+ #: methods/ftp.php:224
2854
  msgid "Failure: No server details were given."
2855
  msgstr ""
2856
 
2857
+ #: methods/ftp.php:239
2858
  msgid "Failure: we did not successfully log in with those credentials."
2859
  msgstr ""
2860
 
2861
+ #: methods/ftp.php:247
2862
  msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
2863
  msgstr ""
2864
 
2865
+ #: methods/ftp.php:251
2866
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
2867
  msgstr ""
2868
 
2869
+ #: methods/ftp.php:254
2870
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
2871
  msgstr ""
2872
 
3048
  msgid "Port"
3049
  msgstr ""
3050
 
 
 
 
 
3051
  #: addons/sftp.php:302
3052
  msgid "Directory path"
3053
  msgstr ""
3183
  msgid "Proceed with update"
3184
  msgstr ""
3185
 
3186
+ #: addons/multisite.php:140
3187
  msgid "Multisite Install"
3188
  msgstr ""
3189
 
3190
+ #: addons/multisite.php:237
 
 
 
 
3191
  msgid "Must-use plugins"
3192
  msgstr ""
3193
 
3194
+ #: addons/multisite.php:244
3195
  msgid "Blog uploads"
3196
  msgstr ""
3197
 
3199
  msgid "Remote Storage Options"
3200
  msgstr ""
3201
 
3202
+ #: addons/migrator.php:44
3203
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
3204
  msgstr ""
3205
 
3206
+ #: addons/migrator.php:48
3207
  msgid "Processed plugin:"
3208
  msgstr ""
3209
 
3210
+ #: addons/migrator.php:56
3211
  msgid "Network activating theme:"
3212
  msgstr ""
3213
 
3214
+ #: addons/migrator.php:89
3215
  msgid "Information needed to continue:"
3216
  msgstr ""
3217
 
3218
+ #: addons/migrator.php:90
3219
  msgid "Please supply the following information:"
3220
  msgstr ""
3221
 
3222
+ #: addons/migrator.php:93
3223
  msgid "Enter details for where this new site is to live within your multisite install:"
3224
  msgstr ""
3225
 
3226
+ #: addons/migrator.php:102
3227
  msgid "Site Name:"
3228
  msgstr ""
3229
 
3230
+ #: addons/migrator.php:104
3231
  msgid "Site Domain:"
3232
  msgstr ""
3233
 
3234
+ #: addons/migrator.php:121
3235
  msgid "Migrated site (from UpdraftPlus)"
3236
  msgstr ""
3237
 
3238
+ #: addons/migrator.php:150
3239
  msgid "<strong>ERROR</strong>: Site URL already taken."
3240
  msgstr ""
3241
 
3242
+ #: addons/migrator.php:157
3243
  msgid "New site:"
3244
  msgstr ""
3245
 
3246
+ #: addons/migrator.php:174
3247
  #, php-format
3248
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
3249
  msgstr ""
3250
 
3251
+ #: addons/migrator.php:174
3252
  msgid "Search and replace site location in the database (migrate)"
3253
  msgstr ""
3254
 
3255
+ #: addons/migrator.php:174
3256
  msgid "(learn more)"
3257
  msgstr ""
3258
 
3259
+ #: addons/migrator.php:270
3260
+ #: addons/migrator.php:434
3261
  #, php-format
3262
  msgid "Failed: the %s operation was not able to start."
3263
  msgstr ""
3264
 
3265
+ #: addons/migrator.php:272
3266
+ #: addons/migrator.php:436
3267
  #, php-format
3268
  msgid "Failed: we did not understand the result returned by the %s operation."
3269
  msgstr ""
3270
 
3271
+ #: addons/migrator.php:319
3272
  msgid "Database: search and replace site URL"
3273
  msgstr ""
3274
 
3275
+ #: addons/migrator.php:322
3276
  msgid "This option was not selected."
3277
  msgstr ""
3278
 
3279
+ #: addons/migrator.php:345
3280
+ #: addons/migrator.php:349
3281
+ #: addons/migrator.php:354
3282
+ #: addons/migrator.php:358
3283
  #, php-format
3284
  msgid "Error: unexpected empty parameter (%s, %s)"
3285
  msgstr ""
3286
 
3287
+ #: addons/migrator.php:363
3288
  #, php-format
3289
  msgid "Nothing to do: the site URL is already: %s"
3290
  msgstr ""
3291
 
3292
+ #: addons/migrator.php:368
3293
+ #: addons/migrator.php:371
3294
  #, php-format
3295
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
3296
  msgstr ""
3297
 
3298
+ #: addons/migrator.php:378
3299
+ #: addons/migrator.php:381
3300
  #, php-format
3301
  msgid "Database search and replace: replace %s in backup dump with %s"
3302
  msgstr ""
3303
 
3304
+ #: addons/migrator.php:399
3305
  msgid "Could not get list of tables"
3306
  msgstr ""
3307
 
3308
+ #: addons/migrator.php:410
3309
  #, php-format
3310
  msgid "<strong>Search and replacing table:</strong> %s: already done"
3311
  msgstr ""
3312
 
3313
+ #: addons/migrator.php:452
3314
  msgid "Tables examined:"
3315
  msgstr ""
3316
 
3317
+ #: addons/migrator.php:453
3318
  msgid "Rows examined:"
3319
  msgstr ""
3320
 
3321
+ #: addons/migrator.php:454
3322
  msgid "Changes made:"
3323
  msgstr ""
3324
 
3325
+ #: addons/migrator.php:455
3326
  msgid "SQL update commands run:"
3327
  msgstr ""
3328
 
3329
+ #: addons/migrator.php:457
3330
  msgid "Time taken (seconds):"
3331
  msgstr ""
3332
 
3333
+ #: addons/migrator.php:516
3334
  #, php-format
3335
  msgid "<strong>Search and replacing table:</strong> %s"
3336
  msgstr ""
3337
 
3338
+ #: addons/migrator.php:545
3339
  #, php-format
3340
  msgid "rows: %d"
3341
  msgstr ""
3342
 
3343
+ #: addons/migrator.php:648
3344
  #, php-format
3345
  msgid "\"%s\" has no primary key, manual change needed on row %s."
3346
  msgstr ""
methods/dropbox.php CHANGED
@@ -288,7 +288,7 @@ class UpdraftPlus_BackupModule_dropbox {
288
 
289
  <tr class="updraftplusmethod dropbox">
290
  <th><?php _e('Authenticate with Dropbox','updraftplus');?>:</th>
291
- <td><p><?php if (UpdraftPlus_Options::get_updraft_option('updraft_dropboxtk_request_token','xyz') != 'xyz') echo "<strong>(You appear to be already authenticated).</strong>"; ?> <a href="?page=updraftplus&action=updraftmethod-dropbox-auth&updraftplus_dropboxauth=doit"><?php echo __('<strong>After</strong> you have saved your settings (by clicking \'Save Changes\' below), then come back here once and click this link to complete authentication with Dropbox.','updraftplus');?></a>
292
  </p>
293
  </td>
294
  </tr>
@@ -360,7 +360,7 @@ class UpdraftPlus_BackupModule_dropbox {
360
  self::bootstrap();
361
  $new_token = UpdraftPlus_Options::get_updraft_option("updraft_dropboxtk_request_token","xyz");
362
  if ($new_token && $new_token != "xyz") {
363
- add_action('admin_notices', array('UpdraftPlus_BackupModule_dropbox', 'show_authed_admin_warning') );
364
  }
365
  }
366
 
@@ -386,7 +386,7 @@ class UpdraftPlus_BackupModule_dropbox {
386
  $sec = UpdraftPlus_Options::get_updraft_option('updraft_dropbox_appkey');
387
 
388
  // Set the callback URL
389
- $callback = admin_url('options-general.php?page=updraftplus&action=updraftmethod-dropbox-auth');
390
 
391
  // Instantiate the Encrypter and storage objects
392
  $encrypter = new Dropbox_Encrypter('ThisOneDoesNotMatterBeyondLength');
288
 
289
  <tr class="updraftplusmethod dropbox">
290
  <th><?php _e('Authenticate with Dropbox','updraftplus');?>:</th>
291
+ <td><p><?php if (UpdraftPlus_Options::get_updraft_option('updraft_dropboxtk_request_token','xyz') != 'xyz') echo "<strong>".__('(You appear to be already authenticated)','updraftplus').".</strong>"; ?> <a href="?page=updraftplus&action=updraftmethod-dropbox-auth&updraftplus_dropboxauth=doit"><?php echo __('<strong>After</strong> you have saved your settings (by clicking \'Save Changes\' below), then come back here once and click this link to complete authentication with Dropbox.','updraftplus');?></a>
292
  </p>
293
  </td>
294
  </tr>
360
  self::bootstrap();
361
  $new_token = UpdraftPlus_Options::get_updraft_option("updraft_dropboxtk_request_token","xyz");
362
  if ($new_token && $new_token != "xyz") {
363
+ add_action('all_admin_notices', array('UpdraftPlus_BackupModule_dropbox', 'show_authed_admin_warning') );
364
  }
365
  }
366
 
386
  $sec = UpdraftPlus_Options::get_updraft_option('updraft_dropbox_appkey');
387
 
388
  // Set the callback URL
389
+ $callback = UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-dropbox-auth';
390
 
391
  // Instantiate the Encrypter and storage objects
392
  $encrypter = new Dropbox_Encrypter('ThisOneDoesNotMatterBeyondLength');
methods/email.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- // Files can easily get way too big for this method
4
 
5
  class UpdraftPlus_BackupModule_email {
6
 
@@ -10,15 +10,21 @@ class UpdraftPlus_BackupModule_email {
10
 
11
  $updraft_dir = trailingslashit($updraftplus->backups_dir_location());
12
 
 
 
 
13
  foreach ($backup_array as $type => $file) {
 
 
 
14
  $fullpath = $updraft_dir.$file;
15
  #if (file_exists($fullpath) && filesize($fullpath) > ...
16
  $any_sent = false;
17
- foreach (explode(',', UpdraftPlus_Options::get_updraft_option('updraft_email')) as $sendmail_addr) {
18
  $send_short = (strlen($sendmail_addr)>5) ? substr($sendmail_addr, 0, 5).'...' : $sendmail_addr;
19
  $updraftplus->log("$file: email to: $send_short");
20
 
21
- $sent = wp_mail(trim($sendmail_addr), __("WordPress Backup",'updraftplus')." ".get_date_from_gmt(gmdate('Y-m-d H:i:s', $updraftplus->backup_time), 'Y-m-d H:i'), sprintf(__("Backup is of: %s.",'updraftplus'), $type).' '.__('Be wary; email backups may fail because of file size limitations on mail servers.','updraftplus'), null, array($fullpath));
22
  if ($sent) $any_sent = true;
23
  }
24
  if ($any_sent) {
@@ -35,7 +41,7 @@ class UpdraftPlus_BackupModule_email {
35
  ?>
36
  <tr class="updraftplusmethod email">
37
  <th><?php _e('Note:','updraftplus');?></th>
38
- <td><?php echo str_replace('&gt;','>', str_replace('&lt;','<',htmlspecialchars(__('The email address entered above will be used. If choosing "E-Mail", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive. If you really need a large backup via email, then you could fund a new feature (to break the backup set into configurable-size pieces) - but the demand has not yet existed for such a feature.','updraftplus'))));?></td>
39
  </tr>
40
  <?php
41
  }
1
  <?php
2
 
3
+ // Files can easily get too big for this method
4
 
5
  class UpdraftPlus_BackupModule_email {
6
 
10
 
11
  $updraft_dir = trailingslashit($updraftplus->backups_dir_location());
12
 
13
+ $email = UpdraftPlus_Options::get_updraft_option('updraft_email');
14
+ if (is_array($email)) $email = implode(',', $email);
15
+
16
  foreach ($backup_array as $type => $file) {
17
+
18
+ $descrip_type = (preg_match('/^(.*)\d+$/', $type, $matches)) ? $matches[1] : $type;
19
+
20
  $fullpath = $updraft_dir.$file;
21
  #if (file_exists($fullpath) && filesize($fullpath) > ...
22
  $any_sent = false;
23
+ foreach (explode(',', $email) as $sendmail_addr) {
24
  $send_short = (strlen($sendmail_addr)>5) ? substr($sendmail_addr, 0, 5).'...' : $sendmail_addr;
25
  $updraftplus->log("$file: email to: $send_short");
26
 
27
+ $sent = wp_mail(trim($sendmail_addr), __("WordPress Backup",'updraftplus')." ".get_date_from_gmt(gmdate('Y-m-d H:i:s', $updraftplus->backup_time), 'Y-m-d H:i'), sprintf(__("Backup is of: %s.",'updraftplus'), $descrip_type).' '.__('Be wary; email backups may fail because of file size limitations on mail servers.','updraftplus'), null, array($fullpath));
28
  if ($sent) $any_sent = true;
29
  }
30
  if ($any_sent) {
41
  ?>
42
  <tr class="updraftplusmethod email">
43
  <th><?php _e('Note:','updraftplus');?></th>
44
+ <td><?php echo str_replace('&gt;','>', str_replace('&lt;','<',htmlspecialchars(__('The email address entered above will be used. If choosing "E-Mail", then <strong>be aware</strong> that mail servers tend to have size limits; typically around 10-20Mb; backups larger than any limits will not arrive.','updraftplus'))));?></td>
45
  </tr>
46
  <?php
47
  }
methods/googledrive.php CHANGED
@@ -7,7 +7,7 @@ class UpdraftPlus_BackupModule_googledrive {
7
  public static function action_auth() {
8
  if ( isset( $_GET['state'] ) ) {
9
  if ( $_GET['state'] == 'success') {
10
- add_action('admin_notices', array('UpdraftPlus_BackupModule_googledrive', 'show_authed_admin_success') );
11
  }
12
  elseif ( $_GET['state'] == 'token' )
13
  self::gdrive_auth_token();
@@ -52,7 +52,7 @@ class UpdraftPlus_BackupModule_googledrive {
52
  $params = array(
53
  'response_type' => 'code',
54
  'client_id' => UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid'),
55
- 'redirect_uri' => admin_url('options-general.php?page=updraftplus&action=updraftmethod-googledrive-auth'),
56
  'scope' => 'https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.file https://docs.google.com/feeds/ https://docs.googleusercontent.com/ https://spreadsheets.google.com/feeds/',
57
  'state' => 'token',
58
  'access_type' => 'offline',
@@ -71,7 +71,6 @@ class UpdraftPlus_BackupModule_googledrive {
71
  public static function gdrive_auth_revoke() {
72
  $ignore = wp_remote_get('https://accounts.google.com/o/oauth2/revoke?token='.UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token'));
73
  UpdraftPlus_Options::update_updraft_option('updraft_googledrive_token','');
74
- //header('Location: '.admin_url( 'options-general.php?page=updraftplus&message=Authorisation revoked'));
75
  }
76
 
77
  // Get a Google account refresh token using the code received from gdrive_auth_request
@@ -81,7 +80,7 @@ class UpdraftPlus_BackupModule_googledrive {
81
  'code' => $_GET['code'],
82
  'client_id' => UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid'),
83
  'client_secret' => UpdraftPlus_Options::get_updraft_option('updraft_googledrive_secret'),
84
- 'redirect_uri' => admin_url('options-general.php?page=updraftplus&action=updraftmethod-googledrive-auth'),
85
  'grant_type' => 'authorization_code'
86
  );
87
 
@@ -94,7 +93,7 @@ class UpdraftPlus_BackupModule_googledrive {
94
  $updraftplus->log("Google Drive authentication error: ".$message);
95
  $add_to_url .= "$message. ";
96
  }
97
- header('Location: '.admin_url('options-general.php?page=updraftplus&error='.urlencode($add_to_url)) );
98
  } else {
99
  $json_values = json_decode( $result['body'], true );
100
  if ( isset( $json_values['refresh_token'] ) ) {
@@ -107,7 +106,7 @@ class UpdraftPlus_BackupModule_googledrive {
107
  UpdraftPlus_Options::update_updraft_option('updraftplus_tmp_googledrive_access_token', $json_values['access_token']);
108
 
109
  // We do this to clear the GET parameters, otherwise WordPress sticks them in the _wp_referer in the form and brings them back, leading to confusion + errors
110
- header('Location: '.admin_url('options-general.php?page=updraftplus&action=updraftmethod-googledrive-auth&state=success'));
111
 
112
  }
113
 
@@ -117,12 +116,12 @@ class UpdraftPlus_BackupModule_googledrive {
117
 
118
  if (isset($json_values['error'])) $msg .= ' '.sprintf(__('Error: %s', 'updraftplus'), $json_values['error']);
119
 
120
- header('Location: '.admin_url('options-general.php?page=updraftplus&error='. $msg ) );
121
  }
122
  }
123
  }
124
  else {
125
- header('Location: '.admin_url('options-general.php?page=updraftplus&error='. __( 'Authorization failed', 'updraftplus' ) ) );
126
  }
127
  }
128
 
@@ -285,10 +284,10 @@ class UpdraftPlus_BackupModule_googledrive {
285
  $possible_location = $updraftplus->jobdata_get($transkey);
286
 
287
  if ( empty( $possible_location ) ) {
288
- $updraftplus->log("$file: Attempting to upload file to Google Drive.");
289
  $location = $gdocs_object->prepare_upload( $file, $title, $parent );
290
  } else {
291
- $updraftplus->log("$file: Attempting to resume upload.");
292
  $location = $gdocs_object->resume_upload( $file, $possible_location );
293
  }
294
 
@@ -461,7 +460,7 @@ class UpdraftPlus_BackupModule_googledrive {
461
  <th>Google Drive:</th>
462
  <td>
463
  <p><a href="http://updraftplus.com/support/configuring-google-drive-api-access-in-updraftplus/"><strong><?php _e('For longer help, including screenshots, follow this link. The description below is sufficient for more expert users.','updraftplus');?></strong></a></p>
464
- <p><a href="https://code.google.com/apis/console/"><?php _e('Follow this link to your Google API Console, and there create a Client ID in the API Access section.','updraftplus');?></a> <?php _e("Select 'Web Application' as the application type.",'updraftplus');?></p><p><?php echo htmlspecialchars(__('You must add the following as the authorised redirect URI (under "More Options") when asked','updraftplus'));?>: <kbd><?php echo admin_url('options-general.php?page=updraftplus&action=updraftmethod-googledrive-auth'); ?></kbd> <?php _e('N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your client ID; you must create a new one from your Google API console for each site.','updraftplus');?>
465
 
466
  <?php
467
  if (!class_exists('SimpleXMLElement')) { echo "<b>",__('Warning','updraftplus').':</b> '.__("You do not have the SimpleXMLElement installed. Google Drive backups will <b>not</b> work until you do.",'updraftplus'); }
@@ -472,19 +471,19 @@ class UpdraftPlus_BackupModule_googledrive {
472
 
473
  <tr class="updraftplusmethod googledrive">
474
  <th><?php echo __('Google Drive','updraftplus').' '.__('Client ID','updraftplus'); ?>:</th>
475
- <td><input type="text" autocomplete="off" style="width:392px" name="updraft_googledrive_clientid" value="<?php echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid')) ?>" /><br><em><?php _e('If Google later shows you the message "invalid_client", then you did not enter a valid client ID here.','updraftplus');?></em></td>
476
  </tr>
477
  <tr class="updraftplusmethod googledrive">
478
  <th><?php echo __('Google Drive','updraftplus').' '.__('Client Secret','updraftplus'); ?>:</th>
479
- <td><input type="<?php echo apply_filters('updraftplus_admin_secret_field_type', 'text'); ?>" style="width:392px" name="updraft_googledrive_secret" value="<?php echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_googledrive_secret')); ?>" /></td>
480
  </tr>
481
  <tr class="updraftplusmethod googledrive">
482
  <th><?php echo __('Google Drive','updraftplus').' '.__('Folder ID','updraftplus'); ?>:</th>
483
- <td><input type="text" style="width:392px" name="updraft_googledrive_remotepath" value="<?php echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_googledrive_remotepath')); ?>" /> <em><?php _e("<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder.",'updraftplus');?></em></td>
484
  </tr>
485
  <tr class="updraftplusmethod googledrive">
486
  <th><?php _e('Authenticate with Google');?>:</th>
487
- <td><p><?php if (UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token') != "") echo "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem).</strong>"; ?> <a href="options-general.php?page=updraftplus&action=updraftmethod-googledrive-auth&updraftplus_googleauth=doit"><?php print __('<strong>After</strong> you have saved your settings (by clicking \'Save Changes\' below), then come back here once and click this link to complete authentication with Google.','updraftplus');?></a>
488
  </p>
489
  </td>
490
  </tr>
7
  public static function action_auth() {
8
  if ( isset( $_GET['state'] ) ) {
9
  if ( $_GET['state'] == 'success') {
10
+ add_action('all_admin_notices', array('UpdraftPlus_BackupModule_googledrive', 'show_authed_admin_success') );
11
  }
12
  elseif ( $_GET['state'] == 'token' )
13
  self::gdrive_auth_token();
52
  $params = array(
53
  'response_type' => 'code',
54
  'client_id' => UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid'),
55
+ 'redirect_uri' => UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-googledrive-auth',
56
  'scope' => 'https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.file https://docs.google.com/feeds/ https://docs.googleusercontent.com/ https://spreadsheets.google.com/feeds/',
57
  'state' => 'token',
58
  'access_type' => 'offline',
71
  public static function gdrive_auth_revoke() {
72
  $ignore = wp_remote_get('https://accounts.google.com/o/oauth2/revoke?token='.UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token'));
73
  UpdraftPlus_Options::update_updraft_option('updraft_googledrive_token','');
 
74
  }
75
 
76
  // Get a Google account refresh token using the code received from gdrive_auth_request
80
  'code' => $_GET['code'],
81
  'client_id' => UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid'),
82
  'client_secret' => UpdraftPlus_Options::get_updraft_option('updraft_googledrive_secret'),
83
+ 'redirect_uri' => UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-googledrive-auth',
84
  'grant_type' => 'authorization_code'
85
  );
86
 
93
  $updraftplus->log("Google Drive authentication error: ".$message);
94
  $add_to_url .= "$message. ";
95
  }
96
+ header('Location: '.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&error='.urlencode($add_to_url));
97
  } else {
98
  $json_values = json_decode( $result['body'], true );
99
  if ( isset( $json_values['refresh_token'] ) ) {
106
  UpdraftPlus_Options::update_updraft_option('updraftplus_tmp_googledrive_access_token', $json_values['access_token']);
107
 
108
  // We do this to clear the GET parameters, otherwise WordPress sticks them in the _wp_referer in the form and brings them back, leading to confusion + errors
109
+ header('Location: '.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-googledrive-auth&state=success');
110
 
111
  }
112
 
116
 
117
  if (isset($json_values['error'])) $msg .= ' '.sprintf(__('Error: %s', 'updraftplus'), $json_values['error']);
118
 
119
+ header('Location: '.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&error='.urlencode($msg));
120
  }
121
  }
122
  }
123
  else {
124
+ header('Location: '.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&error='.urlencode(__( 'Authorization failed', 'updraftplus')));
125
  }
126
  }
127
 
284
  $possible_location = $updraftplus->jobdata_get($transkey);
285
 
286
  if ( empty( $possible_location ) ) {
287
+ $updraftplus->log(basename($file).": Attempting to upload file to Google Drive.");
288
  $location = $gdocs_object->prepare_upload( $file, $title, $parent );
289
  } else {
290
+ $updraftplus->log(basename($file).": Attempting to resume upload.");
291
  $location = $gdocs_object->resume_upload( $file, $possible_location );
292
  }
293
 
460
  <th>Google Drive:</th>
461
  <td>
462
  <p><a href="http://updraftplus.com/support/configuring-google-drive-api-access-in-updraftplus/"><strong><?php _e('For longer help, including screenshots, follow this link. The description below is sufficient for more expert users.','updraftplus');?></strong></a></p>
463
+ <p><a href="https://code.google.com/apis/console/"><?php _e('Follow this link to your Google API Console, and there create a Client ID in the API Access section.','updraftplus');?></a> <?php _e("Select 'Web Application' as the application type.",'updraftplus');?></p><p><?php echo htmlspecialchars(__('You must add the following as the authorised redirect URI (under "More Options") when asked','updraftplus'));?>: <kbd><?php echo UpdraftPlus_Options::admin_page_url().'?page=updraftplus&action=updraftmethod-googledrive-auth'; ?></kbd> <?php _e('N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your client ID; you must create a new one from your Google API console for each site.','updraftplus');?>
464
 
465
  <?php
466
  if (!class_exists('SimpleXMLElement')) { echo "<b>",__('Warning','updraftplus').':</b> '.__("You do not have the SimpleXMLElement installed. Google Drive backups will <b>not</b> work until you do.",'updraftplus'); }
471
 
472
  <tr class="updraftplusmethod googledrive">
473
  <th><?php echo __('Google Drive','updraftplus').' '.__('Client ID','updraftplus'); ?>:</th>
474
+ <td><input type="text" autocomplete="off" style="width:412px" name="updraft_googledrive_clientid" value="<?php echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid')) ?>" /><br><em><?php _e('If Google later shows you the message "invalid_client", then you did not enter a valid client ID here.','updraftplus');?></em></td>
475
  </tr>
476
  <tr class="updraftplusmethod googledrive">
477
  <th><?php echo __('Google Drive','updraftplus').' '.__('Client Secret','updraftplus'); ?>:</th>
478
+ <td><input type="<?php echo apply_filters('updraftplus_admin_secret_field_type', 'text'); ?>" style="width:412px" name="updraft_googledrive_secret" value="<?php echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_googledrive_secret')); ?>" /></td>
479
  </tr>
480
  <tr class="updraftplusmethod googledrive">
481
  <th><?php echo __('Google Drive','updraftplus').' '.__('Folder ID','updraftplus'); ?>:</th>
482
+ <td><input type="text" style="width:412px" name="updraft_googledrive_remotepath" value="<?php echo htmlspecialchars(UpdraftPlus_Options::get_updraft_option('updraft_googledrive_remotepath')); ?>" /> <em><?php _e("<strong>This is NOT a folder name</strong>. To get a folder's ID navigate to that folder in Google Drive in your web browser and copy the ID from your browser's address bar. It is the part that comes after <kbd>#folders/</kbd>. Leave empty to use your root folder.",'updraftplus');?></em></td>
483
  </tr>
484
  <tr class="updraftplusmethod googledrive">
485
  <th><?php _e('Authenticate with Google');?>:</th>
486
+ <td><p><?php if ('' != UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token')) echo __("<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem).",'updraftplus'); ?> <a href="<?php echo UpdraftPlus_Options::admin_page_url();?>?page=updraftplus&action=updraftmethod-googledrive-auth&updraftplus_googleauth=doit"><?php print __('<strong>After</strong> you have saved your settings (by clicking \'Save Changes\' below), then come back here once and click this link to complete authentication with Google.','updraftplus');?></a>
487
  </p>
488
  </td>
489
  </tr>
methods/s3.php CHANGED
@@ -19,7 +19,25 @@ class UpdraftPlus_BackupModule_s3 {
19
 
20
  if (!class_exists('S3')) require_once(UPDRAFTPLUS_DIR.'/includes/S3.php');
21
 
 
 
22
  $s3 = new S3($key, $secret);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  if (!$nossl) {
24
  $curl_version = (function_exists('curl_version')) ? curl_version() : array('features' => null);
25
  $curl_ssl_supported= ($curl_version['features'] & CURL_VERSION_SSL);
19
 
20
  if (!class_exists('S3')) require_once(UPDRAFTPLUS_DIR.'/includes/S3.php');
21
 
22
+ if (!class_exists('WP_HTTP_Proxy')) require_once(ABSPATH.'wp-includes/class-http.php');
23
+ $proxy = new WP_HTTP_Proxy();
24
  $s3 = new S3($key, $secret);
25
+
26
+ if ( $proxy->is_enabled()) {
27
+ # WP_HTTP_Proxy returns empty strings where we want nulls
28
+ $user = $proxy->username();
29
+ if (empty($user)) {
30
+ $user = null;
31
+ $pass = null;
32
+ } else {
33
+ $pass = $proxy->password();
34
+ if (empty($pass)) $pass = null;
35
+ }
36
+ $port = (int)$proxy->port();
37
+ if (empty($port)) $port = 8080;
38
+ $s3->setProxy($proxy->host(), $user, $pass, CURLPROXY_HTTP, $port);
39
+ }
40
+
41
  if (!$nossl) {
42
  $curl_version = (function_exists('curl_version')) ? curl_version() : array('features' => null);
43
  $curl_ssl_supported= ($curl_version['features'] & CURL_VERSION_SSL);
options.php CHANGED
@@ -9,11 +9,19 @@ class UpdraftPlus_Options {
9
  return current_user_can('manage_options');
10
  }
11
 
 
 
 
 
 
 
 
 
12
  public static function get_updraft_option($option, $default = null) {
13
  return get_option($option, $default);
14
  }
15
 
16
- public static function update_updraft_option($option, $value) {
17
  update_option($option, $value);
18
  }
19
 
@@ -26,9 +34,13 @@ class UpdraftPlus_Options {
26
  add_submenu_page('options-general.php', 'UpdraftPlus', __('UpdraftPlus Backups','updraftplus'), "manage_options", "updraftplus", array($updraftplus_admin, "settings_output"));
27
  }
28
 
29
- public static function options_form_begin() {
30
- echo '<form method="post" action="options.php">';
31
- settings_fields('updraft-options-group');
 
 
 
 
32
  }
33
 
34
  public static function admin_init() {
@@ -103,7 +115,7 @@ class UpdraftPlus_Options {
103
 
104
  global $pagenow;
105
  if (is_multisite() && $pagenow == 'options-general.php' && isset($_REQUEST['page']) && 'updraftplus' == substr($_REQUEST['page'], 0, 11)) {
106
- add_action('admin_notices', array('UpdraftPlus_Options', 'show_admin_warning_multisite') );
107
  }
108
 
109
  }
9
  return current_user_can('manage_options');
10
  }
11
 
12
+ public static function admin_page_url() {
13
+ return admin_url('options-general.php');
14
+ }
15
+
16
+ public static function admin_page() {
17
+ return 'options-general.php';
18
+ }
19
+
20
  public static function get_updraft_option($option, $default = null) {
21
  return get_option($option, $default);
22
  }
23
 
24
+ public static function update_updraft_option($option, $value, $use_cache = true) {
25
  update_option($option, $value);
26
  }
27
 
34
  add_submenu_page('options-general.php', 'UpdraftPlus', __('UpdraftPlus Backups','updraftplus'), "manage_options", "updraftplus", array($updraftplus_admin, "settings_output"));
35
  }
36
 
37
+ public static function options_form_begin($settings_fields = 'updraft-options-group', $allow_autocomplete = true) {
38
+ global $pagenow;
39
+ echo '<form method="post" ';
40
+ if ($pagenow == 'options-general.php') echo 'action="options.php"';
41
+ if (!$allow_autocomplete) echo ' autocomplete="off"';
42
+ echo '>';
43
+ if ($settings_fields) settings_fields('updraft-options-group');
44
  }
45
 
46
  public static function admin_init() {
115
 
116
  global $pagenow;
117
  if (is_multisite() && $pagenow == 'options-general.php' && isset($_REQUEST['page']) && 'updraftplus' == substr($_REQUEST['page'], 0, 11)) {
118
+ add_action('all_admin_notices', array('UpdraftPlus_Options', 'show_admin_warning_multisite') );
119
  }
120
 
121
  }
readme.txt CHANGED
@@ -1,23 +1,22 @@
1
  === UpdraftPlus - WordPress Backup and Restoration ===
2
  Contributors: Backup with UpdraftPlus, DavidAnderson
3
- Tags: backup, backups, restore, database, rackspace, amazon, s3, amazon s3, s3 compatible, dropbox, google drive, rackspace cloud files, rackspace, cloud files, dreamhost, dreamobjects, ftp, webdav, google cloud storage, cloudian, cloudn, connectria, constant cloud, eucalyptus, nifty, nimbula, back up, multisite, restoration, sftp, ftps, scp, migrate, duplicate, copy, updraft, schedule, database backup, wordpress backup, full backup
4
  Requires at least: 3.2
5
- Tested up to: 3.6.1
6
- Stable tag: 1.7.20
7
  Author URI: http://updraftplus.com
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
 
11
- Easy and complete backups + restoration. Manual or automated backups (Amazon S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, WebDAV, email + others).
12
 
13
  == Description ==
14
 
15
  <a href="http://updraftplus.com">UpdraftPlus</a> simplifies backups (and restoration). Backup into the cloud (Amazon S3 (or compatible), Dropbox, Google Drive, Rackspace Cloud, DreamObjects, FTP, SFTP, SCP, WebDAV and email) and restore with a single click. Backups of files and database can have separate schedules.
16
 
17
- <strong>Top-quality:</strong> UpdraftPlus is the highest-ranking backup plugin on rankwp.com (ranks 16th out of 25,000 WordPress plugins for quality on rankwp.com - last checked 28th September 2013).
18
-
19
- <strong>Tens of thousands of users:</strong> widely tested and reliable (over 300,000 downloads). Ranks in the top 50 most popular of all WordPress plugins on rankwp.com. Millions of backups completed!
20
 
 
21
 
22
  * Supports WordPress backups to Amazon S3 (or compatible), Dropbox, Rackspace Cloud Files, Google Drive, Google Cloud Storage, DreamHost DreamObjects, FTP and email. Also (via an add-on) FTP over SSL, SFTP, SCP and WebDAV. (Note: Microsoft forbid SkyDrive to be used by backup software). Some examples of S3-compatible providers: Cloudian, Connectria, Constant, Eucalyptus, Nifty, Nimbula, Cloudn.
23
  * Quick restore (both file and database backups)
@@ -32,7 +31,7 @@ Easy and complete backups + restoration. Manual or automated backups (Amazon S3,
32
  * Database backups can be encrypted for security
33
  * Debug mode that gives full logging of the backup
34
  * Internationalised (translations very welcome - see below)
35
- * Premium version and support available - <a href="http://updraftplus.com">http://updraftplus.com</a>
36
  * Tested and supported on all current PHP versions (5.2, 5.3, 5.4)
37
 
38
  = Don't Risk Anything Less =
@@ -51,18 +50,19 @@ UpdraftPlus is written by professional WordPress developers. If your site needs
51
 
52
  = Are you multi-lingual? Can you translate? =
53
 
54
- Are you able to translate UpdraftPlus into another language? Are you ready to help speakers of your language? UpdraftPlus itself is ready and waiting - the only work needed is the translating. The translation process is easy, and web-based - go here for instructions: <a href="http://updraftplus.com/translate/">http://updraftplus.com/translate/</a>. (Or if you're an expert WordPress translator already, then just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory).
55
 
56
  Many thanks to the existing translators:
57
 
58
- * Français / French translation (fr_FR): ufo3D - http://ufo-3d.fr/ and Thomas Jacobsen - http://123informatique.ch/ - with help from Françoise Lhermitte - http://www.ajwan.net
 
59
  * Swedish / Svensk (sv_SE): Steve Sandström - http://www.brandicon.se
60
- * Español / Spanish (es_ES): Fernando Villasmil - villasmil.fernando at gmail.com
61
  * Polski / Polish (pl_PL): Bartosz Kaczmarek - barth.kaczmarek at gmail.com
62
  * Chinese (zh_CN): K L Wang - http://klwang.info
63
  * Italiano / Italian (it_IT): Francesco Carpana - f.carpana at gmail.com
64
 
65
  And to these (need updating or new translators; now less than 50% translated):
 
66
  * Deutsch / German (de_DE): Marcel Herrguth - mherrguth at mrgeneration.de
67
  * Magyar / Hungarian (hu_HU): Szépe Viktor - http://www.szepe.net
68
  * Nederlands / Dutch (nl_NL): Hans van der Vlist - hansvandervlist at gmail.com
@@ -75,7 +75,6 @@ We hang out in the WordPress support forum for this plugin - http://wordpress.or
75
 
76
  <a href="http://updraftplus.com/download/">Please go here for full instructions for installing this plugin.</a>
77
 
78
-
79
  == Frequently Asked Questions ==
80
 
81
  <a href="http://updraftplus.com/support/frequently-asked-questions/"><strong>Please go here for the full FAQs - there are many more than below.</strong></a> Below are just a handful which particularly apply to the free wordpress.org version, or which bear repeating.
@@ -130,6 +129,41 @@ Thanks for asking - yes, I have. Check out my profile page - http://profiles.wor
130
 
131
  == Changelog ==
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  = 1.7.20 - 2013/09/20 =
134
  * TWEAK: Add semaphore locking to prevent WP's cron system kicking off multiple jobs on overloaded systems
135
  * TWEAK: Catch and display some previously uncaught AJAX notices when restoring, and display information on the restore process earlier
@@ -595,5 +629,6 @@ We recognise and thank the following for code and/or libraries used and/or modif
595
 
596
  Furthermore, reliance upon any non-English translation is at your own risk. UpdraftPlus can give no guarantees that translations from the original English are accurate.
597
 
 
598
  == Upgrade Notice ==
599
  * 1.7.3: Fix 3 bugs - recommended upgrade for all
1
  === UpdraftPlus - WordPress Backup and Restoration ===
2
  Contributors: Backup with UpdraftPlus, DavidAnderson
3
+ Tags: backup, backups, restore, database, rackspace, amazon, s3, amazon s3, s3 compatible, dropbox, google drive, rackspace cloud files, rackspace, cloud files, dreamhost, dreamobjects, ftp, webdav, google cloud storage, cloudian, cloudn, connectria, constant cloud, eucalyptus, nifty, nimbula, back up, multisite, restoration, sftp, ftps, scp, migrate, duplicate, copy, updraft, schedule, mysql backup, database backup, db backup, website backup, wordpress backup, full backup
4
  Requires at least: 3.2
5
+ Tested up to: 3.7
6
+ Stable tag: 1.7.34
7
  Author URI: http://updraftplus.com
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
 
11
+ Easy and complete backups + restoration. Manual or automated backups (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).
12
 
13
  == Description ==
14
 
15
  <a href="http://updraftplus.com">UpdraftPlus</a> simplifies backups (and restoration). Backup into the cloud (Amazon S3 (or compatible), Dropbox, Google Drive, Rackspace Cloud, DreamObjects, FTP, SFTP, SCP, WebDAV and email) and restore with a single click. Backups of files and database can have separate schedules.
16
 
17
+ <strong>Top-quality:</strong> UpdraftPlus is the <a href="http://rankwp.com/plugins/updraftplus">highest-ranking backup plugin on rankwp.com</a> (ranks 16th out of 28,000 WordPress plugins for quality on rankwp.com - last checked 28th September 2013).
 
 
18
 
19
+ <strong>Tens of thousands of users:</strong> widely tested and reliable (over 325,000 downloads). Ranks in the top 100 most used of all WordPress plugins on rankwp.com. Millions of backups completed!
20
 
21
  * Supports WordPress backups to Amazon S3 (or compatible), Dropbox, Rackspace Cloud Files, Google Drive, Google Cloud Storage, DreamHost DreamObjects, FTP and email. Also (via an add-on) FTP over SSL, SFTP, SCP and WebDAV. (Note: Microsoft forbid SkyDrive to be used by backup software). Some examples of S3-compatible providers: Cloudian, Connectria, Constant, Eucalyptus, Nifty, Nimbula, Cloudn.
22
  * Quick restore (both file and database backups)
31
  * Database backups can be encrypted for security
32
  * Debug mode that gives full logging of the backup
33
  * Internationalised (translations very welcome - see below)
34
+ * <a href="http://updraftplus.com">Premium version and support available - http://updraftplus.com</a>
35
  * Tested and supported on all current PHP versions (5.2, 5.3, 5.4)
36
 
37
  = Don't Risk Anything Less =
50
 
51
  = Are you multi-lingual? Can you translate? =
52
 
53
+ Are you able to translate UpdraftPlus into another language? Are you ready to help speakers of your language? UpdraftPlus itself is ready and waiting - the only work needed is the translating. The translation process is easy, and web-based - go here for instructions: <a href="http://updraftplus.com/translate/">http://updraftplus.com/translate/</a>. (Or if you're an expert WordPress translator already, then just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory - if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e()).
54
 
55
  Many thanks to the existing translators:
56
 
57
+ * Ελληνική / Greek translation (el): Κώστας Θερμογιάννης (Kostas Thermoyiannis) - http://tovivlio.net
58
+ * Français / French translation (fr_FR): ufo3D - http://ufo-3d.fr and Thomas Jacobsen - http://123informatique.ch - with help from Françoise Lhermitte - http://www.ajwan.net
59
  * Swedish / Svensk (sv_SE): Steve Sandström - http://www.brandicon.se
 
60
  * Polski / Polish (pl_PL): Bartosz Kaczmarek - barth.kaczmarek at gmail.com
61
  * Chinese (zh_CN): K L Wang - http://klwang.info
62
  * Italiano / Italian (it_IT): Francesco Carpana - f.carpana at gmail.com
63
 
64
  And to these (need updating or new translators; now less than 50% translated):
65
+ * Español / Spanish (es_ES): Fernando Villasmil - villasmil.fernando at gmail.com
66
  * Deutsch / German (de_DE): Marcel Herrguth - mherrguth at mrgeneration.de
67
  * Magyar / Hungarian (hu_HU): Szépe Viktor - http://www.szepe.net
68
  * Nederlands / Dutch (nl_NL): Hans van der Vlist - hansvandervlist at gmail.com
75
 
76
  <a href="http://updraftplus.com/download/">Please go here for full instructions for installing this plugin.</a>
77
 
 
78
  == Frequently Asked Questions ==
79
 
80
  <a href="http://updraftplus.com/support/frequently-asked-questions/"><strong>Please go here for the full FAQs - there are many more than below.</strong></a> Below are just a handful which particularly apply to the free wordpress.org version, or which bear repeating.
129
 
130
  == Changelog ==
131
 
132
+ The <a href="http://updraftplus.com/news/">UpdraftPlus backup blog</a> is the best place to learn in more detail about any important changes.
133
+
134
+ = 1.7.34 - 2013/10/21 =
135
+
136
+ * FEATURE: Options in the "Backup Now" dialog to exclude files or database from the backup (http://updraftplus.com/more-flexibility-in-backup-now/)
137
+ * FEATURE: Use binary mysqldump, if available, for much faster dumps of large tables
138
+ * FEATURE: New Ελληνική / Greek translation (el): Κώστας Θερμογιάννης (Kostas Thermoyiannis) - http://tovivlio.net
139
+ * FIX: Fix a JavaScript error in Internet Explorer 8
140
+ * FIX: Under very unusual circumstances, it was still possible for multiple backup jobs to occur
141
+ * FIX: For non-English installs, the email indicating backup success sometimes failed to send
142
+ * FIX: Fix obscure table name error if WP was using bespoke database setup without delete access
143
+ * FIX: On multi-site installs, settings changes could be lost if they were made during an ongoing backup
144
+ * TWEAK: Now marked as WordPress 3.7 compatible
145
+ * TWEAK: Raw files list in expert section now makes log files directly downloadable
146
+ * TWEAK: Detect available disk quota in CPanel account (if relevant), log, and warn if low
147
+ * TWEAK: Amazon S3 backend now can use WP proxy settings (if any)
148
+ * TWEAK: All multisite settings pages have now been moved to the network admin section
149
+ * TWEAK: Restorer now handles hand-moved non-default WP site directories (where they differ from the website base directory)
150
+ * TWEAK: Migrator can now migrate sub-domain-based WPMU installs with no manual steps required
151
+ * TWEAK: Internationalised the add-ons management page (Premium)
152
+ * TWEAK: Switch zip engines from ZipArchive earlier if it appears to be broken
153
+ * TWEAK: Now cleans up some previously un-caught temporary files if the backup aborted unexpectedly
154
+ * TWEAK: Remove bogus warning about W3TC object cache
155
+ * TWEAK: Backup log file now includes SHA1 checksums
156
+ * TWEAK: Add warning for user if their max_execution_time is very low
157
+ * TWEAK: Make fewer HTTP requests when tracking download status
158
+ * TWEAK: Under certain conditions, the report email could wrongly state that files were included in a db-only backup
159
+ * TWEAK: Improve detection of recent activity on resumptions when zips split
160
+ * TWEAK: Prevent some warning messages from being shown twice
161
+ * TWEAK: Remove the "that's a lot of rows" warning once the table successfully finishes being dumped
162
+ * TWEAK: Cache the results of looking for a zip executable for the duration of the job
163
+ * TWEAK: Some badly-written plugins place their own code on UD's settings page, and break the layout; overcome this
164
+ * TWEAK: Add a warning for people using encryption without mcrypt installed (slow)
165
+ * TWEAK: Suppress useless warning when using BinZip and only empty directories exist in 'others' backup
166
+
167
  = 1.7.20 - 2013/09/20 =
168
  * TWEAK: Add semaphore locking to prevent WP's cron system kicking off multiple jobs on overloaded systems
169
  * TWEAK: Catch and display some previously uncaught AJAX notices when restoring, and display information on the restore process earlier
629
 
630
  Furthermore, reliance upon any non-English translation is at your own risk. UpdraftPlus can give no guarantees that translations from the original English are accurate.
631
 
632
+
633
  == Upgrade Notice ==
634
  * 1.7.3: Fix 3 bugs - recommended upgrade for all
restorer.php CHANGED
@@ -86,16 +86,11 @@ class Updraft_Restorer extends WP_Upgrader {
86
  $encryption = UpdraftPlus_Options::get_updraft_option('updraft_encryptionphrase');
87
  if (!$encryption) return new WP_Error('no_encryption_key', __('Decryption failed. The database file is encrypted, but you have no encryption key entered.', 'updraftplus'));
88
 
89
- // Encrypted - decrypt it
90
- $updraftplus->ensure_phpseclib('Crypt_Rijndael', 'Crypt/Rijndael');
91
- $rijndael = new Crypt_Rijndael();
92
-
93
- // Get decryption key
94
- $rijndael->setKey($encryption);
95
- $ciphertext = $rijndael->decrypt($wp_filesystem->get_contents($backup_dir.$package));
96
- if ($ciphertext) {
97
  $this->skin->feedback('decrypted_database');
98
- if (!$wp_filesystem->put_contents($working_dir.'/backup.db.gz', $ciphertext)) {
99
  return new WP_Error('write_failed', __('Failed to write out the decrypted database to the filesystem','updraftplus'));
100
  }
101
  } else {
@@ -511,7 +506,7 @@ class Updraft_Restorer extends WP_Upgrader {
511
  @$wp_filesystem->chmod($wp_filesystem_dir, 0775, true);
512
  break;
513
  case 'db':
514
- do_action('updraftplus_restored_db', array('expected_oldsiteurl' => $old_siteurl), $import_table_prefix);
515
  $this->flush_rewrite_rules();
516
  break;
517
  default:
@@ -654,9 +649,9 @@ class Updraft_Restorer extends WP_Upgrader {
654
 
655
  $this->start_time = microtime(true);
656
 
657
- // TODO: Print a warning if restoring to a different WP version
658
  $old_wpversion = '';
659
  $old_siteurl = '';
 
660
  $old_table_prefix = '';
661
  $old_siteinfo = array();
662
  $gathering_siteinfo = true;
@@ -689,7 +684,7 @@ class Updraft_Restorer extends WP_Upgrader {
689
  if (!$req) $this->last_error = $wpdb->last_error;
690
  $this->last_error_no = false;
691
  } else {
692
- $req = mysql_unbuffered_query("DROP TABLE $random_table_name", $this->mysql_dbh );
693
  if (!$req) {
694
  $this->last_error = mysql_error($this->mysql_dbh);
695
  $this->last_error_no = mysql_errno($this->mysql_dbh);
@@ -714,6 +709,10 @@ class Updraft_Restorer extends WP_Upgrader {
714
  $old_siteurl = $matches[1];
715
  echo '<strong>'.__('Backup of:', 'updraftplus').'</strong> '.htmlspecialchars($old_siteurl).'<br>';
716
  do_action('updraftplus_restore_db_record_old_siteurl', $old_siteurl);
 
 
 
 
717
  } elseif ('' == $old_table_prefix && preg_match('/^\# Table prefix: (\S+)$/', $buffer, $matches)) {
718
  $old_table_prefix = $matches[1];
719
  echo '<strong>'.__('Old table prefix:', 'updraftplus').'</strong> '.htmlspecialchars($old_table_prefix).'<br>';
@@ -783,12 +782,15 @@ class Updraft_Restorer extends WP_Upgrader {
783
  }
784
 
785
  $this->table_name = $matches[1];
 
786
  // Legacy, less reliable - in case it was not caught before
787
  if ($old_table_prefix == '' && preg_match('/^([a-z0-9]+)_.*$/i', $this->table_name, $tmatches)) {
788
  $old_table_prefix = $tmatches[1].'_';
789
  echo '<strong>'.__('Old table prefix:', 'updraftplus').'</strong> '.htmlspecialchars($old_table_prefix).'<br>';
790
  }
 
791
  $this->new_table_name = ($old_table_prefix) ? $updraftplus->str_replace_once($old_table_prefix, $import_table_prefix, $this->table_name) : $this->table_name;
 
792
  if ('' != $old_table_prefix && $import_table_prefix != $old_table_prefix) {
793
  $sql_line = $updraftplus->str_replace_once($old_table_prefix, $import_table_prefix, $sql_line);
794
  }
@@ -808,20 +810,26 @@ class Updraft_Restorer extends WP_Upgrader {
808
  // This CREATE TABLE command may be the de-facto mark for the end of processing a previous table (which is so if this is not the first table in the SQL dump)
809
  if ($restoring_table) {
810
 
811
- $this->restored_table($restoring_table, $import_table_prefix, $old_table_prefix);
812
-
813
  // After restoring the options table, we can set old_siteurl if on legacy (i.e. not already set)
814
  if ($restoring_table == $import_table_prefix.'options') {
815
- if ('' == $old_siteurl) {
816
  global $updraftplus_addons_migrator;
817
  if (isset($updraftplus_addons_migrator->new_blogid)) switch_to_blog($updraftplus_addons_migrator->new_blogid);
818
 
819
- $old_siteurl = $wpdb->get_row("SELECT option_value FROM $wpdb->options WHERE option_name='siteurl'")->option_value;
820
- do_action('updraftplus_restore_db_record_old_siteurl', $old_siteurl);
821
-
 
 
 
 
 
822
  if (isset($updraftplus_addons_migrator->new_blogid)) restore_current_blog();
823
  }
824
  }
 
 
 
825
  }
826
 
827
  $engine = "(?)"; $engine_change_message = '';
@@ -892,7 +900,7 @@ class Updraft_Restorer extends WP_Upgrader {
892
  // echo "Memory usage (Mb): ".round(memory_get_usage(false)/1048576, 1)." : ".round(memory_get_usage(true)/1048576, 1)."<br>";
893
 
894
  global $wpdb, $updraftplus;
895
- $ignore_errors = false;
896
 
897
  if ($sql_type == 2 && $this->create_forbidden) {
898
  echo sprintf(__('Cannot create new tables, so skipping this command (%s)', 'updraftplus'), htmlspecialchars($sql_line))."<br>";
@@ -988,7 +996,7 @@ class Updraft_Restorer extends WP_Upgrader {
988
  // The danger situation is absolute and points somewhere that is now perhaps not accessible at all
989
  if (!empty($new_upload_path) && $new_upload_path != $this->prior_upload_path && strpos($new_upload_path, '/') === 0) {
990
  if (!file_exists($new_upload_path)) {
991
- echo sprintf(__("Uploads path (%s) does not exist - resetting (%s)",'updraftplus'), $new_upload_path, $this->prior_upload_path);
992
  update_option('upload_path', $this->prior_upload_path);
993
  }
994
  }
@@ -1008,20 +1016,16 @@ class Updraft_Restorer extends WP_Upgrader {
1008
 
1009
  $errors_occurred = false;
1010
  foreach ($meta_keys as $meta_key ) {
1011
-
1012
-
1013
  //Create new meta key
1014
  $new_meta_key = $import_table_prefix . substr($meta_key->meta_key, $old_prefix_length);
1015
 
1016
  $query = "UPDATE " . $import_table_prefix . "usermeta
1017
- SET meta_key='".$new_meta_key."'
1018
- WHERE umeta_id=".$meta_key->umeta_id;
1019
 
1020
- if (false === $wpdb->query($query)) {
1021
- $errors_occurred = true;
1022
- }
1023
-
1024
  }
 
1025
  if ($errors_occurred) {
1026
  echo __('Error', 'updraftplus');
1027
  } else {
@@ -1031,12 +1035,10 @@ class Updraft_Restorer extends WP_Upgrader {
1031
 
1032
  }
1033
 
1034
- do_action('updraftplus_restored_db_table', $table);
1035
 
1036
  // Re-generate permalinks. Do this last - i.e. make sure everything else is fixed up first.
1037
- if ($table == $import_table_prefix.'options') {
1038
- $this->flush_rewrite_rules();
1039
- }
1040
 
1041
  }
1042
 
86
  $encryption = UpdraftPlus_Options::get_updraft_option('updraft_encryptionphrase');
87
  if (!$encryption) return new WP_Error('no_encryption_key', __('Decryption failed. The database file is encrypted, but you have no encryption key entered.', 'updraftplus'));
88
 
89
+ $plaintext = $updraftplus->decrypt(false, $encryption, $wp_filesystem->get_contents($backup_dir.$package));
90
+
91
+ if ($plaintext) {
 
 
 
 
 
92
  $this->skin->feedback('decrypted_database');
93
+ if (!$wp_filesystem->put_contents($working_dir.'/backup.db.gz', $plaintext)) {
94
  return new WP_Error('write_failed', __('Failed to write out the decrypted database to the filesystem','updraftplus'));
95
  }
96
  } else {
506
  @$wp_filesystem->chmod($wp_filesystem_dir, 0775, true);
507
  break;
508
  case 'db':
509
+ do_action('updraftplus_restored_db', array('expected_oldsiteurl' => $old_siteurl, 'expected_oldhome' => $old_home), $import_table_prefix);
510
  $this->flush_rewrite_rules();
511
  break;
512
  default:
649
 
650
  $this->start_time = microtime(true);
651
 
 
652
  $old_wpversion = '';
653
  $old_siteurl = '';
654
+ $old_home = '';
655
  $old_table_prefix = '';
656
  $old_siteinfo = array();
657
  $gathering_siteinfo = true;
684
  if (!$req) $this->last_error = $wpdb->last_error;
685
  $this->last_error_no = false;
686
  } else {
687
+ $req = mysql_unbuffered_query("DROP TABLE $random_table_name", $this->mysql_dbh);
688
  if (!$req) {
689
  $this->last_error = mysql_error($this->mysql_dbh);
690
  $this->last_error_no = mysql_errno($this->mysql_dbh);
709
  $old_siteurl = $matches[1];
710
  echo '<strong>'.__('Backup of:', 'updraftplus').'</strong> '.htmlspecialchars($old_siteurl).'<br>';
711
  do_action('updraftplus_restore_db_record_old_siteurl', $old_siteurl);
712
+ } elseif ('' == $old_home && preg_match('/^\# Home URL: (http(.*))$/', $buffer, $matches)) {
713
+ $old_home = $matches[1];
714
+ if ($old_siteurl && $old_home != $old_siteurl) echo '<strong>'.__('Site home:', 'updraftplus').'</strong> '.htmlspecialchars($old_home).'<br>';
715
+ do_action('updraftplus_restore_db_record_old_home', $old_home);
716
  } elseif ('' == $old_table_prefix && preg_match('/^\# Table prefix: (\S+)$/', $buffer, $matches)) {
717
  $old_table_prefix = $matches[1];
718
  echo '<strong>'.__('Old table prefix:', 'updraftplus').'</strong> '.htmlspecialchars($old_table_prefix).'<br>';
782
  }
783
 
784
  $this->table_name = $matches[1];
785
+
786
  // Legacy, less reliable - in case it was not caught before
787
  if ($old_table_prefix == '' && preg_match('/^([a-z0-9]+)_.*$/i', $this->table_name, $tmatches)) {
788
  $old_table_prefix = $tmatches[1].'_';
789
  echo '<strong>'.__('Old table prefix:', 'updraftplus').'</strong> '.htmlspecialchars($old_table_prefix).'<br>';
790
  }
791
+
792
  $this->new_table_name = ($old_table_prefix) ? $updraftplus->str_replace_once($old_table_prefix, $import_table_prefix, $this->table_name) : $this->table_name;
793
+
794
  if ('' != $old_table_prefix && $import_table_prefix != $old_table_prefix) {
795
  $sql_line = $updraftplus->str_replace_once($old_table_prefix, $import_table_prefix, $sql_line);
796
  }
810
  // This CREATE TABLE command may be the de-facto mark for the end of processing a previous table (which is so if this is not the first table in the SQL dump)
811
  if ($restoring_table) {
812
 
 
 
813
  // After restoring the options table, we can set old_siteurl if on legacy (i.e. not already set)
814
  if ($restoring_table == $import_table_prefix.'options') {
815
+ if ('' == $old_siteurl || '' == $old_home) {
816
  global $updraftplus_addons_migrator;
817
  if (isset($updraftplus_addons_migrator->new_blogid)) switch_to_blog($updraftplus_addons_migrator->new_blogid);
818
 
819
+ if ('' == $old_siteurl) {
820
+ $old_siteurl = $wpdb->get_row("SELECT option_value FROM $wpdb->options WHERE option_name='siteurl'")->option_value;
821
+ do_action('updraftplus_restore_db_record_old_siteurl', $old_siteurl);
822
+ }
823
+ if ('' == $old_home) {
824
+ $old_home = $wpdb->get_row("SELECT option_value FROM $wpdb->options WHERE option_name='home'")->option_value;
825
+ do_action('updraftplus_restore_db_record_old_home', $old_home);
826
+ }
827
  if (isset($updraftplus_addons_migrator->new_blogid)) restore_current_blog();
828
  }
829
  }
830
+
831
+ $this->restored_table($restoring_table, $import_table_prefix, $old_table_prefix);
832
+
833
  }
834
 
835
  $engine = "(?)"; $engine_change_message = '';
900
  // echo "Memory usage (Mb): ".round(memory_get_usage(false)/1048576, 1)." : ".round(memory_get_usage(true)/1048576, 1)."<br>";
901
 
902
  global $wpdb, $updraftplus;
903
+ $ignore_errors = false;
904
 
905
  if ($sql_type == 2 && $this->create_forbidden) {
906
  echo sprintf(__('Cannot create new tables, so skipping this command (%s)', 'updraftplus'), htmlspecialchars($sql_line))."<br>";
996
  // The danger situation is absolute and points somewhere that is now perhaps not accessible at all
997
  if (!empty($new_upload_path) && $new_upload_path != $this->prior_upload_path && strpos($new_upload_path, '/') === 0) {
998
  if (!file_exists($new_upload_path)) {
999
+ echo sprintf(__("Uploads path (%s) does not exist - resetting (%s)",'updraftplus'), $new_upload_path, $this->prior_upload_path)."<br>";
1000
  update_option('upload_path', $this->prior_upload_path);
1001
  }
1002
  }
1016
 
1017
  $errors_occurred = false;
1018
  foreach ($meta_keys as $meta_key ) {
 
 
1019
  //Create new meta key
1020
  $new_meta_key = $import_table_prefix . substr($meta_key->meta_key, $old_prefix_length);
1021
 
1022
  $query = "UPDATE " . $import_table_prefix . "usermeta
1023
+ SET meta_key='".$new_meta_key."'
1024
+ WHERE umeta_id=".$meta_key->umeta_id;
1025
 
1026
+ if (false === $wpdb->query($query)) $errors_occurred = true;
 
 
 
1027
  }
1028
+
1029
  if ($errors_occurred) {
1030
  echo __('Error', 'updraftplus');
1031
  } else {
1035
 
1036
  }
1037
 
1038
+ do_action('updraftplus_restored_db_table', $table, $import_table_prefix);
1039
 
1040
  // Re-generate permalinks. Do this last - i.e. make sure everything else is fixed up first.
1041
+ if ($table == $import_table_prefix.'options') $this->flush_rewrite_rules();
 
 
1042
 
1043
  }
1044
 
updraftplus.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
4
  Plugin URI: http://updraftplus.com
5
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
6
  Author: UpdraftPlus.Com, DavidAnderson
7
- Version: 1.7.20
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Text Domain: updraftplus
@@ -13,26 +13,28 @@ Author URI: http://updraftplus.com
13
 
14
  /*
15
  TODO - some of these are out of date/done, needs pruning
16
- // Raise a warning for probably-too-large email attachments (make intelligent - i.e. record what's the largest succesfully despatched so far? Or is that not relevant, since that only tells us about the first link?)
17
  // After Oct 15 2013: Remove page(s) from websites discussing W3TC
18
  // Change migrate window: 1) Retain link to article 2) Have selector to choose which backup set to migrate - or a fresh one 3) Have option for FTP/SFTP/SCP despatch 4) Have big "Go" button. Have some indication of what happens next. Test the login first. Have the remote site auto-scan its directory + pick up new sets. Have a way of querying the remote site for its UD-dir. Have a way of saving the settings as a 'profile'. Or just save the last set of settings (since mostly will be just one place to send to). Implement an HTTP/JSON method for sending files too.
19
- // ancient .table.gz files need to be purged by the temp reaper
20
- // Backup Now should have an option for files-only/database-only
21
- // Prettify shop page: http://wordpress.org/plugins/pricing-table-extended/
 
 
 
 
 
 
22
  // Exempt UD itself from a plugins restore? (will options be out-of-sync? exempt options too?)
23
  // Post restore/migrate, check updraft_dir, and reset if non-existent
24
  // Auto-empty caches post-restore/post-migration (prevent support requests from people with state/wrong cacheing data)
25
  // Show 'Migrate' instead of 'Restore' on the button if relevant
26
  // Test with: http://wordpress.org/plugins/wp-db-driver/
27
  // Backup notes
28
- // The delete-em at the end needs to be made resumable
29
- // Show running jobs at top. If there are some, and are overdue, kick off a few visits to wp-cron.php to help along.
30
  // Incremental - can leverage some of the multi-zip work???
31
  // Put in a help link to explain what WordPress core (including any additions to your WordPress root directory) does (was asked for support)
32
- // mysqldump, if available, for faster database dumps. Need then to test compatibility with max_packet_size detection in restoration
33
- // Check flow of activation on multisite
34
- // Find a faster encryption method
35
  // Multiple files in more-files
 
36
  // On restore, raise a warning for ginormous zips
37
  // Detect double-compressed files when they are uploaded (need a way to detect gz compression in general)
38
  // Log migrations/restores, and have an option for auto-emailing the log
@@ -42,6 +44,7 @@ TODO - some of these are out of date/done, needs pruning
42
  // More sophisticated options for retaining/deleting (e.g. 4/day for X days, then 7/week for Z weeks, then 1/month for Y months)
43
  // Unpack zips via AJAX? Do bit-by-bit to allow enormous opens a better chance? (have a huge one in Dropbox)
44
  // Put in a maintenance-mode detector
 
45
  // Detect CloudFlare output in attempts to connect - detecting cloudflare.com should be sufficient
46
  // Bring multisite shop page up to date
47
  // Re-do pricing + support packages
@@ -106,7 +109,7 @@ TODO - some of these are out of date/done, needs pruning
106
  //Do an automated test periodically for the success of loop-back connections
107
  //When a manual backup is run, use a timer to update the 'Download backups and logs' section, just like 'Last finished backup run'. Beware of over-writing anything that's in there from a resumable downloader.
108
  //Change DB encryption to not require whole gzip in memory (twice)
109
- //Add Box.Net, SugarSync, Me.Ga support??
110
  //Make it easier to find add-ons
111
  // Move the inclusion, cloud and retention data into the backup job (i.e. don't read current config, make it an attribute of each job). In fact, everything should be. So audit all code for where get_option is called inside a backup run: it shouldn't happen.
112
  // Should we resume if the only errors were upon deletion (i.e. the backup itself was fine?) Presently we do, but it displays errors for the user to confuse them. Perhaps better to make pruning a separate scheuled task??
@@ -114,13 +117,11 @@ TODO - some of these are out of date/done, needs pruning
114
  // Chunking + resuming on SFTP
115
  // Add-on to check integrity of backups
116
  // Add-on to manage all your backups from a single dashboard
117
- // Make disk space check more intelligent (currently hard-coded at 35Mb)
118
  // Provide backup/restoration for UpdraftPlus's settings, to allow 'bootstrap' on a fresh WP install - some kind of single-use code which a remote UpdraftPlus can use to authenticate
119
- // Multiple jobs
120
  // Allow connecting to remote storage, scanning + populating backup history from it
121
  // GoogleDrive in-dashboard download resumption loads the whole archive into memory - should instead either chunk or directly stream fo the file handle
122
  // Multisite add-on should allow restoring of each blog individually
123
- // Create single zip, containing even WordPress itself
124
  // Remove the recurrence of admin notices when settings are saved due to _wp_referer
125
 
126
  Encrypt filesystem, if memory allows (and have option for abort if not)
@@ -153,6 +154,7 @@ define('UPDRAFT_DEFAULT_OTHERS_EXCLUDE','upgrade,cache,updraft,backup*');
153
 
154
  # The following can go in your wp-config.php
155
  if (!defined('UPDRAFTPLUS_ZIP_EXECUTABLE')) define('UPDRAFTPLUS_ZIP_EXECUTABLE', "/usr/bin/zip,/bin/zip,/usr/local/bin/zip,/usr/sfw/bin/zip,/usr/xdg4/bin/zip,/opt/bin/zip");
 
156
  # If any individual file size is greater than this, then a warning is given
157
  if (!defined('UPDRAFTPLUS_WARN_FILE_SIZE')) define('UPDRAFTPLUS_WARN_FILE_SIZE', 1024*1024*250);
158
  # On a test on a Pentium laptop, 100,000 rows needed ~ 1 minute to write out - so 150,000 is around the CPanel default of 90 seconds execution time.
@@ -166,16 +168,19 @@ if (is_file(UPDRAFTPLUS_DIR.'/premium.php')) require_once(UPDRAFTPLUS_DIR.'/prem
166
  if (is_file(UPDRAFTPLUS_DIR.'/autoload.php')) require_once(UPDRAFTPLUS_DIR.'/autoload.php');
167
  if (is_file(UPDRAFTPLUS_DIR.'/udaddons/updraftplus-addons.php')) include_once(UPDRAFTPLUS_DIR.'/udaddons/updraftplus-addons.php');
168
 
 
169
  if (is_dir(UPDRAFTPLUS_DIR.'/addons') && $dir_handle = opendir(UPDRAFTPLUS_DIR.'/addons')) {
170
  while (false !== ($e = readdir($dir_handle))) {
171
  if (is_file(UPDRAFTPLUS_DIR.'/addons/'.$e) && preg_match('/\.php$/', $e)) {
 
172
  include_once(UPDRAFTPLUS_DIR.'/addons/'.$e);
173
  }
174
  }
175
  @closedir($dir_handle);
176
  }
177
 
178
- if (!isset($updraftplus)) $updraftplus = new UpdraftPlus();
 
179
 
180
  if (!$updraftplus->memory_check(192)) {
181
  // Experience appears to show that the memory limit is only likely to be hit (unless it is very low) by single files that are larger than available memory (when compressed)
@@ -215,7 +220,7 @@ class UpdraftPlus {
215
  public $logfile_name = "";
216
  public $logfile_handle = false;
217
  public $backup_time;
218
- public $backup_time_ms;
219
 
220
  public $opened_log_time;
221
  private $backup_dir;
@@ -223,6 +228,7 @@ class UpdraftPlus {
223
  private $jobdata;
224
 
225
  public $something_useful_happened = false;
 
226
 
227
  // Used to schedule resumption attempts beyond the tenth, if needed
228
  public $current_resumption;
@@ -232,7 +238,7 @@ class UpdraftPlus {
232
 
233
  // Initialisation actions - takes place on plugin load
234
 
235
- if ($fp = fopen( __FILE__, 'r')) {
236
  $file_data = fread( $fp, 1024 );
237
  if (preg_match("/Version: ([\d\.]+)(\r|\n)/", $file_data, $matches)) {
238
  $this->version = $matches[1];
@@ -243,13 +249,17 @@ class UpdraftPlus {
243
  # Create admin page
244
  add_action('init', array($this, 'handle_url_actions'));
245
  // Run earlier than default - hence earlier than other components
246
- add_action('admin_init', array($this,'admin_init'), 9);
247
  // admin_menu runs earlier, and we need it because options.php wants to use $updraftplus_admin before admin_init happens
248
- add_action('admin_menu', array($this,'admin_init'), 9);
 
 
249
  add_action('updraft_backup', array($this,'backup_files'));
250
  add_action('updraft_backup_database', array($this,'backup_database'));
251
- # backup_all is used by the manual "Backup Now" button
 
 
252
  add_action('updraft_backup_all', array($this,'backup_all'));
 
253
  # this is our runs-after-backup event, whose purpose is to see if it succeeded or failed, and resume/mom-up etc.
254
  add_action('updraft_backup_resume', array($this,'backup_resume'), 10, 3);
255
  # http://codex.wordpress.org/Plugin_API/Filter_Reference/cron_schedules. Raised priority because some plugins wrongly over-write all prior schedule changes (including BackupBuddy!)
@@ -266,7 +276,34 @@ class UpdraftPlus {
266
  if ($class_path) require_once(UPDRAFTPLUS_DIR.'/includes/phpseclib/'.$class_path.'.php');
267
  }
268
 
269
- public function admin_init() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270
  // We are in the admin area: now load all that code
271
  global $updraftplus_admin;
272
  if (empty($updraftplus_admin)) require_once(UPDRAFTPLUS_DIR.'/admin.php');
@@ -298,10 +335,10 @@ class UpdraftPlus {
298
  readfile($log_file);
299
  exit;
300
  } else {
301
- add_action('admin_notices', array($this,'show_admin_warning_unreadablelog') );
302
  }
303
  } else {
304
- add_action('admin_notices', array($this,'show_admin_warning_nolog') );
305
  }
306
  }
307
 
@@ -336,7 +373,7 @@ class UpdraftPlus {
336
  readfile($log_file);
337
  exit;
338
  } else {
339
- add_action('admin_notices', array($this,'show_admin_warning_unreadablelog') );
340
  }
341
  } elseif ($_GET['action'] == 'downloadfile' && isset($_GET['updraftplus_file']) && preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+\.(gz\.crypt)$/i', $_GET['updraftplus_file'])) {
342
  $updraft_dir = $this->backups_dir_location();
@@ -346,7 +383,7 @@ class UpdraftPlus {
346
  $this->spool_file('db', $spool_file, $dkey);
347
  exit;
348
  } else {
349
- add_action('admin_notices', array($this,'show_admin_warning_unreadablefile') );
350
  }
351
  }
352
  }
@@ -354,8 +391,8 @@ class UpdraftPlus {
354
 
355
  public function get_table_prefix() {
356
  global $wpdb;
357
- if (!empty($wpdb->base_prefix)) return $wpdb->base_prefix;
358
- return $wpdb->get_blog_prefix(0);
359
  }
360
 
361
  public function show_admin_warning_unreadablelog() {
@@ -389,8 +426,13 @@ class UpdraftPlus {
389
  $all_jobs = $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options WHERE option_name LIKE 'updraft_jobdata_%'", ARRAY_A);
390
  foreach ($all_jobs as $job) {
391
  $val = maybe_unserialize($job['option_value']);
 
392
  if (!empty($val['backup_time_ms']) && time() > $val['backup_time_ms'] + 86400) {
393
  delete_option($job['option_name']);
 
 
 
 
394
  }
395
  }
396
 
@@ -403,7 +445,9 @@ class UpdraftPlus {
403
  $ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.([A-Za-z0-9]){6}?$/i", $entry);
404
  // zi followed by 6 characters is the pattern used by /usr/bin/zip on Linux systems. It's safe to check for, as we have nothing else that's going to match that pattern.
405
  $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $entry);
406
- if ((preg_match("/$match\.tmp(\.gz)?$/i", $entry) || $ziparchive_match || $binzip_match) && is_file($updraft_dir.'/'.$entry)) {
 
 
407
  // We delete if a parameter was specified (and either it is a ZipArchive match or an order to delete of whatever age), or if over 12 hours old
408
  if (($match && ($ziparchive_match || $binzip_match || 0 == $older_than) && $now_time-filemtime($updraft_dir.'/'.$entry) >= $older_than) || $now_time-filemtime($updraft_dir.'/'.$entry)>43200) {
409
  $this->log("Deleting old temporary file: $entry");
@@ -428,10 +472,10 @@ class UpdraftPlus {
428
  }
429
  }
430
 
431
- public function backup_time_nonce() {
432
- $this->backup_time_ms = microtime(true);
433
  $this->backup_time = time();
434
- $nonce = substr(md5(time().rand()), 20);
435
  $this->nonce = $nonce;
436
  }
437
 
@@ -471,9 +515,15 @@ class UpdraftPlus {
471
 
472
  $safe_mode = $this->detect_safe_mode();
473
 
 
474
  $memory_usage = round(@memory_get_usage(false)/1048576, 1);
475
  $memory_usage2 = round(@memory_get_usage(true)/1048576, 1);
476
- $logline = "UpdraftPlus WordPress backup plugin (http://updraftplus.com): ".$this->version." WP: ".$wp_version." PHP: ".phpversion()." (".php_uname().") MySQL: $mysql_version Server: ".$_SERVER["SERVER_SOFTWARE"]." safe_mode: $safe_mode max_execution_time: ".@ini_get("max_execution_time")." memory_limit: ".ini_get('memory_limit')." (used: ${memory_usage}M | ${memory_usage2}M) ZipArchive::addFile: ";
 
 
 
 
 
477
 
478
  // method_exists causes some faulty PHP installations to segfault, leading to support requests
479
  if (version_compare(phpversion(), '5.2.0', '>=') && extension_loaded('zip')) {
@@ -484,6 +534,13 @@ class UpdraftPlus {
484
 
485
  $w3oc = 'N';
486
  if (0 === $this->current_resumption) {
 
 
 
 
 
 
 
487
  if (defined('W3TC') && W3TC == true && function_exists('w3_instance')) {
488
  $modules = w3_instance('W3_ModuleStatus');
489
  if ($modules->is_enabled('objectcache')) {
@@ -495,13 +552,27 @@ class UpdraftPlus {
495
 
496
  $this->log($logline);
497
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  $disk_free_space = @disk_free_space($updraft_dir);
499
  if ($disk_free_space === false) {
500
- $this->log("Free space on disk containing Updraft's temporary directory: Unknown");
501
  } else {
502
- $this->log("Free space on disk containing Updraft's temporary directory: ".round($disk_free_space/1048576,1)." Mb");
503
- if ($disk_free_space < 50*1048576) $this->log(sprintf(__('Your free disk space is very low - only %s Mb remain', 'updraftplus'), round($disk_free_space/1048576, 1)), 'warning');
 
504
  }
 
505
  }
506
 
507
  /* Logs the given line, adding (relative) time stamp and newline
@@ -510,11 +581,16 @@ class UpdraftPlus {
510
  - Messages at level 'error' do not persist through the job (they are only saved with save_backup_history(), and never restored from there - so only the final save_backup_history() errors persist); we presume that either a) they will be cleared on the next attempt, or b) they will occur again on the final attempt (at which point they will go to the user). But...
511
  - ... messages at level 'warning' persist. These are conditions that are unlikely to be cleared, not-fatal, but the user should be informed about. The $uniq_id field (which should not be numeric) can then be used for warnings that should only be logged once
512
  */
 
513
  public function log($line, $level = 'notice', $uniq_id = false) {
514
 
515
  if ('error' == $level || 'warning' == $level) {
516
  if ('error' == $level && $this->error_count() == 0) $this->log("An error condition has occurred for the first time during this job");
517
- $this->errors[] = array('level' => $level, 'message' => $line);
 
 
 
 
518
  # Errors are logged separately
519
  if ('error' == $level) return;
520
  # It's a warning
@@ -530,7 +606,7 @@ class UpdraftPlus {
530
 
531
  if ($this->logfile_handle) {
532
  # Record log file times relative to the backup start, if possible
533
- $rtime = (!empty($this->backup_time_ms)) ? microtime(true)-$this->backup_time_ms : microtime(true)-$this->opened_log_time;
534
  fwrite($this->logfile_handle, sprintf("%08.03f", round($rtime, 3))." (".$this->current_resumption.") $line\n");
535
  }
536
 
@@ -539,13 +615,15 @@ class UpdraftPlus {
539
  // Download messages are keyed on the job (since they could be running several), and type
540
  // The values of the POST array were checked before
541
  $findex = (!empty($_POST['findex'])) ? $_POST['findex'] : 0;
542
- set_transient('ud_dlmess_'.$_POST['timestamp'].'_'.$_POST['type'].'_'.$findex, $line." (".date('M d H:i:s').")", 3600);
 
 
543
  break;
544
  case 'restore':
545
  #if ('debug' != $level) echo $line."\n";
546
  break;
547
  default:
548
- if ('debug' != $level) UpdraftPlus_Options::update_updraft_option('updraft_lastmessage', $line." (".date_i18n('M d H:i:s').")");
549
  break;
550
  }
551
 
@@ -553,6 +631,14 @@ class UpdraftPlus {
553
  if (defined('UPDRAFTPLUS_BROWSERLOG')) print htmlentities($line)."\n";
554
  }
555
 
 
 
 
 
 
 
 
 
556
  # Q. Why is this abstracted into a separate function? A. To allow poedit and other parsers to pick up the need to translate strings passed to it (and not pick up all of those passed to log()).
557
  # 1st argument = the line to be logged (obligatory)
558
  # Further arguments = parameters for sprintf()
@@ -573,6 +659,9 @@ class UpdraftPlus {
573
  // Touch the original file, which helps prevent overlapping runs
574
  if ($file_path) touch($file_path);
575
 
 
 
 
576
  // Log it
577
  global $updraftplus_backup;
578
  $log = ucfirst($updraftplus_backup->current_service)." chunked upload: $percent % uploaded";
@@ -583,11 +672,6 @@ class UpdraftPlus {
583
  // i.e. Max 100/.7 + 9 = 150 runs = 760 minutes = 12 hrs 40, if spaced at 5 minute intervals. However, our algorithm now decreases the intervals if it can, so this should not really come into play
584
  // If they get 2 minutes on each run, and the file is 1Gb, then that equals 10.2Mb/120s = minimum 59Kb/s upload speed required
585
 
586
- // What this means in effect is that at least one of the files touched during the run must reach this percentage (so lapping round from 100 is OK)
587
- if ($percent > 0.7 * ( $this->current_resumption - 9)) {
588
- $this->something_useful_happened();
589
- }
590
-
591
  $upload_status = $this->jobdata_get('uploading_substatus');
592
  if (is_array($upload_status)) {
593
  $upload_status['p'] = $percent/100;
@@ -596,119 +680,204 @@ class UpdraftPlus {
596
 
597
  }
598
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
  function detect_safe_mode() {
600
  return (@ini_get('safe_mode') && strtolower(@ini_get('safe_mode')) != "off") ? 1 : 0;
601
  }
602
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
603
  # We require -@ and -u -r to work - which is the usual Linux binzip
604
- function find_working_bin_zip($logit = true) {
605
  if ($this->detect_safe_mode()) return false;
606
  // The hosting provider may have explicitly disabled the popen or proc_open functions
607
- if (!function_exists('popen') || !function_exists('proc_open')) return false;
 
 
 
 
 
 
 
 
608
  $updraft_dir = $this->backups_dir_location();
609
  foreach (explode(',', UPDRAFTPLUS_ZIP_EXECUTABLE) as $potzip) {
 
610
  if ($logit) $this->log("Testing: $potzip");
611
- if (@is_executable($potzip)) {
612
- # Test it, see if it is compatible with Info-ZIP
613
- # If you have another kind of zip, then feel free to tell me about it
614
- @mkdir($updraft_dir.'/binziptest/subdir1/subdir2', 0777, true);
615
- file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test.html', '<html></body><a href="http://updraftplus.com">UpdraftPlus is a great backup and restoration plugin for WordPress.</body></html>');
616
- @unlink($updraft_dir.'/binziptest/test.zip');
617
- if (is_file($updraft_dir.'/binziptest/subdir1/subdir2/test.html')) {
618
-
619
- $exec = "cd ".escapeshellarg($updraft_dir)."; $potzip -v -u -r binziptest/test.zip binziptest/subdir1";
620
 
621
- $all_ok=true;
622
- $handle = popen($exec, "r");
623
- if ($handle) {
624
- while (!feof($handle)) {
625
- $w = fgets($handle);
626
- if ($w && $logit) $this->log("Output: ".trim($w));
627
- }
628
- $ret = pclose($handle);
629
- if ($ret !=0) {
630
- if ($logit) $this->log("Binary zip: error (code: $ret)");
631
- $all_ok = false;
632
- }
633
- } else {
634
- if ($logit) $this->log("Error: popen failed");
 
 
 
 
 
635
  $all_ok = false;
636
  }
 
 
 
 
637
 
638
- # Now test -@
639
- if (true == $all_ok) {
640
- file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test2.html', '<html></body><a href="http://updraftplus.com">UpdraftPlus is a really great backup and restoration plugin for WordPress.</body></html>');
641
-
642
- $exec = $potzip." -v -@ binziptest/test.zip";
643
-
644
- $all_ok=true;
645
-
646
- $descriptorspec = array(
647
- 0 => array('pipe', 'r'),
648
- 1 => array('pipe', 'w'),
649
- 2 => array('pipe', 'w')
650
- );
651
- $handle = proc_open($exec, $descriptorspec, $pipes, $updraft_dir);
652
- if (is_resource($handle)) {
653
- if (!fwrite($pipes[0], "binziptest/subdir1/subdir2/test2.html\n")) {
654
- @fclose($pipes[0]);
655
- @fclose($pipes[1]);
656
- @fclose($pipes[2]);
657
- $all_ok = false;
658
- } else {
659
- fclose($pipes[0]);
660
- while (!feof($pipes[1])) {
661
- $w = fgets($pipes[1]);
662
- if ($w && $logit) $this->log("Output: ".trim($w));
663
- }
664
- fclose($pipes[1]);
665
-
666
- while (!feof($pipes[2])) {
667
- $last_error = fgets($pipes[2]);
668
- if (!empty($last_error) && $logit) $this->log("Error output: ".trim($w));
669
- }
670
- fclose($pipes[2]);
671
 
672
- $ret = proc_close($handle);
673
- if ($ret !=0) {
674
- if ($logit) $this->log("Binary zip: error (code: $ret)");
675
- $all_ok = false;
676
- }
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  }
679
 
680
- } else {
681
- if ($logit) $this->log("Error: proc_open failed");
682
- $all_ok = false;
683
  }
684
 
 
 
 
685
  }
686
 
687
- // Do we now actually have a working zip? Need to test the created object using PclZip
688
- // If it passes, then remove dirs and then return $potzip;
689
- $found_first = false;
690
- $found_second = false;
691
- if ($all_ok && file_exists($updraft_dir.'/binziptest/test.zip')) {
692
- if(!class_exists('PclZip')) require_once(ABSPATH.'/wp-admin/includes/class-pclzip.php');
693
- $zip = new PclZip($updraft_dir.'/binziptest/test.zip');
694
- $foundit = 0;
695
- if (($list = $zip->listContent()) != 0) {
696
- foreach ($list as $obj) {
697
- if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test.html' == $obj['stored_filename'] && $obj['size']==127) $found_first=true;
698
- if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test2.html' == $obj['stored_filename'] && $obj['size']==134) $found_second=true;
699
- }
 
700
  }
701
  }
702
- $this->remove_binzip_test_files($updraft_dir);
703
- if ($found_first && $found_second) {
704
- if ($logit) $this->log("Working binary zip found: $potzip");
705
- return $potzip;
706
- }
707
-
708
  }
709
  $this->remove_binzip_test_files($updraft_dir);
 
 
 
 
 
 
710
  }
 
711
  }
 
712
  return false;
713
  }
714
 
@@ -734,7 +903,7 @@ class UpdraftPlus {
734
  $resume_interval = $this->jobdata_get('resume_interval');
735
  if ($time_this_run + 30 > $resume_interval) {
736
  $new_interval = ceil($time_this_run + 30);
737
- set_transient('updraft_initial_resume_interval', (int)$new_interval, 8*86400);
738
  $this->log("The time we have been running (".round($time_this_run,1).") is approaching the resumption interval ($resume_interval) - increasing resumption interval to $new_interval");
739
  $this->jobdata_set('resume_interval', $new_interval);
740
  }
@@ -831,8 +1000,22 @@ class UpdraftPlus {
831
  if ($resumption_no > 0) {
832
  $this->nonce = $bnonce;
833
  $this->backup_time = $this->jobdata_get('backup_time');
834
- $this->backup_time_ms = $this->jobdata_get('backup_time_ms');
 
 
 
 
 
 
 
 
835
  $this->logfile_open($bnonce);
 
 
 
 
 
 
836
 
837
  $runs_started = $this->jobdata_get('runs_started');
838
  if (!is_array($runs_started)) $runs_started=array();
@@ -856,27 +1039,10 @@ class UpdraftPlus {
856
  $runs_started[$resumption_no] = $time_now;
857
  if (!empty($this->backup_time)) $this->jobdata_set('runs_started', $runs_started);
858
 
859
- // Import existing warnings. The purpose of this is so that when save_backup_history() is called, it has a complete set - because job data expires quickly, whilst the warnings of the last backup run need to persist
860
- $warnings = $this->jobdata_get('warnings');
861
- if (is_array($warnings)) {
862
- foreach ($warnings as $warning) {
863
- $this->errors[] = array('level' => 'warning', 'message' => $warning);
864
- }
865
- }
866
-
867
  // Schedule again, to run in 5 minutes again, in case we again fail
868
  // The actual interval can be increased (for future resumptions) by other code, if it detects apparent overlapping
869
  $resume_interval = max(intval($this->jobdata_get('resume_interval')), 100);
870
 
871
- if ($resumption_no > 0 && isset($runs_started[$prev_resumption])) {
872
- $our_expected_start = $runs_started[$prev_resumption] + $resume_interval;
873
- # More than 12 minutes late?
874
- if ($time_now > $our_expected_start + 720) {
875
- $this->log('Long time past since expected resumption time: approx expected= '.round($our_expected_start,1).", now=".round($time_now, 1).", diff=".round($time_now-$our_expected_start,1));
876
- $this->log(__('Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:', 'updraftplus').' http://updraftplus.com/faqs/why-am-i-getting-warnings-about-my-site-not-having-enough-visitors/', 'warning', 'infrequentvisits');
877
- }
878
- }
879
-
880
  $btime = $this->backup_time;
881
  $job_type = $this->jobdata_get('job_type');
882
 
@@ -893,6 +1059,15 @@ class UpdraftPlus {
893
  die;
894
  }
895
 
 
 
 
 
 
 
 
 
 
896
  // We just do this once, as we don't want to be in permanent conflict with the overlap detector
897
  if ($resumption_no == 8) {
898
  // $time_passed is set earlier
@@ -925,6 +1100,13 @@ class UpdraftPlus {
925
  $schedule_resumption = true;
926
  }
927
  }
 
 
 
 
 
 
 
928
  if (isset($schedule_resumption)) {
929
  $schedule_for = time()+$resume_interval;
930
  $this->log("Scheduling a resumption ($next_resumption) after $resume_interval seconds ($schedule_for) in case this run gets aborted");
@@ -932,36 +1114,39 @@ class UpdraftPlus {
932
  $this->newresumption_scheduled = $schedule_for;
933
  }
934
 
935
- // Sanity check
936
- if (empty($this->backup_time)) {
937
- # TODO: We no longer use object cache-ing - alter this message
938
- $this->log('Abort this run: the backup_time parameter appears to be empty (this is either a one-time error caused by upgrading from a version earlier than 1.7.18 whilst a backup was in progress (which you can ignore), or caused by resuming an already-complete backup, or by your site having a faulty object cache active (e.g. W3 Total Cache\'s object cache))');
939
- return false;
940
- }
941
-
942
  global $updraftplus_backup;
943
- // Bring in all the zip routines
944
  if (!is_a($updraftplus_backup, 'UpdraftPlus_Backup')) require_once(UPDRAFTPLUS_DIR.'/backup.php');
945
 
946
- // This should be always called; if there were no files in this run, it returns us an empty array
947
- $backup_array = $updraftplus_backup->resumable_backup_of_files($resumption_no);
948
 
949
- // This save, if there was something, is then immediately picked up again
950
- if (is_array($backup_array)) {
951
- $this->log('Saving backup status to database (elements: '.count($backup_array).")");
952
- $this->save_backup_history($backup_array);
953
- }
 
 
954
 
955
- // Switch of variable name is purely vestigial
956
- $our_files = $backup_array;
957
- if (!is_array($our_files)) $our_files = array();
 
 
 
 
 
 
958
 
959
- $undone_files = array();
 
 
960
 
961
  $backup_database = $this->jobdata_get('backup_database');
962
 
963
  // The value of jobdata['backup_database'] is read and written below (instead of using the existing variable) so that we can copy-and-paste this part as needed.
964
- if ($backup_database == "begun" || $backup_database == 'finished' || $backup_database == 'encrypted') {
965
  if ($backup_database == "begun") {
966
  if ($resumption_no > 0) {
967
  $this->log("Resuming creation of database dump");
@@ -975,9 +1160,7 @@ class UpdraftPlus {
975
  }
976
 
977
  $db_backup = $updraftplus_backup->backup_db($backup_database);
978
- if(is_array($our_files) && is_string($db_backup)) {
979
- $our_files['db'] = $db_backup;
980
- }
981
 
982
  if ($backup_database != 'encrypted') $this->jobdata_set('backup_database', 'finished');
983
  } elseif ('no' == $backup_database) {
@@ -1005,12 +1188,18 @@ class UpdraftPlus {
1005
 
1006
  $backupable_entities = $this->get_backupable_file_entities(true);
1007
 
 
 
1008
  # Queue files for upload
1009
  foreach ($our_files as $key => $files) {
1010
  // Only continue if the stored info was about a dump
1011
  if (!isset($backupable_entities[$key]) && $key != 'db') continue;
1012
  if (is_string($files)) $files = array($files);
1013
  foreach ($files as $findex => $file) {
 
 
 
 
1014
  if ($this->is_uploaded($file)) {
1015
  $this->log("$file: $key: This file has already been successfully uploaded");
1016
  } elseif (is_file($updraft_dir.'/'.$file)) {
@@ -1022,8 +1211,13 @@ class UpdraftPlus {
1022
  }
1023
  }
1024
  }
 
1025
 
1026
- if (!empty($this->semaphore)) $this->semaphore->unlock();
 
 
 
 
1027
 
1028
  if (count($undone_files) == 0) {
1029
  $this->log("Resume backup ($bnonce, $resumption_no): finish run");
@@ -1060,17 +1254,25 @@ class UpdraftPlus {
1060
  }
1061
 
1062
  function backup_all() {
1063
- $this->boot_backup(true,true);
1064
  }
1065
 
1066
  function backup_files() {
1067
  # Note that the "false" for database gets over-ridden automatically if they turn out to have the same schedules
1068
- $this->boot_backup(true,false);
1069
  }
1070
 
1071
  function backup_database() {
1072
  # Note that nothing will happen if the file backup had the same schedule
1073
- $this->boot_backup(false,true);
 
 
 
 
 
 
 
 
1074
  }
1075
 
1076
  public function jobdata_getarray($non) {
@@ -1127,6 +1329,7 @@ class UpdraftPlus {
1127
  }
1128
 
1129
  // This procedure initiates a backup run
 
1130
  public function boot_backup($backup_files, $backup_database, $restrict_files_to_override = false, $one_shot = false, $service = false) {
1131
 
1132
  @ignore_user_abort(true);
@@ -1152,7 +1355,7 @@ class UpdraftPlus {
1152
  // Log some information that may be helpful
1153
  $this->log("Tasks: Backup files: $backup_files (schedule: ".UpdraftPlus_Options::get_updraft_option('updraft_interval', 'unset').") Backup DB: $backup_database (schedule: ".UpdraftPlus_Options::get_updraft_option('updraft_interval_database', 'unset').")");
1154
 
1155
- if (false === $one_shot) {
1156
  # If the files and database schedules are the same, and if this the file one, then we rope in database too.
1157
  # On the other hand, if the schedules were the same and this was the database run, then there is nothing to do.
1158
  if ('manual' != UpdraftPlus_Options::get_updraft_option('updraft_interval') && (UpdraftPlus_Options::get_updraft_option('updraft_interval') == UpdraftPlus_Options::get_updraft_option('updraft_interval_database') || UpdraftPlus_Options::get_updraft_option('updraft_interval_database', 'xyz') == 'xyz' )) {
@@ -1209,14 +1412,14 @@ class UpdraftPlus {
1209
  $this->semaphore->lock_name = $semaphore;
1210
  $this->log('Requesting semaphore lock ('.$semaphore.')');
1211
  if (!$this->semaphore->lock()) {
1212
- $this->log('Failed to gain semaphore lock ('.$semaphore.') - another backup is apparently already active - aborting (backups of the same time must be started at least 1 minute apart; otherwise they are assumed to be unwanted duplicates)');
1213
  return;
1214
  }
1215
 
1216
  // Allow the resume interval to be more than 300 if last time we know we went beyond that - but never more than 600
1217
- $resume_interval = (int)min(max(300, get_transient('updraft_initial_resume_interval')), 600);
1218
  # We delete it because we only want to know about behaviour found during the very last backup run (so, if you move servers then old data is not retained)
1219
- delete_transient('updraft_initial_resume_interval');
1220
 
1221
  $job_file_entities = array();
1222
  if ($backup_files) {
@@ -1236,7 +1439,7 @@ class UpdraftPlus {
1236
  'job_type', 'backup',
1237
  'jobstatus', 'begun',
1238
  'backup_time', $this->backup_time,
1239
- 'backup_time_ms', $this->backup_time_ms,
1240
  'service', $service,
1241
  'split_every', max(intval(UpdraftPlus_Options::get_updraft_option('updraft_split_every', 800)), UPDRAFTPLUS_SPLIT_MIN),
1242
  'maxzipbatch', 26214400, #25Mb
@@ -1249,7 +1452,7 @@ class UpdraftPlus {
1249
 
1250
  // Save what *should* be done, to make it resumable from this point on
1251
  array_push($initial_jobdata, 'backup_database', (($backup_database) ? 'begun' : 'no'));
1252
- if ($backup_files) array_push($initial_jobdata, 'backup_files', 'begun');
1253
 
1254
  // Use of jobdata_set_multi saves around 200ms
1255
  call_user_func_array(array($this, 'jobdata_set_multi'), $initial_jobdata);
@@ -1263,6 +1466,8 @@ class UpdraftPlus {
1263
 
1264
  function backup_finish($cancel_event, $do_cleanup, $allow_email, $resumption_no) {
1265
 
 
 
1266
  $delete_jobdata = false;
1267
 
1268
  // The valid use of $do_cleanup is to indicate if in fact anything exists to clean up (if no job really started, then there may be nothing)
@@ -1371,10 +1576,8 @@ class UpdraftPlus {
1371
 
1372
  function save_last_backup($backup_array) {
1373
  $success = ($this->error_count() == 0) ? 1 : 0;
1374
-
1375
  $last_backup = array('backup_time'=>$this->backup_time, 'backup_array'=>$backup_array, 'success'=>$success, 'errors'=>$this->errors, 'backup_nonce' => $this->nonce);
1376
-
1377
- UpdraftPlus_Options::update_updraft_option('updraft_last_backup', $last_backup);
1378
  }
1379
 
1380
  // This should be called whenever a file is successfully uploaded
@@ -1404,7 +1607,7 @@ class UpdraftPlus {
1404
  if ($id) {
1405
  $ids = UpdraftPlus_Options::get_updraft_option('updraft_file_ids', array() );
1406
  $ids[$file] = $id;
1407
- UpdraftPlus_Options::update_updraft_option('updraft_file_ids',$ids);
1408
  $this->log("Stored file<->id correlation in database ($file <-> $id)");
1409
  }
1410
 
@@ -1416,7 +1619,7 @@ class UpdraftPlus {
1416
  }
1417
 
1418
  function is_uploaded($file, $service = '') {
1419
- $hash = $service.'-'.md5($file);
1420
  return ($this->jobdata_get("uploaded_$hash") === "yes") ? true : false;
1421
  }
1422
 
@@ -1594,7 +1797,7 @@ class UpdraftPlus {
1594
  $backup_array['nonce'] = $this->nonce;
1595
  $backup_array['service'] = $this->jobdata_get('service');
1596
  $backup_history[$this->backup_time] = $backup_array;
1597
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history);
1598
  } else {
1599
  $this->log('Could not save backup history because we have no backup array. Backup probably failed.');
1600
  $this->log(__('Could not save backup history because we have no backup array. Backup probably failed.','updraftplus'), 'error');
@@ -1771,10 +1974,7 @@ class UpdraftPlus {
1771
  _e("Decryption failed. The database file is encrypted, but you have no encryption key entered.",'updraftplus');
1772
  $this->log('Decryption of database failed: the database file is encrypted, but you have no encryption key entered.', 'error');
1773
  } else {
1774
- $this->ensure_phpseclib('Crypt_Rijndael', 'Crypt/Rijndael');
1775
- $rijndael = new Crypt_Rijndael();
1776
- $rijndael->setKey($encryption);
1777
- $ciphertext = $rijndael->decrypt(file_get_contents($fullpath));
1778
  if ($ciphertext) {
1779
  header('Content-type: application/x-gzip');
1780
  header("Content-Disposition: attachment; filename=\"".substr($file,0,-6)."\";");
@@ -1819,9 +2019,17 @@ class UpdraftPlus {
1819
  if ($memory_limit == false) $memory_limit = ini_get('memory_limit');
1820
  $memory_limit = rtrim($memory_limit);
1821
  $memory_unit = $memory_limit[strlen($memory_limit)-1];
1822
- $memory_limit = substr($memory_limit,0,strlen($memory_limit)-1);
 
 
 
 
1823
  switch($memory_unit) {
 
 
 
1824
  case 'K':
 
1825
  $memory_limit = floor($memory_limit/1024);
1826
  break;
1827
  case 'G':
@@ -1852,7 +2060,7 @@ class UpdraftPlus {
1852
  $rad = rand(0,8);
1853
  switch ($rad) {
1854
  case 0:
1855
- return $this->url_start($urls,'updraftplus.com')."Want more features or paid, guaranteed support? Check out UpdraftPlus.Com".$this->url_end($urls,'updraftplus.com');
1856
  break;
1857
  case 1:
1858
  if (defined('WPLANG') && strlen(WPLANG)>0 && !is_file(UPDRAFTPLUS_DIR.'/languages/updraftplus-'.WPLANG.
@@ -1861,7 +2069,7 @@ class UpdraftPlus {
1861
  return __('Like UpdraftPlus and can spare one minute?','updraftplus').$this->url_start($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform').' '.__('Please help UpdraftPlus by giving a positive review at wordpress.org','updraftplus').$this->url_end($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform');
1862
  break;
1863
  case 2:
1864
- return $this->url_start($urls,'wordshell.net')."Check out WordShell".$this->url_end($urls,'www.wordshell.net')." - manage WordPress from the command line - huge time-saver";
1865
  break;
1866
  case 3:
1867
  return __('Like UpdraftPlus and can spare one minute?','updraftplus').$this->url_start($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform').' '.__('Please help UpdraftPlus by giving a positive review at wordpress.org','updraftplus').$this->url_end($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform');
4
  Plugin URI: http://updraftplus.com
5
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
6
  Author: UpdraftPlus.Com, DavidAnderson
7
+ Version: 1.7.34
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Text Domain: updraftplus
13
 
14
  /*
15
  TODO - some of these are out of date/done, needs pruning
 
16
  // After Oct 15 2013: Remove page(s) from websites discussing W3TC
17
  // Change migrate window: 1) Retain link to article 2) Have selector to choose which backup set to migrate - or a fresh one 3) Have option for FTP/SFTP/SCP despatch 4) Have big "Go" button. Have some indication of what happens next. Test the login first. Have the remote site auto-scan its directory + pick up new sets. Have a way of querying the remote site for its UD-dir. Have a way of saving the settings as a 'profile'. Or just save the last set of settings (since mostly will be just one place to send to). Implement an HTTP/JSON method for sending files too.
18
+ // Log Cpanel quota
19
+ // Detect low-memory VPSes, and don't use BinZip
20
+ // Change default setting of retain 1 backup set? (Auto-backup could replace it in that case... don't perform pruning when doing auto-backup?)
21
+ // Change add-ons screen, to be less confusing for people who haven't yet updated but have connected
22
+ // Put a 'what do I get if I upgrade?' link into the mix
23
+ // Add to admin bar (and make it something that can be turned off)
24
+ // New reporting add-on: Multiple email addresses, send backup to 1st only, option to send email only on failure, include checksums (SHA1) in report (store these in job data immediately post-creation; then aggregate them into the backup history on job finish), option to include log file always, option to log to syslog
25
+ // Strategy for what to do if the updraft_dir contains untracked backups. Automatically rescan?
26
+ // MySQL manual: See Section 8.2.2.1, Speed of INSERT Statements.
27
  // Exempt UD itself from a plugins restore? (will options be out-of-sync? exempt options too?)
28
  // Post restore/migrate, check updraft_dir, and reset if non-existent
29
  // Auto-empty caches post-restore/post-migration (prevent support requests from people with state/wrong cacheing data)
30
  // Show 'Migrate' instead of 'Restore' on the button if relevant
31
  // Test with: http://wordpress.org/plugins/wp-db-driver/
32
  // Backup notes
33
+ // The delete-em at the end needs to be made resumable. And to only run on last run-through (i.e. no errors, or no resumption)
 
34
  // Incremental - can leverage some of the multi-zip work???
35
  // Put in a help link to explain what WordPress core (including any additions to your WordPress root directory) does (was asked for support)
 
 
 
36
  // Multiple files in more-files
37
+ // On multisite, the settings should be in the network panel. Connection settings need migrating into site options.
38
  // On restore, raise a warning for ginormous zips
39
  // Detect double-compressed files when they are uploaded (need a way to detect gz compression in general)
40
  // Log migrations/restores, and have an option for auto-emailing the log
44
  // More sophisticated options for retaining/deleting (e.g. 4/day for X days, then 7/week for Z weeks, then 1/month for Y months)
45
  // Unpack zips via AJAX? Do bit-by-bit to allow enormous opens a better chance? (have a huge one in Dropbox)
46
  // Put in a maintenance-mode detector
47
+ // Add update warning if they've got an add-on but not connected account
48
  // Detect CloudFlare output in attempts to connect - detecting cloudflare.com should be sufficient
49
  // Bring multisite shop page up to date
50
  // Re-do pricing + support packages
109
  //Do an automated test periodically for the success of loop-back connections
110
  //When a manual backup is run, use a timer to update the 'Download backups and logs' section, just like 'Last finished backup run'. Beware of over-writing anything that's in there from a resumable downloader.
111
  //Change DB encryption to not require whole gzip in memory (twice)
112
+ //Add YouSendIt, Box.Net, SugarSync, Me.Ga support??
113
  //Make it easier to find add-ons
114
  // Move the inclusion, cloud and retention data into the backup job (i.e. don't read current config, make it an attribute of each job). In fact, everything should be. So audit all code for where get_option is called inside a backup run: it shouldn't happen.
115
  // Should we resume if the only errors were upon deletion (i.e. the backup itself was fine?) Presently we do, but it displays errors for the user to confuse them. Perhaps better to make pruning a separate scheuled task??
117
  // Chunking + resuming on SFTP
118
  // Add-on to check integrity of backups
119
  // Add-on to manage all your backups from a single dashboard
 
120
  // Provide backup/restoration for UpdraftPlus's settings, to allow 'bootstrap' on a fresh WP install - some kind of single-use code which a remote UpdraftPlus can use to authenticate
121
+ // Multiple schedules
122
  // Allow connecting to remote storage, scanning + populating backup history from it
123
  // GoogleDrive in-dashboard download resumption loads the whole archive into memory - should instead either chunk or directly stream fo the file handle
124
  // Multisite add-on should allow restoring of each blog individually
 
125
  // Remove the recurrence of admin notices when settings are saved due to _wp_referer
126
 
127
  Encrypt filesystem, if memory allows (and have option for abort if not)
154
 
155
  # The following can go in your wp-config.php
156
  if (!defined('UPDRAFTPLUS_ZIP_EXECUTABLE')) define('UPDRAFTPLUS_ZIP_EXECUTABLE', "/usr/bin/zip,/bin/zip,/usr/local/bin/zip,/usr/sfw/bin/zip,/usr/xdg4/bin/zip,/opt/bin/zip");
157
+ if (!defined('UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE')) define('UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE', "/usr/bin/mysqldump,/bin/mysqldump,/usr/local/bin/mysqldump,/usr/sfw/bin/mysqldump,/usr/xdg4/bin/mysqldump,/opt/bin/mysqldump");
158
  # If any individual file size is greater than this, then a warning is given
159
  if (!defined('UPDRAFTPLUS_WARN_FILE_SIZE')) define('UPDRAFTPLUS_WARN_FILE_SIZE', 1024*1024*250);
160
  # On a test on a Pentium laptop, 100,000 rows needed ~ 1 minute to write out - so 150,000 is around the CPanel default of 90 seconds execution time.
168
  if (is_file(UPDRAFTPLUS_DIR.'/autoload.php')) require_once(UPDRAFTPLUS_DIR.'/autoload.php');
169
  if (is_file(UPDRAFTPLUS_DIR.'/udaddons/updraftplus-addons.php')) include_once(UPDRAFTPLUS_DIR.'/udaddons/updraftplus-addons.php');
170
 
171
+ $updraftplus_have_addons = 0;
172
  if (is_dir(UPDRAFTPLUS_DIR.'/addons') && $dir_handle = opendir(UPDRAFTPLUS_DIR.'/addons')) {
173
  while (false !== ($e = readdir($dir_handle))) {
174
  if (is_file(UPDRAFTPLUS_DIR.'/addons/'.$e) && preg_match('/\.php$/', $e)) {
175
+ $updraftplus_have_addons++;
176
  include_once(UPDRAFTPLUS_DIR.'/addons/'.$e);
177
  }
178
  }
179
  @closedir($dir_handle);
180
  }
181
 
182
+ $updraftplus = new UpdraftPlus();
183
+ $updraftplus->have_addons = $updraftplus_have_addons;
184
 
185
  if (!$updraftplus->memory_check(192)) {
186
  // Experience appears to show that the memory limit is only likely to be hit (unless it is very low) by single files that are larger than available memory (when compressed)
220
  public $logfile_name = "";
221
  public $logfile_handle = false;
222
  public $backup_time;
223
+ public $job_time_ms;
224
 
225
  public $opened_log_time;
226
  private $backup_dir;
228
  private $jobdata;
229
 
230
  public $something_useful_happened = false;
231
+ public $have_addons = false;
232
 
233
  // Used to schedule resumption attempts beyond the tenth, if needed
234
  public $current_resumption;
238
 
239
  // Initialisation actions - takes place on plugin load
240
 
241
+ if ($fp = fopen(__FILE__, 'r')) {
242
  $file_data = fread( $fp, 1024 );
243
  if (preg_match("/Version: ([\d\.]+)(\r|\n)/", $file_data, $matches)) {
244
  $this->version = $matches[1];
249
  # Create admin page
250
  add_action('init', array($this, 'handle_url_actions'));
251
  // Run earlier than default - hence earlier than other components
 
252
  // admin_menu runs earlier, and we need it because options.php wants to use $updraftplus_admin before admin_init happens
253
+ add_action(apply_filters('updraft_admin_menu_hook', 'admin_menu'), array($this, 'admin_menu'), 9);
254
+ # Not a mistake: admin-ajax.php calls only admin_init and not admin_menu
255
+ add_action('admin_init', array($this, 'admin_menu'), 9);
256
  add_action('updraft_backup', array($this,'backup_files'));
257
  add_action('updraft_backup_database', array($this,'backup_database'));
258
+ add_action('updraft_backupnow_backup', array($this,'backupnow_files'));
259
+ add_action('updraft_backupnow_backup_database', array($this,'backupnow_database'));
260
+ # backup_all as an action is legacy (Oct 2013) - there may be some people who wrote cron scripts to use it
261
  add_action('updraft_backup_all', array($this,'backup_all'));
262
+ add_action('updraft_backupnow_backup_all', array($this,'backup_all'));
263
  # this is our runs-after-backup event, whose purpose is to see if it succeeded or failed, and resume/mom-up etc.
264
  add_action('updraft_backup_resume', array($this,'backup_resume'), 10, 3);
265
  # http://codex.wordpress.org/Plugin_API/Filter_Reference/cron_schedules. Raised priority because some plugins wrongly over-write all prior schedule changes (including BackupBuddy!)
276
  if ($class_path) require_once(UPDRAFTPLUS_DIR.'/includes/phpseclib/'.$class_path.'.php');
277
  }
278
 
279
+ // Returns the number of bytes free, if it can be detected; otherwise, false
280
+ // Presently, we only detect CPanel. If you know of others, then feel free to contribute!
281
+ public function get_hosting_disk_quota_free() {
282
+ if (!@is_dir('/usr/local/cpanel') || $this->detect_safe_mode() || !function_exists('popen') || (!@is_executable('/usr/local/bin/perl') && !@is_executable('/usr/local/cpanel/3rdparty/bin/perl'))) return false;
283
+
284
+ $perl = (@is_executable('/usr/local/cpanel/3rdparty/bin/perl')) ? '/usr/local/cpanel/3rdparty/bin/perl' : '/usr/local/bin/perl';
285
+
286
+ $exec = "UPDRAFTPLUSKEY=updraftplus $perl ".UPDRAFTPLUS_DIR."/includes/get-cpanel-quota-usage.pl";
287
+
288
+ $handle = popen($exec, 'r');
289
+ if (false === $handle) return false;
290
+
291
+ $found = false;
292
+ while (false === $found && !feof($handle)) {
293
+ $w = fgets($handle);
294
+ # Used, limit, remain
295
+ if (preg_match('/RESULT: (\d+) (\d+) (\d+) /', $w, $matches)) { $found = true; }
296
+ }
297
+ $ret = pclose($handle);
298
+ if (false === $found ||$ret != 0) return false;
299
+
300
+ if ((int)$matches[2]<100 || ($matches[1] + $matches[3] != $matches[2])) return false;
301
+
302
+ return $matches;
303
+ }
304
+
305
+ // This function may get called multiple times, so write accordingly
306
+ public function admin_menu() {
307
  // We are in the admin area: now load all that code
308
  global $updraftplus_admin;
309
  if (empty($updraftplus_admin)) require_once(UPDRAFTPLUS_DIR.'/admin.php');
335
  readfile($log_file);
336
  exit;
337
  } else {
338
+ add_action('all_admin_notices', array($this,'show_admin_warning_unreadablelog') );
339
  }
340
  } else {
341
+ add_action('all_admin_notices', array($this,'show_admin_warning_nolog') );
342
  }
343
  }
344
 
373
  readfile($log_file);
374
  exit;
375
  } else {
376
+ add_action('all_admin_notices', array($this,'show_admin_warning_unreadablelog') );
377
  }
378
  } elseif ($_GET['action'] == 'downloadfile' && isset($_GET['updraftplus_file']) && preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+\.(gz\.crypt)$/i', $_GET['updraftplus_file'])) {
379
  $updraft_dir = $this->backups_dir_location();
383
  $this->spool_file('db', $spool_file, $dkey);
384
  exit;
385
  } else {
386
+ add_action('all_admin_notices', array($this,'show_admin_warning_unreadablefile') );
387
  }
388
  }
389
  }
391
 
392
  public function get_table_prefix() {
393
  global $wpdb;
394
+ #if (!empty($wpdb->base_prefix)) return $wpdb->base_prefix;
395
+ return $wpdb->get_blog_prefix();
396
  }
397
 
398
  public function show_admin_warning_unreadablelog() {
426
  $all_jobs = $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options WHERE option_name LIKE 'updraft_jobdata_%'", ARRAY_A);
427
  foreach ($all_jobs as $job) {
428
  $val = maybe_unserialize($job['option_value']);
429
+ # TODO: Can simplify this after a while (now all jobs use job_time_ms) - 1 Jan 2014
430
  if (!empty($val['backup_time_ms']) && time() > $val['backup_time_ms'] + 86400) {
431
  delete_option($job['option_name']);
432
+ } elseif (!empty($val['job_time_ms']) && time() > $val['job_time_ms'] + 86400) {
433
+ delete_option($job['option_name']);
434
+ } elseif (empty($val['backup_time_ms']) && empty($val['job_time_ms']) && !empty($val['job_type']) && $val['job_type'] != 'backup') {
435
+ delete_option($job['option_name']);
436
  }
437
  }
438
 
445
  $ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.([A-Za-z0-9]){6}?$/i", $entry);
446
  // zi followed by 6 characters is the pattern used by /usr/bin/zip on Linux systems. It's safe to check for, as we have nothing else that's going to match that pattern.
447
  $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $entry);
448
+ # Temporary files from the database dump process - not needed, as is caught by the catch-all
449
+ # $table_match = preg_match("/${match}-table-(.*)\.table(\.tmp)?\.gz$/i", $entry);
450
+ if ((preg_match("/$match\.(tmp|table)(\.gz)?$/i", $entry) || $ziparchive_match || $binzip_match) && is_file($updraft_dir.'/'.$entry)) {
451
  // We delete if a parameter was specified (and either it is a ZipArchive match or an order to delete of whatever age), or if over 12 hours old
452
  if (($match && ($ziparchive_match || $binzip_match || 0 == $older_than) && $now_time-filemtime($updraft_dir.'/'.$entry) >= $older_than) || $now_time-filemtime($updraft_dir.'/'.$entry)>43200) {
453
  $this->log("Deleting old temporary file: $entry");
472
  }
473
  }
474
 
475
+ public function backup_time_nonce($nonce = false) {
476
+ $this->job_time_ms = microtime(true);
477
  $this->backup_time = time();
478
+ if (false === $nonce) $nonce = substr(md5(time().rand()), 20);
479
  $this->nonce = $nonce;
480
  }
481
 
515
 
516
  $safe_mode = $this->detect_safe_mode();
517
 
518
+ $memory_limit = ini_get('memory_limit');
519
  $memory_usage = round(@memory_get_usage(false)/1048576, 1);
520
  $memory_usage2 = round(@memory_get_usage(true)/1048576, 1);
521
+
522
+ # Attempt to raise limit to avoid false positives
523
+ @set_time_limit(900);
524
+ $max_execution_time = (int)@ini_get("max_execution_time");
525
+
526
+ $logline = "UpdraftPlus WordPress backup plugin (http://updraftplus.com): ".$this->version." WP: ".$wp_version." PHP: ".phpversion()." (".@php_uname().") MySQL: $mysql_version Server: ".$_SERVER["SERVER_SOFTWARE"]." safe_mode: $safe_mode max_execution_time: $max_execution_time memory_limit: $memory_limit (used: ${memory_usage}M | ${memory_usage2}M) multisite: ".((is_multisite()) ? 'Y' : 'N')." mcrypt: ".((function_exists('mcrypt_encrypt')) ? 'Y' : 'N')." ZipArchive::addFile: ";
527
 
528
  // method_exists causes some faulty PHP installations to segfault, leading to support requests
529
  if (version_compare(phpversion(), '5.2.0', '>=') && extension_loaded('zip')) {
534
 
535
  $w3oc = 'N';
536
  if (0 === $this->current_resumption) {
537
+ $memlim = $this->memory_check_current();
538
+ if ($memlim<65) {
539
+ $this->log(sprintf(__('The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)', 'updraftplus'), round($memlim, 1)), 'warning', 'lowram');
540
+ }
541
+ if ($max_execution_time>0 && $max_execution_time<20) {
542
+ $this->log(sprintf(__('The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommmended value is %s seconds or more)', 'updraftplus'), $max_execution_time, 90), 'warning', 'lowmaxexecutiontime');
543
+ }
544
  if (defined('W3TC') && W3TC == true && function_exists('w3_instance')) {
545
  $modules = w3_instance('W3_ModuleStatus');
546
  if ($modules->is_enabled('objectcache')) {
552
 
553
  $this->log($logline);
554
 
555
+ $hosting_bytes_free = $this->get_hosting_disk_quota_free();
556
+ if (is_array($hosting_bytes_free)) {
557
+ $perc = round(100*$hosting_bytes_free[1]/(max($hosting_bytes_free[2], 1)), 1);
558
+ $quota_free = ' / '.sprintf('Free disk space in account: %s (%s used)', round($hosting_bytes_free[3]/1048576, 1)." Mb", "$perc %");
559
+ if ($hosting_bytes_free[3] < 1048576*50) {
560
+ $quota_free_mb = round($hosting_bytes_free[3]/1048576, 1);
561
+ $this->log(sprintf(__('Your free space in your hosting account is very low - only %s Mb remain', 'updraftplus'), $quota_free_mb), 'warning', 'lowaccountspace'.$quota_free_mb);
562
+ }
563
+ } else {
564
+ $quota_free = '';
565
+ }
566
+
567
  $disk_free_space = @disk_free_space($updraft_dir);
568
  if ($disk_free_space === false) {
569
+ $this->log("Free space on disk containing Updraft's temporary directory: Unknown".$quota_free);
570
  } else {
571
+ $this->log("Free space on disk containing Updraft's temporary directory: ".round($disk_free_space/1048576,1)." Mb".$quota_free);
572
+ $disk_free_mb = round($disk_free_space/1048576, 1);
573
+ if ($disk_free_space < 50*1048576) $this->log(sprintf(__('Your free disk space is very low - only %s Mb remain', 'updraftplus'), round($disk_free_space/1048576, 1)), 'warning', 'lowdiskspace'.$disk_free_mb);
574
  }
575
+
576
  }
577
 
578
  /* Logs the given line, adding (relative) time stamp and newline
581
  - Messages at level 'error' do not persist through the job (they are only saved with save_backup_history(), and never restored from there - so only the final save_backup_history() errors persist); we presume that either a) they will be cleared on the next attempt, or b) they will occur again on the final attempt (at which point they will go to the user). But...
582
  - ... messages at level 'warning' persist. These are conditions that are unlikely to be cleared, not-fatal, but the user should be informed about. The $uniq_id field (which should not be numeric) can then be used for warnings that should only be logged once
583
  */
584
+
585
  public function log($line, $level = 'notice', $uniq_id = false) {
586
 
587
  if ('error' == $level || 'warning' == $level) {
588
  if ('error' == $level && $this->error_count() == 0) $this->log("An error condition has occurred for the first time during this job");
589
+ if ($uniq_id) {
590
+ $this->errors[$uniq_id] = array('level' => $level, 'message' => $line);
591
+ } else {
592
+ $this->errors[] = array('level' => $level, 'message' => $line);
593
+ }
594
  # Errors are logged separately
595
  if ('error' == $level) return;
596
  # It's a warning
606
 
607
  if ($this->logfile_handle) {
608
  # Record log file times relative to the backup start, if possible
609
+ $rtime = (!empty($this->job_time_ms)) ? microtime(true)-$this->job_time_ms : microtime(true)-$this->opened_log_time;
610
  fwrite($this->logfile_handle, sprintf("%08.03f", round($rtime, 3))." (".$this->current_resumption.") $line\n");
611
  }
612
 
615
  // Download messages are keyed on the job (since they could be running several), and type
616
  // The values of the POST array were checked before
617
  $findex = (!empty($_POST['findex'])) ? $_POST['findex'] : 0;
618
+
619
+ $this->jobdata_set('dlmessage_'.$_POST['timestamp'].'_'.$_POST['type'].'_'.$findex, $line);
620
+
621
  break;
622
  case 'restore':
623
  #if ('debug' != $level) echo $line."\n";
624
  break;
625
  default:
626
+ if ('debug' != $level) UpdraftPlus_Options::update_updraft_option('updraft_lastmessage', $line." (".date_i18n('M d H:i:s').")", false);
627
  break;
628
  }
629
 
631
  if (defined('UPDRAFTPLUS_BROWSERLOG')) print htmlentities($line)."\n";
632
  }
633
 
634
+ public function log_removewarning($uniq_id) {
635
+ $warnings = $this->jobdata_get('warnings');
636
+ if (!is_array($warnings)) $warnings=array();
637
+ unset($warnings[$uniq_id]);
638
+ $this->jobdata_set('warnings', $warnings);
639
+ unset($this->errors[$uniq_id]);
640
+ }
641
+
642
  # Q. Why is this abstracted into a separate function? A. To allow poedit and other parsers to pick up the need to translate strings passed to it (and not pick up all of those passed to log()).
643
  # 1st argument = the line to be logged (obligatory)
644
  # Further arguments = parameters for sprintf()
659
  // Touch the original file, which helps prevent overlapping runs
660
  if ($file_path) touch($file_path);
661
 
662
+ // What this means in effect is that at least one of the files touched during the run must reach this percentage (so lapping round from 100 is OK)
663
+ if ($percent > 0.7 * ($this->current_resumption - 9)) $this->something_useful_happened();
664
+
665
  // Log it
666
  global $updraftplus_backup;
667
  $log = ucfirst($updraftplus_backup->current_service)." chunked upload: $percent % uploaded";
672
  // i.e. Max 100/.7 + 9 = 150 runs = 760 minutes = 12 hrs 40, if spaced at 5 minute intervals. However, our algorithm now decreases the intervals if it can, so this should not really come into play
673
  // If they get 2 minutes on each run, and the file is 1Gb, then that equals 10.2Mb/120s = minimum 59Kb/s upload speed required
674
 
 
 
 
 
 
675
  $upload_status = $this->jobdata_get('uploading_substatus');
676
  if (is_array($upload_status)) {
677
  $upload_status['p'] = $percent/100;
680
 
681
  }
682
 
683
+ function decrypt($fullpath, $key, $ciphertext = false) {
684
+ $this->ensure_phpseclib('Crypt_Rijndael', 'Crypt/Rijndael');
685
+ $rijndael = new Crypt_Rijndael();
686
+ $rijndael->setKey($key);
687
+ return (false == $ciphertext) ? $rijndael->decrypt(file_get_contents($fullpath)) : $rijndael->decrypt($ciphertext);
688
+ }
689
+
690
+ function encrypt($fullpath, $key) {
691
+ if (!function_exists('mcrypt_encrypt')) {
692
+ $this->log(sprintf(__('Your web-server does not have the %s module installed.', 'updraftplus'), 'mcrypt').' '.__('Without it, encryption will be a lot slower.', 'updraftplus'), 'warning', 'nomcrypt');
693
+ }
694
+ if ($this->have_addons < 10) {
695
+ $this->log(__("A future release of UpdraftPlus will move the encryption feature into an add-on (and add more features to it).", 'updraftplus').' '.sprintf(__('See: %s', 'updraftplus'), 'http://updraftplus.com/next-updraftplus-release-ready-testing/'), 'warning', 'needpremiumforcrypt');
696
+ }
697
+ $this->ensure_phpseclib('Crypt_Rijndael', 'Crypt/Rijndael');
698
+ $rijndael = new Crypt_Rijndael();
699
+ $rijndael->setKey($key);
700
+ return $rijndael->encrypt(file_get_contents($fullpath));
701
+ }
702
+
703
  function detect_safe_mode() {
704
  return (@ini_get('safe_mode') && strtolower(@ini_get('safe_mode')) != "off") ? 1 : 0;
705
  }
706
 
707
+ function find_working_sqldump($logit = true, $cacheit = true) {
708
+
709
+ // The hosting provider may have explicitly disabled the popen or proc_open functions
710
+ if ($this->detect_safe_mode() || !function_exists('popen')) {
711
+ if ($cacheit) $this->jobdata_set('binsqldump', false);
712
+ return false;
713
+ }
714
+ $existing = $this->jobdata_get('binsqldump', null);
715
+ # Theoretically, we could have moved machines, due to a migration
716
+ if (null !== $existing && (!is_string($existing) || @is_executable($existing))) return $existing;
717
+
718
+ $updraft_dir = $this->backups_dir_location();
719
+ global $wpdb;
720
+ $table_name = $wpdb->get_blog_prefix().'options';
721
+ $tmp_file = md5(time().rand()).".sqltest.tmp";
722
+ $pfile = md5(time().rand()).'.tmp';
723
+ file_put_contents($updraft_dir.'/'.$pfile, "[mysqldump]\npassword=".DB_PASSWORD."\n");
724
+
725
+ foreach (explode(',', UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE) as $potsql) {
726
+ if (!@is_executable($potsql)) continue;
727
+ if ($logit) $this->log("Testing: $potsql");
728
+
729
+ $exec = "cd ".escapeshellarg($updraft_dir)."; $potsql --defaults-file=$pfile --max_allowed_packet=1M --quote-names --add-drop-table --skip-comments --skip-set-charset --allow-keywords --dump-date --extended-insert --where=option_name=\\'siteurl\\' --user=".escapeshellarg(DB_USER)." --host=".escapeshellarg(DB_HOST)." ".DB_NAME." ".escapeshellarg($table_name)." >$tmp_file";
730
+
731
+ $result = false;
732
+ $handle = popen($exec, "r");
733
+ if ($handle) {
734
+ while (!feof($handle)) {
735
+ $w = fgets($handle);
736
+ if ($w && $logit) $this->log("Output: ".trim($w));
737
+ }
738
+ $ret = pclose($handle);
739
+ if ($ret !=0) {
740
+ if ($logit) $this->log("Binary mysqldump: error (code: $ret)");
741
+ } else {
742
+ $dumped = file_get_contents($updraft_dir.'/'.$tmp_file, false, null, 0, 4096);
743
+ if (stripos($dumped, 'insert into') !== false) {
744
+ if ($logit) $this->log("Working binary mysqldump found: $potsql");
745
+ $result = $potsql;
746
+ break;
747
+ }
748
+ }
749
+ } else {
750
+ if ($logit) $this->log("Error: popen failed");
751
+ }
752
+ }
753
+
754
+ @unlink($updraft_dir.'/'.$pfile);
755
+ @unlink($updraft_dir.'/'.$tmp_file);
756
+
757
+ if ($cacheit) $this->jobdata_set('binsqldump', $result);
758
+
759
+ return $result;
760
+ }
761
+
762
  # We require -@ and -u -r to work - which is the usual Linux binzip
763
+ function find_working_bin_zip($logit = true, $cacheit = true) {
764
  if ($this->detect_safe_mode()) return false;
765
  // The hosting provider may have explicitly disabled the popen or proc_open functions
766
+ if (!function_exists('popen') || !function_exists('proc_open')) {
767
+ if ($cacheit) $this->jobdata_set('binzip', false);
768
+ return false;
769
+ }
770
+
771
+ $existing = $this->jobdata_get('binzip', null);
772
+ # Theoretically, we could have moved machines, due to a migration
773
+ if (null !== $existing && (!is_string($existing) || @is_executable($existing))) return $existing;
774
+
775
  $updraft_dir = $this->backups_dir_location();
776
  foreach (explode(',', UPDRAFTPLUS_ZIP_EXECUTABLE) as $potzip) {
777
+ if (!@is_executable($potzip)) continue;
778
  if ($logit) $this->log("Testing: $potzip");
 
 
 
 
 
 
 
 
 
779
 
780
+ # Test it, see if it is compatible with Info-ZIP
781
+ # If you have another kind of zip, then feel free to tell me about it
782
+ @mkdir($updraft_dir.'/binziptest/subdir1/subdir2', 0777, true);
783
+ file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test.html', '<html></body><a href="http://updraftplus.com">UpdraftPlus is a great backup and restoration plugin for WordPress.</body></html>');
784
+ @unlink($updraft_dir.'/binziptest/test.zip');
785
+ if (is_file($updraft_dir.'/binziptest/subdir1/subdir2/test.html')) {
786
+
787
+ $exec = "cd ".escapeshellarg($updraft_dir)."; $potzip -v -u -r binziptest/test.zip binziptest/subdir1";
788
+
789
+ $all_ok=true;
790
+ $handle = popen($exec, "r");
791
+ if ($handle) {
792
+ while (!feof($handle)) {
793
+ $w = fgets($handle);
794
+ if ($w && $logit) $this->log("Output: ".trim($w));
795
+ }
796
+ $ret = pclose($handle);
797
+ if ($ret !=0) {
798
+ if ($logit) $this->log("Binary zip: error (code: $ret)");
799
  $all_ok = false;
800
  }
801
+ } else {
802
+ if ($logit) $this->log("Error: popen failed");
803
+ $all_ok = false;
804
+ }
805
 
806
+ # Now test -@
807
+ if (true == $all_ok) {
808
+ file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test2.html', '<html></body><a href="http://updraftplus.com">UpdraftPlus is a really great backup and restoration plugin for WordPress.</body></html>');
809
+
810
+ $exec = $potzip." -v -@ binziptest/test.zip";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
811
 
812
+ $all_ok=true;
 
 
 
 
813
 
814
+ $descriptorspec = array(
815
+ 0 => array('pipe', 'r'),
816
+ 1 => array('pipe', 'w'),
817
+ 2 => array('pipe', 'w')
818
+ );
819
+ $handle = proc_open($exec, $descriptorspec, $pipes, $updraft_dir);
820
+ if (is_resource($handle)) {
821
+ if (!fwrite($pipes[0], "binziptest/subdir1/subdir2/test2.html\n")) {
822
+ @fclose($pipes[0]);
823
+ @fclose($pipes[1]);
824
+ @fclose($pipes[2]);
825
+ $all_ok = false;
826
+ } else {
827
+ fclose($pipes[0]);
828
+ while (!feof($pipes[1])) {
829
+ $w = fgets($pipes[1]);
830
+ if ($w && $logit) $this->log("Output: ".trim($w));
831
+ }
832
+ fclose($pipes[1]);
833
+
834
+ while (!feof($pipes[2])) {
835
+ $last_error = fgets($pipes[2]);
836
+ if (!empty($last_error) && $logit) $this->log("Stderr output: ".trim($w));
837
+ }
838
+ fclose($pipes[2]);
839
+
840
+ $ret = proc_close($handle);
841
+ if ($ret !=0) {
842
+ if ($logit) $this->log("Binary zip: error (code: $ret)");
843
+ $all_ok = false;
844
  }
845
 
 
 
 
846
  }
847
 
848
+ } else {
849
+ if ($logit) $this->log("Error: proc_open failed");
850
+ $all_ok = false;
851
  }
852
 
853
+ }
854
+
855
+ // Do we now actually have a working zip? Need to test the created object using PclZip
856
+ // If it passes, then remove dirs and then return $potzip;
857
+ $found_first = false;
858
+ $found_second = false;
859
+ if ($all_ok && file_exists($updraft_dir.'/binziptest/test.zip')) {
860
+ if(!class_exists('PclZip')) require_once(ABSPATH.'/wp-admin/includes/class-pclzip.php');
861
+ $zip = new PclZip($updraft_dir.'/binziptest/test.zip');
862
+ $foundit = 0;
863
+ if (($list = $zip->listContent()) != 0) {
864
+ foreach ($list as $obj) {
865
+ if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test.html' == $obj['stored_filename'] && $obj['size']==127) $found_first=true;
866
+ if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test2.html' == $obj['stored_filename'] && $obj['size']==134) $found_second=true;
867
  }
868
  }
 
 
 
 
 
 
869
  }
870
  $this->remove_binzip_test_files($updraft_dir);
871
+ if ($found_first && $found_second) {
872
+ if ($logit) $this->log("Working binary zip found: $potzip");
873
+ if ($cacheit) $this->jobdata_set('binzip', $potzip);
874
+ return $potzip;
875
+ }
876
+
877
  }
878
+ $this->remove_binzip_test_files($updraft_dir);
879
  }
880
+ if ($cacheit) $this->jobdata_set('binzip', false);
881
  return false;
882
  }
883
 
903
  $resume_interval = $this->jobdata_get('resume_interval');
904
  if ($time_this_run + 30 > $resume_interval) {
905
  $new_interval = ceil($time_this_run + 30);
906
+ set_site_transient('updraft_initial_resume_interval', (int)$new_interval, 8*86400);
907
  $this->log("The time we have been running (".round($time_this_run,1).") is approaching the resumption interval ($resume_interval) - increasing resumption interval to $new_interval");
908
  $this->jobdata_set('resume_interval', $new_interval);
909
  }
1000
  if ($resumption_no > 0) {
1001
  $this->nonce = $bnonce;
1002
  $this->backup_time = $this->jobdata_get('backup_time');
1003
+ # TODO: Remove legacy use of backup_time_ms after 1 Jan 2014
1004
+ $bts = $this->jobdata_get('backup_time_ms');
1005
+ if (!empty($bts)) {
1006
+ $this->job_time_ms = $this->jobdata_get('backup_time_ms');
1007
+ } else {
1008
+ $this->job_time_ms = $this->jobdata_get('job_time_ms');
1009
+ }
1010
+ # Get the warnings before opening the log file, as opening the log file may generate new ones (which then leads to $this->errors having duplicate entries when they are copied over below)
1011
+ $warnings = $this->jobdata_get('warnings');
1012
  $this->logfile_open($bnonce);
1013
+ // Import existing warnings. The purpose of this is so that when save_backup_history() is called, it has a complete set - because job data expires quickly, whilst the warnings of the last backup run need to persist
1014
+ if (is_array($warnings)) {
1015
+ foreach ($warnings as $warning) {
1016
+ $this->errors[] = array('level' => 'warning', 'message' => $warning);
1017
+ }
1018
+ }
1019
 
1020
  $runs_started = $this->jobdata_get('runs_started');
1021
  if (!is_array($runs_started)) $runs_started=array();
1039
  $runs_started[$resumption_no] = $time_now;
1040
  if (!empty($this->backup_time)) $this->jobdata_set('runs_started', $runs_started);
1041
 
 
 
 
 
 
 
 
 
1042
  // Schedule again, to run in 5 minutes again, in case we again fail
1043
  // The actual interval can be increased (for future resumptions) by other code, if it detects apparent overlapping
1044
  $resume_interval = max(intval($this->jobdata_get('resume_interval')), 100);
1045
 
 
 
 
 
 
 
 
 
 
1046
  $btime = $this->backup_time;
1047
  $job_type = $this->jobdata_get('job_type');
1048
 
1059
  die;
1060
  }
1061
 
1062
+ if ($resumption_no > 0 && isset($runs_started[$prev_resumption])) {
1063
+ $our_expected_start = $runs_started[$prev_resumption] + $resume_interval;
1064
+ # More than 12 minutes late?
1065
+ if ($time_now > $our_expected_start + 720) {
1066
+ $this->log('Long time past since expected resumption time: approx expected= '.round($our_expected_start,1).", now=".round($time_now, 1).", diff=".round($time_now-$our_expected_start,1));
1067
+ $this->log(__('Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:', 'updraftplus').' http://updraftplus.com/faqs/why-am-i-getting-warnings-about-my-site-not-having-enough-visitors/', 'warning', 'infrequentvisits');
1068
+ }
1069
+ }
1070
+
1071
  // We just do this once, as we don't want to be in permanent conflict with the overlap detector
1072
  if ($resumption_no == 8) {
1073
  // $time_passed is set earlier
1100
  $schedule_resumption = true;
1101
  }
1102
  }
1103
+
1104
+ // Sanity check
1105
+ if (empty($this->backup_time)) {
1106
+ $this->log('Abort this run: the backup_time parameter appears to be empty (this is either a one-time error caused by upgrading from a version earlier than 1.7.18 whilst a backup was in progress (which you can ignore), or caused by resuming an already-complete backup.');
1107
+ return false;
1108
+ }
1109
+
1110
  if (isset($schedule_resumption)) {
1111
  $schedule_for = time()+$resume_interval;
1112
  $this->log("Scheduling a resumption ($next_resumption) after $resume_interval seconds ($schedule_for) in case this run gets aborted");
1114
  $this->newresumption_scheduled = $schedule_for;
1115
  }
1116
 
 
 
 
 
 
 
 
1117
  global $updraftplus_backup;
1118
+ // Bring in all the backup routines
1119
  if (!is_a($updraftplus_backup, 'UpdraftPlus_Backup')) require_once(UPDRAFTPLUS_DIR.'/backup.php');
1120
 
1121
+ $backup_files = $this->jobdata_get('backup_files');
1122
+ if ('no' == $backup_files) {
1123
 
1124
+ $this->log("This backup run is not intended for files - skipping");
1125
+ $our_files = array();
1126
+
1127
+ } else {
1128
+
1129
+ // This should be always called; if there were no files in this run, it returns us an empty array
1130
+ $backup_array = $updraftplus_backup->resumable_backup_of_files($resumption_no);
1131
 
1132
+ // This save, if there was something, is then immediately picked up again
1133
+ if (is_array($backup_array)) {
1134
+ $this->log('Saving backup status to database (elements: '.count($backup_array).")");
1135
+ $this->save_backup_history($backup_array);
1136
+ }
1137
+
1138
+ // Switch of variable name is purely vestigial
1139
+ $our_files = $backup_array;
1140
+ if (!is_array($our_files)) $our_files = array();
1141
 
1142
+ $undone_files = array();
1143
+
1144
+ }
1145
 
1146
  $backup_database = $this->jobdata_get('backup_database');
1147
 
1148
  // The value of jobdata['backup_database'] is read and written below (instead of using the existing variable) so that we can copy-and-paste this part as needed.
1149
+ if ('begun' == $backup_database || 'finished' == $backup_database || 'encrypted' == $backup_database) {
1150
  if ($backup_database == "begun") {
1151
  if ($resumption_no > 0) {
1152
  $this->log("Resuming creation of database dump");
1160
  }
1161
 
1162
  $db_backup = $updraftplus_backup->backup_db($backup_database);
1163
+ if(is_array($our_files) && is_string($db_backup)) $our_files['db'] = $db_backup;
 
 
1164
 
1165
  if ($backup_database != 'encrypted') $this->jobdata_set('backup_database', 'finished');
1166
  } elseif ('no' == $backup_database) {
1188
 
1189
  $backupable_entities = $this->get_backupable_file_entities(true);
1190
 
1191
+ $checksums = array('sha1' => array());
1192
+
1193
  # Queue files for upload
1194
  foreach ($our_files as $key => $files) {
1195
  // Only continue if the stored info was about a dump
1196
  if (!isset($backupable_entities[$key]) && $key != 'db') continue;
1197
  if (is_string($files)) $files = array($files);
1198
  foreach ($files as $findex => $file) {
1199
+ $sha = $this->jobdata_get('sha1-'.$key.$findex);
1200
+ if ($sha) $checksums['sha1'][$key.$findex] = $sha;
1201
+ $sha = $this->jobdata_get('sha1-'.$key.$findex.'.crypt');
1202
+ if ($sha) $checksums['sha1'][$key.$findex.".crypt"] = $sha;
1203
  if ($this->is_uploaded($file)) {
1204
  $this->log("$file: $key: This file has already been successfully uploaded");
1205
  } elseif (is_file($updraft_dir.'/'.$file)) {
1211
  }
1212
  }
1213
  }
1214
+ $our_files['checksums'] = $checksums;
1215
 
1216
+ # Save again (now that we have checksums)
1217
+ $this->save_backup_history($our_files);
1218
+
1219
+ // We finished; so, low memory was not a problem
1220
+ $this->log_removewarning('lowram');
1221
 
1222
  if (count($undone_files) == 0) {
1223
  $this->log("Resume backup ($bnonce, $resumption_no): finish run");
1254
  }
1255
 
1256
  function backup_all() {
1257
+ $this->boot_backup(1, 1);
1258
  }
1259
 
1260
  function backup_files() {
1261
  # Note that the "false" for database gets over-ridden automatically if they turn out to have the same schedules
1262
+ $this->boot_backup(true, false);
1263
  }
1264
 
1265
  function backup_database() {
1266
  # Note that nothing will happen if the file backup had the same schedule
1267
+ $this->boot_backup(false, true);
1268
+ }
1269
+
1270
+ function backupnow_files() {
1271
+ $this->boot_backup(1, 0);
1272
+ }
1273
+
1274
+ function backupnow_database() {
1275
+ $this->boot_backup(0, 1);
1276
  }
1277
 
1278
  public function jobdata_getarray($non) {
1329
  }
1330
 
1331
  // This procedure initiates a backup run
1332
+ // $backup_files/$backup_database: true/false = yes/no (over-write allowed); 1/0 = yes/no (force)
1333
  public function boot_backup($backup_files, $backup_database, $restrict_files_to_override = false, $one_shot = false, $service = false) {
1334
 
1335
  @ignore_user_abort(true);
1355
  // Log some information that may be helpful
1356
  $this->log("Tasks: Backup files: $backup_files (schedule: ".UpdraftPlus_Options::get_updraft_option('updraft_interval', 'unset').") Backup DB: $backup_database (schedule: ".UpdraftPlus_Options::get_updraft_option('updraft_interval_database', 'unset').")");
1357
 
1358
+ if (false === $one_shot && is_bool($backup_database)) {
1359
  # If the files and database schedules are the same, and if this the file one, then we rope in database too.
1360
  # On the other hand, if the schedules were the same and this was the database run, then there is nothing to do.
1361
  if ('manual' != UpdraftPlus_Options::get_updraft_option('updraft_interval') && (UpdraftPlus_Options::get_updraft_option('updraft_interval') == UpdraftPlus_Options::get_updraft_option('updraft_interval_database') || UpdraftPlus_Options::get_updraft_option('updraft_interval_database', 'xyz') == 'xyz' )) {
1412
  $this->semaphore->lock_name = $semaphore;
1413
  $this->log('Requesting semaphore lock ('.$semaphore.')');
1414
  if (!$this->semaphore->lock()) {
1415
+ $this->log('Failed to gain semaphore lock ('.$semaphore.') - another backup of this type is apparently already active - aborting (if this is wrong - i.e. if the other backup crashed without removing the lock, then another can be started after 3 minutes)');
1416
  return;
1417
  }
1418
 
1419
  // Allow the resume interval to be more than 300 if last time we know we went beyond that - but never more than 600
1420
+ $resume_interval = (int)min(max(300, get_site_transient('updraft_initial_resume_interval')), 600);
1421
  # We delete it because we only want to know about behaviour found during the very last backup run (so, if you move servers then old data is not retained)
1422
+ delete_site_transient('updraft_initial_resume_interval');
1423
 
1424
  $job_file_entities = array();
1425
  if ($backup_files) {
1439
  'job_type', 'backup',
1440
  'jobstatus', 'begun',
1441
  'backup_time', $this->backup_time,
1442
+ 'job_time_ms', $this->job_time_ms,
1443
  'service', $service,
1444
  'split_every', max(intval(UpdraftPlus_Options::get_updraft_option('updraft_split_every', 800)), UPDRAFTPLUS_SPLIT_MIN),
1445
  'maxzipbatch', 26214400, #25Mb
1452
 
1453
  // Save what *should* be done, to make it resumable from this point on
1454
  array_push($initial_jobdata, 'backup_database', (($backup_database) ? 'begun' : 'no'));
1455
+ array_push($initial_jobdata, 'backup_files', (($backup_files) ? 'begun' : 'no'));
1456
 
1457
  // Use of jobdata_set_multi saves around 200ms
1458
  call_user_func_array(array($this, 'jobdata_set_multi'), $initial_jobdata);
1466
 
1467
  function backup_finish($cancel_event, $do_cleanup, $allow_email, $resumption_no) {
1468
 
1469
+ if (!empty($this->semaphore)) $this->semaphore->unlock();
1470
+
1471
  $delete_jobdata = false;
1472
 
1473
  // The valid use of $do_cleanup is to indicate if in fact anything exists to clean up (if no job really started, then there may be nothing)
1576
 
1577
  function save_last_backup($backup_array) {
1578
  $success = ($this->error_count() == 0) ? 1 : 0;
 
1579
  $last_backup = array('backup_time'=>$this->backup_time, 'backup_array'=>$backup_array, 'success'=>$success, 'errors'=>$this->errors, 'backup_nonce' => $this->nonce);
1580
+ UpdraftPlus_Options::update_updraft_option('updraft_last_backup', $last_backup, false);
 
1581
  }
1582
 
1583
  // This should be called whenever a file is successfully uploaded
1607
  if ($id) {
1608
  $ids = UpdraftPlus_Options::get_updraft_option('updraft_file_ids', array() );
1609
  $ids[$file] = $id;
1610
+ UpdraftPlus_Options::update_updraft_option('updraft_file_ids', $ids, false);
1611
  $this->log("Stored file<->id correlation in database ($file <-> $id)");
1612
  }
1613
 
1619
  }
1620
 
1621
  function is_uploaded($file, $service = '') {
1622
+ $hash = $service.(('' == $service) ? '' : '-').md5($file);
1623
  return ($this->jobdata_get("uploaded_$hash") === "yes") ? true : false;
1624
  }
1625
 
1797
  $backup_array['nonce'] = $this->nonce;
1798
  $backup_array['service'] = $this->jobdata_get('service');
1799
  $backup_history[$this->backup_time] = $backup_array;
1800
+ UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
1801
  } else {
1802
  $this->log('Could not save backup history because we have no backup array. Backup probably failed.');
1803
  $this->log(__('Could not save backup history because we have no backup array. Backup probably failed.','updraftplus'), 'error');
1974
  _e("Decryption failed. The database file is encrypted, but you have no encryption key entered.",'updraftplus');
1975
  $this->log('Decryption of database failed: the database file is encrypted, but you have no encryption key entered.', 'error');
1976
  } else {
1977
+ $ciphertext = $this->decrypt($fullpath, $encryption);
 
 
 
1978
  if ($ciphertext) {
1979
  header('Content-type: application/x-gzip');
1980
  header("Content-Disposition: attachment; filename=\"".substr($file,0,-6)."\";");
2019
  if ($memory_limit == false) $memory_limit = ini_get('memory_limit');
2020
  $memory_limit = rtrim($memory_limit);
2021
  $memory_unit = $memory_limit[strlen($memory_limit)-1];
2022
+ if ((int)$memory_unit == 0 && $memory_unit !== '0') {
2023
+ $memory_limit = substr($memory_limit,0,strlen($memory_limit)-1);
2024
+ } else {
2025
+ $memory_unit = '';
2026
+ }
2027
  switch($memory_unit) {
2028
+ case '':
2029
+ $memory_limit = floor($memory_limit/1048576);
2030
+ break;
2031
  case 'K':
2032
+ case 'k':
2033
  $memory_limit = floor($memory_limit/1024);
2034
  break;
2035
  case 'G':
2060
  $rad = rand(0,8);
2061
  switch ($rad) {
2062
  case 0:
2063
+ return $this->url_start($urls,'updraftplus.com').__("Want more features or paid, guaranteed support? Check out UpdraftPlus.Com", 'updraftplus').$this->url_end($urls,'updraftplus.com');
2064
  break;
2065
  case 1:
2066
  if (defined('WPLANG') && strlen(WPLANG)>0 && !is_file(UPDRAFTPLUS_DIR.'/languages/updraftplus-'.WPLANG.
2069
  return __('Like UpdraftPlus and can spare one minute?','updraftplus').$this->url_start($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform').' '.__('Please help UpdraftPlus by giving a positive review at wordpress.org','updraftplus').$this->url_end($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform');
2070
  break;
2071
  case 2:
2072
+ return $this->url_start($urls,'wordshell.net').__("Check out WordShell", 'updraftplus').$this->url_end($urls,'www.wordshell.net')." - ".__('manage WordPress from the command line - huge time-saver', 'updraftplus');
2073
  break;
2074
  case 3:
2075
  return __('Like UpdraftPlus and can spare one minute?','updraftplus').$this->url_start($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform').' '.__('Please help UpdraftPlus by giving a positive review at wordpress.org','updraftplus').$this->url_end($urls,'wordpress.org/support/view/plugin-reviews/updraftplus#postform');