UpdraftPlus WordPress Backup Plugin - Version 1.12.17

Version Description

  • 19/Jul/2016 =

  • FIX: Previous free release included empty translation files

  • TWEAK: Add 'snapshots' to the default list of directories to exclude from the uploads backup (is used by another backup plugin - avoid backups-of-backups)

  • TWEAK: Add et_bloom_stats to the list of tables likely to be large, and not needing search/replacing

Download this release

Release Info

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

Code changes from version 1.12.15 to 1.12.17

admin.php CHANGED
@@ -4537,18 +4537,20 @@ ENDHERE;
4537
  if (!empty($backup['meta_foreign'])) {
4538
  $entities .= '/plugins=0//themes=0//uploads=0//others=0/';
4539
  }
4540
- $first_printed = true;
4541
  foreach ($whatfiles as $findex => $bfile) {
4542
- $ide .= __('Press here to download', 'updraftplus').' '.strtolower($info['description']);
4543
  $pdescrip = ($findex > 0) ? $sdescrip.' ('.($findex+1).')' : $sdescrip;
4544
- if (!$first_printed) {
 
 
4545
  $ret .= '<div class="updraft-hidden" style="display:none;">';
4546
  }
4547
  if (count($backup[$type]) >0) {
4548
- $ide .= ' '.sprintf(__('(%d archive(s) in set).', 'updraftplus'), $howmanyinset);
4549
  }
4550
  if ($index_missing) {
4551
- $ide .= ' '.__('You appear to be missing one or more archives from this multi-archive set.', 'updraftplus');
4552
  }
4553
 
4554
  if (!$first_entity) {
@@ -4559,10 +4561,10 @@ ENDHERE;
4559
 
4560
  $ret .= $this->download_button($type, $key, $findex, $info, $ide, $pdescrip, $esc_pretty_date, $set_contents);
4561
 
4562
- if (!$first_printed) {
4563
  $ret .= '</div>';
4564
  } else {
4565
- $first_printed = false;
4566
  }
4567
  }
4568
  } else {
@@ -4587,30 +4589,16 @@ ENDHERE;
4587
  return $ret;
4588
  }
4589
 
4590
- private function download_button($type, $backup_timestamp, $findex, $info, $ide, $pdescrip, $esc_pretty_date, $set_contents) {
4591
 
4592
  $ret = '';
4593
 
4594
  $wp_nonce = wp_create_nonce('updraftplus_download');
4595
 
4596
  // updraft_downloader(base, backup_timestamp, what, whicharea, set_contents, prettydate, async)
4597
- $ret .= '<button data-wp_nonce="'.esc_attr($wp_nonce).'" data-backup_timestamp="'.esc_attr($backup_timestamp).'" data-what="'.esc_attr($type).'" data-set_contents="'.esc_attr($set_contents).'" data-prettydate="'.esc_attr($esc_pretty_date).'" type="button" class="updraft_download_button '."uddownloadform_${type}_${backup_timestamp}_${findex}".'" title="'.$ide.'">'.$pdescrip.'</button>';
4598
  // onclick="'."return updraft_downloader('uddlstatus_', '$backup_timestamp', '$type', '.ud_downloadstatus', '$set_contents', '$esc_pretty_date', true)".'"
4599
 
4600
-
4601
- // Pre 1.11.24
4602
- // $nonce_field = wp_nonce_field('updraftplus_download', '_wpnonce', true, false);
4603
- // $ret .= <<<ENDHERE
4604
- // <form class="uddownloadform_${type}_${backup_timestamp}_${findex}" action="admin-ajax.php" onsubmit="return updraft_downloader('uddlstatus_', '$backup_timestamp', '$type', '.ud_downloadstatus', '$set_contents', '$esc_pretty_date', true)" method="post">
4605
- // $nonce_field
4606
- // <input type="hidden" name="action" value="updraft_download_backup" />
4607
- // <input type="hidden" name="type" value="$type" />
4608
- // <input type="hidden" name="timestamp" value="$backup_timestamp" />
4609
- // <input type="hidden" name="findex" value="$findex" />
4610
- // <input type="submit" class="updraft-backupentitybutton" title="$ide" value="$pdescrip" />
4611
- // </form>
4612
- // </div>
4613
- // ENDHERE;
4614
  return $ret;
4615
  }
4616
 
4537
  if (!empty($backup['meta_foreign'])) {
4538
  $entities .= '/plugins=0//themes=0//uploads=0//others=0/';
4539
  }
4540
+ $printing_first = true;
4541
  foreach ($whatfiles as $findex => $bfile) {
4542
+
4543
  $pdescrip = ($findex > 0) ? $sdescrip.' ('.($findex+1).')' : $sdescrip;
4544
+ if ($printing_first) {
4545
+ $ide .= __('Press here to download', 'updraftplus').' '.strtolower($info['description']);
4546
+ } else {
4547
  $ret .= '<div class="updraft-hidden" style="display:none;">';
4548
  }
4549
  if (count($backup[$type]) >0) {
4550
+ if ($printing_first) $ide .= ' '.sprintf(__('(%d archive(s) in set).', 'updraftplus'), $howmanyinset);
4551
  }
4552
  if ($index_missing) {
4553
+ if ($printing_first) $ide .= ' '.__('You appear to be missing one or more archives from this multi-archive set.', 'updraftplus');
4554
  }
4555
 
4556
  if (!$first_entity) {
4561
 
4562
  $ret .= $this->download_button($type, $key, $findex, $info, $ide, $pdescrip, $esc_pretty_date, $set_contents);
4563
 
4564
+ if (!$printing_first) {
4565
  $ret .= '</div>';
4566
  } else {
4567
+ $printing_first = false;
4568
  }
4569
  }
4570
  } else {
4589
  return $ret;
4590
  }
4591
 
4592
+ private function download_button($type, $backup_timestamp, $findex, $info, $title, $pdescrip, $esc_pretty_date, $set_contents) {
4593
 
4594
  $ret = '';
4595
 
4596
  $wp_nonce = wp_create_nonce('updraftplus_download');
4597
 
4598
  // updraft_downloader(base, backup_timestamp, what, whicharea, set_contents, prettydate, async)
4599
+ $ret .= '<button data-wp_nonce="'.esc_attr($wp_nonce).'" data-backup_timestamp="'.esc_attr($backup_timestamp).'" data-what="'.esc_attr($type).'" data-set_contents="'.esc_attr($set_contents).'" data-prettydate="'.esc_attr($esc_pretty_date).'" type="button" class="updraft_download_button '."uddownloadform_${type}_${backup_timestamp}_${findex}".'" title="'.$title.'">'.$pdescrip.'</button>';
4600
  // onclick="'."return updraft_downloader('uddlstatus_', '$backup_timestamp', '$type', '.ud_downloadstatus', '$set_contents', '$esc_pretty_date', true)".'"
4601
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4602
  return $ret;
4603
  }
4604
 
central/classes/class-automatic-upgrader-skin.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- // Extracted from 4.5.2/wordpress/wp-admin/includes/class-wp-upgrader-skins.php
4
  // Needed only on WP < 3.7
5
 
6
  /**
@@ -98,4 +98,15 @@ class Automatic_Upgrader_Skin extends WP_Upgrader_Skin {
98
  if ( ! empty( $output ) )
99
  $this->feedback( $output );
100
  }
 
 
 
 
 
 
 
 
 
 
 
101
  }
1
  <?php
2
 
3
+ // Extracted from 4.5.2/wordpress/wp-admin/includes/class-wp-upgrader-skins.php; with the bulk_*() methods added since they are not in the base class on all WP versions.
4
  // Needed only on WP < 3.7
5
 
6
  /**
98
  if ( ! empty( $output ) )
99
  $this->feedback( $output );
100
  }
101
+
102
+ /**
103
+ * @access public
104
+ */
105
+ public function bulk_header() {}
106
+
107
+ /**
108
+ * @access public
109
+ */
110
+ public function bulk_footer() {}
111
+
112
  }
central/updates-commands.php CHANGED
@@ -424,17 +424,17 @@ class UpdraftCentral_Updates_Commands extends UpdraftCentral_Commands {
424
  if (is_array($get_theme_updates)) {
425
  foreach ($get_theme_updates as $update) {
426
  $theme_updates[] = array(
427
- 'name' => $update->get('Name'),
428
- 'theme_uri' => $update->get('ThemeURI'),
429
- 'version' => $update->get('Version'),
430
- 'description' => $update->get('Description'),
431
- 'author' => $update->get('Author'),
432
- 'author_uri' => $update->get('AuthorURI'),
433
- 'update' => array(
434
- 'theme' => $update->update['theme'],
435
- 'new_version' => $update->update['new_version'],
436
- 'package' => $update->update['package'],
437
- 'url' => $update->update['url'],
438
  ),
439
  );
440
  }
424
  if (is_array($get_theme_updates)) {
425
  foreach ($get_theme_updates as $update) {
426
  $theme_updates[] = array(
427
+ 'name' => @$update->Name,
428
+ 'theme_uri' => @$update->ThemeURI,
429
+ 'version' => @$update->Version,
430
+ 'description' => @$update->Description,
431
+ 'author' => @$update->Author,
432
+ 'author_uri' => @$update->AuthorURI,
433
+ 'update' => array(
434
+ 'theme' => @$update->update['theme'],
435
+ 'new_version' => @$update->update['new_version'],
436
+ 'package' => @$update->update['package'],
437
+ 'url' => @$update->update['url'],
438
  ),
439
  );
440
  }
class-updraftplus.php CHANGED
@@ -3393,9 +3393,46 @@ class UpdraftPlus {
3393
  return ($input > 0) ? min($input, 9999) : 1;
3394
  }
3395
 
3396
- public function replace_http_with_webdav($input) {
3397
- if (!empty($input['url']) && 'http' == strtolower(substr($input['url'], 0, 4))) $input['url'] = 'webdav'.substr($input['url'], 4);
3398
- return $input;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3399
  }
3400
 
3401
  public function just_one_email($input, $required = false) {
@@ -3416,6 +3453,15 @@ class UpdraftPlus {
3416
  return apply_filters('updraftplus_'.$filter, $rinput, $oinput);
3417
  }
3418
 
 
 
 
 
 
 
 
 
 
3419
  public function memory_check_current($memory_limit = false) {
3420
  # Returns in megabytes
3421
  if ($memory_limit == false) $memory_limit = ini_get('memory_limit');
3393
  return ($input > 0) ? min($input, 9999) : 1;
3394
  }
3395
 
3396
+ // This is used as a WordPress options filter
3397
+ public function construct_webdav_url($input) {
3398
+
3399
+ $url = null;
3400
+ $slash = "/";
3401
+ $host = "";
3402
+ $colon = "";
3403
+ $port_colon = "";
3404
+
3405
+ if ((80 == $input['port'] && 'webdav' == $input['webdav']) || (443 == $input['port'] && 'webdavs' == $input['webdav'])) {
3406
+ $input['port'] = '';
3407
+ }
3408
+
3409
+ if ('/' == substr($input['path'], 0, 1)){
3410
+ $slash = "";
3411
+ }
3412
+
3413
+ if (false === strpos($input['host'],"@")){
3414
+ $host = "@";
3415
+ }
3416
+
3417
+ if ('' != $input['user'] && '' != $input['pass']){
3418
+ $colon = ":";
3419
+ }
3420
+
3421
+ if ('' != $input['host'] && '' != $input['port']){
3422
+ $port_colon = ":";
3423
+ }
3424
+
3425
+ if (!empty($input['url']) && 'http' == strtolower(substr($input['url'], 0, 4))) {
3426
+ $input['url'] = 'webdav'.substr($input['url'], 4);
3427
+ } elseif ('' != $input['user'] && '' != $input['pass']) {
3428
+ $input['url'] = $input['webdav'] . urlencode($input['user']) . $colon . urlencode($input['pass']) . $host . urlencode($input['host']) . $port_colon . $input['port'] . $slash . $input['path'];
3429
+ } else {
3430
+ $input['url'] = $input['webdav'] . urlencode($input['host']) . $port_colon . $input['port'] . $slash . $input['path'];
3431
+ }
3432
+
3433
+ // array_splice($input, 1);
3434
+
3435
+ return array('url' => $input['url']);
3436
  }
3437
 
3438
  public function just_one_email($input, $required = false) {
3453
  return apply_filters('updraftplus_'.$filter, $rinput, $oinput);
3454
  }
3455
 
3456
+ public function enqueue_select2() {
3457
+ // De-register to defeat any plugins that may have registered incompatible versions (e.g. WooCommerce 2.5 beta1 still has the Select 2 3.5 series)
3458
+ wp_deregister_script('select2');
3459
+ wp_deregister_style('select2');
3460
+ $select2_version = '4.0.3';
3461
+ wp_enqueue_script('select2', UPDRAFTPLUS_URL."/includes/select2/select2.min.js", array('jquery'), $select2_version);
3462
+ wp_enqueue_style('select2', UPDRAFTPLUS_URL."/includes/select2/select2.min.css", array(), $select2_version);
3463
+ }
3464
+
3465
  public function memory_check_current($memory_limit = false) {
3466
  # Returns in megabytes
3467
  if ($memory_limit == false) $memory_limit = ini_get('memory_limit');
includes/ftp.class.php CHANGED
@@ -82,7 +82,11 @@ class UpdraftPlus_ftp_wrapper {
82
  while ($ret == FTP_MOREDATA) {
83
  if (is_a($updraftplus, 'UpdraftPlus')) {
84
  $new_size = ftell($fh);
85
- if ($new_size - $existing_size > 524288) {
 
 
 
 
86
  $existing_size = $new_size;
87
  $percent = round(100*$new_size/$file_size,1);
88
  $updraftplus->record_uploaded_chunk($percent, '', $local_file_path);
@@ -224,4 +228,4 @@ class UpdraftPlus_ftp_wrapper {
224
  if ($this->conn_id) ftp_close($this->conn_id);
225
  }
226
  }
227
- ?>
82
  while ($ret == FTP_MOREDATA) {
83
  if (is_a($updraftplus, 'UpdraftPlus')) {
84
  $new_size = ftell($fh);
85
+ $record_after = 524288;
86
+ if ($existing_size > 2097152) {
87
+ $record_after = ($existing_size > 4194304) ? 2097152 : 1048576;
88
+ }
89
+ if ($new_size - $existing_size > $record_after) {
90
  $existing_size = $new_size;
91
  $percent = round(100*$new_size/$file_size,1);
92
  $updraftplus->record_uploaded_chunk($percent, '', $local_file_path);
228
  if ($this->conn_id) ftp_close($this->conn_id);
229
  }
230
  }
231
+ ?>
includes/updraft-admin-ui.js CHANGED
@@ -1108,6 +1108,47 @@ jQuery(document).ready(function($){
1108
  $('#updraftcentral_keycreate_altmethod_moreinfo').slideDown();
1109
  });
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  $('#updraft-navtab-backups-content').on('click', '.updraft_existing_backups .updraft_existing_backups_row', function(e) {
1112
  if (! e.ctrlKey && ! e.metaKey) return;
1113
  $(this).toggleClass('backuprowselected');
@@ -1135,31 +1176,31 @@ jQuery(document).ready(function($){
1135
  });
1136
  });
1137
 
1138
- jQuery('#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database').change(function() {
1139
  updraft_check_same_times();
1140
  });
1141
 
1142
- jQuery('#backupnow_includefiles_showmoreoptions').click(function(e) {
1143
  e.preventDefault();
1144
- jQuery('#backupnow_includefiles_moreoptions').toggle();
1145
  });
1146
 
1147
- jQuery('#updraft-navtab-backups-content a.updraft_diskspaceused_update').click(function(e) {
1148
  e.preventDefault();
1149
  updraftplus_diskspace();
1150
  });
1151
 
1152
- jQuery('#updraft-navtab-backups-content a.updraft_uploader_toggle').click(function(e) {
1153
  e.preventDefault();
1154
- jQuery('#updraft-plupload-modal').slideToggle();
1155
  });
1156
 
1157
- jQuery('#updraft-navtab-backups-content a.updraft_rescan_local').click(function(e) {
1158
  e.preventDefault();
1159
  updraft_updatehistory(1, 0);
1160
  });
1161
 
1162
- jQuery('#updraft-navtab-backups-content a.updraft_rescan_remote').click(function(e) {
1163
  e.preventDefault();
1164
  updraft_updatehistory(1, 1);
1165
  });
1108
  $('#updraftcentral_keycreate_altmethod_moreinfo').slideDown();
1109
  });
1110
 
1111
+ // Update WebDAV URL as user edits
1112
+ $(".updraft_webdav_settings").on("change keyup paste", function(){
1113
+
1114
+ var updraft_webdav_settings = [];
1115
+ $('.updraft_webdav_settings').each(function(index, item) {
1116
+
1117
+ var id = $(item).attr('id');
1118
+
1119
+ if (id && 'updraft_webdav_settings_' == id.substring(0, 24)) {
1120
+ var which_one = id.substring(24);
1121
+ updraft_webdav_settings[which_one] = this.value;
1122
+ }
1123
+ });
1124
+
1125
+ var updraft_webdav_url = "";
1126
+ var host = "@";
1127
+ var slash = "/";
1128
+ var colon = ":";
1129
+ var colon_port = ":";
1130
+
1131
+ if (updraft_webdav_settings['host'].indexOf("@") >= 0 || updraft_webdav_settings['host'] === "" ) {
1132
+ host = "";
1133
+ }
1134
+
1135
+ if (updraft_webdav_settings['path'].indexOf("/") == 0 || updraft_webdav_settings['path'] === "" ) {
1136
+ slash = "";
1137
+ }
1138
+
1139
+ if (updraft_webdav_settings['user'] === "" || updraft_webdav_settings['pass'] === "" ) {
1140
+ colon = "";
1141
+ }
1142
+
1143
+ if (updraft_webdav_settings['host'] === "" || updraft_webdav_settings['port'] === "") {
1144
+ colon_port = "";
1145
+ }
1146
+
1147
+ updraft_webdav_url = updraft_webdav_settings['webdav'] + updraft_webdav_settings['user'] + colon + updraft_webdav_settings['pass'] + host + updraft_webdav_settings['host'] + colon_port + updraft_webdav_settings['port'] + slash + updraft_webdav_settings['path'];
1148
+
1149
+ $('#updraft_webdav_settings_url').val(updraft_webdav_url);
1150
+ });
1151
+
1152
  $('#updraft-navtab-backups-content').on('click', '.updraft_existing_backups .updraft_existing_backups_row', function(e) {
1153
  if (! e.ctrlKey && ! e.metaKey) return;
1154
  $(this).toggleClass('backuprowselected');
1176
  });
1177
  });
1178
 
1179
+ $('#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database').change(function() {
1180
  updraft_check_same_times();
1181
  });
1182
 
1183
+ $('#backupnow_includefiles_showmoreoptions').click(function(e) {
1184
  e.preventDefault();
1185
+ $('#backupnow_includefiles_moreoptions').toggle();
1186
  });
1187
 
1188
+ $('#updraft-navtab-backups-content a.updraft_diskspaceused_update').click(function(e) {
1189
  e.preventDefault();
1190
  updraftplus_diskspace();
1191
  });
1192
 
1193
+ $('#updraft-navtab-backups-content a.updraft_uploader_toggle').click(function(e) {
1194
  e.preventDefault();
1195
+ $('#updraft-plupload-modal').slideToggle();
1196
  });
1197
 
1198
+ $('#updraft-navtab-backups-content a.updraft_rescan_local').click(function(e) {
1199
  e.preventDefault();
1200
  updraft_updatehistory(1, 0);
1201
  });
1202
 
1203
+ $('#updraft-navtab-backups-content a.updraft_rescan_remote').click(function(e) {
1204
  e.preventDefault();
1205
  updraft_updatehistory(1, 1);
1206
  });
languages/updraftplus-ar.mo CHANGED
Binary file
languages/updraftplus-ar.po CHANGED
@@ -0,0 +1,5934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Arabic
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-10-27 10:37:08+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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
+
13
+ #: methods/s3.php:87
14
+ msgid "No settings were found - please go to the Settings tab and check your settings"
15
+ msgstr ""
16
+
17
+ #: methods/s3.php:949
18
+ msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
19
+ msgstr ""
20
+
21
+ #: udaddons/updraftplus-addons.php:723
22
+ msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
23
+ msgstr ""
24
+
25
+ #: admin.php:597
26
+ msgid "UpdraftPlus Premium can automatically take a backup of your plugins or themes and database before you update. <a href=\"https://updraftplus.com/shop/autobackup/\" target=\"_blank\">Be safe every time, without needing to remember - follow this link to learn more</a>"
27
+ msgstr ""
28
+
29
+ #: admin.php:598
30
+ msgid "Just this add-on"
31
+ msgstr ""
32
+
33
+ #: admin.php:599
34
+ msgid "Full Premium plugin"
35
+ msgstr ""
36
+
37
+ #: admin.php:3793
38
+ msgid "Backup using %s?"
39
+ msgstr ""
40
+
41
+ #: addons/s3-enhanced.php:54
42
+ msgid "Standard (infrequent access)"
43
+ msgstr ""
44
+
45
+ #: addons/s3-enhanced.php:55
46
+ msgid "Reduced redundancy"
47
+ msgstr ""
48
+
49
+ #: addons/s3-enhanced.php:328
50
+ msgid "Asia Pacific (Mumbai)"
51
+ msgstr ""
52
+
53
+ #: admin.php:2174
54
+ msgid "FAQs"
55
+ msgstr ""
56
+
57
+ #: udaddons/plugin-updates/github-checker.php:120
58
+ msgid "There is no changelog available."
59
+ msgstr ""
60
+
61
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
62
+ msgid "Check for updates"
63
+ msgstr ""
64
+
65
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
66
+ msgid "This plugin is up to date."
67
+ msgstr ""
68
+
69
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
70
+ msgid "A new version of this plugin is available."
71
+ msgstr ""
72
+
73
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
74
+ msgid "Unknown update checker status \"%s\""
75
+ msgstr ""
76
+
77
+ #: backup.php:1986
78
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
79
+ msgstr ""
80
+
81
+ #: backup.php:2002
82
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
83
+ msgstr ""
84
+
85
+ #: central/bootstrap.php:414
86
+ msgid "Public key was sent to:"
87
+ msgstr ""
88
+
89
+ #: central/bootstrap.php:419
90
+ msgid "Key size: %d bits"
91
+ msgstr ""
92
+
93
+ #: central/bootstrap.php:434
94
+ msgid "Dashboard at"
95
+ msgstr ""
96
+
97
+ #: central/bootstrap.php:434
98
+ msgid "Use the alternative method for making a connection with the dashboard."
99
+ msgstr ""
100
+
101
+ #: central/bootstrap.php:434
102
+ msgid "More information..."
103
+ msgstr ""
104
+
105
+ #: central/bootstrap.php:434
106
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
107
+ msgstr ""
108
+
109
+ #: addons/migrator.php:2197
110
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
111
+ msgstr ""
112
+
113
+ #: addons/migrator.php:2198
114
+ msgid "Enter your chosen name"
115
+ msgstr ""
116
+
117
+ #: addons/migrator.php:2200 central/bootstrap.php:436
118
+ msgid "Encryption key size:"
119
+ msgstr ""
120
+
121
+ #: addons/migrator.php:2202 addons/migrator.php:2203 addons/migrator.php:2205
122
+ #: central/bootstrap.php:437 central/bootstrap.php:438
123
+ #: central/bootstrap.php:440
124
+ msgid "%s bits"
125
+ msgstr ""
126
+
127
+ #: addons/migrator.php:2202 central/bootstrap.php:437
128
+ msgid "easy to break, fastest"
129
+ msgstr ""
130
+
131
+ #: addons/migrator.php:2203 central/bootstrap.php:438
132
+ msgid "faster (possibility for slow PHP installs)"
133
+ msgstr ""
134
+
135
+ #: addons/migrator.php:2204 central/bootstrap.php:439
136
+ msgid "%s bytes"
137
+ msgstr ""
138
+
139
+ #: addons/migrator.php:2204 central/bootstrap.php:439
140
+ msgid "recommended"
141
+ msgstr ""
142
+
143
+ #: addons/migrator.php:2205 central/bootstrap.php:440
144
+ msgid "slower, strongest"
145
+ msgstr ""
146
+
147
+ #: addons/migrator.php:2208
148
+ msgid "Create key"
149
+ msgstr ""
150
+
151
+ #: central/bootstrap.php:434
152
+ msgid "i.e. you have an account there"
153
+ msgstr ""
154
+
155
+ #: central/bootstrap.php:434
156
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
157
+ msgstr ""
158
+
159
+ #: class-updraftplus.php:1253
160
+ msgid "Size: %s MB"
161
+ msgstr ""
162
+
163
+ #: methods/email.php:28
164
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
165
+ msgstr ""
166
+
167
+ #: methods/email.php:77
168
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
169
+ msgstr ""
170
+
171
+ #: methods/ftp.php:355
172
+ msgid "login"
173
+ msgstr ""
174
+
175
+ #: methods/ftp.php:383
176
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
177
+ msgstr ""
178
+
179
+ #: methods/googledrive.php:417
180
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
181
+ msgstr ""
182
+
183
+ #: admin.php:2465
184
+ msgid "Now"
185
+ msgstr ""
186
+
187
+ #: admin.php:2616
188
+ msgid "Free 1GB for UpdraftPlus Vault"
189
+ msgstr ""
190
+
191
+ #: admin.php:3973
192
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s 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)."
193
+ msgstr ""
194
+
195
+ #: class-updraftplus.php:3628 restorer.php:926
196
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
197
+ msgstr ""
198
+
199
+ #: admin.php:3782
200
+ msgid "(tap on an icon to select or unselect)"
201
+ msgstr ""
202
+
203
+ #: backup.php:834 class-updraftplus.php:2468
204
+ msgid "The backup was aborted by the user"
205
+ msgstr ""
206
+
207
+ #: central/bootstrap.php:45
208
+ msgid "UpdraftCentral Connection"
209
+ msgstr ""
210
+
211
+ #: central/bootstrap.php:48
212
+ msgid "An UpdraftCentral connection has been made successfully."
213
+ msgstr ""
214
+
215
+ #: central/bootstrap.php:50
216
+ msgid "A new UpdraftCentral connection has not been made."
217
+ msgstr ""
218
+
219
+ #: central/bootstrap.php:53
220
+ msgid "The key referred to was unknown."
221
+ msgstr ""
222
+
223
+ #: central/bootstrap.php:59
224
+ msgid "You are not logged into this WordPress site in your web browser."
225
+ msgstr ""
226
+
227
+ #: central/bootstrap.php:59
228
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
229
+ msgstr ""
230
+
231
+ #: central/bootstrap.php:66
232
+ msgid "You must visit this link in the same browser and login session as you created the key in."
233
+ msgstr ""
234
+
235
+ #: central/bootstrap.php:70
236
+ msgid "This connection appears to already have been made."
237
+ msgstr ""
238
+
239
+ #: central/bootstrap.php:78
240
+ msgid "Close..."
241
+ msgstr ""
242
+
243
+ #: central/bootstrap.php:191
244
+ msgid "An invalid URL was entered"
245
+ msgstr ""
246
+
247
+ #: central/bootstrap.php:308 central/bootstrap.php:319
248
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
249
+ msgstr ""
250
+
251
+ #: central/bootstrap.php:376
252
+ msgid "Key description"
253
+ msgstr ""
254
+
255
+ #: central/bootstrap.php:376
256
+ msgid "Details"
257
+ msgstr ""
258
+
259
+ #: central/bootstrap.php:382
260
+ msgid "No keys have yet been created."
261
+ msgstr ""
262
+
263
+ #: central/bootstrap.php:414
264
+ msgid "Access this site as user:"
265
+ msgstr ""
266
+
267
+ #: central/bootstrap.php:417
268
+ msgid "Created:"
269
+ msgstr ""
270
+
271
+ #: central/bootstrap.php:424
272
+ msgid "Delete..."
273
+ msgstr ""
274
+
275
+ #: central/bootstrap.php:430
276
+ msgid "Create new key"
277
+ msgstr ""
278
+
279
+ #: central/bootstrap.php:432
280
+ msgid "Description"
281
+ msgstr ""
282
+
283
+ #: central/bootstrap.php:432
284
+ msgid "Enter any description"
285
+ msgstr ""
286
+
287
+ #: central/bootstrap.php:434
288
+ msgid "URL of mothership"
289
+ msgstr ""
290
+
291
+ #: central/bootstrap.php:447
292
+ msgid "View recent UpdraftCentral log events"
293
+ msgstr ""
294
+
295
+ #: central/bootstrap.php:447
296
+ msgid "fetch..."
297
+ msgstr ""
298
+
299
+ #: central/bootstrap.php:458
300
+ msgid "UpdraftCentral (Remote Control)"
301
+ msgstr ""
302
+
303
+ #: class-updraftplus.php:361 class-updraftplus.php:406
304
+ msgid "The given file was not found, or could not be read."
305
+ msgstr ""
306
+
307
+ #: methods/updraftvault.php:219
308
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
309
+ msgstr ""
310
+
311
+ #: methods/updraftvault.php:274 methods/updraftvault.php:280
312
+ #: methods/updraftvault.php:286
313
+ msgid "or (annual discount)"
314
+ msgstr ""
315
+
316
+ #: methods/updraftvault.php:275 methods/updraftvault.php:281
317
+ #: methods/updraftvault.php:287
318
+ msgid "%s per year"
319
+ msgstr ""
320
+
321
+ #: addons/copycom.php:43 addons/copycom.php:81
322
+ msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
323
+ msgstr ""
324
+
325
+ #: addons/s3-enhanced.php:325
326
+ msgid "Asia Pacific (Seoul)"
327
+ msgstr ""
328
+
329
+ #: admin.php:477
330
+ msgid "Fetching..."
331
+ msgstr ""
332
+
333
+ #: admin.php:485
334
+ msgid "Error: the server sent us a response which we did not understand."
335
+ msgstr ""
336
+
337
+ #: admin.php:521
338
+ msgid "Saving..."
339
+ msgstr ""
340
+
341
+ #: admin.php:538
342
+ msgid "Please enter a valid URL"
343
+ msgstr ""
344
+
345
+ #: admin.php:539
346
+ msgid "We requested to delete the file, but could not understand the server's response"
347
+ msgstr ""
348
+
349
+ #: admin.php:545
350
+ msgid "You should save your changes to ensure that they are used for making your backup."
351
+ msgstr ""
352
+
353
+ #: admin.php:2611
354
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
355
+ msgstr ""
356
+
357
+ #: admin.php:2875
358
+ msgid "calculate"
359
+ msgstr ""
360
+
361
+ #: admin.php:2946
362
+ msgid "this backup set"
363
+ msgstr ""
364
+
365
+ #: admin.php:2949
366
+ msgid "these backup sets"
367
+ msgstr ""
368
+
369
+ #: admin.php:3115
370
+ msgid "reset"
371
+ msgstr ""
372
+
373
+ #: admin.php:3161 admin.php:3165
374
+ msgid "Wipe settings"
375
+ msgstr ""
376
+
377
+ #: admin.php:3232
378
+ msgid "The backup has finished running"
379
+ msgstr ""
380
+
381
+ #: admin.php:3394
382
+ msgid "stop"
383
+ msgstr ""
384
+
385
+ #: admin.php:4308
386
+ msgid "Total backup size:"
387
+ msgstr ""
388
+
389
+ #: admin.php:5226
390
+ msgid "Your settings have been saved."
391
+ msgstr ""
392
+
393
+ #: addons/onedrive.php:50
394
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
395
+ msgstr ""
396
+
397
+ #: backup.php:385
398
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
399
+ msgstr ""
400
+
401
+ #: restorer.php:1538
402
+ msgid "Uploads URL:"
403
+ msgstr ""
404
+
405
+ #: addons/multisite.php:374 addons/multisite.php:384
406
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
407
+ msgstr ""
408
+
409
+ #: addons/multisite.php:525
410
+ msgid "Which site to restore"
411
+ msgstr ""
412
+
413
+ #: addons/multisite.php:529
414
+ msgid "All sites"
415
+ msgstr ""
416
+
417
+ #: addons/multisite.php:534
418
+ msgid "may include some site-wide data"
419
+ msgstr ""
420
+
421
+ #: addons/multisite.php:543
422
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
423
+ msgstr ""
424
+
425
+ #: addons/multisite.php:543
426
+ msgid "Read more..."
427
+ msgstr ""
428
+
429
+ #: admin.php:556
430
+ msgid "Please fill in the required information."
431
+ msgstr ""
432
+
433
+ #: admin.php:2739
434
+ msgid "Dismiss"
435
+ msgstr ""
436
+
437
+ #: class-updraftplus.php:3675
438
+ msgid "It will be imported as a new site."
439
+ msgstr ""
440
+
441
+ #: class-updraftplus.php:3675
442
+ msgid "Please read this link for important information on this process."
443
+ msgstr ""
444
+
445
+ #: class-updraftplus.php:3679 restorer.php:1558
446
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
447
+ msgstr ""
448
+
449
+ #: restorer.php:1899
450
+ msgid "Skipping table %s: this table will not be restored"
451
+ msgstr ""
452
+
453
+ #: addons/migrator.php:350 addons/migrator.php:353 addons/migrator.php:356
454
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
455
+ msgstr ""
456
+
457
+ #: addons/migrator.php:350
458
+ msgid "WordPress core"
459
+ msgstr ""
460
+
461
+ #: addons/migrator.php:353
462
+ msgid "other content from wp-content"
463
+ msgstr ""
464
+
465
+ #: addons/migrator.php:362 addons/migrator.php:364
466
+ msgid "Importing a single site into a multisite install"
467
+ msgstr ""
468
+
469
+ #: addons/migrator.php:364
470
+ msgid "This feature is not compatible with %s"
471
+ msgstr ""
472
+
473
+ #: addons/migrator.php:384 addons/migrator.php:386
474
+ msgid "You must use lower-case letters or numbers for the site path, only."
475
+ msgstr ""
476
+
477
+ #: addons/migrator.php:394
478
+ msgid "Attribute imported content to user"
479
+ msgstr ""
480
+
481
+ #: addons/migrator.php:435
482
+ msgid "Required information for restoring this backup was not given (%s)"
483
+ msgstr ""
484
+
485
+ #: addons/migrator.php:492 addons/migrator.php:493
486
+ msgid "Error when creating new site at your chosen address:"
487
+ msgstr ""
488
+
489
+ #: addons/migrator.php:518
490
+ msgid "<strong>ERROR</strong>: problem creating site entry."
491
+ msgstr ""
492
+
493
+ #: admin.php:3113
494
+ msgid "Call WordPress action:"
495
+ msgstr ""
496
+
497
+ #: admin.php:2763
498
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
499
+ msgstr ""
500
+
501
+ #: admin.php:354 admin.php:2407
502
+ msgid "Advanced Tools"
503
+ msgstr ""
504
+
505
+ #: admin.php:362
506
+ msgid "Extensions"
507
+ msgstr ""
508
+
509
+ #: admin.php:471
510
+ msgid "You have chosen to backup files, but no file entities have been selected"
511
+ msgstr ""
512
+
513
+ #: admin.php:544
514
+ msgctxt "(verb)"
515
+ msgid "Download"
516
+ msgstr ""
517
+
518
+ #: admin.php:2204 admin.php:2213
519
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
520
+ msgstr ""
521
+
522
+ #: admin.php:2408
523
+ msgid "Premium / Extensions"
524
+ msgstr ""
525
+
526
+ #: admin.php:2533
527
+ msgid "Backup Contents And Schedule"
528
+ msgstr ""
529
+
530
+ #: admin.php:2730
531
+ msgid "%s minutes, %s seconds"
532
+ msgstr ""
533
+
534
+ #: admin.php:2732
535
+ msgid "Unfinished restoration"
536
+ msgstr ""
537
+
538
+ #: admin.php:2733
539
+ msgid "You have an unfinished restoration operation, begun %s ago."
540
+ msgstr ""
541
+
542
+ #: admin.php:2738
543
+ msgid "Continue restoration"
544
+ msgstr ""
545
+
546
+ #: admin.php:2759
547
+ msgid "Include the database in the backup"
548
+ msgstr ""
549
+
550
+ #: admin.php:2761
551
+ msgid "Include any files in the backup"
552
+ msgstr ""
553
+
554
+ #: admin.php:5125
555
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
556
+ msgstr ""
557
+
558
+ #: admin.php:5125
559
+ msgid "settings"
560
+ msgstr ""
561
+
562
+ #: admin.php:5125
563
+ msgid "Not got any remote storage?"
564
+ msgstr ""
565
+
566
+ #: admin.php:5125
567
+ msgid "Check out UpdraftPlus Vault."
568
+ msgstr ""
569
+
570
+ #: admin.php:5127
571
+ msgid "Send this backup to remote storage"
572
+ msgstr ""
573
+
574
+ #: admin.php:3162
575
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
576
+ msgstr ""
577
+
578
+ #: admin.php:3162
579
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
580
+ msgstr ""
581
+
582
+ #: admin.php:3694
583
+ msgid "Files backup schedule"
584
+ msgstr ""
585
+
586
+ #: admin.php:3727
587
+ msgid "Incremental file backup schedule"
588
+ msgstr ""
589
+
590
+ #: admin.php:3737
591
+ msgid "Database backup schedule"
592
+ msgstr ""
593
+
594
+ #: admin.php:3772
595
+ msgid "Sending Your Backup To Remote Storage"
596
+ msgstr ""
597
+
598
+ #: admin.php:3833
599
+ msgid "File Options"
600
+ msgstr ""
601
+
602
+ #: admin.php:4863
603
+ msgid "Skipping: this archive was already restored."
604
+ msgstr ""
605
+
606
+ #: addons/googlecloud.php:860
607
+ msgid "You must use a bucket name that is unique, for all %s users."
608
+ msgstr ""
609
+
610
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
611
+ msgid "This setting applies only when a new bucket is being created."
612
+ msgstr ""
613
+
614
+ #: addons/googlecloud.php:875
615
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
616
+ msgstr ""
617
+
618
+ #: addons/googlecloud.php:880
619
+ msgid "Bucket location"
620
+ msgstr ""
621
+
622
+ #: addons/googlecloud.php:45
623
+ msgid " Eastern United States"
624
+ msgstr ""
625
+
626
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
627
+ msgid "Eastern United States"
628
+ msgstr ""
629
+
630
+ #: addons/googlecloud.php:49
631
+ msgid "Western United States"
632
+ msgstr ""
633
+
634
+ #: addons/googlecloud.php:50
635
+ msgid "Eastern Asia-Pacific"
636
+ msgstr ""
637
+
638
+ #: addons/googlecloud.php:51
639
+ msgid "Western Europe"
640
+ msgstr ""
641
+
642
+ #: addons/googlecloud.php:268
643
+ msgid "You do not have access to this bucket"
644
+ msgstr ""
645
+
646
+ #: addons/googlecloud.php:816
647
+ msgid "Do not confuse %s with %s - they are separate things."
648
+ msgstr ""
649
+
650
+ #: addons/azure.php:516
651
+ msgid "If the %s does not already exist, then it will be created."
652
+ msgstr ""
653
+
654
+ #: addons/azure.php:516
655
+ msgid "See Microsoft's guidelines on container naming by following this link."
656
+ msgstr ""
657
+
658
+ #: addons/azure.php:521
659
+ msgid "Prefix"
660
+ msgstr ""
661
+
662
+ #: addons/azure.php:521
663
+ msgid "optional"
664
+ msgstr ""
665
+
666
+ #: addons/azure.php:522
667
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
668
+ msgstr ""
669
+
670
+ #: addons/azure.php:522
671
+ msgid "container"
672
+ msgstr ""
673
+
674
+ #: addons/googlecloud.php:35 addons/s3-enhanced.php:53
675
+ msgid "Standard"
676
+ msgstr ""
677
+
678
+ #: addons/googlecloud.php:36
679
+ msgid "Durable reduced availability"
680
+ msgstr ""
681
+
682
+ #: addons/googlecloud.php:37
683
+ msgid "Nearline"
684
+ msgstr ""
685
+
686
+ #: addons/googlecloud.php:41
687
+ msgid "United States"
688
+ msgstr ""
689
+
690
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
691
+ #: addons/googlecloud.php:43
692
+ msgid "multi-region location"
693
+ msgstr ""
694
+
695
+ #: addons/googlecloud.php:42
696
+ msgid "Asia Pacific"
697
+ msgstr ""
698
+
699
+ #: addons/googlecloud.php:43
700
+ msgid "European Union"
701
+ msgstr ""
702
+
703
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
704
+ msgid "Central United States"
705
+ msgstr ""
706
+
707
+ #: addons/azure.php:342
708
+ msgid "Could not access container"
709
+ msgstr ""
710
+
711
+ #: addons/azure.php:448
712
+ msgid "Could not create the container"
713
+ msgstr ""
714
+
715
+ #: addons/azure.php:500
716
+ msgid "Create Azure credentials in your Azure developer console."
717
+ msgstr ""
718
+
719
+ #: addons/azure.php:504 addons/azure.php:508
720
+ msgid "Azure"
721
+ msgstr ""
722
+
723
+ #: addons/azure.php:504
724
+ msgid "Account Name"
725
+ msgstr ""
726
+
727
+ #: addons/azure.php:505
728
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
729
+ msgstr ""
730
+
731
+ #: addons/azure.php:516
732
+ msgid "Enter the path of the %s you wish to use here."
733
+ msgstr ""
734
+
735
+ #: class-updraftplus.php:2485
736
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
737
+ msgstr ""
738
+
739
+ #: addons/googlecloud.php:854
740
+ msgid "Project ID"
741
+ msgstr ""
742
+
743
+ #: addons/googlecloud.php:743
744
+ msgid "You must enter a project ID in order to be able to create a new bucket."
745
+ msgstr ""
746
+
747
+ #: addons/googlecloud.php:828
748
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
749
+ msgstr ""
750
+
751
+ #: addons/googlecloud.php:855
752
+ msgid "Enter the ID of the %s project you wish to use here."
753
+ msgstr ""
754
+
755
+ #: addons/googlecloud.php:855
756
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
757
+ msgstr ""
758
+
759
+ #: addons/googlecloud.php:855
760
+ msgid "Otherwise, you can leave it blank."
761
+ msgstr ""
762
+
763
+ #: addons/googlecloud.php:859
764
+ msgid "Bucket"
765
+ msgstr ""
766
+
767
+ #: addons/googlecloud.php:860
768
+ msgid "Enter the name of the %s bucket you wish to use here."
769
+ msgstr ""
770
+
771
+ #: addons/googlecloud.php:860
772
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
773
+ msgstr ""
774
+
775
+ #: addons/googlecloud.php:860
776
+ msgid "See Google's guidelines on bucket naming by following this link."
777
+ msgstr ""
778
+
779
+ #: addons/googlecloud.php:865 addons/s3-enhanced.php:46
780
+ msgid "Storage class"
781
+ msgstr ""
782
+
783
+ #: admin.php:3088
784
+ msgid "Not installed"
785
+ msgstr ""
786
+
787
+ #: admin.php:3088
788
+ msgid "required for some remote storage providers"
789
+ msgstr ""
790
+
791
+ #: backup.php:1412
792
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
793
+ msgstr ""
794
+
795
+ #: backup.php:1516 backup.php:1518
796
+ msgid "The database backup appears to have failed"
797
+ msgstr ""
798
+
799
+ #: backup.php:1516
800
+ msgid "no options or sitemeta table was found"
801
+ msgstr ""
802
+
803
+ #: backup.php:1518
804
+ msgid "the options table was not found"
805
+ msgstr ""
806
+
807
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
808
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
809
+ #: addons/googlecloud.php:782
810
+ msgid "%s Service Exception."
811
+ msgstr ""
812
+
813
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
814
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
815
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
816
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
817
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
818
+ #: addons/googlecloud.php:860
819
+ msgid "Google Cloud"
820
+ msgstr ""
821
+
822
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
823
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
824
+ msgid "You do not have access to this bucket."
825
+ msgstr ""
826
+
827
+ #: addons/googlecloud.php:479
828
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
829
+ msgstr ""
830
+
831
+ #: addons/googlecloud.php:609
832
+ msgid "You must save and authenticate before you can test your settings."
833
+ msgstr ""
834
+
835
+ #: admin.php:548
836
+ msgid "day"
837
+ msgstr ""
838
+
839
+ #: admin.php:549
840
+ msgid "in the month"
841
+ msgstr ""
842
+
843
+ #: admin.php:550
844
+ msgid "day(s)"
845
+ msgstr ""
846
+
847
+ #: admin.php:551
848
+ msgid "hour(s)"
849
+ msgstr ""
850
+
851
+ #: admin.php:552
852
+ msgid "week(s)"
853
+ msgstr ""
854
+
855
+ #: admin.php:553
856
+ msgid "For backups older than"
857
+ msgstr ""
858
+
859
+ #: admin.php:555
860
+ msgid "Processing..."
861
+ msgstr ""
862
+
863
+ #: admin.php:1626
864
+ msgid "Backup sets removed: %d"
865
+ msgstr ""
866
+
867
+ #: admin.php:2881
868
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
869
+ msgstr ""
870
+
871
+ #: admin.php:2932
872
+ msgid "Actions upon selected backups"
873
+ msgstr ""
874
+
875
+ #: admin.php:2934
876
+ msgid "Select all"
877
+ msgstr ""
878
+
879
+ #: admin.php:2935
880
+ msgid "Deselect"
881
+ msgstr ""
882
+
883
+ #: admin.php:2946 admin.php:2949
884
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
885
+ msgstr ""
886
+
887
+ #: admin.php:3766
888
+ msgid "or to configure more complex schedules"
889
+ msgstr ""
890
+
891
+ #: restorer.php:707
892
+ msgid "Deferring..."
893
+ msgstr ""
894
+
895
+ #: updraftplus.php:147
896
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
897
+ msgstr ""
898
+
899
+ #: addons/morestorage.php:26
900
+ msgid "(as many as you like)"
901
+ msgstr ""
902
+
903
+ #: addons/fixtime.php:281 addons/fixtime.php:286
904
+ msgid "Add an additional retention rule..."
905
+ msgstr ""
906
+
907
+ #: methods/updraftvault.php:580
908
+ msgid "You do not currently have any UpdraftPlus Vault quota"
909
+ msgstr ""
910
+
911
+ #: restorer.php:1985
912
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
913
+ msgstr ""
914
+
915
+ #: restorer.php:1985
916
+ msgid "This database needs to be deployed on MySQL version %s or later."
917
+ msgstr ""
918
+
919
+ #: admin.php:2336
920
+ msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
921
+ msgstr ""
922
+
923
+ #: admin.php:2661
924
+ msgid "No advertising links on UpdraftPlus settings page"
925
+ msgstr ""
926
+
927
+ #: class-updraftplus.php:3712
928
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
929
+ msgstr ""
930
+
931
+ #: class-updraftplus.php:3712
932
+ msgid "You must upgrade MySQL to be able to use this database."
933
+ msgstr ""
934
+
935
+ #: methods/updraftvault.php:308
936
+ msgid "Don't know your email address, or forgotten your password?"
937
+ msgstr ""
938
+
939
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
940
+ msgid "Read the FAQs here."
941
+ msgstr ""
942
+
943
+ #: methods/updraftvault.php:301
944
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
945
+ msgstr ""
946
+
947
+ #: addons/s3-enhanced.php:60
948
+ msgid "Server-side encryption"
949
+ msgstr ""
950
+
951
+ #: addons/s3-enhanced.php:61
952
+ msgid "Check this box to use Amazon's server-side encryption"
953
+ msgstr ""
954
+
955
+ #: methods/updraftvault.php:589
956
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
957
+ msgstr ""
958
+
959
+ #: admin.php:816
960
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
961
+ msgstr ""
962
+
963
+ #: admin.php:816
964
+ msgid "Go to the remote storage settings in order to connect."
965
+ msgstr ""
966
+
967
+ #: methods/updraftvault.php:290
968
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
969
+ msgstr ""
970
+
971
+ #: admin.php:523
972
+ msgid "Connecting..."
973
+ msgstr ""
974
+
975
+ #: admin.php:525
976
+ msgid "Disconnecting..."
977
+ msgstr ""
978
+
979
+ #: admin.php:526
980
+ msgid "Counting..."
981
+ msgstr ""
982
+
983
+ #: admin.php:527
984
+ msgid "Update quota count"
985
+ msgstr ""
986
+
987
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
988
+ msgid "Updraft Vault"
989
+ msgstr ""
990
+
991
+ #: methods/updraftvault.php:209
992
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
993
+ msgstr ""
994
+
995
+ #: methods/updraftvault.php:212
996
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
997
+ msgstr ""
998
+
999
+ #: methods/updraftvault.php:215
1000
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
1001
+ msgstr ""
1002
+
1003
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1004
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1005
+ msgstr ""
1006
+
1007
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1008
+ msgid "Press a button to get started."
1009
+ msgstr ""
1010
+
1011
+ #: methods/updraftvault.php:255
1012
+ msgid "First time user?"
1013
+ msgstr ""
1014
+
1015
+ #: methods/updraftvault.php:256
1016
+ msgid "Show the options"
1017
+ msgstr ""
1018
+
1019
+ #: methods/updraftvault.php:259
1020
+ msgid "Already purchased space?"
1021
+ msgstr ""
1022
+
1023
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1024
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1025
+ msgstr ""
1026
+
1027
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1028
+ msgid "Read more about it here."
1029
+ msgstr ""
1030
+
1031
+ #: methods/updraftvault.php:273 methods/updraftvault.php:279
1032
+ #: methods/updraftvault.php:285
1033
+ msgid "%s per quarter"
1034
+ msgstr ""
1035
+
1036
+ #: methods/updraftvault.php:290
1037
+ msgid "Subscriptions can be cancelled at any time."
1038
+ msgstr ""
1039
+
1040
+ #: methods/updraftvault.php:296 methods/updraftvault.php:311
1041
+ msgid "Back..."
1042
+ msgstr ""
1043
+
1044
+ #: methods/updraftvault.php:303
1045
+ msgid "E-mail"
1046
+ msgstr ""
1047
+
1048
+ #: methods/updraftvault.php:308
1049
+ msgid "Go here for help"
1050
+ msgstr ""
1051
+
1052
+ #: methods/updraftvault.php:332
1053
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1054
+ msgstr ""
1055
+
1056
+ #: methods/updraftvault.php:336
1057
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1058
+ msgstr ""
1059
+
1060
+ #: methods/updraftvault.php:336
1061
+ msgid "Well done - there's nothing more needed to set up."
1062
+ msgstr ""
1063
+
1064
+ #: methods/updraftvault.php:336
1065
+ msgid "Vault owner"
1066
+ msgstr ""
1067
+
1068
+ #: methods/updraftvault.php:338
1069
+ msgid "Quota:"
1070
+ msgstr ""
1071
+
1072
+ #: admin.php:524 methods/updraftvault.php:346
1073
+ msgid "Disconnect"
1074
+ msgstr ""
1075
+
1076
+ #: methods/updraftvault.php:354
1077
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1078
+ msgstr ""
1079
+
1080
+ #: methods/updraftvault.php:354
1081
+ msgid "You can get more quota here"
1082
+ msgstr ""
1083
+
1084
+ #: methods/updraftvault.php:359 methods/updraftvault.php:375
1085
+ #: methods/updraftvault.php:414
1086
+ msgid "Current use:"
1087
+ msgstr ""
1088
+
1089
+ #: methods/updraftvault.php:362 methods/updraftvault.php:378
1090
+ #: methods/updraftvault.php:380 methods/updraftvault.php:433
1091
+ msgid "Get more quota"
1092
+ msgstr ""
1093
+
1094
+ #: methods/updraftvault.php:364 methods/updraftvault.php:433
1095
+ msgid "Refresh current status"
1096
+ msgstr ""
1097
+
1098
+ #: addons/s3-enhanced.php:343
1099
+ msgid "Allow download"
1100
+ msgstr ""
1101
+
1102
+ #: addons/s3-enhanced.php:345
1103
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1104
+ msgstr ""
1105
+
1106
+ #: addons/s3-enhanced.php:347
1107
+ msgid "Allow deletion"
1108
+ msgstr ""
1109
+
1110
+ #: addons/s3-enhanced.php:349
1111
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1112
+ msgstr ""
1113
+
1114
+ #: backup.php:2938
1115
+ msgid "The zip engine returned the message: %s."
1116
+ msgstr ""
1117
+
1118
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:977
1119
+ msgid "Delete failed:"
1120
+ msgstr ""
1121
+
1122
+ #: addons/migrator.php:1722 admin.php:533
1123
+ msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1124
+ msgstr ""
1125
+
1126
+ #: addons/migrator.php:1737
1127
+ msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1128
+ msgstr ""
1129
+
1130
+ #: admin.php:531
1131
+ msgid "Creating..."
1132
+ msgstr ""
1133
+
1134
+ #: admin.php:534
1135
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1136
+ msgstr ""
1137
+
1138
+ #: admin.php:536
1139
+ msgid "key name"
1140
+ msgstr ""
1141
+
1142
+ #: admin.php:537
1143
+ msgid "Deleting..."
1144
+ msgstr ""
1145
+
1146
+ #: addons/migrator.php:1750 admin.php:540
1147
+ msgid "Testing connection..."
1148
+ msgstr ""
1149
+
1150
+ #: admin.php:1268
1151
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1152
+ msgstr ""
1153
+
1154
+ #: admin.php:1268
1155
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1156
+ msgstr ""
1157
+
1158
+ #: admin.php:2989
1159
+ 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=\"https://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>."
1160
+ msgstr ""
1161
+
1162
+ #: admin.php:4395
1163
+ msgid "Backup sent to remote site - not available for download."
1164
+ msgstr ""
1165
+
1166
+ #: admin.php:4396
1167
+ msgid "Site"
1168
+ msgstr ""
1169
+
1170
+ #: admin.php:4623
1171
+ msgid "(backup set imported from remote location)"
1172
+ msgstr ""
1173
+
1174
+ #: methods/addon-base.php:177
1175
+ msgid "This storage method does not allow downloading"
1176
+ msgstr ""
1177
+
1178
+ #: addons/reporting.php:143
1179
+ msgid "Backup made by %s"
1180
+ msgstr ""
1181
+
1182
+ #: addons/migrator.php:185
1183
+ msgid "This site has no backups to restore from yet."
1184
+ msgstr ""
1185
+
1186
+ #: addons/migrator.php:192
1187
+ msgid "Restore an existing backup set onto this site"
1188
+ msgstr ""
1189
+
1190
+ #: addons/migrator.php:1674
1191
+ msgid "Backup data will be sent to:"
1192
+ msgstr ""
1193
+
1194
+ #: addons/migrator.php:1689
1195
+ msgid "site not found"
1196
+ msgstr ""
1197
+
1198
+ #: addons/migrator.php:1733
1199
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1200
+ msgstr ""
1201
+
1202
+ #: addons/migrator.php:1768
1203
+ msgid "Also send this backup to the active remote storage locations"
1204
+ msgstr ""
1205
+
1206
+ #: addons/migrator.php:1820
1207
+ msgid "A key with this name already exists; you must use a unique name."
1208
+ msgstr ""
1209
+
1210
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1211
+ msgid "Key created successfully."
1212
+ msgstr ""
1213
+
1214
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1215
+ msgid "You must copy and paste this key now - it cannot be shown again."
1216
+ msgstr ""
1217
+
1218
+ #: addons/migrator.php:2175
1219
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1220
+ msgstr ""
1221
+
1222
+ #: addons/migrator.php:2175
1223
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1224
+ msgstr ""
1225
+
1226
+ #: addons/migrator.php:2192
1227
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1228
+ msgstr ""
1229
+
1230
+ #: addons/migrator.php:2213
1231
+ msgid "Your new key:"
1232
+ msgstr ""
1233
+
1234
+ #: addons/migrator.php:2231
1235
+ msgid "No keys to allow remote sites to connect have yet been created."
1236
+ msgstr ""
1237
+
1238
+ #: addons/migrator.php:2240
1239
+ msgid "Existing keys"
1240
+ msgstr ""
1241
+
1242
+ #: methods/ftp.php:307
1243
+ msgid "FTP server"
1244
+ msgstr ""
1245
+
1246
+ #: methods/ftp.php:311
1247
+ msgid "FTP login"
1248
+ msgstr ""
1249
+
1250
+ #: methods/ftp.php:315
1251
+ msgid "FTP password"
1252
+ msgstr ""
1253
+
1254
+ #: methods/ftp.php:319
1255
+ msgid "Remote path"
1256
+ msgstr ""
1257
+
1258
+ #: methods/ftp.php:323
1259
+ msgid "Passive mode"
1260
+ msgstr ""
1261
+
1262
+ #: methods/ftp.php:325
1263
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1264
+ msgstr ""
1265
+
1266
+ #: addons/migrator.php:1851
1267
+ msgid "key"
1268
+ msgstr ""
1269
+
1270
+ #: addons/migrator.php:1861
1271
+ msgid "The entered key was the wrong length - please try again."
1272
+ msgstr ""
1273
+
1274
+ #: addons/migrator.php:1863 addons/migrator.php:1865 addons/migrator.php:1869
1275
+ msgid "The entered key was corrupt - please try again."
1276
+ msgstr ""
1277
+
1278
+ #: addons/migrator.php:1874
1279
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1280
+ msgstr ""
1281
+
1282
+ #: addons/migrator.php:1890
1283
+ msgid "The key was successfully added."
1284
+ msgstr ""
1285
+
1286
+ #: addons/migrator.php:1890
1287
+ msgid "It is for sending backups to the following site: "
1288
+ msgstr ""
1289
+
1290
+ #: addons/migrator.php:1909
1291
+ msgid "No receiving sites have yet been added."
1292
+ msgstr ""
1293
+
1294
+ #: addons/migrator.php:1911 admin.php:532
1295
+ msgid "Send to site:"
1296
+ msgstr ""
1297
+
1298
+ #: addons/migrator.php:1917 admin.php:541
1299
+ msgid "Send"
1300
+ msgstr ""
1301
+
1302
+ #: addons/migrator.php:2172
1303
+ msgid "Or, send a backup to another site"
1304
+ msgstr ""
1305
+
1306
+ #: addons/migrator.php:2175
1307
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1308
+ msgstr ""
1309
+
1310
+ #: addons/migrator.php:2175
1311
+ msgid "How do I get a site's key?"
1312
+ msgstr ""
1313
+
1314
+ #: addons/migrator.php:2180
1315
+ msgid "Paste key here"
1316
+ msgstr ""
1317
+
1318
+ #: addons/migrator.php:2191
1319
+ msgid "Or, receive a backup from a remote site"
1320
+ msgstr ""
1321
+
1322
+ #: admin.php:528
1323
+ msgid "Adding..."
1324
+ msgstr ""
1325
+
1326
+ #: addons/migrator.php:2180 admin.php:529
1327
+ msgid "Add site"
1328
+ msgstr ""
1329
+
1330
+ #: addons/migrator.php:165
1331
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1332
+ msgstr ""
1333
+
1334
+ #: addons/migrator.php:165
1335
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1336
+ msgstr ""
1337
+
1338
+ #: restorer.php:1987
1339
+ msgid "To use this backup, your database server needs to support the %s character set."
1340
+ msgstr ""
1341
+
1342
+ #: udaddons/options.php:338
1343
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1344
+ msgstr ""
1345
+
1346
+ #: udaddons/updraftplus-addons.php:758
1347
+ msgid "Go here to re-enter your password."
1348
+ msgstr ""
1349
+
1350
+ #: udaddons/updraftplus-addons.php:759
1351
+ msgid "If you have forgotten your password "
1352
+ msgstr ""
1353
+
1354
+ #: udaddons/updraftplus-addons.php:759
1355
+ msgid "go here to change your password on updraftplus.com."
1356
+ msgstr ""
1357
+
1358
+ #: addons/migrator.php:192
1359
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1360
+ msgstr ""
1361
+
1362
+ #: addons/migrator.php:221
1363
+ msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1364
+ msgstr ""
1365
+
1366
+ #: admin.php:520 admin.php:545
1367
+ msgid "You have made changes to your settings, and not saved."
1368
+ msgstr ""
1369
+
1370
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1371
+ msgid "To remove the block, please go here."
1372
+ msgstr ""
1373
+
1374
+ #: methods/email.php:73
1375
+ msgid "configure it here"
1376
+ msgstr ""
1377
+
1378
+ #: addons/onedrive.php:496
1379
+ msgid "Please re-authorize the connection to your %s account."
1380
+ msgstr ""
1381
+
1382
+ #: addons/onedrive.php:611 addons/onedrive.php:755 addons/onedrive.php:759
1383
+ msgid "OneDrive"
1384
+ msgstr ""
1385
+
1386
+ #: addons/onedrive.php:721 addons/onedrive.php:723
1387
+ msgid "%s authorisation failed:"
1388
+ msgstr ""
1389
+
1390
+ #: addons/onedrive.php:739
1391
+ msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1392
+ msgstr ""
1393
+
1394
+ #: addons/onedrive.php:741
1395
+ msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1396
+ msgstr ""
1397
+
1398
+ #: addons/onedrive.php:747
1399
+ msgid "Create OneDrive credentials in your OneDrive developer console."
1400
+ msgstr ""
1401
+
1402
+ #: addons/azure.php:500 addons/migrator.php:1737 addons/onedrive.php:747
1403
+ msgid "For longer help, including screenshots, follow this link."
1404
+ msgstr ""
1405
+
1406
+ #: addons/onedrive.php:756
1407
+ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1408
+ msgstr ""
1409
+
1410
+ #: addons/onedrive.php:767
1411
+ msgid "N.B. %s is not case-sensitive."
1412
+ msgstr ""
1413
+
1414
+ #: addons/s3-enhanced.php:321
1415
+ msgid "US West (N. California)"
1416
+ msgstr ""
1417
+
1418
+ #: addons/s3-enhanced.php:322
1419
+ msgid "US Government West (restricted)"
1420
+ msgstr ""
1421
+
1422
+ #: addons/s3-enhanced.php:323
1423
+ msgid "EU (Ireland)"
1424
+ msgstr ""
1425
+
1426
+ #: addons/s3-enhanced.php:324
1427
+ msgid "EU (Frankfurt)"
1428
+ msgstr ""
1429
+
1430
+ #: addons/s3-enhanced.php:326
1431
+ msgid "Asia Pacific (Singapore)"
1432
+ msgstr ""
1433
+
1434
+ #: addons/s3-enhanced.php:327
1435
+ msgid "Asia Pacific (Sydney)"
1436
+ msgstr ""
1437
+
1438
+ #: addons/s3-enhanced.php:329
1439
+ msgid "Asia Pacific (Tokyo)"
1440
+ msgstr ""
1441
+
1442
+ #: addons/s3-enhanced.php:330
1443
+ msgid "South America (Sao Paulo)"
1444
+ msgstr ""
1445
+
1446
+ #: addons/s3-enhanced.php:331
1447
+ msgid "China (Beijing) (restricted)"
1448
+ msgstr ""
1449
+
1450
+ #: addons/s3-enhanced.php:341
1451
+ msgid "S3 bucket"
1452
+ msgstr ""
1453
+
1454
+ #: addons/s3-enhanced.php:437
1455
+ msgid "You are now using a IAM user account to access your bucket."
1456
+ msgstr ""
1457
+
1458
+ #: addons/s3-enhanced.php:437
1459
+ msgid "Do remember to save your settings."
1460
+ msgstr ""
1461
+
1462
+ #: restorer.php:2086
1463
+ msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1464
+ msgstr ""
1465
+
1466
+ #: admin.php:396
1467
+ msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1468
+ msgstr ""
1469
+
1470
+ #: admin.php:398
1471
+ msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1472
+ msgstr ""
1473
+
1474
+ #: methods/s3.php:778
1475
+ msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1476
+ msgstr ""
1477
+
1478
+ #: addons/s3-enhanced.php:71
1479
+ msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1480
+ msgstr ""
1481
+
1482
+ #: addons/s3-enhanced.php:83
1483
+ msgid "You need to enter an admin access key"
1484
+ msgstr ""
1485
+
1486
+ #: addons/s3-enhanced.php:86
1487
+ msgid "You need to enter an admin secret key"
1488
+ msgstr ""
1489
+
1490
+ #: addons/s3-enhanced.php:89
1491
+ msgid "You need to enter a new IAM username"
1492
+ msgstr ""
1493
+
1494
+ #: addons/s3-enhanced.php:92
1495
+ msgid "You need to enter a bucket"
1496
+ msgstr ""
1497
+
1498
+ #: addons/s3-enhanced.php:117
1499
+ msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1500
+ msgstr ""
1501
+
1502
+ #: addons/s3-enhanced.php:124
1503
+ msgid "AWS authentication failed"
1504
+ msgstr ""
1505
+
1506
+ #: addons/s3-enhanced.php:171
1507
+ 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 AWS user may already have taken your name)."
1508
+ msgstr ""
1509
+
1510
+ #: addons/s3-enhanced.php:199
1511
+ msgid "Conflict: that user already exists"
1512
+ msgstr ""
1513
+
1514
+ #: addons/s3-enhanced.php:201 addons/s3-enhanced.php:204
1515
+ #: addons/s3-enhanced.php:208
1516
+ msgid "IAM operation failed (%s)"
1517
+ msgstr ""
1518
+
1519
+ #: addons/s3-enhanced.php:221
1520
+ msgid "Failed to create user Access Key"
1521
+ msgstr ""
1522
+
1523
+ #: addons/s3-enhanced.php:223 addons/s3-enhanced.php:227
1524
+ msgid "Operation to create user Access Key failed"
1525
+ msgstr ""
1526
+
1527
+ #: addons/s3-enhanced.php:282 addons/s3-enhanced.php:284
1528
+ msgid "Failed to apply User Policy"
1529
+ msgstr ""
1530
+
1531
+ #: addons/s3-enhanced.php:294
1532
+ msgid "Access Key: %s"
1533
+ msgstr ""
1534
+
1535
+ #: addons/s3-enhanced.php:294
1536
+ msgid "Secret Key: %s"
1537
+ msgstr ""
1538
+
1539
+ #: addons/s3-enhanced.php:378
1540
+ msgid "Create new IAM user and S3 bucket"
1541
+ msgstr ""
1542
+
1543
+ #: addons/s3-enhanced.php:304
1544
+ msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1545
+ msgstr ""
1546
+
1547
+ #: addons/s3-enhanced.php:304
1548
+ msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1549
+ msgstr ""
1550
+
1551
+ #: addons/s3-enhanced.php:304
1552
+ msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1553
+ msgstr ""
1554
+
1555
+ #: addons/s3-enhanced.php:311
1556
+ msgid "Admin access key"
1557
+ msgstr ""
1558
+
1559
+ #: addons/s3-enhanced.php:312
1560
+ msgid "Admin secret key"
1561
+ msgstr ""
1562
+
1563
+ #: addons/s3-enhanced.php:313
1564
+ msgid "New IAM username"
1565
+ msgstr ""
1566
+
1567
+ #: addons/s3-enhanced.php:315
1568
+ msgid "S3 storage region"
1569
+ msgstr ""
1570
+
1571
+ #: addons/s3-enhanced.php:319
1572
+ msgid "US Standard (default)"
1573
+ msgstr ""
1574
+
1575
+ #: addons/s3-enhanced.php:320
1576
+ msgid "US West (Oregon)"
1577
+ msgstr ""
1578
+
1579
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1580
+ msgid "UpdraftPlus.com has responded with 'Access Denied'."
1581
+ msgstr ""
1582
+
1583
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1584
+ msgid "It appears that your web server's IP Address (%s) is blocked."
1585
+ msgstr ""
1586
+
1587
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1588
+ msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1589
+ msgstr ""
1590
+
1591
+ #: admin.php:389 admin.php:403
1592
+ msgid "Dismiss (for %s months)"
1593
+ msgstr ""
1594
+
1595
+ #: admin.php:391
1596
+ msgid "Thank you for backing up with UpdraftPlus!"
1597
+ msgstr ""
1598
+
1599
+ #: admin.php:396
1600
+ msgid "Free Newsletter"
1601
+ msgstr ""
1602
+
1603
+ #: admin.php:396
1604
+ msgid "Follow this link to sign up."
1605
+ msgstr ""
1606
+
1607
+ #: admin.php:398
1608
+ msgid "UpdraftPlus Premium"
1609
+ msgstr ""
1610
+
1611
+ #: admin.php:398
1612
+ msgid "Compare with the free version"
1613
+ msgstr ""
1614
+
1615
+ #: admin.php:398
1616
+ msgid "Go to the shop."
1617
+ msgstr ""
1618
+
1619
+ #: admin.php:400
1620
+ msgid "More Quality Plugins"
1621
+ msgstr ""
1622
+
1623
+ #: admin.php:400
1624
+ msgid "Free two-factor security plugin"
1625
+ msgstr ""
1626
+
1627
+ #: admin.php:400
1628
+ msgid "Premium WooCommerce plugins"
1629
+ msgstr ""
1630
+
1631
+ #: class-updraftplus.php:3488
1632
+ msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1633
+ msgstr ""
1634
+
1635
+ #: admin.php:2172
1636
+ msgid "Newsletter sign-up"
1637
+ msgstr ""
1638
+
1639
+ #: admin.php:2556
1640
+ msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1641
+ msgstr ""
1642
+
1643
+ #: admin.php:2556
1644
+ msgid "The first step is to de-install the free version."
1645
+ msgstr ""
1646
+
1647
+ #: admin.php:3640
1648
+ msgid "No backup has been completed"
1649
+ msgstr ""
1650
+
1651
+ #: addons/fixtime.php:422
1652
+ msgid "(at same time as files backup)"
1653
+ msgstr ""
1654
+
1655
+ #: admin.php:2601
1656
+ msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1657
+ msgstr "دروب بوكس, جوجل درايف, بروتوكول اف تي بي, راك سبيس, البريد الإلكتروني"
1658
+
1659
+ #: admin.php:2606
1660
+ msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1661
+ msgstr ""
1662
+
1663
+ #: admin.php:2621
1664
+ msgid "Backup extra files and databases"
1665
+ msgstr "قم بعمل نسخ احطياتية من الملفات و قواعد البيانات."
1666
+
1667
+ #: admin.php:2626
1668
+ msgid "Migrate / clone (i.e. copy) websites"
1669
+ msgstr ""
1670
+
1671
+ #: admin.php:2631
1672
+ msgid "Basic email reporting"
1673
+ msgstr ""
1674
+
1675
+ #: admin.php:2636
1676
+ msgid "Advanced reporting features"
1677
+ msgstr ""
1678
+
1679
+ #: admin.php:2641
1680
+ msgid "Automatic backup when updating WP/plugins/themes"
1681
+ msgstr ""
1682
+
1683
+ #: admin.php:2646
1684
+ msgid "Send backups to multiple remote destinations"
1685
+ msgstr ""
1686
+
1687
+ #: admin.php:2651
1688
+ msgid "Database encryption"
1689
+ msgstr ""
1690
+
1691
+ #: admin.php:2656
1692
+ msgid "Restore backups from other plugins"
1693
+ msgstr ""
1694
+
1695
+ #: admin.php:2666
1696
+ msgid "Scheduled backups"
1697
+ msgstr ""
1698
+
1699
+ #: admin.php:2671
1700
+ msgid "Fix backup time"
1701
+ msgstr ""
1702
+
1703
+ #: admin.php:2676
1704
+ msgid "Network/Multisite support"
1705
+ msgstr ""
1706
+
1707
+ #: admin.php:2681
1708
+ msgid "Lock settings access"
1709
+ msgstr ""
1710
+
1711
+ #: admin.php:2686
1712
+ msgid "Personal support"
1713
+ msgstr ""
1714
+
1715
+ #: admin.php:2556
1716
+ msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1717
+ msgstr ""
1718
+
1719
+ #: admin.php:2558
1720
+ msgid "Get UpdraftPlus Premium"
1721
+ msgstr ""
1722
+
1723
+ #: admin.php:2559
1724
+ msgid "Full feature list"
1725
+ msgstr ""
1726
+
1727
+ #: admin.php:2560
1728
+ msgid "Pre-sales FAQs"
1729
+ msgstr ""
1730
+
1731
+ #: admin.php:2561
1732
+ msgid "Ask a pre-sales question"
1733
+ msgstr ""
1734
+
1735
+ #: admin.php:2573
1736
+ msgid "Get it from"
1737
+ msgstr "احصل علية من"
1738
+
1739
+ #: admin.php:2577
1740
+ msgid "Buy It Now!"
1741
+ msgstr "اشتري الان"
1742
+
1743
+ #: admin.php:2581
1744
+ msgid "Backup WordPress files and database"
1745
+ msgstr ""
1746
+
1747
+ #: admin.php:2586
1748
+ msgid "Translated into over %s languages"
1749
+ msgstr "مترجم لاكثر منs% لغة"
1750
+
1751
+ #: admin.php:2591
1752
+ msgid "Restore from backup"
1753
+ msgstr "استرجع من نسخة احطياتية"
1754
+
1755
+ #: admin.php:2596
1756
+ msgid "Backup to remote storage"
1757
+ msgstr ""
1758
+
1759
+ #: admin.php:514
1760
+ msgid "You did not select any components to restore. Please select at least one, and then try again."
1761
+ msgstr ""
1762
+
1763
+ #: admin.php:2903
1764
+ msgctxt "Uploader: Drop backup files here - or - Select Files"
1765
+ msgid "or"
1766
+ msgstr ""
1767
+
1768
+ #: admin.php:3882
1769
+ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1770
+ msgid "or"
1771
+ msgstr ""
1772
+
1773
+ #: methods/s3.php:134 methods/s3.php:135 methods/s3.php:136 methods/s3.php:144
1774
+ #: methods/s3.php:145 methods/s3.php:146
1775
+ msgid "%s Error: Failed to initialise"
1776
+ msgstr ""
1777
+
1778
+ #: addons/autobackup.php:981
1779
+ msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1780
+ msgstr ""
1781
+
1782
+ #: restorer.php:1964
1783
+ msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1784
+ msgid "An error (%s) occurred:"
1785
+ msgstr ""
1786
+
1787
+ #: admin.php:3649
1788
+ msgctxt "i.e. Non-automatic"
1789
+ msgid "Manual"
1790
+ msgstr ""
1791
+
1792
+ #: admin.php:3934
1793
+ msgid "Check this box to have a basic report sent to"
1794
+ msgstr ""
1795
+
1796
+ #: admin.php:3934
1797
+ msgid "your site's admin address"
1798
+ msgstr ""
1799
+
1800
+ #: methods/openstack2.php:102
1801
+ msgctxt "Keystone and swauth are technical terms which cannot be translated"
1802
+ msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1803
+ msgstr ""
1804
+
1805
+ #: methods/openstack2.php:152
1806
+ msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1807
+ msgid "tenant"
1808
+ msgstr ""
1809
+
1810
+ #: addons/sftp.php:342
1811
+ msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1812
+ msgstr ""
1813
+
1814
+ #: addons/sftp.php:379
1815
+ msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1816
+ msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1817
+ msgstr ""
1818
+
1819
+ #: addons/morefiles.php:178
1820
+ msgid "Any other file/directory on your server that you wish to back up"
1821
+ msgstr ""
1822
+
1823
+ #: addons/lockadmin.php:162
1824
+ msgid "Change Lock Settings"
1825
+ msgstr ""
1826
+
1827
+ #: restorer.php:1163
1828
+ msgid "Clearing cached pages (%s)..."
1829
+ msgstr ""
1830
+
1831
+ #: restorer.php:1970
1832
+ msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1833
+ msgstr ""
1834
+
1835
+ #: admin.php:2349
1836
+ msgid "For even more features and personal support, check out "
1837
+ msgstr ""
1838
+
1839
+ #: udaddons/options.php:273
1840
+ msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1841
+ msgstr ""
1842
+
1843
+ #: addons/morefiles.php:67
1844
+ msgid "(learn more about this significant option)"
1845
+ msgstr ""
1846
+
1847
+ #: addons/lockadmin.php:105
1848
+ msgid "The admin password has now been removed."
1849
+ msgstr ""
1850
+
1851
+ #: addons/lockadmin.php:107
1852
+ msgid "An admin password has been set."
1853
+ msgstr ""
1854
+
1855
+ #: addons/lockadmin.php:109
1856
+ msgid "The admin password has been changed."
1857
+ msgstr ""
1858
+
1859
+ #: addons/lockadmin.php:111
1860
+ msgid "Settings saved."
1861
+ msgstr ""
1862
+
1863
+ #: addons/lockadmin.php:131
1864
+ msgid "Lock access to the UpdraftPlus settings page"
1865
+ msgstr ""
1866
+
1867
+ #: addons/lockadmin.php:133
1868
+ msgid "Please make sure that you have made a note of the password!"
1869
+ msgstr ""
1870
+
1871
+ #: addons/lockadmin.php:144
1872
+ msgid "1 hour"
1873
+ msgstr ""
1874
+
1875
+ #: addons/lockadmin.php:145 addons/lockadmin.php:146
1876
+ msgid "%s hours"
1877
+ msgstr ""
1878
+
1879
+ #: addons/lockadmin.php:147
1880
+ msgid "1 week"
1881
+ msgstr ""
1882
+
1883
+ #: addons/lockadmin.php:148 addons/lockadmin.php:149
1884
+ msgid "%s weeks"
1885
+ msgstr ""
1886
+
1887
+ #: addons/lockadmin.php:157
1888
+ msgid "Require password again after"
1889
+ msgstr ""
1890
+
1891
+ #: addons/lockadmin.php:159
1892
+ msgid "Support URL"
1893
+ msgstr ""
1894
+
1895
+ #: addons/lockadmin.php:159
1896
+ msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1897
+ msgstr ""
1898
+
1899
+ #: addons/lockadmin.php:159
1900
+ msgid "Otherwise, the default link will be shown."
1901
+ msgstr ""
1902
+
1903
+ #: addons/lockadmin.php:188 addons/lockadmin.php:194
1904
+ msgid "Unlock"
1905
+ msgstr ""
1906
+
1907
+ #: addons/lockadmin.php:200
1908
+ msgid "Password incorrect"
1909
+ msgstr ""
1910
+
1911
+ #: addons/lockadmin.php:203
1912
+ msgid "To access the UpdraftPlus settings, please enter your unlock password"
1913
+ msgstr ""
1914
+
1915
+ #: addons/lockadmin.php:210
1916
+ msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1917
+ msgstr ""
1918
+
1919
+ #: addons/autobackup.php:96
1920
+ msgid "WordPress core (only)"
1921
+ msgstr ""
1922
+
1923
+ #: addons/autobackup.php:131 addons/autobackup.php:946
1924
+ #: addons/autobackup.php:954 admin.php:519
1925
+ msgid "Automatic backup before update"
1926
+ msgstr ""
1927
+
1928
+ #: addons/moredatabase.php:45
1929
+ msgid "Database decryption phrase"
1930
+ msgstr ""
1931
+
1932
+ #: backup.php:2940
1933
+ msgid "A zip error occurred"
1934
+ msgstr ""
1935
+
1936
+ #: backup.php:2942
1937
+ msgid "your web hosting account appears to be full; please see: %s"
1938
+ msgstr ""
1939
+
1940
+ #: backup.php:2944
1941
+ msgid "check your log for more details."
1942
+ msgstr ""
1943
+
1944
+ #: admin.php:1854
1945
+ msgid "Error: unexpected file read fail"
1946
+ msgstr ""
1947
+
1948
+ #: class-updraftplus.php:3664
1949
+ msgid "Backup label:"
1950
+ msgstr ""
1951
+
1952
+ #: admin.php:760 admin.php:2439 central/updraftplus-commands.php:304
1953
+ msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1954
+ msgstr ""
1955
+
1956
+ #: admin.php:2892
1957
+ msgid "Upload files into UpdraftPlus."
1958
+ msgstr ""
1959
+
1960
+ #: admin.php:3124
1961
+ msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1962
+ msgstr ""
1963
+
1964
+ #: admin.php:3610
1965
+ msgid "incremental backup; base backup: %s"
1966
+ msgstr ""
1967
+
1968
+ #: admin.php:3714 admin.php:3753
1969
+ msgid "and retain this many scheduled backups"
1970
+ msgstr ""
1971
+
1972
+ #: admin.php:4341
1973
+ msgid "Backup date"
1974
+ msgstr ""
1975
+
1976
+ #: admin.php:4342
1977
+ msgid "Backup data (click to download)"
1978
+ msgstr ""
1979
+
1980
+ #: admin.php:3232 admin.php:4646
1981
+ msgid "View Log"
1982
+ msgstr ""
1983
+
1984
+ #: addons/reporting.php:60
1985
+ msgid "Your label for this backup (optional)"
1986
+ msgstr ""
1987
+
1988
+ #: addons/googlecloud.php:822 methods/googledrive.php:900
1989
+ msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1990
+ msgstr ""
1991
+
1992
+ #: methods/updraftvault.php:529 udaddons/updraftplus-addons.php:655
1993
+ msgid "You need to supply both an email address and a password"
1994
+ msgstr ""
1995
+
1996
+ #: methods/updraftvault.php:589 udaddons/updraftplus-addons.php:758
1997
+ msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1998
+ msgstr ""
1999
+
2000
+ #: methods/updraftvault.php:592 udaddons/updraftplus-addons.php:762
2001
+ msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2002
+ msgstr ""
2003
+
2004
+ #: admin.php:2500
2005
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2006
+ msgstr ""
2007
+
2008
+ #: class-updraftplus.php:3683
2009
+ msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2010
+ msgstr ""
2011
+
2012
+ #: class-updraftplus.php:3683
2013
+ msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2014
+ msgstr ""
2015
+
2016
+ #: addons/migrator.php:1038
2017
+ msgid "already done"
2018
+ msgstr ""
2019
+
2020
+ #: addons/migrator.php:995 addons/migrator.php:1038 addons/migrator.php:1185
2021
+ msgid "Search and replacing table:"
2022
+ msgstr ""
2023
+
2024
+ #: addons/migrator.php:995
2025
+ msgid "skipped (not in list)"
2026
+ msgstr ""
2027
+
2028
+ #: addons/migrator.php:301
2029
+ msgid "Rows per batch"
2030
+ msgstr ""
2031
+
2032
+ #: addons/migrator.php:302
2033
+ msgid "These tables only"
2034
+ msgstr ""
2035
+
2036
+ #: addons/migrator.php:302
2037
+ msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2038
+ msgstr ""
2039
+
2040
+ #: udaddons/options.php:102
2041
+ msgid "You have not yet connected with your UpdraftPlus.Com account."
2042
+ msgstr ""
2043
+
2044
+ #: udaddons/options.php:100 udaddons/options.php:102
2045
+ msgid "You need to connect to receive future updates to UpdraftPlus."
2046
+ msgstr ""
2047
+
2048
+ #: class-updraftplus.php:3656
2049
+ msgid "The site in this backup was running on a webserver with version %s of %s. "
2050
+ msgstr ""
2051
+
2052
+ #: class-updraftplus.php:3656
2053
+ msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2054
+ msgstr ""
2055
+
2056
+ #: class-updraftplus.php:3656
2057
+ msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2058
+ msgstr ""
2059
+
2060
+ #: class-updraftplus.php:3656
2061
+ msgid "Any support requests to do with %s should be raised with your web hosting company."
2062
+ msgstr ""
2063
+
2064
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2065
+ msgid "UpdraftPlus is on social media - check us out here:"
2066
+ msgstr ""
2067
+
2068
+ #: admin.php:2170 class-updraftplus.php:3479 class-updraftplus.php:3508
2069
+ msgid "Twitter"
2070
+ msgstr ""
2071
+
2072
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2073
+ msgid "Facebook"
2074
+ msgstr ""
2075
+
2076
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2077
+ msgid "Google+"
2078
+ msgstr ""
2079
+
2080
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2081
+ msgid "LinkedIn"
2082
+ msgstr ""
2083
+
2084
+ #: admin.php:4707
2085
+ msgid "Why am I seeing this?"
2086
+ msgstr ""
2087
+
2088
+ #: admin.php:2880
2089
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2090
+ msgstr ""
2091
+
2092
+ #: admin.php:2880
2093
+ msgid "The location of this directory is set in the expert settings, in the Settings tab."
2094
+ msgstr ""
2095
+
2096
+ #: admin.php:1802 admin.php:1814
2097
+ msgid "Start backup"
2098
+ msgstr ""
2099
+
2100
+ #: class-updraftplus.php:3628 restorer.php:926
2101
+ msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2102
+ msgstr ""
2103
+
2104
+ #: admin.php:3554
2105
+ msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2106
+ msgstr ""
2107
+
2108
+ #: admin.php:3045
2109
+ msgid "Unless you have a problem, you can completely ignore everything here."
2110
+ msgstr ""
2111
+
2112
+ #: admin.php:1976
2113
+ msgid "You will find more information about this in the Settings section."
2114
+ msgstr ""
2115
+
2116
+ #: admin.php:2011
2117
+ msgid "This file could not be uploaded"
2118
+ msgstr ""
2119
+
2120
+ #: addons/importer.php:70
2121
+ msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2122
+ msgstr ""
2123
+
2124
+ #: addons/importer.php:70
2125
+ msgid "Supported backup plugins: %s"
2126
+ msgstr ""
2127
+
2128
+ #: admin.php:3730
2129
+ msgid "Tell me more about incremental backups"
2130
+ msgstr ""
2131
+
2132
+ #: admin.php:3081
2133
+ msgid "Memory limit"
2134
+ msgstr ""
2135
+
2136
+ #: class-updraftplus.php:3770 restorer.php:1368
2137
+ msgid "restoration"
2138
+ msgstr ""
2139
+
2140
+ #: restorer.php:1915
2141
+ msgid "Table to be implicitly dropped: %s"
2142
+ msgstr ""
2143
+
2144
+ #: backup.php:829
2145
+ msgid "Full backup"
2146
+ msgstr ""
2147
+
2148
+ #: backup.php:829
2149
+ msgid "Incremental"
2150
+ msgstr ""
2151
+
2152
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2153
+ msgid "Backup succeeded"
2154
+ msgstr ""
2155
+
2156
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2157
+ msgid "(view log...)"
2158
+ msgstr ""
2159
+
2160
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2161
+ msgid "now proceeding with the updates..."
2162
+ msgstr ""
2163
+
2164
+ #: admin.php:3650 admin.php:3651 admin.php:3652 updraftplus.php:92
2165
+ #: updraftplus.php:93
2166
+ msgid "Every %s hours"
2167
+ msgstr ""
2168
+
2169
+ #: addons/migrator.php:765 addons/migrator.php:767
2170
+ msgid "search and replace"
2171
+ msgstr ""
2172
+
2173
+ #: addons/migrator.php:272
2174
+ msgid "search term"
2175
+ msgstr ""
2176
+
2177
+ #: addons/migrator.php:266 addons/migrator.php:291
2178
+ msgid "Search / replace database"
2179
+ msgstr ""
2180
+
2181
+ #: addons/migrator.php:267 addons/migrator.php:299
2182
+ msgid "Search for"
2183
+ msgstr ""
2184
+
2185
+ #: addons/migrator.php:268 addons/migrator.php:300
2186
+ msgid "Replace with"
2187
+ msgstr ""
2188
+
2189
+ #: addons/migrator.php:292
2190
+ msgid "This can easily destroy your site; so, use it with care!"
2191
+ msgstr ""
2192
+
2193
+ #: addons/migrator.php:293
2194
+ msgid "A search/replace cannot be undone - are you sure you want to do this?"
2195
+ msgstr ""
2196
+
2197
+ #: addons/migrator.php:304
2198
+ msgid "Go"
2199
+ msgstr ""
2200
+
2201
+ #: restorer.php:1992
2202
+ msgid "Too many database errors have occurred - aborting"
2203
+ msgstr ""
2204
+
2205
+ #: backup.php:895
2206
+ msgid "read more at %s"
2207
+ msgstr ""
2208
+
2209
+ #: backup.php:895
2210
+ msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2211
+ msgstr ""
2212
+
2213
+ #: methods/googledrive.php:906
2214
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2215
+ msgstr ""
2216
+
2217
+ #: admin.php:4328
2218
+ msgid "You have not yet made any backups."
2219
+ msgstr ""
2220
+
2221
+ #: admin.php:3845
2222
+ msgid "Database Options"
2223
+ msgstr ""
2224
+
2225
+ #: admin.php:3142
2226
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2227
+ msgstr ""
2228
+
2229
+ #: admin.php:3106
2230
+ msgid "%s (%s used)"
2231
+ msgstr ""
2232
+
2233
+ #: admin.php:3109
2234
+ msgid "Plugins for debugging:"
2235
+ msgstr ""
2236
+
2237
+ #: admin.php:3106
2238
+ msgid "Free disk space in account:"
2239
+ msgstr ""
2240
+
2241
+ #: admin.php:330 admin.php:2404
2242
+ msgid "Current Status"
2243
+ msgstr ""
2244
+
2245
+ #: admin.php:338 admin.php:1429 admin.php:1668 admin.php:2405 admin.php:2863
2246
+ msgid "Existing Backups"
2247
+ msgstr ""
2248
+
2249
+ #: admin.php:2443 admin.php:5202
2250
+ msgid "This button is disabled because your backup directory is not writable (see the settings)."
2251
+ msgstr ""
2252
+
2253
+ #: admin.php:765
2254
+ msgid "Welcome to UpdraftPlus!"
2255
+ msgstr ""
2256
+
2257
+ #: admin.php:765
2258
+ msgid "To make a backup, just press the Backup Now button."
2259
+ msgstr ""
2260
+
2261
+ #: admin.php:765
2262
+ msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2263
+ msgstr ""
2264
+
2265
+ #: addons/moredatabase.php:338
2266
+ msgid "If you enter text here, it is used to encrypt database 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> 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)."
2267
+ msgstr ""
2268
+
2269
+ #: addons/moredatabase.php:236
2270
+ msgid "Table prefix"
2271
+ msgstr ""
2272
+
2273
+ #: addons/moredatabase.php:237
2274
+ msgid "Test connection..."
2275
+ msgstr ""
2276
+
2277
+ #: addons/moredatabase.php:250
2278
+ msgid "Testing..."
2279
+ msgstr ""
2280
+
2281
+ #: addons/moredatabase.php:153
2282
+ msgid "Backup non-WordPress tables contained in the same database as WordPress"
2283
+ msgstr ""
2284
+
2285
+ #: addons/moredatabase.php:154
2286
+ msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
2287
+ msgstr ""
2288
+
2289
+ #: addons/moredatabase.php:158
2290
+ msgid "Add an external database to backup..."
2291
+ msgstr ""
2292
+
2293
+ #: addons/moredatabase.php:230
2294
+ msgid "Backup external database"
2295
+ msgstr ""
2296
+
2297
+ #: addons/moredatabase.php:112
2298
+ msgid "%s table(s) found."
2299
+ msgstr ""
2300
+
2301
+ #: addons/moredatabase.php:118
2302
+ msgid "%s total table(s) found; %s with the indicated prefix."
2303
+ msgstr ""
2304
+
2305
+ #: addons/moredatabase.php:136
2306
+ msgid "Connection succeeded."
2307
+ msgstr ""
2308
+
2309
+ #: addons/moredatabase.php:138
2310
+ msgid "Connection failed."
2311
+ msgstr ""
2312
+
2313
+ #: addons/moredatabase.php:153
2314
+ msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
2315
+ msgstr ""
2316
+
2317
+ #: addons/moredatabase.php:70
2318
+ msgid "user"
2319
+ msgstr ""
2320
+
2321
+ #: addons/moredatabase.php:72
2322
+ msgid "host"
2323
+ msgstr ""
2324
+
2325
+ #: addons/moredatabase.php:74
2326
+ msgid "database name"
2327
+ msgstr ""
2328
+
2329
+ #: addons/moredatabase.php:85
2330
+ msgid "database connection attempt failed"
2331
+ msgstr ""
2332
+
2333
+ #: class-updraftplus.php:1250
2334
+ msgid "External database (%s)"
2335
+ msgstr ""
2336
+
2337
+ #: methods/googledrive.php:906
2338
+ msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2339
+ msgstr ""
2340
+
2341
+ #: methods/googledrive.php:381
2342
+ msgid "failed to access parent folder"
2343
+ msgstr ""
2344
+
2345
+ #: addons/googlecloud.php:559 addons/onedrive.php:592
2346
+ #: methods/googledrive.php:338
2347
+ msgid "However, subsequent access attempts failed:"
2348
+ msgstr ""
2349
+
2350
+ #: admin.php:4472
2351
+ msgid "External database"
2352
+ msgstr ""
2353
+
2354
+ #: admin.php:3968
2355
+ msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2356
+ msgstr ""
2357
+
2358
+ #: admin.php:3908
2359
+ msgid "Back up more databases"
2360
+ msgstr ""
2361
+
2362
+ #: admin.php:3854
2363
+ msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2364
+ msgstr ""
2365
+
2366
+ #: admin.php:3854
2367
+ msgid "It can also backup external databases."
2368
+ msgstr ""
2369
+
2370
+ #: admin.php:3866
2371
+ msgid "You can manually decrypt an encrypted database here."
2372
+ msgstr ""
2373
+
2374
+ #: admin.php:3884
2375
+ msgid "First, enter the decryption key"
2376
+ msgstr ""
2377
+
2378
+ #: admin.php:3766
2379
+ msgid "use UpdraftPlus Premium"
2380
+ msgstr ""
2381
+
2382
+ #: class-updraftplus.php:3543
2383
+ msgid "Decryption failed. The database file is encrypted."
2384
+ msgstr ""
2385
+
2386
+ #: admin.php:1280
2387
+ msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2388
+ msgstr ""
2389
+
2390
+ #: restorer.php:1618 restorer.php:1937 restorer.php:1974 restorer.php:1987
2391
+ msgid "An error occurred on the first %s command - aborting run"
2392
+ msgstr ""
2393
+
2394
+ #: backup.php:1353
2395
+ msgid "database connection attempt failed."
2396
+ msgstr ""
2397
+
2398
+ #: addons/moredatabase.php:93 backup.php:1353
2399
+ msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2400
+ msgstr ""
2401
+
2402
+ #: addons/google-enhanced.php:75
2403
+ msgid "In %s, path names are case sensitive."
2404
+ msgstr ""
2405
+
2406
+ #: addons/migrator.php:921
2407
+ msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2408
+ msgstr ""
2409
+
2410
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2411
+ msgid "Enter the path of the %s folder you wish to use here."
2412
+ msgstr ""
2413
+
2414
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2415
+ msgid "If the folder does not already exist, then it will be created."
2416
+ msgstr ""
2417
+
2418
+ #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2419
+ #: addons/onedrive.php:767
2420
+ msgid "e.g. %s"
2421
+ msgstr ""
2422
+
2423
+ #: addons/azure.php:522 addons/google-enhanced.php:73 addons/onedrive.php:767
2424
+ msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2425
+ msgstr ""
2426
+
2427
+ #: methods/openstack2.php:107
2428
+ msgid "Follow this link for more information"
2429
+ msgstr ""
2430
+
2431
+ #: methods/openstack2.php:107
2432
+ msgid "Tenant"
2433
+ msgstr ""
2434
+
2435
+ #: methods/openstack2.php:116
2436
+ msgid "Leave this blank, and a default will be chosen."
2437
+ msgstr ""
2438
+
2439
+ #: addons/azure.php:515 methods/openstack2.php:133
2440
+ msgid "Container"
2441
+ msgstr ""
2442
+
2443
+ #: methods/addon-base.php:106
2444
+ msgid "failed to list files"
2445
+ msgstr ""
2446
+
2447
+ #: methods/addon-base.php:208
2448
+ msgid "Failed to download"
2449
+ msgstr ""
2450
+
2451
+ #: methods/addon-base.php:194 methods/addon-base.php:214
2452
+ msgid "Failed to download %s"
2453
+ msgstr ""
2454
+
2455
+ #: methods/openstack2.php:94
2456
+ msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2457
+ msgstr ""
2458
+
2459
+ #: methods/openstack2.php:99 methods/openstack2.php:157
2460
+ msgid "authentication URI"
2461
+ msgstr ""
2462
+
2463
+ #: methods/addon-base.php:75 methods/addon-base.php:80
2464
+ msgid "Failed to upload %s"
2465
+ msgstr ""
2466
+
2467
+ #: methods/dropbox.php:513 methods/dropbox.php:515
2468
+ msgid "Success:"
2469
+ msgstr ""
2470
+
2471
+ #: methods/dropbox.php:443 methods/dropbox.php:444
2472
+ msgid "Dropbox"
2473
+ msgstr ""
2474
+
2475
+ #: addons/onedrive.php:773 methods/dropbox.php:444
2476
+ msgid "(You appear to be already authenticated)."
2477
+ msgstr ""
2478
+
2479
+ #: addons/onedrive.php:775 methods/dropbox.php:444
2480
+ 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 %s."
2481
+ msgstr ""
2482
+
2483
+ #: addons/onedrive.php:772 methods/dropbox.php:443
2484
+ msgid "Authenticate with %s"
2485
+ msgstr ""
2486
+
2487
+ #: methods/cloudfiles.php:409
2488
+ msgid "Error downloading remote file: Failed to download"
2489
+ msgstr ""
2490
+
2491
+ #: methods/openstack-base.php:305
2492
+ msgid "The %s object was not found"
2493
+ msgstr ""
2494
+
2495
+ #: methods/openstack-base.php:387
2496
+ msgid "%s error - we accessed the container, but failed to create a file within it"
2497
+ msgstr ""
2498
+
2499
+ #: methods/openstack-base.php:388 methods/openstack-base.php:393
2500
+ msgid "Region: %s"
2501
+ msgstr ""
2502
+
2503
+ #: methods/openstack-base.php:44 methods/openstack-base.php:228
2504
+ #: methods/openstack-base.php:297
2505
+ msgid "Could not access %s container"
2506
+ msgstr ""
2507
+
2508
+ #: addons/googlecloud.php:902 addons/onedrive.php:774 methods/dropbox.php:450
2509
+ #: methods/googledrive.php:955
2510
+ msgid "Account holder's name: %s."
2511
+ msgstr ""
2512
+
2513
+ #: methods/openstack-base.php:36 methods/openstack-base.php:100
2514
+ #: methods/openstack-base.php:107 methods/openstack-base.php:220
2515
+ #: methods/openstack-base.php:285
2516
+ msgid "%s error - failed to access the container"
2517
+ msgstr ""
2518
+
2519
+ #: methods/googledrive.php:935
2520
+ msgid "<strong>This is NOT a folder name</strong>."
2521
+ msgstr ""
2522
+
2523
+ #: methods/googledrive.php:935
2524
+ msgid "It is an ID number internal to Google Drive"
2525
+ msgstr ""
2526
+
2527
+ #: methods/googledrive.php:944
2528
+ msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2529
+ msgstr ""
2530
+
2531
+ #: addons/google-enhanced.php:72 addons/onedrive.php:766
2532
+ #: methods/googledrive.php:931 methods/googledrive.php:941
2533
+ msgid "Folder"
2534
+ msgstr ""
2535
+
2536
+ #: addons/googlecloud.php:579 methods/googledrive.php:358
2537
+ msgid "Name: %s."
2538
+ msgstr ""
2539
+
2540
+ #: addons/googlecloud.php:254 addons/onedrive.php:351
2541
+ #: methods/googledrive.php:863
2542
+ msgid "%s download: failed: file not found"
2543
+ msgstr ""
2544
+
2545
+ #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2546
+ msgid "This remote storage method (%s) requires PHP %s or later."
2547
+ msgstr ""
2548
+
2549
+ #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2550
+ msgid "You will need to ask your web hosting company to upgrade."
2551
+ msgstr ""
2552
+
2553
+ #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2554
+ msgid "Your %s version: %s."
2555
+ msgstr ""
2556
+
2557
+ #: methods/googledrive.php:157
2558
+ msgid "Google Drive list files: failed to access parent folder"
2559
+ msgstr ""
2560
+
2561
+ #: admin.php:5054
2562
+ msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2563
+ msgstr ""
2564
+
2565
+ #: admin.php:3111
2566
+ msgid "Fetch"
2567
+ msgstr ""
2568
+
2569
+ #: admin.php:3113
2570
+ msgid "Call"
2571
+ msgstr ""
2572
+
2573
+ #: addons/migrator.php:362 admin.php:2896 admin.php:3874
2574
+ msgid "This feature requires %s version %s or later"
2575
+ msgstr ""
2576
+
2577
+ #: restorer.php:2116
2578
+ msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2579
+ msgstr ""
2580
+
2581
+ #: restorer.php:106
2582
+ msgid "Failed to unpack the archive"
2583
+ msgstr ""
2584
+
2585
+ #: restorer.php:259
2586
+ msgid "%s files have been extracted"
2587
+ msgstr ""
2588
+
2589
+ #: class-updraftplus.php:923
2590
+ msgid "Error - failed to download the file"
2591
+ msgstr ""
2592
+
2593
+ #: admin.php:2880
2594
+ msgid "Rescan local folder for new backup sets"
2595
+ msgstr ""
2596
+
2597
+ #: udaddons/updraftplus-addons.php:208
2598
+ msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2599
+ msgstr ""
2600
+
2601
+ #: udaddons/updraftplus-addons.php:208
2602
+ msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
2603
+ msgstr ""
2604
+
2605
+ #: udaddons/updraftplus-addons.php:208
2606
+ msgid "It has been tested up to version %s."
2607
+ msgstr ""
2608
+
2609
+ #: addons/sftp.php:425
2610
+ msgid "password/key"
2611
+ msgstr " الرقم السري/المفتاح"
2612
+
2613
+ #: addons/sftp.php:47
2614
+ msgid "SCP/SFTP password/key"
2615
+ msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
2616
+
2617
+ #: addons/sftp.php:308
2618
+ msgid "The key provided was not in a valid format, or was corrupt."
2619
+ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فاسد."
2620
+
2621
+ #: addons/sftp.php:371
2622
+ msgid "Your login may be either password or key-based - you only need to enter one, not both."
2623
+ msgstr "للدخول يجب ادخال إما الرقم السري أو المفتاح، وليس كلاهما."
2624
+
2625
+ #: addons/azure.php:508 addons/migrator.php:2198 addons/sftp.php:376
2626
+ #: admin.php:535
2627
+ msgid "Key"
2628
+ msgstr "مفتاح"
2629
+
2630
+ #: addons/importer.php:256 admin.php:4513 class-updraftplus.php:2267
2631
+ msgid "Backup created by: %s."
2632
+ msgstr "ولدت النسخة الإحتياطية من طرف: %s."
2633
+
2634
+ #: admin.php:4519
2635
+ msgid "Files and database WordPress backup (created by %s)"
2636
+ msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
2637
+
2638
+ #: admin.php:4519
2639
+ msgid "Files backup (created by %s)"
2640
+ msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
2641
+
2642
+ #: admin.php:4464 admin.php:4515
2643
+ msgid "unknown source"
2644
+ msgstr "مصدر غير معروف"
2645
+
2646
+ #: admin.php:4470
2647
+ msgid "Database (created by %s)"
2648
+ msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
2649
+
2650
+ #: admin.php:2881
2651
+ msgid "Rescan remote storage"
2652
+ msgstr "إعادة فحص الإستضافة الإستضافة السحابية"
2653
+
2654
+ #: admin.php:2879
2655
+ msgid "Upload backup files"
2656
+ msgstr "رفع ملفات النسخة الإحتياطية"
2657
+
2658
+ #: admin.php:2055
2659
+ msgid "This backup was created by %s, and can be imported."
2660
+ msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
2661
+
2662
+ #: admin.php:794
2663
+ msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
2664
+ msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
2665
+
2666
+ #: admin.php:794
2667
+ msgid "Read this page for a guide to possible causes and how to fix it."
2668
+ msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
2669
+
2670
+ #: admin.php:499 admin.php:500 class-updraftplus.php:2274
2671
+ 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))."
2672
+ msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
2673
+
2674
+ #: admin.php:499
2675
+ msgid "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."
2676
+ msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
2677
+
2678
+ #: admin.php:500 class-updraftplus.php:2274
2679
+ msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2680
+ msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
2681
+
2682
+ #: admin.php:1293 admin.php:4516 restorer.php:1337
2683
+ msgid "Backup created by unknown source (%s) - cannot be restored."
2684
+ msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
2685
+
2686
+ #: restorer.php:749 restorer.php:797
2687
+ msgid "The WordPress content folder (wp-content) was not found in this zip file."
2688
+ msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف المضغوط."
2689
+
2690
+ #: restorer.php:614
2691
+ msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2692
+ msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
2693
+
2694
+ #: methods/dropbox.php:281
2695
+ msgid "%s returned an unexpected HTTP response: %s"
2696
+ msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
2697
+
2698
+ #: addons/sftp.php:885
2699
+ msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2700
+ msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
2701
+
2702
+ #: methods/cloudfiles.php:234 methods/dropbox.php:262
2703
+ #: methods/openstack-base.php:95
2704
+ msgid "No settings were found"
2705
+ msgstr "لم يتم العثور على الإعدادات"
2706
+
2707
+ #: class-updraftplus.php:2395
2708
+ msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2709
+ msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
2710
+
2711
+ #: admin.php:468
2712
+ msgid "Rescanning remote and local storage for backup sets..."
2713
+ msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
2714
+
2715
+ #: addons/googlecloud.php:865 addons/googlecloud.php:880
2716
+ #: addons/s3-enhanced.php:46 addons/s3-enhanced.php:60
2717
+ msgid "(Read more)"
2718
+ msgstr "(قراءة المزيد)"
2719
+
2720
+ #: addons/migrator.php:738
2721
+ msgid "Adjusting multisite paths"
2722
+ msgstr "ضبط المسارات المتعددة"
2723
+
2724
+ #: addons/reporting.php:403
2725
+ msgid "Log all messages to syslog (only server admins are likely to want this)"
2726
+ msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
2727
+
2728
+ #: addons/morefiles.php:217
2729
+ msgid "Add another..."
2730
+ msgstr "اضافة أخرى..."
2731
+
2732
+ #: addons/morefiles.php:308
2733
+ msgid "No backup of directory: there was nothing found to back up"
2734
+ msgstr "لا توجد نسخ احتياطية للمجلدات: لم نجد أي شيء لعمل نسخة احتياطية"
2735
+
2736
+ #: addons/moredatabase.php:229 addons/morefiles.php:212
2737
+ #: addons/morefiles.php:223
2738
+ msgid "Remove"
2739
+ msgstr "حذف"
2740
+
2741
+ #: methods/s3.php:750
2742
+ msgid "Other %s FAQs."
2743
+ msgstr "الأسئلة الشائعة %s الأخرى."
2744
+
2745
+ #: admin.php:3968
2746
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
+ msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
2748
+
2749
+ #: addons/morefiles.php:262 admin.php:4106
2750
+ msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
2751
+ msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
2752
+
2753
+ #: restorer.php:2105
2754
+ msgid "Custom content type manager plugin data detected: clearing option cache"
2755
+ msgstr "تم الكشف عن بيانات لإضافة إدارة نوع المحتوى: تنضيف الخيارات"
2756
+
2757
+ #: methods/ftp.php:281
2758
+ msgid "encrypted FTP (explicit encryption)"
2759
+ msgstr "خادم FTP مشفر (تشفير واضح)"
2760
+
2761
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1367
2762
+ msgid "Your web server's PHP installation has these functions disabled: %s."
2763
+ msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
2764
+
2765
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1368
2766
+ msgid "Your hosting company must enable these functions before %s can work."
2767
+ msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
2768
+
2769
+ #: methods/ftp.php:279
2770
+ msgid "regular non-encrypted FTP"
2771
+ msgstr "خادم FTP غير مشفر اعتيادي"
2772
+
2773
+ #: methods/ftp.php:280
2774
+ msgid "encrypted FTP (implicit encryption)"
2775
+ msgstr "خادم FTP مشفر (تشفير غير واضح)"
2776
+
2777
+ #: restorer.php:1522
2778
+ msgid "Backup created by:"
2779
+ msgstr "نسخة احتياطية أنشأها:"
2780
+
2781
+ #: udaddons/options.php:482
2782
+ msgid "Available to claim on this site"
2783
+ msgstr "متوفر للطلب من هذا الموقع"
2784
+
2785
+ #: udaddons/updraftplus-addons.php:229
2786
+ msgid "To maintain your access to support, please renew."
2787
+ msgstr "للحفاظ على ولوجك للدعم الفني، من فضلك جدد اشتراكك."
2788
+
2789
+ #: udaddons/updraftplus-addons.php:217
2790
+ msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
2791
+ msgstr "وصولك المدفوع لتحديثات UpdraftPlus على %s إضافة بهذا الموقع انتهت صلاحيته."
2792
+
2793
+ #: udaddons/updraftplus-addons.php:221
2794
+ msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
2795
+ msgstr "وصولك المدفوع لتحديثات UpdraftPlus على %s إضافة بهذا الموقع اقتربت نهاية صلاحيته."
2796
+
2797
+ #: udaddons/updraftplus-addons.php:221 udaddons/updraftplus-addons.php:223
2798
+ msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2799
+ msgstr "للحفاظ على ولوجك لخدماتنا المدفوعة (من ضمنها التحديثات المستقبلية والتوافق مع نسخ ووردبريس المستقبلية) والدعم الفني، من فضلك جدد اشتراكك."
2800
+
2801
+ #: udaddons/updraftplus-addons.php:223
2802
+ msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
2803
+ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا الموقع اقتربت نهاية صلاحيته."
2804
+
2805
+ #: udaddons/updraftplus-addons.php:227
2806
+ msgid "Your paid access to UpdraftPlus support has expired."
2807
+ msgstr "وصولك المدفوع للدعم الفني بـ UpdraftPlus انتهت صلاحيته."
2808
+
2809
+ #: udaddons/updraftplus-addons.php:227
2810
+ msgid "To regain your access, please renew."
2811
+ msgstr "لاستعادة الوصول الخاصة بك، يرجى تجديد اشتراكك."
2812
+
2813
+ #: udaddons/updraftplus-addons.php:229
2814
+ msgid "Your paid access to UpdraftPlus support will soon expire."
2815
+ msgstr "وصولك المدفوع للدعم الفني الخاص بـ UpdraftPlus اقتربت نهاية صلاحيته."
2816
+
2817
+ #: udaddons/updraftplus-addons.php:180
2818
+ msgid "Dismiss from main dashboard (for %s weeks)"
2819
+ msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
2820
+
2821
+ #: udaddons/updraftplus-addons.php:215
2822
+ msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
2823
+ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا الموقع اقتربت نهاية صلاحيته. لن تصلك أي تحديثات جديدة لـ UpdraftPlus."
2824
+
2825
+ #: udaddons/updraftplus-addons.php:215 udaddons/updraftplus-addons.php:217
2826
+ msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2827
+ msgstr "للحفاظ على ولوجك للتحديثات (من ضمنها التحديثات المستقبلية والتوافق مع نسخ ووردبريس المستقبلية) والدعم الفني، من فضلك جدد اشتراكك. "
2828
+
2829
+ #: class-updraftplus.php:3790
2830
+ msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
+ msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
2832
+
2833
+ #: class-updraftplus.php:3797 class-updraftplus.php:3818
2834
+ msgid "The attempt to undo the double-compression failed."
2835
+ msgstr "فشل محاولة التراجع من الضغط المزدوج"
2836
+
2837
+ #: class-updraftplus.php:3820
2838
+ msgid "The attempt to undo the double-compression succeeded."
2839
+ msgstr "نجاح محاولة التراجع من الضغط المزدوج"
2840
+
2841
+ #: admin.php:1441
2842
+ msgid "Constants"
2843
+ msgstr "ثوابت"
2844
+
2845
+ #: backup.php:1566
2846
+ msgid "Failed to open database file for reading:"
2847
+ msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
2848
+
2849
+ #: backup.php:1399
2850
+ msgid "please wait for the rescheduled attempt"
2851
+ msgstr "فضلا انتظر محاولة إعادة الجدولة"
2852
+
2853
+ #: backup.php:1401
2854
+ msgid "No database tables found"
2855
+ msgstr "لم نجد أي جداول لقاعدة البيانات"
2856
+
2857
+ #: addons/reporting.php:185
2858
+ msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2859
+ msgstr "لاحظ أن رسائل التحذير استشارية - عملية النسخ الاحتياطي لا تتوقف بالنسبة لهم. بدلا من ذلك، ستوفر لك معلومات قد تجدها مفيدة، أو قد تشير إلى مصدر المشكلة إذا لم تنجح عملية النسخ الاحتياطي."
2860
+
2861
+ #: restorer.php:2003
2862
+ msgid "Database queries processed: %d in %.2f seconds"
2863
+ msgstr "تمت معالجة %d من استعلامات قاعدة البيانات في مدة %.2f ثانية"
2864
+
2865
+ #: addons/migrator.php:1237
2866
+ msgid "Searching and replacing reached row: %d"
2867
+ msgstr "جاري البحث واستبدال الصفوف: %d"
2868
+
2869
+ #: addons/onedrive.php:91 methods/dropbox.php:176
2870
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
+ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
2872
+
2873
+ #: addons/migrator.php:661
2874
+ msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2875
+ msgstr "تخطي هذا الجدول: بيانات هذا الجدول (%s) يجب الا تكون بحث / استبدال"
2876
+
2877
+ #: udaddons/updraftplus-addons.php:391 udaddons/updraftplus-addons.php:396
2878
+ msgid "Errors occurred:"
2879
+ msgstr "أخطاء حدثت:"
2880
+
2881
+ #: admin.php:4727
2882
+ msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
+ msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
2884
+
2885
+ #: admin.php:4012
2886
+ msgid "See this FAQ also."
2887
+ msgstr "تابع هذه التعليمات أيضا."
2888
+
2889
+ #: admin.php:3814
2890
+ msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
2891
+ msgstr "ان لم تختر أي خدمة للتخزين عن بعد، فكل ملفات النسخ الإحتياطية ستبقى مخزنة بسيرفرك. هذه العملية غير موصى بها (في حالة عدم تحميل هذه الملفات بجهازك الخاص)، لأنك بفقدان سيرفرك ستخسر معه ملفات النسخ الإحتياطية والموقع معا."
2892
+
2893
+ #: admin.php:2969
2894
+ msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr "استرجاع (إذا لزم الأمر) وإعداد ملفات النسخ الاحتياطي ..."
2896
+
2897
+ #: admin.php:1264
2898
+ msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
+ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %s ثانية فقط، ولا تسمح لوصول لهذا الحد. إن لم تتمكن من استرداد حجم كبير من البيانات بسبب هذا الحد، يمكنك الإتصال بشرك الإستضافة الخاصة بك (أو محاولة الإسترداد قطعة-قطعة)"
2900
+
2901
+ #: restorer.php:605
2902
+ msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
+ msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
2904
+
2905
+ #: admin.php:769 class-updraftplus.php:568
2906
+ 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 recommended value is %s seconds or more)"
2907
+ msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
2908
+
2909
+ #: addons/migrator.php:669
2910
+ msgid "Replacing in blogs/site table: from: %s to: %s"
2911
+ msgstr "استبدال جداول من مدونات/موقع: من: %s إلى:%s"
2912
+
2913
+ #: addons/migrator.php:247
2914
+ msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
2915
+ msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
2916
+
2917
+ #: addons/migrator.php:260
2918
+ msgid "%s: Skipping cache file (does not already exist)"
2919
+ msgstr "%s: تخطي ملف ذاكرة التخزين المؤقت (غير موجود مسبقا)"
2920
+
2921
+ #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
2922
+ #: includes/ftp.class.php:47
2923
+ msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
+ msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
2925
+
2926
+ #: admin.php:5062
2927
+ msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
+ msgstr "لم يتم العثور على تصميم موقعكم الحالي، لمنع توقف تحميل الموقع، تم استرجاع التصميم الإفتراضي."
2929
+
2930
+ #: admin.php:2247 admin.php:2257
2931
+ msgid "Restore failed..."
2932
+ msgstr "فشل في الإستعادة..."
2933
+
2934
+ #: addons/moredatabase.php:125 admin.php:1514
2935
+ msgid "Messages:"
2936
+ msgstr "رسائل:"
2937
+
2938
+ #: restorer.php:1884
2939
+ msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
+ msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
2941
+
2942
+ #: restorer.php:385
2943
+ msgid "The directory does not exist"
2944
+ msgstr "المجلد غير متوفر"
2945
+
2946
+ #: addons/cloudfiles-enhanced.php:247
2947
+ msgid "New User's Username"
2948
+ msgstr "اسم مستخدم جديد"
2949
+
2950
+ #: addons/cloudfiles-enhanced.php:248
2951
+ msgid "New User's Email Address"
2952
+ msgstr "عنوان بريد إلكتروني جديد للعضو"
2953
+
2954
+ #: addons/cloudfiles-enhanced.php:225
2955
+ msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
+ msgstr "قم بإدخال أسم/مفتاح API الخاص بك لخدمة Rackspace (بحيث يمكن مصادقة Rackspace لإنشاء مستخدمين جدد)، وأدخل اسم كستخدم جديد (فريد) وعنوان بريد إلكتروني للمستخدم الجديد واسم الحاوية."
2957
+
2958
+ #: addons/cloudfiles-enhanced.php:231
2959
+ msgid "US or UK Rackspace Account"
2960
+ msgstr "حساب الولايات المتحدة أو بريطانيا راك سبيس"
2961
+
2962
+ #: addons/cloudfiles-enhanced.php:245
2963
+ msgid "Admin Username"
2964
+ msgstr "اسم المستخدم للمدير"
2965
+
2966
+ #: addons/cloudfiles-enhanced.php:246
2967
+ msgid "Admin API Key"
2968
+ msgstr "مفتاح API الخاص بالمدير"
2969
+
2970
+ #: addons/cloudfiles-enhanced.php:55
2971
+ msgid "You need to enter a new username"
2972
+ msgstr "تحتاج إلى إدخال اسم مستخدم جديد"
2973
+
2974
+ #: addons/cloudfiles-enhanced.php:59
2975
+ msgid "You need to enter a container"
2976
+ msgstr "تحتاج إلى إدخال حاوية"
2977
+
2978
+ #: addons/cloudfiles-enhanced.php:64
2979
+ msgid "You need to enter a valid new email address"
2980
+ msgstr "تحتاج إلى إدخال عنوان بريد إلكتروني صالح جديد"
2981
+
2982
+ #: addons/cloudfiles-enhanced.php:152
2983
+ msgid "Conflict: that user or email address already exists"
2984
+ msgstr "خطأ: اسم المستخدم أو البريد الإلكتروني مسجل مسبقا"
2985
+
2986
+ #: addons/cloudfiles-enhanced.php:154 addons/cloudfiles-enhanced.php:158
2987
+ #: addons/cloudfiles-enhanced.php:163 addons/cloudfiles-enhanced.php:184
2988
+ #: addons/cloudfiles-enhanced.php:192 addons/cloudfiles-enhanced.php:197
2989
+ msgid "Cloud Files operation failed (%s)"
2990
+ msgstr "فشل عملية رفع الملفات للخدمة السحابية (%s)"
2991
+
2992
+ #: addons/cloudfiles-enhanced.php:209 addons/s3-enhanced.php:294
2993
+ msgid "Username: %s"
2994
+ msgstr "اسم المستخدم: %s"
2995
+
2996
+ #: addons/cloudfiles-enhanced.php:209
2997
+ msgid "Password: %s"
2998
+ msgstr "كلمة السر: %s"
2999
+
3000
+ #: addons/cloudfiles-enhanced.php:209
3001
+ msgid "API Key: %s"
3002
+ msgstr "مفتاح API: %s"
3003
+
3004
+ #: addons/cloudfiles-enhanced.php:222
3005
+ msgid "Create new API user and container"
3006
+ msgstr "خلق مستخدم وحاوية جديدة لمفتاح API "
3007
+
3008
+ #: addons/cloudfiles-enhanced.php:26
3009
+ msgid "Rackspace Cloud Files, enhanced"
3010
+ msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
3011
+
3012
+ #: addons/cloudfiles-enhanced.php:27
3013
+ msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
+ msgstr "اضافة قدرات محسنة لخدمة Rackspace "
3015
+
3016
+ #: addons/cloudfiles-enhanced.php:38
3017
+ msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
+ msgstr "إنشاء مستخدم API جديدة مع الوصول إلى هذه الحاوية فقط (بدلا من حسابك بالكامل)"
3019
+
3020
+ #: addons/cloudfiles-enhanced.php:47
3021
+ msgid "You need to enter an admin username"
3022
+ msgstr "تحتاج إلى إدخال اسم مستخدم مشرف"
3023
+
3024
+ #: addons/cloudfiles-enhanced.php:51
3025
+ msgid "You need to enter an admin API key"
3026
+ msgstr "تحتاج إلى إدخال مفتاح API المشرف"
3027
+
3028
+ #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:103
3029
+ msgid "Northern Virginia (IAD)"
3030
+ msgstr "ولاية فرجينيا الشمالية (IAD)"
3031
+
3032
+ #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:104
3033
+ msgid "Hong Kong (HKG)"
3034
+ msgstr "هونغ كونغ (HKG)"
3035
+
3036
+ #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:105
3037
+ msgid "London (LON)"
3038
+ msgstr "لندن (LON)"
3039
+
3040
+ #: methods/cloudfiles-new.php:119
3041
+ msgid "Cloud Files Username"
3042
+ msgstr "اسم المستخدم للخدمة السحابية"
3043
+
3044
+ #: methods/cloudfiles-new.php:122
3045
+ msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr "لإنشاء مستخدم فرعي ومفتاح API جديد لديه صلاحيات الوصول فقط إلى هذه الحاوية، قم بإستخدام هذه الإضافة."
3047
+
3048
+ #: methods/cloudfiles-new.php:127
3049
+ msgid "Cloud Files API Key"
3050
+ msgstr "مفتاح API للملفات السحابية"
3051
+
3052
+ #: addons/cloudfiles-enhanced.php:269 methods/cloudfiles-new.php:132
3053
+ msgid "Cloud Files Container"
3054
+ msgstr "حاوية الملفات السحابية"
3055
+
3056
+ #: methods/cloudfiles-new.php:85
3057
+ msgid "US or UK-based Rackspace Account"
3058
+ msgstr "حساب Rackspace بالولايات المتحدة أو المملكة المتحدة"
3059
+
3060
+ #: methods/cloudfiles-new.php:87
3061
+ msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
+ msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية"
3063
+
3064
+ #: addons/cloudfiles-enhanced.php:250 methods/cloudfiles-new.php:95
3065
+ msgid "Cloud Files Storage Region"
3066
+ msgstr "منطقة الملفات السحابة"
3067
+
3068
+ #: addons/cloudfiles-enhanced.php:254 methods/cloudfiles-new.php:100
3069
+ msgid "Dallas (DFW) (default)"
3070
+ msgstr "دالاس (DFW) (الافتراضي)"
3071
+
3072
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:101
3073
+ msgid "Sydney (SYD)"
3074
+ msgstr "سيدني (SYD)"
3075
+
3076
+ #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:102
3077
+ msgid "Chicago (ORD)"
3078
+ msgstr "شيكاغو (ORD)"
3079
+
3080
+ #: addons/cloudfiles-enhanced.php:149 addons/s3-enhanced.php:197
3081
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
+ #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
+ #: methods/openstack2.php:25
3084
+ msgid "Authorisation failed (check your credentials)"
3085
+ msgstr "فشل التفويض (راجع معلوماتك)"
3086
+
3087
+ #: addons/cloudfiles-enhanced.php:232 methods/cloudfiles-new.php:85
3088
+ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3090
+
3091
+ #: methods/updraftvault.php:509 udaddons/options.php:265
3092
+ msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3094
+
3095
+ #: admin.php:513 central/bootstrap.php:443
3096
+ msgid "Create"
3097
+ msgstr "خلق"
3098
+
3099
+ #: admin.php:475
3100
+ msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3102
+
3103
+ #: admin.php:476
3104
+ msgid "Trying..."
3105
+ msgstr "اعادة المحاولة..."
3106
+
3107
+ #: class-updraftplus.php:1262
3108
+ msgid "(when decrypted)"
3109
+ msgstr "(عندما تكون مفكوكة)"
3110
+
3111
+ #: admin.php:486 admin.php:5004
3112
+ msgid "Error data:"
3113
+ msgstr "خطأ بالبيانات:"
3114
+
3115
+ #: admin.php:4678
3116
+ msgid "Backup does not exist in the backup history"
3117
+ msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3118
+
3119
+ #: admin.php:3176
3120
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3121
+ msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3122
+
3123
+ #: restorer.php:1590
3124
+ msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
3126
+
3127
+ #: restorer.php:1471
3128
+ 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 (%s)"
3129
+ msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
3130
+
3131
+ #: restorer.php:1515
3132
+ msgid "<strong>Backup of:</strong> %s"
3133
+ msgstr "<strong>نسخة احطياتية لـ::</strong> %s"
3134
+
3135
+ #: restorer.php:1297
3136
+ msgid "New table prefix: %s"
3137
+ msgstr "بادئة جدول جديدة: %s"
3138
+
3139
+ #: restorer.php:956 restorer.php:970
3140
+ msgid "%s: This directory already exists, and will be replaced"
3141
+ msgstr "%s: هذا المجلد موجود مسبقا، سيتم استبداله"
3142
+
3143
+ #: restorer.php:986
3144
+ msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3145
+ msgstr "بذلا من الإحتفاظ أو نقل الملفات القديمة سيتم حذفها لأن الملفات لا تسمح بذلك"
3146
+
3147
+ #: restorer.php:103
3148
+ msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr "لا يمكن نقل الملفات من مكانها. تحقق من أذونات الملف."
3150
+
3151
+ #: restorer.php:96
3152
+ msgid "Moving old data out of the way..."
3153
+ msgstr "نقل البيانات القديمة بعيدا ..."
3154
+
3155
+ #: restorer.php:100
3156
+ msgid "Could not move old files out of the way."
3157
+ msgstr "لا يمكن نقل البيانات بعيدا."
3158
+
3159
+ #: restorer.php:102
3160
+ msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr "لا يمكن نقل الملفات من مكانها. تحقق من المجلد wp-content/upgrade. "
3162
+
3163
+ #: addons/reporting.php:380
3164
+ msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3165
+ msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
3166
+
3167
+ #: addons/reporting.php:394
3168
+ msgid "Add another address..."
3169
+ msgstr "إضافة عنوان آخر ..."
3170
+
3171
+ #: addons/reporting.php:287
3172
+ msgid " (with errors (%s))"
3173
+ msgstr "(مع وجود أخطاء (%s))"
3174
+
3175
+ #: addons/reporting.php:289
3176
+ msgid " (with warnings (%s))"
3177
+ msgstr "(مع وجود تحذيرات (%s))"
3178
+
3179
+ #: addons/reporting.php:319
3180
+ msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3181
+ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين البريد الإلكتروني ليتم استخدامها."
3182
+
3183
+ #: class-updraftplus.php:1231 class-updraftplus.php:1233
3184
+ msgid "files: %s"
3185
+ msgstr "ملفات:%s"
3186
+
3187
+ #: class-updraftplus.php:1258 class-updraftplus.php:1263
3188
+ msgid "%s checksum: %s"
3189
+ msgstr "%s الاختباري:%s"
3190
+
3191
+ #: addons/reporting.php:355
3192
+ msgid "Email reports"
3193
+ msgstr "تقارير البريد الإلكتروني"
3194
+
3195
+ #: addons/reporting.php:165
3196
+ msgid "Errors"
3197
+ msgstr "أخطاء"
3198
+
3199
+ #: addons/reporting.php:180
3200
+ msgid "Warnings"
3201
+ msgstr "تحذيرات"
3202
+
3203
+ #: addons/reporting.php:189
3204
+ msgid "Time taken:"
3205
+ msgstr "الوقت المستغرق:"
3206
+
3207
+ #: addons/reporting.php:190 admin.php:4291
3208
+ msgid "Uploaded to:"
3209
+ msgstr "تحميلها على:"
3210
+
3211
+ #: addons/reporting.php:235
3212
+ msgid "Debugging information"
3213
+ msgstr "معلومات التصحيح"
3214
+
3215
+ #: addons/reporting.php:123
3216
+ msgid "%d errors, %d warnings"
3217
+ msgstr "%d الأخطاء، %d تحذيرات"
3218
+
3219
+ #: addons/reporting.php:137
3220
+ msgid "%d hours, %d minutes, %d seconds"
3221
+ msgstr "%d ساعة،%d دقيقة، %d ثانية"
3222
+
3223
+ #: addons/reporting.php:142
3224
+ msgid "Backup Report"
3225
+ msgstr "تقرير النسخ الاحتياطي"
3226
+
3227
+ #: addons/reporting.php:150
3228
+ msgid "Backup began:"
3229
+ msgstr "بدأ النسخ الاحتياطي:"
3230
+
3231
+ #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:151
3232
+ msgid "Contains:"
3233
+ msgstr "يحتوي على:"
3234
+
3235
+ #: addons/reporting.php:162
3236
+ msgid "Errors / warnings:"
3237
+ msgstr "أخطاء / تحذيرات:"
3238
+
3239
+ #: addons/onedrive.php:549 methods/dropbox.php:496
3240
+ msgid "%s authentication"
3241
+ msgstr "%s مصادقة"
3242
+
3243
+ #: addons/onedrive.php:549 class-updraftplus.php:309 methods/dropbox.php:496
3244
+ #: methods/dropbox.php:510 methods/dropbox.php:605
3245
+ msgid "%s error: %s"
3246
+ msgstr "%s خطأ: %s"
3247
+
3248
+ #: addons/googlecloud.php:815 methods/dropbox.php:419
3249
+ msgid "%s logo"
3250
+ msgstr "%s الشعار"
3251
+
3252
+ #: methods/email.php:73
3253
+ msgid "Your site's admin email address (%s) will be used."
3254
+ msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3255
+
3256
+ #: methods/email.php:74
3257
+ msgid "For more options, use the \"%s\" add-on."
3258
+ msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
3259
+
3260
+ #: methods/s3.php:273
3261
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
+ msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3263
+
3264
+ #: methods/dropbox.php:195
3265
+ msgid "%s did not return the expected response - check your log file for more details"
3266
+ msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3267
+
3268
+ #: admin.php:522 methods/updraftvault.php:260 methods/updraftvault.php:305
3269
+ #: udaddons/options.php:244
3270
+ msgid "Connect"
3271
+ msgstr "الإتصال"
3272
+
3273
+ #: admin.php:3936
3274
+ msgid "For more reporting features, use the Reporting add-on."
3275
+ msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
3276
+
3277
+ #: class-updraftplus.php:3616
3278
+ msgid "(version: %s)"
3279
+ msgstr "(الإصدار: %s)"
3280
+
3281
+ #: addons/reporting.php:427 admin.php:466
3282
+ msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
3284
+
3285
+ #: addons/reporting.php:427 admin.php:465
3286
+ msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
3288
+
3289
+ #: backup.php:844
3290
+ msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
3292
+
3293
+ #: addons/reporting.php:232 backup.php:880
3294
+ msgid "The log file has been attached to this email."
3295
+ msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
3296
+
3297
+ #: backup.php:886
3298
+ msgid "Backed up: %s"
3299
+ msgstr "نسخ احتياطي: %s"
3300
+
3301
+ #: backup.php:925
3302
+ msgid "Backup contains:"
3303
+ msgstr "تحتوي النسخة الإحتياطية على:"
3304
+
3305
+ #: addons/reporting.php:149 backup.php:926
3306
+ msgid "Latest status:"
3307
+ msgstr "آخر التحديثات:"
3308
+
3309
+ #: admin.php:155 backup.php:836
3310
+ msgid "Files and database"
3311
+ msgstr "ملفات وقواعد البيانات"
3312
+
3313
+ #: backup.php:838
3314
+ msgid "Files (database backup has not completed)"
3315
+ msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
3316
+
3317
+ #: backup.php:838
3318
+ msgid "Files only (database was not part of this particular schedule)"
3319
+ msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
3320
+
3321
+ #: backup.php:841
3322
+ msgid "Database (files backup has not completed)"
3323
+ msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
3324
+
3325
+ #: backup.php:841
3326
+ msgid "Database only (files were not part of this particular schedule)"
3327
+ msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
3328
+
3329
+ #: options.php:185
3330
+ msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
+ msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
3332
+
3333
+ #: options.php:185
3334
+ msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
+ msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
3336
+
3337
+ #: options.php:185
3338
+ msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
3339
+ msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
3340
+
3341
+ #: options.php:185
3342
+ msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
3344
+
3345
+ #: options.php:185
3346
+ msgid "UpdraftPlus warning:"
3347
+ msgstr "تحذير UpdraftPlus :"
3348
+
3349
+ #: udaddons/options.php:488
3350
+ msgid "(or connect using the form on this page if you have already purchased it)"
3351
+ msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
3352
+
3353
+ #: udaddons/options.php:457
3354
+ msgid "You've got it"
3355
+ msgstr "كنت قد حصلت عليه"
3356
+
3357
+ #: udaddons/options.php:459
3358
+ msgid "Your version: %s"
3359
+ msgstr "الإصدار: %s"
3360
+
3361
+ #: udaddons/options.php:461 udaddons/options.php:463
3362
+ msgid "latest"
3363
+ msgstr "آخر"
3364
+
3365
+ #: udaddons/options.php:471
3366
+ msgid "please follow this link to update the plugin in order to get it"
3367
+ msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
3368
+
3369
+ #: udaddons/options.php:474
3370
+ msgid "please follow this link to update the plugin in order to activate it"
3371
+ msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
3372
+
3373
+ #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3374
+ msgid "UpdraftPlus Addons"
3375
+ msgstr "اضافات UpdraftPlus"
3376
+
3377
+ #: udaddons/options.php:381
3378
+ msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3379
+ msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
3380
+
3381
+ #: udaddons/options.php:423
3382
+ msgid "UpdraftPlus Support"
3383
+ msgstr "دعم UpdraftPlus"
3384
+
3385
+ #: udaddons/updraftplus-addons.php:682
3386
+ msgid "UpdraftPlus.Com responded, but we did not understand the response"
3387
+ msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
3388
+
3389
+ #: methods/updraftvault.php:555 udaddons/updraftplus-addons.php:725
3390
+ msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
+ msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
3392
+
3393
+ #: methods/updraftvault.php:596 udaddons/updraftplus-addons.php:765
3394
+ msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
+ msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
3396
+
3397
+ #: methods/updraftvault.php:582 methods/updraftvault.php:600
3398
+ #: udaddons/updraftplus-addons.php:768
3399
+ msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
+ msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
3401
+
3402
+ #: udaddons/options.php:94
3403
+ msgid "An update is available for UpdraftPlus - please follow this link to get it."
3404
+ msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
3405
+
3406
+ #: udaddons/updraftplus-addons.php:680
3407
+ msgid "We failed to successfully connect to UpdraftPlus.Com"
3408
+ msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
3409
+
3410
+ #: admin.php:3917 methods/email.php:74
3411
+ msgid "Reporting"
3412
+ msgstr "التقارير"
3413
+
3414
+ #: admin.php:1412
3415
+ msgid "Options (raw)"
3416
+ msgstr "خيارات (الخام)"
3417
+
3418
+ #: addons/reporting.php:425 admin.php:464
3419
+ msgid "Send a report only when there are warnings/errors"
3420
+ msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
3421
+
3422
+ #: restorer.php:1533
3423
+ msgid "Content URL:"
3424
+ msgstr "رابط المحتوى:"
3425
+
3426
+ #: restorer.php:100
3427
+ msgid "You should check the file ownerships and permissions in your WordPress installation"
3428
+ msgstr ""
3429
+
3430
+ #: admin.php:3840
3431
+ msgid "See also the \"More Files\" add-on from our shop."
3432
+ msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
3433
+
3434
+ #: backup.php:2931 class-updraftplus.php:588
3435
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
+ msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
3437
+
3438
+ #: class-updraftplus.php:565
3439
+ 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)"
3440
+ msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
3441
+
3442
+ #: udaddons/options.php:484
3443
+ msgid "You have an inactive purchase"
3444
+ msgstr "لديك شراء غير فعال"
3445
+
3446
+ #: udaddons/options.php:482 udaddons/options.php:484
3447
+ msgid "activate it on this site"
3448
+ msgstr "تنشيطة على هذا الموقع"
3449
+
3450
+ #: udaddons/options.php:488
3451
+ msgid "Get it from the UpdraftPlus.Com Store"
3452
+ msgstr "الحصول علية من متجر UpdraftPlus.Com"
3453
+
3454
+ #: udaddons/options.php:489
3455
+ msgid "Buy It"
3456
+ msgstr "شراء"
3457
+
3458
+ #: udaddons/options.php:547
3459
+ msgid "Manage Addons"
3460
+ msgstr "ادارة الأضافات"
3461
+
3462
+ #: udaddons/options.php:340
3463
+ msgid "An unknown response was received. Response was:"
3464
+ msgstr "تم تلقى رد غير معروف. الرد هو:"
3465
+
3466
+ #: udaddons/options.php:407
3467
+ msgid "An error occurred when trying to retrieve your add-ons."
3468
+ msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
3469
+
3470
+ #: udaddons/options.php:425
3471
+ msgid "Need to get support?"
3472
+ msgstr "هل انت بحاجة للحصول على الدعم؟"
3473
+
3474
+ #: udaddons/options.php:425
3475
+ msgid "Go here"
3476
+ msgstr "اذهب هنا"
3477
+
3478
+ #: udaddons/options.php:465
3479
+ msgid "(apparently a pre-release or withdrawn release)"
3480
+ msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
3481
+
3482
+ #: udaddons/options.php:471
3483
+ msgid "Available for this site (via your all-addons purchase)"
3484
+ msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
3485
+
3486
+ #: udaddons/options.php:474
3487
+ msgid "Assigned to this site"
3488
+ msgstr "تعيين إلى هذا الموقع"
3489
+
3490
+ #: udaddons/options.php:242
3491
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3492
+ msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
3493
+
3494
+ #: udaddons/options.php:271
3495
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
3496
+ msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
3497
+
3498
+ #: udaddons/options.php:272
3499
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
3500
+ msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
3501
+
3502
+ #: udaddons/options.php:281
3503
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
3504
+ msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
3505
+
3506
+ #: udaddons/options.php:290
3507
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
3508
+ msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
3509
+
3510
+ #: udaddons/options.php:337
3511
+ msgid "Please wait whilst we make the claim..."
3512
+ msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
3513
+
3514
+ #: udaddons/options.php:339
3515
+ msgid "Claim not granted - your account login details were wrong"
3516
+ msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
3517
+
3518
+ #: udaddons/options.php:120
3519
+ msgid "Your web server's version of PHP is too old ("
3520
+ msgstr "إصدار خادم الويب الخاص بك من PHP قديم جدا ("
3521
+
3522
+ #: udaddons/options.php:141
3523
+ msgid "Connect with your UpdraftPlus.Com account"
3524
+ msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
3525
+
3526
+ #: udaddons/options.php:172
3527
+ msgid "Not yet got an account (it's free)? Go get one!"
3528
+ msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
3529
+
3530
+ #: udaddons/options.php:183
3531
+ msgid "Forgotten your details?"
3532
+ msgstr "هل نسيت التفاصيل الخاصة بك؟"
3533
+
3534
+ #: udaddons/options.php:100
3535
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
3536
+ msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
3537
+
3538
+ #: udaddons/options.php:100 udaddons/options.php:102
3539
+ msgid "Go here to connect."
3540
+ msgstr "اذهب هنا للاتصال."
3541
+
3542
+ #: udaddons/options.php:109
3543
+ msgid "UpdraftPlus is not yet activated."
3544
+ msgstr "UpdraftPlus لم يتم تنشيطة حتى الأن."
3545
+
3546
+ #: udaddons/options.php:110
3547
+ msgid "Go here to activate it."
3548
+ msgstr "اذهب هنا لتنشيطه."
3549
+
3550
+ #: udaddons/options.php:113
3551
+ msgid "UpdraftPlus is not yet installed."
3552
+ msgstr "لم يتم تثبيت UpdraftPlus حتى الآن."
3553
+
3554
+ #: udaddons/options.php:113
3555
+ msgid "Go here to begin installing it."
3556
+ msgstr "اذهب هنا لبدء تثبيته."
3557
+
3558
+ #: udaddons/options.php:114
3559
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
3560
+ msgstr "على ما يبدو انة لديك المكون الأضافى Updraft مثبت - ربما تم تثبيتة بطريقة خاطئة؟"
3561
+
3562
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3563
+ msgid "Your web-server does not have the %s module installed."
3564
+ msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
3565
+
3566
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3567
+ msgid "Without it, encryption will be a lot slower."
3568
+ msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
3569
+
3570
+ #: admin.php:2902
3571
+ msgid "Drop backup files here"
3572
+ msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
3573
+
3574
+ #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
+ msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
3577
+
3578
+ #: class-updraftplus.php:3472
3579
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
+ msgstr "تريد المزيد من المميزات المدفوعة, مضمونة الدعم؟ قم بمراجعة UpdraftPlus.Com"
3581
+
3582
+ #: class-updraftplus.php:3482
3583
+ msgid "Check out WordShell"
3584
+ msgstr "تحقق من WordShell"
3585
+
3586
+ #: class-updraftplus.php:3482
3587
+ msgid "manage WordPress from the command line - huge time-saver"
3588
+ msgstr "إدارة ورد بريس من سطر الأوامر - لتوفير وقت كبير"
3589
+
3590
+ #: admin.php:472
3591
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
+ msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
3593
+
3594
+ #: admin.php:474
3595
+ msgid "The web server returned an error code (try again, or check your web server logs)"
3596
+ msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
3597
+
3598
+ #: admin.php:470
3599
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
+ msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
3601
+
3602
+ #: restorer.php:1527
3603
+ msgid "Site home:"
3604
+ msgstr "الصفحة الرئيسية للموقع:"
3605
+
3606
+ #: addons/morestorage.php:78
3607
+ msgid "Remote Storage Options"
3608
+ msgstr "خيارات التخزين البعيد"
3609
+
3610
+ #: addons/autobackup.php:249 addons/autobackup.php:985
3611
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
3612
+ msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
3613
+
3614
+ #: addons/autobackup.php:288 addons/autobackup.php:381
3615
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
3616
+ msgstr "(السجلات يمكن العثور عليها فى صفحة اعدادات UpdraftPlus كالمعتاد)..."
3617
+
3618
+ #: addons/azure.php:349 methods/stream-base.php:125 methods/stream-base.php:130
3619
+ msgid "Upload failed"
3620
+ msgstr "فشل التحميل"
3621
+
3622
+ #: admin.php:3806
3623
+ msgid "You can send a backup to more than one destination with an add-on."
3624
+ msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
3625
+
3626
+ #: admin.php:3394
3627
+ 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."
3628
+ msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
3629
+
3630
+ #: admin.php:3292
3631
+ msgid "(%s%%, file %s of %s)"
3632
+ msgstr "(%s%%, ملف %s من%s)"
3633
+
3634
+ #: addons/sftp.php:483
3635
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
3636
+ msgstr "فشل:لقد تمكنا من تسجيل الدخول والانتقال إلى الدليل المشار إليه،لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
3637
+
3638
+ #: addons/sftp.php:485
3639
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
3640
+ msgstr "فشل:تمكنا من تسجيل الدخول، لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
3641
+
3642
+ #: addons/autobackup.php:249 addons/autobackup.php:989 addons/lockadmin.php:132
3643
+ msgid "Read more about how this works..."
3644
+ msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
3645
+
3646
+ #: addons/sftp.php:402
3647
+ msgid "Use SCP instead of SFTP"
3648
+ msgstr "استخدام SCP بدلا من SFTP"
3649
+
3650
+ #: addons/sftp.php:45
3651
+ msgid "SCP/SFTP host setting"
3652
+ msgstr "اعداد استضافة SCP/SFTP"
3653
+
3654
+ #: addons/sftp.php:46
3655
+ msgid "SCP/SFTP user setting"
3656
+ msgstr "اعداد مستخدم SCP/SFTP"
3657
+
3658
+ #: methods/email.php:45
3659
+ msgid "Backup is of: %s."
3660
+ msgstr "النسخ الأحتياطى من: %s"
3661
+
3662
+ #: methods/email.php:58
3663
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
+ msgstr "محاولة ارسال النسخ الأحتياطى عن طريق البريد الألكترونى فشلت (من المحتمل ان يكون ملف النسخ الاحتياطى اكبر من المساحة المسموح بها فى البريد)"
3665
+
3666
+ #: admin.php:559
3667
+ msgid "%s settings test result:"
3668
+ msgstr "اعدادات نتيجة اختبار %s"
3669
+
3670
+ #: admin.php:4584
3671
+ 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."
3672
+ msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
3673
+
3674
+ #: admin.php:4582 admin.php:4584
3675
+ msgid "(Not finished)"
3676
+ msgstr "(غير منتهي)"
3677
+
3678
+ #: admin.php:3995
3679
+ 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)."
3680
+ msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
3681
+
3682
+ #: admin.php:3995
3683
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
+ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل الإضافات، لأن ذلك سوف يسبب الإعادة (نسخة احتياطية من نسخة احتياطية من نسخة احتياطية من......)."
3685
+
3686
+ #: admin.php:3301
3687
+ msgid "Waiting until scheduled time to retry because of errors"
3688
+ msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
3689
+
3690
+ #: admin.php:3306
3691
+ msgid "Backup finished"
3692
+ msgstr "الانتهاء من النسخ الاحتياطي"
3693
+
3694
+ #: admin.php:3356 central/bootstrap.php:405 central/bootstrap.php:412
3695
+ #: methods/updraftvault.php:340 methods/updraftvault.php:420
3696
+ msgid "Unknown"
3697
+ msgstr "غير معروف"
3698
+
3699
+ #: admin.php:3373
3700
+ msgid "next resumption: %d (after %ss)"
3701
+ msgstr "الاستئناف التالي: %d (بعد %ss)"
3702
+
3703
+ #: admin.php:3374
3704
+ msgid "last activity: %ss ago"
3705
+ msgstr "آخر نشاط: منذ %ss"
3706
+
3707
+ #: admin.php:3389
3708
+ msgid "Job ID: %s"
3709
+ msgstr "رقم الوظيفة: %s"
3710
+
3711
+ #: admin.php:3333
3712
+ msgid "table: %s"
3713
+ msgstr "الجدول: %s"
3714
+
3715
+ #: admin.php:3320
3716
+ msgid "Created database backup"
3717
+ msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
3718
+
3719
+ #: admin.php:3346
3720
+ msgid "Encrypting database"
3721
+ msgstr "تشفير قاعدة البيانات"
3722
+
3723
+ #: admin.php:3354
3724
+ msgid "Encrypted database"
3725
+ msgstr "قاعدة بيانات مشفرة"
3726
+
3727
+ #: admin.php:3285
3728
+ msgid "Uploading files to remote storage"
3729
+ msgstr "تحميل الملفات للمخزن البعيد"
3730
+
3731
+ #: admin.php:3297
3732
+ msgid "Pruning old backup sets"
3733
+ msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
3734
+
3735
+ #: admin.php:3266
3736
+ msgid "Creating file backup zips"
3737
+ msgstr "انشاء ملف النسخ الاحتياطى zips"
3738
+
3739
+ #: admin.php:3279
3740
+ msgid "Created file backup zips"
3741
+ msgstr "تم انشاء ملف النسخ الاحتياطى zips"
3742
+
3743
+ #: admin.php:3331
3744
+ msgid "Creating database backup"
3745
+ msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
3746
+
3747
+ #: admin.php:3261
3748
+ msgid "Backup begun"
3749
+ msgstr "بدأ النسخ الاحتياطى"
3750
+
3751
+ #: admin.php:2789
3752
+ msgid "Backups in progress:"
3753
+ msgstr "تقدم النسخ الأحتياطى:"
3754
+
3755
+ #: admin.php:773
3756
+ 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."
3757
+ msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
3758
+
3759
+ #: restorer.php:580 restorer.php:587
3760
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
+ msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
3762
+
3763
+ #: restorer.php:580
3764
+ msgid "folder"
3765
+ msgstr "مجلد"
3766
+
3767
+ #: restorer.php:587
3768
+ msgid "file"
3769
+ msgstr "ملف"
3770
+
3771
+ #: class-updraftplus.php:2492
3772
+ msgid "The backup has not finished; a resumption is scheduled"
3773
+ msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
3774
+
3775
+ #: class-updraftplus.php:1502
3776
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
+ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
3778
+
3779
+ #: addons/googlecloud.php:337 addons/onedrive.php:687
3780
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
+ #: methods/googledrive.php:239
3782
+ 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)."
3783
+ msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
3784
+
3785
+ #: admin.php:2370
3786
+ 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)."
3787
+ msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
3788
+
3789
+ #: addons/autobackup.php:113 addons/autobackup.php:972
3790
+ msgid "UpdraftPlus Automatic Backups"
3791
+ msgstr "UpdraftPlus النسخ الأحتياطى التلقائى"
3792
+
3793
+ #: addons/autobackup.php:993
3794
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
3795
+ msgstr "لا تقم بالخروج بعد الضغط على زر البدأ - انتظر حتى انتهاء النسخ الاحتياطى"
3796
+
3797
+ #: addons/autobackup.php:994 admin.php:515
3798
+ msgid "Proceed with update"
3799
+ msgstr "المضي قدما مع التحديث"
3800
+
3801
+ #: addons/autobackup.php:292 addons/autobackup.php:388
3802
+ msgid "Starting automatic backup..."
3803
+ msgstr "بدء النسخ الاحتياطي التلقائي ..."
3804
+
3805
+ #: addons/autobackup.php:342
3806
+ msgid "plugins"
3807
+ msgstr "الإضافات"
3808
+
3809
+ #: addons/autobackup.php:349
3810
+ msgid "themes"
3811
+ msgstr "الثيمات"
3812
+
3813
+ #: addons/autobackup.php:370
3814
+ msgid "You do not have sufficient permissions to update this site."
3815
+ msgstr "ليس لديك الصلاحيات الكافية لتحديث هذا الموقع."
3816
+
3817
+ #: addons/autobackup.php:381
3818
+ msgid "Creating database backup with UpdraftPlus..."
3819
+ msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات مع UpdraftPlus..."
3820
+
3821
+ #: addons/autobackup.php:390 addons/autobackup.php:518
3822
+ #: addons/autobackup.php:569
3823
+ msgid "Automatic Backup"
3824
+ msgstr "النسخ الاحتياطي التلقائي"
3825
+
3826
+ #: addons/autobackup.php:443
3827
+ msgid "Creating backup with UpdraftPlus..."
3828
+ msgstr "إنشاء النسخ الاحتياطي مع UpdraftPlus ..."
3829
+
3830
+ #: addons/autobackup.php:471
3831
+ msgid "Errors have occurred:"
3832
+ msgstr "حدثت الأخطاء:"
3833
+
3834
+ #: addons/autobackup.php:249
3835
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3836
+ msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
3837
+
3838
+ #: addons/autobackup.php:288
3839
+ msgid "Creating %s and database backup with UpdraftPlus..."
3840
+ msgstr "انشاء %s وقاعدة البيانات الاحتياطية عن طريق UpdraftPlus..."
3841
+
3842
+ #: addons/morefiles.php:106
3843
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
3844
+ msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
3845
+
3846
+ #: addons/morefiles.php:116
3847
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
3848
+ msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
3849
+
3850
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3851
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
3852
+ msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
3853
+
3854
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3855
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
3856
+ msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
3857
+
3858
+ #: admin.php:2171 admin.php:2561
3859
+ msgid "Support"
3860
+ msgstr "الدعم"
3861
+
3862
+ #: admin.php:2174
3863
+ msgid "More plugins"
3864
+ msgstr "مزيد من الملحقات"
3865
+
3866
+ #: class-updraftplus.php:3649
3867
+ 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."
3868
+ msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
3869
+
3870
+ #: class-updraftplus.php:3752
3871
+ msgid "This database backup is missing core WordPress tables: %s"
3872
+ msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
3873
+
3874
+ #: class-updraftplus.php:3757
3875
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
+ msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
3877
+
3878
+ #: class-updraftplus.php:3565
3879
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
+ msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
3881
+
3882
+ #: addons/autobackup.php:507 admin.php:733
3883
+ msgid "Update Plugin"
3884
+ msgstr "تحديث المكون الإضافي"
3885
+
3886
+ #: addons/autobackup.php:558 admin.php:737
3887
+ msgid "Update Theme"
3888
+ msgstr "تحديث الثيم"
3889
+
3890
+ #: admin.php:579 admin.php:746
3891
+ msgid "Dismiss (for %s weeks)"
3892
+ msgstr "رفض ( ل %s اسابيع)"
3893
+
3894
+ #: addons/autobackup.php:975 admin.php:580 admin.php:747
3895
+ msgid "Be safe with an automatic backup"
3896
+ msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
3897
+
3898
+ #: restorer.php:2084
3899
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
3900
+ msgstr "مسار الرفع (%s) غير موجود - إعادة ضبط (%s)"
3901
+
3902
+ #: admin.php:2333
3903
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3904
+ msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
3905
+
3906
+ #: admin.php:505
3907
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
3908
+ msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
3909
+
3910
+ #: admin.php:506
3911
+ msgid "This decryption key will be attempted:"
3912
+ msgstr "سيتم محاولة فتح مفتاح التشفير:"
3913
+
3914
+ #: admin.php:507
3915
+ msgid "Unknown server response:"
3916
+ msgstr "استجابة الملقم غير معروف:"
3917
+
3918
+ #: admin.php:508
3919
+ msgid "Unknown server response status:"
3920
+ msgstr "استجابة الخادم غير معروفة:"
3921
+
3922
+ #: admin.php:509
3923
+ msgid "The file was uploaded."
3924
+ msgstr "تم رفع الملف."
3925
+
3926
+ #: admin.php:501
3927
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3928
+ msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
3929
+
3930
+ #: admin.php:502
3931
+ msgid "Upload error:"
3932
+ msgstr "خطأ التحميل:"
3933
+
3934
+ #: admin.php:503
3935
+ 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)."
3936
+ msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
3937
+
3938
+ #: admin.php:504
3939
+ msgid "Upload error"
3940
+ msgstr "خطأ فى الرفع"
3941
+
3942
+ #: admin.php:491
3943
+ msgid "Delete from your web server"
3944
+ msgstr "حذف من خادم الويب الخاص بك"
3945
+
3946
+ #: admin.php:492
3947
+ msgid "Download to your computer"
3948
+ msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
3949
+
3950
+ #: admin.php:493
3951
+ msgid "and then, if you wish,"
3952
+ msgstr "وبعد ذلك، إذا كنت ترغب في ذلك،"
3953
+
3954
+ #: methods/s3.php:710
3955
+ msgid "Examples of S3-compatible storage providers:"
3956
+ msgstr "امثلة من مقدمى التخزين المتوافق-s3:"
3957
+
3958
+ #: admin.php:4954
3959
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3960
+ msgstr "لن يتم حذف اى ارشيف بعد فك الضغط عنة, بسبب عدم وجود سحابة التخزين لهذه النسخة الاحتياطية"
3961
+
3962
+ #: admin.php:4548
3963
+ msgid "(%d archive(s) in set)."
3964
+ msgstr "(%d الأرشيف(s) in set)."
3965
+
3966
+ #: admin.php:4551
3967
+ msgid "You appear to be missing one or more archives from this multi-archive set."
3968
+ msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
3969
+
3970
+ #: admin.php:3972
3971
+ msgid "Split archives every:"
3972
+ msgstr "تقسيم كل ارشيف:"
3973
+
3974
+ #: admin.php:482
3975
+ msgid "Error: the server sent an empty response."
3976
+ msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
3977
+
3978
+ #: admin.php:483
3979
+ msgid "Warnings:"
3980
+ msgstr "تحذيرات:"
3981
+
3982
+ #: addons/moredatabase.php:269
3983
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
3984
+ msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
3985
+
3986
+ #: admin.php:2066
3987
+ 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?"
3988
+ msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
3989
+
3990
+ #: admin.php:1341
3991
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
3992
+ msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
3993
+
3994
+ #: admin.php:1343
3995
+ 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."
3996
+ msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
3997
+
3998
+ #: admin.php:1345
3999
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4000
+ msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
4001
+
4002
+ #: admin.php:1025
4003
+ 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"
4004
+ msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4005
+
4006
+ #: admin.php:1245
4007
+ msgid "No such backup set exists"
4008
+ msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4009
+
4010
+ #: admin.php:1314
4011
+ msgid "File not found (you need to upload it): %s"
4012
+ msgstr "الملف غير موجود (تحتاج الى رفعة): %s"
4013
+
4014
+ #: admin.php:1316
4015
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4016
+ msgstr "تم العثور على الملف, لكن حجمة صفر ( تحتاج الى رفعة): %s"
4017
+
4018
+ #: admin.php:1321
4019
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4020
+ msgstr "تم العثور على الملف %s, لكن لدية حجم مختلف (%s) عن الذى توقعناة (%s) - قد يكون تالفا."
4021
+
4022
+ #: admin.php:1336
4023
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
4024
+ msgstr "مجموعة النسخ الأحتياطى متعددة الأرشيف لديها هذة الأرشيفات مفقودة: %s"
4025
+
4026
+ #: restorer.php:529
4027
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
4028
+ msgstr "فشل فى تحريك الدليل (تحقق من صلاحيات الملف ومساحة القرص): %s"
4029
+
4030
+ #: restorer.php:520
4031
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
4032
+ msgstr "فشل فى نقل الملف (تحقق من صلاحيات الملف و مساحة القرص): %s"
4033
+
4034
+ #: restorer.php:97
4035
+ msgid "Moving unpacked backup into place..."
4036
+ msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4037
+
4038
+ #: backup.php:2635 backup.php:2891
4039
+ msgid "Failed to open the zip file (%s) - %s"
4040
+ msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4041
+
4042
+ #: addons/morefiles.php:94
4043
+ msgid "WordPress root directory server path: %s"
4044
+ msgstr "مسار جذر الوردبريس فى الخادم: %s"
4045
+
4046
+ #: methods/s3.php:717
4047
+ msgid "... and many more!"
4048
+ msgstr "... وغيرها الكثير!"
4049
+
4050
+ #: methods/s3.php:755
4051
+ msgid "%s end-point"
4052
+ msgstr "نقطة النهاية %s "
4053
+
4054
+ #: admin.php:4873
4055
+ msgid "File is not locally present - needs retrieving from remote storage"
4056
+ msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4057
+
4058
+ #: methods/s3generic.php:41 methods/s3generic.php:49
4059
+ msgid "S3 (Compatible)"
4060
+ msgstr "S3 (متوافق)"
4061
+
4062
+ #: admin.php:4821
4063
+ msgid "Final checks"
4064
+ msgstr "الفحوصات النهائية"
4065
+
4066
+ #: admin.php:4860
4067
+ msgid "Looking for %s archive: file name: %s"
4068
+ msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4069
+
4070
+ #: admin.php:3978
4071
+ 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)."
4072
+ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأحتياطى الزائدة من السيرفر الخاص بك بعد انتهاء عملية النسخ الأحتياطى (أي بمعنى. اذا لم تقم بالتحديد, فأنة سوف تظل ايضا الملفات اللتى ارسللت عن بعد على السيرفر محلياً, وان الملفات اللتى يتم الأحتفاظ بها محليا لن تكون خاضعة لحدود الأبقاء)."
4073
+
4074
+ #: admin.php:3881
4075
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4076
+ msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4077
+
4078
+ #: admin.php:4095
4079
+ msgid "Your wp-content directory server path: %s"
4080
+ msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4081
+
4082
+ #: admin.php:498
4083
+ msgid "Raw backup history"
4084
+ msgstr "تاريخ النسخ الاحتياطي الخام"
4085
+
4086
+ #: admin.php:3117
4087
+ msgid "Show raw backup and file list"
4088
+ msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
4089
+
4090
+ #: admin.php:481
4091
+ msgid "Processing files - please wait..."
4092
+ msgstr "تجهيز الملفات - يرجى الأنتظار..."
4093
+
4094
+ #: admin.php:2870
4095
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4096
+ msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4097
+
4098
+ #: admin.php:2870 admin.php:5006
4099
+ msgid "Please consult this FAQ for help on what to do about it."
4100
+ msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4101
+
4102
+ #: class-updraftplus.php:3573
4103
+ msgid "Failed to open database file."
4104
+ msgstr "فشل فى فتح ملف قاعدة البيانات."
4105
+
4106
+ #: class-updraftplus.php:3553
4107
+ msgid "Failed to write out the decrypted database to the filesystem."
4108
+ msgstr "فشل فى كتابة قاعدة البيانات المشفرة الى ملفات النظام."
4109
+
4110
+ #: admin.php:1384
4111
+ msgid "Known backups (raw)"
4112
+ msgstr "النسخ الأحتياطى المعروفة (الخام)"
4113
+
4114
+ #: restorer.php:1270
4115
+ msgid "Using directory from backup: %s"
4116
+ msgstr "استخدام الدليل من النسخة الأحتياطية: %s"
4117
+
4118
+ #: restorer.php:879
4119
+ msgid "Files found:"
4120
+ msgstr "العثور على ملفات:"
4121
+
4122
+ #: restorer.php:885
4123
+ msgid "Unable to enumerate files in that directory."
4124
+ msgstr "غير قادر على وجود اى ملفات فى هذا الدليل."
4125
+
4126
+ #: restorer.php:1720
4127
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
4128
+ msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
4129
+
4130
+ #: restorer.php:1730
4131
+ msgid "Restoring table (%s)"
4132
+ msgstr "استعادة الجدول (%s)"
4133
+
4134
+ #: addons/migrator.php:312
4135
+ 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."
4136
+ msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4137
+
4138
+ #: admin.php:4895
4139
+ msgid "file is size:"
4140
+ msgstr "حجم الملف:"
4141
+
4142
+ #: addons/googlecloud.php:855 addons/migrator.php:350 addons/migrator.php:353
4143
+ #: addons/migrator.php:356 admin.php:773 admin.php:2338 admin.php:3142
4144
+ #: backup.php:2938 updraftplus.php:147
4145
+ msgid "Go here for more information."
4146
+ msgstr "اذهب هنا لمزيد من المعلومات."
4147
+
4148
+ #: admin.php:480
4149
+ msgid "Some files are still downloading or being processed - please wait."
4150
+ msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4151
+
4152
+ #: class-updraftplus.php:3621 class-updraftplus.php:3639
4153
+ 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."
4154
+ msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4155
+
4156
+ #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4157
+ msgid "%s login failure"
4158
+ msgstr "فشل تسجيل الدخول %s"
4159
+
4160
+ #: methods/ftp.php:111
4161
+ msgid "%s upload failed"
4162
+ msgstr "فشل ارسال الملف %s"
4163
+
4164
+ #: addons/fixtime.php:545
4165
+ msgid "Enter in format HH:MM (e.g. 14:22)."
4166
+ msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
4167
+
4168
+ #: addons/fixtime.php:545
4169
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
4170
+ msgstr "المنطقة الزمنية المستخدمة هى من اعدادات الورد بريس الخاصة بك, في إعدادات -> عام."
4171
+
4172
+ #: methods/dropbox.php:113
4173
+ msgid "Dropbox error: %s (see log file for more)"
4174
+ msgstr "خطأ فى الأسقاط: %s (تحقق من السجل لمزيد من المعلومات)"
4175
+
4176
+ #: methods/dropbox.php:323
4177
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
4178
+ msgstr "لا يبدو انة لديك التصريح ل %s (لحين الحذف)"
4179
+
4180
+ #: methods/dropbox.php:331
4181
+ msgid "Failed to access %s when deleting (see log file for more)"
4182
+ msgstr "فشل الوصول الى %s عند الحذف (تحقق من ملف السجل لمزيد من المعلومات)"
4183
+
4184
+ #: methods/dropbox.php:364
4185
+ msgid "You do not appear to be authenticated with %s"
4186
+ msgstr "لا يبدو انة تمت المصادقة مع: %s"
4187
+
4188
+ #: methods/cloudfiles.php:418
4189
+ msgid "Error - no such file exists at %s"
4190
+ msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4191
+
4192
+ #: methods/cloudfiles.php:422
4193
+ msgid "Error - failed to download the file from %s"
4194
+ msgstr "خطأ - فشل فى تحميل الملف من %s"
4195
+
4196
+ #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4197
+ msgid "%s error - failed to upload file"
4198
+ msgstr "خطأ %s - فشل فى ارسال الملف"
4199
+
4200
+ #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4201
+ #: methods/cloudfiles.php:409 methods/googledrive.php:823
4202
+ #: methods/openstack-base.php:319 methods/stream-base.php:261
4203
+ #: methods/stream-base.php:268 methods/stream-base.php:281
4204
+ msgid "%s Error"
4205
+ msgstr "خطأ %s"
4206
+
4207
+ #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4208
+ #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4209
+ #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4210
+ #: methods/openstack-base.php:32 methods/openstack-base.php:216
4211
+ #: methods/openstack-base.php:281 methods/openstack-base.php:353
4212
+ #: methods/openstack-base.php:356 methods/openstack-base.php:373
4213
+ #: methods/openstack-base.php:378
4214
+ msgid "%s authentication failed"
4215
+ msgstr "المصادقة فشلت %s"
4216
+
4217
+ #: class-updraftplus.php:851 methods/cloudfiles.php:211
4218
+ msgid "%s error - failed to re-assemble chunks"
4219
+ msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4220
+
4221
+ #: addons/googlecloud.php:384 addons/migrator.php:449 admin.php:2011
4222
+ #: admin.php:2058 admin.php:2066 class-updraftplus.php:691
4223
+ #: class-updraftplus.php:697 class-updraftplus.php:3541
4224
+ #: class-updraftplus.php:3543 class-updraftplus.php:3679
4225
+ #: class-updraftplus.php:3712 methods/googledrive.php:299 restorer.php:873
4226
+ msgid "Error: %s"
4227
+ msgstr "خطأ: %s"
4228
+
4229
+ #: admin.php:3668
4230
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
4231
+ msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4232
+
4233
+ #: admin.php:3666
4234
+ msgid "Backup directory specified does <b>not</b> exist."
4235
+ msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4236
+
4237
+ #: admin.php:3401 admin.php:3622 class-updraftplus.php:3621
4238
+ #: class-updraftplus.php:3639
4239
+ msgid "Warning: %s"
4240
+ msgstr "تحذير: %s"
4241
+
4242
+ #: admin.php:2474
4243
+ msgid "Last backup job run:"
4244
+ msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
4245
+
4246
+ #: backup.php:2033 backup.php:2063
4247
+ msgid "%s: unreadable file - could not be backed up"
4248
+ msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
4249
+
4250
+ #: backup.php:2657
4251
+ msgid "A very large file was encountered: %s (size: %s Mb)"
4252
+ msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
4253
+
4254
+ #: backup.php:1474
4255
+ 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"
4256
+ msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
4257
+
4258
+ #: backup.php:1585
4259
+ msgid "An error occurred whilst closing the final database file"
4260
+ msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
4261
+
4262
+ #: backup.php:871
4263
+ msgid "Warnings encountered:"
4264
+ msgstr "مصادفة تحذيرات:"
4265
+
4266
+ #: class-updraftplus.php:2480
4267
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
4268
+ msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4269
+
4270
+ #: class-updraftplus.php:601
4271
+ msgid "Your free disk space is very low - only %s Mb remain"
4272
+ msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4273
+
4274
+ #: addons/migrator.php:432
4275
+ msgid "Migrated site (from UpdraftPlus)"
4276
+ msgstr "المواقع المدمجة (من UpdraftPlus)"
4277
+
4278
+ #: addons/migrator.php:511
4279
+ msgid "<strong>ERROR</strong>: Site URL already taken."
4280
+ msgstr "<strong>خطأ</strong>: رابط الموقع موجود مسبقاً."
4281
+
4282
+ #: addons/migrator.php:456
4283
+ msgid "New site:"
4284
+ msgstr "الموقع الجديد:"
4285
+
4286
+ #: addons/migrator.php:370
4287
+ msgid "Information needed to continue:"
4288
+ msgstr "المعلومات اللازمة للأستمرار:"
4289
+
4290
+ #: addons/migrator.php:371
4291
+ msgid "Enter details for where this new site is to live within your multisite install:"
4292
+ msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
4293
+
4294
+ #: addons/migrator.php:316
4295
+ msgid "Processed plugin:"
4296
+ msgstr "المكون الأضافى:"
4297
+
4298
+ #: addons/migrator.php:327
4299
+ msgid "Network activating theme:"
4300
+ msgstr "تفعيل ثيم الشبكة:"
4301
+
4302
+ #: addons/sftp.php:38
4303
+ 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."
4304
+ msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4305
+
4306
+ #: addons/sftp.php:74
4307
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
4308
+ msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر الدخول او انشاء الدليل:"
4309
+
4310
+ #: methods/s3.php:731
4311
+ 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."
4312
+ msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4313
+
4314
+ #: methods/s3.php:970
4315
+ msgid "Please check your access credentials."
4316
+ msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4317
+
4318
+ #: addons/s3-enhanced.php:172 methods/s3.php:948
4319
+ msgid "The error reported by %s was:"
4320
+ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4321
+
4322
+ #: restorer.php:1287
4323
+ msgid "Please supply the requested information, and then continue."
4324
+ msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
4325
+
4326
+ #: restorer.php:1925
4327
+ msgid "Cannot drop tables, so deleting instead (%s)"
4328
+ msgstr "لا يمكن اسقاط الجدوال, بدلا من ذلك احذفها (%s)"
4329
+
4330
+ #: class-updraftplus.php:3690 restorer.php:1564
4331
+ msgid "Site information:"
4332
+ msgstr "معلومات عن الموقع:"
4333
+
4334
+ #: restorer.php:1908
4335
+ msgid "Cannot create new tables, so skipping this command (%s)"
4336
+ msgstr "لا يمكن إنشاء جداول جديدة، حتى تخطى هذا الأمر (%s)"
4337
+
4338
+ #: addons/migrator.php:312 admin.php:2333 class-updraftplus.php:3683
4339
+ #: restorer.php:1441 restorer.php:1470 restorer.php:1884
4340
+ msgid "Warning:"
4341
+ msgstr "تحذير:"
4342
+
4343
+ #: restorer.php:1442
4344
+ 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."
4345
+ msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
4346
+
4347
+ #: class-updraftplus.php:3675 restorer.php:105
4348
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4349
+ msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
4350
+
4351
+ #: admin.php:4848
4352
+ 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."
4353
+ msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
4354
+
4355
+ #: admin.php:4151 methods/updraftvault.php:244
4356
+ 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."
4357
+ msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
4358
+
4359
+ #: admin.php:516
4360
+ msgid "Close"
4361
+ msgstr "اغلق"
4362
+
4363
+ #: addons/autobackup.php:294 addons/autobackup.php:385 admin.php:473
4364
+ #: methods/remotesend.php:71 methods/remotesend.php:79
4365
+ #: methods/remotesend.php:220 methods/remotesend.php:237
4366
+ msgid "Unexpected response:"
4367
+ msgstr "استجابة غير متوقعة:"
4368
+
4369
+ #: addons/reporting.php:423 admin.php:469
4370
+ msgid "To send to more than one address, separate each address with a comma."
4371
+ msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
4372
+
4373
+ #: admin.php:496
4374
+ msgid "PHP information"
4375
+ msgstr "معلومات PHP"
4376
+
4377
+ #: admin.php:3082
4378
+ msgid "show PHP information (phpinfo)"
4379
+ msgstr "اظهار معلومات PHP التالى (phpinfo)"
4380
+
4381
+ #: admin.php:3102
4382
+ msgid "zip executable found:"
4383
+ msgstr "وجد ملف مضغوط قابل للتنفيذ:"
4384
+
4385
+ #: admin.php:2483
4386
+ msgid "Migrate Site"
4387
+ msgstr "تصدير الموقع"
4388
+
4389
+ #: addons/migrator.php:168
4390
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4391
+ msgstr "<a href=\"%s\"> اقرأ هذة المقالة لمعرفة كيف يتم ذلك خطوة بخطوة.</a>"
4392
+
4393
+ #: admin.php:2488
4394
+ msgid "Do you want to migrate or clone/duplicate a site?"
4395
+ msgstr "هل تريد ترحيل او استنساخ / تكرار الموقع؟"
4396
+
4397
+ #: admin.php:2488
4398
+ 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."
4399
+ msgstr "اذا, قم بتجربة البرنامج الأضافى \"Migrator\". بعد استخدامة لمرة واحدة. سوف تجد انك قمت بتوفير سعر شراء الادوات الاخرى و ايضا الوقت الذى يتم استخدامة لنقل الموقع يدوياً."
4400
+
4401
+ #: admin.php:2488
4402
+ msgid "Get it here."
4403
+ msgstr "احصل عليه من هنا."
4404
+
4405
+ #: admin.php:2958
4406
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
4407
+ msgstr "جارى الحذف...يرجى اتاحة الوقت لأكمال الأتصال مع التخزين البعيد."
4408
+
4409
+ #: admin.php:2957
4410
+ msgid "Also delete from remote storage"
4411
+ msgstr "حذف ايضاً من التخزين البعيد"
4412
+
4413
+ #: admin.php:2816
4414
+ msgid "Latest UpdraftPlus.com news:"
4415
+ msgstr "اخر اخبار UpdraftPlus.com:"
4416
+
4417
+ #: admin.php:2449
4418
+ msgid "Clone/Migrate"
4419
+ msgstr "استنساخ/ترحيل"
4420
+
4421
+ #: admin.php:2169
4422
+ msgid "News"
4423
+ msgstr "اخبار"
4424
+
4425
+ #: admin.php:2168
4426
+ msgid "Premium"
4427
+ msgstr "مميز"
4428
+
4429
+ #: admin.php:1628
4430
+ msgid "Local archives deleted: %d"
4431
+ msgstr "الأرشيفات المحلية المحذوفة: %d"
4432
+
4433
+ #: admin.php:1629
4434
+ msgid "Remote archives deleted: %d"
4435
+ msgstr "الأرشيفات عن بعد المحذوفة: %d"
4436
+
4437
+ #: backup.php:157
4438
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4439
+ msgstr "%s - لا يمكن دعم هذا الكيان; دليل المقابلة غير موجود (%s)"
4440
+
4441
+ #: admin.php:1554
4442
+ msgid "Backup set not found"
4443
+ msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
4444
+
4445
+ #: class-updraftplus.php:3499
4446
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4447
+ msgstr "اشترك فى مدونة UpdraftPlus للحصول على احدث الأخبار والعروض"
4448
+
4449
+ #: class-updraftplus.php:3499
4450
+ msgid "Blog link"
4451
+ msgstr "رابط المدونة"
4452
+
4453
+ #: class-updraftplus.php:3499
4454
+ msgid "RSS link"
4455
+ msgstr "رابط RSS"
4456
+
4457
+ #: admin.php:558
4458
+ msgid "Testing %s Settings..."
4459
+ msgstr "اختبار اعدادات %s ..."
4460
+
4461
+ #: admin.php:2892
4462
+ 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."
4463
+ msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
4464
+
4465
+ #: admin.php:789
4466
+ msgid "Notice"
4467
+ msgstr "لاحظ"
4468
+
4469
+ #: admin.php:789
4470
+ 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."
4471
+ msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
4472
+
4473
+ #: backup.php:853
4474
+ msgid "Errors encountered:"
4475
+ msgstr "مصادفة اخطاء:"
4476
+
4477
+ #: admin.php:467
4478
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4479
+ msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
4480
+
4481
+ #: admin.php:479
4482
+ msgid "Begun looking for this entity"
4483
+ msgstr "بدأ البحث عن هذا الكيان"
4484
+
4485
+ #: addons/migrator.php:1090
4486
+ msgid "SQL update commands run:"
4487
+ msgstr "تشغيل اوامر تحديث SQL:"
4488
+
4489
+ #: addons/migrator.php:1091 admin.php:484
4490
+ msgid "Errors:"
4491
+ msgstr "الأخطاء:"
4492
+
4493
+ #: addons/migrator.php:1092
4494
+ msgid "Time taken (seconds):"
4495
+ msgstr "الوقت المستغرق (ثانية):"
4496
+
4497
+ #: addons/migrator.php:1228
4498
+ msgid "rows: %d"
4499
+ msgstr "الصفوف: %d"
4500
+
4501
+ #: addons/migrator.php:1348
4502
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
4503
+ msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
4504
+
4505
+ #: addons/dropbox-folders.php:26
4506
+ msgid "Store at"
4507
+ msgstr "المتجر فى"
4508
+
4509
+ #: addons/migrator.php:905
4510
+ msgid "Nothing to do: the site URL is already: %s"
4511
+ msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
4512
+
4513
+ #: addons/migrator.php:916
4514
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
4515
+ msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
4516
+
4517
+ #: addons/migrator.php:932
4518
+ msgid "Database search and replace: replace %s in backup dump with %s"
4519
+ msgstr "البحث والأستبدال فى قاعدة البيانات: استبدل %s فى تفريغ النسخ الأحتياطى مع %s"
4520
+
4521
+ #: addons/migrator.php:972
4522
+ msgid "Could not get list of tables"
4523
+ msgstr "لا يمكن الحصول على قائمة الجداول"
4524
+
4525
+ #: addons/migrator.php:1087
4526
+ msgid "Tables examined:"
4527
+ msgstr "فحص الجداول:"
4528
+
4529
+ #: addons/migrator.php:1088
4530
+ msgid "Rows examined:"
4531
+ msgstr "فحص الصفوف:"
4532
+
4533
+ #: addons/migrator.php:1089
4534
+ msgid "Changes made:"
4535
+ msgstr "التغييرات التي تم إجراؤها:"
4536
+
4537
+ #: addons/sftp.php:280
4538
+ msgid "%s Error: Failed to download"
4539
+ msgstr "خطأ %s: فشل التحميل"
4540
+
4541
+ #: addons/moredatabase.php:232 addons/sftp.php:347
4542
+ msgid "Host"
4543
+ msgstr "الاستضافة"
4544
+
4545
+ #: addons/sftp.php:354
4546
+ msgid "Port"
4547
+ msgstr "المنفذ"
4548
+
4549
+ #: addons/lockadmin.php:141 addons/moredatabase.php:234 addons/sftp.php:368
4550
+ #: methods/openstack2.php:127 methods/updraftvault.php:304
4551
+ #: udaddons/options.php:145
4552
+ msgid "Password"
4553
+ msgstr "كلمة السر"
4554
+
4555
+ #: addons/sftp.php:393
4556
+ msgid "Directory path"
4557
+ msgstr "مسار الدليل"
4558
+
4559
+ #: addons/sftp.php:395
4560
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
4561
+ msgstr "حيث لتغير الدليل الى بعد تسجيل الدخول - غالبا ما يكون هذا هو نسبة الى الدليل الرئيسى الخاص بك."
4562
+
4563
+ #: addons/sftp.php:417
4564
+ msgid "host name"
4565
+ msgstr "اسم المضيف"
4566
+
4567
+ #: addons/sftp.php:421 methods/openstack2.php:142
4568
+ msgid "username"
4569
+ msgstr "اسم المستخدم"
4570
+
4571
+ #: methods/ftp.php:359 methods/openstack2.php:147
4572
+ msgid "password"
4573
+ msgstr "كلمة السر"
4574
+
4575
+ #: addons/sftp.php:430
4576
+ msgid "Failure: Port must be an integer."
4577
+ msgstr "فشل: المنفذ يجب ان يكون عدد صحيح."
4578
+
4579
+ #: addons/fixtime.php:545
4580
+ msgid "starting from next time it is"
4581
+ msgstr "ابتداء من المرة القادمة انها"
4582
+
4583
+ #: addons/multisite.php:174
4584
+ msgid "Multisite Install"
4585
+ msgstr "تثبيت الموقع المتعدد"
4586
+
4587
+ #: addons/multisite.php:180 udaddons/options.php:225
4588
+ msgid "You do not have sufficient permissions to access this page."
4589
+ msgstr "ليس لديك الصلاحيات الكافية لدخول هذة الصفحة."
4590
+
4591
+ #: addons/multisite.php:194
4592
+ msgid "You do not have permission to access this page."
4593
+ msgstr "ليس لديك الصلاحيات لدخول هذة الصفحة."
4594
+
4595
+ #: addons/migrator.php:356 addons/multisite.php:610
4596
+ msgid "Must-use plugins"
4597
+ msgstr "لابد من استخدام الأضافات"
4598
+
4599
+ #: addons/multisite.php:617
4600
+ msgid "Blog uploads"
4601
+ msgstr "مدونة الملفات المرفوعة"
4602
+
4603
+ #: addons/migrator.php:529
4604
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
4605
+ msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
4606
+
4607
+ #: addons/migrator.php:529
4608
+ msgid "Search and replace site location in the database (migrate)"
4609
+ msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
4610
+
4611
+ #: addons/migrator.php:529
4612
+ msgid "(learn more)"
4613
+ msgstr "(مزيد من المعلومات)"
4614
+
4615
+ #: addons/migrator.php:765 addons/migrator.php:1069
4616
+ msgid "Failed: the %s operation was not able to start."
4617
+ msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
4618
+
4619
+ #: addons/migrator.php:767 addons/migrator.php:1071
4620
+ msgid "Failed: we did not understand the result returned by the %s operation."
4621
+ msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
4622
+
4623
+ #: addons/migrator.php:839
4624
+ msgid "Database: search and replace site URL"
4625
+ msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
4626
+
4627
+ #: addons/migrator.php:843
4628
+ msgid "This option was not selected."
4629
+ msgstr "لم يتم تحديد هذا الخيار."
4630
+
4631
+ #: addons/migrator.php:877 addons/migrator.php:881 addons/migrator.php:885
4632
+ #: addons/migrator.php:890 addons/migrator.php:894 addons/migrator.php:899
4633
+ msgid "Error: unexpected empty parameter (%s, %s)"
4634
+ msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
4635
+
4636
+ #: addons/morefiles.php:86
4637
+ msgid "The above files comprise everything in a WordPress installation."
4638
+ msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
4639
+
4640
+ #: addons/morefiles.php:93
4641
+ msgid "WordPress core (including any additions to your WordPress root directory)"
4642
+ msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
4643
+
4644
+ #: addons/morefiles.php:179
4645
+ msgid "More Files"
4646
+ msgstr "ملفات أخرى"
4647
+
4648
+ #: addons/morefiles.php:211 addons/morefiles.php:222
4649
+ msgid "Enter the directory:"
4650
+ msgstr "أدخل الدليل:"
4651
+
4652
+ #: addons/morefiles.php:200
4653
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
4654
+ msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
4655
+
4656
+ #: addons/morefiles.php:200
4657
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
4658
+ msgstr "إذا استخدمته، أدخل مسار مطلق (هذا ليس متعلقا بتنصيب الووردبريس)."
4659
+
4660
+ #: addons/morefiles.php:202
4661
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
4662
+ msgstr "كن حذرا مما تدخل - إذا قمت بالدخول / عندها سيقوم بعمل نسخة مضغوطة من كامل سيرفرك الخاص."
4663
+
4664
+ #: addons/morefiles.php:442
4665
+ msgid "No backup of %s directories: there was nothing found to back up"
4666
+ msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
4667
+
4668
+ #: addons/sftp.php:38
4669
+ 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."
4670
+ msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
4671
+
4672
+ #: addons/sftp.php:38
4673
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
4674
+ msgstr "يتم استخدام التشفير الصريح بشكل افتراضي. لإجبار التشفير الضمني (منفذ 990)، قم بإضافة :990 لخادم بروتوكول نقل الملفات الخاصة بك أدناه."
4675
+
4676
+ #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
4677
+ msgid "No %s found"
4678
+ msgstr "لم يتم العثور على %s "
4679
+
4680
+ #: addons/sftp.php:460
4681
+ msgid "Check your file permissions: Could not successfully create and enter:"
4682
+ msgstr "تحقق من أذونات الملف الخاص بك: تعذر الإنشاء والدخول بنجاح :"
4683
+
4684
+ #: methods/ftp.php:320
4685
+ msgid "Needs to already exist"
4686
+ msgstr "يحتاج إلى وجود بالفعل"
4687
+
4688
+ #: methods/ftp.php:351
4689
+ msgid "Failure: No server details were given."
4690
+ msgstr "خطأ: ولم تعط أية تفاصيل خادم."
4691
+
4692
+ #: methods/ftp.php:369
4693
+ msgid "Failure: we did not successfully log in with those credentials."
4694
+ msgstr "خطأ: لم نتمكن من تسجيل الدخول بنجاح."
4695
+
4696
+ #: methods/ftp.php:378
4697
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4698
+ msgstr "نجاح: نجحنا في تسجيل الدخول، وتأكيد قدرتنا على إنشاء ملف في الدليل المعطى (نوع تسجيل الدخول:"
4699
+
4700
+ #: methods/ftp.php:381
4701
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4702
+ msgstr "فشل: نجحنا في تسجيل الدخول، لكن لا يمكننا إنشاء ملف في الدليل المعطى."
4703
+
4704
+ #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4705
+ #: methods/addon-base.php:97 methods/addon-base.php:128
4706
+ #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
4707
+ #: methods/googledrive.php:146 methods/stream-base.php:31
4708
+ #: methods/stream-base.php:145 methods/stream-base.php:180
4709
+ #: methods/stream-base.php:245
4710
+ msgid "No %s settings were found"
4711
+ msgstr "تم العثور على أية إعدادات %s"
4712
+
4713
+ #: methods/stream-base.php:107 methods/stream-base.php:111
4714
+ msgid "Chunk %s: A %s error occurred"
4715
+ msgstr "قطعة %s: حدث خطأ %s"
4716
+
4717
+ #: methods/stream-base.php:268
4718
+ msgid "Error opening remote file: Failed to download"
4719
+ msgstr "خطأ في فتح الملف : فشل في التحميل"
4720
+
4721
+ #: methods/stream-base.php:281
4722
+ msgid "Local write failed: Failed to download"
4723
+ msgstr "فشلت الكتابة المحلية: فشل تحميل"
4724
+
4725
+ #: addons/webdav.php:42
4726
+ msgid "WebDAV URL"
4727
+ msgstr "رابط WEBDAV"
4728
+
4729
+ #: addons/webdav.php:46
4730
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
4731
+ msgstr "قم بإدخال العنوان كاملا، بدءا بـ webdav:// أو webdavs:// بما في ذلك المسار، اسم المستخدم، كلمة المرور والبورت على النحو المطلوب - على سبيل المثال %s"
4732
+
4733
+ #: addons/googlecloud.php:626 addons/googlecloud.php:660
4734
+ #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:3454 admin.php:3489
4735
+ #: admin.php:3498 methods/addon-base.php:284 methods/stream-base.php:297
4736
+ msgid "Failed"
4737
+ msgstr "فشل"
4738
+
4739
+ #: methods/addon-base.php:294 methods/stream-base.php:311
4740
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4741
+ msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
4742
+
4743
+ #: addons/morefiles.php:63 addons/morefiles.php:442
4744
+ msgid "WordPress Core"
4745
+ msgstr "لب الووردبريس"
4746
+
4747
+ #: addons/morefiles.php:67
4748
+ msgid "Over-write wp-config.php"
4749
+ msgstr "إعادة كتابة wp-config.php"
4750
+
4751
+ #: methods/dropbox.php:513 methods/dropbox.php:515
4752
+ msgid "you have authenticated your %s account"
4753
+ msgstr "تم المصادقة على %s حسابك"
4754
+
4755
+ #: methods/dropbox.php:518
4756
+ msgid "though part of the returned information was not as expected - your mileage may vary"
4757
+ msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
4758
+
4759
+ #: addons/onedrive.php:584 methods/dropbox.php:522
4760
+ msgid "Your %s account name: %s"
4761
+ msgstr "اسم الحساب %s الخاص بك: %s"
4762
+
4763
+ #: methods/ftp.php:303
4764
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4765
+ msgstr "UpdraftPlus تدعم فقط حسابات FTP الغير مشفرة"
4766
+
4767
+ #: methods/ftp.php:303
4768
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4769
+ msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
4770
+
4771
+ #: methods/s3.php:681
4772
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4773
+ msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
4774
+
4775
+ #: methods/s3.php:434 methods/s3.php:608 methods/s3.php:687
4776
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4777
+ msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
4778
+
4779
+ #: methods/s3.php:746
4780
+ 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."
4781
+ msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
4782
+
4783
+ #: methods/s3.php:748
4784
+ msgid "If you see errors about SSL certificates, then please go here for help."
4785
+ msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
4786
+
4787
+ #: methods/s3.php:783
4788
+ msgid "%s access key"
4789
+ msgstr "مفتاح الوصول %s"
4790
+
4791
+ #: methods/s3.php:787
4792
+ msgid "%s secret key"
4793
+ msgstr "المفتاح السرى %s"
4794
+
4795
+ #: methods/s3.php:791
4796
+ msgid "%s location"
4797
+ msgstr "المكان %s"
4798
+
4799
+ #: methods/s3.php:792
4800
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4801
+ msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
4802
+
4803
+ #: methods/s3.php:900
4804
+ msgid "API secret"
4805
+ msgstr "API السرية"
4806
+
4807
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:922
4808
+ msgid "Failure: No bucket details were given."
4809
+ msgstr "فشل: لم ترد تفاصيل الباكت."
4810
+
4811
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:940
4812
+ msgid "Region"
4813
+ msgstr "المنطقة"
4814
+
4815
+ #: methods/s3.php:946
4816
+ 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)."
4817
+ msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
4818
+
4819
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4820
+ #: methods/s3.php:970
4821
+ msgid "Failure"
4822
+ msgstr "فشل"
4823
+
4824
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4825
+ #: methods/s3.php:970
4826
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4827
+ msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
4828
+
4829
+ #: addons/googlecloud.php:689 methods/s3.php:960
4830
+ msgid "We accessed the bucket, and were able to create files within it."
4831
+ msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
4832
+
4833
+ #: methods/s3.php:963
4834
+ msgid "The communication with %s was encrypted."
4835
+ msgstr "التواصل مع %s كان مشفر."
4836
+
4837
+ #: methods/s3.php:965
4838
+ msgid "The communication with %s was not encrypted."
4839
+ msgstr "التواصل مع %s كان غير مشفر."
4840
+
4841
+ #: methods/dropbox.php:100 methods/dropbox.php:108
4842
+ msgid "You do not appear to be authenticated with Dropbox"
4843
+ msgstr "لا يبدو ان المصادقة مع Dropbox"
4844
+
4845
+ #: methods/dropbox.php:193 methods/dropbox.php:214 methods/dropbox.php:230
4846
+ msgid "error: failed to upload file to %s (see log file for more)"
4847
+ msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل لمزيد من التفاصيل)"
4848
+
4849
+ #: methods/dropbox.php:438
4850
+ msgid "Need to use sub-folders?"
4851
+ msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
4852
+
4853
+ #: methods/dropbox.php:438
4854
+ msgid "Backups are saved in"
4855
+ msgstr "يتم حفظ النسخ الأحتياطية فى"
4856
+
4857
+ #: methods/dropbox.php:438
4858
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4859
+ msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
4860
+
4861
+ #: methods/dropbox.php:438
4862
+ msgid "there's an add-on for that."
4863
+ msgstr "هناك اضافة لذلك."
4864
+
4865
+ #: methods/cloudfiles.php:462
4866
+ msgid "US or UK Cloud"
4867
+ msgstr "سحابة الولايات المتحدة او المملكة المتحدة"
4868
+
4869
+ #: addons/cloudfiles-enhanced.php:235 methods/cloudfiles-new.php:88
4870
+ #: methods/cloudfiles.php:465
4871
+ msgid "US (default)"
4872
+ msgstr "الولايات المتحدة (افتراضى)"
4873
+
4874
+ #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:89
4875
+ #: methods/cloudfiles.php:466
4876
+ msgid "UK"
4877
+ msgstr "المملكة المتحدة"
4878
+
4879
+ #: methods/cloudfiles.php:482
4880
+ msgid "Cloud Files username"
4881
+ msgstr "سحابة ملفات المستخدم"
4882
+
4883
+ #: methods/cloudfiles.php:486
4884
+ msgid "Cloud Files API key"
4885
+ msgstr "سحابة ملفات مفاتيح API "
4886
+
4887
+ #: methods/cloudfiles.php:490
4888
+ msgid "Cloud Files container"
4889
+ msgstr "سحابة الملفات الحاوية"
4890
+
4891
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
4892
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4893
+ msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
4894
+
4895
+ #: addons/migrator.php:272 addons/migrator.php:1851 addons/moredatabase.php:70
4896
+ #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:417
4897
+ #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:56 admin.php:536
4898
+ #: methods/addon-base.php:277 methods/cloudfiles-new.php:142
4899
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:504
4900
+ #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
4901
+ #: methods/openstack2.php:142 methods/openstack2.php:147
4902
+ #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:896
4903
+ #: methods/s3.php:900
4904
+ msgid "Failure: No %s was given."
4905
+ msgstr "فضل: لم تعطى أية %s."
4906
+
4907
+ #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:896
4908
+ msgid "API key"
4909
+ msgstr "مفتاح API"
4910
+
4911
+ #: addons/moredatabase.php:233 addons/sftp.php:361
4912
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4913
+ #: methods/openstack2.php:121
4914
+ msgid "Username"
4915
+ msgstr "اسم المستخدم"
4916
+
4917
+ #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4918
+ msgid "Failure: No container details were given."
4919
+ msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
4920
+
4921
+ #: methods/cloudfiles.php:556
4922
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4923
+ msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
4924
+
4925
+ #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4926
+ msgid "We accessed the container, and were able to create files within it."
4927
+ msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
4928
+
4929
+ #: methods/email.php:43
4930
+ msgid "WordPress Backup"
4931
+ msgstr "نسخ ووردريس احتياطيا"
4932
+
4933
+ #: methods/email.php:69
4934
+ msgid "Note:"
4935
+ msgstr "ملاحظة:"
4936
+
4937
+ #: methods/s3.php:363
4938
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4939
+ msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
4940
+
4941
+ #: methods/s3.php:386
4942
+ msgid "%s error: file %s was shortened unexpectedly"
4943
+ msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
4944
+
4945
+ #: methods/s3.php:396
4946
+ msgid "%s chunk %s: upload failed"
4947
+ msgstr "%s قطعة %s : فشل الرفع"
4948
+
4949
+ #: methods/s3.php:412
4950
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
4951
+ msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
4952
+
4953
+ #: methods/s3.php:416
4954
+ msgid "%s re-assembly error (%s): (see log file for more)"
4955
+ msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
4956
+
4957
+ #: addons/googlecloud.php:826 methods/googledrive.php:904
4958
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4959
+ msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
4960
+
4961
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4962
+ msgid "Select 'Web Application' as the application type."
4963
+ msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
4964
+
4965
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4966
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4967
+ msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
4968
+
4969
+ #: addons/googlecloud.php:839 addons/onedrive.php:755
4970
+ #: methods/googledrive.php:916
4971
+ msgid "Client ID"
4972
+ msgstr "معرف العميل"
4973
+
4974
+ #: addons/googlecloud.php:842 methods/googledrive.php:917
4975
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4976
+ msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
4977
+
4978
+ #: addons/googlecloud.php:847 addons/onedrive.php:759
4979
+ #: methods/googledrive.php:920
4980
+ msgid "Client Secret"
4981
+ msgstr "سر العميل"
4982
+
4983
+ #: addons/googlecloud.php:896 methods/googledrive.php:950
4984
+ msgid "Authenticate with Google"
4985
+ msgstr "المصادقة مع جوجل"
4986
+
4987
+ #: addons/googlecloud.php:907 methods/googledrive.php:961
4988
+ 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."
4989
+ msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
4990
+
4991
+ #: addons/cloudfiles-enhanced.php:87 addons/cloudfiles-enhanced.php:124
4992
+ #: addons/cloudfiles-enhanced.php:129 methods/cloudfiles.php:539
4993
+ #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
4994
+ msgid "Cloud Files authentication failed"
4995
+ msgstr "فشل المصادقة بملفات سحابة"
4996
+
4997
+ #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
4998
+ #: methods/cloudfiles.php:363
4999
+ msgid "Cloud Files error - failed to create and access the container"
5000
+ msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول إلى الحاوية"
5001
+
5002
+ #: addons/googlecloud.php:161 addons/googlecloud.php:166
5003
+ #: class-updraftplus.php:797 methods/cloudfiles.php:130
5004
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5005
+ msgid "%s Error: Failed to open local file"
5006
+ msgstr "%s خطأ: فشل في فتح ملف محلي"
5007
+
5008
+ #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5009
+ #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5010
+ #: methods/openstack-base.php:190 methods/s3.php:331 methods/s3.php:343
5011
+ #: methods/s3.php:344
5012
+ msgid "%s Error: Failed to upload"
5013
+ msgstr "%s خطأ: فشل في تحميل"
5014
+
5015
+ #: methods/cloudfiles.php:218
5016
+ msgid "Cloud Files error - failed to upload file"
5017
+ msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
5018
+
5019
+ #: class-updraftplus.php:880 methods/cloudfiles.php:392
5020
+ #: methods/stream-base.php:261
5021
+ msgid "Error opening local file: Failed to download"
5022
+ msgstr "خطأ في فتح ملف محلي: فشل التحميل"
5023
+
5024
+ #: methods/openstack-base.php:319
5025
+ msgid "Error downloading remote file: Failed to download ("
5026
+ msgstr "خطأ في تحميل الملف بالخدمة السحابية: فشل في تحميل ("
5027
+
5028
+ #: addons/sftp.php:408 admin.php:557 methods/addon-base.php:242
5029
+ #: methods/cloudfiles.php:496 methods/ftp.php:329
5030
+ #: methods/openstack-base.php:440 methods/s3.php:797
5031
+ #: methods/stream-base.php:219
5032
+ msgid "Test %s Settings"
5033
+ msgstr "اختبار %s الإعدادات"
5034
+
5035
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5036
+ 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."
5037
+ 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>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5038
+
5039
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5040
+ #: methods/openstack2.php:94
5041
+ msgid "Also, you should read this important FAQ."
5042
+ msgstr "أيضا، يجب عليك قراءة هذا التعليمات الهامة."
5043
+
5044
+ #: methods/googledrive.php:410
5045
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5046
+ msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
5047
+
5048
+ #: methods/googledrive.php:381 methods/googledrive.php:427
5049
+ #: methods/googledrive.php:433 methods/googledrive.php:435
5050
+ #: methods/stream-base.php:196
5051
+ msgid "Failed to upload to %s"
5052
+ msgstr "فشل في تحميل إلى %s"
5053
+
5054
+ #: addons/googlecloud.php:445 addons/googlecloud.php:446
5055
+ #: addons/googlecloud.php:709 addons/onedrive.php:496
5056
+ #: methods/googledrive.php:455 methods/googledrive.php:456
5057
+ msgid "Account is not authorized."
5058
+ msgstr "حساب غير مخول."
5059
+
5060
+ #: methods/addon-base.php:230 methods/cloudfiles.php:438
5061
+ #: methods/dropbox.php:420 methods/ftp.php:298 methods/googledrive.php:889
5062
+ #: methods/openstack-base.php:419 methods/s3.php:707
5063
+ #: methods/stream-base.php:212
5064
+ 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."
5065
+ msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5066
+
5067
+ #: restorer.php:1734
5068
+ msgid "will restore as:"
5069
+ msgstr "إستعادة على النحو التالي:"
5070
+
5071
+ #: addons/migrator.php:1123 restorer.php:1964
5072
+ msgid "the database query being run was:"
5073
+ msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5074
+
5075
+ #: restorer.php:1796
5076
+ msgid "Finished: lines processed: %d in %.2f seconds"
5077
+ msgstr "الانتهاء: خطوط تمت معالجتها: %d في %.2f ثانية"
5078
+
5079
+ #: restorer.php:2062 restorer.php:2137
5080
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5081
+ msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5082
+
5083
+ #: addons/migrator.php:1750 admin.php:3457 admin.php:3491 admin.php:3495
5084
+ #: admin.php:4879 admin.php:4893 restorer.php:2068 restorer.php:2173
5085
+ msgid "OK"
5086
+ msgstr "حسنا"
5087
+
5088
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5089
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5090
+ msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5091
+
5092
+ #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5093
+ #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5094
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5095
+ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها من %s"
5096
+
5097
+ #: methods/viaaddon-base.php:72
5098
+ msgid "%s support is available as an add-on"
5099
+ msgstr "دعم %s متوفر على شكل إضافة "
5100
+
5101
+ #: methods/viaaddon-base.php:72
5102
+ msgid "follow this link to get it"
5103
+ msgstr "اتبع هذا الرابط للحصول عليه"
5104
+
5105
+ #: addons/googlecloud.php:382 methods/googledrive.php:297
5106
+ 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."
5107
+ msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
5108
+
5109
+ #: addons/googlecloud.php:390 methods/googledrive.php:305
5110
+ msgid "Authorization failed"
5111
+ msgstr "فشل التخويل"
5112
+
5113
+ #: addons/onedrive.php:577 methods/dropbox.php:535 methods/googledrive.php:332
5114
+ msgid "Your %s quota usage: %s %% used, %s available"
5115
+ msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5116
+
5117
+ #: addons/googlecloud.php:579 addons/googlecloud.php:689
5118
+ #: addons/onedrive.php:611 addons/sftp.php:480 methods/addon-base.php:291
5119
+ #: methods/cloudfiles.php:560 methods/googledrive.php:358
5120
+ #: methods/openstack-base.php:392 methods/s3.php:960
5121
+ #: methods/stream-base.php:308
5122
+ msgid "Success"
5123
+ msgstr "نجاح"
5124
+
5125
+ #: addons/googlecloud.php:579 addons/onedrive.php:611
5126
+ #: methods/googledrive.php:358
5127
+ msgid "you have authenticated your %s account."
5128
+ msgstr "لديك حساب %s مصادق عليه."
5129
+
5130
+ #: methods/googledrive.php:507
5131
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5132
+ msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5133
+
5134
+ #: restorer.php:429
5135
+ msgid "wp-config.php from backup: restoring (as per user's request)"
5136
+ msgstr "wp-config.php من النسخ الإحتياطية: إستعادة (بناءا على طلب السمتخدم)"
5137
+
5138
+ #: restorer.php:1330
5139
+ 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."
5140
+ msgstr "تحذير: PHP safe_mode نشط بخادمكم. سنكون عرضة لحالة المهلات بكثرة. ان حدث هذا المشكل بالفعل، ستكون مضطر للإسترجاع الملف من phpMyAdmin أو بطريقة أخرى."
5141
+
5142
+ #: restorer.php:1353
5143
+ msgid "Failed to find database file"
5144
+ msgstr "فشل في العثور على ملف قاعدة البيانات"
5145
+
5146
+ #: restorer.php:1374
5147
+ msgid "Failed to open database file"
5148
+ msgstr "فشل في فتح ملف قاعدة البيانات"
5149
+
5150
+ #: addons/migrator.php:588 restorer.php:1379
5151
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5152
+ msgstr "وصول لقاعدة البيانات: الوصول المباشر لـ MySQL غير متوفر، لذا لم نتمكن من الرجوع لـ wpdb (هذا سيكون أبطأ بكثير)"
5153
+
5154
+ #: addons/reporting.php:65 addons/reporting.php:148 backup.php:923
5155
+ #: class-updraftplus.php:3616
5156
+ msgid "Backup of:"
5157
+ msgstr "نسخة احتياطية لـ:"
5158
+
5159
+ #: restorer.php:1545 restorer.php:1638 restorer.php:1664
5160
+ msgid "Old table prefix:"
5161
+ msgstr "بادئة الجدول القديمة:"
5162
+
5163
+ #: admin.php:4890
5164
+ msgid "Archive is expected to be size:"
5165
+ msgstr "من المتوقع أن يكون حجم الأرشيف:"
5166
+
5167
+ #: admin.php:4898
5168
+ msgid "The backup records do not contain information about the proper size of this file."
5169
+ msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5170
+
5171
+ #: admin.php:4996
5172
+ msgid "Error message"
5173
+ msgstr "رسالة الخطأ"
5174
+
5175
+ #: admin.php:4901 admin.php:4902
5176
+ msgid "Could not find one of the files for restoration"
5177
+ msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5178
+
5179
+ #: restorer.php:90
5180
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5181
+ msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5182
+
5183
+ #: restorer.php:91
5184
+ msgid "Backup file not available."
5185
+ msgstr "ملف النسخ الاحتياطي غير متوفر."
5186
+
5187
+ #: restorer.php:92
5188
+ msgid "Copying this entity failed."
5189
+ msgstr "فشل نسخ هذا الكيان."
5190
+
5191
+ #: restorer.php:93
5192
+ msgid "Unpacking backup..."
5193
+ msgstr "تفريغ النسخ الاحتياطي ..."
5194
+
5195
+ #: restorer.php:94
5196
+ msgid "Decrypting database (can take a while)..."
5197
+ msgstr "فك تشفير قاعدة البيانات (يمكن أن يستغرق بعض الوقت) ..."
5198
+
5199
+ #: restorer.php:95
5200
+ msgid "Database successfully decrypted."
5201
+ msgstr "تم فك تشفير قاعدة البيانات بنجاح."
5202
+
5203
+ #: restorer.php:98
5204
+ 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)..."
5205
+ msgstr "استرجاع قاعدة البيانات (بالمواقع الكبيرة ستأخد هذه العملية وقت طويل - ان واجهت مشكل انقضاء المهلة (سببه نقص في استخدام موارد السيرفر للإستضافة) يمكنك استخدام طريقة أخرى، كـ phpMyAdmin)"
5206
+
5207
+ #: restorer.php:99
5208
+ msgid "Cleaning up rubbish..."
5209
+ msgstr "تنظيف القمامة ..."
5210
+
5211
+ #: restorer.php:101
5212
+ msgid "Could not delete old directory."
5213
+ msgstr "لا يمكن حذف الدليل القديم."
5214
+
5215
+ #: restorer.php:104
5216
+ msgid "Failed to delete working directory after restoring."
5217
+ msgstr "فشل في حذف دليل العمل بعد الإستعادة."
5218
+
5219
+ #: restorer.php:301
5220
+ msgid "Failed to create a temporary directory"
5221
+ msgstr "فشل في إنشاء دليل مؤقت"
5222
+
5223
+ #: restorer.php:316
5224
+ msgid "Failed to write out the decrypted database to the filesystem"
5225
+ msgstr "فشل في كتابة قاعدة البيانات مفككت التشفير لنظام الملفات"
5226
+
5227
+ #: restorer.php:424
5228
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5229
+ msgstr "wp-config.php من النسخ الاحتياطي: سيتم إستعادته كمسمى wp-config-backup.php"
5230
+
5231
+ #: admin.php:4012
5232
+ 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."
5233
+ msgstr "اختيار هذا الخيار قد يضعف من الآمان بإيقاف UpdraftPlus من استخدام SSL للمصادقة و تشفير العمليات، إن أمكن الأمر. لاحظ أن بعض الدمات السحابية لا تقبل هذه العملية (مثال: Dropbox)، مع هذا الخيار لن تتمكن من حفظ النسخ بهذه الخدمات."
5234
+
5235
+ #: admin.php:4035
5236
+ msgid "Save Changes"
5237
+ msgstr "حفظ التغييرات"
5238
+
5239
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
5240
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5241
+ msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5242
+
5243
+ #: admin.php:4158
5244
+ 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)."
5245
+ msgstr "نعلمكم أن نسخة PHP/Curl المنصبة لخادمكم لا تدعم وصول https. التواصل مع %s سيكون غير مشفر. من فضلك قم بمراسلة خدمة الإستضافة لتنصيب Curl/SSL لدعم خدمة التشفير (باستخدام إضافة)."
5246
+
5247
+ #: admin.php:4160
5248
+ 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."
5249
+ msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5250
+
5251
+ #: admin.php:4163
5252
+ 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."
5253
+ msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5254
+
5255
+ #: admin.php:4635
5256
+ msgid "Delete this backup set"
5257
+ msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5258
+
5259
+ #: admin.php:4542
5260
+ msgid "Press here to download"
5261
+ msgstr "إضغط هنا لتحميل"
5262
+
5263
+ #: admin.php:4626
5264
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5265
+ msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5266
+
5267
+ #: admin.php:4677
5268
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5269
+ msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5270
+
5271
+ #: admin.php:4725
5272
+ msgid "UpdraftPlus Restoration: Progress"
5273
+ msgstr "استرجاع UpdraftPlus: تقدم"
5274
+
5275
+ #: admin.php:4771
5276
+ msgid "ABORT: Could not find the information on which entities to restore."
5277
+ msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5278
+
5279
+ #: admin.php:4772
5280
+ msgid "If making a request for support, please include this information:"
5281
+ msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5282
+
5283
+ #: admin.php:4006
5284
+ msgid "Do not verify SSL certificates"
5285
+ msgstr "لا تحقق من شهادات SSL"
5286
+
5287
+ #: admin.php:4007
5288
+ 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."
5289
+ msgstr "اختيار هذا الخيار يمكن أن يضعف من حمايتك بمنع UpdraftPlus من التحقق من هوية المواقع التي يتصل بها ( مثال: Dropbox, Google Drive). هذا يعني أن UpdraftPlus سيستخدم SSL لتشفير حركة مرور البيانات، ولن يستخدم التقنية لتشفير المصادقة مع المواقع."
5290
+
5291
+ #: admin.php:4007
5292
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5293
+ msgstr "لاحظ أنه ليست كل أساليب النسخ الإحتياطي بالسحابة بالضرورة تستخدم المصادقة عن طريق SSL."
5294
+
5295
+ #: admin.php:4011
5296
+ msgid "Disable SSL entirely where possible"
5297
+ msgstr "قم بتعطيل SSL تماما حيثما أمكن"
5298
+
5299
+ #: admin.php:3956
5300
+ msgid "Expert settings"
5301
+ msgstr "إعدادات متقدمة"
5302
+
5303
+ #: admin.php:3957
5304
+ msgid "Show expert settings"
5305
+ msgstr "إظهار الإعدادات المتقدمة"
5306
+
5307
+ #: admin.php:3957
5308
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5309
+ msgstr "اضغط هنا لتتمكن من مشاهدة خيارات اضافية، لا ترعج نفسك بهذه الخيارات إلا إذا واجهت مشاكل."
5310
+
5311
+ #: admin.php:3977
5312
+ msgid "Delete local backup"
5313
+ msgstr "حذف النسخة الاحتياطية المحلية"
5314
+
5315
+ #: admin.php:3982
5316
+ msgid "Backup directory"
5317
+ msgstr "دليل النسخ الاحتياطي"
5318
+
5319
+ #: admin.php:3662
5320
+ msgid "Backup directory specified is writable, which is good."
5321
+ msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5322
+
5323
+ #: admin.php:3670
5324
+ msgid "Click here to attempt to create the directory and set the permissions"
5325
+ msgstr "انقر هنا لمحاولة إنشاء دليل وتعيين أذونات"
5326
+
5327
+ #: admin.php:3670
5328
+ msgid "or, to reset this option"
5329
+ msgstr "أو، لإعادة هذا الخيار"
5330
+
5331
+ #: admin.php:3670
5332
+ msgid "click here"
5333
+ msgstr "انقر هنا"
5334
+
5335
+ #: admin.php:3670
5336
+ 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."
5337
+ msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5338
+
5339
+ #: admin.php:4001
5340
+ msgid "Use the server's SSL certificates"
5341
+ msgstr "استخدام شهادات SSL للملقم"
5342
+
5343
+ #: admin.php:4002
5344
+ 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."
5345
+ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من SSL للحقق من هوية المواقع (للتأكد من أن الموقع الآخر هو فعلا الموقع المقصود وليس موقع مقرصن). نقوم بتحديثها آليا. إن قابلك خطأ SSL، حينها قم باختيار هذا الخيار (الذي يفرض على UpdraftPlus استخدام ملفات SSL الخاصة بسيرفرك بدلا من الخاص به) يمكن أن يساعدك."
5346
+
5347
+ #: admin.php:3929 udaddons/options.php:143
5348
+ msgid "Email"
5349
+ msgstr "البريد الإلكتروني"
5350
+
5351
+ #: admin.php:3850
5352
+ msgid "Database encryption phrase"
5353
+ msgstr "عبارة تشفير قاعدة البيانات"
5354
+
5355
+ #: admin.php:3869
5356
+ msgid "Manually decrypt a database backup file"
5357
+ msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة البيانات يدويا"
5358
+
5359
+ #: admin.php:3782
5360
+ msgid "Choose your remote storage"
5361
+ msgstr "اختر خدمت التخزين السحابي"
5362
+
5363
+ #: addons/reporting.php:212 admin.php:4303
5364
+ msgid "None"
5365
+ msgstr "لا شيء"
5366
+
5367
+ #: admin.php:511
5368
+ msgid "Cancel"
5369
+ msgstr "إلغاء"
5370
+
5371
+ #: admin.php:495
5372
+ msgid "Requesting start of backup..."
5373
+ msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
5374
+
5375
+ #: admin.php:3952
5376
+ msgid "Advanced / Debugging Settings"
5377
+ msgstr "متقدمة / تصحيح الإعدادات "
5378
+
5379
+ #: admin.php:3967
5380
+ msgid "Debug mode"
5381
+ msgstr "وضع التصحيح"
5382
+
5383
+ #: admin.php:3840
5384
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5385
+ msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
5386
+
5387
+ #: admin.php:3653
5388
+ msgid "Daily"
5389
+ msgstr "يوميا"
5390
+
5391
+ #: admin.php:3654
5392
+ msgid "Weekly"
5393
+ msgstr "أسبوعيا"
5394
+
5395
+ #: admin.php:3655
5396
+ msgid "Fortnightly"
5397
+ msgstr "نصف شهري"
5398
+
5399
+ #: admin.php:3656
5400
+ msgid "Monthly"
5401
+ msgstr "شهريا"
5402
+
5403
+ #: admin.php:3766
5404
+ msgid "To fix the time at which a backup should take place,"
5405
+ msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
5406
+
5407
+ #: admin.php:3766
5408
+ msgid "e.g. if your server is busy at day and you want to run overnight"
5409
+ msgstr "على سبيل المثال إذا كان الملقم مشغول في اليوم وتريد تشغيله فجأة"
5410
+
5411
+ #: admin.php:3837
5412
+ msgid "Include in files backup"
5413
+ msgstr "متضمن في ملفات النسخ الاحتياطي"
5414
+
5415
+ #: admin.php:4095
5416
+ msgid "Any other directories found inside wp-content"
5417
+ msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
5418
+
5419
+ #: addons/morefiles.php:260 admin.php:4104
5420
+ msgid "Exclude these:"
5421
+ msgstr "استبعاد هذه:"
5422
+
5423
+ #: admin.php:3155
5424
+ msgid "Debug Database Backup"
5425
+ msgstr "تصحيح قاعدة بيانات النسخ الاحتياطي "
5426
+
5427
+ #: admin.php:3155
5428
+ 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.."
5429
+ msgstr "سيؤدي هذا إلى نسخ قاعدة البيانات حالا: الصفحة ستبقى قارة إلى حين الإنتهاء من العملية (أي لم تكن مقررة). النسخ الاحتياطي قد يستغرق وقت طويل، هذا الزر مفيد جدا للتحقق من تقدم عملية النسخ، أو المواقع الصغيرة."
5430
+
5431
+ #: admin.php:3165
5432
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5433
+ msgstr "سيؤدي هذا إلى حذف كافة الإعدادات الخاصة بك UpdraftPlus - هل أنت متأكد أنك تريد المتابعة؟"
5434
+
5435
+ #: admin.php:3392
5436
+ msgid "show log"
5437
+ msgstr "عرض السجل"
5438
+
5439
+ #: addons/migrator.php:2243 admin.php:512 admin.php:2933 admin.php:3451
5440
+ #: admin.php:3484 admin.php:4635
5441
+ msgid "Delete"
5442
+ msgstr "حذف"
5443
+
5444
+ #: admin.php:3535
5445
+ msgid "The request to the filesystem to create the directory failed."
5446
+ msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
5447
+
5448
+ #: admin.php:3549
5449
+ 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"
5450
+ msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
5451
+
5452
+ #: admin.php:3554
5453
+ msgid "The folder exists, but your webserver does not have permission to write to it."
5454
+ msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
5455
+
5456
+ #: admin.php:518 admin.php:3636
5457
+ msgid "Download log file"
5458
+ msgstr "تحميل ملف السجل"
5459
+
5460
+ #: admin.php:2509
5461
+ msgid "Multisite"
5462
+ msgstr "مواقع متعددة"
5463
+
5464
+ #: admin.php:2513
5465
+ msgid "Do you need WordPress Multisite support?"
5466
+ msgstr "هل تحتاج إلى دعم ووردبريس متعدد المواقع؟"
5467
+
5468
+ #: admin.php:2513
5469
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5470
+ msgstr "يرجى مراجعة اشتراك UpdraftPlus الممتاز، أو اضافة المواقع المتعددة."
5471
+
5472
+ #: admin.php:3070
5473
+ msgid "Web server:"
5474
+ msgstr "خادم الويب:"
5475
+
5476
+ #: admin.php:3079
5477
+ msgid "Peak memory usage"
5478
+ msgstr "استخدام الذاكرة الذروة"
5479
+
5480
+ #: admin.php:3080
5481
+ msgid "Current memory usage"
5482
+ msgstr "استخدام الذاكرة الحالية"
5483
+
5484
+ #: admin.php:3082 admin.php:3083 admin.php:3090 admin.php:3091
5485
+ msgid "%s version:"
5486
+ msgstr "%s النسخة:"
5487
+
5488
+ #: admin.php:3092 admin.php:3095 admin.php:3098 admin.php:3102
5489
+ msgid "Yes"
5490
+ msgstr "نعم"
5491
+
5492
+ #: admin.php:3092 admin.php:3098 admin.php:3102
5493
+ msgid "No"
5494
+ msgstr "لا"
5495
+
5496
+ #: admin.php:3127
5497
+ msgid "Total (uncompressed) on-disk data:"
5498
+ msgstr "الإجمالي (غير مضغوط) على قرص البيانات:"
5499
+
5500
+ #: admin.php:3128
5501
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5502
+ msgstr "ملاحظة: هذا العدد يستند على ما كان عليه، او ما لم يكن عليه، مستبعدين آخر مرة قمت بحفظ الخيارات."
5503
+
5504
+ #: admin.php:3136
5505
+ msgid "count"
5506
+ msgstr "عد"
5507
+
5508
+ #: admin.php:3150
5509
+ msgid "Debug Full Backup"
5510
+ msgstr "تصحيح النسخ الاحتياطي الكامل "
5511
+
5512
+ #: admin.php:3150
5513
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5514
+ msgstr "سيؤدي هذا للنسخ الفوري. ستبقى الصفحة قارة حى انتهاء العملية (أي غير مقررة)."
5515
+
5516
+ #: admin.php:2891
5517
+ msgid "UpdraftPlus - Upload backup files"
5518
+ msgstr "UpdraftPlus - تحميل ملفات النسخ الاحتياطي"
5519
+
5520
+ #: admin.php:478 admin.php:2875
5521
+ msgid "calculating..."
5522
+ msgstr "حساب ..."
5523
+
5524
+ #: addons/cloudfiles-enhanced.php:90 addons/migrator.php:751
5525
+ #: addons/migrator.php:972 addons/migrator.php:1053 addons/migrator.php:1123
5526
+ #: addons/migrator.php:1348 addons/migrator.php:1689 addons/migrator.php:1716
5527
+ #: addons/migrator.php:1722 addons/migrator.php:1784 addons/migrator.php:1820
5528
+ #: addons/migrator.php:1859 addons/migrator.php:1869 addons/migrator.php:1874
5529
+ #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
5530
+ #: addons/s3-enhanced.php:127 addons/sftp.php:736 admin.php:487 admin.php:4895
5531
+ #: admin.php:4925 methods/remotesend.php:76 methods/remotesend.php:234
5532
+ #: methods/updraftvault.php:418 restorer.php:1292
5533
+ msgid "Error:"
5534
+ msgstr "خطأ:"
5535
+
5536
+ #: admin.php:490
5537
+ msgid "You should:"
5538
+ msgstr "يجب عليك:"
5539
+
5540
+ #: admin.php:494
5541
+ msgid "Download error: the server sent us a response which we did not understand."
5542
+ msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
5543
+
5544
+ #: admin.php:2943
5545
+ msgid "Delete backup set"
5546
+ msgstr "حذف مجموعة النسخ الاحتياطية"
5547
+
5548
+ #: admin.php:2964
5549
+ msgid "Restore backup"
5550
+ msgstr "استعادة النسخة الاحتياطية"
5551
+
5552
+ #: admin.php:2965
5553
+ msgid "Restore backup from"
5554
+ msgstr "استعادة النسخة الاحتياطية من"
5555
+
5556
+ #: admin.php:2977
5557
+ 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)."
5558
+ msgstr "عملية الإستعادة ستغير كل من التصاميم، الإضافات، الملفات المرفوعة، قاعدة البيانات أو أي ملفات أخرى (وفقا لما تحمله النسخة الإحتياطية من ملفات، وما قمت باختياره)"
5559
+
5560
+ #: admin.php:2977
5561
+ msgid "Choose the components to restore"
5562
+ msgstr "اختيار المكونات للاستعادة"
5563
+
5564
+ #: admin.php:2989
5565
+ msgid "Your web server has PHP's so-called safe_mode active."
5566
+ msgstr "خادمك يحمل خدمة safe_mode للـ PHP مفعلة."
5567
+
5568
+ #: admin.php:3002
5569
+ msgid "The following entity cannot be restored automatically: \"%s\"."
5570
+ msgstr "لا يمكن استعادة الكيان التالي تلقائيا: \"%s\"."
5571
+
5572
+ #: admin.php:3002
5573
+ msgid "You will need to restore it manually."
5574
+ msgstr "سوف تحتاج إلى استعادته يدويا."
5575
+
5576
+ #: addons/morefiles.php:63 admin.php:3009
5577
+ msgid "%s restoration options:"
5578
+ msgstr "%s خيارات الإستعادة:"
5579
+
5580
+ #: admin.php:3017
5581
+ 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"
5582
+ msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
5583
+
5584
+ #: admin.php:3028
5585
+ msgid "Do read this helpful article of useful things to know before restoring."
5586
+ msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
5587
+
5588
+ #: admin.php:2498
5589
+ msgid "Perform a one-time backup"
5590
+ msgstr "إجراء نسخة احتياطية لمرة واحدة"
5591
+
5592
+ #: admin.php:330 admin.php:510 admin.php:2443
5593
+ msgid "Backup Now"
5594
+ msgstr "النسخ الاحتياطي الآن"
5595
+
5596
+ #: addons/migrator.php:221 admin.php:517 admin.php:2446 admin.php:4626
5597
+ msgid "Restore"
5598
+ msgstr "الإستعادة"
5599
+
5600
+ #: addons/autobackup.php:289 addons/autobackup.php:383 admin.php:2798
5601
+ #: admin.php:2803
5602
+ msgid "Last log message"
5603
+ msgstr "رسالة السجل الأخيرة"
5604
+
5605
+ #: admin.php:2799 admin.php:2805 central/bootstrap.php:159
5606
+ msgid "(Nothing yet logged)"
5607
+ msgstr "(لا شيء حتى الآن تم تسجيله)"
5608
+
5609
+ #: admin.php:2840
5610
+ msgid "Download most recently modified log file"
5611
+ msgstr "تحميل ملف السجل المعدل مؤخرا"
5612
+
5613
+ #: admin.php:2878
5614
+ msgid "More tasks:"
5615
+ msgstr "المزيد من المهام:"
5616
+
5617
+ #: admin.php:2884
5618
+ msgid "Opera web browser"
5619
+ msgstr "متصفح الويب أوبرا "
5620
+
5621
+ #: admin.php:2884
5622
+ msgid "If you are using this, then turn Turbo/Road mode off."
5623
+ msgstr "إذا كنت تستخدم هذا، ازل الوضع Turbo/Road"
5624
+
5625
+ #: addons/google-enhanced.php:72 methods/googledrive.php:146
5626
+ #: methods/googledrive.php:358 methods/googledrive.php:381
5627
+ #: methods/googledrive.php:410 methods/googledrive.php:417
5628
+ #: methods/googledrive.php:427 methods/googledrive.php:433
5629
+ #: methods/googledrive.php:435 methods/googledrive.php:888
5630
+ #: methods/googledrive.php:900 methods/googledrive.php:916
5631
+ #: methods/googledrive.php:920 methods/googledrive.php:931
5632
+ #: methods/googledrive.php:941
5633
+ msgid "Google Drive"
5634
+ msgstr "جوجل درايف"
5635
+
5636
+ #: admin.php:2875
5637
+ msgid "Web-server disk space in use by UpdraftPlus"
5638
+ msgstr "مساحة القرص لخادم الويب قيد الاستخدام من قبل UpdraftPlus"
5639
+
5640
+ #: admin.php:2875
5641
+ msgid "refresh"
5642
+ msgstr "تحديث"
5643
+
5644
+ #: admin.php:2173
5645
+ msgid "Lead developer's homepage"
5646
+ msgstr "الولوج لموقع المطور"
5647
+
5648
+ #: admin.php:2174
5649
+ msgid "Version"
5650
+ msgstr "الإصدار"
5651
+
5652
+ #: admin.php:2351
5653
+ msgid "Your backup has been restored."
5654
+ msgstr "تمت استعادة النسخ الاحتياطي."
5655
+
5656
+ #: admin.php:2370
5657
+ msgid "Current limit is:"
5658
+ msgstr "الحد الحالي هو:"
5659
+
5660
+ #: admin.php:497 admin.php:3182
5661
+ msgid "Delete Old Directories"
5662
+ msgstr "حذف الدلائل القديمة"
5663
+
5664
+ #: admin.php:2428
5665
+ msgid "JavaScript warning"
5666
+ msgstr "تحذير جافا سكريبت"
5667
+
5668
+ #: admin.php:2429
5669
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5670
+ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت بشكل كبير. ستحتاج تفعيلها داخل المتصفح الخاص بك، أو استخدام متصفح يدعم الجافا سكريبت."
5671
+
5672
+ #: admin.php:125 admin.php:146 admin.php:153
5673
+ msgid "Nothing currently scheduled"
5674
+ msgstr "لا شيء مقرر حاليا"
5675
+
5676
+ #: admin.php:135
5677
+ msgid "At the same time as the files backup"
5678
+ msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
5679
+
5680
+ #: admin.php:2464
5681
+ msgid "Next scheduled backups"
5682
+ msgstr "النسخ الاحتياطي المجدولة القادمة"
5683
+
5684
+ #: admin.php:155
5685
+ msgid "Files"
5686
+ msgstr "ملفات"
5687
+
5688
+ #: addons/migrator.php:1754 addons/moredatabase.php:235
5689
+ #: addons/reporting.php:227 admin.php:159 admin.php:1288 admin.php:3007
5690
+ #: admin.php:3009 admin.php:4278 admin.php:4470 admin.php:4979
5691
+ msgid "Database"
5692
+ msgstr "قاعدة بيانات"
5693
+
5694
+ #: admin.php:785
5695
+ msgid "Your website is hosted using the %s web server."
5696
+ msgstr "موقعك يستخدم %s من خادم الويب."
5697
+
5698
+ #: admin.php:785
5699
+ msgid "Please consult this FAQ if you have problems backing up."
5700
+ msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
5701
+
5702
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:820
5703
+ #: admin.php:824
5704
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5705
+ msgstr "اضغط هنا لمصادقة حسابك %s (لن تتمكن من النسخ الإحتياطي بـ %s إن لم تقم بهذه العملية)"
5706
+
5707
+ #: admin.php:560
5708
+ msgid "Nothing yet logged"
5709
+ msgstr "لا شيء حتى الآن تم تسجيله"
5710
+
5711
+ #: admin.php:1802
5712
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
5713
+ msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
5714
+
5715
+ #: admin.php:1718
5716
+ msgid "Job deleted"
5717
+ msgstr "وظيفة حذفت"
5718
+
5719
+ #: admin.php:1726
5720
+ msgid "Could not find that job - perhaps it has already finished?"
5721
+ msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
5722
+
5723
+ #: admin.php:488 admin.php:1698 admin.php:4877 class-updraftplus.php:880
5724
+ #: methods/addon-base.php:75 methods/addon-base.php:80
5725
+ #: methods/addon-base.php:194 methods/addon-base.php:214
5726
+ #: methods/stream-base.php:196 restorer.php:2064 restorer.php:2089
5727
+ #: restorer.php:2170 updraftplus.php:147
5728
+ msgid "Error"
5729
+ msgstr "خطأ"
5730
+
5731
+ #: admin.php:1907
5732
+ msgid "Download failed"
5733
+ msgstr "فشل تحميل"
5734
+
5735
+ #: admin.php:489 admin.php:1926
5736
+ msgid "File ready."
5737
+ msgstr "ملف جاهز."
5738
+
5739
+ #: admin.php:1936
5740
+ msgid "Download in progress"
5741
+ msgstr "التحميل في تقدم"
5742
+
5743
+ #: admin.php:1939
5744
+ msgid "No local copy present."
5745
+ msgstr "لا نسخة محلية متوفرة."
5746
+
5747
+ #: admin.php:2058
5748
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5749
+ msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
5750
+
5751
+ #: admin.php:2148
5752
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5753
+ msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
5754
+
5755
+ #: admin.php:2233
5756
+ msgid "Restore successful!"
5757
+ msgstr "استعادة ناجحة!"
5758
+
5759
+ #: admin.php:2243 admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5760
+ #: admin.php:4343
5761
+ msgid "Actions"
5762
+ msgstr "الإجراءات"
5763
+
5764
+ #: addons/migrator.php:273 addons/migrator.php:285 admin.php:2243
5765
+ #: admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5766
+ msgid "Return to UpdraftPlus Configuration"
5767
+ msgstr "العودة إلى اعدادات UpdraftPlus"
5768
+
5769
+ #: admin.php:3418
5770
+ msgid "Remove old directories"
5771
+ msgstr "إزالة الدلائل القديمة"
5772
+
5773
+ #: admin.php:3421
5774
+ msgid "Old directories successfully removed."
5775
+ msgstr "تم إزالة الدلائل القديمة بنجاح."
5776
+
5777
+ #: admin.php:3423
5778
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
5779
+ msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
5780
+
5781
+ #: admin.php:2294
5782
+ msgid "Backup directory could not be created"
5783
+ msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
5784
+
5785
+ #: admin.php:2301
5786
+ msgid "Backup directory successfully created."
5787
+ msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
5788
+
5789
+ #: admin.php:2324
5790
+ msgid "Your settings have been wiped."
5791
+ msgstr "تم القضاء على الإعدادات الخاصة بك."
5792
+
5793
+ #: class-updraftplus.php:3485
5794
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5795
+ msgstr "الرجاء المساعدة UpdraftPlus من خلال إعطاء وجهة نظر ايجابية في wordpress.org"
5796
+
5797
+ #: class-updraftplus.php:3492
5798
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
5799
+ msgstr "تحتاج المزيد من الميزات والدعم؟ تحقق من UpdraftPlus بريميوم"
5800
+
5801
+ #: class-updraftplus.php:3502
5802
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5803
+ msgstr "تحقق من UpdraftPlus.Com للمساعدة، إضافات والدعم"
5804
+
5805
+ #: backup.php:1955
5806
+ msgid "Infinite recursion: consult your log for more information"
5807
+ msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
5808
+
5809
+ #: backup.php:229
5810
+ msgid "Could not create %s zip. Consult the log file for more information."
5811
+ msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
5812
+
5813
+ #: admin.php:667
5814
+ msgid "Allowed Files"
5815
+ msgstr "ملفات مسموحة"
5816
+
5817
+ #: admin.php:346 admin.php:709 admin.php:2406
5818
+ msgid "Settings"
5819
+ msgstr "إعدادات"
5820
+
5821
+ #: admin.php:713
5822
+ msgid "Add-Ons / Pro Support"
5823
+ msgstr "إضافات / الدعم المدفوع"
5824
+
5825
+ #: admin.php:769 admin.php:773 admin.php:777 admin.php:781 admin.php:785
5826
+ #: admin.php:794 admin.php:2870 admin.php:4151 admin.php:4158 admin.php:4160
5827
+ #: methods/cloudfiles.php:448 methods/ftp.php:284
5828
+ #: methods/openstack-base.php:429 methods/s3.php:731 methods/s3.php:735
5829
+ #: methods/updraftvault.php:244 udaddons/updraftplus-addons.php:208
5830
+ msgid "Warning"
5831
+ msgstr "تحذير"
5832
+
5833
+ #: admin.php:777
5834
+ 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."
5835
+ msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
5836
+
5837
+ #: admin.php:781
5838
+ 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."
5839
+ msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
5840
+
5841
+ #: backup.php:924
5842
+ msgid "WordPress backup is complete"
5843
+ msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
5844
+
5845
+ #: admin.php:1976 backup.php:1120 restorer.php:168
5846
+ msgid "Backup directory (%s) is not writable, or does not exist."
5847
+ msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
5848
+
5849
+ #: class-updraftplus.php:2916
5850
+ msgid "Could not read the directory"
5851
+ msgstr "لا يمكن قراءة الدليل"
5852
+
5853
+ #: class-updraftplus.php:2939
5854
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
5855
+ msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
5856
+
5857
+ #: backup.php:1854
5858
+ msgid "Could not open the backup file for writing"
5859
+ msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
5860
+
5861
+ #: class-updraftplus.php:3287 class-updraftplus.php:3541 restorer.php:309
5862
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5863
+ msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
5864
+
5865
+ #: class-updraftplus.php:3298 class-updraftplus.php:3558 restorer.php:319
5866
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
5867
+ msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
5868
+
5869
+ #: class-updraftplus.php:3298
5870
+ msgid "The decryption key used:"
5871
+ msgstr "مفتاح فك التشفير المستخدم:"
5872
+
5873
+ #: addons/azure.php:215 class-updraftplus.php:3387 methods/googledrive.php:823
5874
+ msgid "File not found"
5875
+ msgstr "لم يتم العثور على ملف"
5876
+
5877
+ #: class-updraftplus.php:3477
5878
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5879
+ msgstr "يمكنك ترجمة؟ ترغب في تحسين UpdraftPlus للمتحدثين بلغتك؟"
5880
+
5881
+ #: class-updraftplus.php:3485
5882
+ msgid "Like UpdraftPlus and can spare one minute?"
5883
+ msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
5884
+
5885
+ #: class-updraftplus.php:1293
5886
+ msgid "Themes"
5887
+ msgstr "تصاميم"
5888
+
5889
+ #: addons/multisite.php:452 class-updraftplus.php:1294
5890
+ msgid "Uploads"
5891
+ msgstr "الملفات المرفوعة"
5892
+
5893
+ #: class-updraftplus.php:1309
5894
+ msgid "Others"
5895
+ msgstr "أخرى"
5896
+
5897
+ #: class-updraftplus.php:1910
5898
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5899
+ msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
5900
+
5901
+ #: addons/moredatabase.php:322
5902
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
5903
+ msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
5904
+
5905
+ #: class-updraftplus.php:2474
5906
+ msgid "The backup apparently succeeded and is now complete"
5907
+ msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
5908
+
5909
+ #: class-updraftplus.php:2489
5910
+ msgid "The backup attempt has finished, apparently unsuccessfully"
5911
+ msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
5912
+
5913
+ #: addons/multisite.php:66 addons/multisite.php:647 options.php:41
5914
+ msgid "UpdraftPlus Backups"
5915
+ msgstr "نسخ الإحتياطية UpdraftPlus"
5916
+
5917
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:816
5918
+ #: admin.php:820 admin.php:824 class-updraftplus.php:361
5919
+ #: class-updraftplus.php:396 class-updraftplus.php:401
5920
+ #: class-updraftplus.php:406
5921
+ msgid "UpdraftPlus notice:"
5922
+ msgstr "إشعار UpdraftPlus :"
5923
+
5924
+ #: admin.php:1861 admin.php:1865 class-updraftplus.php:396
5925
+ msgid "The log file could not be read."
5926
+ msgstr "لا يمكن قراءة ملف السجل."
5927
+
5928
+ #: class-updraftplus.php:401
5929
+ msgid "No log files were found."
5930
+ msgstr "لا توجد ملفات السجل."
5931
+
5932
+ #: class-updraftplus.php:1292
5933
+ msgid "Plugins"
5934
+ msgstr "الإضافات"
languages/updraftplus-bn_BD.mo CHANGED
Binary file
languages/updraftplus-bn_BD.po CHANGED
@@ -0,0 +1,5934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Bengali
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-06-16 15:38:58+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/2.0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
+
13
+ #: methods/s3.php:87
14
+ msgid "No settings were found - please go to the Settings tab and check your settings"
15
+ msgstr ""
16
+
17
+ #: methods/s3.php:949
18
+ msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
19
+ msgstr ""
20
+
21
+ #: udaddons/updraftplus-addons.php:723
22
+ msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
23
+ msgstr ""
24
+
25
+ #: admin.php:597
26
+ msgid "UpdraftPlus Premium can automatically take a backup of your plugins or themes and database before you update. <a href=\"https://updraftplus.com/shop/autobackup/\" target=\"_blank\">Be safe every time, without needing to remember - follow this link to learn more</a>"
27
+ msgstr ""
28
+
29
+ #: admin.php:598
30
+ msgid "Just this add-on"
31
+ msgstr ""
32
+
33
+ #: admin.php:599
34
+ msgid "Full Premium plugin"
35
+ msgstr ""
36
+
37
+ #: admin.php:3793
38
+ msgid "Backup using %s?"
39
+ msgstr ""
40
+
41
+ #: addons/s3-enhanced.php:54
42
+ msgid "Standard (infrequent access)"
43
+ msgstr ""
44
+
45
+ #: addons/s3-enhanced.php:55
46
+ msgid "Reduced redundancy"
47
+ msgstr ""
48
+
49
+ #: addons/s3-enhanced.php:328
50
+ msgid "Asia Pacific (Mumbai)"
51
+ msgstr ""
52
+
53
+ #: admin.php:2174
54
+ msgid "FAQs"
55
+ msgstr "বার বার জিজ্ঞাসিত প্রশ্নসমূহ"
56
+
57
+ #: udaddons/plugin-updates/github-checker.php:120
58
+ msgid "There is no changelog available."
59
+ msgstr "পরিবর্তনের কোন তালিকা পাওয়া যায় নি।"
60
+
61
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
62
+ msgid "Check for updates"
63
+ msgstr "নতুন সংস্করণ খুজুন"
64
+
65
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
66
+ msgid "This plugin is up to date."
67
+ msgstr "আপনি এই প্লাগিনটির সর্বশেষ সংস্করণ ব্যবহার করছেন।"
68
+
69
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
70
+ msgid "A new version of this plugin is available."
71
+ msgstr "এই প্লাগিনটির একটি নতুন সংস্করণ পাওয়া যাচ্ছে।"
72
+
73
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
74
+ msgid "Unknown update checker status \"%s\""
75
+ msgstr "অজানা হালনাগাদ পরীক্ষার অবস্থা \"%s\""
76
+
77
+ #: backup.php:1986
78
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
79
+ msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
80
+
81
+ #: backup.php:2002
82
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
83
+ msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
84
+
85
+ #: central/bootstrap.php:414
86
+ msgid "Public key was sent to:"
87
+ msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
88
+
89
+ #: central/bootstrap.php:419
90
+ msgid "Key size: %d bits"
91
+ msgstr "কি সাইজ: %d বিটস"
92
+
93
+ #: central/bootstrap.php:434
94
+ msgid "Dashboard at"
95
+ msgstr "ড্যাশবোর্ড টি এখানে"
96
+
97
+ #: central/bootstrap.php:434
98
+ msgid "Use the alternative method for making a connection with the dashboard."
99
+ msgstr "ড্যাশবোর্ডের সাথে যুক্ত হতে বিকল্প পদ্ধতিটি ব্যবহার করুন।"
100
+
101
+ #: central/bootstrap.php:434
102
+ msgid "More information..."
103
+ msgstr "আর ও তথ্য..."
104
+
105
+ #: central/bootstrap.php:434
106
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
107
+ msgstr "এই পদ্ধতিটি সহায়ক যদি ড্যাশবোর্ডের ওয়েবসার্ভার এই ওয়েবসাইটের আগমনি ভিজিটর এর সাথে যোগাযোগ স্থাপন করতে না পারে ( উদাহরণসরুপ, যদি এই ওয়েবসাইটটি পাবলিক ইন্টারনেট এ হোস্টিং করা থাকে কিন্তু আপড্রাফ্‌ট সেন্ট্রাল ড্যাশবোর্ড লোকালহোস্টিং এ, ইন্ট্রানেট এ অথবা এই ওয়েব সাইটের একটি বহির্গামী ফায়ারওয়াল থাকে),অথবা এই ড্যাশ বোর্ড ওয়েব সাইটের কোন SSL সার্টিফিকেট না থাকে।"
108
+
109
+ #: addons/migrator.php:2197
110
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
111
+ msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
112
+
113
+ #: addons/migrator.php:2198
114
+ msgid "Enter your chosen name"
115
+ msgstr "পূর্বেই ঠিক করা নামটি লিখুন"
116
+
117
+ #: addons/migrator.php:2200 central/bootstrap.php:436
118
+ msgid "Encryption key size:"
119
+ msgstr "এনক্রিপশন পিনের সাইজঃ"
120
+
121
+ #: addons/migrator.php:2202 addons/migrator.php:2203 addons/migrator.php:2205
122
+ #: central/bootstrap.php:437 central/bootstrap.php:438
123
+ #: central/bootstrap.php:440
124
+ msgid "%s bits"
125
+ msgstr "%s বিটস"
126
+
127
+ #: addons/migrator.php:2202 central/bootstrap.php:437
128
+ msgid "easy to break, fastest"
129
+ msgstr "ভাঙতে সহজ, দ্রুততম সময়ে"
130
+
131
+ #: addons/migrator.php:2203 central/bootstrap.php:438
132
+ msgid "faster (possibility for slow PHP installs)"
133
+ msgstr "দ্রুততর (ধীর পি এইচ পি ইন্সটল এর ক্ষেত্রে)"
134
+
135
+ #: addons/migrator.php:2204 central/bootstrap.php:439
136
+ msgid "%s bytes"
137
+ msgstr "%s বাইটস"
138
+
139
+ #: addons/migrator.php:2204 central/bootstrap.php:439
140
+ msgid "recommended"
141
+ msgstr "নির্দেশিত"
142
+
143
+ #: addons/migrator.php:2205 central/bootstrap.php:440
144
+ msgid "slower, strongest"
145
+ msgstr "ধীরতর, সবচেয়ে বেশি শক্তিশালী"
146
+
147
+ #: addons/migrator.php:2208
148
+ msgid "Create key"
149
+ msgstr "পিন তৈরি করুন"
150
+
151
+ #: central/bootstrap.php:434
152
+ msgid "i.e. you have an account there"
153
+ msgstr "যদি আপনার সেখানে একটি একাউণ্ট (পরিচিতি) থাকে"
154
+
155
+ #: central/bootstrap.php:434
156
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
157
+ msgstr ""
158
+
159
+ #: class-updraftplus.php:1253
160
+ msgid "Size: %s MB"
161
+ msgstr ""
162
+
163
+ #: methods/email.php:28
164
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
165
+ msgstr ""
166
+
167
+ #: methods/email.php:77
168
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
169
+ msgstr ""
170
+
171
+ #: methods/ftp.php:355
172
+ msgid "login"
173
+ msgstr ""
174
+
175
+ #: methods/ftp.php:383
176
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
177
+ msgstr ""
178
+
179
+ #: methods/googledrive.php:417
180
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
181
+ msgstr ""
182
+
183
+ #: admin.php:2465
184
+ msgid "Now"
185
+ msgstr "এখন"
186
+
187
+ #: admin.php:2616
188
+ msgid "Free 1GB for UpdraftPlus Vault"
189
+ msgstr ""
190
+
191
+ #: admin.php:3973
192
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s 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)."
193
+ msgstr ""
194
+
195
+ #: class-updraftplus.php:3628 restorer.php:926
196
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
197
+ msgstr ""
198
+
199
+ #: admin.php:3782
200
+ msgid "(tap on an icon to select or unselect)"
201
+ msgstr ""
202
+
203
+ #: backup.php:834 class-updraftplus.php:2468
204
+ msgid "The backup was aborted by the user"
205
+ msgstr ""
206
+
207
+ #: central/bootstrap.php:45
208
+ msgid "UpdraftCentral Connection"
209
+ msgstr ""
210
+
211
+ #: central/bootstrap.php:48
212
+ msgid "An UpdraftCentral connection has been made successfully."
213
+ msgstr ""
214
+
215
+ #: central/bootstrap.php:50
216
+ msgid "A new UpdraftCentral connection has not been made."
217
+ msgstr ""
218
+
219
+ #: central/bootstrap.php:53
220
+ msgid "The key referred to was unknown."
221
+ msgstr ""
222
+
223
+ #: central/bootstrap.php:59
224
+ msgid "You are not logged into this WordPress site in your web browser."
225
+ msgstr ""
226
+
227
+ #: central/bootstrap.php:59
228
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
229
+ msgstr ""
230
+
231
+ #: central/bootstrap.php:66
232
+ msgid "You must visit this link in the same browser and login session as you created the key in."
233
+ msgstr ""
234
+
235
+ #: central/bootstrap.php:70
236
+ msgid "This connection appears to already have been made."
237
+ msgstr ""
238
+
239
+ #: central/bootstrap.php:78
240
+ msgid "Close..."
241
+ msgstr ""
242
+
243
+ #: central/bootstrap.php:191
244
+ msgid "An invalid URL was entered"
245
+ msgstr ""
246
+
247
+ #: central/bootstrap.php:308 central/bootstrap.php:319
248
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
249
+ msgstr ""
250
+
251
+ #: central/bootstrap.php:376
252
+ msgid "Key description"
253
+ msgstr ""
254
+
255
+ #: central/bootstrap.php:376
256
+ msgid "Details"
257
+ msgstr "বিস্তারিত"
258
+
259
+ #: central/bootstrap.php:382
260
+ msgid "No keys have yet been created."
261
+ msgstr ""
262
+
263
+ #: central/bootstrap.php:414
264
+ msgid "Access this site as user:"
265
+ msgstr ""
266
+
267
+ #: central/bootstrap.php:417
268
+ msgid "Created:"
269
+ msgstr ""
270
+
271
+ #: central/bootstrap.php:424
272
+ msgid "Delete..."
273
+ msgstr ""
274
+
275
+ #: central/bootstrap.php:430
276
+ msgid "Create new key"
277
+ msgstr ""
278
+
279
+ #: central/bootstrap.php:432
280
+ msgid "Description"
281
+ msgstr "বর্ণনা"
282
+
283
+ #: central/bootstrap.php:432
284
+ msgid "Enter any description"
285
+ msgstr ""
286
+
287
+ #: central/bootstrap.php:434
288
+ msgid "URL of mothership"
289
+ msgstr ""
290
+
291
+ #: central/bootstrap.php:447
292
+ msgid "View recent UpdraftCentral log events"
293
+ msgstr ""
294
+
295
+ #: central/bootstrap.php:447
296
+ msgid "fetch..."
297
+ msgstr ""
298
+
299
+ #: central/bootstrap.php:458
300
+ msgid "UpdraftCentral (Remote Control)"
301
+ msgstr ""
302
+
303
+ #: class-updraftplus.php:361 class-updraftplus.php:406
304
+ msgid "The given file was not found, or could not be read."
305
+ msgstr ""
306
+
307
+ #: methods/updraftvault.php:219
308
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
309
+ msgstr ""
310
+
311
+ #: methods/updraftvault.php:274 methods/updraftvault.php:280
312
+ #: methods/updraftvault.php:286
313
+ msgid "or (annual discount)"
314
+ msgstr ""
315
+
316
+ #: methods/updraftvault.php:275 methods/updraftvault.php:281
317
+ #: methods/updraftvault.php:287
318
+ msgid "%s per year"
319
+ msgstr ""
320
+
321
+ #: addons/copycom.php:43 addons/copycom.php:81
322
+ msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
323
+ msgstr ""
324
+
325
+ #: addons/s3-enhanced.php:325
326
+ msgid "Asia Pacific (Seoul)"
327
+ msgstr ""
328
+
329
+ #: admin.php:477
330
+ msgid "Fetching..."
331
+ msgstr ""
332
+
333
+ #: admin.php:485
334
+ msgid "Error: the server sent us a response which we did not understand."
335
+ msgstr ""
336
+
337
+ #: admin.php:521
338
+ msgid "Saving..."
339
+ msgstr "সংরক্ষণ হচ্ছে..."
340
+
341
+ #: admin.php:538
342
+ msgid "Please enter a valid URL"
343
+ msgstr ""
344
+
345
+ #: admin.php:539
346
+ msgid "We requested to delete the file, but could not understand the server's response"
347
+ msgstr ""
348
+
349
+ #: admin.php:545
350
+ msgid "You should save your changes to ensure that they are used for making your backup."
351
+ msgstr ""
352
+
353
+ #: admin.php:2611
354
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
355
+ msgstr ""
356
+
357
+ #: admin.php:2875
358
+ msgid "calculate"
359
+ msgstr ""
360
+
361
+ #: admin.php:2946
362
+ msgid "this backup set"
363
+ msgstr ""
364
+
365
+ #: admin.php:2949
366
+ msgid "these backup sets"
367
+ msgstr ""
368
+
369
+ #: admin.php:3115
370
+ msgid "reset"
371
+ msgstr ""
372
+
373
+ #: admin.php:3161 admin.php:3165
374
+ msgid "Wipe settings"
375
+ msgstr ""
376
+
377
+ #: admin.php:3232
378
+ msgid "The backup has finished running"
379
+ msgstr ""
380
+
381
+ #: admin.php:3394
382
+ msgid "stop"
383
+ msgstr ""
384
+
385
+ #: admin.php:4308
386
+ msgid "Total backup size:"
387
+ msgstr ""
388
+
389
+ #: admin.php:5226
390
+ msgid "Your settings have been saved."
391
+ msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
392
+
393
+ #: addons/onedrive.php:50
394
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
395
+ msgstr ""
396
+
397
+ #: backup.php:385
398
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
399
+ msgstr ""
400
+
401
+ #: restorer.php:1538
402
+ msgid "Uploads URL:"
403
+ msgstr ""
404
+
405
+ #: addons/multisite.php:374 addons/multisite.php:384
406
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
407
+ msgstr ""
408
+
409
+ #: addons/multisite.php:525
410
+ msgid "Which site to restore"
411
+ msgstr ""
412
+
413
+ #: addons/multisite.php:529
414
+ msgid "All sites"
415
+ msgstr ""
416
+
417
+ #: addons/multisite.php:534
418
+ msgid "may include some site-wide data"
419
+ msgstr ""
420
+
421
+ #: addons/multisite.php:543
422
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
423
+ msgstr ""
424
+
425
+ #: addons/multisite.php:543
426
+ msgid "Read more..."
427
+ msgstr ""
428
+
429
+ #: admin.php:556
430
+ msgid "Please fill in the required information."
431
+ msgstr ""
432
+
433
+ #: admin.php:2739
434
+ msgid "Dismiss"
435
+ msgstr "ভন্ডুল"
436
+
437
+ #: class-updraftplus.php:3675
438
+ msgid "It will be imported as a new site."
439
+ msgstr ""
440
+
441
+ #: class-updraftplus.php:3675
442
+ msgid "Please read this link for important information on this process."
443
+ msgstr ""
444
+
445
+ #: class-updraftplus.php:3679 restorer.php:1558
446
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
447
+ msgstr ""
448
+
449
+ #: restorer.php:1899
450
+ msgid "Skipping table %s: this table will not be restored"
451
+ msgstr ""
452
+
453
+ #: addons/migrator.php:350 addons/migrator.php:353 addons/migrator.php:356
454
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
455
+ msgstr ""
456
+
457
+ #: addons/migrator.php:350
458
+ msgid "WordPress core"
459
+ msgstr ""
460
+
461
+ #: addons/migrator.php:353
462
+ msgid "other content from wp-content"
463
+ msgstr ""
464
+
465
+ #: addons/migrator.php:362 addons/migrator.php:364
466
+ msgid "Importing a single site into a multisite install"
467
+ msgstr ""
468
+
469
+ #: addons/migrator.php:364
470
+ msgid "This feature is not compatible with %s"
471
+ msgstr ""
472
+
473
+ #: addons/migrator.php:384 addons/migrator.php:386
474
+ msgid "You must use lower-case letters or numbers for the site path, only."
475
+ msgstr ""
476
+
477
+ #: addons/migrator.php:394
478
+ msgid "Attribute imported content to user"
479
+ msgstr ""
480
+
481
+ #: addons/migrator.php:435
482
+ msgid "Required information for restoring this backup was not given (%s)"
483
+ msgstr ""
484
+
485
+ #: addons/migrator.php:492 addons/migrator.php:493
486
+ msgid "Error when creating new site at your chosen address:"
487
+ msgstr ""
488
+
489
+ #: addons/migrator.php:518
490
+ msgid "<strong>ERROR</strong>: problem creating site entry."
491
+ msgstr ""
492
+
493
+ #: admin.php:3113
494
+ msgid "Call WordPress action:"
495
+ msgstr ""
496
+
497
+ #: admin.php:2763
498
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
499
+ msgstr ""
500
+
501
+ #: admin.php:354 admin.php:2407
502
+ msgid "Advanced Tools"
503
+ msgstr ""
504
+
505
+ #: admin.php:362
506
+ msgid "Extensions"
507
+ msgstr ""
508
+
509
+ #: admin.php:471
510
+ msgid "You have chosen to backup files, but no file entities have been selected"
511
+ msgstr ""
512
+
513
+ #: admin.php:544
514
+ msgctxt "(verb)"
515
+ msgid "Download"
516
+ msgstr ""
517
+
518
+ #: admin.php:2204 admin.php:2213
519
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
520
+ msgstr ""
521
+
522
+ #: admin.php:2408
523
+ msgid "Premium / Extensions"
524
+ msgstr ""
525
+
526
+ #: admin.php:2533
527
+ msgid "Backup Contents And Schedule"
528
+ msgstr ""
529
+
530
+ #: admin.php:2730
531
+ msgid "%s minutes, %s seconds"
532
+ msgstr ""
533
+
534
+ #: admin.php:2732
535
+ msgid "Unfinished restoration"
536
+ msgstr ""
537
+
538
+ #: admin.php:2733
539
+ msgid "You have an unfinished restoration operation, begun %s ago."
540
+ msgstr ""
541
+
542
+ #: admin.php:2738
543
+ msgid "Continue restoration"
544
+ msgstr ""
545
+
546
+ #: admin.php:2759
547
+ msgid "Include the database in the backup"
548
+ msgstr ""
549
+
550
+ #: admin.php:2761
551
+ msgid "Include any files in the backup"
552
+ msgstr ""
553
+
554
+ #: admin.php:5125
555
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
556
+ msgstr ""
557
+
558
+ #: admin.php:5125
559
+ msgid "settings"
560
+ msgstr "সেটিংস"
561
+
562
+ #: admin.php:5125
563
+ msgid "Not got any remote storage?"
564
+ msgstr ""
565
+
566
+ #: admin.php:5125
567
+ msgid "Check out UpdraftPlus Vault."
568
+ msgstr ""
569
+
570
+ #: admin.php:5127
571
+ msgid "Send this backup to remote storage"
572
+ msgstr ""
573
+
574
+ #: admin.php:3162
575
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
576
+ msgstr ""
577
+
578
+ #: admin.php:3162
579
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
580
+ msgstr ""
581
+
582
+ #: admin.php:3694
583
+ msgid "Files backup schedule"
584
+ msgstr ""
585
+
586
+ #: admin.php:3727
587
+ msgid "Incremental file backup schedule"
588
+ msgstr ""
589
+
590
+ #: admin.php:3737
591
+ msgid "Database backup schedule"
592
+ msgstr ""
593
+
594
+ #: admin.php:3772
595
+ msgid "Sending Your Backup To Remote Storage"
596
+ msgstr ""
597
+
598
+ #: admin.php:3833
599
+ msgid "File Options"
600
+ msgstr ""
601
+
602
+ #: admin.php:4863
603
+ msgid "Skipping: this archive was already restored."
604
+ msgstr ""
605
+
606
+ #: addons/googlecloud.php:860
607
+ msgid "You must use a bucket name that is unique, for all %s users."
608
+ msgstr ""
609
+
610
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
611
+ msgid "This setting applies only when a new bucket is being created."
612
+ msgstr ""
613
+
614
+ #: addons/googlecloud.php:875
615
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
616
+ msgstr ""
617
+
618
+ #: addons/googlecloud.php:880
619
+ msgid "Bucket location"
620
+ msgstr ""
621
+
622
+ #: addons/googlecloud.php:45
623
+ msgid " Eastern United States"
624
+ msgstr ""
625
+
626
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
627
+ msgid "Eastern United States"
628
+ msgstr ""
629
+
630
+ #: addons/googlecloud.php:49
631
+ msgid "Western United States"
632
+ msgstr ""
633
+
634
+ #: addons/googlecloud.php:50
635
+ msgid "Eastern Asia-Pacific"
636
+ msgstr ""
637
+
638
+ #: addons/googlecloud.php:51
639
+ msgid "Western Europe"
640
+ msgstr ""
641
+
642
+ #: addons/googlecloud.php:268
643
+ msgid "You do not have access to this bucket"
644
+ msgstr ""
645
+
646
+ #: addons/googlecloud.php:816
647
+ msgid "Do not confuse %s with %s - they are separate things."
648
+ msgstr ""
649
+
650
+ #: addons/azure.php:516
651
+ msgid "If the %s does not already exist, then it will be created."
652
+ msgstr ""
653
+
654
+ #: addons/azure.php:516
655
+ msgid "See Microsoft's guidelines on container naming by following this link."
656
+ msgstr ""
657
+
658
+ #: addons/azure.php:521
659
+ msgid "Prefix"
660
+ msgstr ""
661
+
662
+ #: addons/azure.php:521
663
+ msgid "optional"
664
+ msgstr ""
665
+
666
+ #: addons/azure.php:522
667
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
668
+ msgstr ""
669
+
670
+ #: addons/azure.php:522
671
+ msgid "container"
672
+ msgstr ""
673
+
674
+ #: addons/googlecloud.php:35 addons/s3-enhanced.php:53
675
+ msgid "Standard"
676
+ msgstr ""
677
+
678
+ #: addons/googlecloud.php:36
679
+ msgid "Durable reduced availability"
680
+ msgstr ""
681
+
682
+ #: addons/googlecloud.php:37
683
+ msgid "Nearline"
684
+ msgstr ""
685
+
686
+ #: addons/googlecloud.php:41
687
+ msgid "United States"
688
+ msgstr ""
689
+
690
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
691
+ #: addons/googlecloud.php:43
692
+ msgid "multi-region location"
693
+ msgstr ""
694
+
695
+ #: addons/googlecloud.php:42
696
+ msgid "Asia Pacific"
697
+ msgstr ""
698
+
699
+ #: addons/googlecloud.php:43
700
+ msgid "European Union"
701
+ msgstr ""
702
+
703
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
704
+ msgid "Central United States"
705
+ msgstr ""
706
+
707
+ #: addons/azure.php:342
708
+ msgid "Could not access container"
709
+ msgstr ""
710
+
711
+ #: addons/azure.php:448
712
+ msgid "Could not create the container"
713
+ msgstr ""
714
+
715
+ #: addons/azure.php:500
716
+ msgid "Create Azure credentials in your Azure developer console."
717
+ msgstr ""
718
+
719
+ #: addons/azure.php:504 addons/azure.php:508
720
+ msgid "Azure"
721
+ msgstr ""
722
+
723
+ #: addons/azure.php:504
724
+ msgid "Account Name"
725
+ msgstr ""
726
+
727
+ #: addons/azure.php:505
728
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
729
+ msgstr ""
730
+
731
+ #: addons/azure.php:516
732
+ msgid "Enter the path of the %s you wish to use here."
733
+ msgstr ""
734
+
735
+ #: class-updraftplus.php:2485
736
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
737
+ msgstr ""
738
+
739
+ #: addons/googlecloud.php:854
740
+ msgid "Project ID"
741
+ msgstr ""
742
+
743
+ #: addons/googlecloud.php:743
744
+ msgid "You must enter a project ID in order to be able to create a new bucket."
745
+ msgstr ""
746
+
747
+ #: addons/googlecloud.php:828
748
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
749
+ msgstr ""
750
+
751
+ #: addons/googlecloud.php:855
752
+ msgid "Enter the ID of the %s project you wish to use here."
753
+ msgstr ""
754
+
755
+ #: addons/googlecloud.php:855
756
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
757
+ msgstr ""
758
+
759
+ #: addons/googlecloud.php:855
760
+ msgid "Otherwise, you can leave it blank."
761
+ msgstr ""
762
+
763
+ #: addons/googlecloud.php:859
764
+ msgid "Bucket"
765
+ msgstr ""
766
+
767
+ #: addons/googlecloud.php:860
768
+ msgid "Enter the name of the %s bucket you wish to use here."
769
+ msgstr ""
770
+
771
+ #: addons/googlecloud.php:860
772
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
773
+ msgstr ""
774
+
775
+ #: addons/googlecloud.php:860
776
+ msgid "See Google's guidelines on bucket naming by following this link."
777
+ msgstr ""
778
+
779
+ #: addons/googlecloud.php:865 addons/s3-enhanced.php:46
780
+ msgid "Storage class"
781
+ msgstr ""
782
+
783
+ #: admin.php:3088
784
+ msgid "Not installed"
785
+ msgstr ""
786
+
787
+ #: admin.php:3088
788
+ msgid "required for some remote storage providers"
789
+ msgstr ""
790
+
791
+ #: backup.php:1412
792
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
793
+ msgstr ""
794
+
795
+ #: backup.php:1516 backup.php:1518
796
+ msgid "The database backup appears to have failed"
797
+ msgstr ""
798
+
799
+ #: backup.php:1516
800
+ msgid "no options or sitemeta table was found"
801
+ msgstr ""
802
+
803
+ #: backup.php:1518
804
+ msgid "the options table was not found"
805
+ msgstr ""
806
+
807
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
808
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
809
+ #: addons/googlecloud.php:782
810
+ msgid "%s Service Exception."
811
+ msgstr ""
812
+
813
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
814
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
815
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
816
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
817
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
818
+ #: addons/googlecloud.php:860
819
+ msgid "Google Cloud"
820
+ msgstr ""
821
+
822
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
823
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
824
+ msgid "You do not have access to this bucket."
825
+ msgstr ""
826
+
827
+ #: addons/googlecloud.php:479
828
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
829
+ msgstr ""
830
+
831
+ #: addons/googlecloud.php:609
832
+ msgid "You must save and authenticate before you can test your settings."
833
+ msgstr ""
834
+
835
+ #: admin.php:548
836
+ msgid "day"
837
+ msgstr ""
838
+
839
+ #: admin.php:549
840
+ msgid "in the month"
841
+ msgstr ""
842
+
843
+ #: admin.php:550
844
+ msgid "day(s)"
845
+ msgstr ""
846
+
847
+ #: admin.php:551
848
+ msgid "hour(s)"
849
+ msgstr ""
850
+
851
+ #: admin.php:552
852
+ msgid "week(s)"
853
+ msgstr ""
854
+
855
+ #: admin.php:553
856
+ msgid "For backups older than"
857
+ msgstr ""
858
+
859
+ #: admin.php:555
860
+ msgid "Processing..."
861
+ msgstr ""
862
+
863
+ #: admin.php:1626
864
+ msgid "Backup sets removed: %d"
865
+ msgstr ""
866
+
867
+ #: admin.php:2881
868
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
869
+ msgstr ""
870
+
871
+ #: admin.php:2932
872
+ msgid "Actions upon selected backups"
873
+ msgstr ""
874
+
875
+ #: admin.php:2934
876
+ msgid "Select all"
877
+ msgstr ""
878
+
879
+ #: admin.php:2935
880
+ msgid "Deselect"
881
+ msgstr ""
882
+
883
+ #: admin.php:2946 admin.php:2949
884
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
885
+ msgstr ""
886
+
887
+ #: admin.php:3766
888
+ msgid "or to configure more complex schedules"
889
+ msgstr ""
890
+
891
+ #: restorer.php:707
892
+ msgid "Deferring..."
893
+ msgstr ""
894
+
895
+ #: updraftplus.php:147
896
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
897
+ msgstr ""
898
+
899
+ #: addons/morestorage.php:26
900
+ msgid "(as many as you like)"
901
+ msgstr ""
902
+
903
+ #: addons/fixtime.php:281 addons/fixtime.php:286
904
+ msgid "Add an additional retention rule..."
905
+ msgstr ""
906
+
907
+ #: methods/updraftvault.php:580
908
+ msgid "You do not currently have any UpdraftPlus Vault quota"
909
+ msgstr ""
910
+
911
+ #: restorer.php:1985
912
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
913
+ msgstr ""
914
+
915
+ #: restorer.php:1985
916
+ msgid "This database needs to be deployed on MySQL version %s or later."
917
+ msgstr ""
918
+
919
+ #: admin.php:2336
920
+ msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
921
+ msgstr ""
922
+
923
+ #: admin.php:2661
924
+ msgid "No advertising links on UpdraftPlus settings page"
925
+ msgstr ""
926
+
927
+ #: class-updraftplus.php:3712
928
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
929
+ msgstr ""
930
+
931
+ #: class-updraftplus.php:3712
932
+ msgid "You must upgrade MySQL to be able to use this database."
933
+ msgstr ""
934
+
935
+ #: methods/updraftvault.php:308
936
+ msgid "Don't know your email address, or forgotten your password?"
937
+ msgstr "আপনার ইমেল ঠিকানা জানা নেই, নাকি আপনার পাসওয়ার্ড ভুলে গিয়েছেন?"
938
+
939
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
940
+ msgid "Read the FAQs here."
941
+ msgstr "এখানে প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী পড়ুন।"
942
+
943
+ #: methods/updraftvault.php:301
944
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
945
+ msgstr ""
946
+
947
+ #: addons/s3-enhanced.php:60
948
+ msgid "Server-side encryption"
949
+ msgstr "সার্ভার সাইড এনক্রিপশন"
950
+
951
+ #: addons/s3-enhanced.php:61
952
+ msgid "Check this box to use Amazon's server-side encryption"
953
+ msgstr "আমাজনের সার্ভার সাইড এনক্রিপশন ব্যবহার করতে এই বক্সটি টিক দিন"
954
+
955
+ #: methods/updraftvault.php:589
956
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
957
+ msgstr ""
958
+
959
+ #: admin.php:816
960
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
961
+ msgstr ""
962
+
963
+ #: admin.php:816
964
+ msgid "Go to the remote storage settings in order to connect."
965
+ msgstr ""
966
+
967
+ #: methods/updraftvault.php:290
968
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
969
+ msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
970
+
971
+ #: admin.php:523
972
+ msgid "Connecting..."
973
+ msgstr "সংযোগ করা হচ্ছে..."
974
+
975
+ #: admin.php:525
976
+ msgid "Disconnecting..."
977
+ msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে..."
978
+
979
+ #: admin.php:526
980
+ msgid "Counting..."
981
+ msgstr "গণনা করা হচ্ছে..."
982
+
983
+ #: admin.php:527
984
+ msgid "Update quota count"
985
+ msgstr " প্রাপ্য সংখ্যা হালনাগাদ"
986
+
987
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
988
+ msgid "Updraft Vault"
989
+ msgstr "ভল্ট আপডেট করুন"
990
+
991
+ #: methods/updraftvault.php:209
992
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
993
+ msgstr "আপনার UpdraftPlus Premium কেনার এক বছর অতিক্রান্ত হয়ে গিয়েছে। আপনার এখনি তা নবিনীকরন করা উচিত আপনার ১২ মাসের বিনামূল্যের স্টোরেজ এর সুবিধা রক্ষার্থে যা আপনি UpdraftPlus Premium কাস্টমার হওয়ার জন্য পেয়ে থাকেন।"
994
+
995
+ #: methods/updraftvault.php:212
996
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
997
+ msgstr "আপনার UpdraftPlus Vault এর পেমেন্ট নির্দিষ্ট সময় অতিক্রম করে ফেলেছে। এবং আপনার এ্যাকাউন্ট কিছু দিনের মাঝে বন্ধ করে দেয়া হবে, এবং আপনি আপনার প্রাপ্য এবং এর সকল তথ্য হারাবেন। দয়া করে তাড়াতাড়ি রিনিউ করুন!"
998
+
999
+ #: methods/updraftvault.php:215
1000
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
1001
+ msgstr ""
1002
+
1003
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1004
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1005
+ msgstr "UpdraftPlus Vault আপনাকে স্টোরেজের সুবিধা দেয় যেটি <strong>বিশ্বাসযোগ্য, সহজে ব্যাবহারযোগ্য এবং চমৎকার দামে</strong>।"
1006
+
1007
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1008
+ msgid "Press a button to get started."
1009
+ msgstr "কাজ শুরু করতে যেকোনো একটি বোতাম চাপুন।"
1010
+
1011
+ #: methods/updraftvault.php:255
1012
+ msgid "First time user?"
1013
+ msgstr "প্রথম বার ব্যাবহারকারি?"
1014
+
1015
+ #: methods/updraftvault.php:256
1016
+ msgid "Show the options"
1017
+ msgstr "অপশন দেখান"
1018
+
1019
+ #: methods/updraftvault.php:259
1020
+ msgid "Already purchased space?"
1021
+ msgstr "জায়গা আগে থেকে কিনেছেন?"
1022
+
1023
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1024
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1025
+ msgstr "UpdraftPlus Vault অ্যামাজনের বিশ্বসেরা ডাটা সেন্টারে তৈরী। এছাড়া অতিরিক্ত ডাটার স্টোরেজের মাধ্যমে আছে ৯৯.৯৯৯৯৯৯৯৯৯% বিশ্বাসযোগ্যতা"
1026
+
1027
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1028
+ msgid "Read more about it here."
1029
+ msgstr "এইটি সম্পর্কে আরও পড়ুন এখানে।"
1030
+
1031
+ #: methods/updraftvault.php:273 methods/updraftvault.php:279
1032
+ #: methods/updraftvault.php:285
1033
+ msgid "%s per quarter"
1034
+ msgstr "%s প্রতি তিন মাসে"
1035
+
1036
+ #: methods/updraftvault.php:290
1037
+ msgid "Subscriptions can be cancelled at any time."
1038
+ msgstr "সাবস্ক্রিপশন যেকোনো সময় বাতিল করা সম্ভব"
1039
+
1040
+ #: methods/updraftvault.php:296 methods/updraftvault.php:311
1041
+ msgid "Back..."
1042
+ msgstr "ফিরে চলুন..."
1043
+
1044
+ #: methods/updraftvault.php:303
1045
+ msgid "E-mail"
1046
+ msgstr "ই-মেইল"
1047
+
1048
+ #: methods/updraftvault.php:308
1049
+ msgid "Go here for help"
1050
+ msgstr "সাহায্যের জন্য এখানে যান"
1051
+
1052
+ #: methods/updraftvault.php:332
1053
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1054
+ msgstr "আপনি UpdraftPlus Vault এ<strong>সংযুক্ত নন</strong>।"
1055
+
1056
+ #: methods/updraftvault.php:336
1057
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1058
+ msgstr "এই সাইটটি UpdraftPlus Vault এ <strong>সংযুক্ত</strong>।"
1059
+
1060
+ #: methods/updraftvault.php:336
1061
+ msgid "Well done - there's nothing more needed to set up."
1062
+ msgstr "চমৎকার - এখন আর আপনাকে কিছুই করতে হবে না।"
1063
+
1064
+ #: methods/updraftvault.php:336
1065
+ msgid "Vault owner"
1066
+ msgstr "ভল্টের মালিক"
1067
+
1068
+ #: methods/updraftvault.php:338
1069
+ msgid "Quota:"
1070
+ msgstr "প্রাপ্য:"
1071
+
1072
+ #: admin.php:524 methods/updraftvault.php:346
1073
+ msgid "Disconnect"
1074
+ msgstr "সংযোগ বিচ্ছিন্ন করুন"
1075
+
1076
+ #: methods/updraftvault.php:354
1077
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1078
+ msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
1079
+
1080
+ #: methods/updraftvault.php:354
1081
+ msgid "You can get more quota here"
1082
+ msgstr "আপনি এখান থেকে আরও প্রাপ্য পেতে পারেন"
1083
+
1084
+ #: methods/updraftvault.php:359 methods/updraftvault.php:375
1085
+ #: methods/updraftvault.php:414
1086
+ msgid "Current use:"
1087
+ msgstr "বর্তমান ব্যাবহার:"
1088
+
1089
+ #: methods/updraftvault.php:362 methods/updraftvault.php:378
1090
+ #: methods/updraftvault.php:380 methods/updraftvault.php:433
1091
+ msgid "Get more quota"
1092
+ msgstr "আরও প্রাপ্য নিন"
1093
+
1094
+ #: methods/updraftvault.php:364 methods/updraftvault.php:433
1095
+ msgid "Refresh current status"
1096
+ msgstr "বর্তমান অবস্থা পুনঃবিবেচনা করুন"
1097
+
1098
+ #: addons/s3-enhanced.php:343
1099
+ msgid "Allow download"
1100
+ msgstr "ডাউনলোড এর অনুমতি দিন"
1101
+
1102
+ #: addons/s3-enhanced.php:345
1103
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1104
+ msgstr "এই অনুমতি ছাড়া আপনি সরাসরি UpdraftPlus ব্যাবহার করে ডাউনলোড বা রিস্টোর করতে পারবেন না, বরং আপনাকে AWS ওয়েবসাইটটি ভিজিট করতে হবে।"
1105
+
1106
+ #: addons/s3-enhanced.php:347
1107
+ msgid "Allow deletion"
1108
+ msgstr "ডিলিট করার অনুমতি দিন"
1109
+
1110
+ #: addons/s3-enhanced.php:349
1111
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1112
+ msgstr ""
1113
+
1114
+ #: backup.php:2938
1115
+ msgid "The zip engine returned the message: %s."
1116
+ msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
1117
+
1118
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:977
1119
+ msgid "Delete failed:"
1120
+ msgstr "ডিলিট ব্যর্থ:"
1121
+
1122
+ #: addons/migrator.php:1722 admin.php:533
1123
+ msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1124
+ msgstr ""
1125
+
1126
+ #: addons/migrator.php:1737
1127
+ msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1128
+ msgstr ""
1129
+
1130
+ #: admin.php:531
1131
+ msgid "Creating..."
1132
+ msgstr "তৈরি করা হচ্ছে..."
1133
+
1134
+ #: admin.php:534
1135
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1136
+ msgstr "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
1137
+
1138
+ #: admin.php:536
1139
+ msgid "key name"
1140
+ msgstr "চাবির(কি) নাম"
1141
+
1142
+ #: admin.php:537
1143
+ msgid "Deleting..."
1144
+ msgstr "মুছে ফেলা হচ্ছে..."
1145
+
1146
+ #: addons/migrator.php:1750 admin.php:540
1147
+ msgid "Testing connection..."
1148
+ msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
1149
+
1150
+ #: admin.php:1268
1151
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1152
+ msgstr ""
1153
+
1154
+ #: admin.php:1268
1155
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1156
+ msgstr ""
1157
+
1158
+ #: admin.php:2989
1159
+ 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=\"https://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>."
1160
+ msgstr ""
1161
+
1162
+ #: admin.php:4395
1163
+ msgid "Backup sent to remote site - not available for download."
1164
+ msgstr "ব্যাকআপ রিমোট সাইটের পাঠানো হয়েছে - ডাউনলোডের জন্য উপলব্ধ না"
1165
+
1166
+ #: admin.php:4396
1167
+ msgid "Site"
1168
+ msgstr "সাইট"
1169
+
1170
+ #: admin.php:4623
1171
+ msgid "(backup set imported from remote location)"
1172
+ msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
1173
+
1174
+ #: methods/addon-base.php:177
1175
+ msgid "This storage method does not allow downloading"
1176
+ msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
1177
+
1178
+ #: addons/reporting.php:143
1179
+ msgid "Backup made by %s"
1180
+ msgstr "ব্যাকআপ তৈরি করেছেন %s"
1181
+
1182
+ #: addons/migrator.php:185
1183
+ msgid "This site has no backups to restore from yet."
1184
+ msgstr ""
1185
+
1186
+ #: addons/migrator.php:192
1187
+ msgid "Restore an existing backup set onto this site"
1188
+ msgstr ""
1189
+
1190
+ #: addons/migrator.php:1674
1191
+ msgid "Backup data will be sent to:"
1192
+ msgstr "ব্যাক তথ্য পাঠানো হবে:"
1193
+
1194
+ #: addons/migrator.php:1689
1195
+ msgid "site not found"
1196
+ msgstr "সাইট খুঁজে পাওয়া যায় নি"
1197
+
1198
+ #: addons/migrator.php:1733
1199
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1200
+ msgstr ""
1201
+
1202
+ #: addons/migrator.php:1768
1203
+ msgid "Also send this backup to the active remote storage locations"
1204
+ msgstr ""
1205
+
1206
+ #: addons/migrator.php:1820
1207
+ msgid "A key with this name already exists; you must use a unique name."
1208
+ msgstr ""
1209
+
1210
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1211
+ msgid "Key created successfully."
1212
+ msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
1213
+
1214
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1215
+ msgid "You must copy and paste this key now - it cannot be shown again."
1216
+ msgstr ""
1217
+
1218
+ #: addons/migrator.php:2175
1219
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1220
+ msgstr ""
1221
+
1222
+ #: addons/migrator.php:2175
1223
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1224
+ msgstr ""
1225
+
1226
+ #: addons/migrator.php:2192
1227
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1228
+ msgstr ""
1229
+
1230
+ #: addons/migrator.php:2213
1231
+ msgid "Your new key:"
1232
+ msgstr "আপনার নতুন চাবি:"
1233
+
1234
+ #: addons/migrator.php:2231
1235
+ msgid "No keys to allow remote sites to connect have yet been created."
1236
+ msgstr ""
1237
+
1238
+ #: addons/migrator.php:2240
1239
+ msgid "Existing keys"
1240
+ msgstr ""
1241
+
1242
+ #: methods/ftp.php:307
1243
+ msgid "FTP server"
1244
+ msgstr "FTP সার্ভার"
1245
+
1246
+ #: methods/ftp.php:311
1247
+ msgid "FTP login"
1248
+ msgstr "FTP লগইন"
1249
+
1250
+ #: methods/ftp.php:315
1251
+ msgid "FTP password"
1252
+ msgstr "FTP পাসওয়ার্ড"
1253
+
1254
+ #: methods/ftp.php:319
1255
+ msgid "Remote path"
1256
+ msgstr ""
1257
+
1258
+ #: methods/ftp.php:323
1259
+ msgid "Passive mode"
1260
+ msgstr ""
1261
+
1262
+ #: methods/ftp.php:325
1263
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1264
+ msgstr ""
1265
+
1266
+ #: addons/migrator.php:1851
1267
+ msgid "key"
1268
+ msgstr "চাবি"
1269
+
1270
+ #: addons/migrator.php:1861
1271
+ msgid "The entered key was the wrong length - please try again."
1272
+ msgstr ""
1273
+
1274
+ #: addons/migrator.php:1863 addons/migrator.php:1865 addons/migrator.php:1869
1275
+ msgid "The entered key was corrupt - please try again."
1276
+ msgstr ""
1277
+
1278
+ #: addons/migrator.php:1874
1279
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1280
+ msgstr ""
1281
+
1282
+ #: addons/migrator.php:1890
1283
+ msgid "The key was successfully added."
1284
+ msgstr ""
1285
+
1286
+ #: addons/migrator.php:1890
1287
+ msgid "It is for sending backups to the following site: "
1288
+ msgstr ""
1289
+
1290
+ #: addons/migrator.php:1909
1291
+ msgid "No receiving sites have yet been added."
1292
+ msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
1293
+
1294
+ #: addons/migrator.php:1911 admin.php:532
1295
+ msgid "Send to site:"
1296
+ msgstr ""
1297
+
1298
+ #: addons/migrator.php:1917 admin.php:541
1299
+ msgid "Send"
1300
+ msgstr "পাঠান"
1301
+
1302
+ #: addons/migrator.php:2172
1303
+ msgid "Or, send a backup to another site"
1304
+ msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
1305
+
1306
+ #: addons/migrator.php:2175
1307
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1308
+ msgstr ""
1309
+
1310
+ #: addons/migrator.php:2175
1311
+ msgid "How do I get a site's key?"
1312
+ msgstr ""
1313
+
1314
+ #: addons/migrator.php:2180
1315
+ msgid "Paste key here"
1316
+ msgstr "চাবি এখানে পেস্ট করুন"
1317
+
1318
+ #: addons/migrator.php:2191
1319
+ msgid "Or, receive a backup from a remote site"
1320
+ msgstr "অথবা, অন্য একটি সাইট থেকে ব্যাকআপ গ্রহণ করুন"
1321
+
1322
+ #: admin.php:528
1323
+ msgid "Adding..."
1324
+ msgstr "যুক্ত করা হচ্ছে..."
1325
+
1326
+ #: addons/migrator.php:2180 admin.php:529
1327
+ msgid "Add site"
1328
+ msgstr "সাইট যুক্ত করুন"
1329
+
1330
+ #: addons/migrator.php:165
1331
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1332
+ msgstr ""
1333
+
1334
+ #: addons/migrator.php:165
1335
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1336
+ msgstr ""
1337
+
1338
+ #: restorer.php:1987
1339
+ msgid "To use this backup, your database server needs to support the %s character set."
1340
+ msgstr ""
1341
+
1342
+ #: udaddons/options.php:338
1343
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1344
+ msgstr ""
1345
+
1346
+ #: udaddons/updraftplus-addons.php:758
1347
+ msgid "Go here to re-enter your password."
1348
+ msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
1349
+
1350
+ #: udaddons/updraftplus-addons.php:759
1351
+ msgid "If you have forgotten your password "
1352
+ msgstr "আপনি যদি আপনার পাসওয়ার্ডটি ভুলে গিয়ে থাকেন"
1353
+
1354
+ #: udaddons/updraftplus-addons.php:759
1355
+ msgid "go here to change your password on updraftplus.com."
1356
+ msgstr "আপনার updraftplus.com এর পাসওয়ার্ডটি পরিবর্তন করতে এখানে যান।"
1357
+
1358
+ #: addons/migrator.php:192
1359
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1360
+ msgstr ""
1361
+
1362
+ #: addons/migrator.php:221
1363
+ msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1364
+ msgstr ""
1365
+
1366
+ #: admin.php:520 admin.php:545
1367
+ msgid "You have made changes to your settings, and not saved."
1368
+ msgstr ""
1369
+
1370
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1371
+ msgid "To remove the block, please go here."
1372
+ msgstr "ব্লক সরাতে, এখানে যান।"
1373
+
1374
+ #: methods/email.php:73
1375
+ msgid "configure it here"
1376
+ msgstr "এটিকে এইখানে কনফিগার করুন"
1377
+
1378
+ #: addons/onedrive.php:496
1379
+ msgid "Please re-authorize the connection to your %s account."
1380
+ msgstr ""
1381
+
1382
+ #: addons/onedrive.php:611 addons/onedrive.php:755 addons/onedrive.php:759
1383
+ msgid "OneDrive"
1384
+ msgstr "OneDrive"
1385
+
1386
+ #: addons/onedrive.php:721 addons/onedrive.php:723
1387
+ msgid "%s authorisation failed:"
1388
+ msgstr ""
1389
+
1390
+ #: addons/onedrive.php:739
1391
+ msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1392
+ msgstr ""
1393
+
1394
+ #: addons/onedrive.php:741
1395
+ msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1396
+ msgstr ""
1397
+
1398
+ #: addons/onedrive.php:747
1399
+ msgid "Create OneDrive credentials in your OneDrive developer console."
1400
+ msgstr ""
1401
+
1402
+ #: addons/azure.php:500 addons/migrator.php:1737 addons/onedrive.php:747
1403
+ msgid "For longer help, including screenshots, follow this link."
1404
+ msgstr ""
1405
+
1406
+ #: addons/onedrive.php:756
1407
+ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1408
+ msgstr ""
1409
+
1410
+ #: addons/onedrive.php:767
1411
+ msgid "N.B. %s is not case-sensitive."
1412
+ msgstr ""
1413
+
1414
+ #: addons/s3-enhanced.php:321
1415
+ msgid "US West (N. California)"
1416
+ msgstr "US West (N. California)"
1417
+
1418
+ #: addons/s3-enhanced.php:322
1419
+ msgid "US Government West (restricted)"
1420
+ msgstr "US Government West (সীমাবদ্ধ)"
1421
+
1422
+ #: addons/s3-enhanced.php:323
1423
+ msgid "EU (Ireland)"
1424
+ msgstr "EU (আয়ারল্যান্ড)"
1425
+
1426
+ #: addons/s3-enhanced.php:324
1427
+ msgid "EU (Frankfurt)"
1428
+ msgstr "EU (Frankfurt)"
1429
+
1430
+ #: addons/s3-enhanced.php:326
1431
+ msgid "Asia Pacific (Singapore)"
1432
+ msgstr "এশিয়া প্যাসিফিক (সিঙ্গাপুর)"
1433
+
1434
+ #: addons/s3-enhanced.php:327
1435
+ msgid "Asia Pacific (Sydney)"
1436
+ msgstr "এশিয়া প্যাসিফিক (সিডনি)"
1437
+
1438
+ #: addons/s3-enhanced.php:329
1439
+ msgid "Asia Pacific (Tokyo)"
1440
+ msgstr "এশিয়া প্যাসিফিক (টোকিও)"
1441
+
1442
+ #: addons/s3-enhanced.php:330
1443
+ msgid "South America (Sao Paulo)"
1444
+ msgstr "দক্ষিণ আমেরিকা (সাও পাওলো)"
1445
+
1446
+ #: addons/s3-enhanced.php:331
1447
+ msgid "China (Beijing) (restricted)"
1448
+ msgstr "চায়না (বেইজিং) (সীমাবদ্ধ)"
1449
+
1450
+ #: addons/s3-enhanced.php:341
1451
+ msgid "S3 bucket"
1452
+ msgstr "S3 bucket"
1453
+
1454
+ #: addons/s3-enhanced.php:437
1455
+ msgid "You are now using a IAM user account to access your bucket."
1456
+ msgstr ""
1457
+
1458
+ #: addons/s3-enhanced.php:437
1459
+ msgid "Do remember to save your settings."
1460
+ msgstr "আপনার নির্বাচিত বৈশিষ্ট্যগুলি সংরক্ষণ করতে ভুলবেন না।"
1461
+
1462
+ #: restorer.php:2086
1463
+ msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1464
+ msgstr ""
1465
+
1466
+ #: admin.php:396
1467
+ msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1468
+ msgstr ""
1469
+
1470
+ #: admin.php:398
1471
+ msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1472
+ msgstr ""
1473
+
1474
+ #: methods/s3.php:778
1475
+ msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1476
+ msgstr ""
1477
+
1478
+ #: addons/s3-enhanced.php:71
1479
+ msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1480
+ msgstr ""
1481
+
1482
+ #: addons/s3-enhanced.php:83
1483
+ msgid "You need to enter an admin access key"
1484
+ msgstr ""
1485
+
1486
+ #: addons/s3-enhanced.php:86
1487
+ msgid "You need to enter an admin secret key"
1488
+ msgstr ""
1489
+
1490
+ #: addons/s3-enhanced.php:89
1491
+ msgid "You need to enter a new IAM username"
1492
+ msgstr ""
1493
+
1494
+ #: addons/s3-enhanced.php:92
1495
+ msgid "You need to enter a bucket"
1496
+ msgstr ""
1497
+
1498
+ #: addons/s3-enhanced.php:117
1499
+ msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1500
+ msgstr ""
1501
+
1502
+ #: addons/s3-enhanced.php:124
1503
+ msgid "AWS authentication failed"
1504
+ msgstr ""
1505
+
1506
+ #: addons/s3-enhanced.php:171
1507
+ 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 AWS user may already have taken your name)."
1508
+ msgstr ""
1509
+
1510
+ #: addons/s3-enhanced.php:199
1511
+ msgid "Conflict: that user already exists"
1512
+ msgstr ""
1513
+
1514
+ #: addons/s3-enhanced.php:201 addons/s3-enhanced.php:204
1515
+ #: addons/s3-enhanced.php:208
1516
+ msgid "IAM operation failed (%s)"
1517
+ msgstr ""
1518
+
1519
+ #: addons/s3-enhanced.php:221
1520
+ msgid "Failed to create user Access Key"
1521
+ msgstr ""
1522
+
1523
+ #: addons/s3-enhanced.php:223 addons/s3-enhanced.php:227
1524
+ msgid "Operation to create user Access Key failed"
1525
+ msgstr ""
1526
+
1527
+ #: addons/s3-enhanced.php:282 addons/s3-enhanced.php:284
1528
+ msgid "Failed to apply User Policy"
1529
+ msgstr ""
1530
+
1531
+ #: addons/s3-enhanced.php:294
1532
+ msgid "Access Key: %s"
1533
+ msgstr "অ্যাক্সেস চাবি: %s"
1534
+
1535
+ #: addons/s3-enhanced.php:294
1536
+ msgid "Secret Key: %s"
1537
+ msgstr "গোপন চাবি: %s"
1538
+
1539
+ #: addons/s3-enhanced.php:378
1540
+ msgid "Create new IAM user and S3 bucket"
1541
+ msgstr ""
1542
+
1543
+ #: addons/s3-enhanced.php:304
1544
+ msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1545
+ msgstr ""
1546
+
1547
+ #: addons/s3-enhanced.php:304
1548
+ msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1549
+ msgstr ""
1550
+
1551
+ #: addons/s3-enhanced.php:304
1552
+ msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1553
+ msgstr ""
1554
+
1555
+ #: addons/s3-enhanced.php:311
1556
+ msgid "Admin access key"
1557
+ msgstr ""
1558
+
1559
+ #: addons/s3-enhanced.php:312
1560
+ msgid "Admin secret key"
1561
+ msgstr ""
1562
+
1563
+ #: addons/s3-enhanced.php:313
1564
+ msgid "New IAM username"
1565
+ msgstr ""
1566
+
1567
+ #: addons/s3-enhanced.php:315
1568
+ msgid "S3 storage region"
1569
+ msgstr "S3 storage region"
1570
+
1571
+ #: addons/s3-enhanced.php:319
1572
+ msgid "US Standard (default)"
1573
+ msgstr "US Standard (default)"
1574
+
1575
+ #: addons/s3-enhanced.php:320
1576
+ msgid "US West (Oregon)"
1577
+ msgstr "US West (Oregon)"
1578
+
1579
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1580
+ msgid "UpdraftPlus.com has responded with 'Access Denied'."
1581
+ msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
1582
+
1583
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1584
+ msgid "It appears that your web server's IP Address (%s) is blocked."
1585
+ msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
1586
+
1587
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1588
+ msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1589
+ msgstr ""
1590
+
1591
+ #: admin.php:389 admin.php:403
1592
+ msgid "Dismiss (for %s months)"
1593
+ msgstr ""
1594
+
1595
+ #: admin.php:391
1596
+ msgid "Thank you for backing up with UpdraftPlus!"
1597
+ msgstr ""
1598
+
1599
+ #: admin.php:396
1600
+ msgid "Free Newsletter"
1601
+ msgstr "বিনামূল্যে নিউজলেটার"
1602
+
1603
+ #: admin.php:396
1604
+ msgid "Follow this link to sign up."
1605
+ msgstr ""
1606
+
1607
+ #: admin.php:398
1608
+ msgid "UpdraftPlus Premium"
1609
+ msgstr ""
1610
+
1611
+ #: admin.php:398
1612
+ msgid "Compare with the free version"
1613
+ msgstr ""
1614
+
1615
+ #: admin.php:398
1616
+ msgid "Go to the shop."
1617
+ msgstr "দোকানে যান।"
1618
+
1619
+ #: admin.php:400
1620
+ msgid "More Quality Plugins"
1621
+ msgstr ""
1622
+
1623
+ #: admin.php:400
1624
+ msgid "Free two-factor security plugin"
1625
+ msgstr ""
1626
+
1627
+ #: admin.php:400
1628
+ msgid "Premium WooCommerce plugins"
1629
+ msgstr "প্রিমিয়াম WooCommerce প্লাগিনসমূহ"
1630
+
1631
+ #: class-updraftplus.php:3488
1632
+ msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1633
+ msgstr ""
1634
+
1635
+ #: admin.php:2172
1636
+ msgid "Newsletter sign-up"
1637
+ msgstr "নিউজলেটার সাইন আপ"
1638
+
1639
+ #: admin.php:2556
1640
+ msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1641
+ msgstr ""
1642
+
1643
+ #: admin.php:2556
1644
+ msgid "The first step is to de-install the free version."
1645
+ msgstr ""
1646
+
1647
+ #: admin.php:3640
1648
+ msgid "No backup has been completed"
1649
+ msgstr ""
1650
+
1651
+ #: addons/fixtime.php:422
1652
+ msgid "(at same time as files backup)"
1653
+ msgstr ""
1654
+
1655
+ #: admin.php:2601
1656
+ msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1657
+ msgstr "ড্রপবক্স, গুগোল ড্রাইভ, FTP, S3, Rackspace, ইমেইল"
1658
+
1659
+ #: admin.php:2606
1660
+ msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1661
+ msgstr ""
1662
+
1663
+ #: admin.php:2621
1664
+ msgid "Backup extra files and databases"
1665
+ msgstr ""
1666
+
1667
+ #: admin.php:2626
1668
+ msgid "Migrate / clone (i.e. copy) websites"
1669
+ msgstr ""
1670
+
1671
+ #: admin.php:2631
1672
+ msgid "Basic email reporting"
1673
+ msgstr ""
1674
+
1675
+ #: admin.php:2636
1676
+ msgid "Advanced reporting features"
1677
+ msgstr ""
1678
+
1679
+ #: admin.php:2641
1680
+ msgid "Automatic backup when updating WP/plugins/themes"
1681
+ msgstr ""
1682
+
1683
+ #: admin.php:2646
1684
+ msgid "Send backups to multiple remote destinations"
1685
+ msgstr "একাধিক রিমোট গন্তব্যস্থানে ব্যাকআপসমূহ পাঠান"
1686
+
1687
+ #: admin.php:2651
1688
+ msgid "Database encryption"
1689
+ msgstr "ডাটাবেস এনক্রিপশন"
1690
+
1691
+ #: admin.php:2656
1692
+ msgid "Restore backups from other plugins"
1693
+ msgstr "অন্যান্য প্লাগিন দিয়ে তৈরি করা ব্যাকআপ পুনঃস্থাপন করুন"
1694
+
1695
+ #: admin.php:2666
1696
+ msgid "Scheduled backups"
1697
+ msgstr "নির্ধারিত সময়ে ব্যাকআপসমূহ"
1698
+
1699
+ #: admin.php:2671
1700
+ msgid "Fix backup time"
1701
+ msgstr "ব্যাকআপ করার সময় ঠিক করুন"
1702
+
1703
+ #: admin.php:2676
1704
+ msgid "Network/Multisite support"
1705
+ msgstr "নেটওয়ার্ক/মাল্টিসাইট সমর্থন"
1706
+
1707
+ #: admin.php:2681
1708
+ msgid "Lock settings access"
1709
+ msgstr ""
1710
+
1711
+ #: admin.php:2686
1712
+ msgid "Personal support"
1713
+ msgstr "ব্যক্তিগত সহায়তা"
1714
+
1715
+ #: admin.php:2556
1716
+ msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1717
+ msgstr "আপনি বর্তমানে wordpress.org থেকে প্রাপ্ত UpdraftPlus এর মুক্ত সংস্করণ ব্যবহার করছেন।"
1718
+
1719
+ #: admin.php:2558
1720
+ msgid "Get UpdraftPlus Premium"
1721
+ msgstr "UpdraftPlus এর প্রিমিয়াম সেবা নিন"
1722
+
1723
+ #: admin.php:2559
1724
+ msgid "Full feature list"
1725
+ msgstr "সম্পূর্ণ বৈশিষ্ট্যের তালিকা"
1726
+
1727
+ #: admin.php:2560
1728
+ msgid "Pre-sales FAQs"
1729
+ msgstr "প্রাক বিক্রয় প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী"
1730
+
1731
+ #: admin.php:2561
1732
+ msgid "Ask a pre-sales question"
1733
+ msgstr "একটি প্রাক বিক্রয় প্রশ্ন জিজ্ঞাসা করুন"
1734
+
1735
+ #: admin.php:2573
1736
+ msgid "Get it from"
1737
+ msgstr ""
1738
+
1739
+ #: admin.php:2577
1740
+ msgid "Buy It Now!"
1741
+ msgstr "এখনি কিনুন!"
1742
+
1743
+ #: admin.php:2581
1744
+ msgid "Backup WordPress files and database"
1745
+ msgstr "ওয়ার্ডপ্রেস ফাইল এবং ডাটাবেস এর ব্যাকআপ নিন"
1746
+
1747
+ #: admin.php:2586
1748
+ msgid "Translated into over %s languages"
1749
+ msgstr "%s এর বেশি ভাষায় অনুদিত"
1750
+
1751
+ #: admin.php:2591
1752
+ msgid "Restore from backup"
1753
+ msgstr "ব্যাকআপ থেকে পুনরুদ্ধার করুন"
1754
+
1755
+ #: admin.php:2596
1756
+ msgid "Backup to remote storage"
1757
+ msgstr "দূরবর্তী সংগ্রহস্থলে ব্যাকআপ করুন"
1758
+
1759
+ #: admin.php:514
1760
+ msgid "You did not select any components to restore. Please select at least one, and then try again."
1761
+ msgstr ""
1762
+
1763
+ #: admin.php:2903
1764
+ msgctxt "Uploader: Drop backup files here - or - Select Files"
1765
+ msgid "or"
1766
+ msgstr "অথবা"
1767
+
1768
+ #: admin.php:3882
1769
+ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1770
+ msgid "or"
1771
+ msgstr "অথবা"
1772
+
1773
+ #: methods/s3.php:134 methods/s3.php:135 methods/s3.php:136 methods/s3.php:144
1774
+ #: methods/s3.php:145 methods/s3.php:146
1775
+ msgid "%s Error: Failed to initialise"
1776
+ msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
1777
+
1778
+ #: addons/autobackup.php:981
1779
+ msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1780
+ msgstr ""
1781
+
1782
+ #: restorer.php:1964
1783
+ msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1784
+ msgid "An error (%s) occurred:"
1785
+ msgstr ""
1786
+
1787
+ #: admin.php:3649
1788
+ msgctxt "i.e. Non-automatic"
1789
+ msgid "Manual"
1790
+ msgstr ""
1791
+
1792
+ #: admin.php:3934
1793
+ msgid "Check this box to have a basic report sent to"
1794
+ msgstr ""
1795
+
1796
+ #: admin.php:3934
1797
+ msgid "your site's admin address"
1798
+ msgstr ""
1799
+
1800
+ #: methods/openstack2.php:102
1801
+ msgctxt "Keystone and swauth are technical terms which cannot be translated"
1802
+ msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1803
+ msgstr ""
1804
+
1805
+ #: methods/openstack2.php:152
1806
+ msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1807
+ msgid "tenant"
1808
+ msgstr ""
1809
+
1810
+ #: addons/sftp.php:342
1811
+ msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1812
+ msgstr ""
1813
+
1814
+ #: addons/sftp.php:379
1815
+ msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1816
+ msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1817
+ msgstr ""
1818
+
1819
+ #: addons/morefiles.php:178
1820
+ msgid "Any other file/directory on your server that you wish to back up"
1821
+ msgstr ""
1822
+
1823
+ #: addons/lockadmin.php:162
1824
+ msgid "Change Lock Settings"
1825
+ msgstr "লক সেটিং পরিবর্তন করুন"
1826
+
1827
+ #: restorer.php:1163
1828
+ msgid "Clearing cached pages (%s)..."
1829
+ msgstr ""
1830
+
1831
+ #: restorer.php:1970
1832
+ msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1833
+ msgstr ""
1834
+
1835
+ #: admin.php:2349
1836
+ msgid "For even more features and personal support, check out "
1837
+ msgstr ""
1838
+
1839
+ #: udaddons/options.php:273
1840
+ msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1841
+ msgstr ""
1842
+
1843
+ #: addons/morefiles.php:67
1844
+ msgid "(learn more about this significant option)"
1845
+ msgstr ""
1846
+
1847
+ #: addons/lockadmin.php:105
1848
+ msgid "The admin password has now been removed."
1849
+ msgstr ""
1850
+
1851
+ #: addons/lockadmin.php:107
1852
+ msgid "An admin password has been set."
1853
+ msgstr ""
1854
+
1855
+ #: addons/lockadmin.php:109
1856
+ msgid "The admin password has been changed."
1857
+ msgstr ""
1858
+
1859
+ #: addons/lockadmin.php:111
1860
+ msgid "Settings saved."
1861
+ msgstr "সেটিংস সংরক্ষিত।"
1862
+
1863
+ #: addons/lockadmin.php:131
1864
+ msgid "Lock access to the UpdraftPlus settings page"
1865
+ msgstr ""
1866
+
1867
+ #: addons/lockadmin.php:133
1868
+ msgid "Please make sure that you have made a note of the password!"
1869
+ msgstr ""
1870
+
1871
+ #: addons/lockadmin.php:144
1872
+ msgid "1 hour"
1873
+ msgstr "১ ঘন্টা"
1874
+
1875
+ #: addons/lockadmin.php:145 addons/lockadmin.php:146
1876
+ msgid "%s hours"
1877
+ msgstr "%s ঘন্টা"
1878
+
1879
+ #: addons/lockadmin.php:147
1880
+ msgid "1 week"
1881
+ msgstr "১ সপ্তাহ"
1882
+
1883
+ #: addons/lockadmin.php:148 addons/lockadmin.php:149
1884
+ msgid "%s weeks"
1885
+ msgstr "%s সপ্তাহ"
1886
+
1887
+ #: addons/lockadmin.php:157
1888
+ msgid "Require password again after"
1889
+ msgstr "পাসওয়ার্ড আবার পরে দরকার"
1890
+
1891
+ #: addons/lockadmin.php:159
1892
+ msgid "Support URL"
1893
+ msgstr "সহায়তা URL"
1894
+
1895
+ #: addons/lockadmin.php:159
1896
+ msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1897
+ msgstr ""
1898
+
1899
+ #: addons/lockadmin.php:159
1900
+ msgid "Otherwise, the default link will be shown."
1901
+ msgstr ""
1902
+
1903
+ #: addons/lockadmin.php:188 addons/lockadmin.php:194
1904
+ msgid "Unlock"
1905
+ msgstr "আনলক"
1906
+
1907
+ #: addons/lockadmin.php:200
1908
+ msgid "Password incorrect"
1909
+ msgstr "ভুল পাসওয়ার্ড"
1910
+
1911
+ #: addons/lockadmin.php:203
1912
+ msgid "To access the UpdraftPlus settings, please enter your unlock password"
1913
+ msgstr ""
1914
+
1915
+ #: addons/lockadmin.php:210
1916
+ msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1917
+ msgstr ""
1918
+
1919
+ #: addons/autobackup.php:96
1920
+ msgid "WordPress core (only)"
1921
+ msgstr "ওয়ার্ডপ্রেস কোর (শুধুমাত্র)"
1922
+
1923
+ #: addons/autobackup.php:131 addons/autobackup.php:946
1924
+ #: addons/autobackup.php:954 admin.php:519
1925
+ msgid "Automatic backup before update"
1926
+ msgstr "আপডেট করার আগে স্বয়ংক্রিয় ব্যাকআপ"
1927
+
1928
+ #: addons/moredatabase.php:45
1929
+ msgid "Database decryption phrase"
1930
+ msgstr "ডাটাবেস ডিক্রিপশন শব্দগুচ্ছ"
1931
+
1932
+ #: backup.php:2940
1933
+ msgid "A zip error occurred"
1934
+ msgstr ""
1935
+
1936
+ #: backup.php:2942
1937
+ msgid "your web hosting account appears to be full; please see: %s"
1938
+ msgstr ""
1939
+
1940
+ #: backup.php:2944
1941
+ msgid "check your log for more details."
1942
+ msgstr ""
1943
+
1944
+ #: admin.php:1854
1945
+ msgid "Error: unexpected file read fail"
1946
+ msgstr ""
1947
+
1948
+ #: class-updraftplus.php:3664
1949
+ msgid "Backup label:"
1950
+ msgstr ""
1951
+
1952
+ #: admin.php:760 admin.php:2439 central/updraftplus-commands.php:304
1953
+ msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1954
+ msgstr ""
1955
+
1956
+ #: admin.php:2892
1957
+ msgid "Upload files into UpdraftPlus."
1958
+ msgstr ""
1959
+
1960
+ #: admin.php:3124
1961
+ msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1962
+ msgstr ""
1963
+
1964
+ #: admin.php:3610
1965
+ msgid "incremental backup; base backup: %s"
1966
+ msgstr ""
1967
+
1968
+ #: admin.php:3714 admin.php:3753
1969
+ msgid "and retain this many scheduled backups"
1970
+ msgstr ""
1971
+
1972
+ #: admin.php:4341
1973
+ msgid "Backup date"
1974
+ msgstr ""
1975
+
1976
+ #: admin.php:4342
1977
+ msgid "Backup data (click to download)"
1978
+ msgstr ""
1979
+
1980
+ #: admin.php:3232 admin.php:4646
1981
+ msgid "View Log"
1982
+ msgstr ""
1983
+
1984
+ #: addons/reporting.php:60
1985
+ msgid "Your label for this backup (optional)"
1986
+ msgstr ""
1987
+
1988
+ #: addons/googlecloud.php:822 methods/googledrive.php:900
1989
+ msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1990
+ msgstr ""
1991
+
1992
+ #: methods/updraftvault.php:529 udaddons/updraftplus-addons.php:655
1993
+ msgid "You need to supply both an email address and a password"
1994
+ msgstr ""
1995
+
1996
+ #: methods/updraftvault.php:589 udaddons/updraftplus-addons.php:758
1997
+ msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1998
+ msgstr ""
1999
+
2000
+ #: methods/updraftvault.php:592 udaddons/updraftplus-addons.php:762
2001
+ msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2002
+ msgstr ""
2003
+
2004
+ #: admin.php:2500
2005
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2006
+ msgstr ""
2007
+
2008
+ #: class-updraftplus.php:3683
2009
+ msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2010
+ msgstr ""
2011
+
2012
+ #: class-updraftplus.php:3683
2013
+ msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2014
+ msgstr ""
2015
+
2016
+ #: addons/migrator.php:1038
2017
+ msgid "already done"
2018
+ msgstr ""
2019
+
2020
+ #: addons/migrator.php:995 addons/migrator.php:1038 addons/migrator.php:1185
2021
+ msgid "Search and replacing table:"
2022
+ msgstr ""
2023
+
2024
+ #: addons/migrator.php:995
2025
+ msgid "skipped (not in list)"
2026
+ msgstr ""
2027
+
2028
+ #: addons/migrator.php:301
2029
+ msgid "Rows per batch"
2030
+ msgstr ""
2031
+
2032
+ #: addons/migrator.php:302
2033
+ msgid "These tables only"
2034
+ msgstr ""
2035
+
2036
+ #: addons/migrator.php:302
2037
+ msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2038
+ msgstr ""
2039
+
2040
+ #: udaddons/options.php:102
2041
+ msgid "You have not yet connected with your UpdraftPlus.Com account."
2042
+ msgstr ""
2043
+
2044
+ #: udaddons/options.php:100 udaddons/options.php:102
2045
+ msgid "You need to connect to receive future updates to UpdraftPlus."
2046
+ msgstr ""
2047
+
2048
+ #: class-updraftplus.php:3656
2049
+ msgid "The site in this backup was running on a webserver with version %s of %s. "
2050
+ msgstr ""
2051
+
2052
+ #: class-updraftplus.php:3656
2053
+ msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2054
+ msgstr ""
2055
+
2056
+ #: class-updraftplus.php:3656
2057
+ msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2058
+ msgstr ""
2059
+
2060
+ #: class-updraftplus.php:3656
2061
+ msgid "Any support requests to do with %s should be raised with your web hosting company."
2062
+ msgstr ""
2063
+
2064
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2065
+ msgid "UpdraftPlus is on social media - check us out here:"
2066
+ msgstr ""
2067
+
2068
+ #: admin.php:2170 class-updraftplus.php:3479 class-updraftplus.php:3508
2069
+ msgid "Twitter"
2070
+ msgstr ""
2071
+
2072
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2073
+ msgid "Facebook"
2074
+ msgstr ""
2075
+
2076
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2077
+ msgid "Google+"
2078
+ msgstr ""
2079
+
2080
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2081
+ msgid "LinkedIn"
2082
+ msgstr ""
2083
+
2084
+ #: admin.php:4707
2085
+ msgid "Why am I seeing this?"
2086
+ msgstr "আমি কেন এটি দেখছি?"
2087
+
2088
+ #: admin.php:2880
2089
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2090
+ msgstr ""
2091
+
2092
+ #: admin.php:2880
2093
+ msgid "The location of this directory is set in the expert settings, in the Settings tab."
2094
+ msgstr ""
2095
+
2096
+ #: admin.php:1802 admin.php:1814
2097
+ msgid "Start backup"
2098
+ msgstr "ব্যাকআপ শুরু করুন"
2099
+
2100
+ #: class-updraftplus.php:3628 restorer.php:926
2101
+ msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2102
+ msgstr ""
2103
+
2104
+ #: admin.php:3554
2105
+ msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2106
+ msgstr ""
2107
+
2108
+ #: admin.php:3045
2109
+ msgid "Unless you have a problem, you can completely ignore everything here."
2110
+ msgstr ""
2111
+
2112
+ #: admin.php:1976
2113
+ msgid "You will find more information about this in the Settings section."
2114
+ msgstr ""
2115
+
2116
+ #: admin.php:2011
2117
+ msgid "This file could not be uploaded"
2118
+ msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2119
+
2120
+ #: addons/importer.php:70
2121
+ msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2122
+ msgstr ""
2123
+
2124
+ #: addons/importer.php:70
2125
+ msgid "Supported backup plugins: %s"
2126
+ msgstr ""
2127
+
2128
+ #: admin.php:3730
2129
+ msgid "Tell me more about incremental backups"
2130
+ msgstr ""
2131
+
2132
+ #: admin.php:3081
2133
+ msgid "Memory limit"
2134
+ msgstr ""
2135
+
2136
+ #: class-updraftplus.php:3770 restorer.php:1368
2137
+ msgid "restoration"
2138
+ msgstr ""
2139
+
2140
+ #: restorer.php:1915
2141
+ msgid "Table to be implicitly dropped: %s"
2142
+ msgstr ""
2143
+
2144
+ #: backup.php:829
2145
+ msgid "Full backup"
2146
+ msgstr ""
2147
+
2148
+ #: backup.php:829
2149
+ msgid "Incremental"
2150
+ msgstr ""
2151
+
2152
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2153
+ msgid "Backup succeeded"
2154
+ msgstr ""
2155
+
2156
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2157
+ msgid "(view log...)"
2158
+ msgstr ""
2159
+
2160
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2161
+ msgid "now proceeding with the updates..."
2162
+ msgstr ""
2163
+
2164
+ #: admin.php:3650 admin.php:3651 admin.php:3652 updraftplus.php:92
2165
+ #: updraftplus.php:93
2166
+ msgid "Every %s hours"
2167
+ msgstr ""
2168
+
2169
+ #: addons/migrator.php:765 addons/migrator.php:767
2170
+ msgid "search and replace"
2171
+ msgstr ""
2172
+
2173
+ #: addons/migrator.php:272
2174
+ msgid "search term"
2175
+ msgstr ""
2176
+
2177
+ #: addons/migrator.php:266 addons/migrator.php:291
2178
+ msgid "Search / replace database"
2179
+ msgstr ""
2180
+
2181
+ #: addons/migrator.php:267 addons/migrator.php:299
2182
+ msgid "Search for"
2183
+ msgstr ""
2184
+
2185
+ #: addons/migrator.php:268 addons/migrator.php:300
2186
+ msgid "Replace with"
2187
+ msgstr ""
2188
+
2189
+ #: addons/migrator.php:292
2190
+ msgid "This can easily destroy your site; so, use it with care!"
2191
+ msgstr ""
2192
+
2193
+ #: addons/migrator.php:293
2194
+ msgid "A search/replace cannot be undone - are you sure you want to do this?"
2195
+ msgstr ""
2196
+
2197
+ #: addons/migrator.php:304
2198
+ msgid "Go"
2199
+ msgstr ""
2200
+
2201
+ #: restorer.php:1992
2202
+ msgid "Too many database errors have occurred - aborting"
2203
+ msgstr ""
2204
+
2205
+ #: backup.php:895
2206
+ msgid "read more at %s"
2207
+ msgstr ""
2208
+
2209
+ #: backup.php:895
2210
+ msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2211
+ msgstr ""
2212
+
2213
+ #: methods/googledrive.php:906
2214
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2215
+ msgstr ""
2216
+
2217
+ #: admin.php:4328
2218
+ msgid "You have not yet made any backups."
2219
+ msgstr ""
2220
+
2221
+ #: admin.php:3845
2222
+ msgid "Database Options"
2223
+ msgstr ""
2224
+
2225
+ #: admin.php:3142
2226
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2227
+ msgstr ""
2228
+
2229
+ #: admin.php:3106
2230
+ msgid "%s (%s used)"
2231
+ msgstr ""
2232
+
2233
+ #: admin.php:3109
2234
+ msgid "Plugins for debugging:"
2235
+ msgstr ""
2236
+
2237
+ #: admin.php:3106
2238
+ msgid "Free disk space in account:"
2239
+ msgstr ""
2240
+
2241
+ #: admin.php:330 admin.php:2404
2242
+ msgid "Current Status"
2243
+ msgstr ""
2244
+
2245
+ #: admin.php:338 admin.php:1429 admin.php:1668 admin.php:2405 admin.php:2863
2246
+ msgid "Existing Backups"
2247
+ msgstr ""
2248
+
2249
+ #: admin.php:2443 admin.php:5202
2250
+ msgid "This button is disabled because your backup directory is not writable (see the settings)."
2251
+ msgstr ""
2252
+
2253
+ #: admin.php:765
2254
+ msgid "Welcome to UpdraftPlus!"
2255
+ msgstr ""
2256
+
2257
+ #: admin.php:765
2258
+ msgid "To make a backup, just press the Backup Now button."
2259
+ msgstr ""
2260
+
2261
+ #: admin.php:765
2262
+ msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2263
+ msgstr ""
2264
+
2265
+ #: addons/moredatabase.php:338
2266
+ msgid "If you enter text here, it is used to encrypt database 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> 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)."
2267
+ msgstr ""
2268
+
2269
+ #: addons/moredatabase.php:236
2270
+ msgid "Table prefix"
2271
+ msgstr ""
2272
+
2273
+ #: addons/moredatabase.php:237
2274
+ msgid "Test connection..."
2275
+ msgstr ""
2276
+
2277
+ #: addons/moredatabase.php:250
2278
+ msgid "Testing..."
2279
+ msgstr ""
2280
+
2281
+ #: addons/moredatabase.php:153
2282
+ msgid "Backup non-WordPress tables contained in the same database as WordPress"
2283
+ msgstr ""
2284
+
2285
+ #: addons/moredatabase.php:154
2286
+ msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
2287
+ msgstr ""
2288
+
2289
+ #: addons/moredatabase.php:158
2290
+ msgid "Add an external database to backup..."
2291
+ msgstr ""
2292
+
2293
+ #: addons/moredatabase.php:230
2294
+ msgid "Backup external database"
2295
+ msgstr ""
2296
+
2297
+ #: addons/moredatabase.php:112
2298
+ msgid "%s table(s) found."
2299
+ msgstr ""
2300
+
2301
+ #: addons/moredatabase.php:118
2302
+ msgid "%s total table(s) found; %s with the indicated prefix."
2303
+ msgstr ""
2304
+
2305
+ #: addons/moredatabase.php:136
2306
+ msgid "Connection succeeded."
2307
+ msgstr ""
2308
+
2309
+ #: addons/moredatabase.php:138
2310
+ msgid "Connection failed."
2311
+ msgstr ""
2312
+
2313
+ #: addons/moredatabase.php:153
2314
+ msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
2315
+ msgstr ""
2316
+
2317
+ #: addons/moredatabase.php:70
2318
+ msgid "user"
2319
+ msgstr ""
2320
+
2321
+ #: addons/moredatabase.php:72
2322
+ msgid "host"
2323
+ msgstr ""
2324
+
2325
+ #: addons/moredatabase.php:74
2326
+ msgid "database name"
2327
+ msgstr ""
2328
+
2329
+ #: addons/moredatabase.php:85
2330
+ msgid "database connection attempt failed"
2331
+ msgstr ""
2332
+
2333
+ #: class-updraftplus.php:1250
2334
+ msgid "External database (%s)"
2335
+ msgstr ""
2336
+
2337
+ #: methods/googledrive.php:906
2338
+ msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2339
+ msgstr ""
2340
+
2341
+ #: methods/googledrive.php:381
2342
+ msgid "failed to access parent folder"
2343
+ msgstr ""
2344
+
2345
+ #: addons/googlecloud.php:559 addons/onedrive.php:592
2346
+ #: methods/googledrive.php:338
2347
+ msgid "However, subsequent access attempts failed:"
2348
+ msgstr ""
2349
+
2350
+ #: admin.php:4472
2351
+ msgid "External database"
2352
+ msgstr ""
2353
+
2354
+ #: admin.php:3968
2355
+ msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2356
+ msgstr ""
2357
+
2358
+ #: admin.php:3908
2359
+ msgid "Back up more databases"
2360
+ msgstr ""
2361
+
2362
+ #: admin.php:3854
2363
+ msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2364
+ msgstr ""
2365
+
2366
+ #: admin.php:3854
2367
+ msgid "It can also backup external databases."
2368
+ msgstr ""
2369
+
2370
+ #: admin.php:3866
2371
+ msgid "You can manually decrypt an encrypted database here."
2372
+ msgstr ""
2373
+
2374
+ #: admin.php:3884
2375
+ msgid "First, enter the decryption key"
2376
+ msgstr ""
2377
+
2378
+ #: admin.php:3766
2379
+ msgid "use UpdraftPlus Premium"
2380
+ msgstr ""
2381
+
2382
+ #: class-updraftplus.php:3543
2383
+ msgid "Decryption failed. The database file is encrypted."
2384
+ msgstr ""
2385
+
2386
+ #: admin.php:1280
2387
+ msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2388
+ msgstr ""
2389
+
2390
+ #: restorer.php:1618 restorer.php:1937 restorer.php:1974 restorer.php:1987
2391
+ msgid "An error occurred on the first %s command - aborting run"
2392
+ msgstr ""
2393
+
2394
+ #: backup.php:1353
2395
+ msgid "database connection attempt failed."
2396
+ msgstr ""
2397
+
2398
+ #: addons/moredatabase.php:93 backup.php:1353
2399
+ msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2400
+ msgstr ""
2401
+
2402
+ #: addons/google-enhanced.php:75
2403
+ msgid "In %s, path names are case sensitive."
2404
+ msgstr ""
2405
+
2406
+ #: addons/migrator.php:921
2407
+ msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2408
+ msgstr ""
2409
+
2410
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2411
+ msgid "Enter the path of the %s folder you wish to use here."
2412
+ msgstr ""
2413
+
2414
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2415
+ msgid "If the folder does not already exist, then it will be created."
2416
+ msgstr ""
2417
+
2418
+ #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2419
+ #: addons/onedrive.php:767
2420
+ msgid "e.g. %s"
2421
+ msgstr ""
2422
+
2423
+ #: addons/azure.php:522 addons/google-enhanced.php:73 addons/onedrive.php:767
2424
+ msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2425
+ msgstr ""
2426
+
2427
+ #: methods/openstack2.php:107
2428
+ msgid "Follow this link for more information"
2429
+ msgstr ""
2430
+
2431
+ #: methods/openstack2.php:107
2432
+ msgid "Tenant"
2433
+ msgstr ""
2434
+
2435
+ #: methods/openstack2.php:116
2436
+ msgid "Leave this blank, and a default will be chosen."
2437
+ msgstr ""
2438
+
2439
+ #: addons/azure.php:515 methods/openstack2.php:133
2440
+ msgid "Container"
2441
+ msgstr ""
2442
+
2443
+ #: methods/addon-base.php:106
2444
+ msgid "failed to list files"
2445
+ msgstr ""
2446
+
2447
+ #: methods/addon-base.php:208
2448
+ msgid "Failed to download"
2449
+ msgstr ""
2450
+
2451
+ #: methods/addon-base.php:194 methods/addon-base.php:214
2452
+ msgid "Failed to download %s"
2453
+ msgstr ""
2454
+
2455
+ #: methods/openstack2.php:94
2456
+ msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2457
+ msgstr ""
2458
+
2459
+ #: methods/openstack2.php:99 methods/openstack2.php:157
2460
+ msgid "authentication URI"
2461
+ msgstr ""
2462
+
2463
+ #: methods/addon-base.php:75 methods/addon-base.php:80
2464
+ msgid "Failed to upload %s"
2465
+ msgstr ""
2466
+
2467
+ #: methods/dropbox.php:513 methods/dropbox.php:515
2468
+ msgid "Success:"
2469
+ msgstr ""
2470
+
2471
+ #: methods/dropbox.php:443 methods/dropbox.php:444
2472
+ msgid "Dropbox"
2473
+ msgstr ""
2474
+
2475
+ #: addons/onedrive.php:773 methods/dropbox.php:444
2476
+ msgid "(You appear to be already authenticated)."
2477
+ msgstr ""
2478
+
2479
+ #: addons/onedrive.php:775 methods/dropbox.php:444
2480
+ 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 %s."
2481
+ msgstr ""
2482
+
2483
+ #: addons/onedrive.php:772 methods/dropbox.php:443
2484
+ msgid "Authenticate with %s"
2485
+ msgstr ""
2486
+
2487
+ #: methods/cloudfiles.php:409
2488
+ msgid "Error downloading remote file: Failed to download"
2489
+ msgstr ""
2490
+
2491
+ #: methods/openstack-base.php:305
2492
+ msgid "The %s object was not found"
2493
+ msgstr ""
2494
+
2495
+ #: methods/openstack-base.php:387
2496
+ msgid "%s error - we accessed the container, but failed to create a file within it"
2497
+ msgstr ""
2498
+
2499
+ #: methods/openstack-base.php:388 methods/openstack-base.php:393
2500
+ msgid "Region: %s"
2501
+ msgstr ""
2502
+
2503
+ #: methods/openstack-base.php:44 methods/openstack-base.php:228
2504
+ #: methods/openstack-base.php:297
2505
+ msgid "Could not access %s container"
2506
+ msgstr ""
2507
+
2508
+ #: addons/googlecloud.php:902 addons/onedrive.php:774 methods/dropbox.php:450
2509
+ #: methods/googledrive.php:955
2510
+ msgid "Account holder's name: %s."
2511
+ msgstr ""
2512
+
2513
+ #: methods/openstack-base.php:36 methods/openstack-base.php:100
2514
+ #: methods/openstack-base.php:107 methods/openstack-base.php:220
2515
+ #: methods/openstack-base.php:285
2516
+ msgid "%s error - failed to access the container"
2517
+ msgstr ""
2518
+
2519
+ #: methods/googledrive.php:935
2520
+ msgid "<strong>This is NOT a folder name</strong>."
2521
+ msgstr ""
2522
+
2523
+ #: methods/googledrive.php:935
2524
+ msgid "It is an ID number internal to Google Drive"
2525
+ msgstr ""
2526
+
2527
+ #: methods/googledrive.php:944
2528
+ msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2529
+ msgstr ""
2530
+
2531
+ #: addons/google-enhanced.php:72 addons/onedrive.php:766
2532
+ #: methods/googledrive.php:931 methods/googledrive.php:941
2533
+ msgid "Folder"
2534
+ msgstr ""
2535
+
2536
+ #: addons/googlecloud.php:579 methods/googledrive.php:358
2537
+ msgid "Name: %s."
2538
+ msgstr ""
2539
+
2540
+ #: addons/googlecloud.php:254 addons/onedrive.php:351
2541
+ #: methods/googledrive.php:863
2542
+ msgid "%s download: failed: file not found"
2543
+ msgstr ""
2544
+
2545
+ #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2546
+ msgid "This remote storage method (%s) requires PHP %s or later."
2547
+ msgstr ""
2548
+
2549
+ #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2550
+ msgid "You will need to ask your web hosting company to upgrade."
2551
+ msgstr ""
2552
+
2553
+ #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2554
+ msgid "Your %s version: %s."
2555
+ msgstr ""
2556
+
2557
+ #: methods/googledrive.php:157
2558
+ msgid "Google Drive list files: failed to access parent folder"
2559
+ msgstr ""
2560
+
2561
+ #: admin.php:5054
2562
+ msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2563
+ msgstr ""
2564
+
2565
+ #: admin.php:3111
2566
+ msgid "Fetch"
2567
+ msgstr ""
2568
+
2569
+ #: admin.php:3113
2570
+ msgid "Call"
2571
+ msgstr ""
2572
+
2573
+ #: addons/migrator.php:362 admin.php:2896 admin.php:3874
2574
+ msgid "This feature requires %s version %s or later"
2575
+ msgstr ""
2576
+
2577
+ #: restorer.php:2116
2578
+ msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2579
+ msgstr ""
2580
+
2581
+ #: restorer.php:106
2582
+ msgid "Failed to unpack the archive"
2583
+ msgstr ""
2584
+
2585
+ #: restorer.php:259
2586
+ msgid "%s files have been extracted"
2587
+ msgstr ""
2588
+
2589
+ #: class-updraftplus.php:923
2590
+ msgid "Error - failed to download the file"
2591
+ msgstr ""
2592
+
2593
+ #: admin.php:2880
2594
+ msgid "Rescan local folder for new backup sets"
2595
+ msgstr ""
2596
+
2597
+ #: udaddons/updraftplus-addons.php:208
2598
+ msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2599
+ msgstr ""
2600
+
2601
+ #: udaddons/updraftplus-addons.php:208
2602
+ msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
2603
+ msgstr ""
2604
+
2605
+ #: udaddons/updraftplus-addons.php:208
2606
+ msgid "It has been tested up to version %s."
2607
+ msgstr ""
2608
+
2609
+ #: addons/sftp.php:425
2610
+ msgid "password/key"
2611
+ msgstr ""
2612
+
2613
+ #: addons/sftp.php:47
2614
+ msgid "SCP/SFTP password/key"
2615
+ msgstr ""
2616
+
2617
+ #: addons/sftp.php:308
2618
+ msgid "The key provided was not in a valid format, or was corrupt."
2619
+ msgstr ""
2620
+
2621
+ #: addons/sftp.php:371
2622
+ msgid "Your login may be either password or key-based - you only need to enter one, not both."
2623
+ msgstr ""
2624
+
2625
+ #: addons/azure.php:508 addons/migrator.php:2198 addons/sftp.php:376
2626
+ #: admin.php:535
2627
+ msgid "Key"
2628
+ msgstr ""
2629
+
2630
+ #: addons/importer.php:256 admin.php:4513 class-updraftplus.php:2267
2631
+ msgid "Backup created by: %s."
2632
+ msgstr ""
2633
+
2634
+ #: admin.php:4519
2635
+ msgid "Files and database WordPress backup (created by %s)"
2636
+ msgstr ""
2637
+
2638
+ #: admin.php:4519
2639
+ msgid "Files backup (created by %s)"
2640
+ msgstr ""
2641
+
2642
+ #: admin.php:4464 admin.php:4515
2643
+ msgid "unknown source"
2644
+ msgstr ""
2645
+
2646
+ #: admin.php:4470
2647
+ msgid "Database (created by %s)"
2648
+ msgstr ""
2649
+
2650
+ #: admin.php:2881
2651
+ msgid "Rescan remote storage"
2652
+ msgstr ""
2653
+
2654
+ #: admin.php:2879
2655
+ msgid "Upload backup files"
2656
+ msgstr ""
2657
+
2658
+ #: admin.php:2055
2659
+ msgid "This backup was created by %s, and can be imported."
2660
+ msgstr ""
2661
+
2662
+ #: admin.php:794
2663
+ msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
2664
+ msgstr ""
2665
+
2666
+ #: admin.php:794
2667
+ msgid "Read this page for a guide to possible causes and how to fix it."
2668
+ msgstr ""
2669
+
2670
+ #: admin.php:499 admin.php:500 class-updraftplus.php:2274
2671
+ 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))."
2672
+ msgstr ""
2673
+
2674
+ #: admin.php:499
2675
+ msgid "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."
2676
+ msgstr ""
2677
+
2678
+ #: admin.php:500 class-updraftplus.php:2274
2679
+ msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2680
+ msgstr ""
2681
+
2682
+ #: admin.php:1293 admin.php:4516 restorer.php:1337
2683
+ msgid "Backup created by unknown source (%s) - cannot be restored."
2684
+ msgstr ""
2685
+
2686
+ #: restorer.php:749 restorer.php:797
2687
+ msgid "The WordPress content folder (wp-content) was not found in this zip file."
2688
+ msgstr ""
2689
+
2690
+ #: restorer.php:614
2691
+ msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2692
+ msgstr ""
2693
+
2694
+ #: methods/dropbox.php:281
2695
+ msgid "%s returned an unexpected HTTP response: %s"
2696
+ msgstr ""
2697
+
2698
+ #: addons/sftp.php:885
2699
+ msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2700
+ msgstr ""
2701
+
2702
+ #: methods/cloudfiles.php:234 methods/dropbox.php:262
2703
+ #: methods/openstack-base.php:95
2704
+ msgid "No settings were found"
2705
+ msgstr ""
2706
+
2707
+ #: class-updraftplus.php:2395
2708
+ msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2709
+ msgstr ""
2710
+
2711
+ #: admin.php:468
2712
+ msgid "Rescanning remote and local storage for backup sets..."
2713
+ msgstr ""
2714
+
2715
+ #: addons/googlecloud.php:865 addons/googlecloud.php:880
2716
+ #: addons/s3-enhanced.php:46 addons/s3-enhanced.php:60
2717
+ msgid "(Read more)"
2718
+ msgstr ""
2719
+
2720
+ #: addons/migrator.php:738
2721
+ msgid "Adjusting multisite paths"
2722
+ msgstr ""
2723
+
2724
+ #: addons/reporting.php:403
2725
+ msgid "Log all messages to syslog (only server admins are likely to want this)"
2726
+ msgstr ""
2727
+
2728
+ #: addons/morefiles.php:217
2729
+ msgid "Add another..."
2730
+ msgstr ""
2731
+
2732
+ #: addons/morefiles.php:308
2733
+ msgid "No backup of directory: there was nothing found to back up"
2734
+ msgstr ""
2735
+
2736
+ #: addons/moredatabase.php:229 addons/morefiles.php:212
2737
+ #: addons/morefiles.php:223
2738
+ msgid "Remove"
2739
+ msgstr ""
2740
+
2741
+ #: methods/s3.php:750
2742
+ msgid "Other %s FAQs."
2743
+ msgstr ""
2744
+
2745
+ #: admin.php:3968
2746
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
+ msgstr ""
2748
+
2749
+ #: addons/morefiles.php:262 admin.php:4106
2750
+ msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
2751
+ msgstr ""
2752
+
2753
+ #: restorer.php:2105
2754
+ msgid "Custom content type manager plugin data detected: clearing option cache"
2755
+ msgstr ""
2756
+
2757
+ #: methods/ftp.php:281
2758
+ msgid "encrypted FTP (explicit encryption)"
2759
+ msgstr ""
2760
+
2761
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1367
2762
+ msgid "Your web server's PHP installation has these functions disabled: %s."
2763
+ msgstr ""
2764
+
2765
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1368
2766
+ msgid "Your hosting company must enable these functions before %s can work."
2767
+ msgstr ""
2768
+
2769
+ #: methods/ftp.php:279
2770
+ msgid "regular non-encrypted FTP"
2771
+ msgstr ""
2772
+
2773
+ #: methods/ftp.php:280
2774
+ msgid "encrypted FTP (implicit encryption)"
2775
+ msgstr ""
2776
+
2777
+ #: restorer.php:1522
2778
+ msgid "Backup created by:"
2779
+ msgstr ""
2780
+
2781
+ #: udaddons/options.php:482
2782
+ msgid "Available to claim on this site"
2783
+ msgstr ""
2784
+
2785
+ #: udaddons/updraftplus-addons.php:229
2786
+ msgid "To maintain your access to support, please renew."
2787
+ msgstr ""
2788
+
2789
+ #: udaddons/updraftplus-addons.php:217
2790
+ msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
2791
+ msgstr ""
2792
+
2793
+ #: udaddons/updraftplus-addons.php:221
2794
+ msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
2795
+ msgstr ""
2796
+
2797
+ #: udaddons/updraftplus-addons.php:221 udaddons/updraftplus-addons.php:223
2798
+ msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2799
+ msgstr ""
2800
+
2801
+ #: udaddons/updraftplus-addons.php:223
2802
+ msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
2803
+ msgstr ""
2804
+
2805
+ #: udaddons/updraftplus-addons.php:227
2806
+ msgid "Your paid access to UpdraftPlus support has expired."
2807
+ msgstr ""
2808
+
2809
+ #: udaddons/updraftplus-addons.php:227
2810
+ msgid "To regain your access, please renew."
2811
+ msgstr ""
2812
+
2813
+ #: udaddons/updraftplus-addons.php:229
2814
+ msgid "Your paid access to UpdraftPlus support will soon expire."
2815
+ msgstr ""
2816
+
2817
+ #: udaddons/updraftplus-addons.php:180
2818
+ msgid "Dismiss from main dashboard (for %s weeks)"
2819
+ msgstr ""
2820
+
2821
+ #: udaddons/updraftplus-addons.php:215
2822
+ msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
2823
+ msgstr ""
2824
+
2825
+ #: udaddons/updraftplus-addons.php:215 udaddons/updraftplus-addons.php:217
2826
+ msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2827
+ msgstr ""
2828
+
2829
+ #: class-updraftplus.php:3790
2830
+ msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
+ msgstr ""
2832
+
2833
+ #: class-updraftplus.php:3797 class-updraftplus.php:3818
2834
+ msgid "The attempt to undo the double-compression failed."
2835
+ msgstr ""
2836
+
2837
+ #: class-updraftplus.php:3820
2838
+ msgid "The attempt to undo the double-compression succeeded."
2839
+ msgstr ""
2840
+
2841
+ #: admin.php:1441
2842
+ msgid "Constants"
2843
+ msgstr ""
2844
+
2845
+ #: backup.php:1566
2846
+ msgid "Failed to open database file for reading:"
2847
+ msgstr ""
2848
+
2849
+ #: backup.php:1399
2850
+ msgid "please wait for the rescheduled attempt"
2851
+ msgstr ""
2852
+
2853
+ #: backup.php:1401
2854
+ msgid "No database tables found"
2855
+ msgstr ""
2856
+
2857
+ #: addons/reporting.php:185
2858
+ msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2859
+ msgstr ""
2860
+
2861
+ #: restorer.php:2003
2862
+ msgid "Database queries processed: %d in %.2f seconds"
2863
+ msgstr ""
2864
+
2865
+ #: addons/migrator.php:1237
2866
+ msgid "Searching and replacing reached row: %d"
2867
+ msgstr ""
2868
+
2869
+ #: addons/onedrive.php:91 methods/dropbox.php:176
2870
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
+ msgstr ""
2872
+
2873
+ #: addons/migrator.php:661
2874
+ msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2875
+ msgstr ""
2876
+
2877
+ #: udaddons/updraftplus-addons.php:391 udaddons/updraftplus-addons.php:396
2878
+ msgid "Errors occurred:"
2879
+ msgstr ""
2880
+
2881
+ #: admin.php:4727
2882
+ msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
+ msgstr ""
2884
+
2885
+ #: admin.php:4012
2886
+ msgid "See this FAQ also."
2887
+ msgstr ""
2888
+
2889
+ #: admin.php:3814
2890
+ msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
2891
+ msgstr ""
2892
+
2893
+ #: admin.php:2969
2894
+ msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr ""
2896
+
2897
+ #: admin.php:1264
2898
+ msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
+ msgstr ""
2900
+
2901
+ #: restorer.php:605
2902
+ msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
+ msgstr ""
2904
+
2905
+ #: admin.php:769 class-updraftplus.php:568
2906
+ 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 recommended value is %s seconds or more)"
2907
+ msgstr ""
2908
+
2909
+ #: addons/migrator.php:669
2910
+ msgid "Replacing in blogs/site table: from: %s to: %s"
2911
+ msgstr ""
2912
+
2913
+ #: addons/migrator.php:247
2914
+ msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
2915
+ msgstr ""
2916
+
2917
+ #: addons/migrator.php:260
2918
+ msgid "%s: Skipping cache file (does not already exist)"
2919
+ msgstr ""
2920
+
2921
+ #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
2922
+ #: includes/ftp.class.php:47
2923
+ msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
+ msgstr ""
2925
+
2926
+ #: admin.php:5062
2927
+ msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
+ msgstr ""
2929
+
2930
+ #: admin.php:2247 admin.php:2257
2931
+ msgid "Restore failed..."
2932
+ msgstr ""
2933
+
2934
+ #: addons/moredatabase.php:125 admin.php:1514
2935
+ msgid "Messages:"
2936
+ msgstr ""
2937
+
2938
+ #: restorer.php:1884
2939
+ msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
+ msgstr ""
2941
+
2942
+ #: restorer.php:385
2943
+ msgid "The directory does not exist"
2944
+ msgstr ""
2945
+
2946
+ #: addons/cloudfiles-enhanced.php:247
2947
+ msgid "New User's Username"
2948
+ msgstr ""
2949
+
2950
+ #: addons/cloudfiles-enhanced.php:248
2951
+ msgid "New User's Email Address"
2952
+ msgstr ""
2953
+
2954
+ #: addons/cloudfiles-enhanced.php:225
2955
+ msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
+ msgstr ""
2957
+
2958
+ #: addons/cloudfiles-enhanced.php:231
2959
+ msgid "US or UK Rackspace Account"
2960
+ msgstr ""
2961
+
2962
+ #: addons/cloudfiles-enhanced.php:245
2963
+ msgid "Admin Username"
2964
+ msgstr ""
2965
+
2966
+ #: addons/cloudfiles-enhanced.php:246
2967
+ msgid "Admin API Key"
2968
+ msgstr ""
2969
+
2970
+ #: addons/cloudfiles-enhanced.php:55
2971
+ msgid "You need to enter a new username"
2972
+ msgstr ""
2973
+
2974
+ #: addons/cloudfiles-enhanced.php:59
2975
+ msgid "You need to enter a container"
2976
+ msgstr ""
2977
+
2978
+ #: addons/cloudfiles-enhanced.php:64
2979
+ msgid "You need to enter a valid new email address"
2980
+ msgstr ""
2981
+
2982
+ #: addons/cloudfiles-enhanced.php:152
2983
+ msgid "Conflict: that user or email address already exists"
2984
+ msgstr ""
2985
+
2986
+ #: addons/cloudfiles-enhanced.php:154 addons/cloudfiles-enhanced.php:158
2987
+ #: addons/cloudfiles-enhanced.php:163 addons/cloudfiles-enhanced.php:184
2988
+ #: addons/cloudfiles-enhanced.php:192 addons/cloudfiles-enhanced.php:197
2989
+ msgid "Cloud Files operation failed (%s)"
2990
+ msgstr ""
2991
+
2992
+ #: addons/cloudfiles-enhanced.php:209 addons/s3-enhanced.php:294
2993
+ msgid "Username: %s"
2994
+ msgstr ""
2995
+
2996
+ #: addons/cloudfiles-enhanced.php:209
2997
+ msgid "Password: %s"
2998
+ msgstr ""
2999
+
3000
+ #: addons/cloudfiles-enhanced.php:209
3001
+ msgid "API Key: %s"
3002
+ msgstr ""
3003
+
3004
+ #: addons/cloudfiles-enhanced.php:222
3005
+ msgid "Create new API user and container"
3006
+ msgstr ""
3007
+
3008
+ #: addons/cloudfiles-enhanced.php:26
3009
+ msgid "Rackspace Cloud Files, enhanced"
3010
+ msgstr ""
3011
+
3012
+ #: addons/cloudfiles-enhanced.php:27
3013
+ msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
+ msgstr ""
3015
+
3016
+ #: addons/cloudfiles-enhanced.php:38
3017
+ msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
+ msgstr ""
3019
+
3020
+ #: addons/cloudfiles-enhanced.php:47
3021
+ msgid "You need to enter an admin username"
3022
+ msgstr ""
3023
+
3024
+ #: addons/cloudfiles-enhanced.php:51
3025
+ msgid "You need to enter an admin API key"
3026
+ msgstr ""
3027
+
3028
+ #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:103
3029
+ msgid "Northern Virginia (IAD)"
3030
+ msgstr ""
3031
+
3032
+ #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:104
3033
+ msgid "Hong Kong (HKG)"
3034
+ msgstr ""
3035
+
3036
+ #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:105
3037
+ msgid "London (LON)"
3038
+ msgstr ""
3039
+
3040
+ #: methods/cloudfiles-new.php:119
3041
+ msgid "Cloud Files Username"
3042
+ msgstr ""
3043
+
3044
+ #: methods/cloudfiles-new.php:122
3045
+ msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr ""
3047
+
3048
+ #: methods/cloudfiles-new.php:127
3049
+ msgid "Cloud Files API Key"
3050
+ msgstr ""
3051
+
3052
+ #: addons/cloudfiles-enhanced.php:269 methods/cloudfiles-new.php:132
3053
+ msgid "Cloud Files Container"
3054
+ msgstr ""
3055
+
3056
+ #: methods/cloudfiles-new.php:85
3057
+ msgid "US or UK-based Rackspace Account"
3058
+ msgstr ""
3059
+
3060
+ #: methods/cloudfiles-new.php:87
3061
+ msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
+ msgstr ""
3063
+
3064
+ #: addons/cloudfiles-enhanced.php:250 methods/cloudfiles-new.php:95
3065
+ msgid "Cloud Files Storage Region"
3066
+ msgstr ""
3067
+
3068
+ #: addons/cloudfiles-enhanced.php:254 methods/cloudfiles-new.php:100
3069
+ msgid "Dallas (DFW) (default)"
3070
+ msgstr ""
3071
+
3072
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:101
3073
+ msgid "Sydney (SYD)"
3074
+ msgstr ""
3075
+
3076
+ #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:102
3077
+ msgid "Chicago (ORD)"
3078
+ msgstr ""
3079
+
3080
+ #: addons/cloudfiles-enhanced.php:149 addons/s3-enhanced.php:197
3081
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
+ #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
+ #: methods/openstack2.php:25
3084
+ msgid "Authorisation failed (check your credentials)"
3085
+ msgstr ""
3086
+
3087
+ #: addons/cloudfiles-enhanced.php:232 methods/cloudfiles-new.php:85
3088
+ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr ""
3090
+
3091
+ #: methods/updraftvault.php:509 udaddons/options.php:265
3092
+ msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr ""
3094
+
3095
+ #: admin.php:513 central/bootstrap.php:443
3096
+ msgid "Create"
3097
+ msgstr ""
3098
+
3099
+ #: admin.php:475
3100
+ msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr ""
3102
+
3103
+ #: admin.php:476
3104
+ msgid "Trying..."
3105
+ msgstr ""
3106
+
3107
+ #: class-updraftplus.php:1262
3108
+ msgid "(when decrypted)"
3109
+ msgstr ""
3110
+
3111
+ #: admin.php:486 admin.php:5004
3112
+ msgid "Error data:"
3113
+ msgstr ""
3114
+
3115
+ #: admin.php:4678
3116
+ msgid "Backup does not exist in the backup history"
3117
+ msgstr ""
3118
+
3119
+ #: admin.php:3176
3120
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3121
+ msgstr ""
3122
+
3123
+ #: restorer.php:1590
3124
+ msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr ""
3126
+
3127
+ #: restorer.php:1471
3128
+ 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 (%s)"
3129
+ msgstr ""
3130
+
3131
+ #: restorer.php:1515
3132
+ msgid "<strong>Backup of:</strong> %s"
3133
+ msgstr ""
3134
+
3135
+ #: restorer.php:1297
3136
+ msgid "New table prefix: %s"
3137
+ msgstr ""
3138
+
3139
+ #: restorer.php:956 restorer.php:970
3140
+ msgid "%s: This directory already exists, and will be replaced"
3141
+ msgstr ""
3142
+
3143
+ #: restorer.php:986
3144
+ msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3145
+ msgstr ""
3146
+
3147
+ #: restorer.php:103
3148
+ msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr ""
3150
+
3151
+ #: restorer.php:96
3152
+ msgid "Moving old data out of the way..."
3153
+ msgstr ""
3154
+
3155
+ #: restorer.php:100
3156
+ msgid "Could not move old files out of the way."
3157
+ msgstr ""
3158
+
3159
+ #: restorer.php:102
3160
+ msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr ""
3162
+
3163
+ #: addons/reporting.php:380
3164
+ msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3165
+ msgstr ""
3166
+
3167
+ #: addons/reporting.php:394
3168
+ msgid "Add another address..."
3169
+ msgstr ""
3170
+
3171
+ #: addons/reporting.php:287
3172
+ msgid " (with errors (%s))"
3173
+ msgstr ""
3174
+
3175
+ #: addons/reporting.php:289
3176
+ msgid " (with warnings (%s))"
3177
+ msgstr ""
3178
+
3179
+ #: addons/reporting.php:319
3180
+ msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3181
+ msgstr ""
3182
+
3183
+ #: class-updraftplus.php:1231 class-updraftplus.php:1233
3184
+ msgid "files: %s"
3185
+ msgstr ""
3186
+
3187
+ #: class-updraftplus.php:1258 class-updraftplus.php:1263
3188
+ msgid "%s checksum: %s"
3189
+ msgstr ""
3190
+
3191
+ #: addons/reporting.php:355
3192
+ msgid "Email reports"
3193
+ msgstr ""
3194
+
3195
+ #: addons/reporting.php:165
3196
+ msgid "Errors"
3197
+ msgstr ""
3198
+
3199
+ #: addons/reporting.php:180
3200
+ msgid "Warnings"
3201
+ msgstr ""
3202
+
3203
+ #: addons/reporting.php:189
3204
+ msgid "Time taken:"
3205
+ msgstr ""
3206
+
3207
+ #: addons/reporting.php:190 admin.php:4291
3208
+ msgid "Uploaded to:"
3209
+ msgstr ""
3210
+
3211
+ #: addons/reporting.php:235
3212
+ msgid "Debugging information"
3213
+ msgstr ""
3214
+
3215
+ #: addons/reporting.php:123
3216
+ msgid "%d errors, %d warnings"
3217
+ msgstr ""
3218
+
3219
+ #: addons/reporting.php:137
3220
+ msgid "%d hours, %d minutes, %d seconds"
3221
+ msgstr ""
3222
+
3223
+ #: addons/reporting.php:142
3224
+ msgid "Backup Report"
3225
+ msgstr ""
3226
+
3227
+ #: addons/reporting.php:150
3228
+ msgid "Backup began:"
3229
+ msgstr ""
3230
+
3231
+ #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:151
3232
+ msgid "Contains:"
3233
+ msgstr ""
3234
+
3235
+ #: addons/reporting.php:162
3236
+ msgid "Errors / warnings:"
3237
+ msgstr ""
3238
+
3239
+ #: addons/onedrive.php:549 methods/dropbox.php:496
3240
+ msgid "%s authentication"
3241
+ msgstr ""
3242
+
3243
+ #: addons/onedrive.php:549 class-updraftplus.php:309 methods/dropbox.php:496
3244
+ #: methods/dropbox.php:510 methods/dropbox.php:605
3245
+ msgid "%s error: %s"
3246
+ msgstr ""
3247
+
3248
+ #: addons/googlecloud.php:815 methods/dropbox.php:419
3249
+ msgid "%s logo"
3250
+ msgstr ""
3251
+
3252
+ #: methods/email.php:73
3253
+ msgid "Your site's admin email address (%s) will be used."
3254
+ msgstr ""
3255
+
3256
+ #: methods/email.php:74
3257
+ msgid "For more options, use the \"%s\" add-on."
3258
+ msgstr ""
3259
+
3260
+ #: methods/s3.php:273
3261
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
+ msgstr ""
3263
+
3264
+ #: methods/dropbox.php:195
3265
+ msgid "%s did not return the expected response - check your log file for more details"
3266
+ msgstr ""
3267
+
3268
+ #: admin.php:522 methods/updraftvault.php:260 methods/updraftvault.php:305
3269
+ #: udaddons/options.php:244
3270
+ msgid "Connect"
3271
+ msgstr ""
3272
+
3273
+ #: admin.php:3936
3274
+ msgid "For more reporting features, use the Reporting add-on."
3275
+ msgstr ""
3276
+
3277
+ #: class-updraftplus.php:3616
3278
+ msgid "(version: %s)"
3279
+ msgstr ""
3280
+
3281
+ #: addons/reporting.php:427 admin.php:466
3282
+ msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr ""
3284
+
3285
+ #: addons/reporting.php:427 admin.php:465
3286
+ msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr ""
3288
+
3289
+ #: backup.php:844
3290
+ msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr ""
3292
+
3293
+ #: addons/reporting.php:232 backup.php:880
3294
+ msgid "The log file has been attached to this email."
3295
+ msgstr ""
3296
+
3297
+ #: backup.php:886
3298
+ msgid "Backed up: %s"
3299
+ msgstr ""
3300
+
3301
+ #: backup.php:925
3302
+ msgid "Backup contains:"
3303
+ msgstr ""
3304
+
3305
+ #: addons/reporting.php:149 backup.php:926
3306
+ msgid "Latest status:"
3307
+ msgstr ""
3308
+
3309
+ #: admin.php:155 backup.php:836
3310
+ msgid "Files and database"
3311
+ msgstr ""
3312
+
3313
+ #: backup.php:838
3314
+ msgid "Files (database backup has not completed)"
3315
+ msgstr ""
3316
+
3317
+ #: backup.php:838
3318
+ msgid "Files only (database was not part of this particular schedule)"
3319
+ msgstr ""
3320
+
3321
+ #: backup.php:841
3322
+ msgid "Database (files backup has not completed)"
3323
+ msgstr ""
3324
+
3325
+ #: backup.php:841
3326
+ msgid "Database only (files were not part of this particular schedule)"
3327
+ msgstr ""
3328
+
3329
+ #: options.php:185
3330
+ msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
+ msgstr ""
3332
+
3333
+ #: options.php:185
3334
+ msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
+ msgstr ""
3336
+
3337
+ #: options.php:185
3338
+ msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
3339
+ msgstr ""
3340
+
3341
+ #: options.php:185
3342
+ msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr ""
3344
+
3345
+ #: options.php:185
3346
+ msgid "UpdraftPlus warning:"
3347
+ msgstr ""
3348
+
3349
+ #: udaddons/options.php:488
3350
+ msgid "(or connect using the form on this page if you have already purchased it)"
3351
+ msgstr ""
3352
+
3353
+ #: udaddons/options.php:457
3354
+ msgid "You've got it"
3355
+ msgstr ""
3356
+
3357
+ #: udaddons/options.php:459
3358
+ msgid "Your version: %s"
3359
+ msgstr ""
3360
+
3361
+ #: udaddons/options.php:461 udaddons/options.php:463
3362
+ msgid "latest"
3363
+ msgstr ""
3364
+
3365
+ #: udaddons/options.php:471
3366
+ msgid "please follow this link to update the plugin in order to get it"
3367
+ msgstr ""
3368
+
3369
+ #: udaddons/options.php:474
3370
+ msgid "please follow this link to update the plugin in order to activate it"
3371
+ msgstr ""
3372
+
3373
+ #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3374
+ msgid "UpdraftPlus Addons"
3375
+ msgstr ""
3376
+
3377
+ #: udaddons/options.php:381
3378
+ msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3379
+ msgstr ""
3380
+
3381
+ #: udaddons/options.php:423
3382
+ msgid "UpdraftPlus Support"
3383
+ msgstr ""
3384
+
3385
+ #: udaddons/updraftplus-addons.php:682
3386
+ msgid "UpdraftPlus.Com responded, but we did not understand the response"
3387
+ msgstr ""
3388
+
3389
+ #: methods/updraftvault.php:555 udaddons/updraftplus-addons.php:725
3390
+ msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
+ msgstr ""
3392
+
3393
+ #: methods/updraftvault.php:596 udaddons/updraftplus-addons.php:765
3394
+ msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
+ msgstr ""
3396
+
3397
+ #: methods/updraftvault.php:582 methods/updraftvault.php:600
3398
+ #: udaddons/updraftplus-addons.php:768
3399
+ msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
+ msgstr ""
3401
+
3402
+ #: udaddons/options.php:94
3403
+ msgid "An update is available for UpdraftPlus - please follow this link to get it."
3404
+ msgstr ""
3405
+
3406
+ #: udaddons/updraftplus-addons.php:680
3407
+ msgid "We failed to successfully connect to UpdraftPlus.Com"
3408
+ msgstr ""
3409
+
3410
+ #: admin.php:3917 methods/email.php:74
3411
+ msgid "Reporting"
3412
+ msgstr ""
3413
+
3414
+ #: admin.php:1412
3415
+ msgid "Options (raw)"
3416
+ msgstr ""
3417
+
3418
+ #: addons/reporting.php:425 admin.php:464
3419
+ msgid "Send a report only when there are warnings/errors"
3420
+ msgstr ""
3421
+
3422
+ #: restorer.php:1533
3423
+ msgid "Content URL:"
3424
+ msgstr ""
3425
+
3426
+ #: restorer.php:100
3427
+ msgid "You should check the file ownerships and permissions in your WordPress installation"
3428
+ msgstr ""
3429
+
3430
+ #: admin.php:3840
3431
+ msgid "See also the \"More Files\" add-on from our shop."
3432
+ msgstr ""
3433
+
3434
+ #: backup.php:2931 class-updraftplus.php:588
3435
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
+ msgstr ""
3437
+
3438
+ #: class-updraftplus.php:565
3439
+ 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)"
3440
+ msgstr ""
3441
+
3442
+ #: udaddons/options.php:484
3443
+ msgid "You have an inactive purchase"
3444
+ msgstr ""
3445
+
3446
+ #: udaddons/options.php:482 udaddons/options.php:484
3447
+ msgid "activate it on this site"
3448
+ msgstr ""
3449
+
3450
+ #: udaddons/options.php:488
3451
+ msgid "Get it from the UpdraftPlus.Com Store"
3452
+ msgstr ""
3453
+
3454
+ #: udaddons/options.php:489
3455
+ msgid "Buy It"
3456
+ msgstr ""
3457
+
3458
+ #: udaddons/options.php:547
3459
+ msgid "Manage Addons"
3460
+ msgstr ""
3461
+
3462
+ #: udaddons/options.php:340
3463
+ msgid "An unknown response was received. Response was:"
3464
+ msgstr ""
3465
+
3466
+ #: udaddons/options.php:407
3467
+ msgid "An error occurred when trying to retrieve your add-ons."
3468
+ msgstr ""
3469
+
3470
+ #: udaddons/options.php:425
3471
+ msgid "Need to get support?"
3472
+ msgstr ""
3473
+
3474
+ #: udaddons/options.php:425
3475
+ msgid "Go here"
3476
+ msgstr ""
3477
+
3478
+ #: udaddons/options.php:465
3479
+ msgid "(apparently a pre-release or withdrawn release)"
3480
+ msgstr ""
3481
+
3482
+ #: udaddons/options.php:471
3483
+ msgid "Available for this site (via your all-addons purchase)"
3484
+ msgstr ""
3485
+
3486
+ #: udaddons/options.php:474
3487
+ msgid "Assigned to this site"
3488
+ msgstr ""
3489
+
3490
+ #: udaddons/options.php:242
3491
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3492
+ msgstr ""
3493
+
3494
+ #: udaddons/options.php:271
3495
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
3496
+ msgstr ""
3497
+
3498
+ #: udaddons/options.php:272
3499
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
3500
+ msgstr ""
3501
+
3502
+ #: udaddons/options.php:281
3503
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
3504
+ msgstr ""
3505
+
3506
+ #: udaddons/options.php:290
3507
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
3508
+ msgstr ""
3509
+
3510
+ #: udaddons/options.php:337
3511
+ msgid "Please wait whilst we make the claim..."
3512
+ msgstr ""
3513
+
3514
+ #: udaddons/options.php:339
3515
+ msgid "Claim not granted - your account login details were wrong"
3516
+ msgstr ""
3517
+
3518
+ #: udaddons/options.php:120
3519
+ msgid "Your web server's version of PHP is too old ("
3520
+ msgstr ""
3521
+
3522
+ #: udaddons/options.php:141
3523
+ msgid "Connect with your UpdraftPlus.Com account"
3524
+ msgstr ""
3525
+
3526
+ #: udaddons/options.php:172
3527
+ msgid "Not yet got an account (it's free)? Go get one!"
3528
+ msgstr ""
3529
+
3530
+ #: udaddons/options.php:183
3531
+ msgid "Forgotten your details?"
3532
+ msgstr ""
3533
+
3534
+ #: udaddons/options.php:100
3535
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
3536
+ msgstr ""
3537
+
3538
+ #: udaddons/options.php:100 udaddons/options.php:102
3539
+ msgid "Go here to connect."
3540
+ msgstr ""
3541
+
3542
+ #: udaddons/options.php:109
3543
+ msgid "UpdraftPlus is not yet activated."
3544
+ msgstr ""
3545
+
3546
+ #: udaddons/options.php:110
3547
+ msgid "Go here to activate it."
3548
+ msgstr ""
3549
+
3550
+ #: udaddons/options.php:113
3551
+ msgid "UpdraftPlus is not yet installed."
3552
+ msgstr ""
3553
+
3554
+ #: udaddons/options.php:113
3555
+ msgid "Go here to begin installing it."
3556
+ msgstr ""
3557
+
3558
+ #: udaddons/options.php:114
3559
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
3560
+ msgstr ""
3561
+
3562
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3563
+ msgid "Your web-server does not have the %s module installed."
3564
+ msgstr ""
3565
+
3566
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3567
+ msgid "Without it, encryption will be a lot slower."
3568
+ msgstr ""
3569
+
3570
+ #: admin.php:2902
3571
+ msgid "Drop backup files here"
3572
+ msgstr ""
3573
+
3574
+ #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
+ msgstr ""
3577
+
3578
+ #: class-updraftplus.php:3472
3579
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
+ msgstr ""
3581
+
3582
+ #: class-updraftplus.php:3482
3583
+ msgid "Check out WordShell"
3584
+ msgstr ""
3585
+
3586
+ #: class-updraftplus.php:3482
3587
+ msgid "manage WordPress from the command line - huge time-saver"
3588
+ msgstr ""
3589
+
3590
+ #: admin.php:472
3591
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
+ msgstr ""
3593
+
3594
+ #: admin.php:474
3595
+ msgid "The web server returned an error code (try again, or check your web server logs)"
3596
+ msgstr ""
3597
+
3598
+ #: admin.php:470
3599
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
+ msgstr ""
3601
+
3602
+ #: restorer.php:1527
3603
+ msgid "Site home:"
3604
+ msgstr ""
3605
+
3606
+ #: addons/morestorage.php:78
3607
+ msgid "Remote Storage Options"
3608
+ msgstr ""
3609
+
3610
+ #: addons/autobackup.php:249 addons/autobackup.php:985
3611
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
3612
+ msgstr ""
3613
+
3614
+ #: addons/autobackup.php:288 addons/autobackup.php:381
3615
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
3616
+ msgstr ""
3617
+
3618
+ #: addons/azure.php:349 methods/stream-base.php:125 methods/stream-base.php:130
3619
+ msgid "Upload failed"
3620
+ msgstr ""
3621
+
3622
+ #: admin.php:3806
3623
+ msgid "You can send a backup to more than one destination with an add-on."
3624
+ msgstr ""
3625
+
3626
+ #: admin.php:3394
3627
+ 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."
3628
+ msgstr ""
3629
+
3630
+ #: admin.php:3292
3631
+ msgid "(%s%%, file %s of %s)"
3632
+ msgstr ""
3633
+
3634
+ #: addons/sftp.php:483
3635
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
3636
+ msgstr ""
3637
+
3638
+ #: addons/sftp.php:485
3639
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
3640
+ msgstr ""
3641
+
3642
+ #: addons/autobackup.php:249 addons/autobackup.php:989 addons/lockadmin.php:132
3643
+ msgid "Read more about how this works..."
3644
+ msgstr ""
3645
+
3646
+ #: addons/sftp.php:402
3647
+ msgid "Use SCP instead of SFTP"
3648
+ msgstr ""
3649
+
3650
+ #: addons/sftp.php:45
3651
+ msgid "SCP/SFTP host setting"
3652
+ msgstr ""
3653
+
3654
+ #: addons/sftp.php:46
3655
+ msgid "SCP/SFTP user setting"
3656
+ msgstr ""
3657
+
3658
+ #: methods/email.php:45
3659
+ msgid "Backup is of: %s."
3660
+ msgstr ""
3661
+
3662
+ #: methods/email.php:58
3663
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
+ msgstr ""
3665
+
3666
+ #: admin.php:559
3667
+ msgid "%s settings test result:"
3668
+ msgstr ""
3669
+
3670
+ #: admin.php:4584
3671
+ 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."
3672
+ msgstr ""
3673
+
3674
+ #: admin.php:4582 admin.php:4584
3675
+ msgid "(Not finished)"
3676
+ msgstr ""
3677
+
3678
+ #: admin.php:3995
3679
+ 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)."
3680
+ msgstr ""
3681
+
3682
+ #: admin.php:3995
3683
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
+ msgstr ""
3685
+
3686
+ #: admin.php:3301
3687
+ msgid "Waiting until scheduled time to retry because of errors"
3688
+ msgstr ""
3689
+
3690
+ #: admin.php:3306
3691
+ msgid "Backup finished"
3692
+ msgstr ""
3693
+
3694
+ #: admin.php:3356 central/bootstrap.php:405 central/bootstrap.php:412
3695
+ #: methods/updraftvault.php:340 methods/updraftvault.php:420
3696
+ msgid "Unknown"
3697
+ msgstr ""
3698
+
3699
+ #: admin.php:3373
3700
+ msgid "next resumption: %d (after %ss)"
3701
+ msgstr ""
3702
+
3703
+ #: admin.php:3374
3704
+ msgid "last activity: %ss ago"
3705
+ msgstr ""
3706
+
3707
+ #: admin.php:3389
3708
+ msgid "Job ID: %s"
3709
+ msgstr ""
3710
+
3711
+ #: admin.php:3333
3712
+ msgid "table: %s"
3713
+ msgstr ""
3714
+
3715
+ #: admin.php:3320
3716
+ msgid "Created database backup"
3717
+ msgstr ""
3718
+
3719
+ #: admin.php:3346
3720
+ msgid "Encrypting database"
3721
+ msgstr ""
3722
+
3723
+ #: admin.php:3354
3724
+ msgid "Encrypted database"
3725
+ msgstr ""
3726
+
3727
+ #: admin.php:3285
3728
+ msgid "Uploading files to remote storage"
3729
+ msgstr ""
3730
+
3731
+ #: admin.php:3297
3732
+ msgid "Pruning old backup sets"
3733
+ msgstr ""
3734
+
3735
+ #: admin.php:3266
3736
+ msgid "Creating file backup zips"
3737
+ msgstr ""
3738
+
3739
+ #: admin.php:3279
3740
+ msgid "Created file backup zips"
3741
+ msgstr ""
3742
+
3743
+ #: admin.php:3331
3744
+ msgid "Creating database backup"
3745
+ msgstr ""
3746
+
3747
+ #: admin.php:3261
3748
+ msgid "Backup begun"
3749
+ msgstr ""
3750
+
3751
+ #: admin.php:2789
3752
+ msgid "Backups in progress:"
3753
+ msgstr ""
3754
+
3755
+ #: admin.php:773
3756
+ 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."
3757
+ msgstr ""
3758
+
3759
+ #: restorer.php:580 restorer.php:587
3760
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
+ msgstr ""
3762
+
3763
+ #: restorer.php:580
3764
+ msgid "folder"
3765
+ msgstr ""
3766
+
3767
+ #: restorer.php:587
3768
+ msgid "file"
3769
+ msgstr ""
3770
+
3771
+ #: class-updraftplus.php:2492
3772
+ msgid "The backup has not finished; a resumption is scheduled"
3773
+ msgstr ""
3774
+
3775
+ #: class-updraftplus.php:1502
3776
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
+ msgstr ""
3778
+
3779
+ #: addons/googlecloud.php:337 addons/onedrive.php:687
3780
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
+ #: methods/googledrive.php:239
3782
+ 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)."
3783
+ msgstr ""
3784
+
3785
+ #: admin.php:2370
3786
+ 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)."
3787
+ msgstr ""
3788
+
3789
+ #: addons/autobackup.php:113 addons/autobackup.php:972
3790
+ msgid "UpdraftPlus Automatic Backups"
3791
+ msgstr ""
3792
+
3793
+ #: addons/autobackup.php:993
3794
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
3795
+ msgstr ""
3796
+
3797
+ #: addons/autobackup.php:994 admin.php:515
3798
+ msgid "Proceed with update"
3799
+ msgstr ""
3800
+
3801
+ #: addons/autobackup.php:292 addons/autobackup.php:388
3802
+ msgid "Starting automatic backup..."
3803
+ msgstr ""
3804
+
3805
+ #: addons/autobackup.php:342
3806
+ msgid "plugins"
3807
+ msgstr ""
3808
+
3809
+ #: addons/autobackup.php:349
3810
+ msgid "themes"
3811
+ msgstr ""
3812
+
3813
+ #: addons/autobackup.php:370
3814
+ msgid "You do not have sufficient permissions to update this site."
3815
+ msgstr ""
3816
+
3817
+ #: addons/autobackup.php:381
3818
+ msgid "Creating database backup with UpdraftPlus..."
3819
+ msgstr ""
3820
+
3821
+ #: addons/autobackup.php:390 addons/autobackup.php:518
3822
+ #: addons/autobackup.php:569
3823
+ msgid "Automatic Backup"
3824
+ msgstr ""
3825
+
3826
+ #: addons/autobackup.php:443
3827
+ msgid "Creating backup with UpdraftPlus..."
3828
+ msgstr ""
3829
+
3830
+ #: addons/autobackup.php:471
3831
+ msgid "Errors have occurred:"
3832
+ msgstr ""
3833
+
3834
+ #: addons/autobackup.php:249
3835
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3836
+ msgstr ""
3837
+
3838
+ #: addons/autobackup.php:288
3839
+ msgid "Creating %s and database backup with UpdraftPlus..."
3840
+ msgstr ""
3841
+
3842
+ #: addons/morefiles.php:106
3843
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
3844
+ msgstr ""
3845
+
3846
+ #: addons/morefiles.php:116
3847
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
3848
+ msgstr ""
3849
+
3850
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3851
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
3852
+ msgstr ""
3853
+
3854
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3855
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
3856
+ msgstr ""
3857
+
3858
+ #: admin.php:2171 admin.php:2561
3859
+ msgid "Support"
3860
+ msgstr "সহায়তা"
3861
+
3862
+ #: admin.php:2174
3863
+ msgid "More plugins"
3864
+ msgstr ""
3865
+
3866
+ #: class-updraftplus.php:3649
3867
+ 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."
3868
+ msgstr ""
3869
+
3870
+ #: class-updraftplus.php:3752
3871
+ msgid "This database backup is missing core WordPress tables: %s"
3872
+ msgstr ""
3873
+
3874
+ #: class-updraftplus.php:3757
3875
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
+ msgstr ""
3877
+
3878
+ #: class-updraftplus.php:3565
3879
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
+ msgstr ""
3881
+
3882
+ #: addons/autobackup.php:507 admin.php:733
3883
+ msgid "Update Plugin"
3884
+ msgstr ""
3885
+
3886
+ #: addons/autobackup.php:558 admin.php:737
3887
+ msgid "Update Theme"
3888
+ msgstr ""
3889
+
3890
+ #: admin.php:579 admin.php:746
3891
+ msgid "Dismiss (for %s weeks)"
3892
+ msgstr ""
3893
+
3894
+ #: addons/autobackup.php:975 admin.php:580 admin.php:747
3895
+ msgid "Be safe with an automatic backup"
3896
+ msgstr ""
3897
+
3898
+ #: restorer.php:2084
3899
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
3900
+ msgstr ""
3901
+
3902
+ #: admin.php:2333
3903
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3904
+ msgstr ""
3905
+
3906
+ #: admin.php:505
3907
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
3908
+ msgstr ""
3909
+
3910
+ #: admin.php:506
3911
+ msgid "This decryption key will be attempted:"
3912
+ msgstr ""
3913
+
3914
+ #: admin.php:507
3915
+ msgid "Unknown server response:"
3916
+ msgstr ""
3917
+
3918
+ #: admin.php:508
3919
+ msgid "Unknown server response status:"
3920
+ msgstr ""
3921
+
3922
+ #: admin.php:509
3923
+ msgid "The file was uploaded."
3924
+ msgstr ""
3925
+
3926
+ #: admin.php:501
3927
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3928
+ msgstr ""
3929
+
3930
+ #: admin.php:502
3931
+ msgid "Upload error:"
3932
+ msgstr ""
3933
+
3934
+ #: admin.php:503
3935
+ 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)."
3936
+ msgstr ""
3937
+
3938
+ #: admin.php:504
3939
+ msgid "Upload error"
3940
+ msgstr ""
3941
+
3942
+ #: admin.php:491
3943
+ msgid "Delete from your web server"
3944
+ msgstr ""
3945
+
3946
+ #: admin.php:492
3947
+ msgid "Download to your computer"
3948
+ msgstr ""
3949
+
3950
+ #: admin.php:493
3951
+ msgid "and then, if you wish,"
3952
+ msgstr ""
3953
+
3954
+ #: methods/s3.php:710
3955
+ msgid "Examples of S3-compatible storage providers:"
3956
+ msgstr ""
3957
+
3958
+ #: admin.php:4954
3959
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3960
+ msgstr ""
3961
+
3962
+ #: admin.php:4548
3963
+ msgid "(%d archive(s) in set)."
3964
+ msgstr ""
3965
+
3966
+ #: admin.php:4551
3967
+ msgid "You appear to be missing one or more archives from this multi-archive set."
3968
+ msgstr ""
3969
+
3970
+ #: admin.php:3972
3971
+ msgid "Split archives every:"
3972
+ msgstr ""
3973
+
3974
+ #: admin.php:482
3975
+ msgid "Error: the server sent an empty response."
3976
+ msgstr ""
3977
+
3978
+ #: admin.php:483
3979
+ msgid "Warnings:"
3980
+ msgstr ""
3981
+
3982
+ #: addons/moredatabase.php:269
3983
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
3984
+ msgstr ""
3985
+
3986
+ #: admin.php:2066
3987
+ 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?"
3988
+ msgstr ""
3989
+
3990
+ #: admin.php:1341
3991
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
3992
+ msgstr ""
3993
+
3994
+ #: admin.php:1343
3995
+ 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."
3996
+ msgstr ""
3997
+
3998
+ #: admin.php:1345
3999
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4000
+ msgstr ""
4001
+
4002
+ #: admin.php:1025
4003
+ 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"
4004
+ msgstr ""
4005
+
4006
+ #: admin.php:1245
4007
+ msgid "No such backup set exists"
4008
+ msgstr ""
4009
+
4010
+ #: admin.php:1314
4011
+ msgid "File not found (you need to upload it): %s"
4012
+ msgstr ""
4013
+
4014
+ #: admin.php:1316
4015
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4016
+ msgstr ""
4017
+
4018
+ #: admin.php:1321
4019
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4020
+ msgstr ""
4021
+
4022
+ #: admin.php:1336
4023
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
4024
+ msgstr ""
4025
+
4026
+ #: restorer.php:529
4027
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
4028
+ msgstr ""
4029
+
4030
+ #: restorer.php:520
4031
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
4032
+ msgstr ""
4033
+
4034
+ #: restorer.php:97
4035
+ msgid "Moving unpacked backup into place..."
4036
+ msgstr ""
4037
+
4038
+ #: backup.php:2635 backup.php:2891
4039
+ msgid "Failed to open the zip file (%s) - %s"
4040
+ msgstr ""
4041
+
4042
+ #: addons/morefiles.php:94
4043
+ msgid "WordPress root directory server path: %s"
4044
+ msgstr ""
4045
+
4046
+ #: methods/s3.php:717
4047
+ msgid "... and many more!"
4048
+ msgstr ""
4049
+
4050
+ #: methods/s3.php:755
4051
+ msgid "%s end-point"
4052
+ msgstr ""
4053
+
4054
+ #: admin.php:4873
4055
+ msgid "File is not locally present - needs retrieving from remote storage"
4056
+ msgstr ""
4057
+
4058
+ #: methods/s3generic.php:41 methods/s3generic.php:49
4059
+ msgid "S3 (Compatible)"
4060
+ msgstr ""
4061
+
4062
+ #: admin.php:4821
4063
+ msgid "Final checks"
4064
+ msgstr ""
4065
+
4066
+ #: admin.php:4860
4067
+ msgid "Looking for %s archive: file name: %s"
4068
+ msgstr ""
4069
+
4070
+ #: admin.php:3978
4071
+ 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)."
4072
+ msgstr ""
4073
+
4074
+ #: admin.php:3881
4075
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4076
+ msgstr ""
4077
+
4078
+ #: admin.php:4095
4079
+ msgid "Your wp-content directory server path: %s"
4080
+ msgstr ""
4081
+
4082
+ #: admin.php:498
4083
+ msgid "Raw backup history"
4084
+ msgstr ""
4085
+
4086
+ #: admin.php:3117
4087
+ msgid "Show raw backup and file list"
4088
+ msgstr ""
4089
+
4090
+ #: admin.php:481
4091
+ msgid "Processing files - please wait..."
4092
+ msgstr ""
4093
+
4094
+ #: admin.php:2870
4095
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4096
+ msgstr ""
4097
+
4098
+ #: admin.php:2870 admin.php:5006
4099
+ msgid "Please consult this FAQ for help on what to do about it."
4100
+ msgstr ""
4101
+
4102
+ #: class-updraftplus.php:3573
4103
+ msgid "Failed to open database file."
4104
+ msgstr ""
4105
+
4106
+ #: class-updraftplus.php:3553
4107
+ msgid "Failed to write out the decrypted database to the filesystem."
4108
+ msgstr ""
4109
+
4110
+ #: admin.php:1384
4111
+ msgid "Known backups (raw)"
4112
+ msgstr ""
4113
+
4114
+ #: restorer.php:1270
4115
+ msgid "Using directory from backup: %s"
4116
+ msgstr ""
4117
+
4118
+ #: restorer.php:879
4119
+ msgid "Files found:"
4120
+ msgstr ""
4121
+
4122
+ #: restorer.php:885
4123
+ msgid "Unable to enumerate files in that directory."
4124
+ msgstr ""
4125
+
4126
+ #: restorer.php:1720
4127
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
4128
+ msgstr ""
4129
+
4130
+ #: restorer.php:1730
4131
+ msgid "Restoring table (%s)"
4132
+ msgstr ""
4133
+
4134
+ #: addons/migrator.php:312
4135
+ 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."
4136
+ msgstr ""
4137
+
4138
+ #: admin.php:4895
4139
+ msgid "file is size:"
4140
+ msgstr ""
4141
+
4142
+ #: addons/googlecloud.php:855 addons/migrator.php:350 addons/migrator.php:353
4143
+ #: addons/migrator.php:356 admin.php:773 admin.php:2338 admin.php:3142
4144
+ #: backup.php:2938 updraftplus.php:147
4145
+ msgid "Go here for more information."
4146
+ msgstr ""
4147
+
4148
+ #: admin.php:480
4149
+ msgid "Some files are still downloading or being processed - please wait."
4150
+ msgstr ""
4151
+
4152
+ #: class-updraftplus.php:3621 class-updraftplus.php:3639
4153
+ 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."
4154
+ msgstr ""
4155
+
4156
+ #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4157
+ msgid "%s login failure"
4158
+ msgstr ""
4159
+
4160
+ #: methods/ftp.php:111
4161
+ msgid "%s upload failed"
4162
+ msgstr ""
4163
+
4164
+ #: addons/fixtime.php:545
4165
+ msgid "Enter in format HH:MM (e.g. 14:22)."
4166
+ msgstr ""
4167
+
4168
+ #: addons/fixtime.php:545
4169
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
4170
+ msgstr ""
4171
+
4172
+ #: methods/dropbox.php:113
4173
+ msgid "Dropbox error: %s (see log file for more)"
4174
+ msgstr ""
4175
+
4176
+ #: methods/dropbox.php:323
4177
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
4178
+ msgstr ""
4179
+
4180
+ #: methods/dropbox.php:331
4181
+ msgid "Failed to access %s when deleting (see log file for more)"
4182
+ msgstr ""
4183
+
4184
+ #: methods/dropbox.php:364
4185
+ msgid "You do not appear to be authenticated with %s"
4186
+ msgstr ""
4187
+
4188
+ #: methods/cloudfiles.php:418
4189
+ msgid "Error - no such file exists at %s"
4190
+ msgstr ""
4191
+
4192
+ #: methods/cloudfiles.php:422
4193
+ msgid "Error - failed to download the file from %s"
4194
+ msgstr ""
4195
+
4196
+ #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4197
+ msgid "%s error - failed to upload file"
4198
+ msgstr ""
4199
+
4200
+ #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4201
+ #: methods/cloudfiles.php:409 methods/googledrive.php:823
4202
+ #: methods/openstack-base.php:319 methods/stream-base.php:261
4203
+ #: methods/stream-base.php:268 methods/stream-base.php:281
4204
+ msgid "%s Error"
4205
+ msgstr ""
4206
+
4207
+ #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4208
+ #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4209
+ #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4210
+ #: methods/openstack-base.php:32 methods/openstack-base.php:216
4211
+ #: methods/openstack-base.php:281 methods/openstack-base.php:353
4212
+ #: methods/openstack-base.php:356 methods/openstack-base.php:373
4213
+ #: methods/openstack-base.php:378
4214
+ msgid "%s authentication failed"
4215
+ msgstr ""
4216
+
4217
+ #: class-updraftplus.php:851 methods/cloudfiles.php:211
4218
+ msgid "%s error - failed to re-assemble chunks"
4219
+ msgstr ""
4220
+
4221
+ #: addons/googlecloud.php:384 addons/migrator.php:449 admin.php:2011
4222
+ #: admin.php:2058 admin.php:2066 class-updraftplus.php:691
4223
+ #: class-updraftplus.php:697 class-updraftplus.php:3541
4224
+ #: class-updraftplus.php:3543 class-updraftplus.php:3679
4225
+ #: class-updraftplus.php:3712 methods/googledrive.php:299 restorer.php:873
4226
+ msgid "Error: %s"
4227
+ msgstr ""
4228
+
4229
+ #: admin.php:3668
4230
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
4231
+ msgstr ""
4232
+
4233
+ #: admin.php:3666
4234
+ msgid "Backup directory specified does <b>not</b> exist."
4235
+ msgstr ""
4236
+
4237
+ #: admin.php:3401 admin.php:3622 class-updraftplus.php:3621
4238
+ #: class-updraftplus.php:3639
4239
+ msgid "Warning: %s"
4240
+ msgstr ""
4241
+
4242
+ #: admin.php:2474
4243
+ msgid "Last backup job run:"
4244
+ msgstr ""
4245
+
4246
+ #: backup.php:2033 backup.php:2063
4247
+ msgid "%s: unreadable file - could not be backed up"
4248
+ msgstr ""
4249
+
4250
+ #: backup.php:2657
4251
+ msgid "A very large file was encountered: %s (size: %s Mb)"
4252
+ msgstr ""
4253
+
4254
+ #: backup.php:1474
4255
+ 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"
4256
+ msgstr ""
4257
+
4258
+ #: backup.php:1585
4259
+ msgid "An error occurred whilst closing the final database file"
4260
+ msgstr ""
4261
+
4262
+ #: backup.php:871
4263
+ msgid "Warnings encountered:"
4264
+ msgstr ""
4265
+
4266
+ #: class-updraftplus.php:2480
4267
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
4268
+ msgstr ""
4269
+
4270
+ #: class-updraftplus.php:601
4271
+ msgid "Your free disk space is very low - only %s Mb remain"
4272
+ msgstr ""
4273
+
4274
+ #: addons/migrator.php:432
4275
+ msgid "Migrated site (from UpdraftPlus)"
4276
+ msgstr ""
4277
+
4278
+ #: addons/migrator.php:511
4279
+ msgid "<strong>ERROR</strong>: Site URL already taken."
4280
+ msgstr ""
4281
+
4282
+ #: addons/migrator.php:456
4283
+ msgid "New site:"
4284
+ msgstr ""
4285
+
4286
+ #: addons/migrator.php:370
4287
+ msgid "Information needed to continue:"
4288
+ msgstr ""
4289
+
4290
+ #: addons/migrator.php:371
4291
+ msgid "Enter details for where this new site is to live within your multisite install:"
4292
+ msgstr ""
4293
+
4294
+ #: addons/migrator.php:316
4295
+ msgid "Processed plugin:"
4296
+ msgstr ""
4297
+
4298
+ #: addons/migrator.php:327
4299
+ msgid "Network activating theme:"
4300
+ msgstr ""
4301
+
4302
+ #: addons/sftp.php:38
4303
+ 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."
4304
+ msgstr ""
4305
+
4306
+ #: addons/sftp.php:74
4307
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
4308
+ msgstr ""
4309
+
4310
+ #: methods/s3.php:731
4311
+ 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."
4312
+ msgstr ""
4313
+
4314
+ #: methods/s3.php:970
4315
+ msgid "Please check your access credentials."
4316
+ msgstr ""
4317
+
4318
+ #: addons/s3-enhanced.php:172 methods/s3.php:948
4319
+ msgid "The error reported by %s was:"
4320
+ msgstr ""
4321
+
4322
+ #: restorer.php:1287
4323
+ msgid "Please supply the requested information, and then continue."
4324
+ msgstr ""
4325
+
4326
+ #: restorer.php:1925
4327
+ msgid "Cannot drop tables, so deleting instead (%s)"
4328
+ msgstr ""
4329
+
4330
+ #: class-updraftplus.php:3690 restorer.php:1564
4331
+ msgid "Site information:"
4332
+ msgstr ""
4333
+
4334
+ #: restorer.php:1908
4335
+ msgid "Cannot create new tables, so skipping this command (%s)"
4336
+ msgstr ""
4337
+
4338
+ #: addons/migrator.php:312 admin.php:2333 class-updraftplus.php:3683
4339
+ #: restorer.php:1441 restorer.php:1470 restorer.php:1884
4340
+ msgid "Warning:"
4341
+ msgstr ""
4342
+
4343
+ #: restorer.php:1442
4344
+ 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."
4345
+ msgstr ""
4346
+
4347
+ #: class-updraftplus.php:3675 restorer.php:105
4348
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4349
+ msgstr ""
4350
+
4351
+ #: admin.php:4848
4352
+ 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."
4353
+ msgstr ""
4354
+
4355
+ #: admin.php:4151 methods/updraftvault.php:244
4356
+ 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."
4357
+ msgstr ""
4358
+
4359
+ #: admin.php:516
4360
+ msgid "Close"
4361
+ msgstr ""
4362
+
4363
+ #: addons/autobackup.php:294 addons/autobackup.php:385 admin.php:473
4364
+ #: methods/remotesend.php:71 methods/remotesend.php:79
4365
+ #: methods/remotesend.php:220 methods/remotesend.php:237
4366
+ msgid "Unexpected response:"
4367
+ msgstr ""
4368
+
4369
+ #: addons/reporting.php:423 admin.php:469
4370
+ msgid "To send to more than one address, separate each address with a comma."
4371
+ msgstr ""
4372
+
4373
+ #: admin.php:496
4374
+ msgid "PHP information"
4375
+ msgstr ""
4376
+
4377
+ #: admin.php:3082
4378
+ msgid "show PHP information (phpinfo)"
4379
+ msgstr ""
4380
+
4381
+ #: admin.php:3102
4382
+ msgid "zip executable found:"
4383
+ msgstr ""
4384
+
4385
+ #: admin.php:2483
4386
+ msgid "Migrate Site"
4387
+ msgstr ""
4388
+
4389
+ #: addons/migrator.php:168
4390
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4391
+ msgstr ""
4392
+
4393
+ #: admin.php:2488
4394
+ msgid "Do you want to migrate or clone/duplicate a site?"
4395
+ msgstr ""
4396
+
4397
+ #: admin.php:2488
4398
+ 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."
4399
+ msgstr ""
4400
+
4401
+ #: admin.php:2488
4402
+ msgid "Get it here."
4403
+ msgstr ""
4404
+
4405
+ #: admin.php:2958
4406
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
4407
+ msgstr ""
4408
+
4409
+ #: admin.php:2957
4410
+ msgid "Also delete from remote storage"
4411
+ msgstr ""
4412
+
4413
+ #: admin.php:2816
4414
+ msgid "Latest UpdraftPlus.com news:"
4415
+ msgstr ""
4416
+
4417
+ #: admin.php:2449
4418
+ msgid "Clone/Migrate"
4419
+ msgstr ""
4420
+
4421
+ #: admin.php:2169
4422
+ msgid "News"
4423
+ msgstr ""
4424
+
4425
+ #: admin.php:2168
4426
+ msgid "Premium"
4427
+ msgstr ""
4428
+
4429
+ #: admin.php:1628
4430
+ msgid "Local archives deleted: %d"
4431
+ msgstr ""
4432
+
4433
+ #: admin.php:1629
4434
+ msgid "Remote archives deleted: %d"
4435
+ msgstr ""
4436
+
4437
+ #: backup.php:157
4438
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4439
+ msgstr ""
4440
+
4441
+ #: admin.php:1554
4442
+ msgid "Backup set not found"
4443
+ msgstr ""
4444
+
4445
+ #: class-updraftplus.php:3499
4446
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4447
+ msgstr ""
4448
+
4449
+ #: class-updraftplus.php:3499
4450
+ msgid "Blog link"
4451
+ msgstr ""
4452
+
4453
+ #: class-updraftplus.php:3499
4454
+ msgid "RSS link"
4455
+ msgstr ""
4456
+
4457
+ #: admin.php:558
4458
+ msgid "Testing %s Settings..."
4459
+ msgstr ""
4460
+
4461
+ #: admin.php:2892
4462
+ 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."
4463
+ msgstr ""
4464
+
4465
+ #: admin.php:789
4466
+ msgid "Notice"
4467
+ msgstr ""
4468
+
4469
+ #: admin.php:789
4470
+ 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."
4471
+ msgstr ""
4472
+
4473
+ #: backup.php:853
4474
+ msgid "Errors encountered:"
4475
+ msgstr ""
4476
+
4477
+ #: admin.php:467
4478
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4479
+ msgstr ""
4480
+
4481
+ #: admin.php:479
4482
+ msgid "Begun looking for this entity"
4483
+ msgstr ""
4484
+
4485
+ #: addons/migrator.php:1090
4486
+ msgid "SQL update commands run:"
4487
+ msgstr ""
4488
+
4489
+ #: addons/migrator.php:1091 admin.php:484
4490
+ msgid "Errors:"
4491
+ msgstr ""
4492
+
4493
+ #: addons/migrator.php:1092
4494
+ msgid "Time taken (seconds):"
4495
+ msgstr ""
4496
+
4497
+ #: addons/migrator.php:1228
4498
+ msgid "rows: %d"
4499
+ msgstr ""
4500
+
4501
+ #: addons/migrator.php:1348
4502
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
4503
+ msgstr ""
4504
+
4505
+ #: addons/dropbox-folders.php:26
4506
+ msgid "Store at"
4507
+ msgstr ""
4508
+
4509
+ #: addons/migrator.php:905
4510
+ msgid "Nothing to do: the site URL is already: %s"
4511
+ msgstr ""
4512
+
4513
+ #: addons/migrator.php:916
4514
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
4515
+ msgstr ""
4516
+
4517
+ #: addons/migrator.php:932
4518
+ msgid "Database search and replace: replace %s in backup dump with %s"
4519
+ msgstr ""
4520
+
4521
+ #: addons/migrator.php:972
4522
+ msgid "Could not get list of tables"
4523
+ msgstr ""
4524
+
4525
+ #: addons/migrator.php:1087
4526
+ msgid "Tables examined:"
4527
+ msgstr ""
4528
+
4529
+ #: addons/migrator.php:1088
4530
+ msgid "Rows examined:"
4531
+ msgstr ""
4532
+
4533
+ #: addons/migrator.php:1089
4534
+ msgid "Changes made:"
4535
+ msgstr ""
4536
+
4537
+ #: addons/sftp.php:280
4538
+ msgid "%s Error: Failed to download"
4539
+ msgstr ""
4540
+
4541
+ #: addons/moredatabase.php:232 addons/sftp.php:347
4542
+ msgid "Host"
4543
+ msgstr ""
4544
+
4545
+ #: addons/sftp.php:354
4546
+ msgid "Port"
4547
+ msgstr ""
4548
+
4549
+ #: addons/lockadmin.php:141 addons/moredatabase.php:234 addons/sftp.php:368
4550
+ #: methods/openstack2.php:127 methods/updraftvault.php:304
4551
+ #: udaddons/options.php:145
4552
+ msgid "Password"
4553
+ msgstr ""
4554
+
4555
+ #: addons/sftp.php:393
4556
+ msgid "Directory path"
4557
+ msgstr ""
4558
+
4559
+ #: addons/sftp.php:395
4560
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
4561
+ msgstr ""
4562
+
4563
+ #: addons/sftp.php:417
4564
+ msgid "host name"
4565
+ msgstr ""
4566
+
4567
+ #: addons/sftp.php:421 methods/openstack2.php:142
4568
+ msgid "username"
4569
+ msgstr ""
4570
+
4571
+ #: methods/ftp.php:359 methods/openstack2.php:147
4572
+ msgid "password"
4573
+ msgstr ""
4574
+
4575
+ #: addons/sftp.php:430
4576
+ msgid "Failure: Port must be an integer."
4577
+ msgstr ""
4578
+
4579
+ #: addons/fixtime.php:545
4580
+ msgid "starting from next time it is"
4581
+ msgstr ""
4582
+
4583
+ #: addons/multisite.php:174
4584
+ msgid "Multisite Install"
4585
+ msgstr ""
4586
+
4587
+ #: addons/multisite.php:180 udaddons/options.php:225
4588
+ msgid "You do not have sufficient permissions to access this page."
4589
+ msgstr ""
4590
+
4591
+ #: addons/multisite.php:194
4592
+ msgid "You do not have permission to access this page."
4593
+ msgstr ""
4594
+
4595
+ #: addons/migrator.php:356 addons/multisite.php:610
4596
+ msgid "Must-use plugins"
4597
+ msgstr ""
4598
+
4599
+ #: addons/multisite.php:617
4600
+ msgid "Blog uploads"
4601
+ msgstr ""
4602
+
4603
+ #: addons/migrator.php:529
4604
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
4605
+ msgstr ""
4606
+
4607
+ #: addons/migrator.php:529
4608
+ msgid "Search and replace site location in the database (migrate)"
4609
+ msgstr ""
4610
+
4611
+ #: addons/migrator.php:529
4612
+ msgid "(learn more)"
4613
+ msgstr ""
4614
+
4615
+ #: addons/migrator.php:765 addons/migrator.php:1069
4616
+ msgid "Failed: the %s operation was not able to start."
4617
+ msgstr ""
4618
+
4619
+ #: addons/migrator.php:767 addons/migrator.php:1071
4620
+ msgid "Failed: we did not understand the result returned by the %s operation."
4621
+ msgstr ""
4622
+
4623
+ #: addons/migrator.php:839
4624
+ msgid "Database: search and replace site URL"
4625
+ msgstr ""
4626
+
4627
+ #: addons/migrator.php:843
4628
+ msgid "This option was not selected."
4629
+ msgstr ""
4630
+
4631
+ #: addons/migrator.php:877 addons/migrator.php:881 addons/migrator.php:885
4632
+ #: addons/migrator.php:890 addons/migrator.php:894 addons/migrator.php:899
4633
+ msgid "Error: unexpected empty parameter (%s, %s)"
4634
+ msgstr ""
4635
+
4636
+ #: addons/morefiles.php:86
4637
+ msgid "The above files comprise everything in a WordPress installation."
4638
+ msgstr ""
4639
+
4640
+ #: addons/morefiles.php:93
4641
+ msgid "WordPress core (including any additions to your WordPress root directory)"
4642
+ msgstr ""
4643
+
4644
+ #: addons/morefiles.php:179
4645
+ msgid "More Files"
4646
+ msgstr ""
4647
+
4648
+ #: addons/morefiles.php:211 addons/morefiles.php:222
4649
+ msgid "Enter the directory:"
4650
+ msgstr ""
4651
+
4652
+ #: addons/morefiles.php:200
4653
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
4654
+ msgstr ""
4655
+
4656
+ #: addons/morefiles.php:200
4657
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
4658
+ msgstr ""
4659
+
4660
+ #: addons/morefiles.php:202
4661
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
4662
+ msgstr ""
4663
+
4664
+ #: addons/morefiles.php:442
4665
+ msgid "No backup of %s directories: there was nothing found to back up"
4666
+ msgstr ""
4667
+
4668
+ #: addons/sftp.php:38
4669
+ 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."
4670
+ msgstr ""
4671
+
4672
+ #: addons/sftp.php:38
4673
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
4674
+ msgstr ""
4675
+
4676
+ #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
4677
+ msgid "No %s found"
4678
+ msgstr ""
4679
+
4680
+ #: addons/sftp.php:460
4681
+ msgid "Check your file permissions: Could not successfully create and enter:"
4682
+ msgstr ""
4683
+
4684
+ #: methods/ftp.php:320
4685
+ msgid "Needs to already exist"
4686
+ msgstr ""
4687
+
4688
+ #: methods/ftp.php:351
4689
+ msgid "Failure: No server details were given."
4690
+ msgstr ""
4691
+
4692
+ #: methods/ftp.php:369
4693
+ msgid "Failure: we did not successfully log in with those credentials."
4694
+ msgstr ""
4695
+
4696
+ #: methods/ftp.php:378
4697
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4698
+ msgstr ""
4699
+
4700
+ #: methods/ftp.php:381
4701
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4702
+ msgstr ""
4703
+
4704
+ #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4705
+ #: methods/addon-base.php:97 methods/addon-base.php:128
4706
+ #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
4707
+ #: methods/googledrive.php:146 methods/stream-base.php:31
4708
+ #: methods/stream-base.php:145 methods/stream-base.php:180
4709
+ #: methods/stream-base.php:245
4710
+ msgid "No %s settings were found"
4711
+ msgstr ""
4712
+
4713
+ #: methods/stream-base.php:107 methods/stream-base.php:111
4714
+ msgid "Chunk %s: A %s error occurred"
4715
+ msgstr ""
4716
+
4717
+ #: methods/stream-base.php:268
4718
+ msgid "Error opening remote file: Failed to download"
4719
+ msgstr ""
4720
+
4721
+ #: methods/stream-base.php:281
4722
+ msgid "Local write failed: Failed to download"
4723
+ msgstr ""
4724
+
4725
+ #: addons/webdav.php:42
4726
+ msgid "WebDAV URL"
4727
+ msgstr ""
4728
+
4729
+ #: addons/webdav.php:46
4730
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
4731
+ msgstr ""
4732
+
4733
+ #: addons/googlecloud.php:626 addons/googlecloud.php:660
4734
+ #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:3454 admin.php:3489
4735
+ #: admin.php:3498 methods/addon-base.php:284 methods/stream-base.php:297
4736
+ msgid "Failed"
4737
+ msgstr ""
4738
+
4739
+ #: methods/addon-base.php:294 methods/stream-base.php:311
4740
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4741
+ msgstr ""
4742
+
4743
+ #: addons/morefiles.php:63 addons/morefiles.php:442
4744
+ msgid "WordPress Core"
4745
+ msgstr ""
4746
+
4747
+ #: addons/morefiles.php:67
4748
+ msgid "Over-write wp-config.php"
4749
+ msgstr ""
4750
+
4751
+ #: methods/dropbox.php:513 methods/dropbox.php:515
4752
+ msgid "you have authenticated your %s account"
4753
+ msgstr ""
4754
+
4755
+ #: methods/dropbox.php:518
4756
+ msgid "though part of the returned information was not as expected - your mileage may vary"
4757
+ msgstr ""
4758
+
4759
+ #: addons/onedrive.php:584 methods/dropbox.php:522
4760
+ msgid "Your %s account name: %s"
4761
+ msgstr ""
4762
+
4763
+ #: methods/ftp.php:303
4764
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4765
+ msgstr ""
4766
+
4767
+ #: methods/ftp.php:303
4768
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4769
+ msgstr ""
4770
+
4771
+ #: methods/s3.php:681
4772
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4773
+ msgstr ""
4774
+
4775
+ #: methods/s3.php:434 methods/s3.php:608 methods/s3.php:687
4776
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4777
+ msgstr ""
4778
+
4779
+ #: methods/s3.php:746
4780
+ 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."
4781
+ msgstr ""
4782
+
4783
+ #: methods/s3.php:748
4784
+ msgid "If you see errors about SSL certificates, then please go here for help."
4785
+ msgstr ""
4786
+
4787
+ #: methods/s3.php:783
4788
+ msgid "%s access key"
4789
+ msgstr ""
4790
+
4791
+ #: methods/s3.php:787
4792
+ msgid "%s secret key"
4793
+ msgstr ""
4794
+
4795
+ #: methods/s3.php:791
4796
+ msgid "%s location"
4797
+ msgstr ""
4798
+
4799
+ #: methods/s3.php:792
4800
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4801
+ msgstr ""
4802
+
4803
+ #: methods/s3.php:900
4804
+ msgid "API secret"
4805
+ msgstr ""
4806
+
4807
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:922
4808
+ msgid "Failure: No bucket details were given."
4809
+ msgstr ""
4810
+
4811
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:940
4812
+ msgid "Region"
4813
+ msgstr ""
4814
+
4815
+ #: methods/s3.php:946
4816
+ 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)."
4817
+ msgstr ""
4818
+
4819
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4820
+ #: methods/s3.php:970
4821
+ msgid "Failure"
4822
+ msgstr ""
4823
+
4824
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4825
+ #: methods/s3.php:970
4826
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4827
+ msgstr ""
4828
+
4829
+ #: addons/googlecloud.php:689 methods/s3.php:960
4830
+ msgid "We accessed the bucket, and were able to create files within it."
4831
+ msgstr ""
4832
+
4833
+ #: methods/s3.php:963
4834
+ msgid "The communication with %s was encrypted."
4835
+ msgstr ""
4836
+
4837
+ #: methods/s3.php:965
4838
+ msgid "The communication with %s was not encrypted."
4839
+ msgstr ""
4840
+
4841
+ #: methods/dropbox.php:100 methods/dropbox.php:108
4842
+ msgid "You do not appear to be authenticated with Dropbox"
4843
+ msgstr ""
4844
+
4845
+ #: methods/dropbox.php:193 methods/dropbox.php:214 methods/dropbox.php:230
4846
+ msgid "error: failed to upload file to %s (see log file for more)"
4847
+ msgstr ""
4848
+
4849
+ #: methods/dropbox.php:438
4850
+ msgid "Need to use sub-folders?"
4851
+ msgstr ""
4852
+
4853
+ #: methods/dropbox.php:438
4854
+ msgid "Backups are saved in"
4855
+ msgstr ""
4856
+
4857
+ #: methods/dropbox.php:438
4858
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4859
+ msgstr ""
4860
+
4861
+ #: methods/dropbox.php:438
4862
+ msgid "there's an add-on for that."
4863
+ msgstr ""
4864
+
4865
+ #: methods/cloudfiles.php:462
4866
+ msgid "US or UK Cloud"
4867
+ msgstr ""
4868
+
4869
+ #: addons/cloudfiles-enhanced.php:235 methods/cloudfiles-new.php:88
4870
+ #: methods/cloudfiles.php:465
4871
+ msgid "US (default)"
4872
+ msgstr ""
4873
+
4874
+ #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:89
4875
+ #: methods/cloudfiles.php:466
4876
+ msgid "UK"
4877
+ msgstr ""
4878
+
4879
+ #: methods/cloudfiles.php:482
4880
+ msgid "Cloud Files username"
4881
+ msgstr ""
4882
+
4883
+ #: methods/cloudfiles.php:486
4884
+ msgid "Cloud Files API key"
4885
+ msgstr ""
4886
+
4887
+ #: methods/cloudfiles.php:490
4888
+ msgid "Cloud Files container"
4889
+ msgstr ""
4890
+
4891
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
4892
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4893
+ msgstr ""
4894
+
4895
+ #: addons/migrator.php:272 addons/migrator.php:1851 addons/moredatabase.php:70
4896
+ #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:417
4897
+ #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:56 admin.php:536
4898
+ #: methods/addon-base.php:277 methods/cloudfiles-new.php:142
4899
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:504
4900
+ #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
4901
+ #: methods/openstack2.php:142 methods/openstack2.php:147
4902
+ #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:896
4903
+ #: methods/s3.php:900
4904
+ msgid "Failure: No %s was given."
4905
+ msgstr ""
4906
+
4907
+ #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:896
4908
+ msgid "API key"
4909
+ msgstr ""
4910
+
4911
+ #: addons/moredatabase.php:233 addons/sftp.php:361
4912
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4913
+ #: methods/openstack2.php:121
4914
+ msgid "Username"
4915
+ msgstr "ব্যবহারকারী নাম"
4916
+
4917
+ #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4918
+ msgid "Failure: No container details were given."
4919
+ msgstr ""
4920
+
4921
+ #: methods/cloudfiles.php:556
4922
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4923
+ msgstr ""
4924
+
4925
+ #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4926
+ msgid "We accessed the container, and were able to create files within it."
4927
+ msgstr ""
4928
+
4929
+ #: methods/email.php:43
4930
+ msgid "WordPress Backup"
4931
+ msgstr ""
4932
+
4933
+ #: methods/email.php:69
4934
+ msgid "Note:"
4935
+ msgstr ""
4936
+
4937
+ #: methods/s3.php:363
4938
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4939
+ msgstr ""
4940
+
4941
+ #: methods/s3.php:386
4942
+ msgid "%s error: file %s was shortened unexpectedly"
4943
+ msgstr ""
4944
+
4945
+ #: methods/s3.php:396
4946
+ msgid "%s chunk %s: upload failed"
4947
+ msgstr ""
4948
+
4949
+ #: methods/s3.php:412
4950
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
4951
+ msgstr ""
4952
+
4953
+ #: methods/s3.php:416
4954
+ msgid "%s re-assembly error (%s): (see log file for more)"
4955
+ msgstr ""
4956
+
4957
+ #: addons/googlecloud.php:826 methods/googledrive.php:904
4958
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4959
+ msgstr ""
4960
+
4961
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4962
+ msgid "Select 'Web Application' as the application type."
4963
+ msgstr ""
4964
+
4965
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4966
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4967
+ msgstr ""
4968
+
4969
+ #: addons/googlecloud.php:839 addons/onedrive.php:755
4970
+ #: methods/googledrive.php:916
4971
+ msgid "Client ID"
4972
+ msgstr ""
4973
+
4974
+ #: addons/googlecloud.php:842 methods/googledrive.php:917
4975
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4976
+ msgstr ""
4977
+
4978
+ #: addons/googlecloud.php:847 addons/onedrive.php:759
4979
+ #: methods/googledrive.php:920
4980
+ msgid "Client Secret"
4981
+ msgstr ""
4982
+
4983
+ #: addons/googlecloud.php:896 methods/googledrive.php:950
4984
+ msgid "Authenticate with Google"
4985
+ msgstr ""
4986
+
4987
+ #: addons/googlecloud.php:907 methods/googledrive.php:961
4988
+ 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."
4989
+ msgstr ""
4990
+
4991
+ #: addons/cloudfiles-enhanced.php:87 addons/cloudfiles-enhanced.php:124
4992
+ #: addons/cloudfiles-enhanced.php:129 methods/cloudfiles.php:539
4993
+ #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
4994
+ msgid "Cloud Files authentication failed"
4995
+ msgstr ""
4996
+
4997
+ #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
4998
+ #: methods/cloudfiles.php:363
4999
+ msgid "Cloud Files error - failed to create and access the container"
5000
+ msgstr ""
5001
+
5002
+ #: addons/googlecloud.php:161 addons/googlecloud.php:166
5003
+ #: class-updraftplus.php:797 methods/cloudfiles.php:130
5004
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5005
+ msgid "%s Error: Failed to open local file"
5006
+ msgstr ""
5007
+
5008
+ #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5009
+ #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5010
+ #: methods/openstack-base.php:190 methods/s3.php:331 methods/s3.php:343
5011
+ #: methods/s3.php:344
5012
+ msgid "%s Error: Failed to upload"
5013
+ msgstr ""
5014
+
5015
+ #: methods/cloudfiles.php:218
5016
+ msgid "Cloud Files error - failed to upload file"
5017
+ msgstr ""
5018
+
5019
+ #: class-updraftplus.php:880 methods/cloudfiles.php:392
5020
+ #: methods/stream-base.php:261
5021
+ msgid "Error opening local file: Failed to download"
5022
+ msgstr ""
5023
+
5024
+ #: methods/openstack-base.php:319
5025
+ msgid "Error downloading remote file: Failed to download ("
5026
+ msgstr ""
5027
+
5028
+ #: addons/sftp.php:408 admin.php:557 methods/addon-base.php:242
5029
+ #: methods/cloudfiles.php:496 methods/ftp.php:329
5030
+ #: methods/openstack-base.php:440 methods/s3.php:797
5031
+ #: methods/stream-base.php:219
5032
+ msgid "Test %s Settings"
5033
+ msgstr ""
5034
+
5035
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5036
+ 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."
5037
+ msgstr ""
5038
+
5039
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5040
+ #: methods/openstack2.php:94
5041
+ msgid "Also, you should read this important FAQ."
5042
+ msgstr ""
5043
+
5044
+ #: methods/googledrive.php:410
5045
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5046
+ msgstr ""
5047
+
5048
+ #: methods/googledrive.php:381 methods/googledrive.php:427
5049
+ #: methods/googledrive.php:433 methods/googledrive.php:435
5050
+ #: methods/stream-base.php:196
5051
+ msgid "Failed to upload to %s"
5052
+ msgstr ""
5053
+
5054
+ #: addons/googlecloud.php:445 addons/googlecloud.php:446
5055
+ #: addons/googlecloud.php:709 addons/onedrive.php:496
5056
+ #: methods/googledrive.php:455 methods/googledrive.php:456
5057
+ msgid "Account is not authorized."
5058
+ msgstr ""
5059
+
5060
+ #: methods/addon-base.php:230 methods/cloudfiles.php:438
5061
+ #: methods/dropbox.php:420 methods/ftp.php:298 methods/googledrive.php:889
5062
+ #: methods/openstack-base.php:419 methods/s3.php:707
5063
+ #: methods/stream-base.php:212
5064
+ 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."
5065
+ msgstr ""
5066
+
5067
+ #: restorer.php:1734
5068
+ msgid "will restore as:"
5069
+ msgstr ""
5070
+
5071
+ #: addons/migrator.php:1123 restorer.php:1964
5072
+ msgid "the database query being run was:"
5073
+ msgstr ""
5074
+
5075
+ #: restorer.php:1796
5076
+ msgid "Finished: lines processed: %d in %.2f seconds"
5077
+ msgstr ""
5078
+
5079
+ #: restorer.php:2062 restorer.php:2137
5080
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5081
+ msgstr ""
5082
+
5083
+ #: addons/migrator.php:1750 admin.php:3457 admin.php:3491 admin.php:3495
5084
+ #: admin.php:4879 admin.php:4893 restorer.php:2068 restorer.php:2173
5085
+ msgid "OK"
5086
+ msgstr "ঠিক আছে"
5087
+
5088
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5089
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5090
+ msgstr ""
5091
+
5092
+ #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5093
+ #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5094
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5095
+ msgstr ""
5096
+
5097
+ #: methods/viaaddon-base.php:72
5098
+ msgid "%s support is available as an add-on"
5099
+ msgstr ""
5100
+
5101
+ #: methods/viaaddon-base.php:72
5102
+ msgid "follow this link to get it"
5103
+ msgstr "এটি পেতে এই লিঙ্কটি অনুসরণ করুন"
5104
+
5105
+ #: addons/googlecloud.php:382 methods/googledrive.php:297
5106
+ 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."
5107
+ msgstr ""
5108
+
5109
+ #: addons/googlecloud.php:390 methods/googledrive.php:305
5110
+ msgid "Authorization failed"
5111
+ msgstr "অনুমোদন ব্যর্থ"
5112
+
5113
+ #: addons/onedrive.php:577 methods/dropbox.php:535 methods/googledrive.php:332
5114
+ msgid "Your %s quota usage: %s %% used, %s available"
5115
+ msgstr ""
5116
+
5117
+ #: addons/googlecloud.php:579 addons/googlecloud.php:689
5118
+ #: addons/onedrive.php:611 addons/sftp.php:480 methods/addon-base.php:291
5119
+ #: methods/cloudfiles.php:560 methods/googledrive.php:358
5120
+ #: methods/openstack-base.php:392 methods/s3.php:960
5121
+ #: methods/stream-base.php:308
5122
+ msgid "Success"
5123
+ msgstr ""
5124
+
5125
+ #: addons/googlecloud.php:579 addons/onedrive.php:611
5126
+ #: methods/googledrive.php:358
5127
+ msgid "you have authenticated your %s account."
5128
+ msgstr ""
5129
+
5130
+ #: methods/googledrive.php:507
5131
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5132
+ msgstr ""
5133
+
5134
+ #: restorer.php:429
5135
+ msgid "wp-config.php from backup: restoring (as per user's request)"
5136
+ msgstr ""
5137
+
5138
+ #: restorer.php:1330
5139
+ 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."
5140
+ msgstr ""
5141
+
5142
+ #: restorer.php:1353
5143
+ msgid "Failed to find database file"
5144
+ msgstr ""
5145
+
5146
+ #: restorer.php:1374
5147
+ msgid "Failed to open database file"
5148
+ msgstr ""
5149
+
5150
+ #: addons/migrator.php:588 restorer.php:1379
5151
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5152
+ msgstr ""
5153
+
5154
+ #: addons/reporting.php:65 addons/reporting.php:148 backup.php:923
5155
+ #: class-updraftplus.php:3616
5156
+ msgid "Backup of:"
5157
+ msgstr ""
5158
+
5159
+ #: restorer.php:1545 restorer.php:1638 restorer.php:1664
5160
+ msgid "Old table prefix:"
5161
+ msgstr ""
5162
+
5163
+ #: admin.php:4890
5164
+ msgid "Archive is expected to be size:"
5165
+ msgstr ""
5166
+
5167
+ #: admin.php:4898
5168
+ msgid "The backup records do not contain information about the proper size of this file."
5169
+ msgstr ""
5170
+
5171
+ #: admin.php:4996
5172
+ msgid "Error message"
5173
+ msgstr ""
5174
+
5175
+ #: admin.php:4901 admin.php:4902
5176
+ msgid "Could not find one of the files for restoration"
5177
+ msgstr ""
5178
+
5179
+ #: restorer.php:90
5180
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5181
+ msgstr ""
5182
+
5183
+ #: restorer.php:91
5184
+ msgid "Backup file not available."
5185
+ msgstr ""
5186
+
5187
+ #: restorer.php:92
5188
+ msgid "Copying this entity failed."
5189
+ msgstr ""
5190
+
5191
+ #: restorer.php:93
5192
+ msgid "Unpacking backup..."
5193
+ msgstr ""
5194
+
5195
+ #: restorer.php:94
5196
+ msgid "Decrypting database (can take a while)..."
5197
+ msgstr ""
5198
+
5199
+ #: restorer.php:95
5200
+ msgid "Database successfully decrypted."
5201
+ msgstr ""
5202
+
5203
+ #: restorer.php:98
5204
+ 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)..."
5205
+ msgstr ""
5206
+
5207
+ #: restorer.php:99
5208
+ msgid "Cleaning up rubbish..."
5209
+ msgstr ""
5210
+
5211
+ #: restorer.php:101
5212
+ msgid "Could not delete old directory."
5213
+ msgstr ""
5214
+
5215
+ #: restorer.php:104
5216
+ msgid "Failed to delete working directory after restoring."
5217
+ msgstr ""
5218
+
5219
+ #: restorer.php:301
5220
+ msgid "Failed to create a temporary directory"
5221
+ msgstr ""
5222
+
5223
+ #: restorer.php:316
5224
+ msgid "Failed to write out the decrypted database to the filesystem"
5225
+ msgstr ""
5226
+
5227
+ #: restorer.php:424
5228
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5229
+ msgstr ""
5230
+
5231
+ #: admin.php:4012
5232
+ 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."
5233
+ msgstr ""
5234
+
5235
+ #: admin.php:4035
5236
+ msgid "Save Changes"
5237
+ msgstr ""
5238
+
5239
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
5240
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5241
+ msgstr ""
5242
+
5243
+ #: admin.php:4158
5244
+ 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)."
5245
+ msgstr ""
5246
+
5247
+ #: admin.php:4160
5248
+ 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."
5249
+ msgstr ""
5250
+
5251
+ #: admin.php:4163
5252
+ 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."
5253
+ msgstr ""
5254
+
5255
+ #: admin.php:4635
5256
+ msgid "Delete this backup set"
5257
+ msgstr ""
5258
+
5259
+ #: admin.php:4542
5260
+ msgid "Press here to download"
5261
+ msgstr ""
5262
+
5263
+ #: admin.php:4626
5264
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5265
+ msgstr ""
5266
+
5267
+ #: admin.php:4677
5268
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5269
+ msgstr ""
5270
+
5271
+ #: admin.php:4725
5272
+ msgid "UpdraftPlus Restoration: Progress"
5273
+ msgstr ""
5274
+
5275
+ #: admin.php:4771
5276
+ msgid "ABORT: Could not find the information on which entities to restore."
5277
+ msgstr ""
5278
+
5279
+ #: admin.php:4772
5280
+ msgid "If making a request for support, please include this information:"
5281
+ msgstr ""
5282
+
5283
+ #: admin.php:4006
5284
+ msgid "Do not verify SSL certificates"
5285
+ msgstr ""
5286
+
5287
+ #: admin.php:4007
5288
+ 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."
5289
+ msgstr ""
5290
+
5291
+ #: admin.php:4007
5292
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5293
+ msgstr ""
5294
+
5295
+ #: admin.php:4011
5296
+ msgid "Disable SSL entirely where possible"
5297
+ msgstr ""
5298
+
5299
+ #: admin.php:3956
5300
+ msgid "Expert settings"
5301
+ msgstr "বিশেষজ্ঞদের সেটিংস"
5302
+
5303
+ #: admin.php:3957
5304
+ msgid "Show expert settings"
5305
+ msgstr "বিশেষজ্ঞ সেটিংস দেখান"
5306
+
5307
+ #: admin.php:3957
5308
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5309
+ msgstr ""
5310
+
5311
+ #: admin.php:3977
5312
+ msgid "Delete local backup"
5313
+ msgstr "স্থানীয় ব্যাকআপ মুছুন"
5314
+
5315
+ #: admin.php:3982
5316
+ msgid "Backup directory"
5317
+ msgstr "ব্যাকআপ ডিরেক্টরি"
5318
+
5319
+ #: admin.php:3662
5320
+ msgid "Backup directory specified is writable, which is good."
5321
+ msgstr ""
5322
+
5323
+ #: admin.php:3670
5324
+ msgid "Click here to attempt to create the directory and set the permissions"
5325
+ msgstr ""
5326
+
5327
+ #: admin.php:3670
5328
+ msgid "or, to reset this option"
5329
+ msgstr ""
5330
+
5331
+ #: admin.php:3670
5332
+ msgid "click here"
5333
+ msgstr "এখানে ক্লিক করুন"
5334
+
5335
+ #: admin.php:3670
5336
+ 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."
5337
+ msgstr ""
5338
+
5339
+ #: admin.php:4001
5340
+ msgid "Use the server's SSL certificates"
5341
+ msgstr ""
5342
+
5343
+ #: admin.php:4002
5344
+ 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."
5345
+ msgstr ""
5346
+
5347
+ #: admin.php:3929 udaddons/options.php:143
5348
+ msgid "Email"
5349
+ msgstr ""
5350
+
5351
+ #: admin.php:3850
5352
+ msgid "Database encryption phrase"
5353
+ msgstr ""
5354
+
5355
+ #: admin.php:3869
5356
+ msgid "Manually decrypt a database backup file"
5357
+ msgstr ""
5358
+
5359
+ #: admin.php:3782
5360
+ msgid "Choose your remote storage"
5361
+ msgstr ""
5362
+
5363
+ #: addons/reporting.php:212 admin.php:4303
5364
+ msgid "None"
5365
+ msgstr "কোনটিই না"
5366
+
5367
+ #: admin.php:511
5368
+ msgid "Cancel"
5369
+ msgstr "বাতিল"
5370
+
5371
+ #: admin.php:495
5372
+ msgid "Requesting start of backup..."
5373
+ msgstr ""
5374
+
5375
+ #: admin.php:3952
5376
+ msgid "Advanced / Debugging Settings"
5377
+ msgstr ""
5378
+
5379
+ #: admin.php:3967
5380
+ msgid "Debug mode"
5381
+ msgstr ""
5382
+
5383
+ #: admin.php:3840
5384
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5385
+ msgstr ""
5386
+
5387
+ #: admin.php:3653
5388
+ msgid "Daily"
5389
+ msgstr ""
5390
+
5391
+ #: admin.php:3654
5392
+ msgid "Weekly"
5393
+ msgstr "সাপ্তাহিক"
5394
+
5395
+ #: admin.php:3655
5396
+ msgid "Fortnightly"
5397
+ msgstr "পাক্ষিক"
5398
+
5399
+ #: admin.php:3656
5400
+ msgid "Monthly"
5401
+ msgstr "মাসিক"
5402
+
5403
+ #: admin.php:3766
5404
+ msgid "To fix the time at which a backup should take place,"
5405
+ msgstr ""
5406
+
5407
+ #: admin.php:3766
5408
+ msgid "e.g. if your server is busy at day and you want to run overnight"
5409
+ msgstr ""
5410
+
5411
+ #: admin.php:3837
5412
+ msgid "Include in files backup"
5413
+ msgstr ""
5414
+
5415
+ #: admin.php:4095
5416
+ msgid "Any other directories found inside wp-content"
5417
+ msgstr ""
5418
+
5419
+ #: addons/morefiles.php:260 admin.php:4104
5420
+ msgid "Exclude these:"
5421
+ msgstr ""
5422
+
5423
+ #: admin.php:3155
5424
+ msgid "Debug Database Backup"
5425
+ msgstr ""
5426
+
5427
+ #: admin.php:3155
5428
+ 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.."
5429
+ msgstr ""
5430
+
5431
+ #: admin.php:3165
5432
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5433
+ msgstr ""
5434
+
5435
+ #: admin.php:3392
5436
+ msgid "show log"
5437
+ msgstr "লগ দেখান"
5438
+
5439
+ #: addons/migrator.php:2243 admin.php:512 admin.php:2933 admin.php:3451
5440
+ #: admin.php:3484 admin.php:4635
5441
+ msgid "Delete"
5442
+ msgstr "মুছুন"
5443
+
5444
+ #: admin.php:3535
5445
+ msgid "The request to the filesystem to create the directory failed."
5446
+ msgstr ""
5447
+
5448
+ #: admin.php:3549
5449
+ 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"
5450
+ msgstr ""
5451
+
5452
+ #: admin.php:3554
5453
+ msgid "The folder exists, but your webserver does not have permission to write to it."
5454
+ msgstr ""
5455
+
5456
+ #: admin.php:518 admin.php:3636
5457
+ msgid "Download log file"
5458
+ msgstr "লগ ফাইল ডাউনলোড করুন"
5459
+
5460
+ #: admin.php:2509
5461
+ msgid "Multisite"
5462
+ msgstr "মাল্টিসাইট"
5463
+
5464
+ #: admin.php:2513
5465
+ msgid "Do you need WordPress Multisite support?"
5466
+ msgstr "আপনার কি ওয়ার্ডপ্রস মাল্টিসাইট সাপোর্ট লাগবে?"
5467
+
5468
+ #: admin.php:2513
5469
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5470
+ msgstr ""
5471
+
5472
+ #: admin.php:3070
5473
+ msgid "Web server:"
5474
+ msgstr "ওয়েব সার্ভার:"
5475
+
5476
+ #: admin.php:3079
5477
+ msgid "Peak memory usage"
5478
+ msgstr ""
5479
+
5480
+ #: admin.php:3080
5481
+ msgid "Current memory usage"
5482
+ msgstr "বর্তমান মেমরির ব্যবহার"
5483
+
5484
+ #: admin.php:3082 admin.php:3083 admin.php:3090 admin.php:3091
5485
+ msgid "%s version:"
5486
+ msgstr "%s সংস্করণ:"
5487
+
5488
+ #: admin.php:3092 admin.php:3095 admin.php:3098 admin.php:3102
5489
+ msgid "Yes"
5490
+ msgstr "হ্যাঁ"
5491
+
5492
+ #: admin.php:3092 admin.php:3098 admin.php:3102
5493
+ msgid "No"
5494
+ msgstr "না"
5495
+
5496
+ #: admin.php:3127
5497
+ msgid "Total (uncompressed) on-disk data:"
5498
+ msgstr ""
5499
+
5500
+ #: admin.php:3128
5501
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5502
+ msgstr ""
5503
+
5504
+ #: admin.php:3136
5505
+ msgid "count"
5506
+ msgstr ""
5507
+
5508
+ #: admin.php:3150
5509
+ msgid "Debug Full Backup"
5510
+ msgstr ""
5511
+
5512
+ #: admin.php:3150
5513
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5514
+ msgstr ""
5515
+
5516
+ #: admin.php:2891
5517
+ msgid "UpdraftPlus - Upload backup files"
5518
+ msgstr ""
5519
+
5520
+ #: admin.php:478 admin.php:2875
5521
+ msgid "calculating..."
5522
+ msgstr ""
5523
+
5524
+ #: addons/cloudfiles-enhanced.php:90 addons/migrator.php:751
5525
+ #: addons/migrator.php:972 addons/migrator.php:1053 addons/migrator.php:1123
5526
+ #: addons/migrator.php:1348 addons/migrator.php:1689 addons/migrator.php:1716
5527
+ #: addons/migrator.php:1722 addons/migrator.php:1784 addons/migrator.php:1820
5528
+ #: addons/migrator.php:1859 addons/migrator.php:1869 addons/migrator.php:1874
5529
+ #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
5530
+ #: addons/s3-enhanced.php:127 addons/sftp.php:736 admin.php:487 admin.php:4895
5531
+ #: admin.php:4925 methods/remotesend.php:76 methods/remotesend.php:234
5532
+ #: methods/updraftvault.php:418 restorer.php:1292
5533
+ msgid "Error:"
5534
+ msgstr ""
5535
+
5536
+ #: admin.php:490
5537
+ msgid "You should:"
5538
+ msgstr ""
5539
+
5540
+ #: admin.php:494
5541
+ msgid "Download error: the server sent us a response which we did not understand."
5542
+ msgstr ""
5543
+
5544
+ #: admin.php:2943
5545
+ msgid "Delete backup set"
5546
+ msgstr ""
5547
+
5548
+ #: admin.php:2964
5549
+ msgid "Restore backup"
5550
+ msgstr ""
5551
+
5552
+ #: admin.php:2965
5553
+ msgid "Restore backup from"
5554
+ msgstr ""
5555
+
5556
+ #: admin.php:2977
5557
+ 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)."
5558
+ msgstr ""
5559
+
5560
+ #: admin.php:2977
5561
+ msgid "Choose the components to restore"
5562
+ msgstr ""
5563
+
5564
+ #: admin.php:2989
5565
+ msgid "Your web server has PHP's so-called safe_mode active."
5566
+ msgstr ""
5567
+
5568
+ #: admin.php:3002
5569
+ msgid "The following entity cannot be restored automatically: \"%s\"."
5570
+ msgstr ""
5571
+
5572
+ #: admin.php:3002
5573
+ msgid "You will need to restore it manually."
5574
+ msgstr ""
5575
+
5576
+ #: addons/morefiles.php:63 admin.php:3009
5577
+ msgid "%s restoration options:"
5578
+ msgstr ""
5579
+
5580
+ #: admin.php:3017
5581
+ 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"
5582
+ msgstr ""
5583
+
5584
+ #: admin.php:3028
5585
+ msgid "Do read this helpful article of useful things to know before restoring."
5586
+ msgstr ""
5587
+
5588
+ #: admin.php:2498
5589
+ msgid "Perform a one-time backup"
5590
+ msgstr ""
5591
+
5592
+ #: admin.php:330 admin.php:510 admin.php:2443
5593
+ msgid "Backup Now"
5594
+ msgstr ""
5595
+
5596
+ #: addons/migrator.php:221 admin.php:517 admin.php:2446 admin.php:4626
5597
+ msgid "Restore"
5598
+ msgstr "পুনঃস্থাপন"
5599
+
5600
+ #: addons/autobackup.php:289 addons/autobackup.php:383 admin.php:2798
5601
+ #: admin.php:2803
5602
+ msgid "Last log message"
5603
+ msgstr ""
5604
+
5605
+ #: admin.php:2799 admin.php:2805 central/bootstrap.php:159
5606
+ msgid "(Nothing yet logged)"
5607
+ msgstr ""
5608
+
5609
+ #: admin.php:2840
5610
+ msgid "Download most recently modified log file"
5611
+ msgstr ""
5612
+
5613
+ #: admin.php:2878
5614
+ msgid "More tasks:"
5615
+ msgstr "আরও টাস্ক:"
5616
+
5617
+ #: admin.php:2884
5618
+ msgid "Opera web browser"
5619
+ msgstr "অপেরা ওযেব ব্রাউজার"
5620
+
5621
+ #: admin.php:2884
5622
+ msgid "If you are using this, then turn Turbo/Road mode off."
5623
+ msgstr ""
5624
+
5625
+ #: addons/google-enhanced.php:72 methods/googledrive.php:146
5626
+ #: methods/googledrive.php:358 methods/googledrive.php:381
5627
+ #: methods/googledrive.php:410 methods/googledrive.php:417
5628
+ #: methods/googledrive.php:427 methods/googledrive.php:433
5629
+ #: methods/googledrive.php:435 methods/googledrive.php:888
5630
+ #: methods/googledrive.php:900 methods/googledrive.php:916
5631
+ #: methods/googledrive.php:920 methods/googledrive.php:931
5632
+ #: methods/googledrive.php:941
5633
+ msgid "Google Drive"
5634
+ msgstr "গুগোল ড্রাইভ"
5635
+
5636
+ #: admin.php:2875
5637
+ msgid "Web-server disk space in use by UpdraftPlus"
5638
+ msgstr ""
5639
+
5640
+ #: admin.php:2875
5641
+ msgid "refresh"
5642
+ msgstr "রিফ্রেশ"
5643
+
5644
+ #: admin.php:2173
5645
+ msgid "Lead developer's homepage"
5646
+ msgstr "প্রধান ডেভেলপার এর হোমপেজে"
5647
+
5648
+ #: admin.php:2174
5649
+ msgid "Version"
5650
+ msgstr ""
5651
+
5652
+ #: admin.php:2351
5653
+ msgid "Your backup has been restored."
5654
+ msgstr ""
5655
+
5656
+ #: admin.php:2370
5657
+ msgid "Current limit is:"
5658
+ msgstr ""
5659
+
5660
+ #: admin.php:497 admin.php:3182
5661
+ msgid "Delete Old Directories"
5662
+ msgstr ""
5663
+
5664
+ #: admin.php:2428
5665
+ msgid "JavaScript warning"
5666
+ msgstr ""
5667
+
5668
+ #: admin.php:2429
5669
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5670
+ msgstr ""
5671
+
5672
+ #: admin.php:125 admin.php:146 admin.php:153
5673
+ msgid "Nothing currently scheduled"
5674
+ msgstr ""
5675
+
5676
+ #: admin.php:135
5677
+ msgid "At the same time as the files backup"
5678
+ msgstr ""
5679
+
5680
+ #: admin.php:2464
5681
+ msgid "Next scheduled backups"
5682
+ msgstr ""
5683
+
5684
+ #: admin.php:155
5685
+ msgid "Files"
5686
+ msgstr ""
5687
+
5688
+ #: addons/migrator.php:1754 addons/moredatabase.php:235
5689
+ #: addons/reporting.php:227 admin.php:159 admin.php:1288 admin.php:3007
5690
+ #: admin.php:3009 admin.php:4278 admin.php:4470 admin.php:4979
5691
+ msgid "Database"
5692
+ msgstr ""
5693
+
5694
+ #: admin.php:785
5695
+ msgid "Your website is hosted using the %s web server."
5696
+ msgstr ""
5697
+
5698
+ #: admin.php:785
5699
+ msgid "Please consult this FAQ if you have problems backing up."
5700
+ msgstr ""
5701
+
5702
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:820
5703
+ #: admin.php:824
5704
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5705
+ msgstr ""
5706
+
5707
+ #: admin.php:560
5708
+ msgid "Nothing yet logged"
5709
+ msgstr ""
5710
+
5711
+ #: admin.php:1802
5712
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
5713
+ msgstr ""
5714
+
5715
+ #: admin.php:1718
5716
+ msgid "Job deleted"
5717
+ msgstr ""
5718
+
5719
+ #: admin.php:1726
5720
+ msgid "Could not find that job - perhaps it has already finished?"
5721
+ msgstr ""
5722
+
5723
+ #: admin.php:488 admin.php:1698 admin.php:4877 class-updraftplus.php:880
5724
+ #: methods/addon-base.php:75 methods/addon-base.php:80
5725
+ #: methods/addon-base.php:194 methods/addon-base.php:214
5726
+ #: methods/stream-base.php:196 restorer.php:2064 restorer.php:2089
5727
+ #: restorer.php:2170 updraftplus.php:147
5728
+ msgid "Error"
5729
+ msgstr ""
5730
+
5731
+ #: admin.php:1907
5732
+ msgid "Download failed"
5733
+ msgstr ""
5734
+
5735
+ #: admin.php:489 admin.php:1926
5736
+ msgid "File ready."
5737
+ msgstr "ফাইল তৈরি।"
5738
+
5739
+ #: admin.php:1936
5740
+ msgid "Download in progress"
5741
+ msgstr "ডাউনলোড হচ্ছে"
5742
+
5743
+ #: admin.php:1939
5744
+ msgid "No local copy present."
5745
+ msgstr ""
5746
+
5747
+ #: admin.php:2058
5748
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5749
+ msgstr ""
5750
+
5751
+ #: admin.php:2148
5752
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5753
+ msgstr ""
5754
+
5755
+ #: admin.php:2233
5756
+ msgid "Restore successful!"
5757
+ msgstr ""
5758
+
5759
+ #: admin.php:2243 admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5760
+ #: admin.php:4343
5761
+ msgid "Actions"
5762
+ msgstr ""
5763
+
5764
+ #: addons/migrator.php:273 addons/migrator.php:285 admin.php:2243
5765
+ #: admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5766
+ msgid "Return to UpdraftPlus Configuration"
5767
+ msgstr ""
5768
+
5769
+ #: admin.php:3418
5770
+ msgid "Remove old directories"
5771
+ msgstr ""
5772
+
5773
+ #: admin.php:3421
5774
+ msgid "Old directories successfully removed."
5775
+ msgstr ""
5776
+
5777
+ #: admin.php:3423
5778
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
5779
+ msgstr ""
5780
+
5781
+ #: admin.php:2294
5782
+ msgid "Backup directory could not be created"
5783
+ msgstr ""
5784
+
5785
+ #: admin.php:2301
5786
+ msgid "Backup directory successfully created."
5787
+ msgstr ""
5788
+
5789
+ #: admin.php:2324
5790
+ msgid "Your settings have been wiped."
5791
+ msgstr ""
5792
+
5793
+ #: class-updraftplus.php:3485
5794
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5795
+ msgstr ""
5796
+
5797
+ #: class-updraftplus.php:3492
5798
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
5799
+ msgstr ""
5800
+
5801
+ #: class-updraftplus.php:3502
5802
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5803
+ msgstr ""
5804
+
5805
+ #: backup.php:1955
5806
+ msgid "Infinite recursion: consult your log for more information"
5807
+ msgstr ""
5808
+
5809
+ #: backup.php:229
5810
+ msgid "Could not create %s zip. Consult the log file for more information."
5811
+ msgstr ""
5812
+
5813
+ #: admin.php:667
5814
+ msgid "Allowed Files"
5815
+ msgstr ""
5816
+
5817
+ #: admin.php:346 admin.php:709 admin.php:2406
5818
+ msgid "Settings"
5819
+ msgstr "সেটিংস"
5820
+
5821
+ #: admin.php:713
5822
+ msgid "Add-Ons / Pro Support"
5823
+ msgstr "অ্যাড অন / প্রো সাপোর্ট"
5824
+
5825
+ #: admin.php:769 admin.php:773 admin.php:777 admin.php:781 admin.php:785
5826
+ #: admin.php:794 admin.php:2870 admin.php:4151 admin.php:4158 admin.php:4160
5827
+ #: methods/cloudfiles.php:448 methods/ftp.php:284
5828
+ #: methods/openstack-base.php:429 methods/s3.php:731 methods/s3.php:735
5829
+ #: methods/updraftvault.php:244 udaddons/updraftplus-addons.php:208
5830
+ msgid "Warning"
5831
+ msgstr "সতর্কতা"
5832
+
5833
+ #: admin.php:777
5834
+ 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."
5835
+ msgstr ""
5836
+
5837
+ #: admin.php:781
5838
+ 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."
5839
+ msgstr ""
5840
+
5841
+ #: backup.php:924
5842
+ msgid "WordPress backup is complete"
5843
+ msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
5844
+
5845
+ #: admin.php:1976 backup.php:1120 restorer.php:168
5846
+ msgid "Backup directory (%s) is not writable, or does not exist."
5847
+ msgstr ""
5848
+
5849
+ #: class-updraftplus.php:2916
5850
+ msgid "Could not read the directory"
5851
+ msgstr "ডিরেক্টরিটি পড়া যায়নি"
5852
+
5853
+ #: class-updraftplus.php:2939
5854
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
5855
+ msgstr ""
5856
+
5857
+ #: backup.php:1854
5858
+ msgid "Could not open the backup file for writing"
5859
+ msgstr ""
5860
+
5861
+ #: class-updraftplus.php:3287 class-updraftplus.php:3541 restorer.php:309
5862
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5863
+ msgstr ""
5864
+
5865
+ #: class-updraftplus.php:3298 class-updraftplus.php:3558 restorer.php:319
5866
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
5867
+ msgstr ""
5868
+
5869
+ #: class-updraftplus.php:3298
5870
+ msgid "The decryption key used:"
5871
+ msgstr ""
5872
+
5873
+ #: addons/azure.php:215 class-updraftplus.php:3387 methods/googledrive.php:823
5874
+ msgid "File not found"
5875
+ msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
5876
+
5877
+ #: class-updraftplus.php:3477
5878
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5879
+ msgstr ""
5880
+
5881
+ #: class-updraftplus.php:3485
5882
+ msgid "Like UpdraftPlus and can spare one minute?"
5883
+ msgstr ""
5884
+
5885
+ #: class-updraftplus.php:1293
5886
+ msgid "Themes"
5887
+ msgstr "থিমসমূহ"
5888
+
5889
+ #: addons/multisite.php:452 class-updraftplus.php:1294
5890
+ msgid "Uploads"
5891
+ msgstr "আপলোডসমূহ"
5892
+
5893
+ #: class-updraftplus.php:1309
5894
+ msgid "Others"
5895
+ msgstr "অন্যান্য"
5896
+
5897
+ #: class-updraftplus.php:1910
5898
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5899
+ msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
5900
+
5901
+ #: addons/moredatabase.php:322
5902
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
5903
+ msgstr ""
5904
+
5905
+ #: class-updraftplus.php:2474
5906
+ msgid "The backup apparently succeeded and is now complete"
5907
+ msgstr ""
5908
+
5909
+ #: class-updraftplus.php:2489
5910
+ msgid "The backup attempt has finished, apparently unsuccessfully"
5911
+ msgstr ""
5912
+
5913
+ #: addons/multisite.php:66 addons/multisite.php:647 options.php:41
5914
+ msgid "UpdraftPlus Backups"
5915
+ msgstr "UpdraftPlus ব্যাকআপসমূহ"
5916
+
5917
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:816
5918
+ #: admin.php:820 admin.php:824 class-updraftplus.php:361
5919
+ #: class-updraftplus.php:396 class-updraftplus.php:401
5920
+ #: class-updraftplus.php:406
5921
+ msgid "UpdraftPlus notice:"
5922
+ msgstr "UpdraftPlus নোটিশ:"
5923
+
5924
+ #: admin.php:1861 admin.php:1865 class-updraftplus.php:396
5925
+ msgid "The log file could not be read."
5926
+ msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
5927
+
5928
+ #: class-updraftplus.php:401
5929
+ msgid "No log files were found."
5930
+ msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
5931
+
5932
+ #: class-updraftplus.php:1292
5933
+ msgid "Plugins"
5934
+ msgstr "প্লাগইন"
languages/updraftplus-ca.mo CHANGED
Binary file
languages/updraftplus-ca.po CHANGED
@@ -0,0 +1,5934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Catalan
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-09-08 16:59:11+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/2.0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
+
13
+ #: methods/s3.php:87
14
+ msgid "No settings were found - please go to the Settings tab and check your settings"
15
+ msgstr ""
16
+
17
+ #: methods/s3.php:949
18
+ msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
19
+ msgstr ""
20
+
21
+ #: udaddons/updraftplus-addons.php:723
22
+ msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
23
+ msgstr ""
24
+
25
+ #: admin.php:597
26
+ msgid "UpdraftPlus Premium can automatically take a backup of your plugins or themes and database before you update. <a href=\"https://updraftplus.com/shop/autobackup/\" target=\"_blank\">Be safe every time, without needing to remember - follow this link to learn more</a>"
27
+ msgstr ""
28
+
29
+ #: admin.php:598
30
+ msgid "Just this add-on"
31
+ msgstr ""
32
+
33
+ #: admin.php:599
34
+ msgid "Full Premium plugin"
35
+ msgstr ""
36
+
37
+ #: admin.php:3793
38
+ msgid "Backup using %s?"
39
+ msgstr ""
40
+
41
+ #: addons/s3-enhanced.php:54
42
+ msgid "Standard (infrequent access)"
43
+ msgstr ""
44
+
45
+ #: addons/s3-enhanced.php:55
46
+ msgid "Reduced redundancy"
47
+ msgstr ""
48
+
49
+ #: addons/s3-enhanced.php:328
50
+ msgid "Asia Pacific (Mumbai)"
51
+ msgstr ""
52
+
53
+ #: admin.php:2174
54
+ msgid "FAQs"
55
+ msgstr ""
56
+
57
+ #: udaddons/plugin-updates/github-checker.php:120
58
+ msgid "There is no changelog available."
59
+ msgstr ""
60
+
61
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
62
+ msgid "Check for updates"
63
+ msgstr ""
64
+
65
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
66
+ msgid "This plugin is up to date."
67
+ msgstr ""
68
+
69
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
70
+ msgid "A new version of this plugin is available."
71
+ msgstr ""
72
+
73
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
74
+ msgid "Unknown update checker status \"%s\""
75
+ msgstr ""
76
+
77
+ #: backup.php:1986
78
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
79
+ msgstr ""
80
+
81
+ #: backup.php:2002
82
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
83
+ msgstr ""
84
+
85
+ #: central/bootstrap.php:414
86
+ msgid "Public key was sent to:"
87
+ msgstr ""
88
+
89
+ #: central/bootstrap.php:419
90
+ msgid "Key size: %d bits"
91
+ msgstr ""
92
+
93
+ #: central/bootstrap.php:434
94
+ msgid "Dashboard at"
95
+ msgstr ""
96
+
97
+ #: central/bootstrap.php:434
98
+ msgid "Use the alternative method for making a connection with the dashboard."
99
+ msgstr ""
100
+
101
+ #: central/bootstrap.php:434
102
+ msgid "More information..."
103
+ msgstr ""
104
+
105
+ #: central/bootstrap.php:434
106
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
107
+ msgstr ""
108
+
109
+ #: addons/migrator.php:2197
110
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
111
+ msgstr ""
112
+
113
+ #: addons/migrator.php:2198
114
+ msgid "Enter your chosen name"
115
+ msgstr ""
116
+
117
+ #: addons/migrator.php:2200 central/bootstrap.php:436
118
+ msgid "Encryption key size:"
119
+ msgstr ""
120
+
121
+ #: addons/migrator.php:2202 addons/migrator.php:2203 addons/migrator.php:2205
122
+ #: central/bootstrap.php:437 central/bootstrap.php:438
123
+ #: central/bootstrap.php:440
124
+ msgid "%s bits"
125
+ msgstr ""
126
+
127
+ #: addons/migrator.php:2202 central/bootstrap.php:437
128
+ msgid "easy to break, fastest"
129
+ msgstr ""
130
+
131
+ #: addons/migrator.php:2203 central/bootstrap.php:438
132
+ msgid "faster (possibility for slow PHP installs)"
133
+ msgstr ""
134
+
135
+ #: addons/migrator.php:2204 central/bootstrap.php:439
136
+ msgid "%s bytes"
137
+ msgstr ""
138
+
139
+ #: addons/migrator.php:2204 central/bootstrap.php:439
140
+ msgid "recommended"
141
+ msgstr ""
142
+
143
+ #: addons/migrator.php:2205 central/bootstrap.php:440
144
+ msgid "slower, strongest"
145
+ msgstr ""
146
+
147
+ #: addons/migrator.php:2208
148
+ msgid "Create key"
149
+ msgstr ""
150
+
151
+ #: central/bootstrap.php:434
152
+ msgid "i.e. you have an account there"
153
+ msgstr ""
154
+
155
+ #: central/bootstrap.php:434
156
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
157
+ msgstr ""
158
+
159
+ #: class-updraftplus.php:1253
160
+ msgid "Size: %s MB"
161
+ msgstr ""
162
+
163
+ #: methods/email.php:28
164
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
165
+ msgstr ""
166
+
167
+ #: methods/email.php:77
168
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
169
+ msgstr ""
170
+
171
+ #: methods/ftp.php:355
172
+ msgid "login"
173
+ msgstr ""
174
+
175
+ #: methods/ftp.php:383
176
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
177
+ msgstr ""
178
+
179
+ #: methods/googledrive.php:417
180
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
181
+ msgstr ""
182
+
183
+ #: admin.php:2465
184
+ msgid "Now"
185
+ msgstr ""
186
+
187
+ #: admin.php:2616
188
+ msgid "Free 1GB for UpdraftPlus Vault"
189
+ msgstr ""
190
+
191
+ #: admin.php:3973
192
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s 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)."
193
+ msgstr ""
194
+
195
+ #: class-updraftplus.php:3628 restorer.php:926
196
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
197
+ msgstr ""
198
+
199
+ #: admin.php:3782
200
+ msgid "(tap on an icon to select or unselect)"
201
+ msgstr ""
202
+
203
+ #: backup.php:834 class-updraftplus.php:2468
204
+ msgid "The backup was aborted by the user"
205
+ msgstr ""
206
+
207
+ #: central/bootstrap.php:45
208
+ msgid "UpdraftCentral Connection"
209
+ msgstr ""
210
+
211
+ #: central/bootstrap.php:48
212
+ msgid "An UpdraftCentral connection has been made successfully."
213
+ msgstr ""
214
+
215
+ #: central/bootstrap.php:50
216
+ msgid "A new UpdraftCentral connection has not been made."
217
+ msgstr ""
218
+
219
+ #: central/bootstrap.php:53
220
+ msgid "The key referred to was unknown."
221
+ msgstr ""
222
+
223
+ #: central/bootstrap.php:59
224
+ msgid "You are not logged into this WordPress site in your web browser."
225
+ msgstr ""
226
+
227
+ #: central/bootstrap.php:59
228
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
229
+ msgstr ""
230
+
231
+ #: central/bootstrap.php:66
232
+ msgid "You must visit this link in the same browser and login session as you created the key in."
233
+ msgstr ""
234
+
235
+ #: central/bootstrap.php:70
236
+ msgid "This connection appears to already have been made."
237
+ msgstr ""
238
+
239
+ #: central/bootstrap.php:78
240
+ msgid "Close..."
241
+ msgstr ""
242
+
243
+ #: central/bootstrap.php:191
244
+ msgid "An invalid URL was entered"
245
+ msgstr ""
246
+
247
+ #: central/bootstrap.php:308 central/bootstrap.php:319
248
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
249
+ msgstr ""
250
+
251
+ #: central/bootstrap.php:376
252
+ msgid "Key description"
253
+ msgstr ""
254
+
255
+ #: central/bootstrap.php:376
256
+ msgid "Details"
257
+ msgstr ""
258
+
259
+ #: central/bootstrap.php:382
260
+ msgid "No keys have yet been created."
261
+ msgstr ""
262
+
263
+ #: central/bootstrap.php:414
264
+ msgid "Access this site as user:"
265
+ msgstr ""
266
+
267
+ #: central/bootstrap.php:417
268
+ msgid "Created:"
269
+ msgstr ""
270
+
271
+ #: central/bootstrap.php:424
272
+ msgid "Delete..."
273
+ msgstr ""
274
+
275
+ #: central/bootstrap.php:430
276
+ msgid "Create new key"
277
+ msgstr ""
278
+
279
+ #: central/bootstrap.php:432
280
+ msgid "Description"
281
+ msgstr ""
282
+
283
+ #: central/bootstrap.php:432
284
+ msgid "Enter any description"
285
+ msgstr ""
286
+
287
+ #: central/bootstrap.php:434
288
+ msgid "URL of mothership"
289
+ msgstr ""
290
+
291
+ #: central/bootstrap.php:447
292
+ msgid "View recent UpdraftCentral log events"
293
+ msgstr ""
294
+
295
+ #: central/bootstrap.php:447
296
+ msgid "fetch..."
297
+ msgstr ""
298
+
299
+ #: central/bootstrap.php:458
300
+ msgid "UpdraftCentral (Remote Control)"
301
+ msgstr ""
302
+
303
+ #: class-updraftplus.php:361 class-updraftplus.php:406
304
+ msgid "The given file was not found, or could not be read."
305
+ msgstr ""
306
+
307
+ #: methods/updraftvault.php:219
308
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
309
+ msgstr ""
310
+
311
+ #: methods/updraftvault.php:274 methods/updraftvault.php:280
312
+ #: methods/updraftvault.php:286
313
+ msgid "or (annual discount)"
314
+ msgstr ""
315
+
316
+ #: methods/updraftvault.php:275 methods/updraftvault.php:281
317
+ #: methods/updraftvault.php:287
318
+ msgid "%s per year"
319
+ msgstr ""
320
+
321
+ #: addons/copycom.php:43 addons/copycom.php:81
322
+ msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
323
+ msgstr ""
324
+
325
+ #: addons/s3-enhanced.php:325
326
+ msgid "Asia Pacific (Seoul)"
327
+ msgstr ""
328
+
329
+ #: admin.php:477
330
+ msgid "Fetching..."
331
+ msgstr ""
332
+
333
+ #: admin.php:485
334
+ msgid "Error: the server sent us a response which we did not understand."
335
+ msgstr ""
336
+
337
+ #: admin.php:521
338
+ msgid "Saving..."
339
+ msgstr ""
340
+
341
+ #: admin.php:538
342
+ msgid "Please enter a valid URL"
343
+ msgstr ""
344
+
345
+ #: admin.php:539
346
+ msgid "We requested to delete the file, but could not understand the server's response"
347
+ msgstr ""
348
+
349
+ #: admin.php:545
350
+ msgid "You should save your changes to ensure that they are used for making your backup."
351
+ msgstr ""
352
+
353
+ #: admin.php:2611
354
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
355
+ msgstr ""
356
+
357
+ #: admin.php:2875
358
+ msgid "calculate"
359
+ msgstr ""
360
+
361
+ #: admin.php:2946
362
+ msgid "this backup set"
363
+ msgstr ""
364
+
365
+ #: admin.php:2949
366
+ msgid "these backup sets"
367
+ msgstr ""
368
+
369
+ #: admin.php:3115
370
+ msgid "reset"
371
+ msgstr ""
372
+
373
+ #: admin.php:3161 admin.php:3165
374
+ msgid "Wipe settings"
375
+ msgstr ""
376
+
377
+ #: admin.php:3232
378
+ msgid "The backup has finished running"
379
+ msgstr ""
380
+
381
+ #: admin.php:3394
382
+ msgid "stop"
383
+ msgstr ""
384
+
385
+ #: admin.php:4308
386
+ msgid "Total backup size:"
387
+ msgstr ""
388
+
389
+ #: admin.php:5226
390
+ msgid "Your settings have been saved."
391
+ msgstr ""
392
+
393
+ #: addons/onedrive.php:50
394
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
395
+ msgstr ""
396
+
397
+ #: backup.php:385
398
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
399
+ msgstr ""
400
+
401
+ #: restorer.php:1538
402
+ msgid "Uploads URL:"
403
+ msgstr ""
404
+
405
+ #: addons/multisite.php:374 addons/multisite.php:384
406
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
407
+ msgstr ""
408
+
409
+ #: addons/multisite.php:525
410
+ msgid "Which site to restore"
411
+ msgstr ""
412
+
413
+ #: addons/multisite.php:529
414
+ msgid "All sites"
415
+ msgstr ""
416
+
417
+ #: addons/multisite.php:534
418
+ msgid "may include some site-wide data"
419
+ msgstr ""
420
+
421
+ #: addons/multisite.php:543
422
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
423
+ msgstr ""
424
+
425
+ #: addons/multisite.php:543
426
+ msgid "Read more..."
427
+ msgstr ""
428
+
429
+ #: admin.php:556
430
+ msgid "Please fill in the required information."
431
+ msgstr ""
432
+
433
+ #: admin.php:2739
434
+ msgid "Dismiss"
435
+ msgstr ""
436
+
437
+ #: class-updraftplus.php:3675
438
+ msgid "It will be imported as a new site."
439
+ msgstr ""
440
+
441
+ #: class-updraftplus.php:3675
442
+ msgid "Please read this link for important information on this process."
443
+ msgstr ""
444
+
445
+ #: class-updraftplus.php:3679 restorer.php:1558
446
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
447
+ msgstr ""
448
+
449
+ #: restorer.php:1899
450
+ msgid "Skipping table %s: this table will not be restored"
451
+ msgstr ""
452
+
453
+ #: addons/migrator.php:350 addons/migrator.php:353 addons/migrator.php:356
454
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
455
+ msgstr ""
456
+
457
+ #: addons/migrator.php:350
458
+ msgid "WordPress core"
459
+ msgstr ""
460
+
461
+ #: addons/migrator.php:353
462
+ msgid "other content from wp-content"
463
+ msgstr ""
464
+
465
+ #: addons/migrator.php:362 addons/migrator.php:364
466
+ msgid "Importing a single site into a multisite install"
467
+ msgstr ""
468
+
469
+ #: addons/migrator.php:364
470
+ msgid "This feature is not compatible with %s"
471
+ msgstr ""
472
+
473
+ #: addons/migrator.php:384 addons/migrator.php:386
474
+ msgid "You must use lower-case letters or numbers for the site path, only."
475
+ msgstr ""
476
+
477
+ #: addons/migrator.php:394
478
+ msgid "Attribute imported content to user"
479
+ msgstr ""
480
+
481
+ #: addons/migrator.php:435
482
+ msgid "Required information for restoring this backup was not given (%s)"
483
+ msgstr ""
484
+
485
+ #: addons/migrator.php:492 addons/migrator.php:493
486
+ msgid "Error when creating new site at your chosen address:"
487
+ msgstr ""
488
+
489
+ #: addons/migrator.php:518
490
+ msgid "<strong>ERROR</strong>: problem creating site entry."
491
+ msgstr ""
492
+
493
+ #: admin.php:3113
494
+ msgid "Call WordPress action:"
495
+ msgstr ""
496
+
497
+ #: admin.php:2763
498
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
499
+ msgstr ""
500
+
501
+ #: admin.php:354 admin.php:2407
502
+ msgid "Advanced Tools"
503
+ msgstr ""
504
+
505
+ #: admin.php:362
506
+ msgid "Extensions"
507
+ msgstr ""
508
+
509
+ #: admin.php:471
510
+ msgid "You have chosen to backup files, but no file entities have been selected"
511
+ msgstr ""
512
+
513
+ #: admin.php:544
514
+ msgctxt "(verb)"
515
+ msgid "Download"
516
+ msgstr ""
517
+
518
+ #: admin.php:2204 admin.php:2213
519
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
520
+ msgstr ""
521
+
522
+ #: admin.php:2408
523
+ msgid "Premium / Extensions"
524
+ msgstr ""
525
+
526
+ #: admin.php:2533
527
+ msgid "Backup Contents And Schedule"
528
+ msgstr ""
529
+
530
+ #: admin.php:2730
531
+ msgid "%s minutes, %s seconds"
532
+ msgstr ""
533
+
534
+ #: admin.php:2732
535
+ msgid "Unfinished restoration"
536
+ msgstr ""
537
+
538
+ #: admin.php:2733
539
+ msgid "You have an unfinished restoration operation, begun %s ago."
540
+ msgstr ""
541
+
542
+ #: admin.php:2738
543
+ msgid "Continue restoration"
544
+ msgstr ""
545
+
546
+ #: admin.php:2759
547
+ msgid "Include the database in the backup"
548
+ msgstr ""
549
+
550
+ #: admin.php:2761
551
+ msgid "Include any files in the backup"
552
+ msgstr ""
553
+
554
+ #: admin.php:5125
555
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
556
+ msgstr ""
557
+
558
+ #: admin.php:5125
559
+ msgid "settings"
560
+ msgstr ""
561
+
562
+ #: admin.php:5125
563
+ msgid "Not got any remote storage?"
564
+ msgstr ""
565
+
566
+ #: admin.php:5125
567
+ msgid "Check out UpdraftPlus Vault."
568
+ msgstr ""
569
+
570
+ #: admin.php:5127
571
+ msgid "Send this backup to remote storage"
572
+ msgstr ""
573
+
574
+ #: admin.php:3162
575
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
576
+ msgstr ""
577
+
578
+ #: admin.php:3162
579
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
580
+ msgstr ""
581
+
582
+ #: admin.php:3694
583
+ msgid "Files backup schedule"
584
+ msgstr ""
585
+
586
+ #: admin.php:3727
587
+ msgid "Incremental file backup schedule"
588
+ msgstr ""
589
+
590
+ #: admin.php:3737
591
+ msgid "Database backup schedule"
592
+ msgstr ""
593
+
594
+ #: admin.php:3772
595
+ msgid "Sending Your Backup To Remote Storage"
596
+ msgstr ""
597
+
598
+ #: admin.php:3833
599
+ msgid "File Options"
600
+ msgstr ""
601
+
602
+ #: admin.php:4863
603
+ msgid "Skipping: this archive was already restored."
604
+ msgstr ""
605
+
606
+ #: addons/googlecloud.php:860
607
+ msgid "You must use a bucket name that is unique, for all %s users."
608
+ msgstr ""
609
+
610
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
611
+ msgid "This setting applies only when a new bucket is being created."
612
+ msgstr ""
613
+
614
+ #: addons/googlecloud.php:875
615
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
616
+ msgstr ""
617
+
618
+ #: addons/googlecloud.php:880
619
+ msgid "Bucket location"
620
+ msgstr ""
621
+
622
+ #: addons/googlecloud.php:45
623
+ msgid " Eastern United States"
624
+ msgstr ""
625
+
626
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
627
+ msgid "Eastern United States"
628
+ msgstr ""
629
+
630
+ #: addons/googlecloud.php:49
631
+ msgid "Western United States"
632
+ msgstr ""
633
+
634
+ #: addons/googlecloud.php:50
635
+ msgid "Eastern Asia-Pacific"
636
+ msgstr ""
637
+
638
+ #: addons/googlecloud.php:51
639
+ msgid "Western Europe"
640
+ msgstr ""
641
+
642
+ #: addons/googlecloud.php:268
643
+ msgid "You do not have access to this bucket"
644
+ msgstr ""
645
+
646
+ #: addons/googlecloud.php:816
647
+ msgid "Do not confuse %s with %s - they are separate things."
648
+ msgstr ""
649
+
650
+ #: addons/azure.php:516
651
+ msgid "If the %s does not already exist, then it will be created."
652
+ msgstr ""
653
+
654
+ #: addons/azure.php:516
655
+ msgid "See Microsoft's guidelines on container naming by following this link."
656
+ msgstr ""
657
+
658
+ #: addons/azure.php:521
659
+ msgid "Prefix"
660
+ msgstr ""
661
+
662
+ #: addons/azure.php:521
663
+ msgid "optional"
664
+ msgstr ""
665
+
666
+ #: addons/azure.php:522
667
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
668
+ msgstr ""
669
+
670
+ #: addons/azure.php:522
671
+ msgid "container"
672
+ msgstr ""
673
+
674
+ #: addons/googlecloud.php:35 addons/s3-enhanced.php:53
675
+ msgid "Standard"
676
+ msgstr ""
677
+
678
+ #: addons/googlecloud.php:36
679
+ msgid "Durable reduced availability"
680
+ msgstr ""
681
+
682
+ #: addons/googlecloud.php:37
683
+ msgid "Nearline"
684
+ msgstr ""
685
+
686
+ #: addons/googlecloud.php:41
687
+ msgid "United States"
688
+ msgstr ""
689
+
690
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
691
+ #: addons/googlecloud.php:43
692
+ msgid "multi-region location"
693
+ msgstr ""
694
+
695
+ #: addons/googlecloud.php:42
696
+ msgid "Asia Pacific"
697
+ msgstr ""
698
+
699
+ #: addons/googlecloud.php:43
700
+ msgid "European Union"
701
+ msgstr ""
702
+
703
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
704
+ msgid "Central United States"
705
+ msgstr ""
706
+
707
+ #: addons/azure.php:342
708
+ msgid "Could not access container"
709
+ msgstr ""
710
+
711
+ #: addons/azure.php:448
712
+ msgid "Could not create the container"
713
+ msgstr ""
714
+
715
+ #: addons/azure.php:500
716
+ msgid "Create Azure credentials in your Azure developer console."
717
+ msgstr ""
718
+
719
+ #: addons/azure.php:504 addons/azure.php:508
720
+ msgid "Azure"
721
+ msgstr ""
722
+
723
+ #: addons/azure.php:504
724
+ msgid "Account Name"
725
+ msgstr ""
726
+
727
+ #: addons/azure.php:505
728
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
729
+ msgstr ""
730
+
731
+ #: addons/azure.php:516
732
+ msgid "Enter the path of the %s you wish to use here."
733
+ msgstr ""
734
+
735
+ #: class-updraftplus.php:2485
736
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
737
+ msgstr ""
738
+
739
+ #: addons/googlecloud.php:854
740
+ msgid "Project ID"
741
+ msgstr ""
742
+
743
+ #: addons/googlecloud.php:743
744
+ msgid "You must enter a project ID in order to be able to create a new bucket."
745
+ msgstr ""
746
+
747
+ #: addons/googlecloud.php:828
748
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
749
+ msgstr ""
750
+
751
+ #: addons/googlecloud.php:855
752
+ msgid "Enter the ID of the %s project you wish to use here."
753
+ msgstr ""
754
+
755
+ #: addons/googlecloud.php:855
756
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
757
+ msgstr ""
758
+
759
+ #: addons/googlecloud.php:855
760
+ msgid "Otherwise, you can leave it blank."
761
+ msgstr ""
762
+
763
+ #: addons/googlecloud.php:859
764
+ msgid "Bucket"
765
+ msgstr ""
766
+
767
+ #: addons/googlecloud.php:860
768
+ msgid "Enter the name of the %s bucket you wish to use here."
769
+ msgstr ""
770
+
771
+ #: addons/googlecloud.php:860
772
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
773
+ msgstr ""
774
+
775
+ #: addons/googlecloud.php:860
776
+ msgid "See Google's guidelines on bucket naming by following this link."
777
+ msgstr ""
778
+
779
+ #: addons/googlecloud.php:865 addons/s3-enhanced.php:46
780
+ msgid "Storage class"
781
+ msgstr ""
782
+
783
+ #: admin.php:3088
784
+ msgid "Not installed"
785
+ msgstr ""
786
+
787
+ #: admin.php:3088
788
+ msgid "required for some remote storage providers"
789
+ msgstr ""
790
+
791
+ #: backup.php:1412
792
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
793
+ msgstr ""
794
+
795
+ #: backup.php:1516 backup.php:1518
796
+ msgid "The database backup appears to have failed"
797
+ msgstr ""
798
+
799
+ #: backup.php:1516
800
+ msgid "no options or sitemeta table was found"
801
+ msgstr ""
802
+
803
+ #: backup.php:1518
804
+ msgid "the options table was not found"
805
+ msgstr ""
806
+
807
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
808
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
809
+ #: addons/googlecloud.php:782
810
+ msgid "%s Service Exception."
811
+ msgstr ""
812
+
813
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
814
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
815
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
816
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
817
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
818
+ #: addons/googlecloud.php:860
819
+ msgid "Google Cloud"
820
+ msgstr ""
821
+
822
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
823
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
824
+ msgid "You do not have access to this bucket."
825
+ msgstr ""
826
+
827
+ #: addons/googlecloud.php:479
828
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
829
+ msgstr ""
830
+
831
+ #: addons/googlecloud.php:609
832
+ msgid "You must save and authenticate before you can test your settings."
833
+ msgstr ""
834
+
835
+ #: admin.php:548
836
+ msgid "day"
837
+ msgstr ""
838
+
839
+ #: admin.php:549
840
+ msgid "in the month"
841
+ msgstr ""
842
+
843
+ #: admin.php:550
844
+ msgid "day(s)"
845
+ msgstr ""
846
+
847
+ #: admin.php:551
848
+ msgid "hour(s)"
849
+ msgstr ""
850
+
851
+ #: admin.php:552
852
+ msgid "week(s)"
853
+ msgstr ""
854
+
855
+ #: admin.php:553
856
+ msgid "For backups older than"
857
+ msgstr ""
858
+
859
+ #: admin.php:555
860
+ msgid "Processing..."
861
+ msgstr ""
862
+
863
+ #: admin.php:1626
864
+ msgid "Backup sets removed: %d"
865
+ msgstr ""
866
+
867
+ #: admin.php:2881
868
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
869
+ msgstr ""
870
+
871
+ #: admin.php:2932
872
+ msgid "Actions upon selected backups"
873
+ msgstr ""
874
+
875
+ #: admin.php:2934
876
+ msgid "Select all"
877
+ msgstr ""
878
+
879
+ #: admin.php:2935
880
+ msgid "Deselect"
881
+ msgstr ""
882
+
883
+ #: admin.php:2946 admin.php:2949
884
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
885
+ msgstr ""
886
+
887
+ #: admin.php:3766
888
+ msgid "or to configure more complex schedules"
889
+ msgstr ""
890
+
891
+ #: restorer.php:707
892
+ msgid "Deferring..."
893
+ msgstr ""
894
+
895
+ #: updraftplus.php:147
896
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
897
+ msgstr ""
898
+
899
+ #: addons/morestorage.php:26
900
+ msgid "(as many as you like)"
901
+ msgstr ""
902
+
903
+ #: addons/fixtime.php:281 addons/fixtime.php:286
904
+ msgid "Add an additional retention rule..."
905
+ msgstr ""
906
+
907
+ #: methods/updraftvault.php:580
908
+ msgid "You do not currently have any UpdraftPlus Vault quota"
909
+ msgstr ""
910
+
911
+ #: restorer.php:1985
912
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
913
+ msgstr ""
914
+
915
+ #: restorer.php:1985
916
+ msgid "This database needs to be deployed on MySQL version %s or later."
917
+ msgstr ""
918
+
919
+ #: admin.php:2336
920
+ msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
921
+ msgstr ""
922
+
923
+ #: admin.php:2661
924
+ msgid "No advertising links on UpdraftPlus settings page"
925
+ msgstr ""
926
+
927
+ #: class-updraftplus.php:3712
928
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
929
+ msgstr ""
930
+
931
+ #: class-updraftplus.php:3712
932
+ msgid "You must upgrade MySQL to be able to use this database."
933
+ msgstr ""
934
+
935
+ #: methods/updraftvault.php:308
936
+ msgid "Don't know your email address, or forgotten your password?"
937
+ msgstr ""
938
+
939
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
940
+ msgid "Read the FAQs here."
941
+ msgstr ""
942
+
943
+ #: methods/updraftvault.php:301
944
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
945
+ msgstr ""
946
+
947
+ #: addons/s3-enhanced.php:60
948
+ msgid "Server-side encryption"
949
+ msgstr ""
950
+
951
+ #: addons/s3-enhanced.php:61
952
+ msgid "Check this box to use Amazon's server-side encryption"
953
+ msgstr ""
954
+
955
+ #: methods/updraftvault.php:589
956
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
957
+ msgstr ""
958
+
959
+ #: admin.php:816
960
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
961
+ msgstr ""
962
+
963
+ #: admin.php:816
964
+ msgid "Go to the remote storage settings in order to connect."
965
+ msgstr ""
966
+
967
+ #: methods/updraftvault.php:290
968
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
969
+ msgstr ""
970
+
971
+ #: admin.php:523
972
+ msgid "Connecting..."
973
+ msgstr ""
974
+
975
+ #: admin.php:525
976
+ msgid "Disconnecting..."
977
+ msgstr ""
978
+
979
+ #: admin.php:526
980
+ msgid "Counting..."
981
+ msgstr ""
982
+
983
+ #: admin.php:527
984
+ msgid "Update quota count"
985
+ msgstr ""
986
+
987
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
988
+ msgid "Updraft Vault"
989
+ msgstr ""
990
+
991
+ #: methods/updraftvault.php:209
992
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
993
+ msgstr ""
994
+
995
+ #: methods/updraftvault.php:212
996
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
997
+ msgstr ""
998
+
999
+ #: methods/updraftvault.php:215
1000
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
1001
+ msgstr ""
1002
+
1003
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1004
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1005
+ msgstr ""
1006
+
1007
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1008
+ msgid "Press a button to get started."
1009
+ msgstr ""
1010
+
1011
+ #: methods/updraftvault.php:255
1012
+ msgid "First time user?"
1013
+ msgstr ""
1014
+
1015
+ #: methods/updraftvault.php:256
1016
+ msgid "Show the options"
1017
+ msgstr ""
1018
+
1019
+ #: methods/updraftvault.php:259
1020
+ msgid "Already purchased space?"
1021
+ msgstr ""
1022
+
1023
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1024
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1025
+ msgstr ""
1026
+
1027
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1028
+ msgid "Read more about it here."
1029
+ msgstr ""
1030
+
1031
+ #: methods/updraftvault.php:273 methods/updraftvault.php:279
1032
+ #: methods/updraftvault.php:285
1033
+ msgid "%s per quarter"
1034
+ msgstr ""
1035
+
1036
+ #: methods/updraftvault.php:290
1037
+ msgid "Subscriptions can be cancelled at any time."
1038
+ msgstr ""
1039
+
1040
+ #: methods/updraftvault.php:296 methods/updraftvault.php:311
1041
+ msgid "Back..."
1042
+ msgstr ""
1043
+
1044
+ #: methods/updraftvault.php:303
1045
+ msgid "E-mail"
1046
+ msgstr ""
1047
+
1048
+ #: methods/updraftvault.php:308
1049
+ msgid "Go here for help"
1050
+ msgstr ""
1051
+
1052
+ #: methods/updraftvault.php:332
1053
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1054
+ msgstr ""
1055
+
1056
+ #: methods/updraftvault.php:336
1057
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1058
+ msgstr ""
1059
+
1060
+ #: methods/updraftvault.php:336
1061
+ msgid "Well done - there's nothing more needed to set up."
1062
+ msgstr ""
1063
+
1064
+ #: methods/updraftvault.php:336
1065
+ msgid "Vault owner"
1066
+ msgstr ""
1067
+
1068
+ #: methods/updraftvault.php:338
1069
+ msgid "Quota:"
1070
+ msgstr ""
1071
+
1072
+ #: admin.php:524 methods/updraftvault.php:346
1073
+ msgid "Disconnect"
1074
+ msgstr ""
1075
+
1076
+ #: methods/updraftvault.php:354
1077
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1078
+ msgstr ""
1079
+
1080
+ #: methods/updraftvault.php:354
1081
+ msgid "You can get more quota here"
1082
+ msgstr ""
1083
+
1084
+ #: methods/updraftvault.php:359 methods/updraftvault.php:375
1085
+ #: methods/updraftvault.php:414
1086
+ msgid "Current use:"
1087
+ msgstr ""
1088
+
1089
+ #: methods/updraftvault.php:362 methods/updraftvault.php:378
1090
+ #: methods/updraftvault.php:380 methods/updraftvault.php:433
1091
+ msgid "Get more quota"
1092
+ msgstr ""
1093
+
1094
+ #: methods/updraftvault.php:364 methods/updraftvault.php:433
1095
+ msgid "Refresh current status"
1096
+ msgstr ""
1097
+
1098
+ #: addons/s3-enhanced.php:343
1099
+ msgid "Allow download"
1100
+ msgstr ""
1101
+
1102
+ #: addons/s3-enhanced.php:345
1103
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1104
+ msgstr ""
1105
+
1106
+ #: addons/s3-enhanced.php:347
1107
+ msgid "Allow deletion"
1108
+ msgstr ""
1109
+
1110
+ #: addons/s3-enhanced.php:349
1111
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1112
+ msgstr ""
1113
+
1114
+ #: backup.php:2938
1115
+ msgid "The zip engine returned the message: %s."
1116
+ msgstr ""
1117
+
1118
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:977
1119
+ msgid "Delete failed:"
1120
+ msgstr ""
1121
+
1122
+ #: addons/migrator.php:1722 admin.php:533
1123
+ msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1124
+ msgstr ""
1125
+
1126
+ #: addons/migrator.php:1737
1127
+ msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1128
+ msgstr ""
1129
+
1130
+ #: admin.php:531
1131
+ msgid "Creating..."
1132
+ msgstr ""
1133
+
1134
+ #: admin.php:534
1135
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1136
+ msgstr ""
1137
+
1138
+ #: admin.php:536
1139
+ msgid "key name"
1140
+ msgstr ""
1141
+
1142
+ #: admin.php:537
1143
+ msgid "Deleting..."
1144
+ msgstr ""
1145
+
1146
+ #: addons/migrator.php:1750 admin.php:540
1147
+ msgid "Testing connection..."
1148
+ msgstr ""
1149
+
1150
+ #: admin.php:1268
1151
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1152
+ msgstr ""
1153
+
1154
+ #: admin.php:1268
1155
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1156
+ msgstr ""
1157
+
1158
+ #: admin.php:2989
1159
+ 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=\"https://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>."
1160
+ msgstr ""
1161
+
1162
+ #: admin.php:4395
1163
+ msgid "Backup sent to remote site - not available for download."
1164
+ msgstr ""
1165
+
1166
+ #: admin.php:4396
1167
+ msgid "Site"
1168
+ msgstr ""
1169
+
1170
+ #: admin.php:4623
1171
+ msgid "(backup set imported from remote location)"
1172
+ msgstr ""
1173
+
1174
+ #: methods/addon-base.php:177
1175
+ msgid "This storage method does not allow downloading"
1176
+ msgstr ""
1177
+
1178
+ #: addons/reporting.php:143
1179
+ msgid "Backup made by %s"
1180
+ msgstr ""
1181
+
1182
+ #: addons/migrator.php:185
1183
+ msgid "This site has no backups to restore from yet."
1184
+ msgstr ""
1185
+
1186
+ #: addons/migrator.php:192
1187
+ msgid "Restore an existing backup set onto this site"
1188
+ msgstr ""
1189
+
1190
+ #: addons/migrator.php:1674
1191
+ msgid "Backup data will be sent to:"
1192
+ msgstr ""
1193
+
1194
+ #: addons/migrator.php:1689
1195
+ msgid "site not found"
1196
+ msgstr ""
1197
+
1198
+ #: addons/migrator.php:1733
1199
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1200
+ msgstr ""
1201
+
1202
+ #: addons/migrator.php:1768
1203
+ msgid "Also send this backup to the active remote storage locations"
1204
+ msgstr ""
1205
+
1206
+ #: addons/migrator.php:1820
1207
+ msgid "A key with this name already exists; you must use a unique name."
1208
+ msgstr ""
1209
+
1210
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1211
+ msgid "Key created successfully."
1212
+ msgstr ""
1213
+
1214
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1215
+ msgid "You must copy and paste this key now - it cannot be shown again."
1216
+ msgstr ""
1217
+
1218
+ #: addons/migrator.php:2175
1219
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1220
+ msgstr ""
1221
+
1222
+ #: addons/migrator.php:2175
1223
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1224
+ msgstr ""
1225
+
1226
+ #: addons/migrator.php:2192
1227
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1228
+ msgstr ""
1229
+
1230
+ #: addons/migrator.php:2213
1231
+ msgid "Your new key:"
1232
+ msgstr ""
1233
+
1234
+ #: addons/migrator.php:2231
1235
+ msgid "No keys to allow remote sites to connect have yet been created."
1236
+ msgstr ""
1237
+
1238
+ #: addons/migrator.php:2240
1239
+ msgid "Existing keys"
1240
+ msgstr ""
1241
+
1242
+ #: methods/ftp.php:307
1243
+ msgid "FTP server"
1244
+ msgstr ""
1245
+
1246
+ #: methods/ftp.php:311
1247
+ msgid "FTP login"
1248
+ msgstr ""
1249
+
1250
+ #: methods/ftp.php:315
1251
+ msgid "FTP password"
1252
+ msgstr ""
1253
+
1254
+ #: methods/ftp.php:319
1255
+ msgid "Remote path"
1256
+ msgstr ""
1257
+
1258
+ #: methods/ftp.php:323
1259
+ msgid "Passive mode"
1260
+ msgstr ""
1261
+
1262
+ #: methods/ftp.php:325
1263
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1264
+ msgstr ""
1265
+
1266
+ #: addons/migrator.php:1851
1267
+ msgid "key"
1268
+ msgstr ""
1269
+
1270
+ #: addons/migrator.php:1861
1271
+ msgid "The entered key was the wrong length - please try again."
1272
+ msgstr ""
1273
+
1274
+ #: addons/migrator.php:1863 addons/migrator.php:1865 addons/migrator.php:1869
1275
+ msgid "The entered key was corrupt - please try again."
1276
+ msgstr ""
1277
+
1278
+ #: addons/migrator.php:1874
1279
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1280
+ msgstr ""
1281
+
1282
+ #: addons/migrator.php:1890
1283
+ msgid "The key was successfully added."
1284
+ msgstr ""
1285
+
1286
+ #: addons/migrator.php:1890
1287
+ msgid "It is for sending backups to the following site: "
1288
+ msgstr ""
1289
+
1290
+ #: addons/migrator.php:1909
1291
+ msgid "No receiving sites have yet been added."
1292
+ msgstr ""
1293
+
1294
+ #: addons/migrator.php:1911 admin.php:532
1295
+ msgid "Send to site:"
1296
+ msgstr ""
1297
+
1298
+ #: addons/migrator.php:1917 admin.php:541
1299
+ msgid "Send"
1300
+ msgstr ""
1301
+
1302
+ #: addons/migrator.php:2172
1303
+ msgid "Or, send a backup to another site"
1304
+ msgstr ""
1305
+
1306
+ #: addons/migrator.php:2175
1307
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1308
+ msgstr ""
1309
+
1310
+ #: addons/migrator.php:2175
1311
+ msgid "How do I get a site's key?"
1312
+ msgstr ""
1313
+
1314
+ #: addons/migrator.php:2180
1315
+ msgid "Paste key here"
1316
+ msgstr ""
1317
+
1318
+ #: addons/migrator.php:2191
1319
+ msgid "Or, receive a backup from a remote site"
1320
+ msgstr ""
1321
+
1322
+ #: admin.php:528
1323
+ msgid "Adding..."
1324
+ msgstr ""
1325
+
1326
+ #: addons/migrator.php:2180 admin.php:529
1327
+ msgid "Add site"
1328
+ msgstr ""
1329
+
1330
+ #: addons/migrator.php:165
1331
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1332
+ msgstr ""
1333
+
1334
+ #: addons/migrator.php:165
1335
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1336
+ msgstr ""
1337
+
1338
+ #: restorer.php:1987
1339
+ msgid "To use this backup, your database server needs to support the %s character set."
1340
+ msgstr ""
1341
+
1342
+ #: udaddons/options.php:338
1343
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1344
+ msgstr ""
1345
+
1346
+ #: udaddons/updraftplus-addons.php:758
1347
+ msgid "Go here to re-enter your password."
1348
+ msgstr ""
1349
+
1350
+ #: udaddons/updraftplus-addons.php:759
1351
+ msgid "If you have forgotten your password "
1352
+ msgstr ""
1353
+
1354
+ #: udaddons/updraftplus-addons.php:759
1355
+ msgid "go here to change your password on updraftplus.com."
1356
+ msgstr ""
1357
+
1358
+ #: addons/migrator.php:192
1359
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1360
+ msgstr ""
1361
+
1362
+ #: addons/migrator.php:221
1363
+ msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1364
+ msgstr ""
1365
+
1366
+ #: admin.php:520 admin.php:545
1367
+ msgid "You have made changes to your settings, and not saved."
1368
+ msgstr ""
1369
+
1370
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1371
+ msgid "To remove the block, please go here."
1372
+ msgstr ""
1373
+
1374
+ #: methods/email.php:73
1375
+ msgid "configure it here"
1376
+ msgstr ""
1377
+
1378
+ #: addons/onedrive.php:496
1379
+ msgid "Please re-authorize the connection to your %s account."
1380
+ msgstr ""
1381
+
1382
+ #: addons/onedrive.php:611 addons/onedrive.php:755 addons/onedrive.php:759
1383
+ msgid "OneDrive"
1384
+ msgstr ""
1385
+
1386
+ #: addons/onedrive.php:721 addons/onedrive.php:723
1387
+ msgid "%s authorisation failed:"
1388
+ msgstr ""
1389
+
1390
+ #: addons/onedrive.php:739
1391
+ msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1392
+ msgstr ""
1393
+
1394
+ #: addons/onedrive.php:741
1395
+ msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1396
+ msgstr ""
1397
+
1398
+ #: addons/onedrive.php:747
1399
+ msgid "Create OneDrive credentials in your OneDrive developer console."
1400
+ msgstr ""
1401
+
1402
+ #: addons/azure.php:500 addons/migrator.php:1737 addons/onedrive.php:747
1403
+ msgid "For longer help, including screenshots, follow this link."
1404
+ msgstr ""
1405
+
1406
+ #: addons/onedrive.php:756
1407
+ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1408
+ msgstr ""
1409
+
1410
+ #: addons/onedrive.php:767
1411
+ msgid "N.B. %s is not case-sensitive."
1412
+ msgstr ""
1413
+
1414
+ #: addons/s3-enhanced.php:321
1415
+ msgid "US West (N. California)"
1416
+ msgstr ""
1417
+
1418
+ #: addons/s3-enhanced.php:322
1419
+ msgid "US Government West (restricted)"
1420
+ msgstr ""
1421
+
1422
+ #: addons/s3-enhanced.php:323
1423
+ msgid "EU (Ireland)"
1424
+ msgstr ""
1425
+
1426
+ #: addons/s3-enhanced.php:324
1427
+ msgid "EU (Frankfurt)"
1428
+ msgstr ""
1429
+
1430
+ #: addons/s3-enhanced.php:326
1431
+ msgid "Asia Pacific (Singapore)"
1432
+ msgstr ""
1433
+
1434
+ #: addons/s3-enhanced.php:327
1435
+ msgid "Asia Pacific (Sydney)"
1436
+ msgstr ""
1437
+
1438
+ #: addons/s3-enhanced.php:329
1439
+ msgid "Asia Pacific (Tokyo)"
1440
+ msgstr ""
1441
+
1442
+ #: addons/s3-enhanced.php:330
1443
+ msgid "South America (Sao Paulo)"
1444
+ msgstr ""
1445
+
1446
+ #: addons/s3-enhanced.php:331
1447
+ msgid "China (Beijing) (restricted)"
1448
+ msgstr ""
1449
+
1450
+ #: addons/s3-enhanced.php:341
1451
+ msgid "S3 bucket"
1452
+ msgstr ""
1453
+
1454
+ #: addons/s3-enhanced.php:437
1455
+ msgid "You are now using a IAM user account to access your bucket."
1456
+ msgstr ""
1457
+
1458
+ #: addons/s3-enhanced.php:437
1459
+ msgid "Do remember to save your settings."
1460
+ msgstr ""
1461
+
1462
+ #: restorer.php:2086
1463
+ msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1464
+ msgstr ""
1465
+
1466
+ #: admin.php:396
1467
+ msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1468
+ msgstr ""
1469
+
1470
+ #: admin.php:398
1471
+ msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1472
+ msgstr ""
1473
+
1474
+ #: methods/s3.php:778
1475
+ msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1476
+ msgstr ""
1477
+
1478
+ #: addons/s3-enhanced.php:71
1479
+ msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1480
+ msgstr ""
1481
+
1482
+ #: addons/s3-enhanced.php:83
1483
+ msgid "You need to enter an admin access key"
1484
+ msgstr ""
1485
+
1486
+ #: addons/s3-enhanced.php:86
1487
+ msgid "You need to enter an admin secret key"
1488
+ msgstr ""
1489
+
1490
+ #: addons/s3-enhanced.php:89
1491
+ msgid "You need to enter a new IAM username"
1492
+ msgstr ""
1493
+
1494
+ #: addons/s3-enhanced.php:92
1495
+ msgid "You need to enter a bucket"
1496
+ msgstr ""
1497
+
1498
+ #: addons/s3-enhanced.php:117
1499
+ msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1500
+ msgstr ""
1501
+
1502
+ #: addons/s3-enhanced.php:124
1503
+ msgid "AWS authentication failed"
1504
+ msgstr ""
1505
+
1506
+ #: addons/s3-enhanced.php:171
1507
+ 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 AWS user may already have taken your name)."
1508
+ msgstr ""
1509
+
1510
+ #: addons/s3-enhanced.php:199
1511
+ msgid "Conflict: that user already exists"
1512
+ msgstr ""
1513
+
1514
+ #: addons/s3-enhanced.php:201 addons/s3-enhanced.php:204
1515
+ #: addons/s3-enhanced.php:208
1516
+ msgid "IAM operation failed (%s)"
1517
+ msgstr ""
1518
+
1519
+ #: addons/s3-enhanced.php:221
1520
+ msgid "Failed to create user Access Key"
1521
+ msgstr ""
1522
+
1523
+ #: addons/s3-enhanced.php:223 addons/s3-enhanced.php:227
1524
+ msgid "Operation to create user Access Key failed"
1525
+ msgstr ""
1526
+
1527
+ #: addons/s3-enhanced.php:282 addons/s3-enhanced.php:284
1528
+ msgid "Failed to apply User Policy"
1529
+ msgstr ""
1530
+
1531
+ #: addons/s3-enhanced.php:294
1532
+ msgid "Access Key: %s"
1533
+ msgstr ""
1534
+
1535
+ #: addons/s3-enhanced.php:294
1536
+ msgid "Secret Key: %s"
1537
+ msgstr ""
1538
+
1539
+ #: addons/s3-enhanced.php:378
1540
+ msgid "Create new IAM user and S3 bucket"
1541
+ msgstr ""
1542
+
1543
+ #: addons/s3-enhanced.php:304
1544
+ msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1545
+ msgstr ""
1546
+
1547
+ #: addons/s3-enhanced.php:304
1548
+ msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1549
+ msgstr ""
1550
+
1551
+ #: addons/s3-enhanced.php:304
1552
+ msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1553
+ msgstr ""
1554
+
1555
+ #: addons/s3-enhanced.php:311
1556
+ msgid "Admin access key"
1557
+ msgstr ""
1558
+
1559
+ #: addons/s3-enhanced.php:312
1560
+ msgid "Admin secret key"
1561
+ msgstr ""
1562
+
1563
+ #: addons/s3-enhanced.php:313
1564
+ msgid "New IAM username"
1565
+ msgstr ""
1566
+
1567
+ #: addons/s3-enhanced.php:315
1568
+ msgid "S3 storage region"
1569
+ msgstr ""
1570
+
1571
+ #: addons/s3-enhanced.php:319
1572
+ msgid "US Standard (default)"
1573
+ msgstr ""
1574
+
1575
+ #: addons/s3-enhanced.php:320
1576
+ msgid "US West (Oregon)"
1577
+ msgstr ""
1578
+
1579
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1580
+ msgid "UpdraftPlus.com has responded with 'Access Denied'."
1581
+ msgstr ""
1582
+
1583
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1584
+ msgid "It appears that your web server's IP Address (%s) is blocked."
1585
+ msgstr ""
1586
+
1587
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1588
+ msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1589
+ msgstr ""
1590
+
1591
+ #: admin.php:389 admin.php:403
1592
+ msgid "Dismiss (for %s months)"
1593
+ msgstr ""
1594
+
1595
+ #: admin.php:391
1596
+ msgid "Thank you for backing up with UpdraftPlus!"
1597
+ msgstr ""
1598
+
1599
+ #: admin.php:396
1600
+ msgid "Free Newsletter"
1601
+ msgstr ""
1602
+
1603
+ #: admin.php:396
1604
+ msgid "Follow this link to sign up."
1605
+ msgstr ""
1606
+
1607
+ #: admin.php:398
1608
+ msgid "UpdraftPlus Premium"
1609
+ msgstr ""
1610
+
1611
+ #: admin.php:398
1612
+ msgid "Compare with the free version"
1613
+ msgstr ""
1614
+
1615
+ #: admin.php:398
1616
+ msgid "Go to the shop."
1617
+ msgstr ""
1618
+
1619
+ #: admin.php:400
1620
+ msgid "More Quality Plugins"
1621
+ msgstr ""
1622
+
1623
+ #: admin.php:400
1624
+ msgid "Free two-factor security plugin"
1625
+ msgstr ""
1626
+
1627
+ #: admin.php:400
1628
+ msgid "Premium WooCommerce plugins"
1629
+ msgstr ""
1630
+
1631
+ #: class-updraftplus.php:3488
1632
+ msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1633
+ msgstr ""
1634
+
1635
+ #: admin.php:2172
1636
+ msgid "Newsletter sign-up"
1637
+ msgstr ""
1638
+
1639
+ #: admin.php:2556
1640
+ msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1641
+ msgstr ""
1642
+
1643
+ #: admin.php:2556
1644
+ msgid "The first step is to de-install the free version."
1645
+ msgstr ""
1646
+
1647
+ #: admin.php:3640
1648
+ msgid "No backup has been completed"
1649
+ msgstr ""
1650
+
1651
+ #: addons/fixtime.php:422
1652
+ msgid "(at same time as files backup)"
1653
+ msgstr ""
1654
+
1655
+ #: admin.php:2601
1656
+ msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1657
+ msgstr ""
1658
+
1659
+ #: admin.php:2606
1660
+ msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1661
+ msgstr ""
1662
+
1663
+ #: admin.php:2621
1664
+ msgid "Backup extra files and databases"
1665
+ msgstr ""
1666
+
1667
+ #: admin.php:2626
1668
+ msgid "Migrate / clone (i.e. copy) websites"
1669
+ msgstr ""
1670
+
1671
+ #: admin.php:2631
1672
+ msgid "Basic email reporting"
1673
+ msgstr ""
1674
+
1675
+ #: admin.php:2636
1676
+ msgid "Advanced reporting features"
1677
+ msgstr ""
1678
+
1679
+ #: admin.php:2641
1680
+ msgid "Automatic backup when updating WP/plugins/themes"
1681
+ msgstr ""
1682
+
1683
+ #: admin.php:2646
1684
+ msgid "Send backups to multiple remote destinations"
1685
+ msgstr ""
1686
+
1687
+ #: admin.php:2651
1688
+ msgid "Database encryption"
1689
+ msgstr ""
1690
+
1691
+ #: admin.php:2656
1692
+ msgid "Restore backups from other plugins"
1693
+ msgstr ""
1694
+
1695
+ #: admin.php:2666
1696
+ msgid "Scheduled backups"
1697
+ msgstr ""
1698
+
1699
+ #: admin.php:2671
1700
+ msgid "Fix backup time"
1701
+ msgstr ""
1702
+
1703
+ #: admin.php:2676
1704
+ msgid "Network/Multisite support"
1705
+ msgstr ""
1706
+
1707
+ #: admin.php:2681
1708
+ msgid "Lock settings access"
1709
+ msgstr ""
1710
+
1711
+ #: admin.php:2686
1712
+ msgid "Personal support"
1713
+ msgstr ""
1714
+
1715
+ #: admin.php:2556
1716
+ msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1717
+ msgstr ""
1718
+
1719
+ #: admin.php:2558
1720
+ msgid "Get UpdraftPlus Premium"
1721
+ msgstr ""
1722
+
1723
+ #: admin.php:2559
1724
+ msgid "Full feature list"
1725
+ msgstr ""
1726
+
1727
+ #: admin.php:2560
1728
+ msgid "Pre-sales FAQs"
1729
+ msgstr ""
1730
+
1731
+ #: admin.php:2561
1732
+ msgid "Ask a pre-sales question"
1733
+ msgstr ""
1734
+
1735
+ #: admin.php:2573
1736
+ msgid "Get it from"
1737
+ msgstr ""
1738
+
1739
+ #: admin.php:2577
1740
+ msgid "Buy It Now!"
1741
+ msgstr ""
1742
+
1743
+ #: admin.php:2581
1744
+ msgid "Backup WordPress files and database"
1745
+ msgstr ""
1746
+
1747
+ #: admin.php:2586
1748
+ msgid "Translated into over %s languages"
1749
+ msgstr ""
1750
+
1751
+ #: admin.php:2591
1752
+ msgid "Restore from backup"
1753
+ msgstr ""
1754
+
1755
+ #: admin.php:2596
1756
+ msgid "Backup to remote storage"
1757
+ msgstr ""
1758
+
1759
+ #: admin.php:514
1760
+ msgid "You did not select any components to restore. Please select at least one, and then try again."
1761
+ msgstr ""
1762
+
1763
+ #: admin.php:2903
1764
+ msgctxt "Uploader: Drop backup files here - or - Select Files"
1765
+ msgid "or"
1766
+ msgstr ""
1767
+
1768
+ #: admin.php:3882
1769
+ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1770
+ msgid "or"
1771
+ msgstr ""
1772
+
1773
+ #: methods/s3.php:134 methods/s3.php:135 methods/s3.php:136 methods/s3.php:144
1774
+ #: methods/s3.php:145 methods/s3.php:146
1775
+ msgid "%s Error: Failed to initialise"
1776
+ msgstr ""
1777
+
1778
+ #: addons/autobackup.php:981
1779
+ msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1780
+ msgstr ""
1781
+
1782
+ #: restorer.php:1964
1783
+ msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1784
+ msgid "An error (%s) occurred:"
1785
+ msgstr ""
1786
+
1787
+ #: admin.php:3649
1788
+ msgctxt "i.e. Non-automatic"
1789
+ msgid "Manual"
1790
+ msgstr ""
1791
+
1792
+ #: admin.php:3934
1793
+ msgid "Check this box to have a basic report sent to"
1794
+ msgstr ""
1795
+
1796
+ #: admin.php:3934
1797
+ msgid "your site's admin address"
1798
+ msgstr ""
1799
+
1800
+ #: methods/openstack2.php:102
1801
+ msgctxt "Keystone and swauth are technical terms which cannot be translated"
1802
+ msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1803
+ msgstr ""
1804
+
1805
+ #: methods/openstack2.php:152
1806
+ msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1807
+ msgid "tenant"
1808
+ msgstr ""
1809
+
1810
+ #: addons/sftp.php:342
1811
+ msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1812
+ msgstr ""
1813
+
1814
+ #: addons/sftp.php:379
1815
+ msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1816
+ msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1817
+ msgstr ""
1818
+
1819
+ #: addons/morefiles.php:178
1820
+ msgid "Any other file/directory on your server that you wish to back up"
1821
+ msgstr ""
1822
+
1823
+ #: addons/lockadmin.php:162
1824
+ msgid "Change Lock Settings"
1825
+ msgstr ""
1826
+
1827
+ #: restorer.php:1163
1828
+ msgid "Clearing cached pages (%s)..."
1829
+ msgstr ""
1830
+
1831
+ #: restorer.php:1970
1832
+ msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1833
+ msgstr ""
1834
+
1835
+ #: admin.php:2349
1836
+ msgid "For even more features and personal support, check out "
1837
+ msgstr ""
1838
+
1839
+ #: udaddons/options.php:273
1840
+ msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1841
+ msgstr ""
1842
+
1843
+ #: addons/morefiles.php:67
1844
+ msgid "(learn more about this significant option)"
1845
+ msgstr ""
1846
+
1847
+ #: addons/lockadmin.php:105
1848
+ msgid "The admin password has now been removed."
1849
+ msgstr ""
1850
+
1851
+ #: addons/lockadmin.php:107
1852
+ msgid "An admin password has been set."
1853
+ msgstr ""
1854
+
1855
+ #: addons/lockadmin.php:109
1856
+ msgid "The admin password has been changed."
1857
+ msgstr ""
1858
+
1859
+ #: addons/lockadmin.php:111
1860
+ msgid "Settings saved."
1861
+ msgstr ""
1862
+
1863
+ #: addons/lockadmin.php:131
1864
+ msgid "Lock access to the UpdraftPlus settings page"
1865
+ msgstr ""
1866
+
1867
+ #: addons/lockadmin.php:133
1868
+ msgid "Please make sure that you have made a note of the password!"
1869
+ msgstr ""
1870
+
1871
+ #: addons/lockadmin.php:144
1872
+ msgid "1 hour"
1873
+ msgstr ""
1874
+
1875
+ #: addons/lockadmin.php:145 addons/lockadmin.php:146
1876
+ msgid "%s hours"
1877
+ msgstr ""
1878
+
1879
+ #: addons/lockadmin.php:147
1880
+ msgid "1 week"
1881
+ msgstr ""
1882
+
1883
+ #: addons/lockadmin.php:148 addons/lockadmin.php:149
1884
+ msgid "%s weeks"
1885
+ msgstr ""
1886
+
1887
+ #: addons/lockadmin.php:157
1888
+ msgid "Require password again after"
1889
+ msgstr ""
1890
+
1891
+ #: addons/lockadmin.php:159
1892
+ msgid "Support URL"
1893
+ msgstr ""
1894
+
1895
+ #: addons/lockadmin.php:159
1896
+ msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1897
+ msgstr ""
1898
+
1899
+ #: addons/lockadmin.php:159
1900
+ msgid "Otherwise, the default link will be shown."
1901
+ msgstr ""
1902
+
1903
+ #: addons/lockadmin.php:188 addons/lockadmin.php:194
1904
+ msgid "Unlock"
1905
+ msgstr ""
1906
+
1907
+ #: addons/lockadmin.php:200
1908
+ msgid "Password incorrect"
1909
+ msgstr ""
1910
+
1911
+ #: addons/lockadmin.php:203
1912
+ msgid "To access the UpdraftPlus settings, please enter your unlock password"
1913
+ msgstr ""
1914
+
1915
+ #: addons/lockadmin.php:210
1916
+ msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1917
+ msgstr ""
1918
+
1919
+ #: addons/autobackup.php:96
1920
+ msgid "WordPress core (only)"
1921
+ msgstr ""
1922
+
1923
+ #: addons/autobackup.php:131 addons/autobackup.php:946
1924
+ #: addons/autobackup.php:954 admin.php:519
1925
+ msgid "Automatic backup before update"
1926
+ msgstr ""
1927
+
1928
+ #: addons/moredatabase.php:45
1929
+ msgid "Database decryption phrase"
1930
+ msgstr ""
1931
+
1932
+ #: backup.php:2940
1933
+ msgid "A zip error occurred"
1934
+ msgstr ""
1935
+
1936
+ #: backup.php:2942
1937
+ msgid "your web hosting account appears to be full; please see: %s"
1938
+ msgstr ""
1939
+
1940
+ #: backup.php:2944
1941
+ msgid "check your log for more details."
1942
+ msgstr ""
1943
+
1944
+ #: admin.php:1854
1945
+ msgid "Error: unexpected file read fail"
1946
+ msgstr ""
1947
+
1948
+ #: class-updraftplus.php:3664
1949
+ msgid "Backup label:"
1950
+ msgstr ""
1951
+
1952
+ #: admin.php:760 admin.php:2439 central/updraftplus-commands.php:304
1953
+ msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1954
+ msgstr ""
1955
+
1956
+ #: admin.php:2892
1957
+ msgid "Upload files into UpdraftPlus."
1958
+ msgstr ""
1959
+
1960
+ #: admin.php:3124
1961
+ msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1962
+ msgstr ""
1963
+
1964
+ #: admin.php:3610
1965
+ msgid "incremental backup; base backup: %s"
1966
+ msgstr ""
1967
+
1968
+ #: admin.php:3714 admin.php:3753
1969
+ msgid "and retain this many scheduled backups"
1970
+ msgstr ""
1971
+
1972
+ #: admin.php:4341
1973
+ msgid "Backup date"
1974
+ msgstr ""
1975
+
1976
+ #: admin.php:4342
1977
+ msgid "Backup data (click to download)"
1978
+ msgstr ""
1979
+
1980
+ #: admin.php:3232 admin.php:4646
1981
+ msgid "View Log"
1982
+ msgstr ""
1983
+
1984
+ #: addons/reporting.php:60
1985
+ msgid "Your label for this backup (optional)"
1986
+ msgstr ""
1987
+
1988
+ #: addons/googlecloud.php:822 methods/googledrive.php:900
1989
+ msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1990
+ msgstr ""
1991
+
1992
+ #: methods/updraftvault.php:529 udaddons/updraftplus-addons.php:655
1993
+ msgid "You need to supply both an email address and a password"
1994
+ msgstr ""
1995
+
1996
+ #: methods/updraftvault.php:589 udaddons/updraftplus-addons.php:758
1997
+ msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1998
+ msgstr ""
1999
+
2000
+ #: methods/updraftvault.php:592 udaddons/updraftplus-addons.php:762
2001
+ msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2002
+ msgstr ""
2003
+
2004
+ #: admin.php:2500
2005
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2006
+ msgstr ""
2007
+
2008
+ #: class-updraftplus.php:3683
2009
+ msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2010
+ msgstr ""
2011
+
2012
+ #: class-updraftplus.php:3683
2013
+ msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2014
+ msgstr ""
2015
+
2016
+ #: addons/migrator.php:1038
2017
+ msgid "already done"
2018
+ msgstr ""
2019
+
2020
+ #: addons/migrator.php:995 addons/migrator.php:1038 addons/migrator.php:1185
2021
+ msgid "Search and replacing table:"
2022
+ msgstr ""
2023
+
2024
+ #: addons/migrator.php:995
2025
+ msgid "skipped (not in list)"
2026
+ msgstr ""
2027
+
2028
+ #: addons/migrator.php:301
2029
+ msgid "Rows per batch"
2030
+ msgstr ""
2031
+
2032
+ #: addons/migrator.php:302
2033
+ msgid "These tables only"
2034
+ msgstr ""
2035
+
2036
+ #: addons/migrator.php:302
2037
+ msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2038
+ msgstr ""
2039
+
2040
+ #: udaddons/options.php:102
2041
+ msgid "You have not yet connected with your UpdraftPlus.Com account."
2042
+ msgstr ""
2043
+
2044
+ #: udaddons/options.php:100 udaddons/options.php:102
2045
+ msgid "You need to connect to receive future updates to UpdraftPlus."
2046
+ msgstr ""
2047
+
2048
+ #: class-updraftplus.php:3656
2049
+ msgid "The site in this backup was running on a webserver with version %s of %s. "
2050
+ msgstr ""
2051
+
2052
+ #: class-updraftplus.php:3656
2053
+ msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2054
+ msgstr ""
2055
+
2056
+ #: class-updraftplus.php:3656
2057
+ msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2058
+ msgstr ""
2059
+
2060
+ #: class-updraftplus.php:3656
2061
+ msgid "Any support requests to do with %s should be raised with your web hosting company."
2062
+ msgstr ""
2063
+
2064
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2065
+ msgid "UpdraftPlus is on social media - check us out here:"
2066
+ msgstr ""
2067
+
2068
+ #: admin.php:2170 class-updraftplus.php:3479 class-updraftplus.php:3508
2069
+ msgid "Twitter"
2070
+ msgstr ""
2071
+
2072
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2073
+ msgid "Facebook"
2074
+ msgstr ""
2075
+
2076
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2077
+ msgid "Google+"
2078
+ msgstr ""
2079
+
2080
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2081
+ msgid "LinkedIn"
2082
+ msgstr ""
2083
+
2084
+ #: admin.php:4707
2085
+ msgid "Why am I seeing this?"
2086
+ msgstr "Per què estic veient això ?"
2087
+
2088
+ #: admin.php:2880
2089
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2090
+ msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2091
+
2092
+ #: admin.php:2880
2093
+ msgid "The location of this directory is set in the expert settings, in the Settings tab."
2094
+ msgstr "La ubicació d'aquest directori es troba en la configuració d'experts, a la pestanya Configuració."
2095
+
2096
+ #: admin.php:1802 admin.php:1814
2097
+ msgid "Start backup"
2098
+ msgstr "Iniciar còpia de seguretat"
2099
+
2100
+ #: class-updraftplus.php:3628 restorer.php:926
2101
+ msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2102
+ msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2103
+
2104
+ #: admin.php:3554
2105
+ msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2106
+ msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2107
+
2108
+ #: admin.php:3045
2109
+ msgid "Unless you have a problem, you can completely ignore everything here."
2110
+ msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2111
+
2112
+ #: admin.php:1976
2113
+ msgid "You will find more information about this in the Settings section."
2114
+ msgstr "Més informació sobre això en la secció Configuració."
2115
+
2116
+ #: admin.php:2011
2117
+ msgid "This file could not be uploaded"
2118
+ msgstr "No s'ha pogut carregar aquest fitxer"
2119
+
2120
+ #: addons/importer.php:70
2121
+ msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2122
+ msgstr ""
2123
+
2124
+ #: addons/importer.php:70
2125
+ msgid "Supported backup plugins: %s"
2126
+ msgstr "Complements de còpia de seguretat suportats: %s."
2127
+
2128
+ #: admin.php:3730
2129
+ msgid "Tell me more about incremental backups"
2130
+ msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
2131
+
2132
+ #: admin.php:3081
2133
+ msgid "Memory limit"
2134
+ msgstr "Límit de memòria"
2135
+
2136
+ #: class-updraftplus.php:3770 restorer.php:1368
2137
+ msgid "restoration"
2138
+ msgstr "Restauració"
2139
+
2140
+ #: restorer.php:1915
2141
+ msgid "Table to be implicitly dropped: %s"
2142
+ msgstr "Taula d'elements exclosos implicitament: %s."
2143
+
2144
+ #: backup.php:829
2145
+ msgid "Full backup"
2146
+ msgstr "Còpia de seguretat completa"
2147
+
2148
+ #: backup.php:829
2149
+ msgid "Incremental"
2150
+ msgstr "Incremental"
2151
+
2152
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2153
+ msgid "Backup succeeded"
2154
+ msgstr "Còpia de seguretat executada correctament"
2155
+
2156
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2157
+ msgid "(view log...)"
2158
+ msgstr "(veure registre ...)"
2159
+
2160
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2161
+ msgid "now proceeding with the updates..."
2162
+ msgstr "Actualitzant ..."
2163
+
2164
+ #: admin.php:3650 admin.php:3651 admin.php:3652 updraftplus.php:92
2165
+ #: updraftplus.php:93
2166
+ msgid "Every %s hours"
2167
+ msgstr "Cada %s hores"
2168
+
2169
+ #: addons/migrator.php:765 addons/migrator.php:767
2170
+ msgid "search and replace"
2171
+ msgstr "cercar i substituir"
2172
+
2173
+ #: addons/migrator.php:272
2174
+ msgid "search term"
2175
+ msgstr "terme de cerca"
2176
+
2177
+ #: addons/migrator.php:266 addons/migrator.php:291
2178
+ msgid "Search / replace database"
2179
+ msgstr "Cercar / substituir base de dades"
2180
+
2181
+ #: addons/migrator.php:267 addons/migrator.php:299
2182
+ msgid "Search for"
2183
+ msgstr "Cercar"
2184
+
2185
+ #: addons/migrator.php:268 addons/migrator.php:300
2186
+ msgid "Replace with"
2187
+ msgstr "Substituir per"
2188
+
2189
+ #: addons/migrator.php:292
2190
+ msgid "This can easily destroy your site; so, use it with care!"
2191
+ msgstr "Això pot destruir el teu lloc web fàcilment; utilitza-ho amb compte!"
2192
+
2193
+ #: addons/migrator.php:293
2194
+ msgid "A search/replace cannot be undone - are you sure you want to do this?"
2195
+ msgstr "Una cerca/substitució no es pot desfer - Estàs segur que vols fer això?"
2196
+
2197
+ #: addons/migrator.php:304
2198
+ msgid "Go"
2199
+ msgstr "Endavant"
2200
+
2201
+ #: restorer.php:1992
2202
+ msgid "Too many database errors have occurred - aborting"
2203
+ msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2204
+
2205
+ #: backup.php:895
2206
+ msgid "read more at %s"
2207
+ msgstr "Llegir més a %s"
2208
+
2209
+ #: backup.php:895
2210
+ msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2211
+ msgstr ""
2212
+
2213
+ #: methods/googledrive.php:906
2214
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2215
+ msgstr ""
2216
+
2217
+ #: admin.php:4328
2218
+ msgid "You have not yet made any backups."
2219
+ msgstr ""
2220
+
2221
+ #: admin.php:3845
2222
+ msgid "Database Options"
2223
+ msgstr ""
2224
+
2225
+ #: admin.php:3142
2226
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2227
+ msgstr ""
2228
+
2229
+ #: admin.php:3106
2230
+ msgid "%s (%s used)"
2231
+ msgstr ""
2232
+
2233
+ #: admin.php:3109
2234
+ msgid "Plugins for debugging:"
2235
+ msgstr ""
2236
+
2237
+ #: admin.php:3106
2238
+ msgid "Free disk space in account:"
2239
+ msgstr ""
2240
+
2241
+ #: admin.php:330 admin.php:2404
2242
+ msgid "Current Status"
2243
+ msgstr ""
2244
+
2245
+ #: admin.php:338 admin.php:1429 admin.php:1668 admin.php:2405 admin.php:2863
2246
+ msgid "Existing Backups"
2247
+ msgstr ""
2248
+
2249
+ #: admin.php:2443 admin.php:5202
2250
+ msgid "This button is disabled because your backup directory is not writable (see the settings)."
2251
+ msgstr ""
2252
+
2253
+ #: admin.php:765
2254
+ msgid "Welcome to UpdraftPlus!"
2255
+ msgstr ""
2256
+
2257
+ #: admin.php:765
2258
+ msgid "To make a backup, just press the Backup Now button."
2259
+ msgstr ""
2260
+
2261
+ #: admin.php:765
2262
+ msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2263
+ msgstr ""
2264
+
2265
+ #: addons/moredatabase.php:338
2266
+ msgid "If you enter text here, it is used to encrypt database 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> 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)."
2267
+ msgstr ""
2268
+
2269
+ #: addons/moredatabase.php:236
2270
+ msgid "Table prefix"
2271
+ msgstr ""
2272
+
2273
+ #: addons/moredatabase.php:237
2274
+ msgid "Test connection..."
2275
+ msgstr ""
2276
+
2277
+ #: addons/moredatabase.php:250
2278
+ msgid "Testing..."
2279
+ msgstr ""
2280
+
2281
+ #: addons/moredatabase.php:153
2282
+ msgid "Backup non-WordPress tables contained in the same database as WordPress"
2283
+ msgstr ""
2284
+
2285
+ #: addons/moredatabase.php:154
2286
+ msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
2287
+ msgstr ""
2288
+
2289
+ #: addons/moredatabase.php:158
2290
+ msgid "Add an external database to backup..."
2291
+ msgstr ""
2292
+
2293
+ #: addons/moredatabase.php:230
2294
+ msgid "Backup external database"
2295
+ msgstr ""
2296
+
2297
+ #: addons/moredatabase.php:112
2298
+ msgid "%s table(s) found."
2299
+ msgstr ""
2300
+
2301
+ #: addons/moredatabase.php:118
2302
+ msgid "%s total table(s) found; %s with the indicated prefix."
2303
+ msgstr ""
2304
+
2305
+ #: addons/moredatabase.php:136
2306
+ msgid "Connection succeeded."
2307
+ msgstr ""
2308
+
2309
+ #: addons/moredatabase.php:138
2310
+ msgid "Connection failed."
2311
+ msgstr ""
2312
+
2313
+ #: addons/moredatabase.php:153
2314
+ msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
2315
+ msgstr ""
2316
+
2317
+ #: addons/moredatabase.php:70
2318
+ msgid "user"
2319
+ msgstr ""
2320
+
2321
+ #: addons/moredatabase.php:72
2322
+ msgid "host"
2323
+ msgstr ""
2324
+
2325
+ #: addons/moredatabase.php:74
2326
+ msgid "database name"
2327
+ msgstr ""
2328
+
2329
+ #: addons/moredatabase.php:85
2330
+ msgid "database connection attempt failed"
2331
+ msgstr ""
2332
+
2333
+ #: class-updraftplus.php:1250
2334
+ msgid "External database (%s)"
2335
+ msgstr ""
2336
+
2337
+ #: methods/googledrive.php:906
2338
+ msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2339
+ msgstr ""
2340
+
2341
+ #: methods/googledrive.php:381
2342
+ msgid "failed to access parent folder"
2343
+ msgstr ""
2344
+
2345
+ #: addons/googlecloud.php:559 addons/onedrive.php:592
2346
+ #: methods/googledrive.php:338
2347
+ msgid "However, subsequent access attempts failed:"
2348
+ msgstr ""
2349
+
2350
+ #: admin.php:4472
2351
+ msgid "External database"
2352
+ msgstr ""
2353
+
2354
+ #: admin.php:3968
2355
+ msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2356
+ msgstr ""
2357
+
2358
+ #: admin.php:3908
2359
+ msgid "Back up more databases"
2360
+ msgstr ""
2361
+
2362
+ #: admin.php:3854
2363
+ msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2364
+ msgstr ""
2365
+
2366
+ #: admin.php:3854
2367
+ msgid "It can also backup external databases."
2368
+ msgstr ""
2369
+
2370
+ #: admin.php:3866
2371
+ msgid "You can manually decrypt an encrypted database here."
2372
+ msgstr ""
2373
+
2374
+ #: admin.php:3884
2375
+ msgid "First, enter the decryption key"
2376
+ msgstr ""
2377
+
2378
+ #: admin.php:3766
2379
+ msgid "use UpdraftPlus Premium"
2380
+ msgstr ""
2381
+
2382
+ #: class-updraftplus.php:3543
2383
+ msgid "Decryption failed. The database file is encrypted."
2384
+ msgstr ""
2385
+
2386
+ #: admin.php:1280
2387
+ msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2388
+ msgstr ""
2389
+
2390
+ #: restorer.php:1618 restorer.php:1937 restorer.php:1974 restorer.php:1987
2391
+ msgid "An error occurred on the first %s command - aborting run"
2392
+ msgstr ""
2393
+
2394
+ #: backup.php:1353
2395
+ msgid "database connection attempt failed."
2396
+ msgstr ""
2397
+
2398
+ #: addons/moredatabase.php:93 backup.php:1353
2399
+ msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2400
+ msgstr ""
2401
+
2402
+ #: addons/google-enhanced.php:75
2403
+ msgid "In %s, path names are case sensitive."
2404
+ msgstr ""
2405
+
2406
+ #: addons/migrator.php:921
2407
+ msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2408
+ msgstr ""
2409
+
2410
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2411
+ msgid "Enter the path of the %s folder you wish to use here."
2412
+ msgstr ""
2413
+
2414
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2415
+ msgid "If the folder does not already exist, then it will be created."
2416
+ msgstr ""
2417
+
2418
+ #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2419
+ #: addons/onedrive.php:767
2420
+ msgid "e.g. %s"
2421
+ msgstr ""
2422
+
2423
+ #: addons/azure.php:522 addons/google-enhanced.php:73 addons/onedrive.php:767
2424
+ msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2425
+ msgstr ""
2426
+
2427
+ #: methods/openstack2.php:107
2428
+ msgid "Follow this link for more information"
2429
+ msgstr ""
2430
+
2431
+ #: methods/openstack2.php:107
2432
+ msgid "Tenant"
2433
+ msgstr ""
2434
+
2435
+ #: methods/openstack2.php:116
2436
+ msgid "Leave this blank, and a default will be chosen."
2437
+ msgstr ""
2438
+
2439
+ #: addons/azure.php:515 methods/openstack2.php:133
2440
+ msgid "Container"
2441
+ msgstr ""
2442
+
2443
+ #: methods/addon-base.php:106
2444
+ msgid "failed to list files"
2445
+ msgstr ""
2446
+
2447
+ #: methods/addon-base.php:208
2448
+ msgid "Failed to download"
2449
+ msgstr ""
2450
+
2451
+ #: methods/addon-base.php:194 methods/addon-base.php:214
2452
+ msgid "Failed to download %s"
2453
+ msgstr ""
2454
+
2455
+ #: methods/openstack2.php:94
2456
+ msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2457
+ msgstr ""
2458
+
2459
+ #: methods/openstack2.php:99 methods/openstack2.php:157
2460
+ msgid "authentication URI"
2461
+ msgstr ""
2462
+
2463
+ #: methods/addon-base.php:75 methods/addon-base.php:80
2464
+ msgid "Failed to upload %s"
2465
+ msgstr ""
2466
+
2467
+ #: methods/dropbox.php:513 methods/dropbox.php:515
2468
+ msgid "Success:"
2469
+ msgstr ""
2470
+
2471
+ #: methods/dropbox.php:443 methods/dropbox.php:444
2472
+ msgid "Dropbox"
2473
+ msgstr ""
2474
+
2475
+ #: addons/onedrive.php:773 methods/dropbox.php:444
2476
+ msgid "(You appear to be already authenticated)."
2477
+ msgstr ""
2478
+
2479
+ #: addons/onedrive.php:775 methods/dropbox.php:444
2480
+ 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 %s."
2481
+ msgstr ""
2482
+
2483
+ #: addons/onedrive.php:772 methods/dropbox.php:443
2484
+ msgid "Authenticate with %s"
2485
+ msgstr ""
2486
+
2487
+ #: methods/cloudfiles.php:409
2488
+ msgid "Error downloading remote file: Failed to download"
2489
+ msgstr ""
2490
+
2491
+ #: methods/openstack-base.php:305
2492
+ msgid "The %s object was not found"
2493
+ msgstr ""
2494
+
2495
+ #: methods/openstack-base.php:387
2496
+ msgid "%s error - we accessed the container, but failed to create a file within it"
2497
+ msgstr ""
2498
+
2499
+ #: methods/openstack-base.php:388 methods/openstack-base.php:393
2500
+ msgid "Region: %s"
2501
+ msgstr ""
2502
+
2503
+ #: methods/openstack-base.php:44 methods/openstack-base.php:228
2504
+ #: methods/openstack-base.php:297
2505
+ msgid "Could not access %s container"
2506
+ msgstr ""
2507
+
2508
+ #: addons/googlecloud.php:902 addons/onedrive.php:774 methods/dropbox.php:450
2509
+ #: methods/googledrive.php:955
2510
+ msgid "Account holder's name: %s."
2511
+ msgstr ""
2512
+
2513
+ #: methods/openstack-base.php:36 methods/openstack-base.php:100
2514
+ #: methods/openstack-base.php:107 methods/openstack-base.php:220
2515
+ #: methods/openstack-base.php:285
2516
+ msgid "%s error - failed to access the container"
2517
+ msgstr ""
2518
+
2519
+ #: methods/googledrive.php:935
2520
+ msgid "<strong>This is NOT a folder name</strong>."
2521
+ msgstr ""
2522
+
2523
+ #: methods/googledrive.php:935
2524
+ msgid "It is an ID number internal to Google Drive"
2525
+ msgstr ""
2526
+
2527
+ #: methods/googledrive.php:944
2528
+ msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2529
+ msgstr ""
2530
+
2531
+ #: addons/google-enhanced.php:72 addons/onedrive.php:766
2532
+ #: methods/googledrive.php:931 methods/googledrive.php:941
2533
+ msgid "Folder"
2534
+ msgstr ""
2535
+
2536
+ #: addons/googlecloud.php:579 methods/googledrive.php:358
2537
+ msgid "Name: %s."
2538
+ msgstr ""
2539
+
2540
+ #: addons/googlecloud.php:254 addons/onedrive.php:351
2541
+ #: methods/googledrive.php:863
2542
+ msgid "%s download: failed: file not found"
2543
+ msgstr ""
2544
+
2545
+ #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2546
+ msgid "This remote storage method (%s) requires PHP %s or later."
2547
+ msgstr ""
2548
+
2549
+ #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2550
+ msgid "You will need to ask your web hosting company to upgrade."
2551
+ msgstr ""
2552
+
2553
+ #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2554
+ msgid "Your %s version: %s."
2555
+ msgstr ""
2556
+
2557
+ #: methods/googledrive.php:157
2558
+ msgid "Google Drive list files: failed to access parent folder"
2559
+ msgstr ""
2560
+
2561
+ #: admin.php:5054
2562
+ msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2563
+ msgstr ""
2564
+
2565
+ #: admin.php:3111
2566
+ msgid "Fetch"
2567
+ msgstr ""
2568
+
2569
+ #: admin.php:3113
2570
+ msgid "Call"
2571
+ msgstr ""
2572
+
2573
+ #: addons/migrator.php:362 admin.php:2896 admin.php:3874
2574
+ msgid "This feature requires %s version %s or later"
2575
+ msgstr ""
2576
+
2577
+ #: restorer.php:2116
2578
+ msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2579
+ msgstr ""
2580
+
2581
+ #: restorer.php:106
2582
+ msgid "Failed to unpack the archive"
2583
+ msgstr ""
2584
+
2585
+ #: restorer.php:259
2586
+ msgid "%s files have been extracted"
2587
+ msgstr ""
2588
+
2589
+ #: class-updraftplus.php:923
2590
+ msgid "Error - failed to download the file"
2591
+ msgstr ""
2592
+
2593
+ #: admin.php:2880
2594
+ msgid "Rescan local folder for new backup sets"
2595
+ msgstr ""
2596
+
2597
+ #: udaddons/updraftplus-addons.php:208
2598
+ msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2599
+ msgstr ""
2600
+
2601
+ #: udaddons/updraftplus-addons.php:208
2602
+ msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
2603
+ msgstr ""
2604
+
2605
+ #: udaddons/updraftplus-addons.php:208
2606
+ msgid "It has been tested up to version %s."
2607
+ msgstr ""
2608
+
2609
+ #: addons/sftp.php:425
2610
+ msgid "password/key"
2611
+ msgstr ""
2612
+
2613
+ #: addons/sftp.php:47
2614
+ msgid "SCP/SFTP password/key"
2615
+ msgstr ""
2616
+
2617
+ #: addons/sftp.php:308
2618
+ msgid "The key provided was not in a valid format, or was corrupt."
2619
+ msgstr ""
2620
+
2621
+ #: addons/sftp.php:371
2622
+ msgid "Your login may be either password or key-based - you only need to enter one, not both."
2623
+ msgstr ""
2624
+
2625
+ #: addons/azure.php:508 addons/migrator.php:2198 addons/sftp.php:376
2626
+ #: admin.php:535
2627
+ msgid "Key"
2628
+ msgstr ""
2629
+
2630
+ #: addons/importer.php:256 admin.php:4513 class-updraftplus.php:2267
2631
+ msgid "Backup created by: %s."
2632
+ msgstr ""
2633
+
2634
+ #: admin.php:4519
2635
+ msgid "Files and database WordPress backup (created by %s)"
2636
+ msgstr ""
2637
+
2638
+ #: admin.php:4519
2639
+ msgid "Files backup (created by %s)"
2640
+ msgstr ""
2641
+
2642
+ #: admin.php:4464 admin.php:4515
2643
+ msgid "unknown source"
2644
+ msgstr ""
2645
+
2646
+ #: admin.php:4470
2647
+ msgid "Database (created by %s)"
2648
+ msgstr ""
2649
+
2650
+ #: admin.php:2881
2651
+ msgid "Rescan remote storage"
2652
+ msgstr ""
2653
+
2654
+ #: admin.php:2879
2655
+ msgid "Upload backup files"
2656
+ msgstr ""
2657
+
2658
+ #: admin.php:2055
2659
+ msgid "This backup was created by %s, and can be imported."
2660
+ msgstr ""
2661
+
2662
+ #: admin.php:794
2663
+ msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
2664
+ msgstr ""
2665
+
2666
+ #: admin.php:794
2667
+ msgid "Read this page for a guide to possible causes and how to fix it."
2668
+ msgstr ""
2669
+
2670
+ #: admin.php:499 admin.php:500 class-updraftplus.php:2274
2671
+ 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))."
2672
+ msgstr ""
2673
+
2674
+ #: admin.php:499
2675
+ msgid "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."
2676
+ msgstr ""
2677
+
2678
+ #: admin.php:500 class-updraftplus.php:2274
2679
+ msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2680
+ msgstr ""
2681
+
2682
+ #: admin.php:1293 admin.php:4516 restorer.php:1337
2683
+ msgid "Backup created by unknown source (%s) - cannot be restored."
2684
+ msgstr ""
2685
+
2686
+ #: restorer.php:749 restorer.php:797
2687
+ msgid "The WordPress content folder (wp-content) was not found in this zip file."
2688
+ msgstr ""
2689
+
2690
+ #: restorer.php:614
2691
+ msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2692
+ msgstr ""
2693
+
2694
+ #: methods/dropbox.php:281
2695
+ msgid "%s returned an unexpected HTTP response: %s"
2696
+ msgstr ""
2697
+
2698
+ #: addons/sftp.php:885
2699
+ msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2700
+ msgstr ""
2701
+
2702
+ #: methods/cloudfiles.php:234 methods/dropbox.php:262
2703
+ #: methods/openstack-base.php:95
2704
+ msgid "No settings were found"
2705
+ msgstr ""
2706
+
2707
+ #: class-updraftplus.php:2395
2708
+ msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2709
+ msgstr ""
2710
+
2711
+ #: admin.php:468
2712
+ msgid "Rescanning remote and local storage for backup sets..."
2713
+ msgstr ""
2714
+
2715
+ #: addons/googlecloud.php:865 addons/googlecloud.php:880
2716
+ #: addons/s3-enhanced.php:46 addons/s3-enhanced.php:60
2717
+ msgid "(Read more)"
2718
+ msgstr ""
2719
+
2720
+ #: addons/migrator.php:738
2721
+ msgid "Adjusting multisite paths"
2722
+ msgstr ""
2723
+
2724
+ #: addons/reporting.php:403
2725
+ msgid "Log all messages to syslog (only server admins are likely to want this)"
2726
+ msgstr ""
2727
+
2728
+ #: addons/morefiles.php:217
2729
+ msgid "Add another..."
2730
+ msgstr ""
2731
+
2732
+ #: addons/morefiles.php:308
2733
+ msgid "No backup of directory: there was nothing found to back up"
2734
+ msgstr ""
2735
+
2736
+ #: addons/moredatabase.php:229 addons/morefiles.php:212
2737
+ #: addons/morefiles.php:223
2738
+ msgid "Remove"
2739
+ msgstr ""
2740
+
2741
+ #: methods/s3.php:750
2742
+ msgid "Other %s FAQs."
2743
+ msgstr ""
2744
+
2745
+ #: admin.php:3968
2746
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
+ msgstr ""
2748
+
2749
+ #: addons/morefiles.php:262 admin.php:4106
2750
+ msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
2751
+ msgstr ""
2752
+
2753
+ #: restorer.php:2105
2754
+ msgid "Custom content type manager plugin data detected: clearing option cache"
2755
+ msgstr ""
2756
+
2757
+ #: methods/ftp.php:281
2758
+ msgid "encrypted FTP (explicit encryption)"
2759
+ msgstr ""
2760
+
2761
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1367
2762
+ msgid "Your web server's PHP installation has these functions disabled: %s."
2763
+ msgstr ""
2764
+
2765
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1368
2766
+ msgid "Your hosting company must enable these functions before %s can work."
2767
+ msgstr ""
2768
+
2769
+ #: methods/ftp.php:279
2770
+ msgid "regular non-encrypted FTP"
2771
+ msgstr ""
2772
+
2773
+ #: methods/ftp.php:280
2774
+ msgid "encrypted FTP (implicit encryption)"
2775
+ msgstr ""
2776
+
2777
+ #: restorer.php:1522
2778
+ msgid "Backup created by:"
2779
+ msgstr ""
2780
+
2781
+ #: udaddons/options.php:482
2782
+ msgid "Available to claim on this site"
2783
+ msgstr ""
2784
+
2785
+ #: udaddons/updraftplus-addons.php:229
2786
+ msgid "To maintain your access to support, please renew."
2787
+ msgstr ""
2788
+
2789
+ #: udaddons/updraftplus-addons.php:217
2790
+ msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
2791
+ msgstr ""
2792
+
2793
+ #: udaddons/updraftplus-addons.php:221
2794
+ msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
2795
+ msgstr ""
2796
+
2797
+ #: udaddons/updraftplus-addons.php:221 udaddons/updraftplus-addons.php:223
2798
+ msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2799
+ msgstr ""
2800
+
2801
+ #: udaddons/updraftplus-addons.php:223
2802
+ msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
2803
+ msgstr ""
2804
+
2805
+ #: udaddons/updraftplus-addons.php:227
2806
+ msgid "Your paid access to UpdraftPlus support has expired."
2807
+ msgstr ""
2808
+
2809
+ #: udaddons/updraftplus-addons.php:227
2810
+ msgid "To regain your access, please renew."
2811
+ msgstr ""
2812
+
2813
+ #: udaddons/updraftplus-addons.php:229
2814
+ msgid "Your paid access to UpdraftPlus support will soon expire."
2815
+ msgstr ""
2816
+
2817
+ #: udaddons/updraftplus-addons.php:180
2818
+ msgid "Dismiss from main dashboard (for %s weeks)"
2819
+ msgstr ""
2820
+
2821
+ #: udaddons/updraftplus-addons.php:215
2822
+ msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
2823
+ msgstr ""
2824
+
2825
+ #: udaddons/updraftplus-addons.php:215 udaddons/updraftplus-addons.php:217
2826
+ msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2827
+ msgstr ""
2828
+
2829
+ #: class-updraftplus.php:3790
2830
+ msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
+ msgstr ""
2832
+
2833
+ #: class-updraftplus.php:3797 class-updraftplus.php:3818
2834
+ msgid "The attempt to undo the double-compression failed."
2835
+ msgstr ""
2836
+
2837
+ #: class-updraftplus.php:3820
2838
+ msgid "The attempt to undo the double-compression succeeded."
2839
+ msgstr ""
2840
+
2841
+ #: admin.php:1441
2842
+ msgid "Constants"
2843
+ msgstr ""
2844
+
2845
+ #: backup.php:1566
2846
+ msgid "Failed to open database file for reading:"
2847
+ msgstr ""
2848
+
2849
+ #: backup.php:1399
2850
+ msgid "please wait for the rescheduled attempt"
2851
+ msgstr ""
2852
+
2853
+ #: backup.php:1401
2854
+ msgid "No database tables found"
2855
+ msgstr ""
2856
+
2857
+ #: addons/reporting.php:185
2858
+ msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2859
+ msgstr ""
2860
+
2861
+ #: restorer.php:2003
2862
+ msgid "Database queries processed: %d in %.2f seconds"
2863
+ msgstr ""
2864
+
2865
+ #: addons/migrator.php:1237
2866
+ msgid "Searching and replacing reached row: %d"
2867
+ msgstr ""
2868
+
2869
+ #: addons/onedrive.php:91 methods/dropbox.php:176
2870
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
+ msgstr ""
2872
+
2873
+ #: addons/migrator.php:661
2874
+ msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2875
+ msgstr ""
2876
+
2877
+ #: udaddons/updraftplus-addons.php:391 udaddons/updraftplus-addons.php:396
2878
+ msgid "Errors occurred:"
2879
+ msgstr ""
2880
+
2881
+ #: admin.php:4727
2882
+ msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
+ msgstr ""
2884
+
2885
+ #: admin.php:4012
2886
+ msgid "See this FAQ also."
2887
+ msgstr ""
2888
+
2889
+ #: admin.php:3814
2890
+ msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
2891
+ msgstr ""
2892
+
2893
+ #: admin.php:2969
2894
+ msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr ""
2896
+
2897
+ #: admin.php:1264
2898
+ msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
+ msgstr ""
2900
+
2901
+ #: restorer.php:605
2902
+ msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
+ msgstr ""
2904
+
2905
+ #: admin.php:769 class-updraftplus.php:568
2906
+ 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 recommended value is %s seconds or more)"
2907
+ msgstr ""
2908
+
2909
+ #: addons/migrator.php:669
2910
+ msgid "Replacing in blogs/site table: from: %s to: %s"
2911
+ msgstr ""
2912
+
2913
+ #: addons/migrator.php:247
2914
+ msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
2915
+ msgstr ""
2916
+
2917
+ #: addons/migrator.php:260
2918
+ msgid "%s: Skipping cache file (does not already exist)"
2919
+ msgstr ""
2920
+
2921
+ #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
2922
+ #: includes/ftp.class.php:47
2923
+ msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
+ msgstr ""
2925
+
2926
+ #: admin.php:5062
2927
+ msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
+ msgstr ""
2929
+
2930
+ #: admin.php:2247 admin.php:2257
2931
+ msgid "Restore failed..."
2932
+ msgstr ""
2933
+
2934
+ #: addons/moredatabase.php:125 admin.php:1514
2935
+ msgid "Messages:"
2936
+ msgstr ""
2937
+
2938
+ #: restorer.php:1884
2939
+ msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
+ msgstr ""
2941
+
2942
+ #: restorer.php:385
2943
+ msgid "The directory does not exist"
2944
+ msgstr ""
2945
+
2946
+ #: addons/cloudfiles-enhanced.php:247
2947
+ msgid "New User's Username"
2948
+ msgstr ""
2949
+
2950
+ #: addons/cloudfiles-enhanced.php:248
2951
+ msgid "New User's Email Address"
2952
+ msgstr ""
2953
+
2954
+ #: addons/cloudfiles-enhanced.php:225
2955
+ msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
+ msgstr ""
2957
+
2958
+ #: addons/cloudfiles-enhanced.php:231
2959
+ msgid "US or UK Rackspace Account"
2960
+ msgstr ""
2961
+
2962
+ #: addons/cloudfiles-enhanced.php:245
2963
+ msgid "Admin Username"
2964
+ msgstr ""
2965
+
2966
+ #: addons/cloudfiles-enhanced.php:246
2967
+ msgid "Admin API Key"
2968
+ msgstr ""
2969
+
2970
+ #: addons/cloudfiles-enhanced.php:55
2971
+ msgid "You need to enter a new username"
2972
+ msgstr ""
2973
+
2974
+ #: addons/cloudfiles-enhanced.php:59
2975
+ msgid "You need to enter a container"
2976
+ msgstr ""
2977
+
2978
+ #: addons/cloudfiles-enhanced.php:64
2979
+ msgid "You need to enter a valid new email address"
2980
+ msgstr ""
2981
+
2982
+ #: addons/cloudfiles-enhanced.php:152
2983
+ msgid "Conflict: that user or email address already exists"
2984
+ msgstr ""
2985
+
2986
+ #: addons/cloudfiles-enhanced.php:154 addons/cloudfiles-enhanced.php:158
2987
+ #: addons/cloudfiles-enhanced.php:163 addons/cloudfiles-enhanced.php:184
2988
+ #: addons/cloudfiles-enhanced.php:192 addons/cloudfiles-enhanced.php:197
2989
+ msgid "Cloud Files operation failed (%s)"
2990
+ msgstr ""
2991
+
2992
+ #: addons/cloudfiles-enhanced.php:209 addons/s3-enhanced.php:294
2993
+ msgid "Username: %s"
2994
+ msgstr ""
2995
+
2996
+ #: addons/cloudfiles-enhanced.php:209
2997
+ msgid "Password: %s"
2998
+ msgstr ""
2999
+
3000
+ #: addons/cloudfiles-enhanced.php:209
3001
+ msgid "API Key: %s"
3002
+ msgstr ""
3003
+
3004
+ #: addons/cloudfiles-enhanced.php:222
3005
+ msgid "Create new API user and container"
3006
+ msgstr ""
3007
+
3008
+ #: addons/cloudfiles-enhanced.php:26
3009
+ msgid "Rackspace Cloud Files, enhanced"
3010
+ msgstr ""
3011
+
3012
+ #: addons/cloudfiles-enhanced.php:27
3013
+ msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
+ msgstr ""
3015
+
3016
+ #: addons/cloudfiles-enhanced.php:38
3017
+ msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
+ msgstr ""
3019
+
3020
+ #: addons/cloudfiles-enhanced.php:47
3021
+ msgid "You need to enter an admin username"
3022
+ msgstr ""
3023
+
3024
+ #: addons/cloudfiles-enhanced.php:51
3025
+ msgid "You need to enter an admin API key"
3026
+ msgstr ""
3027
+
3028
+ #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:103
3029
+ msgid "Northern Virginia (IAD)"
3030
+ msgstr ""
3031
+
3032
+ #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:104
3033
+ msgid "Hong Kong (HKG)"
3034
+ msgstr ""
3035
+
3036
+ #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:105
3037
+ msgid "London (LON)"
3038
+ msgstr ""
3039
+
3040
+ #: methods/cloudfiles-new.php:119
3041
+ msgid "Cloud Files Username"
3042
+ msgstr ""
3043
+
3044
+ #: methods/cloudfiles-new.php:122
3045
+ msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr ""
3047
+
3048
+ #: methods/cloudfiles-new.php:127
3049
+ msgid "Cloud Files API Key"
3050
+ msgstr ""
3051
+
3052
+ #: addons/cloudfiles-enhanced.php:269 methods/cloudfiles-new.php:132
3053
+ msgid "Cloud Files Container"
3054
+ msgstr ""
3055
+
3056
+ #: methods/cloudfiles-new.php:85
3057
+ msgid "US or UK-based Rackspace Account"
3058
+ msgstr ""
3059
+
3060
+ #: methods/cloudfiles-new.php:87
3061
+ msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
+ msgstr ""
3063
+
3064
+ #: addons/cloudfiles-enhanced.php:250 methods/cloudfiles-new.php:95
3065
+ msgid "Cloud Files Storage Region"
3066
+ msgstr ""
3067
+
3068
+ #: addons/cloudfiles-enhanced.php:254 methods/cloudfiles-new.php:100
3069
+ msgid "Dallas (DFW) (default)"
3070
+ msgstr ""
3071
+
3072
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:101
3073
+ msgid "Sydney (SYD)"
3074
+ msgstr ""
3075
+
3076
+ #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:102
3077
+ msgid "Chicago (ORD)"
3078
+ msgstr ""
3079
+
3080
+ #: addons/cloudfiles-enhanced.php:149 addons/s3-enhanced.php:197
3081
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
+ #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
+ #: methods/openstack2.php:25
3084
+ msgid "Authorisation failed (check your credentials)"
3085
+ msgstr ""
3086
+
3087
+ #: addons/cloudfiles-enhanced.php:232 methods/cloudfiles-new.php:85
3088
+ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr ""
3090
+
3091
+ #: methods/updraftvault.php:509 udaddons/options.php:265
3092
+ msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr ""
3094
+
3095
+ #: admin.php:513 central/bootstrap.php:443
3096
+ msgid "Create"
3097
+ msgstr ""
3098
+
3099
+ #: admin.php:475
3100
+ msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr ""
3102
+
3103
+ #: admin.php:476
3104
+ msgid "Trying..."
3105
+ msgstr ""
3106
+
3107
+ #: class-updraftplus.php:1262
3108
+ msgid "(when decrypted)"
3109
+ msgstr ""
3110
+
3111
+ #: admin.php:486 admin.php:5004
3112
+ msgid "Error data:"
3113
+ msgstr ""
3114
+
3115
+ #: admin.php:4678
3116
+ msgid "Backup does not exist in the backup history"
3117
+ msgstr ""
3118
+
3119
+ #: admin.php:3176
3120
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3121
+ msgstr ""
3122
+
3123
+ #: restorer.php:1590
3124
+ msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr ""
3126
+
3127
+ #: restorer.php:1471
3128
+ 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 (%s)"
3129
+ msgstr ""
3130
+
3131
+ #: restorer.php:1515
3132
+ msgid "<strong>Backup of:</strong> %s"
3133
+ msgstr ""
3134
+
3135
+ #: restorer.php:1297
3136
+ msgid "New table prefix: %s"
3137
+ msgstr ""
3138
+
3139
+ #: restorer.php:956 restorer.php:970
3140
+ msgid "%s: This directory already exists, and will be replaced"
3141
+ msgstr ""
3142
+
3143
+ #: restorer.php:986
3144
+ msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3145
+ msgstr ""
3146
+
3147
+ #: restorer.php:103
3148
+ msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr ""
3150
+
3151
+ #: restorer.php:96
3152
+ msgid "Moving old data out of the way..."
3153
+ msgstr ""
3154
+
3155
+ #: restorer.php:100
3156
+ msgid "Could not move old files out of the way."
3157
+ msgstr ""
3158
+
3159
+ #: restorer.php:102
3160
+ msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr ""
3162
+
3163
+ #: addons/reporting.php:380
3164
+ msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3165
+ msgstr ""
3166
+
3167
+ #: addons/reporting.php:394
3168
+ msgid "Add another address..."
3169
+ msgstr ""
3170
+
3171
+ #: addons/reporting.php:287
3172
+ msgid " (with errors (%s))"
3173
+ msgstr ""
3174
+
3175
+ #: addons/reporting.php:289
3176
+ msgid " (with warnings (%s))"
3177
+ msgstr ""
3178
+
3179
+ #: addons/reporting.php:319
3180
+ msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3181
+ msgstr ""
3182
+
3183
+ #: class-updraftplus.php:1231 class-updraftplus.php:1233
3184
+ msgid "files: %s"
3185
+ msgstr ""
3186
+
3187
+ #: class-updraftplus.php:1258 class-updraftplus.php:1263
3188
+ msgid "%s checksum: %s"
3189
+ msgstr ""
3190
+
3191
+ #: addons/reporting.php:355
3192
+ msgid "Email reports"
3193
+ msgstr ""
3194
+
3195
+ #: addons/reporting.php:165
3196
+ msgid "Errors"
3197
+ msgstr ""
3198
+
3199
+ #: addons/reporting.php:180
3200
+ msgid "Warnings"
3201
+ msgstr ""
3202
+
3203
+ #: addons/reporting.php:189
3204
+ msgid "Time taken:"
3205
+ msgstr ""
3206
+
3207
+ #: addons/reporting.php:190 admin.php:4291
3208
+ msgid "Uploaded to:"
3209
+ msgstr ""
3210
+
3211
+ #: addons/reporting.php:235
3212
+ msgid "Debugging information"
3213
+ msgstr ""
3214
+
3215
+ #: addons/reporting.php:123
3216
+ msgid "%d errors, %d warnings"
3217
+ msgstr ""
3218
+
3219
+ #: addons/reporting.php:137
3220
+ msgid "%d hours, %d minutes, %d seconds"
3221
+ msgstr ""
3222
+
3223
+ #: addons/reporting.php:142
3224
+ msgid "Backup Report"
3225
+ msgstr ""
3226
+
3227
+ #: addons/reporting.php:150
3228
+ msgid "Backup began:"
3229
+ msgstr ""
3230
+
3231
+ #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:151
3232
+ msgid "Contains:"
3233
+ msgstr ""
3234
+
3235
+ #: addons/reporting.php:162
3236
+ msgid "Errors / warnings:"
3237
+ msgstr ""
3238
+
3239
+ #: addons/onedrive.php:549 methods/dropbox.php:496
3240
+ msgid "%s authentication"
3241
+ msgstr ""
3242
+
3243
+ #: addons/onedrive.php:549 class-updraftplus.php:309 methods/dropbox.php:496
3244
+ #: methods/dropbox.php:510 methods/dropbox.php:605
3245
+ msgid "%s error: %s"
3246
+ msgstr ""
3247
+
3248
+ #: addons/googlecloud.php:815 methods/dropbox.php:419
3249
+ msgid "%s logo"
3250
+ msgstr ""
3251
+
3252
+ #: methods/email.php:73
3253
+ msgid "Your site's admin email address (%s) will be used."
3254
+ msgstr ""
3255
+
3256
+ #: methods/email.php:74
3257
+ msgid "For more options, use the \"%s\" add-on."
3258
+ msgstr ""
3259
+
3260
+ #: methods/s3.php:273
3261
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
+ msgstr ""
3263
+
3264
+ #: methods/dropbox.php:195
3265
+ msgid "%s did not return the expected response - check your log file for more details"
3266
+ msgstr ""
3267
+
3268
+ #: admin.php:522 methods/updraftvault.php:260 methods/updraftvault.php:305
3269
+ #: udaddons/options.php:244
3270
+ msgid "Connect"
3271
+ msgstr ""
3272
+
3273
+ #: admin.php:3936
3274
+ msgid "For more reporting features, use the Reporting add-on."
3275
+ msgstr ""
3276
+
3277
+ #: class-updraftplus.php:3616
3278
+ msgid "(version: %s)"
3279
+ msgstr ""
3280
+
3281
+ #: addons/reporting.php:427 admin.php:466
3282
+ msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr ""
3284
+
3285
+ #: addons/reporting.php:427 admin.php:465
3286
+ msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr ""
3288
+
3289
+ #: backup.php:844
3290
+ msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr ""
3292
+
3293
+ #: addons/reporting.php:232 backup.php:880
3294
+ msgid "The log file has been attached to this email."
3295
+ msgstr ""
3296
+
3297
+ #: backup.php:886
3298
+ msgid "Backed up: %s"
3299
+ msgstr ""
3300
+
3301
+ #: backup.php:925
3302
+ msgid "Backup contains:"
3303
+ msgstr ""
3304
+
3305
+ #: addons/reporting.php:149 backup.php:926
3306
+ msgid "Latest status:"
3307
+ msgstr ""
3308
+
3309
+ #: admin.php:155 backup.php:836
3310
+ msgid "Files and database"
3311
+ msgstr ""
3312
+
3313
+ #: backup.php:838
3314
+ msgid "Files (database backup has not completed)"
3315
+ msgstr ""
3316
+
3317
+ #: backup.php:838
3318
+ msgid "Files only (database was not part of this particular schedule)"
3319
+ msgstr ""
3320
+
3321
+ #: backup.php:841
3322
+ msgid "Database (files backup has not completed)"
3323
+ msgstr ""
3324
+
3325
+ #: backup.php:841
3326
+ msgid "Database only (files were not part of this particular schedule)"
3327
+ msgstr ""
3328
+
3329
+ #: options.php:185
3330
+ msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
+ msgstr ""
3332
+
3333
+ #: options.php:185
3334
+ msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
+ msgstr ""
3336
+
3337
+ #: options.php:185
3338
+ msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
3339
+ msgstr ""
3340
+
3341
+ #: options.php:185
3342
+ msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr ""
3344
+
3345
+ #: options.php:185
3346
+ msgid "UpdraftPlus warning:"
3347
+ msgstr ""
3348
+
3349
+ #: udaddons/options.php:488
3350
+ msgid "(or connect using the form on this page if you have already purchased it)"
3351
+ msgstr ""
3352
+
3353
+ #: udaddons/options.php:457
3354
+ msgid "You've got it"
3355
+ msgstr ""
3356
+
3357
+ #: udaddons/options.php:459
3358
+ msgid "Your version: %s"
3359
+ msgstr ""
3360
+
3361
+ #: udaddons/options.php:461 udaddons/options.php:463
3362
+ msgid "latest"
3363
+ msgstr ""
3364
+
3365
+ #: udaddons/options.php:471
3366
+ msgid "please follow this link to update the plugin in order to get it"
3367
+ msgstr ""
3368
+
3369
+ #: udaddons/options.php:474
3370
+ msgid "please follow this link to update the plugin in order to activate it"
3371
+ msgstr ""
3372
+
3373
+ #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3374
+ msgid "UpdraftPlus Addons"
3375
+ msgstr ""
3376
+
3377
+ #: udaddons/options.php:381
3378
+ msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3379
+ msgstr ""
3380
+
3381
+ #: udaddons/options.php:423
3382
+ msgid "UpdraftPlus Support"
3383
+ msgstr ""
3384
+
3385
+ #: udaddons/updraftplus-addons.php:682
3386
+ msgid "UpdraftPlus.Com responded, but we did not understand the response"
3387
+ msgstr ""
3388
+
3389
+ #: methods/updraftvault.php:555 udaddons/updraftplus-addons.php:725
3390
+ msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
+ msgstr ""
3392
+
3393
+ #: methods/updraftvault.php:596 udaddons/updraftplus-addons.php:765
3394
+ msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
+ msgstr ""
3396
+
3397
+ #: methods/updraftvault.php:582 methods/updraftvault.php:600
3398
+ #: udaddons/updraftplus-addons.php:768
3399
+ msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
+ msgstr ""
3401
+
3402
+ #: udaddons/options.php:94
3403
+ msgid "An update is available for UpdraftPlus - please follow this link to get it."
3404
+ msgstr ""
3405
+
3406
+ #: udaddons/updraftplus-addons.php:680
3407
+ msgid "We failed to successfully connect to UpdraftPlus.Com"
3408
+ msgstr ""
3409
+
3410
+ #: admin.php:3917 methods/email.php:74
3411
+ msgid "Reporting"
3412
+ msgstr ""
3413
+
3414
+ #: admin.php:1412
3415
+ msgid "Options (raw)"
3416
+ msgstr ""
3417
+
3418
+ #: addons/reporting.php:425 admin.php:464
3419
+ msgid "Send a report only when there are warnings/errors"
3420
+ msgstr ""
3421
+
3422
+ #: restorer.php:1533
3423
+ msgid "Content URL:"
3424
+ msgstr ""
3425
+
3426
+ #: restorer.php:100
3427
+ msgid "You should check the file ownerships and permissions in your WordPress installation"
3428
+ msgstr ""
3429
+
3430
+ #: admin.php:3840
3431
+ msgid "See also the \"More Files\" add-on from our shop."
3432
+ msgstr ""
3433
+
3434
+ #: backup.php:2931 class-updraftplus.php:588
3435
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
+ msgstr ""
3437
+
3438
+ #: class-updraftplus.php:565
3439
+ 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)"
3440
+ msgstr ""
3441
+
3442
+ #: udaddons/options.php:484
3443
+ msgid "You have an inactive purchase"
3444
+ msgstr ""
3445
+
3446
+ #: udaddons/options.php:482 udaddons/options.php:484
3447
+ msgid "activate it on this site"
3448
+ msgstr ""
3449
+
3450
+ #: udaddons/options.php:488
3451
+ msgid "Get it from the UpdraftPlus.Com Store"
3452
+ msgstr ""
3453
+
3454
+ #: udaddons/options.php:489
3455
+ msgid "Buy It"
3456
+ msgstr ""
3457
+
3458
+ #: udaddons/options.php:547
3459
+ msgid "Manage Addons"
3460
+ msgstr ""
3461
+
3462
+ #: udaddons/options.php:340
3463
+ msgid "An unknown response was received. Response was:"
3464
+ msgstr ""
3465
+
3466
+ #: udaddons/options.php:407
3467
+ msgid "An error occurred when trying to retrieve your add-ons."
3468
+ msgstr ""
3469
+
3470
+ #: udaddons/options.php:425
3471
+ msgid "Need to get support?"
3472
+ msgstr ""
3473
+
3474
+ #: udaddons/options.php:425
3475
+ msgid "Go here"
3476
+ msgstr ""
3477
+
3478
+ #: udaddons/options.php:465
3479
+ msgid "(apparently a pre-release or withdrawn release)"
3480
+ msgstr ""
3481
+
3482
+ #: udaddons/options.php:471
3483
+ msgid "Available for this site (via your all-addons purchase)"
3484
+ msgstr ""
3485
+
3486
+ #: udaddons/options.php:474
3487
+ msgid "Assigned to this site"
3488
+ msgstr ""
3489
+
3490
+ #: udaddons/options.php:242
3491
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3492
+ msgstr ""
3493
+
3494
+ #: udaddons/options.php:271
3495
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
3496
+ msgstr ""
3497
+
3498
+ #: udaddons/options.php:272
3499
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
3500
+ msgstr ""
3501
+
3502
+ #: udaddons/options.php:281
3503
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
3504
+ msgstr ""
3505
+
3506
+ #: udaddons/options.php:290
3507
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
3508
+ msgstr ""
3509
+
3510
+ #: udaddons/options.php:337
3511
+ msgid "Please wait whilst we make the claim..."
3512
+ msgstr ""
3513
+
3514
+ #: udaddons/options.php:339
3515
+ msgid "Claim not granted - your account login details were wrong"
3516
+ msgstr ""
3517
+
3518
+ #: udaddons/options.php:120
3519
+ msgid "Your web server's version of PHP is too old ("
3520
+ msgstr ""
3521
+
3522
+ #: udaddons/options.php:141
3523
+ msgid "Connect with your UpdraftPlus.Com account"
3524
+ msgstr ""
3525
+
3526
+ #: udaddons/options.php:172
3527
+ msgid "Not yet got an account (it's free)? Go get one!"
3528
+ msgstr ""
3529
+
3530
+ #: udaddons/options.php:183
3531
+ msgid "Forgotten your details?"
3532
+ msgstr ""
3533
+
3534
+ #: udaddons/options.php:100
3535
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
3536
+ msgstr ""
3537
+
3538
+ #: udaddons/options.php:100 udaddons/options.php:102
3539
+ msgid "Go here to connect."
3540
+ msgstr ""
3541
+
3542
+ #: udaddons/options.php:109
3543
+ msgid "UpdraftPlus is not yet activated."
3544
+ msgstr ""
3545
+
3546
+ #: udaddons/options.php:110
3547
+ msgid "Go here to activate it."
3548
+ msgstr ""
3549
+
3550
+ #: udaddons/options.php:113
3551
+ msgid "UpdraftPlus is not yet installed."
3552
+ msgstr ""
3553
+
3554
+ #: udaddons/options.php:113
3555
+ msgid "Go here to begin installing it."
3556
+ msgstr ""
3557
+
3558
+ #: udaddons/options.php:114
3559
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
3560
+ msgstr ""
3561
+
3562
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3563
+ msgid "Your web-server does not have the %s module installed."
3564
+ msgstr ""
3565
+
3566
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3567
+ msgid "Without it, encryption will be a lot slower."
3568
+ msgstr ""
3569
+
3570
+ #: admin.php:2902
3571
+ msgid "Drop backup files here"
3572
+ msgstr ""
3573
+
3574
+ #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
+ msgstr ""
3577
+
3578
+ #: class-updraftplus.php:3472
3579
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
+ msgstr ""
3581
+
3582
+ #: class-updraftplus.php:3482
3583
+ msgid "Check out WordShell"
3584
+ msgstr ""
3585
+
3586
+ #: class-updraftplus.php:3482
3587
+ msgid "manage WordPress from the command line - huge time-saver"
3588
+ msgstr ""
3589
+
3590
+ #: admin.php:472
3591
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
+ msgstr ""
3593
+
3594
+ #: admin.php:474
3595
+ msgid "The web server returned an error code (try again, or check your web server logs)"
3596
+ msgstr ""
3597
+
3598
+ #: admin.php:470
3599
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
+ msgstr ""
3601
+
3602
+ #: restorer.php:1527
3603
+ msgid "Site home:"
3604
+ msgstr ""
3605
+
3606
+ #: addons/morestorage.php:78
3607
+ msgid "Remote Storage Options"
3608
+ msgstr ""
3609
+
3610
+ #: addons/autobackup.php:249 addons/autobackup.php:985
3611
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
3612
+ msgstr ""
3613
+
3614
+ #: addons/autobackup.php:288 addons/autobackup.php:381
3615
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
3616
+ msgstr ""
3617
+
3618
+ #: addons/azure.php:349 methods/stream-base.php:125 methods/stream-base.php:130
3619
+ msgid "Upload failed"
3620
+ msgstr ""
3621
+
3622
+ #: admin.php:3806
3623
+ msgid "You can send a backup to more than one destination with an add-on."
3624
+ msgstr ""
3625
+
3626
+ #: admin.php:3394
3627
+ 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."
3628
+ msgstr ""
3629
+
3630
+ #: admin.php:3292
3631
+ msgid "(%s%%, file %s of %s)"
3632
+ msgstr ""
3633
+
3634
+ #: addons/sftp.php:483
3635
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
3636
+ msgstr ""
3637
+
3638
+ #: addons/sftp.php:485
3639
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
3640
+ msgstr ""
3641
+
3642
+ #: addons/autobackup.php:249 addons/autobackup.php:989 addons/lockadmin.php:132
3643
+ msgid "Read more about how this works..."
3644
+ msgstr ""
3645
+
3646
+ #: addons/sftp.php:402
3647
+ msgid "Use SCP instead of SFTP"
3648
+ msgstr ""
3649
+
3650
+ #: addons/sftp.php:45
3651
+ msgid "SCP/SFTP host setting"
3652
+ msgstr ""
3653
+
3654
+ #: addons/sftp.php:46
3655
+ msgid "SCP/SFTP user setting"
3656
+ msgstr ""
3657
+
3658
+ #: methods/email.php:45
3659
+ msgid "Backup is of: %s."
3660
+ msgstr ""
3661
+
3662
+ #: methods/email.php:58
3663
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
+ msgstr ""
3665
+
3666
+ #: admin.php:559
3667
+ msgid "%s settings test result:"
3668
+ msgstr ""
3669
+
3670
+ #: admin.php:4584
3671
+ 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."
3672
+ msgstr ""
3673
+
3674
+ #: admin.php:4582 admin.php:4584
3675
+ msgid "(Not finished)"
3676
+ msgstr ""
3677
+
3678
+ #: admin.php:3995
3679
+ 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)."
3680
+ msgstr ""
3681
+
3682
+ #: admin.php:3995
3683
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
+ msgstr ""
3685
+
3686
+ #: admin.php:3301
3687
+ msgid "Waiting until scheduled time to retry because of errors"
3688
+ msgstr ""
3689
+
3690
+ #: admin.php:3306
3691
+ msgid "Backup finished"
3692
+ msgstr ""
3693
+
3694
+ #: admin.php:3356 central/bootstrap.php:405 central/bootstrap.php:412
3695
+ #: methods/updraftvault.php:340 methods/updraftvault.php:420
3696
+ msgid "Unknown"
3697
+ msgstr ""
3698
+
3699
+ #: admin.php:3373
3700
+ msgid "next resumption: %d (after %ss)"
3701
+ msgstr ""
3702
+
3703
+ #: admin.php:3374
3704
+ msgid "last activity: %ss ago"
3705
+ msgstr ""
3706
+
3707
+ #: admin.php:3389
3708
+ msgid "Job ID: %s"
3709
+ msgstr ""
3710
+
3711
+ #: admin.php:3333
3712
+ msgid "table: %s"
3713
+ msgstr ""
3714
+
3715
+ #: admin.php:3320
3716
+ msgid "Created database backup"
3717
+ msgstr ""
3718
+
3719
+ #: admin.php:3346
3720
+ msgid "Encrypting database"
3721
+ msgstr ""
3722
+
3723
+ #: admin.php:3354
3724
+ msgid "Encrypted database"
3725
+ msgstr ""
3726
+
3727
+ #: admin.php:3285
3728
+ msgid "Uploading files to remote storage"
3729
+ msgstr ""
3730
+
3731
+ #: admin.php:3297
3732
+ msgid "Pruning old backup sets"
3733
+ msgstr ""
3734
+
3735
+ #: admin.php:3266
3736
+ msgid "Creating file backup zips"
3737
+ msgstr ""
3738
+
3739
+ #: admin.php:3279
3740
+ msgid "Created file backup zips"
3741
+ msgstr ""
3742
+
3743
+ #: admin.php:3331
3744
+ msgid "Creating database backup"
3745
+ msgstr ""
3746
+
3747
+ #: admin.php:3261
3748
+ msgid "Backup begun"
3749
+ msgstr ""
3750
+
3751
+ #: admin.php:2789
3752
+ msgid "Backups in progress:"
3753
+ msgstr ""
3754
+
3755
+ #: admin.php:773
3756
+ 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."
3757
+ msgstr ""
3758
+
3759
+ #: restorer.php:580 restorer.php:587
3760
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
+ msgstr ""
3762
+
3763
+ #: restorer.php:580
3764
+ msgid "folder"
3765
+ msgstr ""
3766
+
3767
+ #: restorer.php:587
3768
+ msgid "file"
3769
+ msgstr ""
3770
+
3771
+ #: class-updraftplus.php:2492
3772
+ msgid "The backup has not finished; a resumption is scheduled"
3773
+ msgstr ""
3774
+
3775
+ #: class-updraftplus.php:1502
3776
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
+ msgstr ""
3778
+
3779
+ #: addons/googlecloud.php:337 addons/onedrive.php:687
3780
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
+ #: methods/googledrive.php:239
3782
+ 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)."
3783
+ msgstr ""
3784
+
3785
+ #: admin.php:2370
3786
+ 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)."
3787
+ msgstr ""
3788
+
3789
+ #: addons/autobackup.php:113 addons/autobackup.php:972
3790
+ msgid "UpdraftPlus Automatic Backups"
3791
+ msgstr ""
3792
+
3793
+ #: addons/autobackup.php:993
3794
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
3795
+ msgstr ""
3796
+
3797
+ #: addons/autobackup.php:994 admin.php:515
3798
+ msgid "Proceed with update"
3799
+ msgstr ""
3800
+
3801
+ #: addons/autobackup.php:292 addons/autobackup.php:388
3802
+ msgid "Starting automatic backup..."
3803
+ msgstr ""
3804
+
3805
+ #: addons/autobackup.php:342
3806
+ msgid "plugins"
3807
+ msgstr ""
3808
+
3809
+ #: addons/autobackup.php:349
3810
+ msgid "themes"
3811
+ msgstr ""
3812
+
3813
+ #: addons/autobackup.php:370
3814
+ msgid "You do not have sufficient permissions to update this site."
3815
+ msgstr ""
3816
+
3817
+ #: addons/autobackup.php:381
3818
+ msgid "Creating database backup with UpdraftPlus..."
3819
+ msgstr ""
3820
+
3821
+ #: addons/autobackup.php:390 addons/autobackup.php:518
3822
+ #: addons/autobackup.php:569
3823
+ msgid "Automatic Backup"
3824
+ msgstr ""
3825
+
3826
+ #: addons/autobackup.php:443
3827
+ msgid "Creating backup with UpdraftPlus..."
3828
+ msgstr ""
3829
+
3830
+ #: addons/autobackup.php:471
3831
+ msgid "Errors have occurred:"
3832
+ msgstr ""
3833
+
3834
+ #: addons/autobackup.php:249
3835
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3836
+ msgstr ""
3837
+
3838
+ #: addons/autobackup.php:288
3839
+ msgid "Creating %s and database backup with UpdraftPlus..."
3840
+ msgstr ""
3841
+
3842
+ #: addons/morefiles.php:106
3843
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
3844
+ msgstr ""
3845
+
3846
+ #: addons/morefiles.php:116
3847
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
3848
+ msgstr ""
3849
+
3850
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3851
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
3852
+ msgstr ""
3853
+
3854
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3855
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
3856
+ msgstr ""
3857
+
3858
+ #: admin.php:2171 admin.php:2561
3859
+ msgid "Support"
3860
+ msgstr ""
3861
+
3862
+ #: admin.php:2174
3863
+ msgid "More plugins"
3864
+ msgstr ""
3865
+
3866
+ #: class-updraftplus.php:3649
3867
+ 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."
3868
+ msgstr ""
3869
+
3870
+ #: class-updraftplus.php:3752
3871
+ msgid "This database backup is missing core WordPress tables: %s"
3872
+ msgstr ""
3873
+
3874
+ #: class-updraftplus.php:3757
3875
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
+ msgstr ""
3877
+
3878
+ #: class-updraftplus.php:3565
3879
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
+ msgstr ""
3881
+
3882
+ #: addons/autobackup.php:507 admin.php:733
3883
+ msgid "Update Plugin"
3884
+ msgstr ""
3885
+
3886
+ #: addons/autobackup.php:558 admin.php:737
3887
+ msgid "Update Theme"
3888
+ msgstr ""
3889
+
3890
+ #: admin.php:579 admin.php:746
3891
+ msgid "Dismiss (for %s weeks)"
3892
+ msgstr ""
3893
+
3894
+ #: addons/autobackup.php:975 admin.php:580 admin.php:747
3895
+ msgid "Be safe with an automatic backup"
3896
+ msgstr ""
3897
+
3898
+ #: restorer.php:2084
3899
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
3900
+ msgstr ""
3901
+
3902
+ #: admin.php:2333
3903
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3904
+ msgstr ""
3905
+
3906
+ #: admin.php:505
3907
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
3908
+ msgstr ""
3909
+
3910
+ #: admin.php:506
3911
+ msgid "This decryption key will be attempted:"
3912
+ msgstr ""
3913
+
3914
+ #: admin.php:507
3915
+ msgid "Unknown server response:"
3916
+ msgstr ""
3917
+
3918
+ #: admin.php:508
3919
+ msgid "Unknown server response status:"
3920
+ msgstr ""
3921
+
3922
+ #: admin.php:509
3923
+ msgid "The file was uploaded."
3924
+ msgstr ""
3925
+
3926
+ #: admin.php:501
3927
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3928
+ msgstr ""
3929
+
3930
+ #: admin.php:502
3931
+ msgid "Upload error:"
3932
+ msgstr ""
3933
+
3934
+ #: admin.php:503
3935
+ 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)."
3936
+ msgstr ""
3937
+
3938
+ #: admin.php:504
3939
+ msgid "Upload error"
3940
+ msgstr ""
3941
+
3942
+ #: admin.php:491
3943
+ msgid "Delete from your web server"
3944
+ msgstr ""
3945
+
3946
+ #: admin.php:492
3947
+ msgid "Download to your computer"
3948
+ msgstr ""
3949
+
3950
+ #: admin.php:493
3951
+ msgid "and then, if you wish,"
3952
+ msgstr ""
3953
+
3954
+ #: methods/s3.php:710
3955
+ msgid "Examples of S3-compatible storage providers:"
3956
+ msgstr ""
3957
+
3958
+ #: admin.php:4954
3959
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3960
+ msgstr ""
3961
+
3962
+ #: admin.php:4548
3963
+ msgid "(%d archive(s) in set)."
3964
+ msgstr ""
3965
+
3966
+ #: admin.php:4551
3967
+ msgid "You appear to be missing one or more archives from this multi-archive set."
3968
+ msgstr ""
3969
+
3970
+ #: admin.php:3972
3971
+ msgid "Split archives every:"
3972
+ msgstr ""
3973
+
3974
+ #: admin.php:482
3975
+ msgid "Error: the server sent an empty response."
3976
+ msgstr ""
3977
+
3978
+ #: admin.php:483
3979
+ msgid "Warnings:"
3980
+ msgstr ""
3981
+
3982
+ #: addons/moredatabase.php:269
3983
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
3984
+ msgstr ""
3985
+
3986
+ #: admin.php:2066
3987
+ 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?"
3988
+ msgstr ""
3989
+
3990
+ #: admin.php:1341
3991
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
3992
+ msgstr ""
3993
+
3994
+ #: admin.php:1343
3995
+ 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."
3996
+ msgstr ""
3997
+
3998
+ #: admin.php:1345
3999
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4000
+ msgstr ""
4001
+
4002
+ #: admin.php:1025
4003
+ 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"
4004
+ msgstr ""
4005
+
4006
+ #: admin.php:1245
4007
+ msgid "No such backup set exists"
4008
+ msgstr ""
4009
+
4010
+ #: admin.php:1314
4011
+ msgid "File not found (you need to upload it): %s"
4012
+ msgstr ""
4013
+
4014
+ #: admin.php:1316
4015
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4016
+ msgstr ""
4017
+
4018
+ #: admin.php:1321
4019
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4020
+ msgstr ""
4021
+
4022
+ #: admin.php:1336
4023
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
4024
+ msgstr ""
4025
+
4026
+ #: restorer.php:529
4027
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
4028
+ msgstr ""
4029
+
4030
+ #: restorer.php:520
4031
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
4032
+ msgstr ""
4033
+
4034
+ #: restorer.php:97
4035
+ msgid "Moving unpacked backup into place..."
4036
+ msgstr ""
4037
+
4038
+ #: backup.php:2635 backup.php:2891
4039
+ msgid "Failed to open the zip file (%s) - %s"
4040
+ msgstr ""
4041
+
4042
+ #: addons/morefiles.php:94
4043
+ msgid "WordPress root directory server path: %s"
4044
+ msgstr ""
4045
+
4046
+ #: methods/s3.php:717
4047
+ msgid "... and many more!"
4048
+ msgstr ""
4049
+
4050
+ #: methods/s3.php:755
4051
+ msgid "%s end-point"
4052
+ msgstr ""
4053
+
4054
+ #: admin.php:4873
4055
+ msgid "File is not locally present - needs retrieving from remote storage"
4056
+ msgstr ""
4057
+
4058
+ #: methods/s3generic.php:41 methods/s3generic.php:49
4059
+ msgid "S3 (Compatible)"
4060
+ msgstr ""
4061
+
4062
+ #: admin.php:4821
4063
+ msgid "Final checks"
4064
+ msgstr ""
4065
+
4066
+ #: admin.php:4860
4067
+ msgid "Looking for %s archive: file name: %s"
4068
+ msgstr ""
4069
+
4070
+ #: admin.php:3978
4071
+ 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)."
4072
+ msgstr ""
4073
+
4074
+ #: admin.php:3881
4075
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4076
+ msgstr ""
4077
+
4078
+ #: admin.php:4095
4079
+ msgid "Your wp-content directory server path: %s"
4080
+ msgstr ""
4081
+
4082
+ #: admin.php:498
4083
+ msgid "Raw backup history"
4084
+ msgstr ""
4085
+
4086
+ #: admin.php:3117
4087
+ msgid "Show raw backup and file list"
4088
+ msgstr ""
4089
+
4090
+ #: admin.php:481
4091
+ msgid "Processing files - please wait..."
4092
+ msgstr ""
4093
+
4094
+ #: admin.php:2870
4095
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4096
+ msgstr ""
4097
+
4098
+ #: admin.php:2870 admin.php:5006
4099
+ msgid "Please consult this FAQ for help on what to do about it."
4100
+ msgstr ""
4101
+
4102
+ #: class-updraftplus.php:3573
4103
+ msgid "Failed to open database file."
4104
+ msgstr ""
4105
+
4106
+ #: class-updraftplus.php:3553
4107
+ msgid "Failed to write out the decrypted database to the filesystem."
4108
+ msgstr ""
4109
+
4110
+ #: admin.php:1384
4111
+ msgid "Known backups (raw)"
4112
+ msgstr ""
4113
+
4114
+ #: restorer.php:1270
4115
+ msgid "Using directory from backup: %s"
4116
+ msgstr ""
4117
+
4118
+ #: restorer.php:879
4119
+ msgid "Files found:"
4120
+ msgstr ""
4121
+
4122
+ #: restorer.php:885
4123
+ msgid "Unable to enumerate files in that directory."
4124
+ msgstr ""
4125
+
4126
+ #: restorer.php:1720
4127
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
4128
+ msgstr ""
4129
+
4130
+ #: restorer.php:1730
4131
+ msgid "Restoring table (%s)"
4132
+ msgstr ""
4133
+
4134
+ #: addons/migrator.php:312
4135
+ 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."
4136
+ msgstr ""
4137
+
4138
+ #: admin.php:4895
4139
+ msgid "file is size:"
4140
+ msgstr ""
4141
+
4142
+ #: addons/googlecloud.php:855 addons/migrator.php:350 addons/migrator.php:353
4143
+ #: addons/migrator.php:356 admin.php:773 admin.php:2338 admin.php:3142
4144
+ #: backup.php:2938 updraftplus.php:147
4145
+ msgid "Go here for more information."
4146
+ msgstr ""
4147
+
4148
+ #: admin.php:480
4149
+ msgid "Some files are still downloading or being processed - please wait."
4150
+ msgstr ""
4151
+
4152
+ #: class-updraftplus.php:3621 class-updraftplus.php:3639
4153
+ 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."
4154
+ msgstr ""
4155
+
4156
+ #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4157
+ msgid "%s login failure"
4158
+ msgstr ""
4159
+
4160
+ #: methods/ftp.php:111
4161
+ msgid "%s upload failed"
4162
+ msgstr ""
4163
+
4164
+ #: addons/fixtime.php:545
4165
+ msgid "Enter in format HH:MM (e.g. 14:22)."
4166
+ msgstr ""
4167
+
4168
+ #: addons/fixtime.php:545
4169
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
4170
+ msgstr ""
4171
+
4172
+ #: methods/dropbox.php:113
4173
+ msgid "Dropbox error: %s (see log file for more)"
4174
+ msgstr ""
4175
+
4176
+ #: methods/dropbox.php:323
4177
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
4178
+ msgstr ""
4179
+
4180
+ #: methods/dropbox.php:331
4181
+ msgid "Failed to access %s when deleting (see log file for more)"
4182
+ msgstr ""
4183
+
4184
+ #: methods/dropbox.php:364
4185
+ msgid "You do not appear to be authenticated with %s"
4186
+ msgstr ""
4187
+
4188
+ #: methods/cloudfiles.php:418
4189
+ msgid "Error - no such file exists at %s"
4190
+ msgstr ""
4191
+
4192
+ #: methods/cloudfiles.php:422
4193
+ msgid "Error - failed to download the file from %s"
4194
+ msgstr ""
4195
+
4196
+ #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4197
+ msgid "%s error - failed to upload file"
4198
+ msgstr ""
4199
+
4200
+ #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4201
+ #: methods/cloudfiles.php:409 methods/googledrive.php:823
4202
+ #: methods/openstack-base.php:319 methods/stream-base.php:261
4203
+ #: methods/stream-base.php:268 methods/stream-base.php:281
4204
+ msgid "%s Error"
4205
+ msgstr ""
4206
+
4207
+ #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4208
+ #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4209
+ #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4210
+ #: methods/openstack-base.php:32 methods/openstack-base.php:216
4211
+ #: methods/openstack-base.php:281 methods/openstack-base.php:353
4212
+ #: methods/openstack-base.php:356 methods/openstack-base.php:373
4213
+ #: methods/openstack-base.php:378
4214
+ msgid "%s authentication failed"
4215
+ msgstr ""
4216
+
4217
+ #: class-updraftplus.php:851 methods/cloudfiles.php:211
4218
+ msgid "%s error - failed to re-assemble chunks"
4219
+ msgstr ""
4220
+
4221
+ #: addons/googlecloud.php:384 addons/migrator.php:449 admin.php:2011
4222
+ #: admin.php:2058 admin.php:2066 class-updraftplus.php:691
4223
+ #: class-updraftplus.php:697 class-updraftplus.php:3541
4224
+ #: class-updraftplus.php:3543 class-updraftplus.php:3679
4225
+ #: class-updraftplus.php:3712 methods/googledrive.php:299 restorer.php:873
4226
+ msgid "Error: %s"
4227
+ msgstr ""
4228
+
4229
+ #: admin.php:3668
4230
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
4231
+ msgstr ""
4232
+
4233
+ #: admin.php:3666
4234
+ msgid "Backup directory specified does <b>not</b> exist."
4235
+ msgstr ""
4236
+
4237
+ #: admin.php:3401 admin.php:3622 class-updraftplus.php:3621
4238
+ #: class-updraftplus.php:3639
4239
+ msgid "Warning: %s"
4240
+ msgstr ""
4241
+
4242
+ #: admin.php:2474
4243
+ msgid "Last backup job run:"
4244
+ msgstr ""
4245
+
4246
+ #: backup.php:2033 backup.php:2063
4247
+ msgid "%s: unreadable file - could not be backed up"
4248
+ msgstr ""
4249
+
4250
+ #: backup.php:2657
4251
+ msgid "A very large file was encountered: %s (size: %s Mb)"
4252
+ msgstr ""
4253
+
4254
+ #: backup.php:1474
4255
+ 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"
4256
+ msgstr ""
4257
+
4258
+ #: backup.php:1585
4259
+ msgid "An error occurred whilst closing the final database file"
4260
+ msgstr ""
4261
+
4262
+ #: backup.php:871
4263
+ msgid "Warnings encountered:"
4264
+ msgstr ""
4265
+
4266
+ #: class-updraftplus.php:2480
4267
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
4268
+ msgstr ""
4269
+
4270
+ #: class-updraftplus.php:601
4271
+ msgid "Your free disk space is very low - only %s Mb remain"
4272
+ msgstr ""
4273
+
4274
+ #: addons/migrator.php:432
4275
+ msgid "Migrated site (from UpdraftPlus)"
4276
+ msgstr ""
4277
+
4278
+ #: addons/migrator.php:511
4279
+ msgid "<strong>ERROR</strong>: Site URL already taken."
4280
+ msgstr ""
4281
+
4282
+ #: addons/migrator.php:456
4283
+ msgid "New site:"
4284
+ msgstr ""
4285
+
4286
+ #: addons/migrator.php:370
4287
+ msgid "Information needed to continue:"
4288
+ msgstr ""
4289
+
4290
+ #: addons/migrator.php:371
4291
+ msgid "Enter details for where this new site is to live within your multisite install:"
4292
+ msgstr ""
4293
+
4294
+ #: addons/migrator.php:316
4295
+ msgid "Processed plugin:"
4296
+ msgstr ""
4297
+
4298
+ #: addons/migrator.php:327
4299
+ msgid "Network activating theme:"
4300
+ msgstr ""
4301
+
4302
+ #: addons/sftp.php:38
4303
+ 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."
4304
+ msgstr ""
4305
+
4306
+ #: addons/sftp.php:74
4307
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
4308
+ msgstr ""
4309
+
4310
+ #: methods/s3.php:731
4311
+ 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."
4312
+ msgstr ""
4313
+
4314
+ #: methods/s3.php:970
4315
+ msgid "Please check your access credentials."
4316
+ msgstr ""
4317
+
4318
+ #: addons/s3-enhanced.php:172 methods/s3.php:948
4319
+ msgid "The error reported by %s was:"
4320
+ msgstr ""
4321
+
4322
+ #: restorer.php:1287
4323
+ msgid "Please supply the requested information, and then continue."
4324
+ msgstr ""
4325
+
4326
+ #: restorer.php:1925
4327
+ msgid "Cannot drop tables, so deleting instead (%s)"
4328
+ msgstr ""
4329
+
4330
+ #: class-updraftplus.php:3690 restorer.php:1564
4331
+ msgid "Site information:"
4332
+ msgstr ""
4333
+
4334
+ #: restorer.php:1908
4335
+ msgid "Cannot create new tables, so skipping this command (%s)"
4336
+ msgstr ""
4337
+
4338
+ #: addons/migrator.php:312 admin.php:2333 class-updraftplus.php:3683
4339
+ #: restorer.php:1441 restorer.php:1470 restorer.php:1884
4340
+ msgid "Warning:"
4341
+ msgstr ""
4342
+
4343
+ #: restorer.php:1442
4344
+ 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."
4345
+ msgstr ""
4346
+
4347
+ #: class-updraftplus.php:3675 restorer.php:105
4348
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4349
+ msgstr ""
4350
+
4351
+ #: admin.php:4848
4352
+ 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."
4353
+ msgstr ""
4354
+
4355
+ #: admin.php:4151 methods/updraftvault.php:244
4356
+ 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."
4357
+ msgstr ""
4358
+
4359
+ #: admin.php:516
4360
+ msgid "Close"
4361
+ msgstr ""
4362
+
4363
+ #: addons/autobackup.php:294 addons/autobackup.php:385 admin.php:473
4364
+ #: methods/remotesend.php:71 methods/remotesend.php:79
4365
+ #: methods/remotesend.php:220 methods/remotesend.php:237
4366
+ msgid "Unexpected response:"
4367
+ msgstr ""
4368
+
4369
+ #: addons/reporting.php:423 admin.php:469
4370
+ msgid "To send to more than one address, separate each address with a comma."
4371
+ msgstr ""
4372
+
4373
+ #: admin.php:496
4374
+ msgid "PHP information"
4375
+ msgstr ""
4376
+
4377
+ #: admin.php:3082
4378
+ msgid "show PHP information (phpinfo)"
4379
+ msgstr ""
4380
+
4381
+ #: admin.php:3102
4382
+ msgid "zip executable found:"
4383
+ msgstr ""
4384
+
4385
+ #: admin.php:2483
4386
+ msgid "Migrate Site"
4387
+ msgstr ""
4388
+
4389
+ #: addons/migrator.php:168
4390
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4391
+ msgstr ""
4392
+
4393
+ #: admin.php:2488
4394
+ msgid "Do you want to migrate or clone/duplicate a site?"
4395
+ msgstr ""
4396
+
4397
+ #: admin.php:2488
4398
+ 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."
4399
+ msgstr ""
4400
+
4401
+ #: admin.php:2488
4402
+ msgid "Get it here."
4403
+ msgstr ""
4404
+
4405
+ #: admin.php:2958
4406
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
4407
+ msgstr ""
4408
+
4409
+ #: admin.php:2957
4410
+ msgid "Also delete from remote storage"
4411
+ msgstr ""
4412
+
4413
+ #: admin.php:2816
4414
+ msgid "Latest UpdraftPlus.com news:"
4415
+ msgstr ""
4416
+
4417
+ #: admin.php:2449
4418
+ msgid "Clone/Migrate"
4419
+ msgstr ""
4420
+
4421
+ #: admin.php:2169
4422
+ msgid "News"
4423
+ msgstr ""
4424
+
4425
+ #: admin.php:2168
4426
+ msgid "Premium"
4427
+ msgstr ""
4428
+
4429
+ #: admin.php:1628
4430
+ msgid "Local archives deleted: %d"
4431
+ msgstr ""
4432
+
4433
+ #: admin.php:1629
4434
+ msgid "Remote archives deleted: %d"
4435
+ msgstr ""
4436
+
4437
+ #: backup.php:157
4438
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4439
+ msgstr ""
4440
+
4441
+ #: admin.php:1554
4442
+ msgid "Backup set not found"
4443
+ msgstr ""
4444
+
4445
+ #: class-updraftplus.php:3499
4446
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4447
+ msgstr ""
4448
+
4449
+ #: class-updraftplus.php:3499
4450
+ msgid "Blog link"
4451
+ msgstr ""
4452
+
4453
+ #: class-updraftplus.php:3499
4454
+ msgid "RSS link"
4455
+ msgstr ""
4456
+
4457
+ #: admin.php:558
4458
+ msgid "Testing %s Settings..."
4459
+ msgstr ""
4460
+
4461
+ #: admin.php:2892
4462
+ 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."
4463
+ msgstr ""
4464
+
4465
+ #: admin.php:789
4466
+ msgid "Notice"
4467
+ msgstr ""
4468
+
4469
+ #: admin.php:789
4470
+ 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."
4471
+ msgstr ""
4472
+
4473
+ #: backup.php:853
4474
+ msgid "Errors encountered:"
4475
+ msgstr ""
4476
+
4477
+ #: admin.php:467
4478
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4479
+ msgstr ""
4480
+
4481
+ #: admin.php:479
4482
+ msgid "Begun looking for this entity"
4483
+ msgstr ""
4484
+
4485
+ #: addons/migrator.php:1090
4486
+ msgid "SQL update commands run:"
4487
+ msgstr ""
4488
+
4489
+ #: addons/migrator.php:1091 admin.php:484
4490
+ msgid "Errors:"
4491
+ msgstr ""
4492
+
4493
+ #: addons/migrator.php:1092
4494
+ msgid "Time taken (seconds):"
4495
+ msgstr ""
4496
+
4497
+ #: addons/migrator.php:1228
4498
+ msgid "rows: %d"
4499
+ msgstr ""
4500
+
4501
+ #: addons/migrator.php:1348
4502
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
4503
+ msgstr ""
4504
+
4505
+ #: addons/dropbox-folders.php:26
4506
+ msgid "Store at"
4507
+ msgstr ""
4508
+
4509
+ #: addons/migrator.php:905
4510
+ msgid "Nothing to do: the site URL is already: %s"
4511
+ msgstr ""
4512
+
4513
+ #: addons/migrator.php:916
4514
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
4515
+ msgstr ""
4516
+
4517
+ #: addons/migrator.php:932
4518
+ msgid "Database search and replace: replace %s in backup dump with %s"
4519
+ msgstr ""
4520
+
4521
+ #: addons/migrator.php:972
4522
+ msgid "Could not get list of tables"
4523
+ msgstr ""
4524
+
4525
+ #: addons/migrator.php:1087
4526
+ msgid "Tables examined:"
4527
+ msgstr ""
4528
+
4529
+ #: addons/migrator.php:1088
4530
+ msgid "Rows examined:"
4531
+ msgstr ""
4532
+
4533
+ #: addons/migrator.php:1089
4534
+ msgid "Changes made:"
4535
+ msgstr ""
4536
+
4537
+ #: addons/sftp.php:280
4538
+ msgid "%s Error: Failed to download"
4539
+ msgstr ""
4540
+
4541
+ #: addons/moredatabase.php:232 addons/sftp.php:347
4542
+ msgid "Host"
4543
+ msgstr ""
4544
+
4545
+ #: addons/sftp.php:354
4546
+ msgid "Port"
4547
+ msgstr ""
4548
+
4549
+ #: addons/lockadmin.php:141 addons/moredatabase.php:234 addons/sftp.php:368
4550
+ #: methods/openstack2.php:127 methods/updraftvault.php:304
4551
+ #: udaddons/options.php:145
4552
+ msgid "Password"
4553
+ msgstr ""
4554
+
4555
+ #: addons/sftp.php:393
4556
+ msgid "Directory path"
4557
+ msgstr ""
4558
+
4559
+ #: addons/sftp.php:395
4560
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
4561
+ msgstr ""
4562
+
4563
+ #: addons/sftp.php:417
4564
+ msgid "host name"
4565
+ msgstr ""
4566
+
4567
+ #: addons/sftp.php:421 methods/openstack2.php:142
4568
+ msgid "username"
4569
+ msgstr ""
4570
+
4571
+ #: methods/ftp.php:359 methods/openstack2.php:147
4572
+ msgid "password"
4573
+ msgstr ""
4574
+
4575
+ #: addons/sftp.php:430
4576
+ msgid "Failure: Port must be an integer."
4577
+ msgstr ""
4578
+
4579
+ #: addons/fixtime.php:545
4580
+ msgid "starting from next time it is"
4581
+ msgstr ""
4582
+
4583
+ #: addons/multisite.php:174
4584
+ msgid "Multisite Install"
4585
+ msgstr ""
4586
+
4587
+ #: addons/multisite.php:180 udaddons/options.php:225
4588
+ msgid "You do not have sufficient permissions to access this page."
4589
+ msgstr ""
4590
+
4591
+ #: addons/multisite.php:194
4592
+ msgid "You do not have permission to access this page."
4593
+ msgstr ""
4594
+
4595
+ #: addons/migrator.php:356 addons/multisite.php:610
4596
+ msgid "Must-use plugins"
4597
+ msgstr ""
4598
+
4599
+ #: addons/multisite.php:617
4600
+ msgid "Blog uploads"
4601
+ msgstr ""
4602
+
4603
+ #: addons/migrator.php:529
4604
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
4605
+ msgstr ""
4606
+
4607
+ #: addons/migrator.php:529
4608
+ msgid "Search and replace site location in the database (migrate)"
4609
+ msgstr ""
4610
+
4611
+ #: addons/migrator.php:529
4612
+ msgid "(learn more)"
4613
+ msgstr ""
4614
+
4615
+ #: addons/migrator.php:765 addons/migrator.php:1069
4616
+ msgid "Failed: the %s operation was not able to start."
4617
+ msgstr ""
4618
+
4619
+ #: addons/migrator.php:767 addons/migrator.php:1071
4620
+ msgid "Failed: we did not understand the result returned by the %s operation."
4621
+ msgstr ""
4622
+
4623
+ #: addons/migrator.php:839
4624
+ msgid "Database: search and replace site URL"
4625
+ msgstr ""
4626
+
4627
+ #: addons/migrator.php:843
4628
+ msgid "This option was not selected."
4629
+ msgstr ""
4630
+
4631
+ #: addons/migrator.php:877 addons/migrator.php:881 addons/migrator.php:885
4632
+ #: addons/migrator.php:890 addons/migrator.php:894 addons/migrator.php:899
4633
+ msgid "Error: unexpected empty parameter (%s, %s)"
4634
+ msgstr ""
4635
+
4636
+ #: addons/morefiles.php:86
4637
+ msgid "The above files comprise everything in a WordPress installation."
4638
+ msgstr ""
4639
+
4640
+ #: addons/morefiles.php:93
4641
+ msgid "WordPress core (including any additions to your WordPress root directory)"
4642
+ msgstr ""
4643
+
4644
+ #: addons/morefiles.php:179
4645
+ msgid "More Files"
4646
+ msgstr ""
4647
+
4648
+ #: addons/morefiles.php:211 addons/morefiles.php:222
4649
+ msgid "Enter the directory:"
4650
+ msgstr ""
4651
+
4652
+ #: addons/morefiles.php:200
4653
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
4654
+ msgstr ""
4655
+
4656
+ #: addons/morefiles.php:200
4657
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
4658
+ msgstr ""
4659
+
4660
+ #: addons/morefiles.php:202
4661
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
4662
+ msgstr ""
4663
+
4664
+ #: addons/morefiles.php:442
4665
+ msgid "No backup of %s directories: there was nothing found to back up"
4666
+ msgstr ""
4667
+
4668
+ #: addons/sftp.php:38
4669
+ 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."
4670
+ msgstr ""
4671
+
4672
+ #: addons/sftp.php:38
4673
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
4674
+ msgstr ""
4675
+
4676
+ #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
4677
+ msgid "No %s found"
4678
+ msgstr ""
4679
+
4680
+ #: addons/sftp.php:460
4681
+ msgid "Check your file permissions: Could not successfully create and enter:"
4682
+ msgstr ""
4683
+
4684
+ #: methods/ftp.php:320
4685
+ msgid "Needs to already exist"
4686
+ msgstr ""
4687
+
4688
+ #: methods/ftp.php:351
4689
+ msgid "Failure: No server details were given."
4690
+ msgstr ""
4691
+
4692
+ #: methods/ftp.php:369
4693
+ msgid "Failure: we did not successfully log in with those credentials."
4694
+ msgstr ""
4695
+
4696
+ #: methods/ftp.php:378
4697
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4698
+ msgstr ""
4699
+
4700
+ #: methods/ftp.php:381
4701
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4702
+ msgstr ""
4703
+
4704
+ #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4705
+ #: methods/addon-base.php:97 methods/addon-base.php:128
4706
+ #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
4707
+ #: methods/googledrive.php:146 methods/stream-base.php:31
4708
+ #: methods/stream-base.php:145 methods/stream-base.php:180
4709
+ #: methods/stream-base.php:245
4710
+ msgid "No %s settings were found"
4711
+ msgstr ""
4712
+
4713
+ #: methods/stream-base.php:107 methods/stream-base.php:111
4714
+ msgid "Chunk %s: A %s error occurred"
4715
+ msgstr ""
4716
+
4717
+ #: methods/stream-base.php:268
4718
+ msgid "Error opening remote file: Failed to download"
4719
+ msgstr ""
4720
+
4721
+ #: methods/stream-base.php:281
4722
+ msgid "Local write failed: Failed to download"
4723
+ msgstr ""
4724
+
4725
+ #: addons/webdav.php:42
4726
+ msgid "WebDAV URL"
4727
+ msgstr ""
4728
+
4729
+ #: addons/webdav.php:46
4730
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
4731
+ msgstr ""
4732
+
4733
+ #: addons/googlecloud.php:626 addons/googlecloud.php:660
4734
+ #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:3454 admin.php:3489
4735
+ #: admin.php:3498 methods/addon-base.php:284 methods/stream-base.php:297
4736
+ msgid "Failed"
4737
+ msgstr ""
4738
+
4739
+ #: methods/addon-base.php:294 methods/stream-base.php:311
4740
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4741
+ msgstr ""
4742
+
4743
+ #: addons/morefiles.php:63 addons/morefiles.php:442
4744
+ msgid "WordPress Core"
4745
+ msgstr ""
4746
+
4747
+ #: addons/morefiles.php:67
4748
+ msgid "Over-write wp-config.php"
4749
+ msgstr ""
4750
+
4751
+ #: methods/dropbox.php:513 methods/dropbox.php:515
4752
+ msgid "you have authenticated your %s account"
4753
+ msgstr ""
4754
+
4755
+ #: methods/dropbox.php:518
4756
+ msgid "though part of the returned information was not as expected - your mileage may vary"
4757
+ msgstr ""
4758
+
4759
+ #: addons/onedrive.php:584 methods/dropbox.php:522
4760
+ msgid "Your %s account name: %s"
4761
+ msgstr ""
4762
+
4763
+ #: methods/ftp.php:303
4764
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4765
+ msgstr ""
4766
+
4767
+ #: methods/ftp.php:303
4768
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4769
+ msgstr ""
4770
+
4771
+ #: methods/s3.php:681
4772
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4773
+ msgstr ""
4774
+
4775
+ #: methods/s3.php:434 methods/s3.php:608 methods/s3.php:687
4776
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4777
+ msgstr ""
4778
+
4779
+ #: methods/s3.php:746
4780
+ 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."
4781
+ msgstr ""
4782
+
4783
+ #: methods/s3.php:748
4784
+ msgid "If you see errors about SSL certificates, then please go here for help."
4785
+ msgstr ""
4786
+
4787
+ #: methods/s3.php:783
4788
+ msgid "%s access key"
4789
+ msgstr ""
4790
+
4791
+ #: methods/s3.php:787
4792
+ msgid "%s secret key"
4793
+ msgstr ""
4794
+
4795
+ #: methods/s3.php:791
4796
+ msgid "%s location"
4797
+ msgstr ""
4798
+
4799
+ #: methods/s3.php:792
4800
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4801
+ msgstr ""
4802
+
4803
+ #: methods/s3.php:900
4804
+ msgid "API secret"
4805
+ msgstr ""
4806
+
4807
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:922
4808
+ msgid "Failure: No bucket details were given."
4809
+ msgstr ""
4810
+
4811
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:940
4812
+ msgid "Region"
4813
+ msgstr ""
4814
+
4815
+ #: methods/s3.php:946
4816
+ 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)."
4817
+ msgstr ""
4818
+
4819
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4820
+ #: methods/s3.php:970
4821
+ msgid "Failure"
4822
+ msgstr ""
4823
+
4824
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4825
+ #: methods/s3.php:970
4826
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4827
+ msgstr ""
4828
+
4829
+ #: addons/googlecloud.php:689 methods/s3.php:960
4830
+ msgid "We accessed the bucket, and were able to create files within it."
4831
+ msgstr ""
4832
+
4833
+ #: methods/s3.php:963
4834
+ msgid "The communication with %s was encrypted."
4835
+ msgstr ""
4836
+
4837
+ #: methods/s3.php:965
4838
+ msgid "The communication with %s was not encrypted."
4839
+ msgstr ""
4840
+
4841
+ #: methods/dropbox.php:100 methods/dropbox.php:108
4842
+ msgid "You do not appear to be authenticated with Dropbox"
4843
+ msgstr ""
4844
+
4845
+ #: methods/dropbox.php:193 methods/dropbox.php:214 methods/dropbox.php:230
4846
+ msgid "error: failed to upload file to %s (see log file for more)"
4847
+ msgstr ""
4848
+
4849
+ #: methods/dropbox.php:438
4850
+ msgid "Need to use sub-folders?"
4851
+ msgstr ""
4852
+
4853
+ #: methods/dropbox.php:438
4854
+ msgid "Backups are saved in"
4855
+ msgstr ""
4856
+
4857
+ #: methods/dropbox.php:438
4858
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4859
+ msgstr ""
4860
+
4861
+ #: methods/dropbox.php:438
4862
+ msgid "there's an add-on for that."
4863
+ msgstr ""
4864
+
4865
+ #: methods/cloudfiles.php:462
4866
+ msgid "US or UK Cloud"
4867
+ msgstr ""
4868
+
4869
+ #: addons/cloudfiles-enhanced.php:235 methods/cloudfiles-new.php:88
4870
+ #: methods/cloudfiles.php:465
4871
+ msgid "US (default)"
4872
+ msgstr ""
4873
+
4874
+ #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:89
4875
+ #: methods/cloudfiles.php:466
4876
+ msgid "UK"
4877
+ msgstr ""
4878
+
4879
+ #: methods/cloudfiles.php:482
4880
+ msgid "Cloud Files username"
4881
+ msgstr ""
4882
+
4883
+ #: methods/cloudfiles.php:486
4884
+ msgid "Cloud Files API key"
4885
+ msgstr ""
4886
+
4887
+ #: methods/cloudfiles.php:490
4888
+ msgid "Cloud Files container"
4889
+ msgstr ""
4890
+
4891
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
4892
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4893
+ msgstr ""
4894
+
4895
+ #: addons/migrator.php:272 addons/migrator.php:1851 addons/moredatabase.php:70
4896
+ #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:417
4897
+ #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:56 admin.php:536
4898
+ #: methods/addon-base.php:277 methods/cloudfiles-new.php:142
4899
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:504
4900
+ #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
4901
+ #: methods/openstack2.php:142 methods/openstack2.php:147
4902
+ #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:896
4903
+ #: methods/s3.php:900
4904
+ msgid "Failure: No %s was given."
4905
+ msgstr ""
4906
+
4907
+ #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:896
4908
+ msgid "API key"
4909
+ msgstr ""
4910
+
4911
+ #: addons/moredatabase.php:233 addons/sftp.php:361
4912
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4913
+ #: methods/openstack2.php:121
4914
+ msgid "Username"
4915
+ msgstr ""
4916
+
4917
+ #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4918
+ msgid "Failure: No container details were given."
4919
+ msgstr ""
4920
+
4921
+ #: methods/cloudfiles.php:556
4922
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4923
+ msgstr ""
4924
+
4925
+ #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4926
+ msgid "We accessed the container, and were able to create files within it."
4927
+ msgstr ""
4928
+
4929
+ #: methods/email.php:43
4930
+ msgid "WordPress Backup"
4931
+ msgstr ""
4932
+
4933
+ #: methods/email.php:69
4934
+ msgid "Note:"
4935
+ msgstr ""
4936
+
4937
+ #: methods/s3.php:363
4938
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4939
+ msgstr ""
4940
+
4941
+ #: methods/s3.php:386
4942
+ msgid "%s error: file %s was shortened unexpectedly"
4943
+ msgstr ""
4944
+
4945
+ #: methods/s3.php:396
4946
+ msgid "%s chunk %s: upload failed"
4947
+ msgstr ""
4948
+
4949
+ #: methods/s3.php:412
4950
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
4951
+ msgstr ""
4952
+
4953
+ #: methods/s3.php:416
4954
+ msgid "%s re-assembly error (%s): (see log file for more)"
4955
+ msgstr ""
4956
+
4957
+ #: addons/googlecloud.php:826 methods/googledrive.php:904
4958
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4959
+ msgstr ""
4960
+
4961
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4962
+ msgid "Select 'Web Application' as the application type."
4963
+ msgstr ""
4964
+
4965
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4966
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4967
+ msgstr ""
4968
+
4969
+ #: addons/googlecloud.php:839 addons/onedrive.php:755
4970
+ #: methods/googledrive.php:916
4971
+ msgid "Client ID"
4972
+ msgstr ""
4973
+
4974
+ #: addons/googlecloud.php:842 methods/googledrive.php:917
4975
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4976
+ msgstr ""
4977
+
4978
+ #: addons/googlecloud.php:847 addons/onedrive.php:759
4979
+ #: methods/googledrive.php:920
4980
+ msgid "Client Secret"
4981
+ msgstr ""
4982
+
4983
+ #: addons/googlecloud.php:896 methods/googledrive.php:950
4984
+ msgid "Authenticate with Google"
4985
+ msgstr ""
4986
+
4987
+ #: addons/googlecloud.php:907 methods/googledrive.php:961
4988
+ 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."
4989
+ msgstr ""
4990
+
4991
+ #: addons/cloudfiles-enhanced.php:87 addons/cloudfiles-enhanced.php:124
4992
+ #: addons/cloudfiles-enhanced.php:129 methods/cloudfiles.php:539
4993
+ #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
4994
+ msgid "Cloud Files authentication failed"
4995
+ msgstr ""
4996
+
4997
+ #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
4998
+ #: methods/cloudfiles.php:363
4999
+ msgid "Cloud Files error - failed to create and access the container"
5000
+ msgstr ""
5001
+
5002
+ #: addons/googlecloud.php:161 addons/googlecloud.php:166
5003
+ #: class-updraftplus.php:797 methods/cloudfiles.php:130
5004
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5005
+ msgid "%s Error: Failed to open local file"
5006
+ msgstr ""
5007
+
5008
+ #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5009
+ #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5010
+ #: methods/openstack-base.php:190 methods/s3.php:331 methods/s3.php:343
5011
+ #: methods/s3.php:344
5012
+ msgid "%s Error: Failed to upload"
5013
+ msgstr ""
5014
+
5015
+ #: methods/cloudfiles.php:218
5016
+ msgid "Cloud Files error - failed to upload file"
5017
+ msgstr ""
5018
+
5019
+ #: class-updraftplus.php:880 methods/cloudfiles.php:392
5020
+ #: methods/stream-base.php:261
5021
+ msgid "Error opening local file: Failed to download"
5022
+ msgstr ""
5023
+
5024
+ #: methods/openstack-base.php:319
5025
+ msgid "Error downloading remote file: Failed to download ("
5026
+ msgstr ""
5027
+
5028
+ #: addons/sftp.php:408 admin.php:557 methods/addon-base.php:242
5029
+ #: methods/cloudfiles.php:496 methods/ftp.php:329
5030
+ #: methods/openstack-base.php:440 methods/s3.php:797
5031
+ #: methods/stream-base.php:219
5032
+ msgid "Test %s Settings"
5033
+ msgstr ""
5034
+
5035
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5036
+ 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."
5037
+ msgstr ""
5038
+
5039
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5040
+ #: methods/openstack2.php:94
5041
+ msgid "Also, you should read this important FAQ."
5042
+ msgstr ""
5043
+
5044
+ #: methods/googledrive.php:410
5045
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5046
+ msgstr ""
5047
+
5048
+ #: methods/googledrive.php:381 methods/googledrive.php:427
5049
+ #: methods/googledrive.php:433 methods/googledrive.php:435
5050
+ #: methods/stream-base.php:196
5051
+ msgid "Failed to upload to %s"
5052
+ msgstr ""
5053
+
5054
+ #: addons/googlecloud.php:445 addons/googlecloud.php:446
5055
+ #: addons/googlecloud.php:709 addons/onedrive.php:496
5056
+ #: methods/googledrive.php:455 methods/googledrive.php:456
5057
+ msgid "Account is not authorized."
5058
+ msgstr ""
5059
+
5060
+ #: methods/addon-base.php:230 methods/cloudfiles.php:438
5061
+ #: methods/dropbox.php:420 methods/ftp.php:298 methods/googledrive.php:889
5062
+ #: methods/openstack-base.php:419 methods/s3.php:707
5063
+ #: methods/stream-base.php:212
5064
+ 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."
5065
+ msgstr ""
5066
+
5067
+ #: restorer.php:1734
5068
+ msgid "will restore as:"
5069
+ msgstr ""
5070
+
5071
+ #: addons/migrator.php:1123 restorer.php:1964
5072
+ msgid "the database query being run was:"
5073
+ msgstr ""
5074
+
5075
+ #: restorer.php:1796
5076
+ msgid "Finished: lines processed: %d in %.2f seconds"
5077
+ msgstr ""
5078
+
5079
+ #: restorer.php:2062 restorer.php:2137
5080
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5081
+ msgstr ""
5082
+
5083
+ #: addons/migrator.php:1750 admin.php:3457 admin.php:3491 admin.php:3495
5084
+ #: admin.php:4879 admin.php:4893 restorer.php:2068 restorer.php:2173
5085
+ msgid "OK"
5086
+ msgstr ""
5087
+
5088
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5089
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5090
+ msgstr ""
5091
+
5092
+ #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5093
+ #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5094
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5095
+ msgstr ""
5096
+
5097
+ #: methods/viaaddon-base.php:72
5098
+ msgid "%s support is available as an add-on"
5099
+ msgstr ""
5100
+
5101
+ #: methods/viaaddon-base.php:72
5102
+ msgid "follow this link to get it"
5103
+ msgstr ""
5104
+
5105
+ #: addons/googlecloud.php:382 methods/googledrive.php:297
5106
+ 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."
5107
+ msgstr ""
5108
+
5109
+ #: addons/googlecloud.php:390 methods/googledrive.php:305
5110
+ msgid "Authorization failed"
5111
+ msgstr ""
5112
+
5113
+ #: addons/onedrive.php:577 methods/dropbox.php:535 methods/googledrive.php:332
5114
+ msgid "Your %s quota usage: %s %% used, %s available"
5115
+ msgstr ""
5116
+
5117
+ #: addons/googlecloud.php:579 addons/googlecloud.php:689
5118
+ #: addons/onedrive.php:611 addons/sftp.php:480 methods/addon-base.php:291
5119
+ #: methods/cloudfiles.php:560 methods/googledrive.php:358
5120
+ #: methods/openstack-base.php:392 methods/s3.php:960
5121
+ #: methods/stream-base.php:308
5122
+ msgid "Success"
5123
+ msgstr ""
5124
+
5125
+ #: addons/googlecloud.php:579 addons/onedrive.php:611
5126
+ #: methods/googledrive.php:358
5127
+ msgid "you have authenticated your %s account."
5128
+ msgstr ""
5129
+
5130
+ #: methods/googledrive.php:507
5131
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5132
+ msgstr ""
5133
+
5134
+ #: restorer.php:429
5135
+ msgid "wp-config.php from backup: restoring (as per user's request)"
5136
+ msgstr ""
5137
+
5138
+ #: restorer.php:1330
5139
+ 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."
5140
+ msgstr ""
5141
+
5142
+ #: restorer.php:1353
5143
+ msgid "Failed to find database file"
5144
+ msgstr ""
5145
+
5146
+ #: restorer.php:1374
5147
+ msgid "Failed to open database file"
5148
+ msgstr ""
5149
+
5150
+ #: addons/migrator.php:588 restorer.php:1379
5151
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5152
+ msgstr ""
5153
+
5154
+ #: addons/reporting.php:65 addons/reporting.php:148 backup.php:923
5155
+ #: class-updraftplus.php:3616
5156
+ msgid "Backup of:"
5157
+ msgstr ""
5158
+
5159
+ #: restorer.php:1545 restorer.php:1638 restorer.php:1664
5160
+ msgid "Old table prefix:"
5161
+ msgstr ""
5162
+
5163
+ #: admin.php:4890
5164
+ msgid "Archive is expected to be size:"
5165
+ msgstr ""
5166
+
5167
+ #: admin.php:4898
5168
+ msgid "The backup records do not contain information about the proper size of this file."
5169
+ msgstr ""
5170
+
5171
+ #: admin.php:4996
5172
+ msgid "Error message"
5173
+ msgstr ""
5174
+
5175
+ #: admin.php:4901 admin.php:4902
5176
+ msgid "Could not find one of the files for restoration"
5177
+ msgstr ""
5178
+
5179
+ #: restorer.php:90
5180
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5181
+ msgstr ""
5182
+
5183
+ #: restorer.php:91
5184
+ msgid "Backup file not available."
5185
+ msgstr ""
5186
+
5187
+ #: restorer.php:92
5188
+ msgid "Copying this entity failed."
5189
+ msgstr ""
5190
+
5191
+ #: restorer.php:93
5192
+ msgid "Unpacking backup..."
5193
+ msgstr ""
5194
+
5195
+ #: restorer.php:94
5196
+ msgid "Decrypting database (can take a while)..."
5197
+ msgstr ""
5198
+
5199
+ #: restorer.php:95
5200
+ msgid "Database successfully decrypted."
5201
+ msgstr ""
5202
+
5203
+ #: restorer.php:98
5204
+ 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)..."
5205
+ msgstr ""
5206
+
5207
+ #: restorer.php:99
5208
+ msgid "Cleaning up rubbish..."
5209
+ msgstr ""
5210
+
5211
+ #: restorer.php:101
5212
+ msgid "Could not delete old directory."
5213
+ msgstr ""
5214
+
5215
+ #: restorer.php:104
5216
+ msgid "Failed to delete working directory after restoring."
5217
+ msgstr ""
5218
+
5219
+ #: restorer.php:301
5220
+ msgid "Failed to create a temporary directory"
5221
+ msgstr ""
5222
+
5223
+ #: restorer.php:316
5224
+ msgid "Failed to write out the decrypted database to the filesystem"
5225
+ msgstr ""
5226
+
5227
+ #: restorer.php:424
5228
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5229
+ msgstr ""
5230
+
5231
+ #: admin.php:4012
5232
+ 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."
5233
+ msgstr ""
5234
+
5235
+ #: admin.php:4035
5236
+ msgid "Save Changes"
5237
+ msgstr ""
5238
+
5239
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
5240
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5241
+ msgstr ""
5242
+
5243
+ #: admin.php:4158
5244
+ 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)."
5245
+ msgstr ""
5246
+
5247
+ #: admin.php:4160
5248
+ 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."
5249
+ msgstr ""
5250
+
5251
+ #: admin.php:4163
5252
+ 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."
5253
+ msgstr ""
5254
+
5255
+ #: admin.php:4635
5256
+ msgid "Delete this backup set"
5257
+ msgstr ""
5258
+
5259
+ #: admin.php:4542
5260
+ msgid "Press here to download"
5261
+ msgstr ""
5262
+
5263
+ #: admin.php:4626
5264
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5265
+ msgstr ""
5266
+
5267
+ #: admin.php:4677
5268
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5269
+ msgstr ""
5270
+
5271
+ #: admin.php:4725
5272
+ msgid "UpdraftPlus Restoration: Progress"
5273
+ msgstr ""
5274
+
5275
+ #: admin.php:4771
5276
+ msgid "ABORT: Could not find the information on which entities to restore."
5277
+ msgstr ""
5278
+
5279
+ #: admin.php:4772
5280
+ msgid "If making a request for support, please include this information:"
5281
+ msgstr ""
5282
+
5283
+ #: admin.php:4006
5284
+ msgid "Do not verify SSL certificates"
5285
+ msgstr ""
5286
+
5287
+ #: admin.php:4007
5288
+ 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."
5289
+ msgstr ""
5290
+
5291
+ #: admin.php:4007
5292
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5293
+ msgstr ""
5294
+
5295
+ #: admin.php:4011
5296
+ msgid "Disable SSL entirely where possible"
5297
+ msgstr ""
5298
+
5299
+ #: admin.php:3956
5300
+ msgid "Expert settings"
5301
+ msgstr ""
5302
+
5303
+ #: admin.php:3957
5304
+ msgid "Show expert settings"
5305
+ msgstr ""
5306
+
5307
+ #: admin.php:3957
5308
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5309
+ msgstr ""
5310
+
5311
+ #: admin.php:3977
5312
+ msgid "Delete local backup"
5313
+ msgstr ""
5314
+
5315
+ #: admin.php:3982
5316
+ msgid "Backup directory"
5317
+ msgstr ""
5318
+
5319
+ #: admin.php:3662
5320
+ msgid "Backup directory specified is writable, which is good."
5321
+ msgstr ""
5322
+
5323
+ #: admin.php:3670
5324
+ msgid "Click here to attempt to create the directory and set the permissions"
5325
+ msgstr ""
5326
+
5327
+ #: admin.php:3670
5328
+ msgid "or, to reset this option"
5329
+ msgstr ""
5330
+
5331
+ #: admin.php:3670
5332
+ msgid "click here"
5333
+ msgstr ""
5334
+
5335
+ #: admin.php:3670
5336
+ 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."
5337
+ msgstr ""
5338
+
5339
+ #: admin.php:4001
5340
+ msgid "Use the server's SSL certificates"
5341
+ msgstr ""
5342
+
5343
+ #: admin.php:4002
5344
+ 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."
5345
+ msgstr ""
5346
+
5347
+ #: admin.php:3929 udaddons/options.php:143
5348
+ msgid "Email"
5349
+ msgstr ""
5350
+
5351
+ #: admin.php:3850
5352
+ msgid "Database encryption phrase"
5353
+ msgstr ""
5354
+
5355
+ #: admin.php:3869
5356
+ msgid "Manually decrypt a database backup file"
5357
+ msgstr ""
5358
+
5359
+ #: admin.php:3782
5360
+ msgid "Choose your remote storage"
5361
+ msgstr ""
5362
+
5363
+ #: addons/reporting.php:212 admin.php:4303
5364
+ msgid "None"
5365
+ msgstr ""
5366
+
5367
+ #: admin.php:511
5368
+ msgid "Cancel"
5369
+ msgstr ""
5370
+
5371
+ #: admin.php:495
5372
+ msgid "Requesting start of backup..."
5373
+ msgstr ""
5374
+
5375
+ #: admin.php:3952
5376
+ msgid "Advanced / Debugging Settings"
5377
+ msgstr ""
5378
+
5379
+ #: admin.php:3967
5380
+ msgid "Debug mode"
5381
+ msgstr ""
5382
+
5383
+ #: admin.php:3840
5384
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5385
+ msgstr ""
5386
+
5387
+ #: admin.php:3653
5388
+ msgid "Daily"
5389
+ msgstr ""
5390
+
5391
+ #: admin.php:3654
5392
+ msgid "Weekly"
5393
+ msgstr ""
5394
+
5395
+ #: admin.php:3655
5396
+ msgid "Fortnightly"
5397
+ msgstr ""
5398
+
5399
+ #: admin.php:3656
5400
+ msgid "Monthly"
5401
+ msgstr ""
5402
+
5403
+ #: admin.php:3766
5404
+ msgid "To fix the time at which a backup should take place,"
5405
+ msgstr ""
5406
+
5407
+ #: admin.php:3766
5408
+ msgid "e.g. if your server is busy at day and you want to run overnight"
5409
+ msgstr ""
5410
+
5411
+ #: admin.php:3837
5412
+ msgid "Include in files backup"
5413
+ msgstr ""
5414
+
5415
+ #: admin.php:4095
5416
+ msgid "Any other directories found inside wp-content"
5417
+ msgstr ""
5418
+
5419
+ #: addons/morefiles.php:260 admin.php:4104
5420
+ msgid "Exclude these:"
5421
+ msgstr ""
5422
+
5423
+ #: admin.php:3155
5424
+ msgid "Debug Database Backup"
5425
+ msgstr ""
5426
+
5427
+ #: admin.php:3155
5428
+ 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.."
5429
+ msgstr ""
5430
+
5431
+ #: admin.php:3165
5432
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5433
+ msgstr ""
5434
+
5435
+ #: admin.php:3392
5436
+ msgid "show log"
5437
+ msgstr ""
5438
+
5439
+ #: addons/migrator.php:2243 admin.php:512 admin.php:2933 admin.php:3451
5440
+ #: admin.php:3484 admin.php:4635
5441
+ msgid "Delete"
5442
+ msgstr ""
5443
+
5444
+ #: admin.php:3535
5445
+ msgid "The request to the filesystem to create the directory failed."
5446
+ msgstr ""
5447
+
5448
+ #: admin.php:3549
5449
+ 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"
5450
+ msgstr ""
5451
+
5452
+ #: admin.php:3554
5453
+ msgid "The folder exists, but your webserver does not have permission to write to it."
5454
+ msgstr ""
5455
+
5456
+ #: admin.php:518 admin.php:3636
5457
+ msgid "Download log file"
5458
+ msgstr ""
5459
+
5460
+ #: admin.php:2509
5461
+ msgid "Multisite"
5462
+ msgstr ""
5463
+
5464
+ #: admin.php:2513
5465
+ msgid "Do you need WordPress Multisite support?"
5466
+ msgstr ""
5467
+
5468
+ #: admin.php:2513
5469
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5470
+ msgstr ""
5471
+
5472
+ #: admin.php:3070
5473
+ msgid "Web server:"
5474
+ msgstr ""
5475
+
5476
+ #: admin.php:3079
5477
+ msgid "Peak memory usage"
5478
+ msgstr ""
5479
+
5480
+ #: admin.php:3080
5481
+ msgid "Current memory usage"
5482
+ msgstr ""
5483
+
5484
+ #: admin.php:3082 admin.php:3083 admin.php:3090 admin.php:3091
5485
+ msgid "%s version:"
5486
+ msgstr ""
5487
+
5488
+ #: admin.php:3092 admin.php:3095 admin.php:3098 admin.php:3102
5489
+ msgid "Yes"
5490
+ msgstr ""
5491
+
5492
+ #: admin.php:3092 admin.php:3098 admin.php:3102
5493
+ msgid "No"
5494
+ msgstr ""
5495
+
5496
+ #: admin.php:3127
5497
+ msgid "Total (uncompressed) on-disk data:"
5498
+ msgstr ""
5499
+
5500
+ #: admin.php:3128
5501
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5502
+ msgstr ""
5503
+
5504
+ #: admin.php:3136
5505
+ msgid "count"
5506
+ msgstr ""
5507
+
5508
+ #: admin.php:3150
5509
+ msgid "Debug Full Backup"
5510
+ msgstr ""
5511
+
5512
+ #: admin.php:3150
5513
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5514
+ msgstr ""
5515
+
5516
+ #: admin.php:2891
5517
+ msgid "UpdraftPlus - Upload backup files"
5518
+ msgstr ""
5519
+
5520
+ #: admin.php:478 admin.php:2875
5521
+ msgid "calculating..."
5522
+ msgstr ""
5523
+
5524
+ #: addons/cloudfiles-enhanced.php:90 addons/migrator.php:751
5525
+ #: addons/migrator.php:972 addons/migrator.php:1053 addons/migrator.php:1123
5526
+ #: addons/migrator.php:1348 addons/migrator.php:1689 addons/migrator.php:1716
5527
+ #: addons/migrator.php:1722 addons/migrator.php:1784 addons/migrator.php:1820
5528
+ #: addons/migrator.php:1859 addons/migrator.php:1869 addons/migrator.php:1874
5529
+ #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
5530
+ #: addons/s3-enhanced.php:127 addons/sftp.php:736 admin.php:487 admin.php:4895
5531
+ #: admin.php:4925 methods/remotesend.php:76 methods/remotesend.php:234
5532
+ #: methods/updraftvault.php:418 restorer.php:1292
5533
+ msgid "Error:"
5534
+ msgstr ""
5535
+
5536
+ #: admin.php:490
5537
+ msgid "You should:"
5538
+ msgstr ""
5539
+
5540
+ #: admin.php:494
5541
+ msgid "Download error: the server sent us a response which we did not understand."
5542
+ msgstr ""
5543
+
5544
+ #: admin.php:2943
5545
+ msgid "Delete backup set"
5546
+ msgstr ""
5547
+
5548
+ #: admin.php:2964
5549
+ msgid "Restore backup"
5550
+ msgstr ""
5551
+
5552
+ #: admin.php:2965
5553
+ msgid "Restore backup from"
5554
+ msgstr ""
5555
+
5556
+ #: admin.php:2977
5557
+ 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)."
5558
+ msgstr ""
5559
+
5560
+ #: admin.php:2977
5561
+ msgid "Choose the components to restore"
5562
+ msgstr ""
5563
+
5564
+ #: admin.php:2989
5565
+ msgid "Your web server has PHP's so-called safe_mode active."
5566
+ msgstr ""
5567
+
5568
+ #: admin.php:3002
5569
+ msgid "The following entity cannot be restored automatically: \"%s\"."
5570
+ msgstr ""
5571
+
5572
+ #: admin.php:3002
5573
+ msgid "You will need to restore it manually."
5574
+ msgstr ""
5575
+
5576
+ #: addons/morefiles.php:63 admin.php:3009
5577
+ msgid "%s restoration options:"
5578
+ msgstr ""
5579
+
5580
+ #: admin.php:3017
5581
+ 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"
5582
+ msgstr ""
5583
+
5584
+ #: admin.php:3028
5585
+ msgid "Do read this helpful article of useful things to know before restoring."
5586
+ msgstr ""
5587
+
5588
+ #: admin.php:2498
5589
+ msgid "Perform a one-time backup"
5590
+ msgstr ""
5591
+
5592
+ #: admin.php:330 admin.php:510 admin.php:2443
5593
+ msgid "Backup Now"
5594
+ msgstr ""
5595
+
5596
+ #: addons/migrator.php:221 admin.php:517 admin.php:2446 admin.php:4626
5597
+ msgid "Restore"
5598
+ msgstr ""
5599
+
5600
+ #: addons/autobackup.php:289 addons/autobackup.php:383 admin.php:2798
5601
+ #: admin.php:2803
5602
+ msgid "Last log message"
5603
+ msgstr ""
5604
+
5605
+ #: admin.php:2799 admin.php:2805 central/bootstrap.php:159
5606
+ msgid "(Nothing yet logged)"
5607
+ msgstr ""
5608
+
5609
+ #: admin.php:2840
5610
+ msgid "Download most recently modified log file"
5611
+ msgstr ""
5612
+
5613
+ #: admin.php:2878
5614
+ msgid "More tasks:"
5615
+ msgstr ""
5616
+
5617
+ #: admin.php:2884
5618
+ msgid "Opera web browser"
5619
+ msgstr ""
5620
+
5621
+ #: admin.php:2884
5622
+ msgid "If you are using this, then turn Turbo/Road mode off."
5623
+ msgstr ""
5624
+
5625
+ #: addons/google-enhanced.php:72 methods/googledrive.php:146
5626
+ #: methods/googledrive.php:358 methods/googledrive.php:381
5627
+ #: methods/googledrive.php:410 methods/googledrive.php:417
5628
+ #: methods/googledrive.php:427 methods/googledrive.php:433
5629
+ #: methods/googledrive.php:435 methods/googledrive.php:888
5630
+ #: methods/googledrive.php:900 methods/googledrive.php:916
5631
+ #: methods/googledrive.php:920 methods/googledrive.php:931
5632
+ #: methods/googledrive.php:941
5633
+ msgid "Google Drive"
5634
+ msgstr ""
5635
+
5636
+ #: admin.php:2875
5637
+ msgid "Web-server disk space in use by UpdraftPlus"
5638
+ msgstr ""
5639
+
5640
+ #: admin.php:2875
5641
+ msgid "refresh"
5642
+ msgstr ""
5643
+
5644
+ #: admin.php:2173
5645
+ msgid "Lead developer's homepage"
5646
+ msgstr ""
5647
+
5648
+ #: admin.php:2174
5649
+ msgid "Version"
5650
+ msgstr ""
5651
+
5652
+ #: admin.php:2351
5653
+ msgid "Your backup has been restored."
5654
+ msgstr ""
5655
+
5656
+ #: admin.php:2370
5657
+ msgid "Current limit is:"
5658
+ msgstr ""
5659
+
5660
+ #: admin.php:497 admin.php:3182
5661
+ msgid "Delete Old Directories"
5662
+ msgstr ""
5663
+
5664
+ #: admin.php:2428
5665
+ msgid "JavaScript warning"
5666
+ msgstr ""
5667
+
5668
+ #: admin.php:2429
5669
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5670
+ msgstr ""
5671
+
5672
+ #: admin.php:125 admin.php:146 admin.php:153
5673
+ msgid "Nothing currently scheduled"
5674
+ msgstr ""
5675
+
5676
+ #: admin.php:135
5677
+ msgid "At the same time as the files backup"
5678
+ msgstr ""
5679
+
5680
+ #: admin.php:2464
5681
+ msgid "Next scheduled backups"
5682
+ msgstr ""
5683
+
5684
+ #: admin.php:155
5685
+ msgid "Files"
5686
+ msgstr ""
5687
+
5688
+ #: addons/migrator.php:1754 addons/moredatabase.php:235
5689
+ #: addons/reporting.php:227 admin.php:159 admin.php:1288 admin.php:3007
5690
+ #: admin.php:3009 admin.php:4278 admin.php:4470 admin.php:4979
5691
+ msgid "Database"
5692
+ msgstr ""
5693
+
5694
+ #: admin.php:785
5695
+ msgid "Your website is hosted using the %s web server."
5696
+ msgstr ""
5697
+
5698
+ #: admin.php:785
5699
+ msgid "Please consult this FAQ if you have problems backing up."
5700
+ msgstr ""
5701
+
5702
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:820
5703
+ #: admin.php:824
5704
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5705
+ msgstr ""
5706
+
5707
+ #: admin.php:560
5708
+ msgid "Nothing yet logged"
5709
+ msgstr ""
5710
+
5711
+ #: admin.php:1802
5712
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
5713
+ msgstr ""
5714
+
5715
+ #: admin.php:1718
5716
+ msgid "Job deleted"
5717
+ msgstr ""
5718
+
5719
+ #: admin.php:1726
5720
+ msgid "Could not find that job - perhaps it has already finished?"
5721
+ msgstr ""
5722
+
5723
+ #: admin.php:488 admin.php:1698 admin.php:4877 class-updraftplus.php:880
5724
+ #: methods/addon-base.php:75 methods/addon-base.php:80
5725
+ #: methods/addon-base.php:194 methods/addon-base.php:214
5726
+ #: methods/stream-base.php:196 restorer.php:2064 restorer.php:2089
5727
+ #: restorer.php:2170 updraftplus.php:147
5728
+ msgid "Error"
5729
+ msgstr ""
5730
+
5731
+ #: admin.php:1907
5732
+ msgid "Download failed"
5733
+ msgstr ""
5734
+
5735
+ #: admin.php:489 admin.php:1926
5736
+ msgid "File ready."
5737
+ msgstr ""
5738
+
5739
+ #: admin.php:1936
5740
+ msgid "Download in progress"
5741
+ msgstr ""
5742
+
5743
+ #: admin.php:1939
5744
+ msgid "No local copy present."
5745
+ msgstr ""
5746
+
5747
+ #: admin.php:2058
5748
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5749
+ msgstr ""
5750
+
5751
+ #: admin.php:2148
5752
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5753
+ msgstr ""
5754
+
5755
+ #: admin.php:2233
5756
+ msgid "Restore successful!"
5757
+ msgstr ""
5758
+
5759
+ #: admin.php:2243 admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5760
+ #: admin.php:4343
5761
+ msgid "Actions"
5762
+ msgstr ""
5763
+
5764
+ #: addons/migrator.php:273 addons/migrator.php:285 admin.php:2243
5765
+ #: admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5766
+ msgid "Return to UpdraftPlus Configuration"
5767
+ msgstr ""
5768
+
5769
+ #: admin.php:3418
5770
+ msgid "Remove old directories"
5771
+ msgstr ""
5772
+
5773
+ #: admin.php:3421
5774
+ msgid "Old directories successfully removed."
5775
+ msgstr ""
5776
+
5777
+ #: admin.php:3423
5778
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
5779
+ msgstr ""
5780
+
5781
+ #: admin.php:2294
5782
+ msgid "Backup directory could not be created"
5783
+ msgstr ""
5784
+
5785
+ #: admin.php:2301
5786
+ msgid "Backup directory successfully created."
5787
+ msgstr ""
5788
+
5789
+ #: admin.php:2324
5790
+ msgid "Your settings have been wiped."
5791
+ msgstr ""
5792
+
5793
+ #: class-updraftplus.php:3485
5794
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5795
+ msgstr ""
5796
+
5797
+ #: class-updraftplus.php:3492
5798
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
5799
+ msgstr ""
5800
+
5801
+ #: class-updraftplus.php:3502
5802
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5803
+ msgstr ""
5804
+
5805
+ #: backup.php:1955
5806
+ msgid "Infinite recursion: consult your log for more information"
5807
+ msgstr ""
5808
+
5809
+ #: backup.php:229
5810
+ msgid "Could not create %s zip. Consult the log file for more information."
5811
+ msgstr ""
5812
+
5813
+ #: admin.php:667
5814
+ msgid "Allowed Files"
5815
+ msgstr ""
5816
+
5817
+ #: admin.php:346 admin.php:709 admin.php:2406
5818
+ msgid "Settings"
5819
+ msgstr ""
5820
+
5821
+ #: admin.php:713
5822
+ msgid "Add-Ons / Pro Support"
5823
+ msgstr ""
5824
+
5825
+ #: admin.php:769 admin.php:773 admin.php:777 admin.php:781 admin.php:785
5826
+ #: admin.php:794 admin.php:2870 admin.php:4151 admin.php:4158 admin.php:4160
5827
+ #: methods/cloudfiles.php:448 methods/ftp.php:284
5828
+ #: methods/openstack-base.php:429 methods/s3.php:731 methods/s3.php:735
5829
+ #: methods/updraftvault.php:244 udaddons/updraftplus-addons.php:208
5830
+ msgid "Warning"
5831
+ msgstr ""
5832
+
5833
+ #: admin.php:777
5834
+ 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."
5835
+ msgstr ""
5836
+
5837
+ #: admin.php:781
5838
+ 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."
5839
+ msgstr ""
5840
+
5841
+ #: backup.php:924
5842
+ msgid "WordPress backup is complete"
5843
+ msgstr ""
5844
+
5845
+ #: admin.php:1976 backup.php:1120 restorer.php:168
5846
+ msgid "Backup directory (%s) is not writable, or does not exist."
5847
+ msgstr ""
5848
+
5849
+ #: class-updraftplus.php:2916
5850
+ msgid "Could not read the directory"
5851
+ msgstr ""
5852
+
5853
+ #: class-updraftplus.php:2939
5854
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
5855
+ msgstr ""
5856
+
5857
+ #: backup.php:1854
5858
+ msgid "Could not open the backup file for writing"
5859
+ msgstr ""
5860
+
5861
+ #: class-updraftplus.php:3287 class-updraftplus.php:3541 restorer.php:309
5862
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5863
+ msgstr ""
5864
+
5865
+ #: class-updraftplus.php:3298 class-updraftplus.php:3558 restorer.php:319
5866
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
5867
+ msgstr ""
5868
+
5869
+ #: class-updraftplus.php:3298
5870
+ msgid "The decryption key used:"
5871
+ msgstr ""
5872
+
5873
+ #: addons/azure.php:215 class-updraftplus.php:3387 methods/googledrive.php:823
5874
+ msgid "File not found"
5875
+ msgstr ""
5876
+
5877
+ #: class-updraftplus.php:3477
5878
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5879
+ msgstr ""
5880
+
5881
+ #: class-updraftplus.php:3485
5882
+ msgid "Like UpdraftPlus and can spare one minute?"
5883
+ msgstr ""
5884
+
5885
+ #: class-updraftplus.php:1293
5886
+ msgid "Themes"
5887
+ msgstr ""
5888
+
5889
+ #: addons/multisite.php:452 class-updraftplus.php:1294
5890
+ msgid "Uploads"
5891
+ msgstr ""
5892
+
5893
+ #: class-updraftplus.php:1309
5894
+ msgid "Others"
5895
+ msgstr ""
5896
+
5897
+ #: class-updraftplus.php:1910
5898
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5899
+ msgstr ""
5900
+
5901
+ #: addons/moredatabase.php:322
5902
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
5903
+ msgstr ""
5904
+
5905
+ #: class-updraftplus.php:2474
5906
+ msgid "The backup apparently succeeded and is now complete"
5907
+ msgstr ""
5908
+
5909
+ #: class-updraftplus.php:2489
5910
+ msgid "The backup attempt has finished, apparently unsuccessfully"
5911
+ msgstr ""
5912
+
5913
+ #: addons/multisite.php:66 addons/multisite.php:647 options.php:41
5914
+ msgid "UpdraftPlus Backups"
5915
+ msgstr ""
5916
+
5917
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:816
5918
+ #: admin.php:820 admin.php:824 class-updraftplus.php:361
5919
+ #: class-updraftplus.php:396 class-updraftplus.php:401
5920
+ #: class-updraftplus.php:406
5921
+ msgid "UpdraftPlus notice:"
5922
+ msgstr ""
5923
+
5924
+ #: admin.php:1861 admin.php:1865 class-updraftplus.php:396
5925
+ msgid "The log file could not be read."
5926
+ msgstr ""
5927
+
5928
+ #: class-updraftplus.php:401
5929
+ msgid "No log files were found."
5930
+ msgstr ""
5931
+
5932
+ #: class-updraftplus.php:1292
5933
+ msgid "Plugins"
5934
+ msgstr ""
languages/updraftplus-ca_ES.mo CHANGED
Binary file
languages/updraftplus-ca_ES.po CHANGED
@@ -0,0 +1,5948 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Catalan
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-09-08 16:59:11+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:2162
14
+ msgid "FAQs"
15
+ msgstr ""
16
+
17
+ #: udaddons/plugin-updates/github-checker.php:120
18
+ msgid "There is no changelog available."
19
+ msgstr ""
20
+
21
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
22
+ msgid "Check for updates"
23
+ msgstr ""
24
+
25
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
26
+ msgid "This plugin is up to date."
27
+ msgstr ""
28
+
29
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
30
+ msgid "A new version of this plugin is available."
31
+ msgstr ""
32
+
33
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
34
+ msgid "Unknown update checker status \"%s\""
35
+ msgstr ""
36
+
37
+ #: backup.php:1973
38
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
+ msgstr ""
40
+
41
+ #: backup.php:1987
42
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
43
+ msgstr ""
44
+
45
+ #: central/bootstrap.php:419
46
+ msgid "Public key was sent to:"
47
+ msgstr ""
48
+
49
+ #: central/bootstrap.php:424
50
+ msgid "Key size: %d bits"
51
+ msgstr ""
52
+
53
+ #: central/bootstrap.php:439
54
+ msgid "Dashboard at"
55
+ msgstr ""
56
+
57
+ #: central/bootstrap.php:439
58
+ msgid "Use the alternative method for making a connection with the dashboard."
59
+ msgstr ""
60
+
61
+ #: central/bootstrap.php:439
62
+ msgid "More information..."
63
+ msgstr ""
64
+
65
+ #: central/bootstrap.php:439
66
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
+ msgstr ""
68
+
69
+ #: addons/migrator.php:2158
70
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
+ msgstr ""
72
+
73
+ #: addons/migrator.php:2159
74
+ msgid "Enter your chosen name"
75
+ msgstr ""
76
+
77
+ #: addons/migrator.php:2161 central/bootstrap.php:441
78
+ msgid "Encryption key size:"
79
+ msgstr ""
80
+
81
+ #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
+ #: central/bootstrap.php:442 central/bootstrap.php:443
83
+ #: central/bootstrap.php:445
84
+ msgid "%s bits"
85
+ msgstr ""
86
+
87
+ #: addons/migrator.php:2163 central/bootstrap.php:442
88
+ msgid "easy to break, fastest"
89
+ msgstr ""
90
+
91
+ #: addons/migrator.php:2164 central/bootstrap.php:443
92
+ msgid "faster (possibility for slow PHP installs)"
93
+ msgstr ""
94
+
95
+ #: addons/migrator.php:2165 central/bootstrap.php:444
96
+ msgid "%s bytes"
97
+ msgstr ""
98
+
99
+ #: addons/migrator.php:2165 central/bootstrap.php:444
100
+ msgid "recommended"
101
+ msgstr ""
102
+
103
+ #: addons/migrator.php:2166 central/bootstrap.php:445
104
+ msgid "slower, strongest"
105
+ msgstr ""
106
+
107
+ #: addons/migrator.php:2169
108
+ msgid "Create key"
109
+ msgstr ""
110
+
111
+ #: central/bootstrap.php:439
112
+ msgid "i.e. you have an account there"
113
+ msgstr ""
114
+
115
+ #: central/bootstrap.php:439
116
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
+ msgstr ""
118
+
119
+ #: class-updraftplus.php:1240
120
+ msgid "Size: %s MB"
121
+ msgstr ""
122
+
123
+ #: methods/email.php:28
124
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
+ msgstr ""
126
+
127
+ #: methods/email.php:77
128
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
+ msgstr ""
130
+
131
+ #: methods/ftp.php:355
132
+ msgid "login"
133
+ msgstr ""
134
+
135
+ #: methods/ftp.php:383
136
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
+ msgstr ""
138
+
139
+ #: methods/googledrive.php:417
140
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
+ msgstr ""
142
+
143
+ #: admin.php:2453
144
+ msgid "Now"
145
+ msgstr ""
146
+
147
+ #: admin.php:2604
148
+ msgid "Free 1GB for UpdraftPlus Vault"
149
+ msgstr ""
150
+
151
+ #: admin.php:3959
152
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s 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)."
153
+ msgstr ""
154
+
155
+ #: class-updraftplus.php:3529 restorer.php:926
156
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
+ msgstr ""
158
+
159
+ #: admin.php:3770
160
+ msgid "(tap on an icon to select or unselect)"
161
+ msgstr ""
162
+
163
+ #: backup.php:833 class-updraftplus.php:2411
164
+ msgid "The backup was aborted by the user"
165
+ msgstr ""
166
+
167
+ #: central/bootstrap.php:50
168
+ msgid "UpdraftCentral Connection"
169
+ msgstr ""
170
+
171
+ #: central/bootstrap.php:53
172
+ msgid "An UpdraftCentral connection has been made successfully."
173
+ msgstr ""
174
+
175
+ #: central/bootstrap.php:55
176
+ msgid "A new UpdraftCentral connection has not been made."
177
+ msgstr ""
178
+
179
+ #: central/bootstrap.php:58
180
+ msgid "The key referred to was unknown."
181
+ msgstr ""
182
+
183
+ #: central/bootstrap.php:64
184
+ msgid "You are not logged into this WordPress site in your web browser."
185
+ msgstr ""
186
+
187
+ #: central/bootstrap.php:64
188
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
189
+ msgstr ""
190
+
191
+ #: central/bootstrap.php:71
192
+ msgid "You must visit this link in the same browser and login session as you created the key in."
193
+ msgstr ""
194
+
195
+ #: central/bootstrap.php:75
196
+ msgid "This connection appears to already have been made."
197
+ msgstr ""
198
+
199
+ #: central/bootstrap.php:83
200
+ msgid "Close..."
201
+ msgstr ""
202
+
203
+ #: central/bootstrap.php:196
204
+ msgid "An invalid URL was entered"
205
+ msgstr ""
206
+
207
+ #: central/bootstrap.php:313 central/bootstrap.php:324
208
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
+ msgstr ""
210
+
211
+ #: central/bootstrap.php:381
212
+ msgid "Key description"
213
+ msgstr ""
214
+
215
+ #: central/bootstrap.php:381
216
+ msgid "Details"
217
+ msgstr ""
218
+
219
+ #: central/bootstrap.php:387
220
+ msgid "No keys have yet been created."
221
+ msgstr ""
222
+
223
+ #: central/bootstrap.php:419
224
+ msgid "Access this site as user:"
225
+ msgstr ""
226
+
227
+ #: central/bootstrap.php:422
228
+ msgid "Created:"
229
+ msgstr ""
230
+
231
+ #: central/bootstrap.php:429
232
+ msgid "Delete..."
233
+ msgstr ""
234
+
235
+ #: central/bootstrap.php:435
236
+ msgid "Create new key"
237
+ msgstr ""
238
+
239
+ #: central/bootstrap.php:437
240
+ msgid "Description"
241
+ msgstr ""
242
+
243
+ #: central/bootstrap.php:437
244
+ msgid "Enter any description"
245
+ msgstr ""
246
+
247
+ #: central/bootstrap.php:439
248
+ msgid "URL of mothership"
249
+ msgstr ""
250
+
251
+ #: central/bootstrap.php:452
252
+ msgid "View recent UpdraftCentral log events"
253
+ msgstr ""
254
+
255
+ #: central/bootstrap.php:452
256
+ msgid "fetch..."
257
+ msgstr ""
258
+
259
+ #: central/bootstrap.php:463
260
+ msgid "UpdraftCentral (Remote Control)"
261
+ msgstr ""
262
+
263
+ #: class-updraftplus.php:356 class-updraftplus.php:401
264
+ msgid "The given file was not found, or could not be read."
265
+ msgstr ""
266
+
267
+ #: methods/updraftvault.php:214
268
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
269
+ msgstr ""
270
+
271
+ #: methods/updraftvault.php:269 methods/updraftvault.php:275
272
+ #: methods/updraftvault.php:281
273
+ msgid "or (annual discount)"
274
+ msgstr ""
275
+
276
+ #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
+ #: methods/updraftvault.php:282
278
+ msgid "%s per year"
279
+ msgstr ""
280
+
281
+ #: addons/copycom.php:60 addons/copycom.php:526
282
+ msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
283
+ msgstr ""
284
+
285
+ #: addons/s3-enhanced.php:305
286
+ msgid "Asia Pacific (Seoul)"
287
+ msgstr ""
288
+
289
+ #: admin.php:477
290
+ msgid "Fetching..."
291
+ msgstr ""
292
+
293
+ #: admin.php:485
294
+ msgid "Error: the server sent us a response which we did not understand."
295
+ msgstr ""
296
+
297
+ #: admin.php:521
298
+ msgid "Saving..."
299
+ msgstr ""
300
+
301
+ #: admin.php:538
302
+ msgid "Please enter a valid URL"
303
+ msgstr ""
304
+
305
+ #: admin.php:539
306
+ msgid "We requested to delete the file, but could not understand the server's response"
307
+ msgstr ""
308
+
309
+ #: admin.php:545
310
+ msgid "You should save your changes to ensure that they are used for making your backup."
311
+ msgstr ""
312
+
313
+ #: admin.php:2599
314
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
+ msgstr ""
316
+
317
+ #: admin.php:2863
318
+ msgid "calculate"
319
+ msgstr ""
320
+
321
+ #: admin.php:2934
322
+ msgid "this backup set"
323
+ msgstr ""
324
+
325
+ #: admin.php:2937
326
+ msgid "these backup sets"
327
+ msgstr ""
328
+
329
+ #: admin.php:3103
330
+ msgid "reset"
331
+ msgstr ""
332
+
333
+ #: admin.php:3149 admin.php:3153
334
+ msgid "Wipe settings"
335
+ msgstr ""
336
+
337
+ #: admin.php:3220
338
+ msgid "The backup has finished running"
339
+ msgstr ""
340
+
341
+ #: admin.php:3382
342
+ msgid "stop"
343
+ msgstr ""
344
+
345
+ #: admin.php:4294
346
+ msgid "Total backup size:"
347
+ msgstr ""
348
+
349
+ #: admin.php:5212
350
+ msgid "Your settings have been saved."
351
+ msgstr ""
352
+
353
+ #: addons/onedrive.php:50
354
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
355
+ msgstr ""
356
+
357
+ #: backup.php:386
358
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
359
+ msgstr ""
360
+
361
+ #: restorer.php:1533
362
+ msgid "Uploads URL:"
363
+ msgstr ""
364
+
365
+ #: addons/multisite.php:374 addons/multisite.php:384
366
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
367
+ msgstr ""
368
+
369
+ #: addons/multisite.php:525
370
+ msgid "Which site to restore"
371
+ msgstr ""
372
+
373
+ #: addons/multisite.php:528
374
+ msgid "All sites"
375
+ msgstr ""
376
+
377
+ #: addons/multisite.php:533
378
+ msgid "may include some site-wide data"
379
+ msgstr ""
380
+
381
+ #: addons/multisite.php:542
382
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
383
+ msgstr ""
384
+
385
+ #: addons/multisite.php:542
386
+ msgid "Read more..."
387
+ msgstr ""
388
+
389
+ #: admin.php:556
390
+ msgid "Please fill in the required information."
391
+ msgstr ""
392
+
393
+ #: admin.php:2727
394
+ msgid "Dismiss"
395
+ msgstr ""
396
+
397
+ #: class-updraftplus.php:3576
398
+ msgid "It will be imported as a new site."
399
+ msgstr ""
400
+
401
+ #: class-updraftplus.php:3576
402
+ msgid "Please read this link for important information on this process."
403
+ msgstr ""
404
+
405
+ #: class-updraftplus.php:3580 restorer.php:1553
406
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
407
+ msgstr ""
408
+
409
+ #: restorer.php:1894
410
+ msgid "Skipping table %s: this table will not be restored"
411
+ msgstr ""
412
+
413
+ #: addons/migrator.php:352 addons/migrator.php:355 addons/migrator.php:358
414
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
415
+ msgstr ""
416
+
417
+ #: addons/migrator.php:352
418
+ msgid "WordPress core"
419
+ msgstr ""
420
+
421
+ #: addons/migrator.php:355
422
+ msgid "other content from wp-content"
423
+ msgstr ""
424
+
425
+ #: addons/migrator.php:364 addons/migrator.php:366
426
+ msgid "Importing a single site into a multisite install"
427
+ msgstr ""
428
+
429
+ #: addons/migrator.php:366
430
+ msgid "This feature is not compatible with %s"
431
+ msgstr ""
432
+
433
+ #: addons/migrator.php:386 addons/migrator.php:388
434
+ msgid "You must use lower-case letters or numbers for the site path, only."
435
+ msgstr ""
436
+
437
+ #: addons/migrator.php:396
438
+ msgid "Attribute imported content to user"
439
+ msgstr ""
440
+
441
+ #: addons/migrator.php:434
442
+ msgid "Required information for restoring this backup was not given (%s)"
443
+ msgstr ""
444
+
445
+ #: addons/migrator.php:491 addons/migrator.php:492
446
+ msgid "Error when creating new site at your chosen address:"
447
+ msgstr ""
448
+
449
+ #: addons/migrator.php:517
450
+ msgid "<strong>ERROR</strong>: problem creating site entry."
451
+ msgstr ""
452
+
453
+ #: admin.php:3101
454
+ msgid "Call WordPress action:"
455
+ msgstr ""
456
+
457
+ #: admin.php:2751
458
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
459
+ msgstr ""
460
+
461
+ #: admin.php:354 admin.php:2395
462
+ msgid "Advanced Tools"
463
+ msgstr ""
464
+
465
+ #: admin.php:362
466
+ msgid "Extensions"
467
+ msgstr ""
468
+
469
+ #: admin.php:471
470
+ msgid "You have chosen to backup files, but no file entities have been selected"
471
+ msgstr ""
472
+
473
+ #: admin.php:544
474
+ msgctxt "(verb)"
475
+ msgid "Download"
476
+ msgstr ""
477
+
478
+ #: admin.php:2192 admin.php:2201
479
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
480
+ msgstr ""
481
+
482
+ #: admin.php:2396
483
+ msgid "Premium / Extensions"
484
+ msgstr ""
485
+
486
+ #: admin.php:2521
487
+ msgid "Backup Contents And Schedule"
488
+ msgstr ""
489
+
490
+ #: admin.php:2718
491
+ msgid "%s minutes, %s seconds"
492
+ msgstr ""
493
+
494
+ #: admin.php:2720
495
+ msgid "Unfinished restoration"
496
+ msgstr ""
497
+
498
+ #: admin.php:2721
499
+ msgid "You have an unfinished restoration operation, begun %s ago."
500
+ msgstr ""
501
+
502
+ #: admin.php:2726
503
+ msgid "Continue restoration"
504
+ msgstr ""
505
+
506
+ #: admin.php:2747
507
+ msgid "Include the database in the backup"
508
+ msgstr ""
509
+
510
+ #: admin.php:2749
511
+ msgid "Include any files in the backup"
512
+ msgstr ""
513
+
514
+ #: admin.php:5111
515
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
516
+ msgstr ""
517
+
518
+ #: admin.php:5111
519
+ msgid "settings"
520
+ msgstr ""
521
+
522
+ #: admin.php:5111
523
+ msgid "Not got any remote storage?"
524
+ msgstr ""
525
+
526
+ #: admin.php:5111
527
+ msgid "Check out UpdraftPlus Vault."
528
+ msgstr ""
529
+
530
+ #: admin.php:5113
531
+ msgid "Send this backup to remote storage"
532
+ msgstr ""
533
+
534
+ #: admin.php:3150
535
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
536
+ msgstr ""
537
+
538
+ #: admin.php:3150
539
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
540
+ msgstr ""
541
+
542
+ #: admin.php:3682
543
+ msgid "Files backup schedule"
544
+ msgstr ""
545
+
546
+ #: admin.php:3715
547
+ msgid "Incremental file backup schedule"
548
+ msgstr ""
549
+
550
+ #: admin.php:3725
551
+ msgid "Database backup schedule"
552
+ msgstr ""
553
+
554
+ #: admin.php:3760
555
+ msgid "Sending Your Backup To Remote Storage"
556
+ msgstr ""
557
+
558
+ #: admin.php:3819
559
+ msgid "File Options"
560
+ msgstr ""
561
+
562
+ #: admin.php:4849
563
+ msgid "Skipping: this archive was already restored."
564
+ msgstr ""
565
+
566
+ #: addons/googlecloud.php:860
567
+ msgid "You must use a bucket name that is unique, for all %s users."
568
+ msgstr ""
569
+
570
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
571
+ msgid "This setting applies only when a new bucket is being created."
572
+ msgstr ""
573
+
574
+ #: addons/googlecloud.php:875
575
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
576
+ msgstr ""
577
+
578
+ #: addons/googlecloud.php:880
579
+ msgid "Bucket location"
580
+ msgstr ""
581
+
582
+ #: addons/googlecloud.php:45
583
+ msgid " Eastern United States"
584
+ msgstr ""
585
+
586
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
587
+ msgid "Eastern United States"
588
+ msgstr ""
589
+
590
+ #: addons/googlecloud.php:49
591
+ msgid "Western United States"
592
+ msgstr ""
593
+
594
+ #: addons/googlecloud.php:50
595
+ msgid "Eastern Asia-Pacific"
596
+ msgstr ""
597
+
598
+ #: addons/googlecloud.php:51
599
+ msgid "Western Europe"
600
+ msgstr ""
601
+
602
+ #: addons/googlecloud.php:268
603
+ msgid "You do not have access to this bucket"
604
+ msgstr ""
605
+
606
+ #: addons/googlecloud.php:816
607
+ msgid "Do not confuse %s with %s - they are separate things."
608
+ msgstr ""
609
+
610
+ #: addons/azure.php:516
611
+ msgid "If the %s does not already exist, then it will be created."
612
+ msgstr ""
613
+
614
+ #: addons/azure.php:516
615
+ msgid "See Microsoft's guidelines on container naming by following this link."
616
+ msgstr ""
617
+
618
+ #: addons/azure.php:521
619
+ msgid "Prefix"
620
+ msgstr ""
621
+
622
+ #: addons/azure.php:521
623
+ msgid "optional"
624
+ msgstr ""
625
+
626
+ #: addons/azure.php:522
627
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
628
+ msgstr ""
629
+
630
+ #: addons/azure.php:522
631
+ msgid "container"
632
+ msgstr ""
633
+
634
+ #: addons/googlecloud.php:35
635
+ msgid "Standard"
636
+ msgstr ""
637
+
638
+ #: addons/googlecloud.php:36
639
+ msgid "Durable reduced availability"
640
+ msgstr ""
641
+
642
+ #: addons/googlecloud.php:37
643
+ msgid "Nearline"
644
+ msgstr ""
645
+
646
+ #: addons/googlecloud.php:41
647
+ msgid "United States"
648
+ msgstr ""
649
+
650
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
651
+ #: addons/googlecloud.php:43
652
+ msgid "multi-region location"
653
+ msgstr ""
654
+
655
+ #: addons/googlecloud.php:42
656
+ msgid "Asia Pacific"
657
+ msgstr ""
658
+
659
+ #: addons/googlecloud.php:43
660
+ msgid "European Union"
661
+ msgstr ""
662
+
663
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
664
+ msgid "Central United States"
665
+ msgstr ""
666
+
667
+ #: addons/azure.php:342
668
+ msgid "Could not access container"
669
+ msgstr ""
670
+
671
+ #: addons/azure.php:448
672
+ msgid "Could not create the container"
673
+ msgstr ""
674
+
675
+ #: addons/azure.php:500
676
+ msgid "Create Azure credentials in your Azure developer console."
677
+ msgstr ""
678
+
679
+ #: addons/azure.php:504 addons/azure.php:508
680
+ msgid "Azure"
681
+ msgstr ""
682
+
683
+ #: addons/azure.php:504
684
+ msgid "Account Name"
685
+ msgstr ""
686
+
687
+ #: addons/azure.php:505
688
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
689
+ msgstr ""
690
+
691
+ #: addons/azure.php:516
692
+ msgid "Enter the path of the %s you wish to use here."
693
+ msgstr ""
694
+
695
+ #: class-updraftplus.php:2428
696
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
697
+ msgstr ""
698
+
699
+ #: addons/googlecloud.php:854
700
+ msgid "Project ID"
701
+ msgstr ""
702
+
703
+ #: addons/googlecloud.php:743
704
+ msgid "You must enter a project ID in order to be able to create a new bucket."
705
+ msgstr ""
706
+
707
+ #: addons/googlecloud.php:828
708
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
709
+ msgstr ""
710
+
711
+ #: addons/googlecloud.php:855
712
+ msgid "Enter the ID of the %s project you wish to use here."
713
+ msgstr ""
714
+
715
+ #: addons/googlecloud.php:855
716
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
717
+ msgstr ""
718
+
719
+ #: addons/googlecloud.php:855
720
+ msgid "Otherwise, you can leave it blank."
721
+ msgstr ""
722
+
723
+ #: addons/googlecloud.php:859
724
+ msgid "Bucket"
725
+ msgstr ""
726
+
727
+ #: addons/googlecloud.php:860
728
+ msgid "Enter the name of the %s bucket you wish to use here."
729
+ msgstr ""
730
+
731
+ #: addons/googlecloud.php:860
732
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
733
+ msgstr ""
734
+
735
+ #: addons/googlecloud.php:860
736
+ msgid "See Google's guidelines on bucket naming by following this link."
737
+ msgstr ""
738
+
739
+ #: addons/googlecloud.php:865
740
+ msgid "Storage class"
741
+ msgstr ""
742
+
743
+ #: admin.php:3076
744
+ msgid "Not installed"
745
+ msgstr ""
746
+
747
+ #: admin.php:3076
748
+ msgid "required for some remote storage providers"
749
+ msgstr ""
750
+
751
+ #: backup.php:1408
752
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
753
+ msgstr ""
754
+
755
+ #: backup.php:1509 backup.php:1511
756
+ msgid "The database backup appears to have failed"
757
+ msgstr ""
758
+
759
+ #: backup.php:1509
760
+ msgid "no options or sitemeta table was found"
761
+ msgstr ""
762
+
763
+ #: backup.php:1511
764
+ msgid "the options table was not found"
765
+ msgstr ""
766
+
767
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
768
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
769
+ #: addons/googlecloud.php:782
770
+ msgid "%s Service Exception."
771
+ msgstr ""
772
+
773
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
774
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
775
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
776
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
777
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
778
+ #: addons/googlecloud.php:860
779
+ msgid "Google Cloud"
780
+ msgstr ""
781
+
782
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
783
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
784
+ msgid "You do not have access to this bucket."
785
+ msgstr ""
786
+
787
+ #: addons/googlecloud.php:479
788
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
789
+ msgstr ""
790
+
791
+ #: addons/googlecloud.php:609
792
+ msgid "You must save and authenticate before you can test your settings."
793
+ msgstr ""
794
+
795
+ #: admin.php:548
796
+ msgid "day"
797
+ msgstr ""
798
+
799
+ #: admin.php:549
800
+ msgid "in the month"
801
+ msgstr ""
802
+
803
+ #: admin.php:550
804
+ msgid "day(s)"
805
+ msgstr ""
806
+
807
+ #: admin.php:551
808
+ msgid "hour(s)"
809
+ msgstr ""
810
+
811
+ #: admin.php:552
812
+ msgid "week(s)"
813
+ msgstr ""
814
+
815
+ #: admin.php:553
816
+ msgid "For backups older than"
817
+ msgstr ""
818
+
819
+ #: admin.php:555
820
+ msgid "Processing..."
821
+ msgstr ""
822
+
823
+ #: admin.php:1614
824
+ msgid "Backup sets removed: %d"
825
+ msgstr ""
826
+
827
+ #: admin.php:2869
828
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
+ msgstr ""
830
+
831
+ #: admin.php:2920
832
+ msgid "Actions upon selected backups"
833
+ msgstr ""
834
+
835
+ #: admin.php:2922
836
+ msgid "Select all"
837
+ msgstr ""
838
+
839
+ #: admin.php:2923
840
+ msgid "Deselect"
841
+ msgstr ""
842
+
843
+ #: admin.php:2934 admin.php:2937
844
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
845
+ msgstr ""
846
+
847
+ #: admin.php:3754
848
+ msgid "or to configure more complex schedules"
849
+ msgstr ""
850
+
851
+ #: restorer.php:707
852
+ msgid "Deferring..."
853
+ msgstr ""
854
+
855
+ #: updraftplus.php:147
856
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
857
+ msgstr ""
858
+
859
+ #: addons/morestorage.php:26
860
+ msgid "(as many as you like)"
861
+ msgstr ""
862
+
863
+ #: addons/fixtime.php:281 addons/fixtime.php:286
864
+ msgid "Add an additional retention rule..."
865
+ msgstr ""
866
+
867
+ #: methods/updraftvault.php:563
868
+ msgid "You do not currently have any UpdraftPlus Vault quota"
869
+ msgstr ""
870
+
871
+ #: restorer.php:1978
872
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
873
+ msgstr ""
874
+
875
+ #: restorer.php:1978
876
+ msgid "This database needs to be deployed on MySQL version %s or later."
877
+ msgstr ""
878
+
879
+ #: admin.php:2324
880
+ msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
881
+ msgstr ""
882
+
883
+ #: admin.php:2649
884
+ msgid "No advertising links on UpdraftPlus settings page"
885
+ msgstr ""
886
+
887
+ #: class-updraftplus.php:3613
888
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
889
+ msgstr ""
890
+
891
+ #: class-updraftplus.php:3613
892
+ msgid "You must upgrade MySQL to be able to use this database."
893
+ msgstr ""
894
+
895
+ #: methods/updraftvault.php:303
896
+ msgid "Don't know your email address, or forgotten your password?"
897
+ msgstr ""
898
+
899
+ #: methods/updraftvault.php:258 methods/updraftvault.php:288
900
+ msgid "Read the FAQs here."
901
+ msgstr ""
902
+
903
+ #: methods/updraftvault.php:296
904
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
905
+ msgstr ""
906
+
907
+ #: addons/s3-enhanced.php:40
908
+ msgid "Server-side encryption"
909
+ msgstr ""
910
+
911
+ #: addons/s3-enhanced.php:41
912
+ msgid "Check this box to use Amazon's server-side encryption"
913
+ msgstr ""
914
+
915
+ #: methods/updraftvault.php:572
916
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
917
+ msgstr ""
918
+
919
+ #: admin.php:804
920
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
921
+ msgstr ""
922
+
923
+ #: admin.php:804
924
+ msgid "Go to the remote storage settings in order to connect."
925
+ msgstr ""
926
+
927
+ #: methods/updraftvault.php:285
928
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
929
+ msgstr ""
930
+
931
+ #: admin.php:523
932
+ msgid "Connecting..."
933
+ msgstr ""
934
+
935
+ #: admin.php:525
936
+ msgid "Disconnecting..."
937
+ msgstr ""
938
+
939
+ #: admin.php:526
940
+ msgid "Counting..."
941
+ msgstr ""
942
+
943
+ #: admin.php:527
944
+ msgid "Update quota count"
945
+ msgstr ""
946
+
947
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
948
+ msgid "Updraft Vault"
949
+ msgstr ""
950
+
951
+ #: methods/updraftvault.php:205
952
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
953
+ msgstr ""
954
+
955
+ #: methods/updraftvault.php:208
956
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
957
+ msgstr ""
958
+
959
+ #: methods/updraftvault.php:211
960
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
961
+ msgstr ""
962
+
963
+ #: methods/updraftvault.php:247 methods/updraftvault.php:264
964
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
965
+ msgstr ""
966
+
967
+ #: methods/updraftvault.php:247 methods/updraftvault.php:264
968
+ msgid "Press a button to get started."
969
+ msgstr ""
970
+
971
+ #: methods/updraftvault.php:250
972
+ msgid "First time user?"
973
+ msgstr ""
974
+
975
+ #: methods/updraftvault.php:251
976
+ msgid "Show the options"
977
+ msgstr ""
978
+
979
+ #: methods/updraftvault.php:254
980
+ msgid "Already purchased space?"
981
+ msgstr ""
982
+
983
+ #: methods/updraftvault.php:258 methods/updraftvault.php:288
984
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
985
+ msgstr ""
986
+
987
+ #: methods/updraftvault.php:258 methods/updraftvault.php:288
988
+ msgid "Read more about it here."
989
+ msgstr ""
990
+
991
+ #: methods/updraftvault.php:268 methods/updraftvault.php:274
992
+ #: methods/updraftvault.php:280
993
+ msgid "%s per quarter"
994
+ msgstr ""
995
+
996
+ #: methods/updraftvault.php:285
997
+ msgid "Subscriptions can be cancelled at any time."
998
+ msgstr ""
999
+
1000
+ #: methods/updraftvault.php:291 methods/updraftvault.php:306
1001
+ msgid "Back..."
1002
+ msgstr ""
1003
+
1004
+ #: methods/updraftvault.php:298
1005
+ msgid "E-mail"
1006
+ msgstr ""
1007
+
1008
+ #: methods/updraftvault.php:303
1009
+ msgid "Go here for help"
1010
+ msgstr ""
1011
+
1012
+ #: methods/updraftvault.php:327
1013
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1014
+ msgstr ""
1015
+
1016
+ #: methods/updraftvault.php:331
1017
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1018
+ msgstr ""
1019
+
1020
+ #: methods/updraftvault.php:331
1021
+ msgid "Well done - there's nothing more needed to set up."
1022
+ msgstr ""
1023
+
1024
+ #: methods/updraftvault.php:331
1025
+ msgid "Vault owner"
1026
+ msgstr ""
1027
+
1028
+ #: methods/updraftvault.php:333
1029
+ msgid "Quota:"
1030
+ msgstr ""
1031
+
1032
+ #: admin.php:524 methods/updraftvault.php:341
1033
+ msgid "Disconnect"
1034
+ msgstr ""
1035
+
1036
+ #: methods/updraftvault.php:349
1037
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1038
+ msgstr ""
1039
+
1040
+ #: methods/updraftvault.php:349
1041
+ msgid "You can get more quota here"
1042
+ msgstr ""
1043
+
1044
+ #: methods/updraftvault.php:354 methods/updraftvault.php:397
1045
+ msgid "Current use:"
1046
+ msgstr ""
1047
+
1048
+ #: methods/updraftvault.php:357 methods/updraftvault.php:359
1049
+ #: methods/updraftvault.php:416
1050
+ msgid "Get more quota"
1051
+ msgstr ""
1052
+
1053
+ #: methods/updraftvault.php:361 methods/updraftvault.php:416
1054
+ msgid "Refresh current status"
1055
+ msgstr ""
1056
+
1057
+ #: addons/s3-enhanced.php:322
1058
+ msgid "Allow download"
1059
+ msgstr ""
1060
+
1061
+ #: addons/s3-enhanced.php:324
1062
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1063
+ msgstr ""
1064
+
1065
+ #: addons/s3-enhanced.php:326
1066
+ msgid "Allow deletion"
1067
+ msgstr ""
1068
+
1069
+ #: addons/s3-enhanced.php:328
1070
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1071
+ msgstr ""
1072
+
1073
+ #: backup.php:2884
1074
+ msgid "The zip engine returned the message: %s."
1075
+ msgstr ""
1076
+
1077
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
+ msgid "Delete failed:"
1079
+ msgstr ""
1080
+
1081
+ #: addons/migrator.php:1706 admin.php:533
1082
+ msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1083
+ msgstr ""
1084
+
1085
+ #: addons/migrator.php:1721
1086
+ msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1087
+ msgstr ""
1088
+
1089
+ #: admin.php:531
1090
+ msgid "Creating..."
1091
+ msgstr ""
1092
+
1093
+ #: admin.php:534
1094
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1095
+ msgstr ""
1096
+
1097
+ #: admin.php:536
1098
+ msgid "key name"
1099
+ msgstr ""
1100
+
1101
+ #: admin.php:537
1102
+ msgid "Deleting..."
1103
+ msgstr ""
1104
+
1105
+ #: addons/migrator.php:1734 admin.php:540
1106
+ msgid "Testing connection..."
1107
+ msgstr ""
1108
+
1109
+ #: admin.php:1257
1110
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1111
+ msgstr ""
1112
+
1113
+ #: admin.php:1257
1114
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1115
+ msgstr ""
1116
+
1117
+ #: admin.php:2977
1118
+ 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=\"https://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>."
1119
+ msgstr ""
1120
+
1121
+ #: admin.php:4381
1122
+ msgid "Backup sent to remote site - not available for download."
1123
+ msgstr ""
1124
+
1125
+ #: admin.php:4382
1126
+ msgid "Site"
1127
+ msgstr ""
1128
+
1129
+ #: admin.php:4609
1130
+ msgid "(backup set imported from remote location)"
1131
+ msgstr ""
1132
+
1133
+ #: methods/addon-base.php:177
1134
+ msgid "This storage method does not allow downloading"
1135
+ msgstr ""
1136
+
1137
+ #: addons/reporting.php:142
1138
+ msgid "Backup made by %s"
1139
+ msgstr ""
1140
+
1141
+ #: addons/migrator.php:187
1142
+ msgid "This site has no backups to restore from yet."
1143
+ msgstr ""
1144
+
1145
+ #: addons/migrator.php:194
1146
+ msgid "Restore an existing backup set onto this site"
1147
+ msgstr ""
1148
+
1149
+ #: addons/migrator.php:1663
1150
+ msgid "Backup data will be sent to:"
1151
+ msgstr ""
1152
+
1153
+ #: addons/migrator.php:1678
1154
+ msgid "site not found"
1155
+ msgstr ""
1156
+
1157
+ #: addons/migrator.php:1717
1158
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1159
+ msgstr ""
1160
+
1161
+ #: addons/migrator.php:1752
1162
+ msgid "Also send this backup to the active remote storage locations"
1163
+ msgstr ""
1164
+
1165
+ #: addons/migrator.php:1803
1166
+ msgid "A key with this name already exists; you must use a unique name."
1167
+ msgstr ""
1168
+
1169
+ #: addons/migrator.php:1818 central/bootstrap.php:367
1170
+ msgid "Key created successfully."
1171
+ msgstr ""
1172
+
1173
+ #: addons/migrator.php:1818 central/bootstrap.php:367
1174
+ msgid "You must copy and paste this key now - it cannot be shown again."
1175
+ msgstr ""
1176
+
1177
+ #: addons/migrator.php:2136
1178
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1179
+ msgstr ""
1180
+
1181
+ #: addons/migrator.php:2136
1182
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1183
+ msgstr ""
1184
+
1185
+ #: addons/migrator.php:2153
1186
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1187
+ msgstr ""
1188
+
1189
+ #: addons/migrator.php:2174
1190
+ msgid "Your new key:"
1191
+ msgstr ""
1192
+
1193
+ #: addons/migrator.php:2192
1194
+ msgid "No keys to allow remote sites to connect have yet been created."
1195
+ msgstr ""
1196
+
1197
+ #: addons/migrator.php:2201
1198
+ msgid "Existing keys"
1199
+ msgstr ""
1200
+
1201
+ #: methods/ftp.php:307
1202
+ msgid "FTP server"
1203
+ msgstr ""
1204
+
1205
+ #: methods/ftp.php:311
1206
+ msgid "FTP login"
1207
+ msgstr ""
1208
+
1209
+ #: methods/ftp.php:315
1210
+ msgid "FTP password"
1211
+ msgstr ""
1212
+
1213
+ #: methods/ftp.php:319
1214
+ msgid "Remote path"
1215
+ msgstr ""
1216
+
1217
+ #: methods/ftp.php:323
1218
+ msgid "Passive mode"
1219
+ msgstr ""
1220
+
1221
+ #: methods/ftp.php:325
1222
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1223
+ msgstr ""
1224
+
1225
+ #: addons/migrator.php:1834
1226
+ msgid "key"
1227
+ msgstr ""
1228
+
1229
+ #: addons/migrator.php:1844
1230
+ msgid "The entered key was the wrong length - please try again."
1231
+ msgstr ""
1232
+
1233
+ #: addons/migrator.php:1846 addons/migrator.php:1848 addons/migrator.php:1852
1234
+ msgid "The entered key was corrupt - please try again."
1235
+ msgstr ""
1236
+
1237
+ #: addons/migrator.php:1857
1238
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1239
+ msgstr ""
1240
+
1241
+ #: addons/migrator.php:1873
1242
+ msgid "The key was successfully added."
1243
+ msgstr ""
1244
+
1245
+ #: addons/migrator.php:1873
1246
+ msgid "It is for sending backups to the following site: "
1247
+ msgstr ""
1248
+
1249
+ #: addons/migrator.php:1892
1250
+ msgid "No receiving sites have yet been added."
1251
+ msgstr ""
1252
+
1253
+ #: addons/migrator.php:1894 admin.php:532
1254
+ msgid "Send to site:"
1255
+ msgstr ""
1256
+
1257
+ #: addons/migrator.php:1900 admin.php:541
1258
+ msgid "Send"
1259
+ msgstr ""
1260
+
1261
+ #: addons/migrator.php:2133
1262
+ msgid "Or, send a backup to another site"
1263
+ msgstr ""
1264
+
1265
+ #: addons/migrator.php:2136
1266
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1267
+ msgstr ""
1268
+
1269
+ #: addons/migrator.php:2136
1270
+ msgid "How do I get a site's key?"
1271
+ msgstr ""
1272
+
1273
+ #: addons/migrator.php:2141
1274
+ msgid "Paste key here"
1275
+ msgstr ""
1276
+
1277
+ #: addons/migrator.php:2152
1278
+ msgid "Or, receive a backup from a remote site"
1279
+ msgstr ""
1280
+
1281
+ #: admin.php:528
1282
+ msgid "Adding..."
1283
+ msgstr ""
1284
+
1285
+ #: addons/migrator.php:2141 admin.php:529
1286
+ msgid "Add site"
1287
+ msgstr ""
1288
+
1289
+ #: addons/migrator.php:167
1290
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1291
+ msgstr ""
1292
+
1293
+ #: addons/migrator.php:167
1294
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1295
+ msgstr ""
1296
+
1297
+ #: restorer.php:1980
1298
+ msgid "To use this backup, your database server needs to support the %s character set."
1299
+ msgstr ""
1300
+
1301
+ #: udaddons/options.php:338
1302
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1303
+ msgstr ""
1304
+
1305
+ #: udaddons/updraftplus-addons.php:741
1306
+ msgid "Go here to re-enter your password."
1307
+ msgstr ""
1308
+
1309
+ #: udaddons/updraftplus-addons.php:742
1310
+ msgid "If you have forgotten your password "
1311
+ msgstr ""
1312
+
1313
+ #: udaddons/updraftplus-addons.php:742
1314
+ msgid "go here to change your password on updraftplus.com."
1315
+ msgstr ""
1316
+
1317
+ #: addons/migrator.php:194
1318
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1319
+ msgstr ""
1320
+
1321
+ #: addons/migrator.php:223
1322
+ msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1323
+ msgstr ""
1324
+
1325
+ #: admin.php:520 admin.php:545
1326
+ msgid "You have made changes to your settings, and not saved."
1327
+ msgstr ""
1328
+
1329
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1330
+ msgid "To remove the block, please go here."
1331
+ msgstr ""
1332
+
1333
+ #: methods/email.php:73
1334
+ msgid "configure it here"
1335
+ msgstr ""
1336
+
1337
+ #: addons/onedrive.php:439
1338
+ msgid "Please re-authorize the connection to your %s account."
1339
+ msgstr ""
1340
+
1341
+ #: addons/onedrive.php:554 addons/onedrive.php:698 addons/onedrive.php:702
1342
+ msgid "OneDrive"
1343
+ msgstr ""
1344
+
1345
+ #: addons/onedrive.php:664 addons/onedrive.php:666
1346
+ msgid "%s authorisation failed:"
1347
+ msgstr ""
1348
+
1349
+ #: addons/onedrive.php:682
1350
+ msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1351
+ msgstr ""
1352
+
1353
+ #: addons/onedrive.php:684
1354
+ msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1355
+ msgstr ""
1356
+
1357
+ #: addons/onedrive.php:690
1358
+ msgid "Create OneDrive credentials in your OneDrive developer console."
1359
+ msgstr ""
1360
+
1361
+ #: addons/azure.php:500 addons/migrator.php:1721 addons/onedrive.php:690
1362
+ msgid "For longer help, including screenshots, follow this link."
1363
+ msgstr ""
1364
+
1365
+ #: addons/onedrive.php:699
1366
+ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1367
+ msgstr ""
1368
+
1369
+ #: addons/onedrive.php:710
1370
+ msgid "N.B. %s is not case-sensitive."
1371
+ msgstr ""
1372
+
1373
+ #: addons/s3-enhanced.php:301
1374
+ msgid "US West (N. California)"
1375
+ msgstr ""
1376
+
1377
+ #: addons/s3-enhanced.php:302
1378
+ msgid "US Government West (restricted)"
1379
+ msgstr ""
1380
+
1381
+ #: addons/s3-enhanced.php:303
1382
+ msgid "EU (Ireland)"
1383
+ msgstr ""
1384
+
1385
+ #: addons/s3-enhanced.php:304
1386
+ msgid "EU (Frankfurt)"
1387
+ msgstr ""
1388
+
1389
+ #: addons/s3-enhanced.php:306
1390
+ msgid "Asia Pacific (Singapore)"
1391
+ msgstr ""
1392
+
1393
+ #: addons/s3-enhanced.php:307
1394
+ msgid "Asia Pacific (Sydney)"
1395
+ msgstr ""
1396
+
1397
+ #: addons/s3-enhanced.php:308
1398
+ msgid "Asia Pacific (Tokyo)"
1399
+ msgstr ""
1400
+
1401
+ #: addons/s3-enhanced.php:309
1402
+ msgid "South America (Sao Paulo)"
1403
+ msgstr ""
1404
+
1405
+ #: addons/s3-enhanced.php:310
1406
+ msgid "China (Beijing) (restricted)"
1407
+ msgstr ""
1408
+
1409
+ #: addons/s3-enhanced.php:320
1410
+ msgid "S3 bucket"
1411
+ msgstr ""
1412
+
1413
+ #: addons/s3-enhanced.php:416
1414
+ msgid "You are now using a IAM user account to access your bucket."
1415
+ msgstr ""
1416
+
1417
+ #: addons/s3-enhanced.php:416
1418
+ msgid "Do remember to save your settings."
1419
+ msgstr ""
1420
+
1421
+ #: restorer.php:2079
1422
+ msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1423
+ msgstr ""
1424
+
1425
+ #: admin.php:396
1426
+ msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1427
+ msgstr ""
1428
+
1429
+ #: admin.php:398
1430
+ msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1431
+ msgstr ""
1432
+
1433
+ #: methods/s3.php:743
1434
+ msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1435
+ msgstr ""
1436
+
1437
+ #: addons/s3-enhanced.php:51
1438
+ msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1439
+ msgstr ""
1440
+
1441
+ #: addons/s3-enhanced.php:63
1442
+ msgid "You need to enter an admin access key"
1443
+ msgstr ""
1444
+
1445
+ #: addons/s3-enhanced.php:66
1446
+ msgid "You need to enter an admin secret key"
1447
+ msgstr ""
1448
+
1449
+ #: addons/s3-enhanced.php:69
1450
+ msgid "You need to enter a new IAM username"
1451
+ msgstr ""
1452
+
1453
+ #: addons/s3-enhanced.php:72
1454
+ msgid "You need to enter a bucket"
1455
+ msgstr ""
1456
+
1457
+ #: addons/s3-enhanced.php:97
1458
+ msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1459
+ msgstr ""
1460
+
1461
+ #: addons/s3-enhanced.php:104
1462
+ msgid "AWS authentication failed"
1463
+ msgstr ""
1464
+
1465
+ #: addons/s3-enhanced.php:151
1466
+ 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 AWS user may already have taken your name)."
1467
+ msgstr ""
1468
+
1469
+ #: addons/s3-enhanced.php:179
1470
+ msgid "Conflict: that user already exists"
1471
+ msgstr ""
1472
+
1473
+ #: addons/s3-enhanced.php:181 addons/s3-enhanced.php:184
1474
+ #: addons/s3-enhanced.php:188
1475
+ msgid "IAM operation failed (%s)"
1476
+ msgstr ""
1477
+
1478
+ #: addons/s3-enhanced.php:201
1479
+ msgid "Failed to create user Access Key"
1480
+ msgstr ""
1481
+
1482
+ #: addons/s3-enhanced.php:203 addons/s3-enhanced.php:207
1483
+ msgid "Operation to create user Access Key failed"
1484
+ msgstr ""
1485
+
1486
+ #: addons/s3-enhanced.php:262 addons/s3-enhanced.php:264
1487
+ msgid "Failed to apply User Policy"
1488
+ msgstr ""
1489
+
1490
+ #: addons/s3-enhanced.php:274
1491
+ msgid "Access Key: %s"
1492
+ msgstr ""
1493
+
1494
+ #: addons/s3-enhanced.php:274
1495
+ msgid "Secret Key: %s"
1496
+ msgstr ""
1497
+
1498
+ #: addons/s3-enhanced.php:357
1499
+ msgid "Create new IAM user and S3 bucket"
1500
+ msgstr ""
1501
+
1502
+ #: addons/s3-enhanced.php:284
1503
+ msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1504
+ msgstr ""
1505
+
1506
+ #: addons/s3-enhanced.php:284
1507
+ msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1508
+ msgstr ""
1509
+
1510
+ #: addons/s3-enhanced.php:284
1511
+ msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1512
+ msgstr ""
1513
+
1514
+ #: addons/s3-enhanced.php:291
1515
+ msgid "Admin access key"
1516
+ msgstr ""
1517
+
1518
+ #: addons/s3-enhanced.php:292
1519
+ msgid "Admin secret key"
1520
+ msgstr ""
1521
+
1522
+ #: addons/s3-enhanced.php:293
1523
+ msgid "New IAM username"
1524
+ msgstr ""
1525
+
1526
+ #: addons/s3-enhanced.php:295
1527
+ msgid "S3 storage region"
1528
+ msgstr ""
1529
+
1530
+ #: addons/s3-enhanced.php:299
1531
+ msgid "US Standard (default)"
1532
+ msgstr ""
1533
+
1534
+ #: addons/s3-enhanced.php:300
1535
+ msgid "US West (Oregon)"
1536
+ msgstr ""
1537
+
1538
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1539
+ msgid "UpdraftPlus.com has responded with 'Access Denied'."
1540
+ msgstr ""
1541
+
1542
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1543
+ msgid "It appears that your web server's IP Address (%s) is blocked."
1544
+ msgstr ""
1545
+
1546
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1547
+ msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1548
+ msgstr ""
1549
+
1550
+ #: addons/autobackup.php:662
1551
+ msgid "Update cancelled - reload page to try again."
1552
+ msgstr ""
1553
+
1554
+ #: admin.php:389 admin.php:403
1555
+ msgid "Dismiss (for %s months)"
1556
+ msgstr ""
1557
+
1558
+ #: admin.php:391
1559
+ msgid "Thank you for backing up with UpdraftPlus!"
1560
+ msgstr ""
1561
+
1562
+ #: admin.php:396
1563
+ msgid "Free Newsletter"
1564
+ msgstr ""
1565
+
1566
+ #: admin.php:396
1567
+ msgid "Follow this link to sign up."
1568
+ msgstr ""
1569
+
1570
+ #: admin.php:398
1571
+ msgid "UpdraftPlus Premium"
1572
+ msgstr ""
1573
+
1574
+ #: admin.php:398
1575
+ msgid "Compare with the free version"
1576
+ msgstr ""
1577
+
1578
+ #: admin.php:398
1579
+ msgid "Go to the shop."
1580
+ msgstr ""
1581
+
1582
+ #: admin.php:400
1583
+ msgid "More Quality Plugins"
1584
+ msgstr ""
1585
+
1586
+ #: admin.php:400
1587
+ msgid "Free two-factor security plugin"
1588
+ msgstr ""
1589
+
1590
+ #: admin.php:400
1591
+ msgid "Premium WooCommerce plugins"
1592
+ msgstr ""
1593
+
1594
+ #: class-updraftplus.php:3389
1595
+ msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1596
+ msgstr ""
1597
+
1598
+ #: admin.php:2160
1599
+ msgid "Newsletter sign-up"
1600
+ msgstr ""
1601
+
1602
+ #: admin.php:2544
1603
+ msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1604
+ msgstr ""
1605
+
1606
+ #: admin.php:2544
1607
+ msgid "The first step is to de-install the free version."
1608
+ msgstr ""
1609
+
1610
+ #: admin.php:3628
1611
+ msgid "No backup has been completed"
1612
+ msgstr ""
1613
+
1614
+ #: addons/fixtime.php:422
1615
+ msgid "(at same time as files backup)"
1616
+ msgstr ""
1617
+
1618
+ #: admin.php:2589
1619
+ msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1620
+ msgstr ""
1621
+
1622
+ #: admin.php:2594
1623
+ msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1624
+ msgstr ""
1625
+
1626
+ #: admin.php:2609
1627
+ msgid "Backup extra files and databases"
1628
+ msgstr ""
1629
+
1630
+ #: admin.php:2614
1631
+ msgid "Migrate / clone (i.e. copy) websites"
1632
+ msgstr ""
1633
+
1634
+ #: admin.php:2619
1635
+ msgid "Basic email reporting"
1636
+ msgstr ""
1637
+
1638
+ #: admin.php:2624
1639
+ msgid "Advanced reporting features"
1640
+ msgstr ""
1641
+
1642
+ #: admin.php:2629
1643
+ msgid "Automatic backup when updating WP/plugins/themes"
1644
+ msgstr ""
1645
+
1646
+ #: admin.php:2634
1647
+ msgid "Send backups to multiple remote destinations"
1648
+ msgstr ""
1649
+
1650
+ #: admin.php:2639
1651
+ msgid "Database encryption"
1652
+ msgstr ""
1653
+
1654
+ #: admin.php:2644
1655
+ msgid "Restore backups from other plugins"
1656
+ msgstr ""
1657
+
1658
+ #: admin.php:2654
1659
+ msgid "Scheduled backups"
1660
+ msgstr ""
1661
+
1662
+ #: admin.php:2659
1663
+ msgid "Fix backup time"
1664
+ msgstr ""
1665
+
1666
+ #: admin.php:2664
1667
+ msgid "Network/Multisite support"
1668
+ msgstr ""
1669
+
1670
+ #: admin.php:2669
1671
+ msgid "Lock settings access"
1672
+ msgstr ""
1673
+
1674
+ #: admin.php:2674
1675
+ msgid "Personal support"
1676
+ msgstr ""
1677
+
1678
+ #: admin.php:2544
1679
+ msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1680
+ msgstr ""
1681
+
1682
+ #: admin.php:2546
1683
+ msgid "Get UpdraftPlus Premium"
1684
+ msgstr ""
1685
+
1686
+ #: admin.php:2547
1687
+ msgid "Full feature list"
1688
+ msgstr ""
1689
+
1690
+ #: admin.php:2548
1691
+ msgid "Pre-sales FAQs"
1692
+ msgstr ""
1693
+
1694
+ #: admin.php:2549
1695
+ msgid "Ask a pre-sales question"
1696
+ msgstr ""
1697
+
1698
+ #: admin.php:2561
1699
+ msgid "Get it from"
1700
+ msgstr ""
1701
+
1702
+ #: admin.php:2565
1703
+ msgid "Buy It Now!"
1704
+ msgstr ""
1705
+
1706
+ #: admin.php:2569
1707
+ msgid "Backup WordPress files and database"
1708
+ msgstr ""
1709
+
1710
+ #: admin.php:2574
1711
+ msgid "Translated into over %s languages"
1712
+ msgstr ""
1713
+
1714
+ #: admin.php:2579
1715
+ msgid "Restore from backup"
1716
+ msgstr ""
1717
+
1718
+ #: admin.php:2584
1719
+ msgid "Backup to remote storage"
1720
+ msgstr ""
1721
+
1722
+ #: admin.php:514
1723
+ msgid "You did not select any components to restore. Please select at least one, and then try again."
1724
+ msgstr ""
1725
+
1726
+ #: admin.php:2891
1727
+ msgctxt "Uploader: Drop backup files here - or - Select Files"
1728
+ msgid "or"
1729
+ msgstr ""
1730
+
1731
+ #: admin.php:3868
1732
+ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1733
+ msgid "or"
1734
+ msgstr ""
1735
+
1736
+ #: methods/s3.php:127 methods/s3.php:128 methods/s3.php:129
1737
+ msgid "%s Error: Failed to initialise"
1738
+ msgstr ""
1739
+
1740
+ #: addons/autobackup.php:920
1741
+ msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1742
+ msgstr ""
1743
+
1744
+ #: restorer.php:1957
1745
+ msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1746
+ msgid "An error (%s) occurred:"
1747
+ msgstr ""
1748
+
1749
+ #: admin.php:3637
1750
+ msgctxt "i.e. Non-automatic"
1751
+ msgid "Manual"
1752
+ msgstr ""
1753
+
1754
+ #: admin.php:3920
1755
+ msgid "Check this box to have a basic report sent to"
1756
+ msgstr ""
1757
+
1758
+ #: admin.php:3920
1759
+ msgid "your site's admin address"
1760
+ msgstr ""
1761
+
1762
+ #: methods/openstack2.php:102
1763
+ msgctxt "Keystone and swauth are technical terms which cannot be translated"
1764
+ msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1765
+ msgstr ""
1766
+
1767
+ #: methods/openstack2.php:152
1768
+ msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1769
+ msgid "tenant"
1770
+ msgstr ""
1771
+
1772
+ #: addons/sftp.php:340
1773
+ msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1774
+ msgstr ""
1775
+
1776
+ #: addons/sftp.php:377
1777
+ msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1778
+ msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1779
+ msgstr ""
1780
+
1781
+ #: addons/morefiles.php:178
1782
+ msgid "Any other file/directory on your server that you wish to back up"
1783
+ msgstr ""
1784
+
1785
+ #: addons/lockadmin.php:162
1786
+ msgid "Change Lock Settings"
1787
+ msgstr ""
1788
+
1789
+ #: restorer.php:1163
1790
+ msgid "Clearing cached pages (%s)..."
1791
+ msgstr ""
1792
+
1793
+ #: restorer.php:1963
1794
+ msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1795
+ msgstr ""
1796
+
1797
+ #: admin.php:2337
1798
+ msgid "For even more features and personal support, check out "
1799
+ msgstr ""
1800
+
1801
+ #: udaddons/options.php:273
1802
+ msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1803
+ msgstr ""
1804
+
1805
+ #: addons/morefiles.php:67
1806
+ msgid "(learn more about this significant option)"
1807
+ msgstr ""
1808
+
1809
+ #: addons/lockadmin.php:105
1810
+ msgid "The admin password has now been removed."
1811
+ msgstr ""
1812
+
1813
+ #: addons/lockadmin.php:107
1814
+ msgid "An admin password has been set."
1815
+ msgstr ""
1816
+
1817
+ #: addons/lockadmin.php:109
1818
+ msgid "The admin password has been changed."
1819
+ msgstr ""
1820
+
1821
+ #: addons/lockadmin.php:111
1822
+ msgid "Settings saved."
1823
+ msgstr ""
1824
+
1825
+ #: addons/lockadmin.php:131
1826
+ msgid "Lock access to the UpdraftPlus settings page"
1827
+ msgstr ""
1828
+
1829
+ #: addons/lockadmin.php:133
1830
+ msgid "Please make sure that you have made a note of the password!"
1831
+ msgstr ""
1832
+
1833
+ #: addons/lockadmin.php:144
1834
+ msgid "1 hour"
1835
+ msgstr ""
1836
+
1837
+ #: addons/lockadmin.php:145 addons/lockadmin.php:146
1838
+ msgid "%s hours"
1839
+ msgstr ""
1840
+
1841
+ #: addons/lockadmin.php:147
1842
+ msgid "1 week"
1843
+ msgstr ""
1844
+
1845
+ #: addons/lockadmin.php:148 addons/lockadmin.php:149
1846
+ msgid "%s weeks"
1847
+ msgstr ""
1848
+
1849
+ #: addons/lockadmin.php:157
1850
+ msgid "Require password again after"
1851
+ msgstr ""
1852
+
1853
+ #: addons/lockadmin.php:159
1854
+ msgid "Support URL"
1855
+ msgstr ""
1856
+
1857
+ #: addons/lockadmin.php:159
1858
+ msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1859
+ msgstr ""
1860
+
1861
+ #: addons/lockadmin.php:159
1862
+ msgid "Otherwise, the default link will be shown."
1863
+ msgstr ""
1864
+
1865
+ #: addons/lockadmin.php:188 addons/lockadmin.php:194
1866
+ msgid "Unlock"
1867
+ msgstr ""
1868
+
1869
+ #: addons/lockadmin.php:200
1870
+ msgid "Password incorrect"
1871
+ msgstr ""
1872
+
1873
+ #: addons/lockadmin.php:203
1874
+ msgid "To access the UpdraftPlus settings, please enter your unlock password"
1875
+ msgstr ""
1876
+
1877
+ #: addons/lockadmin.php:210
1878
+ msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1879
+ msgstr ""
1880
+
1881
+ #: addons/autobackup.php:85
1882
+ msgid "WordPress core (only)"
1883
+ msgstr ""
1884
+
1885
+ #: addons/autobackup.php:120 addons/autobackup.php:885
1886
+ #: addons/autobackup.php:893 admin.php:519
1887
+ msgid "Automatic backup before update"
1888
+ msgstr ""
1889
+
1890
+ #: addons/moredatabase.php:45
1891
+ msgid "Database decryption phrase"
1892
+ msgstr ""
1893
+
1894
+ #: backup.php:2886
1895
+ msgid "A zip error occurred"
1896
+ msgstr ""
1897
+
1898
+ #: backup.php:2888
1899
+ msgid "your web hosting account appears to be full; please see: %s"
1900
+ msgstr ""
1901
+
1902
+ #: backup.php:2890
1903
+ msgid "check your log for more details."
1904
+ msgstr ""
1905
+
1906
+ #: admin.php:1842
1907
+ msgid "Error: unexpected file read fail"
1908
+ msgstr ""
1909
+
1910
+ #: class-updraftplus.php:3565
1911
+ msgid "Backup label:"
1912
+ msgstr ""
1913
+
1914
+ #: admin.php:748 admin.php:2427 central/updraftplus-commands.php:304
1915
+ msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1916
+ msgstr ""
1917
+
1918
+ #: admin.php:2880
1919
+ msgid "Upload files into UpdraftPlus."
1920
+ msgstr ""
1921
+
1922
+ #: admin.php:3112
1923
+ msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1924
+ msgstr ""
1925
+
1926
+ #: admin.php:3598
1927
+ msgid "incremental backup; base backup: %s"
1928
+ msgstr ""
1929
+
1930
+ #: admin.php:3702 admin.php:3741
1931
+ msgid "and retain this many scheduled backups"
1932
+ msgstr ""
1933
+
1934
+ #: admin.php:4327
1935
+ msgid "Backup date"
1936
+ msgstr ""
1937
+
1938
+ #: admin.php:4328
1939
+ msgid "Backup data (click to download)"
1940
+ msgstr ""
1941
+
1942
+ #: admin.php:3220 admin.php:4632
1943
+ msgid "View Log"
1944
+ msgstr ""
1945
+
1946
+ #: addons/copycom.php:535
1947
+ msgid "API Key"
1948
+ msgstr ""
1949
+
1950
+ #: addons/copycom.php:540
1951
+ msgid "API Secret"
1952
+ msgstr ""
1953
+
1954
+ #: addons/copycom.php:550
1955
+ msgid "(case-sensitive)"
1956
+ msgstr ""
1957
+
1958
+ #: addons/copycom.php:551
1959
+ msgid "N.B. Copy is case-sensitive."
1960
+ msgstr ""
1961
+
1962
+ #: addons/reporting.php:60
1963
+ msgid "Your label for this backup (optional)"
1964
+ msgstr ""
1965
+
1966
+ #: addons/googlecloud.php:822 methods/googledrive.php:900
1967
+ msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1968
+ msgstr ""
1969
+
1970
+ #: methods/updraftvault.php:512 udaddons/updraftplus-addons.php:642
1971
+ msgid "You need to supply both an email address and a password"
1972
+ msgstr ""
1973
+
1974
+ #: methods/updraftvault.php:572 udaddons/updraftplus-addons.php:741
1975
+ msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1976
+ msgstr ""
1977
+
1978
+ #: methods/updraftvault.php:575 udaddons/updraftplus-addons.php:745
1979
+ msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
1980
+ msgstr ""
1981
+
1982
+ #: admin.php:2488
1983
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
1984
+ msgstr ""
1985
+
1986
+ #: class-updraftplus.php:3584
1987
+ msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
1988
+ msgstr ""
1989
+
1990
+ #: class-updraftplus.php:3584
1991
+ msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
1992
+ msgstr ""
1993
+
1994
+ #: addons/migrator.php:1036
1995
+ msgid "already done"
1996
+ msgstr ""
1997
+
1998
+ #: addons/migrator.php:993 addons/migrator.php:1036 addons/migrator.php:1183
1999
+ msgid "Search and replacing table:"
2000
+ msgstr ""
2001
+
2002
+ #: addons/migrator.php:993
2003
+ msgid "skipped (not in list)"
2004
+ msgstr ""
2005
+
2006
+ #: addons/migrator.php:303
2007
+ msgid "Rows per batch"
2008
+ msgstr ""
2009
+
2010
+ #: addons/migrator.php:304
2011
+ msgid "These tables only"
2012
+ msgstr ""
2013
+
2014
+ #: addons/migrator.php:304
2015
+ msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2016
+ msgstr ""
2017
+
2018
+ #: addons/copycom.php:514
2019
+ msgid "To get your credentials, log in at the %s developer portal."
2020
+ msgstr ""
2021
+
2022
+ #: udaddons/options.php:102
2023
+ msgid "You have not yet connected with your UpdraftPlus.Com account."
2024
+ msgstr ""
2025
+
2026
+ #: udaddons/options.php:100 udaddons/options.php:102
2027
+ msgid "You need to connect to receive future updates to UpdraftPlus."
2028
+ msgstr ""
2029
+
2030
+ #: class-updraftplus.php:3557
2031
+ msgid "The site in this backup was running on a webserver with version %s of %s. "
2032
+ msgstr ""
2033
+
2034
+ #: class-updraftplus.php:3557
2035
+ msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2036
+ msgstr ""
2037
+
2038
+ #: class-updraftplus.php:3557
2039
+ msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2040
+ msgstr ""
2041
+
2042
+ #: class-updraftplus.php:3557
2043
+ msgid "Any support requests to do with %s should be raised with your web hosting company."
2044
+ msgstr ""
2045
+
2046
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2047
+ msgid "UpdraftPlus is on social media - check us out here:"
2048
+ msgstr ""
2049
+
2050
+ #: admin.php:2158 class-updraftplus.php:3380 class-updraftplus.php:3409
2051
+ msgid "Twitter"
2052
+ msgstr ""
2053
+
2054
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2055
+ msgid "Facebook"
2056
+ msgstr ""
2057
+
2058
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2059
+ msgid "Google+"
2060
+ msgstr ""
2061
+
2062
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2063
+ msgid "LinkedIn"
2064
+ msgstr ""
2065
+
2066
+ #: admin.php:4693
2067
+ msgid "Why am I seeing this?"
2068
+ msgstr "Per què estic veient això ?"
2069
+
2070
+ #: admin.php:2868
2071
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2072
+ msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2073
+
2074
+ #: admin.php:2868
2075
+ msgid "The location of this directory is set in the expert settings, in the Settings tab."
2076
+ msgstr "La ubicació d'aquest directori es troba en la configuració d'experts, a la pestanya Configuració."
2077
+
2078
+ #: admin.php:1790 admin.php:1802
2079
+ msgid "Start backup"
2080
+ msgstr "Iniciar còpia de seguretat"
2081
+
2082
+ #: class-updraftplus.php:3529 restorer.php:926
2083
+ msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2084
+ msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2085
+
2086
+ #: admin.php:3542
2087
+ msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2088
+ msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2089
+
2090
+ #: admin.php:3033
2091
+ msgid "Unless you have a problem, you can completely ignore everything here."
2092
+ msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2093
+
2094
+ #: admin.php:1964
2095
+ msgid "You will find more information about this in the Settings section."
2096
+ msgstr "Més informació sobre això en la secció Configuració."
2097
+
2098
+ #: admin.php:1999
2099
+ msgid "This file could not be uploaded"
2100
+ msgstr "No s'ha pogut carregar aquest fitxer"
2101
+
2102
+ #: addons/importer.php:70
2103
+ msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2104
+ msgstr ""
2105
+
2106
+ #: addons/importer.php:70
2107
+ msgid "Supported backup plugins: %s"
2108
+ msgstr "Complements de còpia de seguretat suportats: %s."
2109
+
2110
+ #: admin.php:3718
2111
+ msgid "Tell me more about incremental backups"
2112
+ msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
2113
+
2114
+ #: admin.php:3069
2115
+ msgid "Memory limit"
2116
+ msgstr "Límit de memòria"
2117
+
2118
+ #: class-updraftplus.php:3671 restorer.php:1368
2119
+ msgid "restoration"
2120
+ msgstr "Restauració"
2121
+
2122
+ #: restorer.php:1910
2123
+ msgid "Table to be implicitly dropped: %s"
2124
+ msgstr "Taula d'elements exclosos implicitament: %s."
2125
+
2126
+ #: backup.php:828
2127
+ msgid "Full backup"
2128
+ msgstr "Còpia de seguretat completa"
2129
+
2130
+ #: backup.php:828
2131
+ msgid "Incremental"
2132
+ msgstr "Incremental"
2133
+
2134
+ #: addons/autobackup.php:479 addons/autobackup.php:481
2135
+ msgid "Backup succeeded"
2136
+ msgstr "Còpia de seguretat executada correctament"
2137
+
2138
+ #: addons/autobackup.php:479 addons/autobackup.php:481
2139
+ msgid "(view log...)"
2140
+ msgstr "(veure registre ...)"
2141
+
2142
+ #: addons/autobackup.php:479 addons/autobackup.php:481
2143
+ msgid "now proceeding with the updates..."
2144
+ msgstr "Actualitzant ..."
2145
+
2146
+ #: admin.php:3638 admin.php:3639 admin.php:3640 updraftplus.php:92
2147
+ #: updraftplus.php:93
2148
+ msgid "Every %s hours"
2149
+ msgstr "Cada %s hores"
2150
+
2151
+ #: addons/migrator.php:763 addons/migrator.php:765
2152
+ msgid "search and replace"
2153
+ msgstr "cercar i substituir"
2154
+
2155
+ #: addons/migrator.php:274
2156
+ msgid "search term"
2157
+ msgstr "terme de cerca"
2158
+
2159
+ #: addons/migrator.php:268 addons/migrator.php:293
2160
+ msgid "Search / replace database"
2161
+ msgstr "Cercar / substituir base de dades"
2162
+
2163
+ #: addons/migrator.php:269 addons/migrator.php:301
2164
+ msgid "Search for"
2165
+ msgstr "Cercar"
2166
+
2167
+ #: addons/migrator.php:270 addons/migrator.php:302
2168
+ msgid "Replace with"
2169
+ msgstr "Substituir per"
2170
+
2171
+ #: addons/migrator.php:294
2172
+ msgid "This can easily destroy your site; so, use it with care!"
2173
+ msgstr "Això pot destruir el teu lloc web fàcilment; utilitza-ho amb compte!"
2174
+
2175
+ #: addons/migrator.php:295
2176
+ msgid "A search/replace cannot be undone - are you sure you want to do this?"
2177
+ msgstr "Una cerca/substitució no es pot desfer - Estàs segur que vols fer això?"
2178
+
2179
+ #: addons/migrator.php:306
2180
+ msgid "Go"
2181
+ msgstr "Endavant"
2182
+
2183
+ #: restorer.php:1985
2184
+ msgid "Too many database errors have occurred - aborting"
2185
+ msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2186
+
2187
+ #: backup.php:894
2188
+ msgid "read more at %s"
2189
+ msgstr "Llegir més a %s"
2190
+
2191
+ #: backup.php:894
2192
+ msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2193
+ msgstr ""
2194
+
2195
+ #: methods/googledrive.php:906
2196
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2197
+ msgstr ""
2198
+
2199
+ #: admin.php:4314
2200
+ msgid "You have not yet made any backups."
2201
+ msgstr ""
2202
+
2203
+ #: admin.php:3831
2204
+ msgid "Database Options"
2205
+ msgstr ""
2206
+
2207
+ #: admin.php:3130
2208
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2209
+ msgstr ""
2210
+
2211
+ #: admin.php:3094
2212
+ msgid "%s (%s used)"
2213
+ msgstr ""
2214
+
2215
+ #: admin.php:3097
2216
+ msgid "Plugins for debugging:"
2217
+ msgstr ""
2218
+
2219
+ #: admin.php:3094
2220
+ msgid "Free disk space in account:"
2221
+ msgstr ""
2222
+
2223
+ #: admin.php:330 admin.php:2392
2224
+ msgid "Current Status"
2225
+ msgstr ""
2226
+
2227
+ #: admin.php:338 admin.php:1417 admin.php:1656 admin.php:2393 admin.php:2851
2228
+ msgid "Existing Backups"
2229
+ msgstr ""
2230
+
2231
+ #: admin.php:2431 admin.php:5188
2232
+ msgid "This button is disabled because your backup directory is not writable (see the settings)."
2233
+ msgstr ""
2234
+
2235
+ #: admin.php:753
2236
+ msgid "Welcome to UpdraftPlus!"
2237
+ msgstr ""
2238
+
2239
+ #: admin.php:753
2240
+ msgid "To make a backup, just press the Backup Now button."
2241
+ msgstr ""
2242
+
2243
+ #: admin.php:753
2244
+ msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2245
+ msgstr ""
2246
+
2247
+ #: addons/moredatabase.php:338
2248
+ msgid "If you enter text here, it is used to encrypt database 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> 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)."
2249
+ msgstr ""
2250
+
2251
+ #: addons/moredatabase.php:236
2252
+ msgid "Table prefix"
2253
+ msgstr ""
2254
+
2255
+ #: addons/moredatabase.php:237
2256
+ msgid "Test connection..."
2257
+ msgstr ""
2258
+
2259
+ #: addons/moredatabase.php:250
2260
+ msgid "Testing..."
2261
+ msgstr ""
2262
+
2263
+ #: addons/moredatabase.php:153
2264
+ msgid "Backup non-WordPress tables contained in the same database as WordPress"
2265
+ msgstr ""
2266
+
2267
+ #: addons/moredatabase.php:154
2268
+ msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
2269
+ msgstr ""
2270
+
2271
+ #: addons/moredatabase.php:158
2272
+ msgid "Add an external database to backup..."
2273
+ msgstr ""
2274
+
2275
+ #: addons/moredatabase.php:230
2276
+ msgid "Backup external database"
2277
+ msgstr ""
2278
+
2279
+ #: addons/moredatabase.php:112
2280
+ msgid "%s table(s) found."
2281
+ msgstr ""
2282
+
2283
+ #: addons/moredatabase.php:118
2284
+ msgid "%s total table(s) found; %s with the indicated prefix."
2285
+ msgstr ""
2286
+
2287
+ #: addons/moredatabase.php:136
2288
+ msgid "Connection succeeded."
2289
+ msgstr ""
2290
+
2291
+ #: addons/moredatabase.php:138
2292
+ msgid "Connection failed."
2293
+ msgstr ""
2294
+
2295
+ #: addons/moredatabase.php:153
2296
+ msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
2297
+ msgstr ""
2298
+
2299
+ #: addons/moredatabase.php:70
2300
+ msgid "user"
2301
+ msgstr ""
2302
+
2303
+ #: addons/moredatabase.php:72
2304
+ msgid "host"
2305
+ msgstr ""
2306
+
2307
+ #: addons/moredatabase.php:74
2308
+ msgid "database name"
2309
+ msgstr ""
2310
+
2311
+ #: addons/moredatabase.php:85
2312
+ msgid "database connection attempt failed"
2313
+ msgstr ""
2314
+
2315
+ #: class-updraftplus.php:1237
2316
+ msgid "External database (%s)"
2317
+ msgstr ""
2318
+
2319
+ #: methods/googledrive.php:906
2320
+ msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2321
+ msgstr ""
2322
+
2323
+ #: methods/googledrive.php:381
2324
+ msgid "failed to access parent folder"
2325
+ msgstr ""
2326
+
2327
+ #: addons/googlecloud.php:559 addons/onedrive.php:535
2328
+ #: methods/googledrive.php:338
2329
+ msgid "However, subsequent access attempts failed:"
2330
+ msgstr ""
2331
+
2332
+ #: admin.php:4458
2333
+ msgid "External database"
2334
+ msgstr ""
2335
+
2336
+ #: admin.php:3954
2337
+ msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2338
+ msgstr ""
2339
+
2340
+ #: admin.php:3894
2341
+ msgid "Back up more databases"
2342
+ msgstr ""
2343
+
2344
+ #: admin.php:3840
2345
+ msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2346
+ msgstr ""
2347
+
2348
+ #: admin.php:3840
2349
+ msgid "It can also backup external databases."
2350
+ msgstr ""
2351
+
2352
+ #: admin.php:3852
2353
+ msgid "You can manually decrypt an encrypted database here."
2354
+ msgstr ""
2355
+
2356
+ #: admin.php:3870
2357
+ msgid "First, enter the decryption key"
2358
+ msgstr ""
2359
+
2360
+ #: admin.php:3754
2361
+ msgid "use UpdraftPlus Premium"
2362
+ msgstr ""
2363
+
2364
+ #: class-updraftplus.php:3444
2365
+ msgid "Decryption failed. The database file is encrypted."
2366
+ msgstr ""
2367
+
2368
+ #: admin.php:1269
2369
+ msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2370
+ msgstr ""
2371
+
2372
+ #: restorer.php:1613 restorer.php:1932 restorer.php:1967 restorer.php:1980
2373
+ msgid "An error occurred on the first %s command - aborting run"
2374
+ msgstr ""
2375
+
2376
+ #: backup.php:1349
2377
+ msgid "database connection attempt failed."
2378
+ msgstr ""
2379
+
2380
+ #: addons/moredatabase.php:93 backup.php:1349
2381
+ msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2382
+ msgstr ""
2383
+
2384
+ #: addons/google-enhanced.php:75
2385
+ msgid "In %s, path names are case sensitive."
2386
+ msgstr ""
2387
+
2388
+ #: addons/migrator.php:919
2389
+ msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2390
+ msgstr ""
2391
+
2392
+ #: addons/copycom.php:262
2393
+ msgid "You have not yet configured and saved your %s credentials"
2394
+ msgstr ""
2395
+
2396
+ #: addons/copycom.php:515
2397
+ msgid "After logging in, create a sandbox app. You can leave all of the questions for creating an app blank (except for the app's name)."
2398
+ msgstr ""
2399
+
2400
+ #: addons/copycom.php:551 addons/google-enhanced.php:73 addons/onedrive.php:710
2401
+ msgid "Enter the path of the %s folder you wish to use here."
2402
+ msgstr ""
2403
+
2404
+ #: addons/copycom.php:551 addons/google-enhanced.php:73 addons/onedrive.php:710
2405
+ msgid "If the folder does not already exist, then it will be created."
2406
+ msgstr ""
2407
+
2408
+ #: addons/copycom.php:551 addons/google-enhanced.php:73
2409
+ #: addons/googlecloud.php:860 addons/onedrive.php:710
2410
+ msgid "e.g. %s"
2411
+ msgstr ""
2412
+
2413
+ #: addons/azure.php:522 addons/copycom.php:551 addons/google-enhanced.php:73
2414
+ #: addons/onedrive.php:710
2415
+ msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2416
+ msgstr ""
2417
+
2418
+ #: methods/openstack2.php:107
2419
+ msgid "Follow this link for more information"
2420
+ msgstr ""
2421
+
2422
+ #: methods/openstack2.php:107
2423
+ msgid "Tenant"
2424
+ msgstr ""
2425
+
2426
+ #: methods/openstack2.php:116
2427
+ msgid "Leave this blank, and a default will be chosen."
2428
+ msgstr ""
2429
+
2430
+ #: addons/azure.php:515 methods/openstack2.php:133
2431
+ msgid "Container"
2432
+ msgstr ""
2433
+
2434
+ #: methods/addon-base.php:106
2435
+ msgid "failed to list files"
2436
+ msgstr ""
2437
+
2438
+ #: methods/addon-base.php:208
2439
+ msgid "Failed to download"
2440
+ msgstr ""
2441
+
2442
+ #: methods/addon-base.php:194 methods/addon-base.php:214
2443
+ msgid "Failed to download %s"
2444
+ msgstr ""
2445
+
2446
+ #: methods/openstack2.php:94
2447
+ msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2448
+ msgstr ""
2449
+
2450
+ #: methods/openstack2.php:99 methods/openstack2.php:157
2451
+ msgid "authentication URI"
2452
+ msgstr ""
2453
+
2454
+ #: methods/addon-base.php:75 methods/addon-base.php:80
2455
+ msgid "Failed to upload %s"
2456
+ msgstr ""
2457
+
2458
+ #: addons/copycom.php:387 addons/copycom.php:389 methods/dropbox.php:523
2459
+ #: methods/dropbox.php:525
2460
+ msgid "Success:"
2461
+ msgstr ""
2462
+
2463
+ #: methods/dropbox.php:453 methods/dropbox.php:454
2464
+ msgid "Dropbox"
2465
+ msgstr ""
2466
+
2467
+ #: addons/copycom.php:557 addons/onedrive.php:716 methods/dropbox.php:454
2468
+ msgid "(You appear to be already authenticated)."
2469
+ msgstr ""
2470
+
2471
+ #: addons/copycom.php:559 addons/onedrive.php:718 methods/dropbox.php:454
2472
+ 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 %s."
2473
+ msgstr ""
2474
+
2475
+ #: addons/copycom.php:556 addons/onedrive.php:715 methods/dropbox.php:453
2476
+ msgid "Authenticate with %s"
2477
+ msgstr ""
2478
+
2479
+ #: methods/cloudfiles.php:409
2480
+ msgid "Error downloading remote file: Failed to download"
2481
+ msgstr ""
2482
+
2483
+ #: addons/copycom.php:158 addons/copycom.php:182 methods/openstack-base.php:305
2484
+ msgid "The %s object was not found"
2485
+ msgstr ""
2486
+
2487
+ #: methods/openstack-base.php:387
2488
+ msgid "%s error - we accessed the container, but failed to create a file within it"
2489
+ msgstr ""
2490
+
2491
+ #: methods/openstack-base.php:388 methods/openstack-base.php:393
2492
+ msgid "Region: %s"
2493
+ msgstr ""
2494
+
2495
+ #: methods/openstack-base.php:44 methods/openstack-base.php:228
2496
+ #: methods/openstack-base.php:297
2497
+ msgid "Could not access %s container"
2498
+ msgstr ""
2499
+
2500
+ #: addons/copycom.php:558 addons/googlecloud.php:902 addons/onedrive.php:717
2501
+ #: methods/dropbox.php:460 methods/googledrive.php:955
2502
+ msgid "Account holder's name: %s."
2503
+ msgstr ""
2504
+
2505
+ #: methods/openstack-base.php:36 methods/openstack-base.php:100
2506
+ #: methods/openstack-base.php:107 methods/openstack-base.php:220
2507
+ #: methods/openstack-base.php:285
2508
+ msgid "%s error - failed to access the container"
2509
+ msgstr ""
2510
+
2511
+ #: methods/googledrive.php:935
2512
+ msgid "<strong>This is NOT a folder name</strong>."
2513
+ msgstr ""
2514
+
2515
+ #: methods/googledrive.php:935
2516
+ msgid "It is an ID number internal to Google Drive"
2517
+ msgstr ""
2518
+
2519
+ #: methods/googledrive.php:944
2520
+ msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2521
+ msgstr ""
2522
+
2523
+ #: addons/copycom.php:550 addons/google-enhanced.php:72 addons/onedrive.php:709
2524
+ #: methods/googledrive.php:931 methods/googledrive.php:941
2525
+ msgid "Folder"
2526
+ msgstr ""
2527
+
2528
+ #: addons/googlecloud.php:579 methods/googledrive.php:358
2529
+ msgid "Name: %s."
2530
+ msgstr ""
2531
+
2532
+ #: addons/googlecloud.php:254 addons/onedrive.php:294
2533
+ #: methods/googledrive.php:863
2534
+ msgid "%s download: failed: file not found"
2535
+ msgstr ""
2536
+
2537
+ #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2538
+ msgid "This remote storage method (%s) requires PHP %s or later."
2539
+ msgstr ""
2540
+
2541
+ #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2542
+ msgid "You will need to ask your web hosting company to upgrade."
2543
+ msgstr ""
2544
+
2545
+ #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2546
+ msgid "Your %s version: %s."
2547
+ msgstr ""
2548
+
2549
+ #: methods/googledrive.php:157
2550
+ msgid "Google Drive list files: failed to access parent folder"
2551
+ msgstr ""
2552
+
2553
+ #: admin.php:5040
2554
+ msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2555
+ msgstr ""
2556
+
2557
+ #: admin.php:3099
2558
+ msgid "Fetch"
2559
+ msgstr ""
2560
+
2561
+ #: admin.php:3101
2562
+ msgid "Call"
2563
+ msgstr ""
2564
+
2565
+ #: addons/migrator.php:364 admin.php:2884 admin.php:3860
2566
+ msgid "This feature requires %s version %s or later"
2567
+ msgstr ""
2568
+
2569
+ #: restorer.php:2109
2570
+ msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2571
+ msgstr ""
2572
+
2573
+ #: restorer.php:106
2574
+ msgid "Failed to unpack the archive"
2575
+ msgstr ""
2576
+
2577
+ #: restorer.php:259
2578
+ msgid "%s files have been extracted"
2579
+ msgstr ""
2580
+
2581
+ #: class-updraftplus.php:910
2582
+ msgid "Error - failed to download the file"
2583
+ msgstr ""
2584
+
2585
+ #: admin.php:2868
2586
+ msgid "Rescan local folder for new backup sets"
2587
+ msgstr ""
2588
+
2589
+ #: udaddons/updraftplus-addons.php:208
2590
+ msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2591
+ msgstr ""
2592
+
2593
+ #: udaddons/updraftplus-addons.php:208
2594
+ msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
2595
+ msgstr ""
2596
+
2597
+ #: udaddons/updraftplus-addons.php:208
2598
+ msgid "It has been tested up to version %s."
2599
+ msgstr ""
2600
+
2601
+ #: addons/sftp.php:423
2602
+ msgid "password/key"
2603
+ msgstr ""
2604
+
2605
+ #: addons/sftp.php:47
2606
+ msgid "SCP/SFTP password/key"
2607
+ msgstr ""
2608
+
2609
+ #: addons/sftp.php:306
2610
+ msgid "The key provided was not in a valid format, or was corrupt."
2611
+ msgstr ""
2612
+
2613
+ #: addons/sftp.php:369
2614
+ msgid "Your login may be either password or key-based - you only need to enter one, not both."
2615
+ msgstr ""
2616
+
2617
+ #: addons/azure.php:508 addons/migrator.php:2159 addons/sftp.php:374
2618
+ #: admin.php:535
2619
+ msgid "Key"
2620
+ msgstr ""
2621
+
2622
+ #: addons/importer.php:256 admin.php:4499 class-updraftplus.php:2210
2623
+ msgid "Backup created by: %s."
2624
+ msgstr ""
2625
+
2626
+ #: admin.php:4505
2627
+ msgid "Files and database WordPress backup (created by %s)"
2628
+ msgstr ""
2629
+
2630
+ #: admin.php:4505
2631
+ msgid "Files backup (created by %s)"
2632
+ msgstr ""
2633
+
2634
+ #: admin.php:4450 admin.php:4501
2635
+ msgid "unknown source"
2636
+ msgstr ""
2637
+
2638
+ #: admin.php:4456
2639
+ msgid "Database (created by %s)"
2640
+ msgstr ""
2641
+
2642
+ #: admin.php:2869
2643
+ msgid "Rescan remote storage"
2644
+ msgstr ""
2645
+
2646
+ #: admin.php:2867
2647
+ msgid "Upload backup files"
2648
+ msgstr ""
2649
+
2650
+ #: admin.php:2043
2651
+ msgid "This backup was created by %s, and can be imported."
2652
+ msgstr ""
2653
+
2654
+ #: admin.php:782
2655
+ msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
2656
+ msgstr ""
2657
+
2658
+ #: admin.php:782
2659
+ msgid "Read this page for a guide to possible causes and how to fix it."
2660
+ msgstr ""
2661
+
2662
+ #: admin.php:499 admin.php:500 class-updraftplus.php:2217
2663
+ 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))."
2664
+ msgstr ""
2665
+
2666
+ #: admin.php:499
2667
+ msgid "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."
2668
+ msgstr ""
2669
+
2670
+ #: admin.php:500 class-updraftplus.php:2217
2671
+ msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2672
+ msgstr ""
2673
+
2674
+ #: admin.php:1282 admin.php:4502 restorer.php:1337
2675
+ msgid "Backup created by unknown source (%s) - cannot be restored."
2676
+ msgstr ""
2677
+
2678
+ #: restorer.php:749 restorer.php:797
2679
+ msgid "The WordPress content folder (wp-content) was not found in this zip file."
2680
+ msgstr ""
2681
+
2682
+ #: restorer.php:614
2683
+ msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2684
+ msgstr ""
2685
+
2686
+ #: methods/dropbox.php:288
2687
+ msgid "%s returned an unexpected HTTP response: %s"
2688
+ msgstr ""
2689
+
2690
+ #: addons/sftp.php:883
2691
+ msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2692
+ msgstr ""
2693
+
2694
+ #: methods/cloudfiles.php:234 methods/dropbox.php:269
2695
+ #: methods/openstack-base.php:95 methods/s3.php:87
2696
+ msgid "No settings were found"
2697
+ msgstr ""
2698
+
2699
+ #: class-updraftplus.php:2338
2700
+ msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2701
+ msgstr ""
2702
+
2703
+ #: admin.php:468
2704
+ msgid "Rescanning remote and local storage for backup sets..."
2705
+ msgstr ""
2706
+
2707
+ #: addons/googlecloud.php:865 addons/googlecloud.php:880
2708
+ #: addons/s3-enhanced.php:36 addons/s3-enhanced.php:40
2709
+ msgid "(Read more)"
2710
+ msgstr ""
2711
+
2712
+ #: addons/s3-enhanced.php:37
2713
+ msgid "Check this box to use Amazon's reduced redundancy storage and tariff"
2714
+ msgstr ""
2715
+
2716
+ #: addons/s3-enhanced.php:36
2717
+ msgid "Reduced redundancy storage"
2718
+ msgstr ""
2719
+
2720
+ #: addons/migrator.php:736
2721
+ msgid "Adjusting multisite paths"
2722
+ msgstr ""
2723
+
2724
+ #: addons/reporting.php:392
2725
+ msgid "Log all messages to syslog (only server admins are likely to want this)"
2726
+ msgstr ""
2727
+
2728
+ #: addons/morefiles.php:217
2729
+ msgid "Add another..."
2730
+ msgstr ""
2731
+
2732
+ #: addons/morefiles.php:308
2733
+ msgid "No backup of directory: there was nothing found to back up"
2734
+ msgstr ""
2735
+
2736
+ #: addons/moredatabase.php:229 addons/morefiles.php:212
2737
+ #: addons/morefiles.php:223
2738
+ msgid "Remove"
2739
+ msgstr ""
2740
+
2741
+ #: methods/s3.php:729
2742
+ msgid "Other %s FAQs."
2743
+ msgstr ""
2744
+
2745
+ #: admin.php:3954
2746
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
+ msgstr ""
2748
+
2749
+ #: addons/morefiles.php:262 admin.php:4092
2750
+ msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
2751
+ msgstr ""
2752
+
2753
+ #: restorer.php:2098
2754
+ msgid "Custom content type manager plugin data detected: clearing option cache"
2755
+ msgstr ""
2756
+
2757
+ #: methods/ftp.php:281
2758
+ msgid "encrypted FTP (explicit encryption)"
2759
+ msgstr ""
2760
+
2761
+ #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1367
2762
+ msgid "Your web server's PHP installation has these functions disabled: %s."
2763
+ msgstr ""
2764
+
2765
+ #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1368
2766
+ msgid "Your hosting company must enable these functions before %s can work."
2767
+ msgstr ""
2768
+
2769
+ #: methods/ftp.php:279
2770
+ msgid "regular non-encrypted FTP"
2771
+ msgstr ""
2772
+
2773
+ #: methods/ftp.php:280
2774
+ msgid "encrypted FTP (implicit encryption)"
2775
+ msgstr ""
2776
+
2777
+ #: restorer.php:1517
2778
+ msgid "Backup created by:"
2779
+ msgstr ""
2780
+
2781
+ #: udaddons/options.php:482
2782
+ msgid "Available to claim on this site"
2783
+ msgstr ""
2784
+
2785
+ #: udaddons/updraftplus-addons.php:229
2786
+ msgid "To maintain your access to support, please renew."
2787
+ msgstr ""
2788
+
2789
+ #: udaddons/updraftplus-addons.php:217
2790
+ msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
2791
+ msgstr ""
2792
+
2793
+ #: udaddons/updraftplus-addons.php:221
2794
+ msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
2795
+ msgstr ""
2796
+
2797
+ #: udaddons/updraftplus-addons.php:221 udaddons/updraftplus-addons.php:223
2798
+ msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2799
+ msgstr ""
2800
+
2801
+ #: udaddons/updraftplus-addons.php:223
2802
+ msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
2803
+ msgstr ""
2804
+
2805
+ #: udaddons/updraftplus-addons.php:227
2806
+ msgid "Your paid access to UpdraftPlus support has expired."
2807
+ msgstr ""
2808
+
2809
+ #: udaddons/updraftplus-addons.php:227
2810
+ msgid "To regain your access, please renew."
2811
+ msgstr ""
2812
+
2813
+ #: udaddons/updraftplus-addons.php:229
2814
+ msgid "Your paid access to UpdraftPlus support will soon expire."
2815
+ msgstr ""
2816
+
2817
+ #: udaddons/updraftplus-addons.php:180
2818
+ msgid "Dismiss from main dashboard (for %s weeks)"
2819
+ msgstr ""
2820
+
2821
+ #: udaddons/updraftplus-addons.php:215
2822
+ msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
2823
+ msgstr ""
2824
+
2825
+ #: udaddons/updraftplus-addons.php:215 udaddons/updraftplus-addons.php:217
2826
+ msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2827
+ msgstr ""
2828
+
2829
+ #: class-updraftplus.php:3691
2830
+ msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
+ msgstr ""
2832
+
2833
+ #: class-updraftplus.php:3698 class-updraftplus.php:3719
2834
+ msgid "The attempt to undo the double-compression failed."
2835
+ msgstr ""
2836
+
2837
+ #: class-updraftplus.php:3721
2838
+ msgid "The attempt to undo the double-compression succeeded."
2839
+ msgstr ""
2840
+
2841
+ #: admin.php:1429
2842
+ msgid "Constants"
2843
+ msgstr ""
2844
+
2845
+ #: backup.php:1559
2846
+ msgid "Failed to open database file for reading:"
2847
+ msgstr ""
2848
+
2849
+ #: backup.php:1395
2850
+ msgid "please wait for the rescheduled attempt"
2851
+ msgstr ""
2852
+
2853
+ #: backup.php:1397
2854
+ msgid "No database tables found"
2855
+ msgstr ""
2856
+
2857
+ #: addons/reporting.php:184
2858
+ msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2859
+ msgstr ""
2860
+
2861
+ #: restorer.php:1996
2862
+ msgid "Database queries processed: %d in %.2f seconds"
2863
+ msgstr ""
2864
+
2865
+ #: addons/migrator.php:1235
2866
+ msgid "Searching and replacing reached row: %d"
2867
+ msgstr ""
2868
+
2869
+ #: addons/copycom.php:88 addons/onedrive.php:91 methods/dropbox.php:183
2870
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
+ msgstr ""
2872
+
2873
+ #: addons/migrator.php:659
2874
+ msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2875
+ msgstr ""
2876
+
2877
+ #: udaddons/updraftplus-addons.php:380 udaddons/updraftplus-addons.php:383
2878
+ msgid "Errors occurred:"
2879
+ msgstr ""
2880
+
2881
+ #: admin.php:4713
2882
+ msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
+ msgstr ""
2884
+
2885
+ #: admin.php:3998
2886
+ msgid "See this FAQ also."
2887
+ msgstr ""
2888
+
2889
+ #: admin.php:3800
2890
+ msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
2891
+ msgstr ""
2892
+
2893
+ #: admin.php:2957
2894
+ msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr ""
2896
+
2897
+ #: admin.php:1253
2898
+ msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
+ msgstr ""
2900
+
2901
+ #: restorer.php:605
2902
+ msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
+ msgstr ""
2904
+
2905
+ #: admin.php:757 class-updraftplus.php:563
2906
+ 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 recommended value is %s seconds or more)"
2907
+ msgstr ""
2908
+
2909
+ #: addons/migrator.php:667
2910
+ msgid "Replacing in blogs/site table: from: %s to: %s"
2911
+ msgstr ""
2912
+
2913
+ #: addons/migrator.php:249
2914
+ msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
2915
+ msgstr ""
2916
+
2917
+ #: addons/migrator.php:262
2918
+ msgid "%s: Skipping cache file (does not already exist)"
2919
+ msgstr ""
2920
+
2921
+ #: addons/sftp.php:638 addons/sftp.php:641 includes/ftp.class.php:44
2922
+ #: includes/ftp.class.php:47
2923
+ msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
+ msgstr ""
2925
+
2926
+ #: admin.php:5048
2927
+ msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
+ msgstr ""
2929
+
2930
+ #: admin.php:2235 admin.php:2245
2931
+ msgid "Restore failed..."
2932
+ msgstr ""
2933
+
2934
+ #: addons/moredatabase.php:125 admin.php:1502
2935
+ msgid "Messages:"
2936
+ msgstr ""
2937
+
2938
+ #: restorer.php:1879
2939
+ msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
+ msgstr ""
2941
+
2942
+ #: restorer.php:385
2943
+ msgid "The directory does not exist"
2944
+ msgstr ""
2945
+
2946
+ #: addons/cloudfiles-enhanced.php:248
2947
+ msgid "New User's Username"
2948
+ msgstr ""
2949
+
2950
+ #: addons/cloudfiles-enhanced.php:249
2951
+ msgid "New User's Email Address"
2952
+ msgstr ""
2953
+
2954
+ #: addons/cloudfiles-enhanced.php:226
2955
+ msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
+ msgstr ""
2957
+
2958
+ #: addons/cloudfiles-enhanced.php:232
2959
+ msgid "US or UK Rackspace Account"
2960
+ msgstr ""
2961
+
2962
+ #: addons/cloudfiles-enhanced.php:246
2963
+ msgid "Admin Username"
2964
+ msgstr ""
2965
+
2966
+ #: addons/cloudfiles-enhanced.php:247
2967
+ msgid "Admin API Key"
2968
+ msgstr ""
2969
+
2970
+ #: addons/cloudfiles-enhanced.php:55
2971
+ msgid "You need to enter a new username"
2972
+ msgstr ""
2973
+
2974
+ #: addons/cloudfiles-enhanced.php:59
2975
+ msgid "You need to enter a container"
2976
+ msgstr ""
2977
+
2978
+ #: addons/cloudfiles-enhanced.php:64
2979
+ msgid "You need to enter a valid new email address"
2980
+ msgstr ""
2981
+
2982
+ #: addons/cloudfiles-enhanced.php:153
2983
+ msgid "Conflict: that user or email address already exists"
2984
+ msgstr ""
2985
+
2986
+ #: addons/cloudfiles-enhanced.php:155 addons/cloudfiles-enhanced.php:159
2987
+ #: addons/cloudfiles-enhanced.php:164 addons/cloudfiles-enhanced.php:185
2988
+ #: addons/cloudfiles-enhanced.php:193 addons/cloudfiles-enhanced.php:198
2989
+ msgid "Cloud Files operation failed (%s)"
2990
+ msgstr ""
2991
+
2992
+ #: addons/cloudfiles-enhanced.php:210 addons/s3-enhanced.php:274
2993
+ msgid "Username: %s"
2994
+ msgstr ""
2995
+
2996
+ #: addons/cloudfiles-enhanced.php:210
2997
+ msgid "Password: %s"
2998
+ msgstr ""
2999
+
3000
+ #: addons/cloudfiles-enhanced.php:210
3001
+ msgid "API Key: %s"
3002
+ msgstr ""
3003
+
3004
+ #: addons/cloudfiles-enhanced.php:223
3005
+ msgid "Create new API user and container"
3006
+ msgstr ""
3007
+
3008
+ #: addons/cloudfiles-enhanced.php:26
3009
+ msgid "Rackspace Cloud Files, enhanced"
3010
+ msgstr ""
3011
+
3012
+ #: addons/cloudfiles-enhanced.php:27
3013
+ msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
+ msgstr ""
3015
+
3016
+ #: addons/cloudfiles-enhanced.php:38
3017
+ msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
+ msgstr ""
3019
+
3020
+ #: addons/cloudfiles-enhanced.php:47
3021
+ msgid "You need to enter an admin username"
3022
+ msgstr ""
3023
+
3024
+ #: addons/cloudfiles-enhanced.php:51
3025
+ msgid "You need to enter an admin API key"
3026
+ msgstr ""
3027
+
3028
+ #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:103
3029
+ msgid "Northern Virginia (IAD)"
3030
+ msgstr ""
3031
+
3032
+ #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:104
3033
+ msgid "Hong Kong (HKG)"
3034
+ msgstr ""
3035
+
3036
+ #: methods/cloudfiles-new.php:105
3037
+ msgid "London (LON)"
3038
+ msgstr ""
3039
+
3040
+ #: methods/cloudfiles-new.php:119
3041
+ msgid "Cloud Files Username"
3042
+ msgstr ""
3043
+
3044
+ #: methods/cloudfiles-new.php:122
3045
+ msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr ""
3047
+
3048
+ #: methods/cloudfiles-new.php:127
3049
+ msgid "Cloud Files API Key"
3050
+ msgstr ""
3051
+
3052
+ #: addons/cloudfiles-enhanced.php:270 methods/cloudfiles-new.php:132
3053
+ msgid "Cloud Files Container"
3054
+ msgstr ""
3055
+
3056
+ #: methods/cloudfiles-new.php:85
3057
+ msgid "US or UK-based Rackspace Account"
3058
+ msgstr ""
3059
+
3060
+ #: methods/cloudfiles-new.php:87
3061
+ msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
+ msgstr ""
3063
+
3064
+ #: addons/cloudfiles-enhanced.php:251 methods/cloudfiles-new.php:95
3065
+ msgid "Cloud Files Storage Region"
3066
+ msgstr ""
3067
+
3068
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:100
3069
+ msgid "Dallas (DFW) (default)"
3070
+ msgstr ""
3071
+
3072
+ #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:101
3073
+ msgid "Sydney (SYD)"
3074
+ msgstr ""
3075
+
3076
+ #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:102
3077
+ msgid "Chicago (ORD)"
3078
+ msgstr ""
3079
+
3080
+ #: addons/cloudfiles-enhanced.php:150 addons/s3-enhanced.php:177
3081
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
+ #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
+ #: methods/openstack2.php:25
3084
+ msgid "Authorisation failed (check your credentials)"
3085
+ msgstr ""
3086
+
3087
+ #: addons/cloudfiles-enhanced.php:233 methods/cloudfiles-new.php:85
3088
+ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr ""
3090
+
3091
+ #: methods/updraftvault.php:492 udaddons/options.php:265
3092
+ msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr ""
3094
+
3095
+ #: admin.php:513 central/bootstrap.php:448
3096
+ msgid "Create"
3097
+ msgstr ""
3098
+
3099
+ #: admin.php:475
3100
+ msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr ""
3102
+
3103
+ #: admin.php:476
3104
+ msgid "Trying..."
3105
+ msgstr ""
3106
+
3107
+ #: class-updraftplus.php:1249
3108
+ msgid "(when decrypted)"
3109
+ msgstr ""
3110
+
3111
+ #: admin.php:486 admin.php:4990
3112
+ msgid "Error data:"
3113
+ msgstr ""
3114
+
3115
+ #: admin.php:4664
3116
+ msgid "Backup does not exist in the backup history"
3117
+ msgstr ""
3118
+
3119
+ #: admin.php:3164
3120
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3121
+ msgstr ""
3122
+
3123
+ #: restorer.php:1585
3124
+ msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr ""
3126
+
3127
+ #: restorer.php:1466
3128
+ 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 (%s)"
3129
+ msgstr ""
3130
+
3131
+ #: restorer.php:1510
3132
+ msgid "<strong>Backup of:</strong> %s"
3133
+ msgstr ""
3134
+
3135
+ #: restorer.php:1297
3136
+ msgid "New table prefix: %s"
3137
+ msgstr ""
3138
+
3139
+ #: restorer.php:956 restorer.php:970
3140
+ msgid "%s: This directory already exists, and will be replaced"
3141
+ msgstr ""
3142
+
3143
+ #: restorer.php:986
3144
+ msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3145
+ msgstr ""
3146
+
3147
+ #: restorer.php:103
3148
+ msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr ""
3150
+
3151
+ #: restorer.php:96
3152
+ msgid "Moving old data out of the way..."
3153
+ msgstr ""
3154
+
3155
+ #: restorer.php:100
3156
+ msgid "Could not move old files out of the way."
3157
+ msgstr ""
3158
+
3159
+ #: restorer.php:102
3160
+ msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr ""
3162
+
3163
+ #: addons/reporting.php:369
3164
+ msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3165
+ msgstr ""
3166
+
3167
+ #: addons/reporting.php:383
3168
+ msgid "Add another address..."
3169
+ msgstr ""
3170
+
3171
+ #: addons/reporting.php:276
3172
+ msgid " (with errors (%s))"
3173
+ msgstr ""
3174
+
3175
+ #: addons/reporting.php:278
3176
+ msgid " (with warnings (%s))"
3177
+ msgstr ""
3178
+
3179
+ #: addons/reporting.php:308
3180
+ msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3181
+ msgstr ""
3182
+
3183
+ #: class-updraftplus.php:1218 class-updraftplus.php:1220
3184
+ msgid "files: %s"
3185
+ msgstr ""
3186
+
3187
+ #: class-updraftplus.php:1245 class-updraftplus.php:1250
3188
+ msgid "%s checksum: %s"
3189
+ msgstr ""
3190
+
3191
+ #: addons/reporting.php:344
3192
+ msgid "Email reports"
3193
+ msgstr ""
3194
+
3195
+ #: addons/reporting.php:164
3196
+ msgid "Errors"
3197
+ msgstr ""
3198
+
3199
+ #: addons/reporting.php:179
3200
+ msgid "Warnings"
3201
+ msgstr ""
3202
+
3203
+ #: addons/reporting.php:188
3204
+ msgid "Time taken:"
3205
+ msgstr ""
3206
+
3207
+ #: addons/reporting.php:189 admin.php:4277
3208
+ msgid "Uploaded to:"
3209
+ msgstr ""
3210
+
3211
+ #: addons/reporting.php:224
3212
+ msgid "Debugging information"
3213
+ msgstr ""
3214
+
3215
+ #: addons/reporting.php:122
3216
+ msgid "%d errors, %d warnings"
3217
+ msgstr ""
3218
+
3219
+ #: addons/reporting.php:136
3220
+ msgid "%d hours, %d minutes, %d seconds"
3221
+ msgstr ""
3222
+
3223
+ #: addons/reporting.php:141
3224
+ msgid "Backup Report"
3225
+ msgstr ""
3226
+
3227
+ #: addons/reporting.php:149
3228
+ msgid "Backup began:"
3229
+ msgstr ""
3230
+
3231
+ #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:150
3232
+ msgid "Contains:"
3233
+ msgstr ""
3234
+
3235
+ #: addons/reporting.php:161
3236
+ msgid "Errors / warnings:"
3237
+ msgstr ""
3238
+
3239
+ #: addons/copycom.php:377 addons/onedrive.php:492 methods/dropbox.php:506
3240
+ msgid "%s authentication"
3241
+ msgstr ""
3242
+
3243
+ #: addons/copycom.php:377 addons/onedrive.php:492 class-updraftplus.php:304
3244
+ #: methods/dropbox.php:506 methods/dropbox.php:520 methods/dropbox.php:615
3245
+ msgid "%s error: %s"
3246
+ msgstr ""
3247
+
3248
+ #: addons/googlecloud.php:815 methods/dropbox.php:426
3249
+ msgid "%s logo"
3250
+ msgstr ""
3251
+
3252
+ #: methods/email.php:73
3253
+ msgid "Your site's admin email address (%s) will be used."
3254
+ msgstr ""
3255
+
3256
+ #: methods/email.php:74
3257
+ msgid "For more options, use the \"%s\" add-on."
3258
+ msgstr ""
3259
+
3260
+ #: methods/s3.php:253
3261
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
+ msgstr ""
3263
+
3264
+ #: methods/dropbox.php:202
3265
+ msgid "%s did not return the expected response - check your log file for more details"
3266
+ msgstr ""
3267
+
3268
+ #: admin.php:522 methods/updraftvault.php:255 methods/updraftvault.php:300
3269
+ #: udaddons/options.php:244
3270
+ msgid "Connect"
3271
+ msgstr ""
3272
+
3273
+ #: admin.php:3922
3274
+ msgid "For more reporting features, use the Reporting add-on."
3275
+ msgstr ""
3276
+
3277
+ #: class-updraftplus.php:3517
3278
+ msgid "(version: %s)"
3279
+ msgstr ""
3280
+
3281
+ #: addons/reporting.php:416 admin.php:466
3282
+ msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr ""
3284
+
3285
+ #: addons/reporting.php:416 admin.php:465
3286
+ msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr ""
3288
+
3289
+ #: backup.php:843
3290
+ msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr ""
3292
+
3293
+ #: addons/reporting.php:221 backup.php:879
3294
+ msgid "The log file has been attached to this email."
3295
+ msgstr ""
3296
+
3297
+ #: backup.php:885
3298
+ msgid "Backed up: %s"
3299
+ msgstr ""
3300
+
3301
+ #: backup.php:921
3302
+ msgid "Backup contains:"
3303
+ msgstr ""
3304
+
3305
+ #: addons/reporting.php:148 backup.php:922
3306
+ msgid "Latest status:"
3307
+ msgstr ""
3308
+
3309
+ #: admin.php:155 backup.php:835
3310
+ msgid "Files and database"
3311
+ msgstr ""
3312
+
3313
+ #: backup.php:837
3314
+ msgid "Files (database backup has not completed)"
3315
+ msgstr ""
3316
+
3317
+ #: backup.php:837
3318
+ msgid "Files only (database was not part of this particular schedule)"
3319
+ msgstr ""
3320
+
3321
+ #: backup.php:840
3322
+ msgid "Database (files backup has not completed)"
3323
+ msgstr ""
3324
+
3325
+ #: backup.php:840
3326
+ msgid "Database only (files were not part of this particular schedule)"
3327
+ msgstr ""
3328
+
3329
+ #: options.php:185
3330
+ msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
+ msgstr ""
3332
+
3333
+ #: options.php:185
3334
+ msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
+ msgstr ""
3336
+
3337
+ #: options.php:185
3338
+ msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
3339
+ msgstr ""
3340
+
3341
+ #: options.php:185
3342
+ msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr ""
3344
+
3345
+ #: options.php:185
3346
+ msgid "UpdraftPlus warning:"
3347
+ msgstr ""
3348
+
3349
+ #: udaddons/options.php:488
3350
+ msgid "(or connect using the form on this page if you have already purchased it)"
3351
+ msgstr ""
3352
+
3353
+ #: udaddons/options.php:457
3354
+ msgid "You've got it"
3355
+ msgstr ""
3356
+
3357
+ #: udaddons/options.php:459
3358
+ msgid "Your version: %s"
3359
+ msgstr ""
3360
+
3361
+ #: udaddons/options.php:461 udaddons/options.php:463
3362
+ msgid "latest"
3363
+ msgstr ""
3364
+
3365
+ #: udaddons/options.php:471
3366
+ msgid "please follow this link to update the plugin in order to get it"
3367
+ msgstr ""
3368
+
3369
+ #: udaddons/options.php:474
3370
+ msgid "please follow this link to update the plugin in order to activate it"
3371
+ msgstr ""
3372
+
3373
+ #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3374
+ msgid "UpdraftPlus Addons"
3375
+ msgstr ""
3376
+
3377
+ #: udaddons/options.php:381
3378
+ msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3379
+ msgstr ""
3380
+
3381
+ #: udaddons/options.php:423
3382
+ msgid "UpdraftPlus Support"
3383
+ msgstr ""
3384
+
3385
+ #: udaddons/updraftplus-addons.php:669
3386
+ msgid "UpdraftPlus.Com responded, but we did not understand the response"
3387
+ msgstr ""
3388
+
3389
+ #: methods/updraftvault.php:538 udaddons/updraftplus-addons.php:709
3390
+ msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
+ msgstr ""
3392
+
3393
+ #: methods/updraftvault.php:579 udaddons/updraftplus-addons.php:748
3394
+ msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
+ msgstr ""
3396
+
3397
+ #: methods/updraftvault.php:565 methods/updraftvault.php:583
3398
+ #: udaddons/updraftplus-addons.php:751
3399
+ msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
+ msgstr ""
3401
+
3402
+ #: udaddons/options.php:94
3403
+ msgid "An update is available for UpdraftPlus - please follow this link to get it."
3404
+ msgstr ""
3405
+
3406
+ #: udaddons/updraftplus-addons.php:667
3407
+ msgid "We failed to successfully connect to UpdraftPlus.Com"
3408
+ msgstr ""
3409
+
3410
+ #: admin.php:3903 methods/email.php:74
3411
+ msgid "Reporting"
3412
+ msgstr ""
3413
+
3414
+ #: admin.php:1400
3415
+ msgid "Options (raw)"
3416
+ msgstr ""
3417
+
3418
+ #: addons/reporting.php:414 admin.php:464
3419
+ msgid "Send a report only when there are warnings/errors"
3420
+ msgstr ""
3421
+
3422
+ #: restorer.php:1528
3423
+ msgid "Content URL:"
3424
+ msgstr ""
3425
+
3426
+ #: restorer.php:100
3427
+ msgid "You should check the file permissions in your WordPress installation"
3428
+ msgstr ""
3429
+
3430
+ #: admin.php:3826
3431
+ msgid "See also the \"More Files\" add-on from our shop."
3432
+ msgstr ""
3433
+
3434
+ #: backup.php:2877 class-updraftplus.php:583
3435
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
+ msgstr ""
3437
+
3438
+ #: class-updraftplus.php:560
3439
+ 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)"
3440
+ msgstr ""
3441
+
3442
+ #: udaddons/options.php:484
3443
+ msgid "You have an inactive purchase"
3444
+ msgstr ""
3445
+
3446
+ #: udaddons/options.php:482 udaddons/options.php:484
3447
+ msgid "activate it on this site"
3448
+ msgstr ""
3449
+
3450
+ #: udaddons/options.php:488
3451
+ msgid "Get it from the UpdraftPlus.Com Store"
3452
+ msgstr ""
3453
+
3454
+ #: udaddons/options.php:489
3455
+ msgid "Buy It"
3456
+ msgstr ""
3457
+
3458
+ #: udaddons/options.php:547
3459
+ msgid "Manage Addons"
3460
+ msgstr ""
3461
+
3462
+ #: udaddons/options.php:340
3463
+ msgid "An unknown response was received. Response was:"
3464
+ msgstr ""
3465
+
3466
+ #: udaddons/options.php:407
3467
+ msgid "An error occurred when trying to retrieve your add-ons."
3468
+ msgstr ""
3469
+
3470
+ #: udaddons/options.php:425
3471
+ msgid "Need to get support?"
3472
+ msgstr ""
3473
+
3474
+ #: udaddons/options.php:425
3475
+ msgid "Go here"
3476
+ msgstr ""
3477
+
3478
+ #: udaddons/options.php:465
3479
+ msgid "(apparently a pre-release or withdrawn release)"
3480
+ msgstr ""
3481
+
3482
+ #: udaddons/options.php:471
3483
+ msgid "Available for this site (via your all-addons purchase)"
3484
+ msgstr ""
3485
+
3486
+ #: udaddons/options.php:474
3487
+ msgid "Assigned to this site"
3488
+ msgstr ""
3489
+
3490
+ #: udaddons/options.php:242
3491
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3492
+ msgstr ""
3493
+
3494
+ #: udaddons/options.php:271
3495
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
3496
+ msgstr ""
3497
+
3498
+ #: udaddons/options.php:272
3499
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
3500
+ msgstr ""
3501
+
3502
+ #: udaddons/options.php:281
3503
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
3504
+ msgstr ""
3505
+
3506
+ #: udaddons/options.php:290
3507
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
3508
+ msgstr ""
3509
+
3510
+ #: udaddons/options.php:337
3511
+ msgid "Please wait whilst we make the claim..."
3512
+ msgstr ""
3513
+
3514
+ #: udaddons/options.php:339
3515
+ msgid "Claim not granted - your account login details were wrong"
3516
+ msgstr ""
3517
+
3518
+ #: udaddons/options.php:120
3519
+ msgid "Your web server's version of PHP is too old ("
3520
+ msgstr ""
3521
+
3522
+ #: udaddons/options.php:141
3523
+ msgid "Connect with your UpdraftPlus.Com account"
3524
+ msgstr ""
3525
+
3526
+ #: udaddons/options.php:172
3527
+ msgid "Not yet got an account (it's free)? Go get one!"
3528
+ msgstr ""
3529
+
3530
+ #: udaddons/options.php:183
3531
+ msgid "Forgotten your details?"
3532
+ msgstr ""
3533
+
3534
+ #: udaddons/options.php:100
3535
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
3536
+ msgstr ""
3537
+
3538
+ #: udaddons/options.php:100 udaddons/options.php:102
3539
+ msgid "Go here to connect."
3540
+ msgstr ""
3541
+
3542
+ #: udaddons/options.php:109
3543
+ msgid "UpdraftPlus is not yet activated."
3544
+ msgstr ""
3545
+
3546
+ #: udaddons/options.php:110
3547
+ msgid "Go here to activate it."
3548
+ msgstr ""
3549
+
3550
+ #: udaddons/options.php:113
3551
+ msgid "UpdraftPlus is not yet installed."
3552
+ msgstr ""
3553
+
3554
+ #: udaddons/options.php:113
3555
+ msgid "Go here to begin installing it."
3556
+ msgstr ""
3557
+
3558
+ #: udaddons/options.php:114
3559
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
3560
+ msgstr ""
3561
+
3562
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3563
+ msgid "Your web-server does not have the %s module installed."
3564
+ msgstr ""
3565
+
3566
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3567
+ msgid "Without it, encryption will be a lot slower."
3568
+ msgstr ""
3569
+
3570
+ #: admin.php:2890
3571
+ msgid "Drop backup files here"
3572
+ msgstr ""
3573
+
3574
+ #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
+ msgstr ""
3577
+
3578
+ #: class-updraftplus.php:3373
3579
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
+ msgstr ""
3581
+
3582
+ #: class-updraftplus.php:3383
3583
+ msgid "Check out WordShell"
3584
+ msgstr ""
3585
+
3586
+ #: class-updraftplus.php:3383
3587
+ msgid "manage WordPress from the command line - huge time-saver"
3588
+ msgstr ""
3589
+
3590
+ #: admin.php:472
3591
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
+ msgstr ""
3593
+
3594
+ #: admin.php:474
3595
+ msgid "The web server returned an error code (try again, or check your web server logs)"
3596
+ msgstr ""
3597
+
3598
+ #: admin.php:470
3599
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
+ msgstr ""
3601
+
3602
+ #: restorer.php:1522
3603
+ msgid "Site home:"
3604
+ msgstr ""
3605
+
3606
+ #: addons/morestorage.php:78
3607
+ msgid "Remote Storage Options"
3608
+ msgstr ""
3609
+
3610
+ #: addons/autobackup.php:238 addons/autobackup.php:924
3611
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
3612
+ msgstr ""
3613
+
3614
+ #: addons/autobackup.php:277 addons/autobackup.php:370
3615
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
3616
+ msgstr ""
3617
+
3618
+ #: addons/azure.php:349 methods/stream-base.php:125 methods/stream-base.php:130
3619
+ msgid "Upload failed"
3620
+ msgstr ""
3621
+
3622
+ #: admin.php:3792
3623
+ msgid "You can send a backup to more than one destination with an add-on."
3624
+ msgstr ""
3625
+
3626
+ #: admin.php:3382
3627
+ 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."
3628
+ msgstr ""
3629
+
3630
+ #: admin.php:3280
3631
+ msgid "(%s%%, file %s of %s)"
3632
+ msgstr ""
3633
+
3634
+ #: addons/sftp.php:481
3635
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
3636
+ msgstr ""
3637
+
3638
+ #: addons/sftp.php:483
3639
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
3640
+ msgstr ""
3641
+
3642
+ #: addons/autobackup.php:238 addons/autobackup.php:928 addons/lockadmin.php:132
3643
+ msgid "Read more about how this works..."
3644
+ msgstr ""
3645
+
3646
+ #: addons/sftp.php:400
3647
+ msgid "Use SCP instead of SFTP"
3648
+ msgstr ""
3649
+
3650
+ #: addons/sftp.php:45
3651
+ msgid "SCP/SFTP host setting"
3652
+ msgstr ""
3653
+
3654
+ #: addons/sftp.php:46
3655
+ msgid "SCP/SFTP user setting"
3656
+ msgstr ""
3657
+
3658
+ #: methods/email.php:45
3659
+ msgid "Backup is of: %s."
3660
+ msgstr ""
3661
+
3662
+ #: methods/email.php:58
3663
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
+ msgstr ""
3665
+
3666
+ #: admin.php:559
3667
+ msgid "%s settings test result:"
3668
+ msgstr ""
3669
+
3670
+ #: admin.php:4570
3671
+ 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."
3672
+ msgstr ""
3673
+
3674
+ #: admin.php:4568 admin.php:4570
3675
+ msgid "(Not finished)"
3676
+ msgstr ""
3677
+
3678
+ #: admin.php:3981
3679
+ 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)."
3680
+ msgstr ""
3681
+
3682
+ #: admin.php:3981
3683
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
+ msgstr ""
3685
+
3686
+ #: admin.php:3289
3687
+ msgid "Waiting until scheduled time to retry because of errors"
3688
+ msgstr ""
3689
+
3690
+ #: admin.php:3294
3691
+ msgid "Backup finished"
3692
+ msgstr ""
3693
+
3694
+ #: admin.php:3344 central/bootstrap.php:410 central/bootstrap.php:417
3695
+ #: methods/updraftvault.php:335 methods/updraftvault.php:403
3696
+ msgid "Unknown"
3697
+ msgstr ""
3698
+
3699
+ #: admin.php:3361
3700
+ msgid "next resumption: %d (after %ss)"
3701
+ msgstr ""
3702
+
3703
+ #: admin.php:3362
3704
+ msgid "last activity: %ss ago"
3705
+ msgstr ""
3706
+
3707
+ #: admin.php:3377
3708
+ msgid "Job ID: %s"
3709
+ msgstr ""
3710
+
3711
+ #: admin.php:3321
3712
+ msgid "table: %s"
3713
+ msgstr ""
3714
+
3715
+ #: admin.php:3308
3716
+ msgid "Created database backup"
3717
+ msgstr ""
3718
+
3719
+ #: admin.php:3334
3720
+ msgid "Encrypting database"
3721
+ msgstr ""
3722
+
3723
+ #: admin.php:3342
3724
+ msgid "Encrypted database"
3725
+ msgstr ""
3726
+
3727
+ #: admin.php:3273
3728
+ msgid "Uploading files to remote storage"
3729
+ msgstr ""
3730
+
3731
+ #: admin.php:3285
3732
+ msgid "Pruning old backup sets"
3733
+ msgstr ""
3734
+
3735
+ #: admin.php:3254
3736
+ msgid "Creating file backup zips"
3737
+ msgstr ""
3738
+
3739
+ #: admin.php:3267
3740
+ msgid "Created file backup zips"
3741
+ msgstr ""
3742
+
3743
+ #: admin.php:3319
3744
+ msgid "Creating database backup"
3745
+ msgstr ""
3746
+
3747
+ #: admin.php:3249
3748
+ msgid "Backup begun"
3749
+ msgstr ""
3750
+
3751
+ #: admin.php:2777
3752
+ msgid "Backups in progress:"
3753
+ msgstr ""
3754
+
3755
+ #: admin.php:761
3756
+ 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."
3757
+ msgstr ""
3758
+
3759
+ #: restorer.php:580 restorer.php:587
3760
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
+ msgstr ""
3762
+
3763
+ #: restorer.php:580
3764
+ msgid "folder"
3765
+ msgstr ""
3766
+
3767
+ #: restorer.php:587
3768
+ msgid "file"
3769
+ msgstr ""
3770
+
3771
+ #: class-updraftplus.php:2435
3772
+ msgid "The backup has not finished; a resumption is scheduled"
3773
+ msgstr ""
3774
+
3775
+ #: class-updraftplus.php:1489
3776
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
+ msgstr ""
3778
+
3779
+ #: addons/copycom.php:492 addons/googlecloud.php:337 addons/onedrive.php:630
3780
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
+ #: methods/googledrive.php:239
3782
+ 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)."
3783
+ msgstr ""
3784
+
3785
+ #: admin.php:2358
3786
+ 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)."
3787
+ msgstr ""
3788
+
3789
+ #: addons/autobackup.php:102 addons/autobackup.php:911
3790
+ msgid "UpdraftPlus Automatic Backups"
3791
+ msgstr ""
3792
+
3793
+ #: addons/autobackup.php:932
3794
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
3795
+ msgstr ""
3796
+
3797
+ #: addons/autobackup.php:933 admin.php:515
3798
+ msgid "Proceed with update"
3799
+ msgstr ""
3800
+
3801
+ #: addons/autobackup.php:281 addons/autobackup.php:377
3802
+ msgid "Starting automatic backup..."
3803
+ msgstr ""
3804
+
3805
+ #: addons/autobackup.php:331
3806
+ msgid "plugins"
3807
+ msgstr ""
3808
+
3809
+ #: addons/autobackup.php:338
3810
+ msgid "themes"
3811
+ msgstr ""
3812
+
3813
+ #: addons/autobackup.php:359
3814
+ msgid "You do not have sufficient permissions to update this site."
3815
+ msgstr ""
3816
+
3817
+ #: addons/autobackup.php:370
3818
+ msgid "Creating database backup with UpdraftPlus..."
3819
+ msgstr ""
3820
+
3821
+ #: addons/autobackup.php:379 addons/autobackup.php:507
3822
+ #: addons/autobackup.php:558
3823
+ msgid "Automatic Backup"
3824
+ msgstr ""
3825
+
3826
+ #: addons/autobackup.php:432
3827
+ msgid "Creating backup with UpdraftPlus..."
3828
+ msgstr ""
3829
+
3830
+ #: addons/autobackup.php:460
3831
+ msgid "Errors have occurred:"
3832
+ msgstr ""
3833
+
3834
+ #: addons/autobackup.php:238
3835
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3836
+ msgstr ""
3837
+
3838
+ #: addons/autobackup.php:277
3839
+ msgid "Creating %s and database backup with UpdraftPlus..."
3840
+ msgstr ""
3841
+
3842
+ #: addons/morefiles.php:106
3843
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
3844
+ msgstr ""
3845
+
3846
+ #: addons/morefiles.php:116
3847
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
3848
+ msgstr ""
3849
+
3850
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3851
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
3852
+ msgstr ""
3853
+
3854
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3855
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
3856
+ msgstr ""
3857
+
3858
+ #: admin.php:2159 admin.php:2549
3859
+ msgid "Support"
3860
+ msgstr ""
3861
+
3862
+ #: admin.php:2162
3863
+ msgid "More plugins"
3864
+ msgstr ""
3865
+
3866
+ #: class-updraftplus.php:3550
3867
+ 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."
3868
+ msgstr ""
3869
+
3870
+ #: class-updraftplus.php:3653
3871
+ msgid "This database backup is missing core WordPress tables: %s"
3872
+ msgstr ""
3873
+
3874
+ #: class-updraftplus.php:3658
3875
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
+ msgstr ""
3877
+
3878
+ #: class-updraftplus.php:3466
3879
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
+ msgstr ""
3881
+
3882
+ #: admin.php:581 admin.php:736
3883
+ msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
3884
+ msgstr ""
3885
+
3886
+ #: admin.php:581 admin.php:736
3887
+ msgid "Be safe every time, without needing to remember - follow this link to learn more."
3888
+ msgstr ""
3889
+
3890
+ #: addons/autobackup.php:496 admin.php:721
3891
+ msgid "Update Plugin"
3892
+ msgstr ""
3893
+
3894
+ #: addons/autobackup.php:547 admin.php:725
3895
+ msgid "Update Theme"
3896
+ msgstr ""
3897
+
3898
+ #: admin.php:579 admin.php:734
3899
+ msgid "Dismiss (for %s weeks)"
3900
+ msgstr ""
3901
+
3902
+ #: addons/autobackup.php:914 admin.php:580 admin.php:735
3903
+ msgid "Be safe with an automatic backup"
3904
+ msgstr ""
3905
+
3906
+ #: restorer.php:2077
3907
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
3908
+ msgstr ""
3909
+
3910
+ #: admin.php:2321
3911
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3912
+ msgstr ""
3913
+
3914
+ #: admin.php:505
3915
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
3916
+ msgstr ""
3917
+
3918
+ #: admin.php:506
3919
+ msgid "This decryption key will be attempted:"
3920
+ msgstr ""
3921
+
3922
+ #: admin.php:507
3923
+ msgid "Unknown server response:"
3924
+ msgstr ""
3925
+
3926
+ #: admin.php:508
3927
+ msgid "Unknown server response status:"
3928
+ msgstr ""
3929
+
3930
+ #: admin.php:509
3931
+ msgid "The file was uploaded."
3932
+ msgstr ""
3933
+
3934
+ #: admin.php:501
3935
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3936
+ msgstr ""
3937
+
3938
+ #: admin.php:502
3939
+ msgid "Upload error:"
3940
+ msgstr ""
3941
+
3942
+ #: admin.php:503
3943
+ 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)."
3944
+ msgstr ""
3945
+
3946
+ #: admin.php:504
3947
+ msgid "Upload error"
3948
+ msgstr ""
3949
+
3950
+ #: admin.php:491
3951
+ msgid "Delete from your web server"
3952
+ msgstr ""
3953
+
3954
+ #: admin.php:492
3955
+ msgid "Download to your computer"
3956
+ msgstr ""
3957
+
3958
+ #: admin.php:493
3959
+ msgid "and then, if you wish,"
3960
+ msgstr ""
3961
+
3962
+ #: methods/s3.php:689
3963
+ msgid "Examples of S3-compatible storage providers:"
3964
+ msgstr ""
3965
+
3966
+ #: admin.php:4940
3967
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3968
+ msgstr ""
3969
+
3970
+ #: admin.php:4534
3971
+ msgid "(%d archive(s) in set)."
3972
+ msgstr ""
3973
+
3974
+ #: admin.php:4537
3975
+ msgid "You appear to be missing one or more archives from this multi-archive set."
3976
+ msgstr ""
3977
+
3978
+ #: admin.php:3958
3979
+ msgid "Split archives every:"
3980
+ msgstr ""
3981
+
3982
+ #: admin.php:482
3983
+ msgid "Error: the server sent an empty response."
3984
+ msgstr ""
3985
+
3986
+ #: admin.php:483
3987
+ msgid "Warnings:"
3988
+ msgstr ""
3989
+
3990
+ #: addons/moredatabase.php:269
3991
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
3992
+ msgstr ""
3993
+
3994
+ #: admin.php:2054
3995
+ 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?"
3996
+ msgstr ""
3997
+
3998
+ #: admin.php:1330
3999
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
4000
+ msgstr ""
4001
+
4002
+ #: admin.php:1332
4003
+ 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."
4004
+ msgstr ""
4005
+
4006
+ #: admin.php:1334
4007
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4008
+ msgstr ""
4009
+
4010
+ #: admin.php:1014
4011
+ 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"
4012
+ msgstr ""
4013
+
4014
+ #: admin.php:1234
4015
+ msgid "No such backup set exists"
4016
+ msgstr ""
4017
+
4018
+ #: admin.php:1303
4019
+ msgid "File not found (you need to upload it): %s"
4020
+ msgstr ""
4021
+
4022
+ #: admin.php:1305
4023
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4024
+ msgstr ""
4025
+
4026
+ #: admin.php:1310
4027
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4028
+ msgstr ""
4029
+
4030
+ #: admin.php:1325
4031
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
4032
+ msgstr ""
4033
+
4034
+ #: restorer.php:529
4035
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
4036
+ msgstr ""
4037
+
4038
+ #: restorer.php:520
4039
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
4040
+ msgstr ""
4041
+
4042
+ #: restorer.php:97
4043
+ msgid "Moving unpacked backup into place..."
4044
+ msgstr ""
4045
+
4046
+ #: backup.php:2584 backup.php:2837
4047
+ msgid "Failed to open the zip file (%s) - %s"
4048
+ msgstr ""
4049
+
4050
+ #: addons/morefiles.php:94
4051
+ msgid "WordPress root directory server path: %s"
4052
+ msgstr ""
4053
+
4054
+ #: methods/s3.php:696
4055
+ msgid "... and many more!"
4056
+ msgstr ""
4057
+
4058
+ #: methods/s3.php:734
4059
+ msgid "%s end-point"
4060
+ msgstr ""
4061
+
4062
+ #: admin.php:4859
4063
+ msgid "File is not locally present - needs retrieving from remote storage"
4064
+ msgstr ""
4065
+
4066
+ #: methods/s3generic.php:41 methods/s3generic.php:49
4067
+ msgid "S3 (Compatible)"
4068
+ msgstr ""
4069
+
4070
+ #: admin.php:4807
4071
+ msgid "Final checks"
4072
+ msgstr ""
4073
+
4074
+ #: admin.php:4846
4075
+ msgid "Looking for %s archive: file name: %s"
4076
+ msgstr ""
4077
+
4078
+ #: admin.php:3964
4079
+ 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)."
4080
+ msgstr ""
4081
+
4082
+ #: admin.php:3867
4083
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4084
+ msgstr ""
4085
+
4086
+ #: admin.php:4081
4087
+ msgid "Your wp-content directory server path: %s"
4088
+ msgstr ""
4089
+
4090
+ #: admin.php:498
4091
+ msgid "Raw backup history"
4092
+ msgstr ""
4093
+
4094
+ #: admin.php:3105
4095
+ msgid "Show raw backup and file list"
4096
+ msgstr ""
4097
+
4098
+ #: admin.php:481
4099
+ msgid "Processing files - please wait..."
4100
+ msgstr ""
4101
+
4102
+ #: admin.php:2858
4103
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4104
+ msgstr ""
4105
+
4106
+ #: admin.php:2858 admin.php:4992
4107
+ msgid "Please consult this FAQ for help on what to do about it."
4108
+ msgstr ""
4109
+
4110
+ #: class-updraftplus.php:3474
4111
+ msgid "Failed to open database file."
4112
+ msgstr ""
4113
+
4114
+ #: class-updraftplus.php:3454
4115
+ msgid "Failed to write out the decrypted database to the filesystem."
4116
+ msgstr ""
4117
+
4118
+ #: admin.php:1372
4119
+ msgid "Known backups (raw)"
4120
+ msgstr ""
4121
+
4122
+ #: restorer.php:1270
4123
+ msgid "Using directory from backup: %s"
4124
+ msgstr ""
4125
+
4126
+ #: restorer.php:879
4127
+ msgid "Files found:"
4128
+ msgstr ""
4129
+
4130
+ #: restorer.php:885
4131
+ msgid "Unable to enumerate files in that directory."
4132
+ msgstr ""
4133
+
4134
+ #: restorer.php:1715
4135
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
4136
+ msgstr ""
4137
+
4138
+ #: restorer.php:1725
4139
+ msgid "Restoring table (%s)"
4140
+ msgstr ""
4141
+
4142
+ #: addons/migrator.php:314
4143
+ 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."
4144
+ msgstr ""
4145
+
4146
+ #: admin.php:4881
4147
+ msgid "file is size:"
4148
+ msgstr ""
4149
+
4150
+ #: addons/googlecloud.php:855 addons/migrator.php:352 addons/migrator.php:355
4151
+ #: addons/migrator.php:358 admin.php:761 admin.php:2326 admin.php:3130
4152
+ #: backup.php:2884 updraftplus.php:147
4153
+ msgid "Go here for more information."
4154
+ msgstr ""
4155
+
4156
+ #: admin.php:480
4157
+ msgid "Some files are still downloading or being processed - please wait."
4158
+ msgstr ""
4159
+
4160
+ #: class-updraftplus.php:3522 class-updraftplus.php:3540
4161
+ 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."
4162
+ msgstr ""
4163
+
4164
+ #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4165
+ msgid "%s login failure"
4166
+ msgstr ""
4167
+
4168
+ #: methods/ftp.php:111
4169
+ msgid "%s upload failed"
4170
+ msgstr ""
4171
+
4172
+ #: addons/fixtime.php:545
4173
+ msgid "Enter in format HH:MM (e.g. 14:22)."
4174
+ msgstr ""
4175
+
4176
+ #: addons/fixtime.php:545
4177
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
4178
+ msgstr ""
4179
+
4180
+ #: methods/dropbox.php:120
4181
+ msgid "Dropbox error: %s (see log file for more)"
4182
+ msgstr ""
4183
+
4184
+ #: methods/dropbox.php:330
4185
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
4186
+ msgstr ""
4187
+
4188
+ #: methods/dropbox.php:338
4189
+ msgid "Failed to access %s when deleting (see log file for more)"
4190
+ msgstr ""
4191
+
4192
+ #: addons/copycom.php:264 methods/dropbox.php:371
4193
+ msgid "You do not appear to be authenticated with %s"
4194
+ msgstr ""
4195
+
4196
+ #: methods/cloudfiles.php:418
4197
+ msgid "Error - no such file exists at %s"
4198
+ msgstr ""
4199
+
4200
+ #: methods/cloudfiles.php:422
4201
+ msgid "Error - failed to download the file from %s"
4202
+ msgstr ""
4203
+
4204
+ #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4205
+ msgid "%s error - failed to upload file"
4206
+ msgstr ""
4207
+
4208
+ #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4209
+ #: methods/cloudfiles.php:409 methods/googledrive.php:823
4210
+ #: methods/openstack-base.php:319 methods/stream-base.php:261
4211
+ #: methods/stream-base.php:268 methods/stream-base.php:281
4212
+ msgid "%s Error"
4213
+ msgstr ""
4214
+
4215
+ #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4216
+ #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4217
+ #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4218
+ #: methods/openstack-base.php:32 methods/openstack-base.php:216
4219
+ #: methods/openstack-base.php:281 methods/openstack-base.php:353
4220
+ #: methods/openstack-base.php:356 methods/openstack-base.php:373
4221
+ #: methods/openstack-base.php:378
4222
+ msgid "%s authentication failed"
4223
+ msgstr ""
4224
+
4225
+ #: class-updraftplus.php:838 methods/cloudfiles.php:211
4226
+ msgid "%s error - failed to re-assemble chunks"
4227
+ msgstr ""
4228
+
4229
+ #: addons/googlecloud.php:384 addons/migrator.php:448 admin.php:1999
4230
+ #: admin.php:2046 admin.php:2054 class-updraftplus.php:686
4231
+ #: class-updraftplus.php:692 class-updraftplus.php:3442
4232
+ #: class-updraftplus.php:3444 class-updraftplus.php:3580
4233
+ #: class-updraftplus.php:3613 methods/googledrive.php:299 restorer.php:873
4234
+ msgid "Error: %s"
4235
+ msgstr ""
4236
+
4237
+ #: admin.php:3656
4238
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
4239
+ msgstr ""
4240
+
4241
+ #: admin.php:3654
4242
+ msgid "Backup directory specified does <b>not</b> exist."
4243
+ msgstr ""
4244
+
4245
+ #: admin.php:3389 admin.php:3610 class-updraftplus.php:3522
4246
+ #: class-updraftplus.php:3540
4247
+ msgid "Warning: %s"
4248
+ msgstr ""
4249
+
4250
+ #: admin.php:2462
4251
+ msgid "Last backup job run:"
4252
+ msgstr ""
4253
+
4254
+ #: backup.php:2017 backup.php:2043
4255
+ msgid "%s: unreadable file - could not be backed up"
4256
+ msgstr ""
4257
+
4258
+ #: backup.php:2603
4259
+ msgid "A very large file was encountered: %s (size: %s Mb)"
4260
+ msgstr ""
4261
+
4262
+ #: backup.php:1467
4263
+ 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"
4264
+ msgstr ""
4265
+
4266
+ #: backup.php:1578
4267
+ msgid "An error occurred whilst closing the final database file"
4268
+ msgstr ""
4269
+
4270
+ #: backup.php:870
4271
+ msgid "Warnings encountered:"
4272
+ msgstr ""
4273
+
4274
+ #: class-updraftplus.php:2423
4275
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
4276
+ msgstr ""
4277
+
4278
+ #: class-updraftplus.php:596
4279
+ msgid "Your free disk space is very low - only %s Mb remain"
4280
+ msgstr ""
4281
+
4282
+ #: addons/migrator.php:431
4283
+ msgid "Migrated site (from UpdraftPlus)"
4284
+ msgstr ""
4285
+
4286
+ #: addons/migrator.php:510
4287
+ msgid "<strong>ERROR</strong>: Site URL already taken."
4288
+ msgstr ""
4289
+
4290
+ #: addons/migrator.php:455
4291
+ msgid "New site:"
4292
+ msgstr ""
4293
+
4294
+ #: addons/migrator.php:372
4295
+ msgid "Information needed to continue:"
4296
+ msgstr ""
4297
+
4298
+ #: addons/migrator.php:373
4299
+ msgid "Enter details for where this new site is to live within your multisite install:"
4300
+ msgstr ""
4301
+
4302
+ #: addons/migrator.php:318
4303
+ msgid "Processed plugin:"
4304
+ msgstr ""
4305
+
4306
+ #: addons/migrator.php:329
4307
+ msgid "Network activating theme:"
4308
+ msgstr ""
4309
+
4310
+ #: addons/sftp.php:38
4311
+ 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."
4312
+ msgstr ""
4313
+
4314
+ #: addons/sftp.php:74
4315
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
4316
+ msgstr ""
4317
+
4318
+ #: methods/s3.php:710
4319
+ 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."
4320
+ msgstr ""
4321
+
4322
+ #: methods/s3.php:897
4323
+ msgid "Please check your access credentials."
4324
+ msgstr ""
4325
+
4326
+ #: addons/s3-enhanced.php:152 methods/s3.php:875
4327
+ msgid "The error reported by %s was:"
4328
+ msgstr ""
4329
+
4330
+ #: restorer.php:1287
4331
+ msgid "Please supply the requested information, and then continue."
4332
+ msgstr ""
4333
+
4334
+ #: restorer.php:1920
4335
+ msgid "Cannot drop tables, so deleting instead (%s)"
4336
+ msgstr ""
4337
+
4338
+ #: class-updraftplus.php:3591 restorer.php:1559
4339
+ msgid "Site information:"
4340
+ msgstr ""
4341
+
4342
+ #: restorer.php:1903
4343
+ msgid "Cannot create new tables, so skipping this command (%s)"
4344
+ msgstr ""
4345
+
4346
+ #: addons/migrator.php:314 admin.php:2321 class-updraftplus.php:3584
4347
+ #: restorer.php:1439 restorer.php:1465 restorer.php:1879
4348
+ msgid "Warning:"
4349
+ msgstr ""
4350
+
4351
+ #: restorer.php:1440
4352
+ 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."
4353
+ msgstr ""
4354
+
4355
+ #: class-updraftplus.php:3576 restorer.php:105
4356
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4357
+ msgstr ""
4358
+
4359
+ #: admin.php:4834
4360
+ 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."
4361
+ msgstr ""
4362
+
4363
+ #: admin.php:4137 methods/updraftvault.php:239
4364
+ 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."
4365
+ msgstr ""
4366
+
4367
+ #: admin.php:516
4368
+ msgid "Close"
4369
+ msgstr ""
4370
+
4371
+ #: addons/autobackup.php:283 addons/autobackup.php:374 admin.php:473
4372
+ #: methods/remotesend.php:71 methods/remotesend.php:79
4373
+ #: methods/remotesend.php:219 methods/remotesend.php:227
4374
+ msgid "Unexpected response:"
4375
+ msgstr ""
4376
+
4377
+ #: addons/reporting.php:412 admin.php:469
4378
+ msgid "To send to more than one address, separate each address with a comma."
4379
+ msgstr ""
4380
+
4381
+ #: admin.php:496
4382
+ msgid "PHP information"
4383
+ msgstr ""
4384
+
4385
+ #: admin.php:3070
4386
+ msgid "show PHP information (phpinfo)"
4387
+ msgstr ""
4388
+
4389
+ #: admin.php:3090
4390
+ msgid "zip executable found:"
4391
+ msgstr ""
4392
+
4393
+ #: admin.php:2471
4394
+ msgid "Migrate Site"
4395
+ msgstr ""
4396
+
4397
+ #: addons/migrator.php:170
4398
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4399
+ msgstr ""
4400
+
4401
+ #: admin.php:2476
4402
+ msgid "Do you want to migrate or clone/duplicate a site?"
4403
+ msgstr ""
4404
+
4405
+ #: admin.php:2476
4406
+ 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."
4407
+ msgstr ""
4408
+
4409
+ #: admin.php:2476
4410
+ msgid "Get it here."
4411
+ msgstr ""
4412
+
4413
+ #: admin.php:2946
4414
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
4415
+ msgstr ""
4416
+
4417
+ #: admin.php:2945
4418
+ msgid "Also delete from remote storage"
4419
+ msgstr ""
4420
+
4421
+ #: admin.php:2804
4422
+ msgid "Latest UpdraftPlus.com news:"
4423
+ msgstr ""
4424
+
4425
+ #: admin.php:2437
4426
+ msgid "Clone/Migrate"
4427
+ msgstr ""
4428
+
4429
+ #: admin.php:2157
4430
+ msgid "News"
4431
+ msgstr ""
4432
+
4433
+ #: admin.php:2156
4434
+ msgid "Premium"
4435
+ msgstr ""
4436
+
4437
+ #: admin.php:1616
4438
+ msgid "Local archives deleted: %d"
4439
+ msgstr ""
4440
+
4441
+ #: admin.php:1617
4442
+ msgid "Remote archives deleted: %d"
4443
+ msgstr ""
4444
+
4445
+ #: backup.php:157
4446
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4447
+ msgstr ""
4448
+
4449
+ #: admin.php:1542
4450
+ msgid "Backup set not found"
4451
+ msgstr ""
4452
+
4453
+ #: class-updraftplus.php:3400
4454
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4455
+ msgstr ""
4456
+
4457
+ #: class-updraftplus.php:3400
4458
+ msgid "Blog link"
4459
+ msgstr ""
4460
+
4461
+ #: class-updraftplus.php:3400
4462
+ msgid "RSS link"
4463
+ msgstr ""
4464
+
4465
+ #: admin.php:558
4466
+ msgid "Testing %s Settings..."
4467
+ msgstr ""
4468
+
4469
+ #: admin.php:2880
4470
+ 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."
4471
+ msgstr ""
4472
+
4473
+ #: admin.php:777
4474
+ msgid "Notice"
4475
+ msgstr ""
4476
+
4477
+ #: admin.php:777
4478
+ 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."
4479
+ msgstr ""
4480
+
4481
+ #: backup.php:852
4482
+ msgid "Errors encountered:"
4483
+ msgstr ""
4484
+
4485
+ #: admin.php:467
4486
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4487
+ msgstr ""
4488
+
4489
+ #: admin.php:479
4490
+ msgid "Begun looking for this entity"
4491
+ msgstr ""
4492
+
4493
+ #: addons/migrator.php:1088
4494
+ msgid "SQL update commands run:"
4495
+ msgstr ""
4496
+
4497
+ #: addons/migrator.php:1089 admin.php:484
4498
+ msgid "Errors:"
4499
+ msgstr ""
4500
+
4501
+ #: addons/migrator.php:1090
4502
+ msgid "Time taken (seconds):"
4503
+ msgstr ""
4504
+
4505
+ #: addons/migrator.php:1226
4506
+ msgid "rows: %d"
4507
+ msgstr ""
4508
+
4509
+ #: addons/migrator.php:1341
4510
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
4511
+ msgstr ""
4512
+
4513
+ #: addons/dropbox-folders.php:26
4514
+ msgid "Store at"
4515
+ msgstr ""
4516
+
4517
+ #: addons/migrator.php:903
4518
+ msgid "Nothing to do: the site URL is already: %s"
4519
+ msgstr ""
4520
+
4521
+ #: addons/migrator.php:914
4522
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
4523
+ msgstr ""
4524
+
4525
+ #: addons/migrator.php:930
4526
+ msgid "Database search and replace: replace %s in backup dump with %s"
4527
+ msgstr ""
4528
+
4529
+ #: addons/migrator.php:970
4530
+ msgid "Could not get list of tables"
4531
+ msgstr ""
4532
+
4533
+ #: addons/migrator.php:1085
4534
+ msgid "Tables examined:"
4535
+ msgstr ""
4536
+
4537
+ #: addons/migrator.php:1086
4538
+ msgid "Rows examined:"
4539
+ msgstr ""
4540
+
4541
+ #: addons/migrator.php:1087
4542
+ msgid "Changes made:"
4543
+ msgstr ""
4544
+
4545
+ #: addons/sftp.php:278
4546
+ msgid "%s Error: Failed to download"
4547
+ msgstr ""
4548
+
4549
+ #: addons/moredatabase.php:232 addons/sftp.php:345
4550
+ msgid "Host"
4551
+ msgstr ""
4552
+
4553
+ #: addons/sftp.php:352
4554
+ msgid "Port"
4555
+ msgstr ""
4556
+
4557
+ #: addons/lockadmin.php:141 addons/moredatabase.php:234 addons/sftp.php:366
4558
+ #: methods/openstack2.php:127 methods/updraftvault.php:299
4559
+ #: udaddons/options.php:145
4560
+ msgid "Password"
4561
+ msgstr ""
4562
+
4563
+ #: addons/sftp.php:391
4564
+ msgid "Directory path"
4565
+ msgstr ""
4566
+
4567
+ #: addons/sftp.php:393
4568
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
4569
+ msgstr ""
4570
+
4571
+ #: addons/sftp.php:415
4572
+ msgid "host name"
4573
+ msgstr ""
4574
+
4575
+ #: addons/sftp.php:419 methods/openstack2.php:142
4576
+ msgid "username"
4577
+ msgstr ""
4578
+
4579
+ #: methods/ftp.php:359 methods/openstack2.php:147
4580
+ msgid "password"
4581
+ msgstr ""
4582
+
4583
+ #: addons/sftp.php:428
4584
+ msgid "Failure: Port must be an integer."
4585
+ msgstr ""
4586
+
4587
+ #: addons/fixtime.php:545
4588
+ msgid "starting from next time it is"
4589
+ msgstr ""
4590
+
4591
+ #: addons/multisite.php:174
4592
+ msgid "Multisite Install"
4593
+ msgstr ""
4594
+
4595
+ #: addons/multisite.php:180 udaddons/options.php:225
4596
+ msgid "You do not have sufficient permissions to access this page."
4597
+ msgstr ""
4598
+
4599
+ #: addons/multisite.php:194
4600
+ msgid "You do not have permission to access this page."
4601
+ msgstr ""
4602
+
4603
+ #: addons/migrator.php:358 addons/multisite.php:609
4604
+ msgid "Must-use plugins"
4605
+ msgstr ""
4606
+
4607
+ #: addons/multisite.php:616
4608
+ msgid "Blog uploads"
4609
+ msgstr ""
4610
+
4611
+ #: addons/migrator.php:528
4612
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
4613
+ msgstr ""
4614
+
4615
+ #: addons/migrator.php:528
4616
+ msgid "Search and replace site location in the database (migrate)"
4617
+ msgstr ""
4618
+
4619
+ #: addons/migrator.php:528
4620
+ msgid "(learn more)"
4621
+ msgstr ""
4622
+
4623
+ #: addons/migrator.php:763 addons/migrator.php:1067
4624
+ msgid "Failed: the %s operation was not able to start."
4625
+ msgstr ""
4626
+
4627
+ #: addons/migrator.php:765 addons/migrator.php:1069
4628
+ msgid "Failed: we did not understand the result returned by the %s operation."
4629
+ msgstr ""
4630
+
4631
+ #: addons/migrator.php:837
4632
+ msgid "Database: search and replace site URL"
4633
+ msgstr ""
4634
+
4635
+ #: addons/migrator.php:841
4636
+ msgid "This option was not selected."
4637
+ msgstr ""
4638
+
4639
+ #: addons/migrator.php:875 addons/migrator.php:879 addons/migrator.php:883
4640
+ #: addons/migrator.php:888 addons/migrator.php:892 addons/migrator.php:897
4641
+ msgid "Error: unexpected empty parameter (%s, %s)"
4642
+ msgstr ""
4643
+
4644
+ #: addons/morefiles.php:86
4645
+ msgid "The above files comprise everything in a WordPress installation."
4646
+ msgstr ""
4647
+
4648
+ #: addons/morefiles.php:93
4649
+ msgid "WordPress core (including any additions to your WordPress root directory)"
4650
+ msgstr ""
4651
+
4652
+ #: addons/morefiles.php:179
4653
+ msgid "More Files"
4654
+ msgstr ""
4655
+
4656
+ #: addons/morefiles.php:211 addons/morefiles.php:222
4657
+ msgid "Enter the directory:"
4658
+ msgstr ""
4659
+
4660
+ #: addons/morefiles.php:200
4661
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
4662
+ msgstr ""
4663
+
4664
+ #: addons/morefiles.php:200
4665
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
4666
+ msgstr ""
4667
+
4668
+ #: addons/morefiles.php:202
4669
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
4670
+ msgstr ""
4671
+
4672
+ #: addons/morefiles.php:442
4673
+ msgid "No backup of %s directories: there was nothing found to back up"
4674
+ msgstr ""
4675
+
4676
+ #: addons/sftp.php:38
4677
+ 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."
4678
+ msgstr ""
4679
+
4680
+ #: addons/sftp.php:38
4681
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
4682
+ msgstr ""
4683
+
4684
+ #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
4685
+ msgid "No %s found"
4686
+ msgstr ""
4687
+
4688
+ #: addons/sftp.php:458
4689
+ msgid "Check your file permissions: Could not successfully create and enter:"
4690
+ msgstr ""
4691
+
4692
+ #: methods/ftp.php:320
4693
+ msgid "Needs to already exist"
4694
+ msgstr ""
4695
+
4696
+ #: methods/ftp.php:351
4697
+ msgid "Failure: No server details were given."
4698
+ msgstr ""
4699
+
4700
+ #: methods/ftp.php:369
4701
+ msgid "Failure: we did not successfully log in with those credentials."
4702
+ msgstr ""
4703
+
4704
+ #: methods/ftp.php:378
4705
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4706
+ msgstr ""
4707
+
4708
+ #: methods/ftp.php:381
4709
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4710
+ msgstr ""
4711
+
4712
+ #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4713
+ #: methods/addon-base.php:97 methods/addon-base.php:128
4714
+ #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
4715
+ #: methods/googledrive.php:146 methods/stream-base.php:31
4716
+ #: methods/stream-base.php:145 methods/stream-base.php:180
4717
+ #: methods/stream-base.php:245
4718
+ msgid "No %s settings were found"
4719
+ msgstr ""
4720
+
4721
+ #: methods/stream-base.php:107 methods/stream-base.php:111
4722
+ msgid "Chunk %s: A %s error occurred"
4723
+ msgstr ""
4724
+
4725
+ #: methods/stream-base.php:268
4726
+ msgid "Error opening remote file: Failed to download"
4727
+ msgstr ""
4728
+
4729
+ #: methods/stream-base.php:281
4730
+ msgid "Local write failed: Failed to download"
4731
+ msgstr ""
4732
+
4733
+ #: addons/webdav.php:42
4734
+ msgid "WebDAV URL"
4735
+ msgstr ""
4736
+
4737
+ #: addons/webdav.php:46
4738
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
4739
+ msgstr ""
4740
+
4741
+ #: addons/googlecloud.php:626 addons/googlecloud.php:660
4742
+ #: addons/googlecloud.php:666 addons/sftp.php:445 admin.php:3442 admin.php:3477
4743
+ #: admin.php:3486 methods/addon-base.php:284 methods/stream-base.php:297
4744
+ msgid "Failed"
4745
+ msgstr ""
4746
+
4747
+ #: methods/addon-base.php:294 methods/stream-base.php:311
4748
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4749
+ msgstr ""
4750
+
4751
+ #: addons/morefiles.php:63 addons/morefiles.php:442
4752
+ msgid "WordPress Core"
4753
+ msgstr ""
4754
+
4755
+ #: addons/morefiles.php:67
4756
+ msgid "Over-write wp-config.php"
4757
+ msgstr ""
4758
+
4759
+ #: addons/copycom.php:387 addons/copycom.php:389 methods/dropbox.php:523
4760
+ #: methods/dropbox.php:525
4761
+ msgid "you have authenticated your %s account"
4762
+ msgstr ""
4763
+
4764
+ #: addons/copycom.php:398 methods/dropbox.php:528
4765
+ msgid "though part of the returned information was not as expected - your mileage may vary"
4766
+ msgstr ""
4767
+
4768
+ #: addons/copycom.php:406 addons/onedrive.php:527 methods/dropbox.php:532
4769
+ msgid "Your %s account name: %s"
4770
+ msgstr ""
4771
+
4772
+ #: methods/ftp.php:303
4773
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4774
+ msgstr ""
4775
+
4776
+ #: methods/ftp.php:303
4777
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4778
+ msgstr ""
4779
+
4780
+ #: methods/s3.php:661
4781
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4782
+ msgstr ""
4783
+
4784
+ #: methods/s3.php:507 methods/s3.php:580 methods/s3.php:666
4785
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4786
+ msgstr ""
4787
+
4788
+ #: methods/s3.php:725
4789
+ 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."
4790
+ msgstr ""
4791
+
4792
+ #: methods/s3.php:727
4793
+ msgid "If you see errors about SSL certificates, then please go here for help."
4794
+ msgstr ""
4795
+
4796
+ #: methods/s3.php:748
4797
+ msgid "%s access key"
4798
+ msgstr ""
4799
+
4800
+ #: methods/s3.php:752
4801
+ msgid "%s secret key"
4802
+ msgstr ""
4803
+
4804
+ #: methods/s3.php:756
4805
+ msgid "%s location"
4806
+ msgstr ""
4807
+
4808
+ #: methods/s3.php:757
4809
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4810
+ msgstr ""
4811
+
4812
+ #: methods/s3.php:801
4813
+ msgid "API secret"
4814
+ msgstr ""
4815
+
4816
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:823
4817
+ msgid "Failure: No bucket details were given."
4818
+ msgstr ""
4819
+
4820
+ #: addons/s3-enhanced.php:125 methods/openstack2.php:113 methods/s3.php:843
4821
+ msgid "Region"
4822
+ msgstr ""
4823
+
4824
+ #: methods/s3.php:874
4825
+ 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)."
4826
+ msgstr ""
4827
+
4828
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4829
+ #: methods/s3.php:897
4830
+ msgid "Failure"
4831
+ msgstr ""
4832
+
4833
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4834
+ #: methods/s3.php:897
4835
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4836
+ msgstr ""
4837
+
4838
+ #: addons/googlecloud.php:689 methods/s3.php:887
4839
+ msgid "We accessed the bucket, and were able to create files within it."
4840
+ msgstr ""
4841
+
4842
+ #: methods/s3.php:890
4843
+ msgid "The communication with %s was encrypted."
4844
+ msgstr ""
4845
+
4846
+ #: methods/s3.php:892
4847
+ msgid "The communication with %s was not encrypted."
4848
+ msgstr ""
4849
+
4850
+ #: methods/dropbox.php:107 methods/dropbox.php:115
4851
+ msgid "You do not appear to be authenticated with Dropbox"
4852
+ msgstr ""
4853
+
4854
+ #: methods/dropbox.php:200 methods/dropbox.php:221 methods/dropbox.php:237
4855
+ msgid "error: failed to upload file to %s (see log file for more)"
4856
+ msgstr ""
4857
+
4858
+ #: methods/dropbox.php:448
4859
+ msgid "Need to use sub-folders?"
4860
+ msgstr ""
4861
+
4862
+ #: methods/dropbox.php:448
4863
+ msgid "Backups are saved in"
4864
+ msgstr ""
4865
+
4866
+ #: methods/dropbox.php:448
4867
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4868
+ msgstr ""
4869
+
4870
+ #: methods/dropbox.php:448
4871
+ msgid "there's an add-on for that."
4872
+ msgstr ""
4873
+
4874
+ #: methods/cloudfiles.php:462
4875
+ msgid "US or UK Cloud"
4876
+ msgstr ""
4877
+
4878
+ #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:88
4879
+ #: methods/cloudfiles.php:465
4880
+ msgid "US (default)"
4881
+ msgstr ""
4882
+
4883
+ #: addons/cloudfiles-enhanced.php:237 methods/cloudfiles-new.php:89
4884
+ #: methods/cloudfiles.php:466
4885
+ msgid "UK"
4886
+ msgstr ""
4887
+
4888
+ #: methods/cloudfiles.php:482
4889
+ msgid "Cloud Files username"
4890
+ msgstr ""
4891
+
4892
+ #: methods/cloudfiles.php:486
4893
+ msgid "Cloud Files API key"
4894
+ msgstr ""
4895
+
4896
+ #: methods/cloudfiles.php:490
4897
+ msgid "Cloud Files container"
4898
+ msgstr ""
4899
+
4900
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
4901
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4902
+ msgstr ""
4903
+
4904
+ #: addons/migrator.php:274 addons/migrator.php:1834 addons/moredatabase.php:70
4905
+ #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:415
4906
+ #: addons/sftp.php:419 addons/sftp.php:423 addons/webdav.php:56 admin.php:536
4907
+ #: methods/addon-base.php:277 methods/cloudfiles-new.php:142
4908
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:504
4909
+ #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
4910
+ #: methods/openstack2.php:142 methods/openstack2.php:147
4911
+ #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:797
4912
+ #: methods/s3.php:801
4913
+ msgid "Failure: No %s was given."
4914
+ msgstr ""
4915
+
4916
+ #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:797
4917
+ msgid "API key"
4918
+ msgstr ""
4919
+
4920
+ #: addons/moredatabase.php:233 addons/sftp.php:359
4921
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4922
+ #: methods/openstack2.php:121
4923
+ msgid "Username"
4924
+ msgstr ""
4925
+
4926
+ #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4927
+ msgid "Failure: No container details were given."
4928
+ msgstr ""
4929
+
4930
+ #: methods/cloudfiles.php:556
4931
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4932
+ msgstr ""
4933
+
4934
+ #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4935
+ msgid "We accessed the container, and were able to create files within it."
4936
+ msgstr ""
4937
+
4938
+ #: methods/email.php:43
4939
+ msgid "WordPress Backup"
4940
+ msgstr ""
4941
+
4942
+ #: methods/email.php:69
4943
+ msgid "Note:"
4944
+ msgstr ""
4945
+
4946
+ #: methods/s3.php:346
4947
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4948
+ msgstr ""
4949
+
4950
+ #: methods/s3.php:369
4951
+ msgid "%s error: file %s was shortened unexpectedly"
4952
+ msgstr ""
4953
+
4954
+ #: methods/s3.php:379
4955
+ msgid "%s chunk %s: upload failed"
4956
+ msgstr ""
4957
+
4958
+ #: methods/s3.php:395
4959
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
4960
+ msgstr ""
4961
+
4962
+ #: methods/s3.php:399
4963
+ msgid "%s re-assembly error (%s): (see log file for more)"
4964
+ msgstr ""
4965
+
4966
+ #: methods/s3.php:411
4967
+ msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
4968
+ msgstr ""
4969
+
4970
+ #: addons/googlecloud.php:826 methods/googledrive.php:904
4971
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4972
+ msgstr ""
4973
+
4974
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4975
+ msgid "Select 'Web Application' as the application type."
4976
+ msgstr ""
4977
+
4978
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4979
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4980
+ msgstr ""
4981
+
4982
+ #: addons/googlecloud.php:839 addons/onedrive.php:698
4983
+ #: methods/googledrive.php:916
4984
+ msgid "Client ID"
4985
+ msgstr ""
4986
+
4987
+ #: addons/googlecloud.php:842 methods/googledrive.php:917
4988
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4989
+ msgstr ""
4990
+
4991
+ #: addons/googlecloud.php:847 addons/onedrive.php:702
4992
+ #: methods/googledrive.php:920
4993
+ msgid "Client Secret"
4994
+ msgstr ""
4995
+
4996
+ #: addons/googlecloud.php:896 methods/googledrive.php:950
4997
+ msgid "Authenticate with Google"
4998
+ msgstr ""
4999
+
5000
+ #: addons/googlecloud.php:907 methods/googledrive.php:961
5001
+ 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."
5002
+ msgstr ""
5003
+
5004
+ #: addons/cloudfiles-enhanced.php:88 addons/cloudfiles-enhanced.php:125
5005
+ #: addons/cloudfiles-enhanced.php:130 methods/cloudfiles.php:539
5006
+ #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5007
+ msgid "Cloud Files authentication failed"
5008
+ msgstr ""
5009
+
5010
+ #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5011
+ #: methods/cloudfiles.php:363
5012
+ msgid "Cloud Files error - failed to create and access the container"
5013
+ msgstr ""
5014
+
5015
+ #: addons/googlecloud.php:161 addons/googlecloud.php:166
5016
+ #: class-updraftplus.php:792 methods/cloudfiles.php:130
5017
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5018
+ msgid "%s Error: Failed to open local file"
5019
+ msgstr ""
5020
+
5021
+ #: addons/sftp.php:135 addons/sftp.php:144 methods/cloudfiles.php:147
5022
+ #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5023
+ #: methods/openstack-base.php:190 methods/s3.php:314 methods/s3.php:326
5024
+ #: methods/s3.php:327
5025
+ msgid "%s Error: Failed to upload"
5026
+ msgstr ""
5027
+
5028
+ #: methods/cloudfiles.php:218
5029
+ msgid "Cloud Files error - failed to upload file"
5030
+ msgstr ""
5031
+
5032
+ #: class-updraftplus.php:867 methods/cloudfiles.php:392
5033
+ #: methods/stream-base.php:261
5034
+ msgid "Error opening local file: Failed to download"
5035
+ msgstr ""
5036
+
5037
+ #: methods/openstack-base.php:319
5038
+ msgid "Error downloading remote file: Failed to download ("
5039
+ msgstr ""
5040
+
5041
+ #: addons/sftp.php:406 admin.php:557 methods/addon-base.php:242
5042
+ #: methods/cloudfiles.php:496 methods/ftp.php:329
5043
+ #: methods/openstack-base.php:440 methods/s3.php:762
5044
+ #: methods/stream-base.php:219
5045
+ msgid "Test %s Settings"
5046
+ msgstr ""
5047
+
5048
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5049
+ 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."
5050
+ msgstr ""
5051
+
5052
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5053
+ #: methods/openstack2.php:94
5054
+ msgid "Also, you should read this important FAQ."
5055
+ msgstr ""
5056
+
5057
+ #: methods/googledrive.php:410
5058
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5059
+ msgstr ""
5060
+
5061
+ #: methods/googledrive.php:381 methods/googledrive.php:427
5062
+ #: methods/googledrive.php:433 methods/googledrive.php:435
5063
+ #: methods/stream-base.php:196
5064
+ msgid "Failed to upload to %s"
5065
+ msgstr ""
5066
+
5067
+ #: addons/googlecloud.php:445 addons/googlecloud.php:446
5068
+ #: addons/googlecloud.php:709 addons/onedrive.php:439
5069
+ #: methods/googledrive.php:455 methods/googledrive.php:456
5070
+ msgid "Account is not authorized."
5071
+ msgstr ""
5072
+
5073
+ #: methods/addon-base.php:230 methods/cloudfiles.php:438
5074
+ #: methods/dropbox.php:427 methods/ftp.php:298 methods/googledrive.php:889
5075
+ #: methods/openstack-base.php:419 methods/s3.php:686
5076
+ #: methods/stream-base.php:212
5077
+ 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."
5078
+ msgstr ""
5079
+
5080
+ #: restorer.php:1729
5081
+ msgid "will restore as:"
5082
+ msgstr ""
5083
+
5084
+ #: addons/migrator.php:1121 restorer.php:1957
5085
+ msgid "the database query being run was:"
5086
+ msgstr ""
5087
+
5088
+ #: restorer.php:1791
5089
+ msgid "Finished: lines processed: %d in %.2f seconds"
5090
+ msgstr ""
5091
+
5092
+ #: restorer.php:2055 restorer.php:2130
5093
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5094
+ msgstr ""
5095
+
5096
+ #: addons/migrator.php:1734 admin.php:3445 admin.php:3479 admin.php:3483
5097
+ #: admin.php:4865 admin.php:4879 restorer.php:2061 restorer.php:2166
5098
+ msgid "OK"
5099
+ msgstr ""
5100
+
5101
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5102
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5103
+ msgstr ""
5104
+
5105
+ #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5106
+ #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5107
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5108
+ msgstr ""
5109
+
5110
+ #: methods/viaaddon-base.php:72
5111
+ msgid "%s support is available as an add-on"
5112
+ msgstr ""
5113
+
5114
+ #: methods/viaaddon-base.php:72
5115
+ msgid "follow this link to get it"
5116
+ msgstr ""
5117
+
5118
+ #: addons/googlecloud.php:382 methods/googledrive.php:297
5119
+ 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."
5120
+ msgstr ""
5121
+
5122
+ #: addons/googlecloud.php:390 methods/googledrive.php:305
5123
+ msgid "Authorization failed"
5124
+ msgstr ""
5125
+
5126
+ #: addons/copycom.php:413 addons/onedrive.php:520 methods/dropbox.php:545
5127
+ #: methods/googledrive.php:332
5128
+ msgid "Your %s quota usage: %s %% used, %s available"
5129
+ msgstr ""
5130
+
5131
+ #: addons/googlecloud.php:579 addons/googlecloud.php:689
5132
+ #: addons/onedrive.php:554 addons/sftp.php:478 methods/addon-base.php:291
5133
+ #: methods/cloudfiles.php:560 methods/googledrive.php:358
5134
+ #: methods/openstack-base.php:392 methods/s3.php:887
5135
+ #: methods/stream-base.php:308
5136
+ msgid "Success"
5137
+ msgstr ""
5138
+
5139
+ #: addons/googlecloud.php:579 addons/onedrive.php:554
5140
+ #: methods/googledrive.php:358
5141
+ msgid "you have authenticated your %s account."
5142
+ msgstr ""
5143
+
5144
+ #: methods/googledrive.php:507
5145
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5146
+ msgstr ""
5147
+
5148
+ #: restorer.php:429
5149
+ msgid "wp-config.php from backup: restoring (as per user's request)"
5150
+ msgstr ""
5151
+
5152
+ #: restorer.php:1330
5153
+ 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."
5154
+ msgstr ""
5155
+
5156
+ #: restorer.php:1353
5157
+ msgid "Failed to find database file"
5158
+ msgstr ""
5159
+
5160
+ #: restorer.php:1374
5161
+ msgid "Failed to open database file"
5162
+ msgstr ""
5163
+
5164
+ #: addons/migrator.php:586 restorer.php:1379
5165
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5166
+ msgstr ""
5167
+
5168
+ #: addons/reporting.php:65 addons/reporting.php:147 backup.php:919
5169
+ #: class-updraftplus.php:3517
5170
+ msgid "Backup of:"
5171
+ msgstr ""
5172
+
5173
+ #: restorer.php:1540 restorer.php:1633 restorer.php:1659
5174
+ msgid "Old table prefix:"
5175
+ msgstr ""
5176
+
5177
+ #: admin.php:4876
5178
+ msgid "Archive is expected to be size:"
5179
+ msgstr ""
5180
+
5181
+ #: admin.php:4884
5182
+ msgid "The backup records do not contain information about the proper size of this file."
5183
+ msgstr ""
5184
+
5185
+ #: admin.php:4982
5186
+ msgid "Error message"
5187
+ msgstr ""
5188
+
5189
+ #: admin.php:4887 admin.php:4888
5190
+ msgid "Could not find one of the files for restoration"
5191
+ msgstr ""
5192
+
5193
+ #: restorer.php:90
5194
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5195
+ msgstr ""
5196
+
5197
+ #: restorer.php:91
5198
+ msgid "Backup file not available."
5199
+ msgstr ""
5200
+
5201
+ #: restorer.php:92
5202
+ msgid "Copying this entity failed."
5203
+ msgstr ""
5204
+
5205
+ #: restorer.php:93
5206
+ msgid "Unpacking backup..."
5207
+ msgstr ""
5208
+
5209
+ #: restorer.php:94
5210
+ msgid "Decrypting database (can take a while)..."
5211
+ msgstr ""
5212
+
5213
+ #: restorer.php:95
5214
+ msgid "Database successfully decrypted."
5215
+ msgstr ""
5216
+
5217
+ #: restorer.php:98
5218
+ 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)..."
5219
+ msgstr ""
5220
+
5221
+ #: restorer.php:99
5222
+ msgid "Cleaning up rubbish..."
5223
+ msgstr ""
5224
+
5225
+ #: restorer.php:101
5226
+ msgid "Could not delete old directory."
5227
+ msgstr ""
5228
+
5229
+ #: restorer.php:104
5230
+ msgid "Failed to delete working directory after restoring."
5231
+ msgstr ""
5232
+
5233
+ #: restorer.php:301
5234
+ msgid "Failed to create a temporary directory"
5235
+ msgstr ""
5236
+
5237
+ #: restorer.php:316
5238
+ msgid "Failed to write out the decrypted database to the filesystem"
5239
+ msgstr ""
5240
+
5241
+ #: restorer.php:424
5242
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5243
+ msgstr ""
5244
+
5245
+ #: admin.php:3998
5246
+ 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."
5247
+ msgstr ""
5248
+
5249
+ #: admin.php:4021
5250
+ msgid "Save Changes"
5251
+ msgstr ""
5252
+
5253
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
5254
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5255
+ msgstr ""
5256
+
5257
+ #: admin.php:4144
5258
+ 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)."
5259
+ msgstr ""
5260
+
5261
+ #: admin.php:4146
5262
+ 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."
5263
+ msgstr ""
5264
+
5265
+ #: admin.php:4149
5266
+ 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."
5267
+ msgstr ""
5268
+
5269
+ #: admin.php:4621
5270
+ msgid "Delete this backup set"
5271
+ msgstr ""
5272
+
5273
+ #: admin.php:4528
5274
+ msgid "Press here to download"
5275
+ msgstr ""
5276
+
5277
+ #: admin.php:4612
5278
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5279
+ msgstr ""
5280
+
5281
+ #: admin.php:4663
5282
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5283
+ msgstr ""
5284
+
5285
+ #: admin.php:4711
5286
+ msgid "UpdraftPlus Restoration: Progress"
5287
+ msgstr ""
5288
+
5289
+ #: admin.php:4757
5290
+ msgid "ABORT: Could not find the information on which entities to restore."
5291
+ msgstr ""
5292
+
5293
+ #: admin.php:4758
5294
+ msgid "If making a request for support, please include this information:"
5295
+ msgstr ""
5296
+
5297
+ #: admin.php:3992
5298
+ msgid "Do not verify SSL certificates"
5299
+ msgstr ""
5300
+
5301
+ #: admin.php:3993
5302
+ 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."
5303
+ msgstr ""
5304
+
5305
+ #: admin.php:3993
5306
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5307
+ msgstr ""
5308
+
5309
+ #: admin.php:3997
5310
+ msgid "Disable SSL entirely where possible"
5311
+ msgstr ""
5312
+
5313
+ #: admin.php:3942
5314
+ msgid "Expert settings"
5315
+ msgstr ""
5316
+
5317
+ #: admin.php:3943
5318
+ msgid "Show expert settings"
5319
+ msgstr ""
5320
+
5321
+ #: admin.php:3943
5322
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5323
+ msgstr ""
5324
+
5325
+ #: admin.php:3963
5326
+ msgid "Delete local backup"
5327
+ msgstr ""
5328
+
5329
+ #: admin.php:3968
5330
+ msgid "Backup directory"
5331
+ msgstr ""
5332
+
5333
+ #: admin.php:3650
5334
+ msgid "Backup directory specified is writable, which is good."
5335
+ msgstr ""
5336
+
5337
+ #: admin.php:3658
5338
+ msgid "Click here to attempt to create the directory and set the permissions"
5339
+ msgstr ""
5340
+
5341
+ #: admin.php:3658
5342
+ msgid "or, to reset this option"
5343
+ msgstr ""
5344
+
5345
+ #: admin.php:3658
5346
+ msgid "click here"
5347
+ msgstr ""
5348
+
5349
+ #: admin.php:3658
5350
+ 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."
5351
+ msgstr ""
5352
+
5353
+ #: admin.php:3987
5354
+ msgid "Use the server's SSL certificates"
5355
+ msgstr ""
5356
+
5357
+ #: admin.php:3988
5358
+ 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."
5359
+ msgstr ""
5360
+
5361
+ #: admin.php:3915 udaddons/options.php:143
5362
+ msgid "Email"
5363
+ msgstr ""
5364
+
5365
+ #: admin.php:3836
5366
+ msgid "Database encryption phrase"
5367
+ msgstr ""
5368
+
5369
+ #: admin.php:3855
5370
+ msgid "Manually decrypt a database backup file"
5371
+ msgstr ""
5372
+
5373
+ #: admin.php:3770
5374
+ msgid "Choose your remote storage"
5375
+ msgstr ""
5376
+
5377
+ #: addons/reporting.php:201 admin.php:4289
5378
+ msgid "None"
5379
+ msgstr ""
5380
+
5381
+ #: admin.php:511
5382
+ msgid "Cancel"
5383
+ msgstr ""
5384
+
5385
+ #: admin.php:495
5386
+ msgid "Requesting start of backup..."
5387
+ msgstr ""
5388
+
5389
+ #: admin.php:3938
5390
+ msgid "Advanced / Debugging Settings"
5391
+ msgstr ""
5392
+
5393
+ #: admin.php:3953
5394
+ msgid "Debug mode"
5395
+ msgstr ""
5396
+
5397
+ #: admin.php:3826
5398
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5399
+ msgstr ""
5400
+
5401
+ #: admin.php:3641
5402
+ msgid "Daily"
5403
+ msgstr ""
5404
+
5405
+ #: admin.php:3642
5406
+ msgid "Weekly"
5407
+ msgstr ""
5408
+
5409
+ #: admin.php:3643
5410
+ msgid "Fortnightly"
5411
+ msgstr ""
5412
+
5413
+ #: admin.php:3644
5414
+ msgid "Monthly"
5415
+ msgstr ""
5416
+
5417
+ #: admin.php:3754
5418
+ msgid "To fix the time at which a backup should take place,"
5419
+ msgstr ""
5420
+
5421
+ #: admin.php:3754
5422
+ msgid "e.g. if your server is busy at day and you want to run overnight"
5423
+ msgstr ""
5424
+
5425
+ #: admin.php:3823
5426
+ msgid "Include in files backup"
5427
+ msgstr ""
5428
+
5429
+ #: admin.php:4081
5430
+ msgid "Any other directories found inside wp-content"
5431
+ msgstr ""
5432
+
5433
+ #: addons/morefiles.php:260 admin.php:4090
5434
+ msgid "Exclude these:"
5435
+ msgstr ""
5436
+
5437
+ #: admin.php:3143
5438
+ msgid "Debug Database Backup"
5439
+ msgstr ""
5440
+
5441
+ #: admin.php:3143
5442
+ 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.."
5443
+ msgstr ""
5444
+
5445
+ #: admin.php:3153
5446
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5447
+ msgstr ""
5448
+
5449
+ #: admin.php:3380
5450
+ msgid "show log"
5451
+ msgstr ""
5452
+
5453
+ #: addons/migrator.php:2204 admin.php:512 admin.php:2921 admin.php:3439
5454
+ #: admin.php:3472 admin.php:4621
5455
+ msgid "Delete"
5456
+ msgstr ""
5457
+
5458
+ #: admin.php:3523
5459
+ msgid "The request to the filesystem to create the directory failed."
5460
+ msgstr ""
5461
+
5462
+ #: admin.php:3537
5463
+ 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"
5464
+ msgstr ""
5465
+
5466
+ #: admin.php:3542
5467
+ msgid "The folder exists, but your webserver does not have permission to write to it."
5468
+ msgstr ""
5469
+
5470
+ #: admin.php:518 admin.php:3624
5471
+ msgid "Download log file"
5472
+ msgstr ""
5473
+
5474
+ #: admin.php:2497
5475
+ msgid "Multisite"
5476
+ msgstr ""
5477
+
5478
+ #: admin.php:2501
5479
+ msgid "Do you need WordPress Multisite support?"
5480
+ msgstr ""
5481
+
5482
+ #: admin.php:2501
5483
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5484
+ msgstr ""
5485
+
5486
+ #: admin.php:3058
5487
+ msgid "Web server:"
5488
+ msgstr ""
5489
+
5490
+ #: admin.php:3067
5491
+ msgid "Peak memory usage"
5492
+ msgstr ""
5493
+
5494
+ #: admin.php:3068
5495
+ msgid "Current memory usage"
5496
+ msgstr ""
5497
+
5498
+ #: admin.php:3070 admin.php:3071 admin.php:3078 admin.php:3079
5499
+ msgid "%s version:"
5500
+ msgstr ""
5501
+
5502
+ #: admin.php:3080 admin.php:3083 admin.php:3086 admin.php:3090
5503
+ msgid "Yes"
5504
+ msgstr ""
5505
+
5506
+ #: admin.php:3080 admin.php:3086 admin.php:3090
5507
+ msgid "No"
5508
+ msgstr ""
5509
+
5510
+ #: admin.php:3115
5511
+ msgid "Total (uncompressed) on-disk data:"
5512
+ msgstr ""
5513
+
5514
+ #: admin.php:3116
5515
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5516
+ msgstr ""
5517
+
5518
+ #: admin.php:3124
5519
+ msgid "count"
5520
+ msgstr ""
5521
+
5522
+ #: admin.php:3138
5523
+ msgid "Debug Full Backup"
5524
+ msgstr ""
5525
+
5526
+ #: admin.php:3138
5527
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5528
+ msgstr ""
5529
+
5530
+ #: admin.php:2879
5531
+ msgid "UpdraftPlus - Upload backup files"
5532
+ msgstr ""
5533
+
5534
+ #: admin.php:478 admin.php:2863
5535
+ msgid "calculating..."
5536
+ msgstr ""
5537
+
5538
+ #: addons/cloudfiles-enhanced.php:91 addons/migrator.php:749
5539
+ #: addons/migrator.php:970 addons/migrator.php:1051 addons/migrator.php:1121
5540
+ #: addons/migrator.php:1341 addons/migrator.php:1678 addons/migrator.php:1700
5541
+ #: addons/migrator.php:1706 addons/migrator.php:1768 addons/migrator.php:1803
5542
+ #: addons/migrator.php:1842 addons/migrator.php:1852 addons/migrator.php:1857
5543
+ #: addons/s3-enhanced.php:100 addons/s3-enhanced.php:105
5544
+ #: addons/s3-enhanced.php:107 addons/sftp.php:734 admin.php:487 admin.php:4881
5545
+ #: admin.php:4911 methods/remotesend.php:76 methods/remotesend.php:224
5546
+ #: methods/updraftvault.php:401 restorer.php:1292
5547
+ msgid "Error:"
5548
+ msgstr ""
5549
+
5550
+ #: admin.php:490
5551
+ msgid "You should:"
5552
+ msgstr ""
5553
+
5554
+ #: admin.php:494
5555
+ msgid "Download error: the server sent us a response which we did not understand."
5556
+ msgstr ""
5557
+
5558
+ #: admin.php:2931
5559
+ msgid "Delete backup set"
5560
+ msgstr ""
5561
+
5562
+ #: admin.php:2952
5563
+ msgid "Restore backup"
5564
+ msgstr ""
5565
+
5566
+ #: admin.php:2953
5567
+ msgid "Restore backup from"
5568
+ msgstr ""
5569
+
5570
+ #: admin.php:2965
5571
+ 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)."
5572
+ msgstr ""
5573
+
5574
+ #: admin.php:2965
5575
+ msgid "Choose the components to restore"
5576
+ msgstr ""
5577
+
5578
+ #: admin.php:2977
5579
+ msgid "Your web server has PHP's so-called safe_mode active."
5580
+ msgstr ""
5581
+
5582
+ #: admin.php:2990
5583
+ msgid "The following entity cannot be restored automatically: \"%s\"."
5584
+ msgstr ""
5585
+
5586
+ #: admin.php:2990
5587
+ msgid "You will need to restore it manually."
5588
+ msgstr ""
5589
+
5590
+ #: addons/morefiles.php:63 admin.php:2997
5591
+ msgid "%s restoration options:"
5592
+ msgstr ""
5593
+
5594
+ #: admin.php:3005
5595
+ 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"
5596
+ msgstr ""
5597
+
5598
+ #: admin.php:3016
5599
+ msgid "Do read this helpful article of useful things to know before restoring."
5600
+ msgstr ""
5601
+
5602
+ #: admin.php:2486
5603
+ msgid "Perform a one-time backup"
5604
+ msgstr ""
5605
+
5606
+ #: admin.php:330 admin.php:510 admin.php:2431
5607
+ msgid "Backup Now"
5608
+ msgstr ""
5609
+
5610
+ #: addons/migrator.php:223 admin.php:517 admin.php:2434 admin.php:4612
5611
+ msgid "Restore"
5612
+ msgstr ""
5613
+
5614
+ #: addons/autobackup.php:278 addons/autobackup.php:372 admin.php:2786
5615
+ #: admin.php:2791
5616
+ msgid "Last log message"
5617
+ msgstr ""
5618
+
5619
+ #: admin.php:2787 admin.php:2793 central/bootstrap.php:164
5620
+ msgid "(Nothing yet logged)"
5621
+ msgstr ""
5622
+
5623
+ #: admin.php:2828
5624
+ msgid "Download most recently modified log file"
5625
+ msgstr ""
5626
+
5627
+ #: admin.php:2866
5628
+ msgid "More tasks:"
5629
+ msgstr ""
5630
+
5631
+ #: admin.php:2872
5632
+ msgid "Opera web browser"
5633
+ msgstr ""
5634
+
5635
+ #: admin.php:2872
5636
+ msgid "If you are using this, then turn Turbo/Road mode off."
5637
+ msgstr ""
5638
+
5639
+ #: addons/google-enhanced.php:72 methods/googledrive.php:146
5640
+ #: methods/googledrive.php:358 methods/googledrive.php:381
5641
+ #: methods/googledrive.php:410 methods/googledrive.php:417
5642
+ #: methods/googledrive.php:427 methods/googledrive.php:433
5643
+ #: methods/googledrive.php:435 methods/googledrive.php:888
5644
+ #: methods/googledrive.php:900 methods/googledrive.php:916
5645
+ #: methods/googledrive.php:920 methods/googledrive.php:931
5646
+ #: methods/googledrive.php:941
5647
+ msgid "Google Drive"
5648
+ msgstr ""
5649
+
5650
+ #: admin.php:2863
5651
+ msgid "Web-server disk space in use by UpdraftPlus"
5652
+ msgstr ""
5653
+
5654
+ #: admin.php:2863
5655
+ msgid "refresh"
5656
+ msgstr ""
5657
+
5658
+ #: admin.php:2161
5659
+ msgid "Lead developer's homepage"
5660
+ msgstr ""
5661
+
5662
+ #: admin.php:2162
5663
+ msgid "Version"
5664
+ msgstr ""
5665
+
5666
+ #: admin.php:2339
5667
+ msgid "Your backup has been restored."
5668
+ msgstr ""
5669
+
5670
+ #: admin.php:2358
5671
+ msgid "Current limit is:"
5672
+ msgstr ""
5673
+
5674
+ #: admin.php:497 admin.php:3170
5675
+ msgid "Delete Old Directories"
5676
+ msgstr ""
5677
+
5678
+ #: admin.php:2416
5679
+ msgid "JavaScript warning"
5680
+ msgstr ""
5681
+
5682
+ #: admin.php:2417
5683
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5684
+ msgstr ""
5685
+
5686
+ #: admin.php:125 admin.php:146 admin.php:153
5687
+ msgid "Nothing currently scheduled"
5688
+ msgstr ""
5689
+
5690
+ #: admin.php:135
5691
+ msgid "At the same time as the files backup"
5692
+ msgstr ""
5693
+
5694
+ #: admin.php:2452
5695
+ msgid "Next scheduled backups"
5696
+ msgstr ""
5697
+
5698
+ #: admin.php:155
5699
+ msgid "Files"
5700
+ msgstr ""
5701
+
5702
+ #: addons/migrator.php:1738 addons/moredatabase.php:235
5703
+ #: addons/reporting.php:216 admin.php:159 admin.php:1277 admin.php:2995
5704
+ #: admin.php:2997 admin.php:4264 admin.php:4456 admin.php:4965
5705
+ msgid "Database"
5706
+ msgstr ""
5707
+
5708
+ #: admin.php:773
5709
+ msgid "Your website is hosted using the %s web server."
5710
+ msgstr ""
5711
+
5712
+ #: admin.php:773
5713
+ msgid "Please consult this FAQ if you have problems backing up."
5714
+ msgstr ""
5715
+
5716
+ #: admin.php:788 admin.php:792 admin.php:796 admin.php:800 admin.php:808
5717
+ #: admin.php:812
5718
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5719
+ msgstr ""
5720
+
5721
+ #: admin.php:560
5722
+ msgid "Nothing yet logged"
5723
+ msgstr ""
5724
+
5725
+ #: admin.php:1790
5726
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
5727
+ msgstr ""
5728
+
5729
+ #: admin.php:1706
5730
+ msgid "Job deleted"
5731
+ msgstr ""
5732
+
5733
+ #: admin.php:1714
5734
+ msgid "Could not find that job - perhaps it has already finished?"
5735
+ msgstr ""
5736
+
5737
+ #: admin.php:488 admin.php:1686 admin.php:4863 class-updraftplus.php:867
5738
+ #: methods/addon-base.php:75 methods/addon-base.php:80
5739
+ #: methods/addon-base.php:194 methods/addon-base.php:214
5740
+ #: methods/stream-base.php:196 restorer.php:2057 restorer.php:2082
5741
+ #: restorer.php:2163 updraftplus.php:147
5742
+ msgid "Error"
5743
+ msgstr ""
5744
+
5745
+ #: admin.php:1895
5746
+ msgid "Download failed"
5747
+ msgstr ""
5748
+
5749
+ #: admin.php:489 admin.php:1914
5750
+ msgid "File ready."
5751
+ msgstr ""
5752
+
5753
+ #: admin.php:1924
5754
+ msgid "Download in progress"
5755
+ msgstr ""
5756
+
5757
+ #: admin.php:1927
5758
+ msgid "No local copy present."
5759
+ msgstr ""
5760
+
5761
+ #: admin.php:2046
5762
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5763
+ msgstr ""
5764
+
5765
+ #: admin.php:2136
5766
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5767
+ msgstr ""
5768
+
5769
+ #: admin.php:2221
5770
+ msgid "Restore successful!"
5771
+ msgstr ""
5772
+
5773
+ #: admin.php:2231 admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5774
+ #: admin.php:4329
5775
+ msgid "Actions"
5776
+ msgstr ""
5777
+
5778
+ #: addons/migrator.php:275 addons/migrator.php:287 admin.php:2231
5779
+ #: admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5780
+ msgid "Return to UpdraftPlus Configuration"
5781
+ msgstr ""
5782
+
5783
+ #: admin.php:3406
5784
+ msgid "Remove old directories"
5785
+ msgstr ""
5786
+
5787
+ #: admin.php:3409
5788
+ msgid "Old directories successfully removed."
5789
+ msgstr ""
5790
+
5791
+ #: admin.php:3411
5792
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
5793
+ msgstr ""
5794
+
5795
+ #: admin.php:2282
5796
+ msgid "Backup directory could not be created"
5797
+ msgstr ""
5798
+
5799
+ #: admin.php:2289
5800
+ msgid "Backup directory successfully created."
5801
+ msgstr ""
5802
+
5803
+ #: admin.php:2312
5804
+ msgid "Your settings have been wiped."
5805
+ msgstr ""
5806
+
5807
+ #: class-updraftplus.php:3386
5808
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5809
+ msgstr ""
5810
+
5811
+ #: class-updraftplus.php:3393
5812
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
5813
+ msgstr ""
5814
+
5815
+ #: class-updraftplus.php:3403
5816
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5817
+ msgstr ""
5818
+
5819
+ #: backup.php:1942
5820
+ msgid "Infinite recursion: consult your log for more information"
5821
+ msgstr ""
5822
+
5823
+ #: backup.php:229
5824
+ msgid "Could not create %s zip. Consult the log file for more information."
5825
+ msgstr ""
5826
+
5827
+ #: admin.php:655
5828
+ msgid "Allowed Files"
5829
+ msgstr ""
5830
+
5831
+ #: admin.php:346 admin.php:697 admin.php:2394
5832
+ msgid "Settings"
5833
+ msgstr ""
5834
+
5835
+ #: admin.php:701
5836
+ msgid "Add-Ons / Pro Support"
5837
+ msgstr ""
5838
+
5839
+ #: admin.php:757 admin.php:761 admin.php:765 admin.php:769 admin.php:773
5840
+ #: admin.php:782 admin.php:2858 admin.php:4137 admin.php:4144 admin.php:4146
5841
+ #: methods/cloudfiles.php:448 methods/ftp.php:284
5842
+ #: methods/openstack-base.php:429 methods/s3.php:710 methods/s3.php:714
5843
+ #: methods/updraftvault.php:239 udaddons/updraftplus-addons.php:208
5844
+ msgid "Warning"
5845
+ msgstr ""
5846
+
5847
+ #: admin.php:765
5848
+ 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."
5849
+ msgstr ""
5850
+
5851
+ #: admin.php:769
5852
+ 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."
5853
+ msgstr ""
5854
+
5855
+ #: backup.php:920
5856
+ msgid "WordPress backup is complete"
5857
+ msgstr ""
5858
+
5859
+ #: admin.php:1964 backup.php:1116 restorer.php:168
5860
+ msgid "Backup directory (%s) is not writable, or does not exist."
5861
+ msgstr ""
5862
+
5863
+ #: class-updraftplus.php:2858
5864
+ msgid "Could not read the directory"
5865
+ msgstr ""
5866
+
5867
+ #: class-updraftplus.php:2881
5868
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
5869
+ msgstr ""
5870
+
5871
+ #: backup.php:1847
5872
+ msgid "Could not open the backup file for writing"
5873
+ msgstr ""
5874
+
5875
+ #: class-updraftplus.php:3185 class-updraftplus.php:3442 restorer.php:309
5876
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5877
+ msgstr ""
5878
+
5879
+ #: class-updraftplus.php:3196 class-updraftplus.php:3459 restorer.php:319
5880
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
5881
+ msgstr ""
5882
+
5883
+ #: class-updraftplus.php:3196
5884
+ msgid "The decryption key used:"
5885
+ msgstr ""
5886
+
5887
+ #: addons/azure.php:215 class-updraftplus.php:3278 methods/googledrive.php:823
5888
+ msgid "File not found"
5889
+ msgstr ""
5890
+
5891
+ #: class-updraftplus.php:3378
5892
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5893
+ msgstr ""
5894
+
5895
+ #: class-updraftplus.php:3386
5896
+ msgid "Like UpdraftPlus and can spare one minute?"
5897
+ msgstr ""
5898
+
5899
+ #: class-updraftplus.php:1280
5900
+ msgid "Themes"
5901
+ msgstr ""
5902
+
5903
+ #: addons/multisite.php:452 class-updraftplus.php:1281
5904
+ msgid "Uploads"
5905
+ msgstr ""
5906
+
5907
+ #: class-updraftplus.php:1296
5908
+ msgid "Others"
5909
+ msgstr ""
5910
+
5911
+ #: class-updraftplus.php:1897
5912
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5913
+ msgstr ""
5914
+
5915
+ #: addons/moredatabase.php:322
5916
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
5917
+ msgstr ""
5918
+
5919
+ #: class-updraftplus.php:2417
5920
+ msgid "The backup apparently succeeded and is now complete"
5921
+ msgstr ""
5922
+
5923
+ #: class-updraftplus.php:2432
5924
+ msgid "The backup attempt has finished, apparently unsuccessfully"
5925
+ msgstr ""
5926
+
5927
+ #: addons/multisite.php:66 addons/multisite.php:646 options.php:41
5928
+ msgid "UpdraftPlus Backups"
5929
+ msgstr ""
5930
+
5931
+ #: admin.php:788 admin.php:792 admin.php:796 admin.php:800 admin.php:804
5932
+ #: admin.php:808 admin.php:812 class-updraftplus.php:356
5933
+ #: class-updraftplus.php:391 class-updraftplus.php:396
5934
+ #: class-updraftplus.php:401
5935
+ msgid "UpdraftPlus notice:"
5936
+ msgstr ""
5937
+
5938
+ #: admin.php:1849 admin.php:1853 class-updraftplus.php:391
5939
+ msgid "The log file could not be read."
5940
+ msgstr ""
5941
+
5942
+ #: class-updraftplus.php:396
5943
+ msgid "No log files were found."
5944
+ msgstr ""
5945
+
5946
+ #: class-updraftplus.php:1279
5947
+ msgid "Plugins"
5948
+ msgstr ""
languages/updraftplus-cs_CZ.mo CHANGED
Binary file
languages/updraftplus-cs_CZ.po CHANGED
@@ -0,0 +1,5934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Czech
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-11-22 13:44:35+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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
+
13
+ #: methods/s3.php:87
14
+ msgid "No settings were found - please go to the Settings tab and check your settings"
15
+ msgstr ""
16
+
17
+ #: methods/s3.php:949
18
+ msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
19
+ msgstr ""
20
+
21
+ #: udaddons/updraftplus-addons.php:723
22
+ msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
23
+ msgstr ""
24
+
25
+ #: admin.php:597
26
+ msgid "UpdraftPlus Premium can automatically take a backup of your plugins or themes and database before you update. <a href=\"https://updraftplus.com/shop/autobackup/\" target=\"_blank\">Be safe every time, without needing to remember - follow this link to learn more</a>"
27
+ msgstr ""
28
+
29
+ #: admin.php:598
30
+ msgid "Just this add-on"
31
+ msgstr ""
32
+
33
+ #: admin.php:599
34
+ msgid "Full Premium plugin"
35
+ msgstr ""
36
+
37
+ #: admin.php:3793
38
+ msgid "Backup using %s?"
39
+ msgstr ""
40
+
41
+ #: addons/s3-enhanced.php:54
42
+ msgid "Standard (infrequent access)"
43
+ msgstr ""
44
+
45
+ #: addons/s3-enhanced.php:55
46
+ msgid "Reduced redundancy"
47
+ msgstr ""
48
+
49
+ #: addons/s3-enhanced.php:328
50
+ msgid "Asia Pacific (Mumbai)"
51
+ msgstr ""
52
+
53
+ #: admin.php:2174
54
+ msgid "FAQs"
55
+ msgstr ""
56
+
57
+ #: udaddons/plugin-updates/github-checker.php:120
58
+ msgid "There is no changelog available."
59
+ msgstr ""
60
+
61
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
62
+ msgid "Check for updates"
63
+ msgstr ""
64
+
65
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
66
+ msgid "This plugin is up to date."
67
+ msgstr ""
68
+
69
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
70
+ msgid "A new version of this plugin is available."
71
+ msgstr ""
72
+
73
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
74
+ msgid "Unknown update checker status \"%s\""
75
+ msgstr ""
76
+
77
+ #: backup.php:1986
78
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
79
+ msgstr ""
80
+
81
+ #: backup.php:2002
82
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
83
+ msgstr ""
84
+
85
+ #: central/bootstrap.php:414
86
+ msgid "Public key was sent to:"
87
+ msgstr ""
88
+
89
+ #: central/bootstrap.php:419
90
+ msgid "Key size: %d bits"
91
+ msgstr ""
92
+
93
+ #: central/bootstrap.php:434
94
+ msgid "Dashboard at"
95
+ msgstr ""
96
+
97
+ #: central/bootstrap.php:434
98
+ msgid "Use the alternative method for making a connection with the dashboard."
99
+ msgstr ""
100
+
101
+ #: central/bootstrap.php:434
102
+ msgid "More information..."
103
+ msgstr ""
104
+
105
+ #: central/bootstrap.php:434
106
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
107
+ msgstr ""
108
+
109
+ #: addons/migrator.php:2197
110
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
111
+ msgstr ""
112
+
113
+ #: addons/migrator.php:2198
114
+ msgid "Enter your chosen name"
115
+ msgstr ""
116
+
117
+ #: addons/migrator.php:2200 central/bootstrap.php:436
118
+ msgid "Encryption key size:"
119
+ msgstr ""
120
+
121
+ #: addons/migrator.php:2202 addons/migrator.php:2203 addons/migrator.php:2205
122
+ #: central/bootstrap.php:437 central/bootstrap.php:438
123
+ #: central/bootstrap.php:440
124
+ msgid "%s bits"
125
+ msgstr ""
126
+
127
+ #: addons/migrator.php:2202 central/bootstrap.php:437
128
+ msgid "easy to break, fastest"
129
+ msgstr ""
130
+
131
+ #: addons/migrator.php:2203 central/bootstrap.php:438
132
+ msgid "faster (possibility for slow PHP installs)"
133
+ msgstr ""
134
+
135
+ #: addons/migrator.php:2204 central/bootstrap.php:439
136
+ msgid "%s bytes"
137
+ msgstr ""
138
+
139
+ #: addons/migrator.php:2204 central/bootstrap.php:439
140
+ msgid "recommended"
141
+ msgstr ""
142
+
143
+ #: addons/migrator.php:2205 central/bootstrap.php:440
144
+ msgid "slower, strongest"
145
+ msgstr ""
146
+
147
+ #: addons/migrator.php:2208
148
+ msgid "Create key"
149
+ msgstr ""
150
+
151
+ #: central/bootstrap.php:434
152
+ msgid "i.e. you have an account there"
153
+ msgstr ""
154
+
155
+ #: central/bootstrap.php:434
156
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
157
+ msgstr ""
158
+
159
+ #: class-updraftplus.php:1253
160
+ msgid "Size: %s MB"
161
+ msgstr ""
162
+
163
+ #: methods/email.php:28
164
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
165
+ msgstr ""
166
+
167
+ #: methods/email.php:77
168
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
169
+ msgstr ""
170
+
171
+ #: methods/ftp.php:355
172
+ msgid "login"
173
+ msgstr ""
174
+
175
+ #: methods/ftp.php:383
176
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
177
+ msgstr ""
178
+
179
+ #: methods/googledrive.php:417
180
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
181
+ msgstr ""
182
+
183
+ #: admin.php:2465
184
+ msgid "Now"
185
+ msgstr ""
186
+
187
+ #: admin.php:2616
188
+ msgid "Free 1GB for UpdraftPlus Vault"
189
+ msgstr ""
190
+
191
+ #: admin.php:3973
192
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s 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)."
193
+ msgstr ""
194
+
195
+ #: class-updraftplus.php:3628 restorer.php:926
196
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
197
+ msgstr ""
198
+
199
+ #: admin.php:3782
200
+ msgid "(tap on an icon to select or unselect)"
201
+ msgstr ""
202
+
203
+ #: backup.php:834 class-updraftplus.php:2468
204
+ msgid "The backup was aborted by the user"
205
+ msgstr ""
206
+
207
+ #: central/bootstrap.php:45
208
+ msgid "UpdraftCentral Connection"
209
+ msgstr ""
210
+
211
+ #: central/bootstrap.php:48
212
+ msgid "An UpdraftCentral connection has been made successfully."
213
+ msgstr ""
214
+
215
+ #: central/bootstrap.php:50
216
+ msgid "A new UpdraftCentral connection has not been made."
217
+ msgstr ""
218
+
219
+ #: central/bootstrap.php:53
220
+ msgid "The key referred to was unknown."
221
+ msgstr ""
222
+
223
+ #: central/bootstrap.php:59
224
+ msgid "You are not logged into this WordPress site in your web browser."
225
+ msgstr ""
226
+
227
+ #: central/bootstrap.php:59
228
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
229
+ msgstr ""
230
+
231
+ #: central/bootstrap.php:66
232
+ msgid "You must visit this link in the same browser and login session as you created the key in."
233
+ msgstr ""
234
+
235
+ #: central/bootstrap.php:70
236
+ msgid "This connection appears to already have been made."
237
+ msgstr ""
238
+
239
+ #: central/bootstrap.php:78
240
+ msgid "Close..."
241
+ msgstr ""
242
+
243
+ #: central/bootstrap.php:191
244
+ msgid "An invalid URL was entered"
245
+ msgstr ""
246
+
247
+ #: central/bootstrap.php:308 central/bootstrap.php:319
248
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
249
+ msgstr ""
250
+
251
+ #: central/bootstrap.php:376
252
+ msgid "Key description"
253
+ msgstr ""
254
+
255
+ #: central/bootstrap.php:376
256
+ msgid "Details"
257
+ msgstr ""
258
+
259
+ #: central/bootstrap.php:382
260
+ msgid "No keys have yet been created."
261
+ msgstr ""
262
+
263
+ #: central/bootstrap.php:414
264
+ msgid "Access this site as user:"
265
+ msgstr ""
266
+
267
+ #: central/bootstrap.php:417
268
+ msgid "Created:"
269
+ msgstr ""
270
+
271
+ #: central/bootstrap.php:424
272
+ msgid "Delete..."
273
+ msgstr ""
274
+
275
+ #: central/bootstrap.php:430
276
+ msgid "Create new key"
277
+ msgstr ""
278
+
279
+ #: central/bootstrap.php:432
280
+ msgid "Description"
281
+ msgstr ""
282
+
283
+ #: central/bootstrap.php:432
284
+ msgid "Enter any description"
285
+ msgstr ""
286
+
287
+ #: central/bootstrap.php:434
288
+ msgid "URL of mothership"
289
+ msgstr ""
290
+
291
+ #: central/bootstrap.php:447
292
+ msgid "View recent UpdraftCentral log events"
293
+ msgstr ""
294
+
295
+ #: central/bootstrap.php:447
296
+ msgid "fetch..."
297
+ msgstr ""
298
+
299
+ #: central/bootstrap.php:458
300
+ msgid "UpdraftCentral (Remote Control)"
301
+ msgstr ""
302
+
303
+ #: class-updraftplus.php:361 class-updraftplus.php:406
304
+ msgid "The given file was not found, or could not be read."
305
+ msgstr ""
306
+
307
+ #: methods/updraftvault.php:219
308
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
309
+ msgstr ""
310
+
311
+ #: methods/updraftvault.php:274 methods/updraftvault.php:280
312
+ #: methods/updraftvault.php:286
313
+ msgid "or (annual discount)"
314
+ msgstr ""
315
+
316
+ #: methods/updraftvault.php:275 methods/updraftvault.php:281
317
+ #: methods/updraftvault.php:287
318
+ msgid "%s per year"
319
+ msgstr ""
320
+
321
+ #: addons/copycom.php:43 addons/copycom.php:81
322
+ msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
323
+ msgstr ""
324
+
325
+ #: addons/s3-enhanced.php:325
326
+ msgid "Asia Pacific (Seoul)"
327
+ msgstr ""
328
+
329
+ #: admin.php:477
330
+ msgid "Fetching..."
331
+ msgstr ""
332
+
333
+ #: admin.php:485
334
+ msgid "Error: the server sent us a response which we did not understand."
335
+ msgstr ""
336
+
337
+ #: admin.php:521
338
+ msgid "Saving..."
339
+ msgstr ""
340
+
341
+ #: admin.php:538
342
+ msgid "Please enter a valid URL"
343
+ msgstr ""
344
+
345
+ #: admin.php:539
346
+ msgid "We requested to delete the file, but could not understand the server's response"
347
+ msgstr ""
348
+
349
+ #: admin.php:545
350
+ msgid "You should save your changes to ensure that they are used for making your backup."
351
+ msgstr ""
352
+
353
+ #: admin.php:2611
354
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
355
+ msgstr ""
356
+
357
+ #: admin.php:2875
358
+ msgid "calculate"
359
+ msgstr ""
360
+
361
+ #: admin.php:2946
362
+ msgid "this backup set"
363
+ msgstr ""
364
+
365
+ #: admin.php:2949
366
+ msgid "these backup sets"
367
+ msgstr ""
368
+
369
+ #: admin.php:3115
370
+ msgid "reset"
371
+ msgstr ""
372
+
373
+ #: admin.php:3161 admin.php:3165
374
+ msgid "Wipe settings"
375
+ msgstr ""
376
+
377
+ #: admin.php:3232
378
+ msgid "The backup has finished running"
379
+ msgstr ""
380
+
381
+ #: admin.php:3394
382
+ msgid "stop"
383
+ msgstr ""
384
+
385
+ #: admin.php:4308
386
+ msgid "Total backup size:"
387
+ msgstr ""
388
+
389
+ #: admin.php:5226
390
+ msgid "Your settings have been saved."
391
+ msgstr ""
392
+
393
+ #: addons/onedrive.php:50
394
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
395
+ msgstr ""
396
+
397
+ #: backup.php:385
398
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
399
+ msgstr ""
400
+
401
+ #: restorer.php:1538
402
+ msgid "Uploads URL:"
403
+ msgstr ""
404
+
405
+ #: addons/multisite.php:374 addons/multisite.php:384
406
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
407
+ msgstr ""
408
+
409
+ #: addons/multisite.php:525
410
+ msgid "Which site to restore"
411
+ msgstr ""
412
+
413
+ #: addons/multisite.php:529
414
+ msgid "All sites"
415
+ msgstr ""
416
+
417
+ #: addons/multisite.php:534
418
+ msgid "may include some site-wide data"
419
+ msgstr ""
420
+
421
+ #: addons/multisite.php:543
422
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
423
+ msgstr ""
424
+
425
+ #: addons/multisite.php:543
426
+ msgid "Read more..."
427
+ msgstr ""
428
+
429
+ #: admin.php:556
430
+ msgid "Please fill in the required information."
431
+ msgstr ""
432
+
433
+ #: admin.php:2739
434
+ msgid "Dismiss"
435
+ msgstr ""
436
+
437
+ #: class-updraftplus.php:3675
438
+ msgid "It will be imported as a new site."
439
+ msgstr ""
440
+
441
+ #: class-updraftplus.php:3675
442
+ msgid "Please read this link for important information on this process."
443
+ msgstr ""
444
+
445
+ #: class-updraftplus.php:3679 restorer.php:1558
446
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
447
+ msgstr ""
448
+
449
+ #: restorer.php:1899
450
+ msgid "Skipping table %s: this table will not be restored"
451
+ msgstr ""
452
+
453
+ #: addons/migrator.php:350 addons/migrator.php:353 addons/migrator.php:356
454
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
455
+ msgstr ""
456
+
457
+ #: addons/migrator.php:350
458
+ msgid "WordPress core"
459
+ msgstr ""
460
+
461
+ #: addons/migrator.php:353
462
+ msgid "other content from wp-content"
463
+ msgstr ""
464
+
465
+ #: addons/migrator.php:362 addons/migrator.php:364
466
+ msgid "Importing a single site into a multisite install"
467
+ msgstr ""
468
+
469
+ #: addons/migrator.php:364
470
+ msgid "This feature is not compatible with %s"
471
+ msgstr ""
472
+
473
+ #: addons/migrator.php:384 addons/migrator.php:386
474
+ msgid "You must use lower-case letters or numbers for the site path, only."
475
+ msgstr ""
476
+
477
+ #: addons/migrator.php:394
478
+ msgid "Attribute imported content to user"
479
+ msgstr ""
480
+
481
+ #: addons/migrator.php:435
482
+ msgid "Required information for restoring this backup was not given (%s)"
483
+ msgstr ""
484
+
485
+ #: addons/migrator.php:492 addons/migrator.php:493
486
+ msgid "Error when creating new site at your chosen address:"
487
+ msgstr ""
488
+
489
+ #: addons/migrator.php:518
490
+ msgid "<strong>ERROR</strong>: problem creating site entry."
491
+ msgstr ""
492
+
493
+ #: admin.php:3113
494
+ msgid "Call WordPress action:"
495
+ msgstr ""
496
+
497
+ #: admin.php:2763
498
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
499
+ msgstr ""
500
+
501
+ #: admin.php:354 admin.php:2407
502
+ msgid "Advanced Tools"
503
+ msgstr "Pokročilé nástroje"
504
+
505
+ #: admin.php:362
506
+ msgid "Extensions"
507
+ msgstr "Rozšíření"
508
+
509
+ #: admin.php:471
510
+ msgid "You have chosen to backup files, but no file entities have been selected"
511
+ msgstr "Vybrali jste zálohování souborů, ale nevybrali jste žádné souborové entity"
512
+
513
+ #: admin.php:544
514
+ msgctxt "(verb)"
515
+ msgid "Download"
516
+ msgstr "Stahuji"
517
+
518
+ #: admin.php:2204 admin.php:2213
519
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
520
+ msgstr "O právě běžící obnově nebyly nalezeny dostatečné informace."
521
+
522
+ #: admin.php:2408
523
+ msgid "Premium / Extensions"
524
+ msgstr "Premium / Rozšíření"
525
+
526
+ #: admin.php:2533
527
+ msgid "Backup Contents And Schedule"
528
+ msgstr "Obsah zálohy a plány"
529
+
530
+ #: admin.php:2730
531
+ msgid "%s minutes, %s seconds"
532
+ msgstr "%s minut, %s sekund"
533
+
534
+ #: admin.php:2732
535
+ msgid "Unfinished restoration"
536
+ msgstr "Nedokončená obnova"
537
+
538
+ #: admin.php:2733
539
+ msgid "You have an unfinished restoration operation, begun %s ago."
540
+ msgstr "Máte nedokončenou obnovu, která začala před %s."
541
+
542
+ #: admin.php:2738
543
+ msgid "Continue restoration"
544
+ msgstr "Pokračovat v obnově"
545
+
546
+ #: admin.php:2759
547
+ msgid "Include the database in the backup"
548
+ msgstr "Zahrnout do zálohy databázi"
549
+
550
+ #: admin.php:2761
551
+ msgid "Include any files in the backup"
552
+ msgstr "Zahrnout do zálohy některé soubory"
553
+
554
+ #: admin.php:5125
555
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
556
+ msgstr "Záloha nebude poslána na žádné vzdálené úložiště - žádné nebylo uloženo v %s"
557
+
558
+ #: admin.php:5125
559
+ msgid "settings"
560
+ msgstr "nastavení"
561
+
562
+ #: admin.php:5125
563
+ msgid "Not got any remote storage?"
564
+ msgstr "Nemáte žádné vzdálené úložiště?"
565
+
566
+ #: admin.php:5125
567
+ msgid "Check out UpdraftPlus Vault."
568
+ msgstr "Vyzkoušejte UpdraftPlus Trezor."
569
+
570
+ #: admin.php:5127
571
+ msgid "Send this backup to remote storage"
572
+ msgstr "Odeslat tuto zálohu na vzdálené úložiště"
573
+
574
+ #: admin.php:3162
575
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
576
+ msgstr "Toto tlačítko smaže veškeré UpdraftPlus nastavení a zprávy o průběhu právě běžící zálohy (ale ne žádné existující zálohy v cloudu)."
577
+
578
+ #: admin.php:3162
579
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
580
+ msgstr "Budete poté muset zadat veškeré nastavení znovu. Pokud chcete, můžete tuto operaci provést i před deaktivací/odinstalováním UpdraftPlus."
581
+
582
+ #: admin.php:3694
583
+ msgid "Files backup schedule"
584
+ msgstr "Plán zálohy souborů"
585
+
586
+ #: admin.php:3727
587
+ msgid "Incremental file backup schedule"
588
+ msgstr "Plán přírůstkové zálohy souborů"
589
+
590
+ #: admin.php:3737
591
+ msgid "Database backup schedule"
592
+ msgstr "Plán zálohy databáze"
593
+
594
+ #: admin.php:3772
595
+ msgid "Sending Your Backup To Remote Storage"
596
+ msgstr "Odeslání zálohy na vzdálené úložiště"
597
+
598
+ #: admin.php:3833
599
+ msgid "File Options"
600
+ msgstr "Možnosti souboru"
601
+
602
+ #: admin.php:4863
603
+ msgid "Skipping: this archive was already restored."
604
+ msgstr "Přeskakuji: tento archiv již byl obnoven."
605
+
606
+ #: addons/googlecloud.php:860
607
+ msgid "You must use a bucket name that is unique, for all %s users."
608
+ msgstr "Musíte požít bucket jméno, které je unikátní pro všechny uživatele %s."
609
+
610
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
611
+ msgid "This setting applies only when a new bucket is being created."
612
+ msgstr "toto nastavení se aplikuje pouze v případě, že je vytvářen nový bucket."
613
+
614
+ #: addons/googlecloud.php:875
615
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
616
+ msgstr "Mějte na paměti, že Google nepodporuje všechny třídy úložiště ve všech oblastech - o aktuální dostupnosti byste si měli přečíst v jejich dokumentaci."
617
+
618
+ #: addons/googlecloud.php:880
619
+ msgid "Bucket location"
620
+ msgstr "Bucket umístění"
621
+
622
+ #: addons/googlecloud.php:45
623
+ msgid " Eastern United States"
624
+ msgstr "Východní Spojené Státy"
625
+
626
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
627
+ msgid "Eastern United States"
628
+ msgstr "Východní Spojené Státy"
629
+
630
+ #: addons/googlecloud.php:49
631
+ msgid "Western United States"
632
+ msgstr "Západní Spojené Státy"
633
+
634
+ #: addons/googlecloud.php:50
635
+ msgid "Eastern Asia-Pacific"
636
+ msgstr "Východní Asie-Pacifik"
637
+
638
+ #: addons/googlecloud.php:51
639
+ msgid "Western Europe"
640
+ msgstr "Západní Evropa"
641
+
642
+ #: addons/googlecloud.php:268
643
+ msgid "You do not have access to this bucket"
644
+ msgstr "K tomuto bucketu nemáte přístup"
645
+
646
+ #: addons/googlecloud.php:816
647
+ msgid "Do not confuse %s with %s - they are separate things."
648
+ msgstr "Nezaměňujte %s a %s - jde o různé věci."
649
+
650
+ #: addons/azure.php:516
651
+ msgid "If the %s does not already exist, then it will be created."
652
+ msgstr "Pokud %s ještě neexistuje, bude vytvořen."
653
+
654
+ #: addons/azure.php:516
655
+ msgid "See Microsoft's guidelines on container naming by following this link."
656
+ msgstr "Na této adrese se podívejte na návod pojmenovávání kontejnerů od Microsoftu."
657
+
658
+ #: addons/azure.php:521
659
+ msgid "Prefix"
660
+ msgstr "Předpona"
661
+
662
+ #: addons/azure.php:521
663
+ msgid "optional"
664
+ msgstr "volitelné"
665
+
666
+ #: addons/azure.php:522
667
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
668
+ msgstr "Můžete zde použít adresu k jakékoliv %s virtuální složce, kterou chcete použít."
669
+
670
+ #: addons/azure.php:522
671
+ msgid "container"
672
+ msgstr "kontejner"
673
+
674
+ #: addons/googlecloud.php:35 addons/s3-enhanced.php:53
675
+ msgid "Standard"
676
+ msgstr "Standard"
677
+
678
+ #: addons/googlecloud.php:36
679
+ msgid "Durable reduced availability"
680
+ msgstr "Durable Reduced Availability (DRA)"
681
+
682
+ #: addons/googlecloud.php:37
683
+ msgid "Nearline"
684
+ msgstr "Nearline"
685
+
686
+ #: addons/googlecloud.php:41
687
+ msgid "United States"
688
+ msgstr "Spojené Státy"
689
+
690
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
691
+ #: addons/googlecloud.php:43
692
+ msgid "multi-region location"
693
+ msgstr "více-regionové umístění"
694
+
695
+ #: addons/googlecloud.php:42
696
+ msgid "Asia Pacific"
697
+ msgstr "Asie Pacifik"
698
+
699
+ #: addons/googlecloud.php:43
700
+ msgid "European Union"
701
+ msgstr "Evropské unie"
702
+
703
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
704
+ msgid "Central United States"
705
+ msgstr "Střední Spojené Státy"
706
+
707
+ #: addons/azure.php:342
708
+ msgid "Could not access container"
709
+ msgstr "Nelze získat přístup ke kontejneru"
710
+
711
+ #: addons/azure.php:448
712
+ msgid "Could not create the container"
713
+ msgstr "Nelze vytvořit kontejner"
714
+
715
+ #: addons/azure.php:500
716
+ msgid "Create Azure credentials in your Azure developer console."
717
+ msgstr "Ve vývojářské konzoli Azure si vytvořte Azure přístupové údaje."
718
+
719
+ #: addons/azure.php:504 addons/azure.php:508
720
+ msgid "Azure"
721
+ msgstr "Azure"
722
+
723
+ #: addons/azure.php:504
724
+ msgid "Account Name"
725
+ msgstr "Jméno účtu"
726
+
727
+ #: addons/azure.php:505
728
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
729
+ msgstr "Toto není vaše Azure přihlašovací jméno - pokud potřebujete poradit, podívejte se do návodu."
730
+
731
+ #: addons/azure.php:516
732
+ msgid "Enter the path of the %s you wish to use here."
733
+ msgstr "Vložte sem cestu k %s, co chcete použít."
734
+
735
+ #: class-updraftplus.php:2485
736
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
737
+ msgstr "Pro dokončení migrace/klonu, se teď přihlašte ke vzdálené stránce a obnovte zálohu."
738
+
739
+ #: addons/googlecloud.php:854
740
+ msgid "Project ID"
741
+ msgstr "ID projektu"
742
+
743
+ #: addons/googlecloud.php:743
744
+ msgid "You must enter a project ID in order to be able to create a new bucket."
745
+ msgstr "Abyste mohli vytvořit nový bucket, musíte zadat ID projektu."
746
+
747
+ #: addons/googlecloud.php:828
748
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
749
+ msgstr "Následující adresa vás přesměruje na Google API konzoli, kde aktivujte Storage API a v přístupu k API vytvořte klientské ID."
750
+
751
+ #: addons/googlecloud.php:855
752
+ msgid "Enter the ID of the %s project you wish to use here."
753
+ msgstr "Vložte sem ID %s projektu, který chcete použít."
754
+
755
+ #: addons/googlecloud.php:855
756
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
757
+ msgstr "Poznámka: Tot je potřeba pouze v případě, že ještě nemáte vytvořený bucket a chcete, aby ho pro vás vytvořil UpdraftPlus."
758
+
759
+ #: addons/googlecloud.php:855
760
+ msgid "Otherwise, you can leave it blank."
761
+ msgstr "Jinak to můžete nechat prázdné."
762
+
763
+ #: addons/googlecloud.php:859
764
+ msgid "Bucket"
765
+ msgstr "Bucket"
766
+
767
+ #: addons/googlecloud.php:860
768
+ msgid "Enter the name of the %s bucket you wish to use here."
769
+ msgstr "Vložte jméno pro %s bucket, který chcete použít."
770
+
771
+ #: addons/googlecloud.php:860
772
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
773
+ msgstr "Jméno bucketu musí být globálně unikátní, pokud takový název ještě neexistuje, bude vytvořen."
774
+
775
+ #: addons/googlecloud.php:860
776
+ msgid "See Google's guidelines on bucket naming by following this link."
777
+ msgstr "Podívejte se na doporučení pro pojmenovávání bucketů od Google."
778
+
779
+ #: addons/googlecloud.php:865 addons/s3-enhanced.php:46
780
+ msgid "Storage class"
781
+ msgstr "Třída úložiště"
782
+
783
+ #: admin.php:3088
784
+ msgid "Not installed"
785
+ msgstr "Nenainstalováno"
786
+
787
+ #: admin.php:3088
788
+ msgid "required for some remote storage providers"
789
+ msgstr "vyžadováno některými poskytovateli vzdálených úložišť"
790
+
791
+ #: backup.php:1412
792
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
793
+ msgstr "Do složky pro zápis se nedá zapisovat (nebo je plná) - záloha databáze se zřejmě nepovede."
794
+
795
+ #: backup.php:1516 backup.php:1518
796
+ msgid "The database backup appears to have failed"
797
+ msgstr "Zdá se, že se záloha databáze nepovedla"
798
+
799
+ #: backup.php:1516
800
+ msgid "no options or sitemeta table was found"
801
+ msgstr "žádné možnosti, ani sitemeta tabulka, nebyly nalezeny"
802
+
803
+ #: backup.php:1518
804
+ msgid "the options table was not found"
805
+ msgstr "tabulka možností nebyla nalezena"
806
+
807
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
808
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
809
+ #: addons/googlecloud.php:782
810
+ msgid "%s Service Exception."
811
+ msgstr "%s výjimka služby."
812
+
813
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
814
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
815
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
816
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
817
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
818
+ #: addons/googlecloud.php:860
819
+ msgid "Google Cloud"
820
+ msgstr "Google Cloud"
821
+
822
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
823
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
824
+ msgid "You do not have access to this bucket."
825
+ msgstr "Do tohoto bucketu nemáte přístup."
826
+
827
+ #: addons/googlecloud.php:479
828
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
829
+ msgstr "Zatím jste neobdržel přístupový klíč od Googlu - musíte (znovu) autorizovat své spojení s Google Cloud."
830
+
831
+ #: addons/googlecloud.php:609
832
+ msgid "You must save and authenticate before you can test your settings."
833
+ msgstr "Před testem nastavení musíte vše uložit a autentizovat spojení."
834
+
835
+ #: admin.php:548
836
+ msgid "day"
837
+ msgstr "den"
838
+
839
+ #: admin.php:549
840
+ msgid "in the month"
841
+ msgstr "v měsíci"
842
+
843
+ #: admin.php:550
844
+ msgid "day(s)"
845
+ msgstr "den(dny)"
846
+
847
+ #: admin.php:551
848
+ msgid "hour(s)"
849
+ msgstr "hodina(y)"
850
+
851
+ #: admin.php:552
852
+ msgid "week(s)"
853
+ msgstr "týden(týdny)"
854
+
855
+ #: admin.php:553
856
+ msgid "For backups older than"
857
+ msgstr "Pro zálohy starší, než"
858
+
859
+ #: admin.php:555
860
+ msgid "Processing..."
861
+ msgstr "Zpracovávám..."
862
+
863
+ #: admin.php:1626
864
+ msgid "Backup sets removed: %d"
865
+ msgstr "Zálohy vymazány: %d"
866
+
867
+ #: admin.php:2881
868
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
869
+ msgstr "Pro zobrazení metod vzdálených úložišť pro jakoukoliv existující zálohu (z jakékoliv stránky, pokud jsou ve stejné složce) klikněte sem."
870
+
871
+ #: admin.php:2932
872
+ msgid "Actions upon selected backups"
873
+ msgstr "Akce s vybranými zálohami"
874
+
875
+ #: admin.php:2934
876
+ msgid "Select all"
877
+ msgstr "Vybrat vše"
878
+
879
+ #: admin.php:2935
880
+ msgid "Deselect"
881
+ msgstr "Zrušit výběr"
882
+
883
+ #: admin.php:2946 admin.php:2949
884
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
885
+ msgstr "Jste si jisti, že chcete z UpdraftPlus smazat %s?"
886
+
887
+ #: admin.php:3766
888
+ msgid "or to configure more complex schedules"
889
+ msgstr "nebo nastavit komplexnější plány"
890
+
891
+ #: restorer.php:707
892
+ msgid "Deferring..."
893
+ msgstr "Odkládám..."
894
+
895
+ #: updraftplus.php:147
896
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
897
+ msgstr "UpdraftPlus nemáte zcela nainstalovaný - odinstalujte ho a poté ho znovu nainstalujte. Došlo pravděpodobně k chybě WordPressu při kopírování souborů pluginu."
898
+
899
+ #: addons/morestorage.php:26
900
+ msgid "(as many as you like)"
901
+ msgstr "(tolik, kolik chcete)"
902
+
903
+ #: addons/fixtime.php:281 addons/fixtime.php:286
904
+ msgid "Add an additional retention rule..."
905
+ msgstr "Přidejte pravidlo zachování..."
906
+
907
+ #: methods/updraftvault.php:580
908
+ msgid "You do not currently have any UpdraftPlus Vault quota"
909
+ msgstr "V současnosti nemáte žádnou kvótu pro UpdraftPlus Trezor"
910
+
911
+ #: restorer.php:1985
912
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
913
+ msgstr "Tento problém je způsoben pokusem o obnovu databáze s velmi starou verzí MySQL, která je nekompatibilní se zdrojovou databází."
914
+
915
+ #: restorer.php:1985
916
+ msgid "This database needs to be deployed on MySQL version %s or later."
917
+ msgstr "Tato databáze musí být použita s MySQL verze %s, nebo novější."
918
+
919
+ #: admin.php:2336
920
+ msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
921
+ msgstr "Složka UpdraftPlus v umístění wp-content/plugins obsahuje netisknutelný znak; WordPress má s takovými názvy občas problém. Pro jistotu byste měli přejmenovat složku na wp-content/plugins/updraftplus."
922
+
923
+ #: admin.php:2661
924
+ msgid "No advertising links on UpdraftPlus settings page"
925
+ msgstr "Bez reklam na stránce s nastavením UpdraftPlus"
926
+
927
+ #: class-updraftplus.php:3712
928
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
929
+ msgstr "Záloha databáze používá MySQL funkce, které nejsou dostupné ve staré MySQL verzi (%s), kterou používají tyto stránky."
930
+
931
+ #: class-updraftplus.php:3712
932
+ msgid "You must upgrade MySQL to be able to use this database."
933
+ msgstr "K použití této zálohy databáze musíte aktualizovat svou verzi MySQL."
934
+
935
+ #: methods/updraftvault.php:308
936
+ msgid "Don't know your email address, or forgotten your password?"
937
+ msgstr "Nevíte svůj email, nebo jste zapomněli heslo?"
938
+
939
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
940
+ msgid "Read the FAQs here."
941
+ msgstr "Zde si můžete přečíst FAQ."
942
+
943
+ #: methods/updraftvault.php:301
944
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
945
+ msgstr "Pro spojení sem vložte svůj UpdraftPlus.Com email / heslo:"
946
+
947
+ #: addons/s3-enhanced.php:60
948
+ msgid "Server-side encryption"
949
+ msgstr "Šifrování na straně serveru"
950
+
951
+ #: addons/s3-enhanced.php:61
952
+ msgid "Check this box to use Amazon's server-side encryption"
953
+ msgstr "Zaškrtněte tuto možnost pro šifrování na straně Amazon serveru"
954
+
955
+ #: methods/updraftvault.php:589
956
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
957
+ msgstr "Pokud jste zapomněli heslo, pak pro změnu hesla na updraftplus.com jděte sem."
958
+
959
+ #: admin.php:816
960
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
961
+ msgstr "Pro vzdálené úložiště byl vybrán %s, ale v současnosti nejste připojeni."
962
+
963
+ #: admin.php:816
964
+ msgid "Go to the remote storage settings in order to connect."
965
+ msgstr "Pro připojení jděte do nastavení vzdáleného úložiště."
966
+
967
+ #: methods/updraftvault.php:290
968
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
969
+ msgstr "Platba může být provedena v amerických dolarech, eurech, nebo britských librách pomocí karty, nebo přes PayPal."
970
+
971
+ #: admin.php:523
972
+ msgid "Connecting..."
973
+ msgstr "Připojuji..."
974
+
975
+ #: admin.php:525
976
+ msgid "Disconnecting..."
977
+ msgstr "Odpojuji..."
978
+
979
+ #: admin.php:526
980
+ msgid "Counting..."
981
+ msgstr "Počítám..."
982
+
983
+ #: admin.php:527
984
+ msgid "Update quota count"
985
+ msgstr "Aktualizovat kvótu."
986
+
987
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
988
+ msgid "Updraft Vault"
989
+ msgstr "Updraft Trezor"
990
+
991
+ #: methods/updraftvault.php:209
992
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
993
+ msgstr "Vaše licence UpdraftPlus Premium je již více, než rok stará. Měli byste si ji okamžitě obnovit, jinak ztratíte 12 měsíců úložiště zdarma, které jste získali díky tomu, že jste se stali uživateli UpdraftPlus Premium."
994
+
995
+ #: methods/updraftvault.php:212
996
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
997
+ msgstr "Vaše platba za předplatné UpdraftPlus Trezor má zpoždění. Nacházíte se v několikadenním období, po kterém bude Váš přístup ke službě zrušen a ztratíte veškerá uložená data v ní. Obnovte si prosím předplatné co nejdříve!"
998
+
999
+ #: methods/updraftvault.php:215
1000
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
1001
+ msgstr "Vaše předplatné pro UpdraftPlus Trezor vypršelo. Během několika dní budou vaše data trvale odstraněna. Pokud nechcete, aby se to stalo, měli byste si předplatné obnovit co nejdříve."
1002
+
1003
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1004
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1005
+ msgstr "UpdraftPlus Trezor přináší úložiště, které je <strong>spolehlivé, snadno použitelné a za skvělou cenu</strong>."
1006
+
1007
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1008
+ msgid "Press a button to get started."
1009
+ msgstr "Začnete kliknutím na tlačítko."
1010
+
1011
+ #: methods/updraftvault.php:255
1012
+ msgid "First time user?"
1013
+ msgstr "Jste tu poprvé?"
1014
+
1015
+ #: methods/updraftvault.php:256
1016
+ msgid "Show the options"
1017
+ msgstr "Zobrazit možnosti"
1018
+
1019
+ #: methods/updraftvault.php:259
1020
+ msgid "Already purchased space?"
1021
+ msgstr "Máte již zakoupené místo?"
1022
+
1023
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1024
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1025
+ msgstr "UpdraftPlus Trezor je postaven na světově nejlepších datacentrech od Amazonu se zálohovanými úložišti tak, aby bylo dosaženo 99.999999999% spolehlivosti."
1026
+
1027
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1028
+ msgid "Read more about it here."
1029
+ msgstr "Více informací najdete zde."
1030
+
1031
+ #: methods/updraftvault.php:273 methods/updraftvault.php:279
1032
+ #: methods/updraftvault.php:285
1033
+ msgid "%s per quarter"
1034
+ msgstr "%s za čtvrtletí"
1035
+
1036
+ #: methods/updraftvault.php:290
1037
+ msgid "Subscriptions can be cancelled at any time."
1038
+ msgstr "Předplatné může být kdykoliv zrušeno."
1039
+
1040
+ #: methods/updraftvault.php:296 methods/updraftvault.php:311
1041
+ msgid "Back..."
1042
+ msgstr "Zpět..."
1043
+
1044
+ #: methods/updraftvault.php:303
1045
+ msgid "E-mail"
1046
+ msgstr "E-mail"
1047
+
1048
+ #: methods/updraftvault.php:308
1049
+ msgid "Go here for help"
1050
+ msgstr "Jděte sem pro pomoc"
1051
+
1052
+ #: methods/updraftvault.php:332
1053
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1054
+ msgstr "<strong>Nejste</strong> připojeni k UpdraftPlus Trezoru."
1055
+
1056
+ #: methods/updraftvault.php:336
1057
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1058
+ msgstr "Tato stránka je <strong>připojena</strong> k UpdraftPlus Trezoru."
1059
+
1060
+ #: methods/updraftvault.php:336
1061
+ msgid "Well done - there's nothing more needed to set up."
1062
+ msgstr "Gratulujeme - nic dalšího není třeba nastavit."
1063
+
1064
+ #: methods/updraftvault.php:336
1065
+ msgid "Vault owner"
1066
+ msgstr "Majitel Trezoru"
1067
+
1068
+ #: methods/updraftvault.php:338
1069
+ msgid "Quota:"
1070
+ msgstr "Kvóta:"
1071
+
1072
+ #: admin.php:524 methods/updraftvault.php:346
1073
+ msgid "Disconnect"
1074
+ msgstr "Odpojit"
1075
+
1076
+ #: methods/updraftvault.php:354
1077
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1078
+ msgstr "%s Chyba: nemáte k dispozici dostatečnou kvótu (%s) k nahrání tohoto archivu (%s)."
1079
+
1080
+ #: methods/updraftvault.php:354
1081
+ msgid "You can get more quota here"
1082
+ msgstr "Větší kvótu můžete získat zde"
1083
+
1084
+ #: methods/updraftvault.php:359 methods/updraftvault.php:375
1085
+ #: methods/updraftvault.php:414
1086
+ msgid "Current use:"
1087
+ msgstr "V současnosti využito:"
1088
+
1089
+ #: methods/updraftvault.php:362 methods/updraftvault.php:378
1090
+ #: methods/updraftvault.php:380 methods/updraftvault.php:433
1091
+ msgid "Get more quota"
1092
+ msgstr "Získat větší kvótu"
1093
+
1094
+ #: methods/updraftvault.php:364 methods/updraftvault.php:433
1095
+ msgid "Refresh current status"
1096
+ msgstr "Obnovit současný stav"
1097
+
1098
+ #: addons/s3-enhanced.php:343
1099
+ msgid "Allow download"
1100
+ msgstr "Povolit download"
1101
+
1102
+ #: addons/s3-enhanced.php:345
1103
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1104
+ msgstr "Bez tohoto povolení nemůžete přímo stahovat, nebo obnovovat pomocí UpdraftPlus. Místo toho musíte navštívit stránky AWS."
1105
+
1106
+ #: addons/s3-enhanced.php:347
1107
+ msgid "Allow deletion"
1108
+ msgstr "Povolit mazání"
1109
+
1110
+ #: addons/s3-enhanced.php:349
1111
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1112
+ msgstr "Bez tohoto povolení nemůže UpdraftPlus mazat zálohy - zároveň byste měli nastavit své \"ponechávací\" nastavení velmi vysoko, aby se vám nezobrazovali chyby při pokusech o mazání."
1113
+
1114
+ #: backup.php:2938
1115
+ msgid "The zip engine returned the message: %s."
1116
+ msgstr "Zip engine vrátil zprávu: %s."
1117
+
1118
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:977
1119
+ msgid "Delete failed:"
1120
+ msgstr "Mazání selhalo:"
1121
+
1122
+ #: addons/migrator.php:1722 admin.php:533
1123
+ msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1124
+ msgstr "Měli byste zkontrolovat, že je vzdálená stránka online, není za firewallem, nemá bezpečnostní moduly, které by mohli bránit přístupu, má aktivní UpdraftPlus verzi %s, nebo novější a že byli správně vloženy klíče."
1125
+
1126
+ #: addons/migrator.php:1737
1127
+ msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1128
+ msgstr "Pokud nefunguje přímé posílání ze stránek na stránky, jsou k dispozici další tři způsoby - zkuste prosím místo toho některý z nich."
1129
+
1130
+ #: admin.php:531
1131
+ msgid "Creating..."
1132
+ msgstr "Vytvářím..."
1133
+
1134
+ #: admin.php:534
1135
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1136
+ msgstr "dejte tomuto klíči prosím jméno (např. indikující pro jakou je stránku):"
1137
+
1138
+ #: admin.php:536
1139
+ msgid "key name"
1140
+ msgstr "jméno klíče"
1141
+
1142
+ #: admin.php:537
1143
+ msgid "Deleting..."
1144
+ msgstr "Mazání..."
1145
+
1146
+ #: addons/migrator.php:1750 admin.php:540
1147
+ msgid "Testing connection..."
1148
+ msgstr "Testování spojení..."
1149
+
1150
+ #: admin.php:1268
1151
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1152
+ msgstr "U této zálohy se UpdraftPlus domnívá, že nebyla vytvořena současnou WordPress instalací, ale že byla buď nalezena na vzdáleném úložišti, nebo poslána z vzdálené stránky."
1153
+
1154
+ #: admin.php:1268
1155
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1156
+ msgstr "Než provedete obnovu, měli byste se ujistit, že je tato záloha opravdu určena pro tuto stránku a ne pro nějakou jinou."
1157
+
1158
+ #: admin.php:2989
1159
+ 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=\"https://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>."
1160
+ msgstr "Toto nastavení snáze způsobí time-out. Je doporučeno safe_mode vypnout, nebo obnovovat entity postupně, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">nebo obnovit manuálně</a>."
1161
+
1162
+ #: admin.php:4395
1163
+ msgid "Backup sent to remote site - not available for download."
1164
+ msgstr "Záloha poslaná na vzdálenou stránku - není dostupná ke stažení."
1165
+
1166
+ #: admin.php:4396
1167
+ msgid "Site"
1168
+ msgstr "Stránka"
1169
+
1170
+ #: admin.php:4623
1171
+ msgid "(backup set imported from remote location)"
1172
+ msgstr "(záloha importována ze vzdáleného umístění)"
1173
+
1174
+ #: methods/addon-base.php:177
1175
+ msgid "This storage method does not allow downloading"
1176
+ msgstr "Tato zálohovací metoda nedovoluje stahování"
1177
+
1178
+ #: addons/reporting.php:143
1179
+ msgid "Backup made by %s"
1180
+ msgstr "Záloha vytvořena %s"
1181
+
1182
+ #: addons/migrator.php:185
1183
+ msgid "This site has no backups to restore from yet."
1184
+ msgstr "Tato stránka zatím nemá žádné zálohy k obnovení."
1185
+
1186
+ #: addons/migrator.php:192
1187
+ msgid "Restore an existing backup set onto this site"
1188
+ msgstr "Obnovit existující zálohu na této stránce"
1189
+
1190
+ #: addons/migrator.php:1674
1191
+ msgid "Backup data will be sent to:"
1192
+ msgstr "Data zálohy budou poslána:"
1193
+
1194
+ #: addons/migrator.php:1689
1195
+ msgid "site not found"
1196
+ msgstr "stránka nenalezena"
1197
+
1198
+ #: addons/migrator.php:1733
1199
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1200
+ msgstr "URL stránky, kam chcete odesílat (%s) vypadá jako lokální vývojová stránka. Pokud odesíláte data z vnější sítě, je pravděpodobné, že budete zablokováni firewallem."
1201
+
1202
+ #: addons/migrator.php:1768
1203
+ msgid "Also send this backup to the active remote storage locations"
1204
+ msgstr "Poslat tuto zálohu také na aktivní vzdálená úložiště"
1205
+
1206
+ #: addons/migrator.php:1820
1207
+ msgid "A key with this name already exists; you must use a unique name."
1208
+ msgstr "Klíč s tímto názvem již existuje; musíte použít unikátní jméno."
1209
+
1210
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1211
+ msgid "Key created successfully."
1212
+ msgstr "Klíč úspěšně vytvořen."
1213
+
1214
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1215
+ msgid "You must copy and paste this key now - it cannot be shown again."
1216
+ msgstr "Tento klíč si musíte nyní zkopírovat - nemůže být znovu zobrazen."
1217
+
1218
+ #: addons/migrator.php:2175
1219
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1220
+ msgstr "Klíče pro tuto stránku jsou vytvořeny pod aktuální sekcí."
1221
+
1222
+ #: addons/migrator.php:2175
1223
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1224
+ msgstr "Takže pro získání klíče pro vzdálenou stránku otevřete na dané stránce okno \"Migrovat\", sjeďte dolů a tam můžete klíč vytvořit."
1225
+
1226
+ #: addons/migrator.php:2192
1227
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1228
+ msgstr "K tomu, aby mohla jiná stránka posílat zálohy na tuto stránku, vytvořte klíče a pak klikněte na tlačítko \"Migrovat\" na stránce, z které chcete zálohu odeslat a zkopírujte tam klíč."
1229
+
1230
+ #: addons/migrator.php:2213
1231
+ msgid "Your new key:"
1232
+ msgstr "Váš nový klíč je:"
1233
+
1234
+ #: addons/migrator.php:2231
1235
+ msgid "No keys to allow remote sites to connect have yet been created."
1236
+ msgstr "Zatím nebyl vytvořený žádný klíč pomocí kterého by se mohla připojit vzdálená stránka."
1237
+
1238
+ #: addons/migrator.php:2240
1239
+ msgid "Existing keys"
1240
+ msgstr "Existující klíče"
1241
+
1242
+ #: methods/ftp.php:307
1243
+ msgid "FTP server"
1244
+ msgstr "FTP server"
1245
+
1246
+ #: methods/ftp.php:311
1247
+ msgid "FTP login"
1248
+ msgstr "FTP přihlašovací jméno"
1249
+
1250
+ #: methods/ftp.php:315
1251
+ msgid "FTP password"
1252
+ msgstr "FTP heslo"
1253
+
1254
+ #: methods/ftp.php:319
1255
+ msgid "Remote path"
1256
+ msgstr "Vzdálená cesta"
1257
+
1258
+ #: methods/ftp.php:323
1259
+ msgid "Passive mode"
1260
+ msgstr "Pasivní mód"
1261
+
1262
+ #: methods/ftp.php:325
1263
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1264
+ msgstr "Téměř všechny FTP servery vyžadují pasivní mód, ale pokud potřebujete aktivní mód, pak tuto možnost zrušte."
1265
+
1266
+ #: addons/migrator.php:1851
1267
+ msgid "key"
1268
+ msgstr "klíč"
1269
+
1270
+ #: addons/migrator.php:1861
1271
+ msgid "The entered key was the wrong length - please try again."
1272
+ msgstr "Vložený klíč má špatnou délku - zkuste to prosím znovu."
1273
+
1274
+ #: addons/migrator.php:1863 addons/migrator.php:1865 addons/migrator.php:1869
1275
+ msgid "The entered key was corrupt - please try again."
1276
+ msgstr "Vložený klíč je poškozený - zkuste to prosím znovu."
1277
+
1278
+ #: addons/migrator.php:1874
1279
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1280
+ msgstr "Vložený klíč nepatří vzdálené stránce (patří této stránce)."
1281
+
1282
+ #: addons/migrator.php:1890
1283
+ msgid "The key was successfully added."
1284
+ msgstr "Klíč byl úspěšně přidán."
1285
+
1286
+ #: addons/migrator.php:1890
1287
+ msgid "It is for sending backups to the following site: "
1288
+ msgstr "Je pro posílání záloh na následující stránku:"
1289
+
1290
+ #: addons/migrator.php:1909
1291
+ msgid "No receiving sites have yet been added."
1292
+ msgstr "Zatím nebyla přidána žádná přijímající stránka."
1293
+
1294
+ #: addons/migrator.php:1911 admin.php:532
1295
+ msgid "Send to site:"
1296
+ msgstr "Poslat na stránku:"
1297
+
1298
+ #: addons/migrator.php:1917 admin.php:541
1299
+ msgid "Send"
1300
+ msgstr "Poslat"
1301
+
1302
+ #: addons/migrator.php:2172
1303
+ msgid "Or, send a backup to another site"
1304
+ msgstr "Nebo poslat zálohu na jinou stráku"
1305
+
1306
+ #: addons/migrator.php:2175
1307
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1308
+ msgstr "K přidání stránky jako cíle pro poslání zálohy vložte níže klíč dané stránky."
1309
+
1310
+ #: addons/migrator.php:2175
1311
+ msgid "How do I get a site's key?"
1312
+ msgstr "Jak získám klíč stránky?"
1313
+
1314
+ #: addons/migrator.php:2180
1315
+ msgid "Paste key here"
1316
+ msgstr "Zkopírujte klíč sem"
1317
+
1318
+ #: addons/migrator.php:2191
1319
+ msgid "Or, receive a backup from a remote site"
1320
+ msgstr "Nebo získejte zálohu z jiné stránky"
1321
+
1322
+ #: admin.php:528
1323
+ msgid "Adding..."
1324
+ msgstr "Přidávám..."
1325
+
1326
+ #: addons/migrator.php:2180 admin.php:529
1327
+ msgid "Add site"
1328
+ msgstr "Přidat stránku"
1329
+
1330
+ #: addons/migrator.php:165
1331
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1332
+ msgstr "\"Migrace\" je to samé jako obnova, ale používáte při ní zálohu vytvořenou na jiné stránce."
1333
+
1334
+ #: addons/migrator.php:165
1335
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1336
+ msgstr "UpdraftPlus Migrator patřičně upraví proces obnovy, aby obnovované data odpovídala nové stránce."
1337
+
1338
+ #: restorer.php:1987
1339
+ msgid "To use this backup, your database server needs to support the %s character set."
1340
+ msgstr "K použití této zálohy musí váš databázový server podporovat %s znakovou sadu."
1341
+
1342
+ #: udaddons/options.php:338
1343
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1344
+ msgstr "Nárok nebyl udělen - možná jste tuto objednávku již použili někde jinde, nebo vaše předplatné pro stahování z updraftplus.com vypršelo?"
1345
+
1346
+ #: udaddons/updraftplus-addons.php:758
1347
+ msgid "Go here to re-enter your password."
1348
+ msgstr "Pro znovu zadání hesla běžte sem."
1349
+
1350
+ #: udaddons/updraftplus-addons.php:759
1351
+ msgid "If you have forgotten your password "
1352
+ msgstr "Pokud jste zapomněli heslo"
1353
+
1354
+ #: udaddons/updraftplus-addons.php:759
1355
+ msgid "go here to change your password on updraftplus.com."
1356
+ msgstr "jděte sem ke změně hesla na updraftplus.com"
1357
+
1358
+ #: addons/migrator.php:192
1359
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1360
+ msgstr "K importování zálohy jděte na záložku \"Existující zálohy\""
1361
+
1362
+ #: addons/migrator.php:221
1363
+ msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1364
+ msgstr "Po stisknutí tohoto tlačítka si budete moci zvolit, které komponenty budete chtít migrovat"
1365
+
1366
+ #: admin.php:520 admin.php:545
1367
+ msgid "You have made changes to your settings, and not saved."
1368
+ msgstr "Provedli jste změny v nastavení, ale neuložili jste ho."
1369
+
1370
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1371
+ msgid "To remove the block, please go here."
1372
+ msgstr "K odstranění bloku jděte prosím sem."
1373
+
1374
+ #: methods/email.php:73
1375
+ msgid "configure it here"
1376
+ msgstr "konfigurujte zde"
1377
+
1378
+ #: addons/onedrive.php:496
1379
+ msgid "Please re-authorize the connection to your %s account."
1380
+ msgstr "Prosím znovu autorizujte připojení ke svému %s účtu."
1381
+
1382
+ #: addons/onedrive.php:611 addons/onedrive.php:755 addons/onedrive.php:759
1383
+ msgid "OneDrive"
1384
+ msgstr "OneDrive"
1385
+
1386
+ #: addons/onedrive.php:721 addons/onedrive.php:723
1387
+ msgid "%s authorisation failed:"
1388
+ msgstr "%s autorizace selhala:"
1389
+
1390
+ #: addons/onedrive.php:739
1391
+ msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1392
+ msgstr "Microsoft OneDrive není kompatibilní se stránkami běžícími na localhost, nebo 127.0.0.1 - jejich vývojářská konzole to zakazuje (současná URL je: %s)."
1393
+
1394
+ #: addons/onedrive.php:741
1395
+ msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1396
+ msgstr "Pokud o to budete požádání, musíte toto vložit jako autorizovanou URI přesměrování ve vaší konzoli OneDrive (k nalezení pod \"Nastavení API\")"
1397
+
1398
+ #: addons/onedrive.php:747
1399
+ msgid "Create OneDrive credentials in your OneDrive developer console."
1400
+ msgstr "Ve vývojářské konzoli OneDrive si vytvořte přihlašovací údaje k OneDrive."
1401
+
1402
+ #: addons/azure.php:500 addons/migrator.php:1737 addons/onedrive.php:747
1403
+ msgid "For longer help, including screenshots, follow this link."
1404
+ msgstr "Pro delší nápovědu, včetně snímků obrazovky, následujte tento odkaz."
1405
+
1406
+ #: addons/onedrive.php:756
1407
+ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1408
+ msgstr "Pokud vám OneDrive později ukáže zprávu \"unauthorized_client\", pak jste sem nevložili platné klientské ID."
1409
+
1410
+ #: addons/onedrive.php:767
1411
+ msgid "N.B. %s is not case-sensitive."
1412
+ msgstr "Poznámka: %s není citlivý na velikost písmen."
1413
+
1414
+ #: addons/s3-enhanced.php:321
1415
+ msgid "US West (N. California)"
1416
+ msgstr "US Západ (Severní Kalifornie)"
1417
+
1418
+ #: addons/s3-enhanced.php:322
1419
+ msgid "US Government West (restricted)"
1420
+ msgstr "US Government West (omezeně)"
1421
+
1422
+ #: addons/s3-enhanced.php:323
1423
+ msgid "EU (Ireland)"
1424
+ msgstr "EU (Irsko)"
1425
+
1426
+ #: addons/s3-enhanced.php:324
1427
+ msgid "EU (Frankfurt)"
1428
+ msgstr "EU (Frankfurt)"
1429
+
1430
+ #: addons/s3-enhanced.php:326
1431
+ msgid "Asia Pacific (Singapore)"
1432
+ msgstr "Asijský Pacifik (Singapur)"
1433
+
1434
+ #: addons/s3-enhanced.php:327
1435
+ msgid "Asia Pacific (Sydney)"
1436
+ msgstr "Asijský Pacifik (Sydney)"
1437
+
1438
+ #: addons/s3-enhanced.php:329
1439
+ msgid "Asia Pacific (Tokyo)"
1440
+ msgstr "Asijský Pacifik (Tokio)"
1441
+
1442
+ #: addons/s3-enhanced.php:330
1443
+ msgid "South America (Sao Paulo)"
1444
+ msgstr "Jižní Amerika (Sao Paulo)"
1445
+
1446
+ #: addons/s3-enhanced.php:331
1447
+ msgid "China (Beijing) (restricted)"
1448
+ msgstr "Čína (Peking) (omezeně)"
1449
+
1450
+ #: addons/s3-enhanced.php:341
1451
+ msgid "S3 bucket"
1452
+ msgstr "S3 bucket"
1453
+
1454
+ #: addons/s3-enhanced.php:437
1455
+ msgid "You are now using a IAM user account to access your bucket."
1456
+ msgstr "K přístupu ke svému bucketu nyní používáte uživatelský účet IAM."
1457
+
1458
+ #: addons/s3-enhanced.php:437
1459
+ msgid "Do remember to save your settings."
1460
+ msgstr "Nezapomeňte uložit své nastavení."
1461
+
1462
+ #: restorer.php:2086
1463
+ msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1464
+ msgstr "cesta uploadů (%s) se během migrace změnila - resetuji (na: %s)"
1465
+
1466
+ #: admin.php:396
1467
+ msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1468
+ msgstr "UpdraftPlus novinky, vysoce kvalitní výukové materiály pro WordPress vývojáře a majitele stránek a obecné WordPress novinky. Kdykoliv se můžete odhlásit."
1469
+
1470
+ #: admin.php:398
1471
+ msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1472
+ msgstr "Pro osobní podporu, schopnost kopírovat celé stránky, více cílových úložišť, bezpečnostní šifrované zálohy, více cílů záloh, lepší reportování, žádné reklamy a mnohem více, podívejte se na prémiovou verzi UpdraftPlus - světově nejoblíbenějšího zálohovacího pluginu."
1473
+
1474
+ #: methods/s3.php:778
1475
+ msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1476
+ msgstr "Pro vytvoření nového IAM pod-uživatele a přístupového klíče, který bude mít přístup pouze k tomuto bucketu, použijte tento add-on."
1477
+
1478
+ #: addons/s3-enhanced.php:71
1479
+ msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1480
+ msgstr "Pokud máte administrátorský účet AWS, můžete použít tohoto průvodce k rychlému vytvoření nového AWS (IAM) uživatele s přístupem pouze k tomuto bucketu (spíše, než k vašemu celému účtu)"
1481
+
1482
+ #: addons/s3-enhanced.php:83
1483
+ msgid "You need to enter an admin access key"
1484
+ msgstr "Musíte vložit administrátorský přístupový klíč"
1485
+
1486
+ #: addons/s3-enhanced.php:86
1487
+ msgid "You need to enter an admin secret key"
1488
+ msgstr "Musíte vložit administrátorský tajný klíč"
1489
+
1490
+ #: addons/s3-enhanced.php:89
1491
+ msgid "You need to enter a new IAM username"
1492
+ msgstr "Musíte vložit nové IAM uživatelské jméno"
1493
+
1494
+ #: addons/s3-enhanced.php:92
1495
+ msgid "You need to enter a bucket"
1496
+ msgstr "Musíte vložit bucket"
1497
+
1498
+ #: addons/s3-enhanced.php:117
1499
+ msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1500
+ msgstr "Nelze vytvořit nového AWS uživatele, jelikož je použitý starý AWS toolkit."
1501
+
1502
+ #: addons/s3-enhanced.php:124
1503
+ msgid "AWS authentication failed"
1504
+ msgstr "AWS autentifikace selhala"
1505
+
1506
+ #: addons/s3-enhanced.php:171
1507
+ 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 AWS user may already have taken your name)."
1508
+ msgstr "Selhání: K danému bucketu se nepodařilo přistoupit, nebo ho vytvořit. Prosím, zkontrolujte své přístupové údaje a pokud jsou správné, zkuste jiný název bucketu (protože jiný AWS uživatel již mohl tento název použít)."
1509
+
1510
+ #: addons/s3-enhanced.php:199
1511
+ msgid "Conflict: that user already exists"
1512
+ msgstr "Konflikt: takový uživatel již existuje"
1513
+
1514
+ #: addons/s3-enhanced.php:201 addons/s3-enhanced.php:204
1515
+ #: addons/s3-enhanced.php:208
1516
+ msgid "IAM operation failed (%s)"
1517
+ msgstr "IAM operace selhala (%s)"
1518
+
1519
+ #: addons/s3-enhanced.php:221
1520
+ msgid "Failed to create user Access Key"
1521
+ msgstr "Nepodařilo se vytvořit uživatelský Přístupový klíč"
1522
+
1523
+ #: addons/s3-enhanced.php:223 addons/s3-enhanced.php:227
1524
+ msgid "Operation to create user Access Key failed"
1525
+ msgstr "Operace tvorby uživatelského Přístupového klíče selhala"
1526
+
1527
+ #: addons/s3-enhanced.php:282 addons/s3-enhanced.php:284
1528
+ msgid "Failed to apply User Policy"
1529
+ msgstr "Nepodařilo se aplikovat uživatelské nastavení"
1530
+
1531
+ #: addons/s3-enhanced.php:294
1532
+ msgid "Access Key: %s"
1533
+ msgstr "Přístupový kód: %s"
1534
+
1535
+ #: addons/s3-enhanced.php:294
1536
+ msgid "Secret Key: %s"
1537
+ msgstr "Tajný klíč: %s"
1538
+
1539
+ #: addons/s3-enhanced.php:378
1540
+ msgid "Create new IAM user and S3 bucket"
1541
+ msgstr "Vytvořit nového IAM uživatele a S3 bucket"
1542
+
1543
+ #: addons/s3-enhanced.php:304
1544
+ msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1545
+ msgstr "Vložte svůj administrátorský/tajný klíč k Amazon S3 (musí se jednat o pár klíčů, který má dostatek oprávnění k vytvoření uživatelů a bucketů) a nové (unikátní) uživatelské jméno pro nového uživatele a jméno bucketu."
1546
+
1547
+ #: addons/s3-enhanced.php:304
1548
+ msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1549
+ msgstr "Toto bude použito pro vytvoření nového uživatele a páru klíčů s IAM nastavením, které umožní přístup pouze do daného bucketu."
1550
+
1551
+ #: addons/s3-enhanced.php:304
1552
+ msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1553
+ msgstr "Poté lze použít k přístupu tyto údaje, místo zadávání administrátorských."
1554
+
1555
+ #: addons/s3-enhanced.php:311
1556
+ msgid "Admin access key"
1557
+ msgstr "Administrátorský přístupový klíč"
1558
+
1559
+ #: addons/s3-enhanced.php:312
1560
+ msgid "Admin secret key"
1561
+ msgstr "Administrátorský tajný klíč"
1562
+
1563
+ #: addons/s3-enhanced.php:313
1564
+ msgid "New IAM username"
1565
+ msgstr "Nové IAM uživatelské jméno"
1566
+
1567
+ #: addons/s3-enhanced.php:315
1568
+ msgid "S3 storage region"
1569
+ msgstr "oblast S3 úložiště"
1570
+
1571
+ #: addons/s3-enhanced.php:319
1572
+ msgid "US Standard (default)"
1573
+ msgstr "US standart (výchozí)"
1574
+
1575
+ #: addons/s3-enhanced.php:320
1576
+ msgid "US West (Oregon)"
1577
+ msgstr "US západ (Oregon)"
1578
+
1579
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1580
+ msgid "UpdraftPlus.com has responded with 'Access Denied'."
1581
+ msgstr "OpdraftPlus.com odpověděl 'Přístup odepřen'."
1582
+
1583
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1584
+ msgid "It appears that your web server's IP Address (%s) is blocked."
1585
+ msgstr "Vypadá to, že IP adresa vašeho webového serveru (%s) je zablokovaná."
1586
+
1587
+ #: methods/updraftvault.php:553 udaddons/updraftplus-addons.php:720
1588
+ msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1589
+ msgstr "S největší pravděpodobností to znamená, že sdílíte webový server s hacknutými stránkami, které byly použity při předchozích útocích."
1590
+
1591
+ #: admin.php:389 admin.php:403
1592
+ msgid "Dismiss (for %s months)"
1593
+ msgstr "Schovat (na %s měsíců)"
1594
+
1595
+ #: admin.php:391
1596
+ msgid "Thank you for backing up with UpdraftPlus!"
1597
+ msgstr "Děkujeme, že zálohujete s UpdraftPlus!"
1598
+
1599
+ #: admin.php:396
1600
+ msgid "Free Newsletter"
1601
+ msgstr "Novinky zdarma"
1602
+
1603
+ #: admin.php:396
1604
+ msgid "Follow this link to sign up."
1605
+ msgstr "Pro registraci následujte tento odkaz."
1606
+
1607
+ #: admin.php:398
1608
+ msgid "UpdraftPlus Premium"
1609
+ msgstr "UpdraftPlus Premium"
1610
+
1611
+ #: admin.php:398
1612
+ msgid "Compare with the free version"
1613
+ msgstr "Porovnání s verzí zdarma"
1614
+
1615
+ #: admin.php:398
1616
+ msgid "Go to the shop."
1617
+ msgstr "Přejít do obchodu."
1618
+
1619
+ #: admin.php:400
1620
+ msgid "More Quality Plugins"
1621
+ msgstr "Více kvalitních pluginů"
1622
+
1623
+ #: admin.php:400
1624
+ msgid "Free two-factor security plugin"
1625
+ msgstr "Dvou-úrovňový bezpečnostní plugin zdarma"
1626
+
1627
+ #: admin.php:400
1628
+ msgid "Premium WooCommerce plugins"
1629
+ msgstr "Prémiové WooCommerce pluginy"
1630
+
1631
+ #: class-updraftplus.php:3488
1632
+ msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1633
+ msgstr "Pro přihlášení k UpdraftPlus newsletteru klikněte na tento odkaz."
1634
+
1635
+ #: admin.php:2172
1636
+ msgid "Newsletter sign-up"
1637
+ msgstr "Přihlášení k newsletterům"
1638
+
1639
+ #: admin.php:2556
1640
+ msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1641
+ msgstr "Pokud jste provedli objednávku z UpdraftPlus.Com, následujte tento odkaz nainstalování toho, co jste si zakoupili."
1642
+
1643
+ #: admin.php:2556
1644
+ msgid "The first step is to de-install the free version."
1645
+ msgstr "První krok je odinstalování verze zdarma."
1646
+
1647
+ #: admin.php:3640
1648
+ msgid "No backup has been completed"
1649
+ msgstr "Žádná záloha nebyla dokončena"
1650
+
1651
+ #: addons/fixtime.php:422
1652
+ msgid "(at same time as files backup)"
1653
+ msgstr "(ve stejný čas, jako záloha souborů)"
1654
+
1655
+ #: admin.php:2601
1656
+ msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1657
+ msgstr "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1658
+
1659
+ #: admin.php:2606
1660
+ msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1661
+ msgstr "WebDAV, Copy.Com, SFTP/SCP, šifrované FTP"
1662
+
1663
+ #: admin.php:2621
1664
+ msgid "Backup extra files and databases"
1665
+ msgstr "Zálohovat extra soubory a databáze"
1666
+
1667
+ #: admin.php:2626
1668
+ msgid "Migrate / clone (i.e. copy) websites"
1669
+ msgstr "Migrovat / klonovat (kopírovat) stránky"
1670
+
1671
+ #: admin.php:2631
1672
+ msgid "Basic email reporting"
1673
+ msgstr "Základní email report"
1674
+
1675
+ #: admin.php:2636
1676
+ msgid "Advanced reporting features"
1677
+ msgstr "Pokročilé reportovací možnosti"
1678
+
1679
+ #: admin.php:2641
1680
+ msgid "Automatic backup when updating WP/plugins/themes"
1681
+ msgstr "Automaticky zálohovat při aktualizaci WordPressu/pluginů/témat"
1682
+
1683
+ #: admin.php:2646
1684
+ msgid "Send backups to multiple remote destinations"
1685
+ msgstr "Poslat zálohu na více vzdálených uložišť"
1686
+
1687
+ #: admin.php:2651
1688
+ msgid "Database encryption"
1689
+ msgstr "Šifrování databáze"
1690
+
1691
+ #: admin.php:2656
1692
+ msgid "Restore backups from other plugins"
1693
+ msgstr "Obnovit zálohu z ostatních pluginů"
1694
+
1695
+ #: admin.php:2666
1696
+ msgid "Scheduled backups"
1697
+ msgstr "Naplánované zálohy"
1698
+
1699
+ #: admin.php:2671
1700
+ msgid "Fix backup time"
1701
+ msgstr "Opravit čas zálohování"
1702
+
1703
+ #: admin.php:2676
1704
+ msgid "Network/Multisite support"
1705
+ msgstr "Síťová/Multistránková podpora"
1706
+
1707
+ #: admin.php:2681
1708
+ msgid "Lock settings access"
1709
+ msgstr "Zamknout přístup k nastavení"
1710
+
1711
+ #: admin.php:2686
1712
+ msgid "Personal support"
1713
+ msgstr "Osobní podpora"
1714
+
1715
+ #: admin.php:2556
1716
+ msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1717
+ msgstr "Aktuálně používáte neplacenou verzi UpdraftPlus z wordpress.org."
1718
+
1719
+ #: admin.php:2558
1720
+ msgid "Get UpdraftPlus Premium"
1721
+ msgstr "Získat UpdraftPlus Premium"
1722
+
1723
+ #: admin.php:2559
1724
+ msgid "Full feature list"
1725
+ msgstr "Seznam všech vlastností"
1726
+
1727
+ #: admin.php:2560
1728
+ msgid "Pre-sales FAQs"
1729
+ msgstr "Časté otázky přeprodeje"
1730
+
1731
+ #: admin.php:2561
1732
+ msgid "Ask a pre-sales question"
1733
+ msgstr "Položit otázku předprodeje"
1734
+
1735
+ #: admin.php:2573
1736
+ msgid "Get it from"
1737
+ msgstr "Získejte z"
1738
+
1739
+ #: admin.php:2577
1740
+ msgid "Buy It Now!"
1741
+ msgstr "Koupit nyní!"
1742
+
1743
+ #: admin.php:2581
1744
+ msgid "Backup WordPress files and database"
1745
+ msgstr "Zálohovat soubory a databázi WordPressu"
1746
+
1747
+ #: admin.php:2586
1748
+ msgid "Translated into over %s languages"
1749
+ msgstr "Přeloženo do více než %s jazyků"
1750
+
1751
+ #: admin.php:2591
1752
+ msgid "Restore from backup"
1753
+ msgstr "Obnovit ze zálohy"
1754
+
1755
+ #: admin.php:2596
1756
+ msgid "Backup to remote storage"
1757
+ msgstr "Zálohovat na vzdálené uložiště"
1758
+
1759
+ #: admin.php:514
1760
+ msgid "You did not select any components to restore. Please select at least one, and then try again."
1761
+ msgstr "Nevybrali jste nic k obnovení. Vyberte alespoň jednu věc a zkuste to znovu."
1762
+
1763
+ #: admin.php:2903
1764
+ msgctxt "Uploader: Drop backup files here - or - Select Files"
1765
+ msgid "or"
1766
+ msgstr "nebo"
1767
+
1768
+ #: admin.php:3882
1769
+ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1770
+ msgid "or"
1771
+ msgstr "nebo"
1772
+
1773
+ #: methods/s3.php:134 methods/s3.php:135 methods/s3.php:136 methods/s3.php:144
1774
+ #: methods/s3.php:145 methods/s3.php:146
1775
+ msgid "%s Error: Failed to initialise"
1776
+ msgstr "Chyba %s: Chyba inicializace"
1777
+
1778
+ #: addons/autobackup.php:981
1779
+ msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1780
+ msgstr "Před nahráním zálohovat s UpdraftPlus (kde je opodstatnění) pluginy, témata a WordPress databázi"
1781
+
1782
+ #: restorer.php:1964
1783
+ msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1784
+ msgid "An error (%s) occurred:"
1785
+ msgstr "Nastalo %s chyb:"
1786
+
1787
+ #: admin.php:3649
1788
+ msgctxt "i.e. Non-automatic"
1789
+ msgid "Manual"
1790
+ msgstr "Ručně"
1791
+
1792
+ #: admin.php:3934
1793
+ msgid "Check this box to have a basic report sent to"
1794
+ msgstr "Pokud chcete zaslat základní report, zaškrtněte toto políčko"
1795
+
1796
+ #: admin.php:3934
1797
+ msgid "your site's admin address"
1798
+ msgstr "adresa administrátora vašich stránek"
1799
+
1800
+ #: methods/openstack2.php:102
1801
+ msgctxt "Keystone and swauth are technical terms which cannot be translated"
1802
+ msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1803
+ msgstr "Musí být v2 (Keystone) autentifikační URI; v1 (Swauth) není podporováno."
1804
+
1805
+ #: methods/openstack2.php:152
1806
+ msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1807
+ msgid "tenant"
1808
+ msgstr "tenant"
1809
+
1810
+ #: addons/sftp.php:342
1811
+ msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1812
+ msgstr "Pokračování částečného nahrávání je podporování SFTP, ale ne SCP. Pokud tedy používáte SCP, je potřeba se ujistit, že váš webserver podporuje tak dlouhý běh PHP procesu, aby se nahrál i největší soubor zálohy."
1813
+
1814
+ #: addons/sftp.php:379
1815
+ msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1816
+ msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1817
+ msgstr "Jsou akceptovány PKCS1 (PEM hlavička: BEGIN RSA PRIVATE KEY), XML a PuTTY formáty klíčů."
1818
+
1819
+ #: addons/morefiles.php:178
1820
+ msgid "Any other file/directory on your server that you wish to back up"
1821
+ msgstr "Jakýkoliv další soubor/složka na serveru, které si přejete zálohovat"
1822
+
1823
+ #: addons/lockadmin.php:162
1824
+ msgid "Change Lock Settings"
1825
+ msgstr "Změnit nastavení zámku"
1826
+
1827
+ #: restorer.php:1163
1828
+ msgid "Clearing cached pages (%s)..."
1829
+ msgstr "Mazání stránek z cache (%s)..."
1830
+
1831
+ #: restorer.php:1970
1832
+ msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1833
+ msgstr "Tvorba tabulky selhala - pravděpodobně proto, že tabulka již existuje a není oprávnění pro její smazání; pokračuji"
1834
+
1835
+ #: admin.php:2349
1836
+ msgid "For even more features and personal support, check out "
1837
+ msgstr "pro ještě více schopností a osobní podpory se podívejte na"
1838
+
1839
+ #: udaddons/options.php:273
1840
+ msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1841
+ msgstr "Po získání add-onů můžete z nastavení níže odstranit své heslo (ale ne email) bez toho, aniž byste ovlivnili přístup stránky k aktualizacím."
1842
+
1843
+ #: addons/morefiles.php:67
1844
+ msgid "(learn more about this significant option)"
1845
+ msgstr "(dozvědět se víc o této významné možnosti)"
1846
+
1847
+ #: addons/lockadmin.php:105
1848
+ msgid "The admin password has now been removed."
1849
+ msgstr "Heslo admina bylo odstraněno."
1850
+
1851
+ #: addons/lockadmin.php:107
1852
+ msgid "An admin password has been set."
1853
+ msgstr "Heslo admina bylo nastaveno."
1854
+
1855
+ #: addons/lockadmin.php:109
1856
+ msgid "The admin password has been changed."
1857
+ msgstr "Heslo admina bylo změněno."
1858
+
1859
+ #: addons/lockadmin.php:111
1860
+ msgid "Settings saved."
1861
+ msgstr "Nastavení uloženo."
1862
+
1863
+ #: addons/lockadmin.php:131
1864
+ msgid "Lock access to the UpdraftPlus settings page"
1865
+ msgstr "Zabezpečený přístup ke stránce s UpdraftPlus nastavením"
1866
+
1867
+ #: addons/lockadmin.php:133
1868
+ msgid "Please make sure that you have made a note of the password!"
1869
+ msgstr "Ujistěte se prosím, že jste si poznamenali heslo!"
1870
+
1871
+ #: addons/lockadmin.php:144
1872
+ msgid "1 hour"
1873
+ msgstr "1 hodina"
1874
+
1875
+ #: addons/lockadmin.php:145 addons/lockadmin.php:146
1876
+ msgid "%s hours"
1877
+ msgstr "%s hodin"
1878
+
1879
+ #: addons/lockadmin.php:147
1880
+ msgid "1 week"
1881
+ msgstr "1 týden"
1882
+
1883
+ #: addons/lockadmin.php:148 addons/lockadmin.php:149
1884
+ msgid "%s weeks"
1885
+ msgstr "%s týdnů"
1886
+
1887
+ #: addons/lockadmin.php:157
1888
+ msgid "Require password again after"
1889
+ msgstr "Požadovat heslo opět po"
1890
+
1891
+ #: addons/lockadmin.php:159
1892
+ msgid "Support URL"
1893
+ msgstr "URL podpory"
1894
+
1895
+ #: addons/lockadmin.php:159
1896
+ msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1897
+ msgstr "Každému, kdo uvidí uzamykací stránku, se zobrazí tato URL pro podporu - vložte adresu stránky, nebo emailovou adresu."
1898
+
1899
+ #: addons/lockadmin.php:159
1900
+ msgid "Otherwise, the default link will be shown."
1901
+ msgstr "Jinak bude zobrazen výchozí odkaz."
1902
+
1903
+ #: addons/lockadmin.php:188 addons/lockadmin.php:194
1904
+ msgid "Unlock"
1905
+ msgstr "Odemčeno"
1906
+
1907
+ #: addons/lockadmin.php:200
1908
+ msgid "Password incorrect"
1909
+ msgstr "Špatné heslo"
1910
+
1911
+ #: addons/lockadmin.php:203
1912
+ msgid "To access the UpdraftPlus settings, please enter your unlock password"
1913
+ msgstr "Pro zpřístupnění nastavení UpdraftPlus prosím zadejte heslo pro odemknutí"
1914
+
1915
+ #: addons/lockadmin.php:210
1916
+ msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1917
+ msgstr "Pro podporu odemčení kontaktujte osobu, která pro vás spravuje UpdraftPlus."
1918
+
1919
+ #: addons/autobackup.php:96
1920
+ msgid "WordPress core (only)"
1921
+ msgstr "Jádro WordPressu (pouze)"
1922
+
1923
+ #: addons/autobackup.php:131 addons/autobackup.php:946
1924
+ #: addons/autobackup.php:954 admin.php:519
1925
+ msgid "Automatic backup before update"
1926
+ msgstr "Automatická záloha před aktualizací"
1927
+
1928
+ #: addons/moredatabase.php:45
1929
+ msgid "Database decryption phrase"
1930
+ msgstr "dešifrovací fráze pro databázi"
1931
+
1932
+ #: backup.php:2940
1933
+ msgid "A zip error occurred"
1934
+ msgstr "Objevila se chyba zip"
1935
+
1936
+ #: backup.php:2942
1937
+ msgid "your web hosting account appears to be full; please see: %s"
1938
+ msgstr "váš web hostingový účet se zdá být plný; prosím podívejte se: %s"
1939
+
1940
+ #: backup.php:2944
1941
+ msgid "check your log for more details."
1942
+ msgstr "pro více informací zkontrolujte log."
1943
+
1944
+ #: admin.php:1854
1945
+ msgid "Error: unexpected file read fail"
1946
+ msgstr "Chyba: čtení neočekávaného souboru"
1947
+
1948
+ #: class-updraftplus.php:3664
1949
+ msgid "Backup label:"
1950
+ msgstr "Štítek zálohy:"
1951
+
1952
+ #: admin.php:760 admin.php:2439 central/updraftplus-commands.php:304
1953
+ msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1954
+ msgstr "Tlačítko \"Zálohovat nyní\" není aktivní, protože do složky se zálohami nelze zapisovat (jděte do záložky \"Nastavení\" a najděte odpovídající možnost)."
1955
+
1956
+ #: admin.php:2892
1957
+ msgid "Upload files into UpdraftPlus."
1958
+ msgstr "Nahrát soubory do UpdraftPlus."
1959
+
1960
+ #: admin.php:3124
1961
+ msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1962
+ msgstr "Pro možnost zamčení nastavení UpdraftPlus heslem přejděte na UpdraftPlus Premium."
1963
+
1964
+ #: admin.php:3610
1965
+ msgid "incremental backup; base backup: %s"
1966
+ msgstr "kumulativní záloha; základní záloha: %s"
1967
+
1968
+ #: admin.php:3714 admin.php:3753
1969
+ msgid "and retain this many scheduled backups"
1970
+ msgstr "a uchovat tolik naplánovaných záloh"
1971
+
1972
+ #: admin.php:4341
1973
+ msgid "Backup date"
1974
+ msgstr "Datum zálohy"
1975
+
1976
+ #: admin.php:4342
1977
+ msgid "Backup data (click to download)"
1978
+ msgstr "Data zálohy (klikněte pro stažení)"
1979
+
1980
+ #: admin.php:3232 admin.php:4646
1981
+ msgid "View Log"
1982
+ msgstr "Zobrazit log"
1983
+
1984
+ #: addons/reporting.php:60
1985
+ msgid "Your label for this backup (optional)"
1986
+ msgstr "Váš štítek pro tuto zálohu (nepovinné)"
1987
+
1988
+ #: addons/googlecloud.php:822 methods/googledrive.php:900
1989
+ msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1990
+ msgstr "%s nepovoluje autorizaci stránek hostovaných na IP adrese. Nejprve musíte změnit adresu stránky (%s), abyste mohli použít %s pro ukládání."
1991
+
1992
+ #: methods/updraftvault.php:529 udaddons/updraftplus-addons.php:655
1993
+ msgid "You need to supply both an email address and a password"
1994
+ msgstr "Musíte poskytnout jak email, tak heslo"
1995
+
1996
+ #: methods/updraftvault.php:589 udaddons/updraftplus-addons.php:758
1997
+ msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1998
+ msgstr "Váše emailová adresa byla správná, ale heslo nebylo UpdraftPlus.Com rozpoznáno."
1999
+
2000
+ #: methods/updraftvault.php:592 udaddons/updraftplus-addons.php:762
2001
+ msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2002
+ msgstr "Vložili jste emailovou adresu, která nebyla UpdraftPlus.Com rozpoznána."
2003
+
2004
+ #: admin.php:2500
2005
+ msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2006
+ msgstr "Pro pokračování stiskněte 'Zálohovat nyní'. Pak sledujte, zda se mění 'Poslední zpráva logu'."
2007
+
2008
+ #: class-updraftplus.php:3683
2009
+ msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2010
+ msgstr "Vaše záloha je z Wordpress multisite instalace, ale tato stránka ne. Budou k dispozici pouze první stránky."
2011
+
2012
+ #: class-updraftplus.php:3683
2013
+ msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2014
+ msgstr "Pokud chcete obnovit multisite zálohu, měli byste nejdřív nastavit svůj WordPress jako multisite."
2015
+
2016
+ #: addons/migrator.php:1038
2017
+ msgid "already done"
2018
+ msgstr "již hotovo"
2019
+
2020
+ #: addons/migrator.php:995 addons/migrator.php:1038 addons/migrator.php:1185
2021
+ msgid "Search and replacing table:"
2022
+ msgstr "Hledání a nahrazování tabulky:"
2023
+
2024
+ #: addons/migrator.php:995
2025
+ msgid "skipped (not in list)"
2026
+ msgstr "přeskočeno (není v seznamu)"
2027
+
2028
+ #: addons/migrator.php:301
2029
+ msgid "Rows per batch"
2030
+ msgstr "Řádků na dávku"
2031
+
2032
+ #: addons/migrator.php:302
2033
+ msgid "These tables only"
2034
+ msgstr "Pouze tyto tabulky"
2035
+
2036
+ #: addons/migrator.php:302
2037
+ msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2038
+ msgstr "Vložte seznam oddělený čárkami; pro všechny tabulky nechte prázdné."
2039
+
2040
+ #: udaddons/options.php:102
2041
+ msgid "You have not yet connected with your UpdraftPlus.Com account."
2042
+ msgstr "Zatím nejste spojeni se svým UpdraftPlus.Com účtem."
2043
+
2044
+ #: udaddons/options.php:100 udaddons/options.php:102
2045
+ msgid "You need to connect to receive future updates to UpdraftPlus."
2046
+ msgstr "Pro budoucí aktualizace se musíte spojit s UpdraftPlus."
2047
+
2048
+ #: class-updraftplus.php:3656
2049
+ msgid "The site in this backup was running on a webserver with version %s of %s. "
2050
+ msgstr "Stránka z této zálohy běžela na webserveru s verzí %s z %s."
2051
+
2052
+ #: class-updraftplus.php:3656
2053
+ msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2054
+ msgstr "Což je velký rozdíl oproti verzi, na kterou chcete zálohu obnovit (verze %s)."
2055
+
2056
+ #: class-updraftplus.php:3656
2057
+ msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2058
+ msgstr "Měli byste pokračovat pouze pokud neaktualizujete současný server a jste si jisti (nebo ochotni riskovat), že vyše pluginy / témata / atd. jsou kompatibilní se starší verzí %s."
2059
+
2060
+ #: class-updraftplus.php:3656
2061
+ msgid "Any support requests to do with %s should be raised with your web hosting company."
2062
+ msgstr "Jakákoliv žádost o podporu týkající se %s, by měla být řešena s vaším poskytovatelem hostingu."
2063
+
2064
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2065
+ msgid "UpdraftPlus is on social media - check us out here:"
2066
+ msgstr "UpdraftPlus je na sociálních sítích - podívejte se na nás tady:"
2067
+
2068
+ #: admin.php:2170 class-updraftplus.php:3479 class-updraftplus.php:3508
2069
+ msgid "Twitter"
2070
+ msgstr "Twitter"
2071
+
2072
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2073
+ msgid "Facebook"
2074
+ msgstr "Facebook"
2075
+
2076
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2077
+ msgid "Google+"
2078
+ msgstr "Google+"
2079
+
2080
+ #: class-updraftplus.php:3479 class-updraftplus.php:3508
2081
+ msgid "LinkedIn"
2082
+ msgstr "LinkedIn"
2083
+
2084
+ #: admin.php:4707
2085
+ msgid "Why am I seeing this?"
2086
+ msgstr "Proč tohle vidím?"
2087
+
2088
+ #: admin.php:2880
2089
+ msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2090
+ msgstr "Pro podívání se po nových zálohách, které jste nahráli do složky UpdraftPlus (na vašem hostingu) klikněte zde."
2091
+
2092
+ #: admin.php:2880
2093
+ msgid "The location of this directory is set in the expert settings, in the Settings tab."
2094
+ msgstr "Umístění složky je uloženo v pokročilém nastavení, na záložce Nastavení."
2095
+
2096
+ #: admin.php:1802 admin.php:1814
2097
+ msgid "Start backup"
2098
+ msgstr "Zahájit zálohu"
2099
+
2100
+ #: class-updraftplus.php:3628 restorer.php:926
2101
+ msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2102
+ msgstr "Používáte %s webserver, ale vypadá to, že nemáte načtený %s modul."
2103
+
2104
+ #: admin.php:3554
2105
+ msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2106
+ msgstr "Pro konzultaci, jak povolit WordPress pluginu zapisovat do složky, budete potřebovat kontaktovat vašeho poskytovatele."
2107
+
2108
+ #: admin.php:3045
2109
+ msgid "Unless you have a problem, you can completely ignore everything here."
2110
+ msgstr "Pokud nemáte žádný problém, můžete ignorovat všechno, co tu je."
2111
+
2112
+ #: admin.php:1976
2113
+ msgid "You will find more information about this in the Settings section."
2114
+ msgstr "Více informací o tom najdete v sekci Nastavení."
2115
+
2116
+ #: admin.php:2011
2117
+ msgid "This file could not be uploaded"
2118
+ msgstr "Tento soubor nemůže být nahrán"
2119
+
2120
+ #: addons/importer.php:70
2121
+ msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2122
+ msgstr "Je toto záloha provedená jiným zálohovacím pluginem? Pokud ano, budete ho možná nejdříve muset přejmenovat, aby mohla být rozpoznána - prosím následujte odkaz."
2123
+
2124
+ #: addons/importer.php:70
2125
+ msgid "Supported backup plugins: %s"
2126
+ msgstr "Podporované zálohovací pluginy: %s"
2127
+
2128
+ #: admin.php:3730
2129
+ msgid "Tell me more about incremental backups"
2130
+ msgstr "Řekněte mi víc o přírůstkových zálohách"
2131
+
2132
+ #: admin.php:3081
2133
+ msgid "Memory limit"
2134
+ msgstr "Limit paměti"
2135
+
2136
+ #: class-updraftplus.php:3770 restorer.php:1368
2137
+ msgid "restoration"
2138
+ msgstr "obnovení"
2139
+
2140
+ #: restorer.php:1915
2141
+ msgid "Table to be implicitly dropped: %s"
2142
+ msgstr "Tabulka, která bude implicitně smazána: %s"
2143
+
2144
+ #: backup.php:829
2145
+ msgid "Full backup"
2146
+ msgstr "Plná záloha"
2147
+
2148
+ #: backup.php:829
2149
+ msgid "Incremental"
2150
+ msgstr "Přírůstková"
2151
+
2152
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2153
+ msgid "Backup succeeded"
2154
+ msgstr "Záloha úspěšná"
2155
+
2156
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2157
+ msgid "(view log...)"
2158
+ msgstr "(zobrazit log...)"
2159
+
2160
+ #: addons/autobackup.php:490 addons/autobackup.php:492
2161
+ msgid "now proceeding with the updates..."
2162
+ msgstr "nyní pokračovat s aktualizacemi..."
2163
+
2164
+ #: admin.php:3650 admin.php:3651 admin.php:3652 updraftplus.php:92
2165
+ #: updraftplus.php:93
2166
+ msgid "Every %s hours"
2167
+ msgstr "Každých %s hodin"
2168
+
2169
+ #: addons/migrator.php:765 addons/migrator.php:767
2170
+ msgid "search and replace"
2171
+ msgstr "najít a nahradit"
2172
+
2173
+ #: addons/migrator.php:272
2174
+ msgid "search term"
2175
+ msgstr "hledaný výraz"
2176
+
2177
+ #: addons/migrator.php:266 addons/migrator.php:291
2178
+ msgid "Search / replace database"
2179
+ msgstr "Najít/nahradit databázi"
2180
+
2181
+ #: addons/migrator.php:267 addons/migrator.php:299
2182
+ msgid "Search for"
2183
+ msgstr "Hledat"
2184
+
2185
+ #: addons/migrator.php:268 addons/migrator.php:300
2186
+ msgid "Replace with"
2187
+ msgstr "Nahradit s"
2188
+
2189
+ #: addons/migrator.php:292
2190
+ msgid "This can easily destroy your site; so, use it with care!"
2191
+ msgstr "Toto může snad zničit vaši stránku, takže to používejte opatrně!"
2192
+
2193
+ #: addons/migrator.php:293
2194
+ msgid "A search/replace cannot be undone - are you sure you want to do this?"
2195
+ msgstr "Najít/nahradit nemůže být vráceno zpět - jste si jisti, že to chcete udělat?"
2196
+
2197
+ #: addons/migrator.php:304
2198
+ msgid "Go"
2199
+ msgstr "Začni"
2200
+
2201
+ #: restorer.php:1992
2202
+ msgid "Too many database errors have occurred - aborting"
2203
+ msgstr "Vyskytlo se příliš mnoho chyb databáze - přerušuji"
2204
+
2205
+ #: backup.php:895
2206
+ msgid "read more at %s"
2207
+ msgstr "čtete více na %s"
2208
+
2209
+ #: backup.php:895
2210
+ msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2211
+ msgstr "Emailové reporty vytvořené pomocí UpdraftPlus (verze zdarma) vám přináší UpdraftPlus.com novinky"
2212
+
2213
+ #: methods/googledrive.php:906
2214
+ msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2215
+ msgstr "Poznámka: Pokud nainstalujete UpdraftPlus na několika WordPress stránkách, nemůžete použít jeden projekt pro všechny. Pro každou stránku musíte v Google API konzoli vytvořit nový."
2216
+
2217
+ #: admin.php:4328
2218
+ msgid "You have not yet made any backups."
2219
+ msgstr "Zatím jste nevytvořili žádnou zálohu."
2220
+
2221
+ #: admin.php:3845
2222
+ msgid "Database Options"
2223
+ msgstr "Možnosti databáze"
2224
+
2225
+ #: admin.php:3142
2226
+ msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2227
+ msgstr "Tlačítka níže okamžitě vykonají zálohu bez ohledu na plánovači WordPressu. Pokud toto na rozdíl od naplánované zálohy funguje (neboli plánovaná záloha nevytvoří ani log soubor), znamená to, že je plánovač rozbitý."
2228
+
2229
+ #: admin.php:3106
2230
+ msgid "%s (%s used)"
2231
+ msgstr "%s (%s použito)"
2232
+
2233
+ #: admin.php:3109
2234
+ msgid "Plugins for debugging:"
2235
+ msgstr "Pluginy pro debugování:"
2236
+
2237
+ #: admin.php:3106
2238
+ msgid "Free disk space in account:"
2239
+ msgstr "Volné místo na disku pro účet:"
2240
+
2241
+ #: admin.php:330 admin.php:2404
2242
+ msgid "Current Status"
2243
+ msgstr "Současný stav"
2244
+
2245
+ #: admin.php:338 admin.php:1429 admin.php:1668 admin.php:2405 admin.php:2863
2246
+ msgid "Existing Backups"
2247
+ msgstr "Existující zálohy"
2248
+
2249
+ #: admin.php:2443 admin.php:5202
2250
+ msgid "This button is disabled because your backup directory is not writable (see the settings)."
2251
+ msgstr "Toto tlačítko je zakázané, protože se do vaší složky pro zálohy nedá zapisovat (podívejte se do nastavení)."
2252
+
2253
+ #: admin.php:765
2254
+ msgid "Welcome to UpdraftPlus!"
2255
+ msgstr "Vítejte v UpdraftPlus!"
2256
+
2257
+ #: admin.php:765
2258
+ msgid "To make a backup, just press the Backup Now button."
2259
+ msgstr "K vytvoření zálohy prostě stiskněte tlačítko Zálohovat nyní."
2260
+
2261
+ #: admin.php:765
2262
+ msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2263
+ msgstr "Ke změně výchozího nastavení toho, co se zálohuje, k nastavení naplánovaných záloh, k odeslání záloh na vzdálené uložiště (doporučujeme) a mnoho dalšího, jděte na záložku nastavení."
2264
+
2265
+ #: addons/moredatabase.php:338
2266
+ msgid "If you enter text here, it is used to encrypt database 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> 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)."
2267
+ msgstr "Pokud sem vložíte text, bude použit k šifrování zálohy databáze (Rijndael). <strong>Zaznamenejte si ho a neztraťte ho, nebo <em>budou</em> vaše zálohy k ničemu.</strong> Je to zároveň klíč k dešifrování záloh z tohoto admin prostředí (takže pokud ho změníte, nebude automatické dešifrování fungovat, dokud ho nezměníte zpět)."
2268
+
2269
+ #: addons/moredatabase.php:236
2270
+ msgid "Table prefix"
2271
+ msgstr "Prefix tabulky"
2272
+
2273
+ #: addons/moredatabase.php:237
2274
+ msgid "Test connection..."
2275
+ msgstr "Test spojení..."
2276
+
2277
+ #: addons/moredatabase.php:250
2278
+ msgid "Testing..."
2279
+ msgstr "Testuji..."
2280
+
2281
+ #: addons/moredatabase.php:153
2282
+ msgid "Backup non-WordPress tables contained in the same database as WordPress"
2283
+ msgstr "Záloha ne-WordPressových tabulek obsažených ve stejné databázi, jako WordPress"
2284
+
2285
+ #: addons/moredatabase.php:154
2286
+ msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
2287
+ msgstr "Pokud vaše databáze obsahuje extra tabulky, které nejsou součástí této WordPress instalace (měli byste vědět, jestli tomu tak je), pak aktivujte tuto možnost, abyste je také zazálohovaly."
2288
+
2289
+ #: addons/moredatabase.php:158
2290
+ msgid "Add an external database to backup..."
2291
+ msgstr "Přidat externí databázi do zálohy..."
2292
+
2293
+ #: addons/moredatabase.php:230
2294
+ msgid "Backup external database"
2295
+ msgstr "Zálohovat externí databázi"
2296
+
2297
+ #: addons/moredatabase.php:112
2298
+ msgid "%s table(s) found."
2299
+ msgstr "Tabulek nalezeno: %s."
2300
+
2301
+ #: addons/moredatabase.php:118
2302
+ msgid "%s total table(s) found; %s with the indicated prefix."
2303
+ msgstr "%s tabulek nalezeno celkem; %s s daným prefixem."
2304
+
2305
+ #: addons/moredatabase.php:136
2306
+ msgid "Connection succeeded."
2307
+ msgstr "Spojení úspěšné."
2308
+
2309
+ #: addons/moredatabase.php:138
2310
+ msgid "Connection failed."
2311
+ msgstr "Spojení se nezdařilo."
2312
+
2313
+ #: addons/moredatabase.php:153
2314
+ msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
2315
+ msgstr "Tato možnost způsobí, že budou zazálohovány i tabulky v MySQL databázi, které nepatří k WordPressu (identifikace je provedena pomocí chybějícího WordPress prefixu %s)."
2316
+
2317
+ #: addons/moredatabase.php:70
2318
+ msgid "user"
2319
+ msgstr "uživatel"
2320
+
2321
+ #: addons/moredatabase.php:72
2322
+ msgid "host"
2323
+ msgstr "host"
2324
+
2325
+ #: addons/moredatabase.php:74
2326
+ msgid "database name"
2327
+ msgstr "jméno databáze"
2328
+
2329
+ #: addons/moredatabase.php:85
2330
+ msgid "database connection attempt failed"
2331
+ msgstr "selhal pokus o připojení k databázi"
2332
+
2333
+ #: class-updraftplus.php:1250
2334
+ msgid "External database (%s)"
2335
+ msgstr "Externí databáze (%s)"
2336
+
2337
+ #: methods/googledrive.php:906
2338
+ msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2339
+ msgstr "Následujte tento odkaz do vaší Google API konzole a aktivujte tam Drive API a vytvořte Client ID v sekci API Access."
2340
+
2341
+ #: methods/googledrive.php:381
2342
+ msgid "failed to access parent folder"
2343
+ msgstr "nepodařilo se přistoupit k nadřazené složce"
2344
+
2345
+ #: addons/googlecloud.php:559 addons/onedrive.php:592
2346
+ #: methods/googledrive.php:338
2347
+ msgid "However, subsequent access attempts failed:"
2348
+ msgstr "Nicméně následné pokusy o připojení selhaly:"
2349
+
2350
+ #: admin.php:4472
2351
+ msgid "External database"
2352
+ msgstr "Externí databáze"
2353
+
2354
+ #: admin.php:3968
2355
+ msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2356
+ msgstr "Způsobí to, že se zde zobrazí i debug výstup ostatních pluginů - nebuďte proto překvapeni, že tomu tak je."
2357
+
2358
+ #: admin.php:3908
2359
+ msgid "Back up more databases"
2360
+ msgstr "Zálohovat více databází"
2361
+
2362
+ #: admin.php:3854
2363
+ msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2364
+ msgstr "Nechcete být špehování? UpdraftPlus Premium dokáže zálohu databáze šifrovat."
2365
+
2366
+ #: admin.php:3854
2367
+ msgid "It can also backup external databases."
2368
+ msgstr "Dokáže také zálohovat externí databáze."
2369
+
2370
+ #: admin.php:3866
2371
+ msgid "You can manually decrypt an encrypted database here."
2372
+ msgstr "Zde můžete ručně dešifrovat šifrovanou databázi."
2373
+
2374
+ #: admin.php:3884
2375
+ msgid "First, enter the decryption key"
2376
+ msgstr "Nejprve vložte dešifrovací klíč"
2377
+
2378
+ #: admin.php:3766
2379
+ msgid "use UpdraftPlus Premium"
2380
+ msgstr "použít UpdraftPlus Premium"
2381
+
2382
+ #: class-updraftplus.php:3543
2383
+ msgid "Decryption failed. The database file is encrypted."
2384
+ msgstr "Dešifrování selhalo. Soubor databáze je šifrován."
2385
+
2386
+ #: admin.php:1280
2387
+ msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2388
+ msgstr "Obnovena může být pouze WordPress databáze; s externí databází si budete muset poradit ručně."
2389
+
2390
+ #: restorer.php:1618 restorer.php:1937 restorer.php:1974 restorer.php:1987
2391
+ msgid "An error occurred on the first %s command - aborting run"
2392
+ msgstr "Při prvním %s příkazu nastala chyba - ruším běh"
2393
+
2394
+ #: backup.php:1353
2395
+ msgid "database connection attempt failed."
2396
+ msgstr "pokus o připojení k databázi selhal."
2397
+
2398
+ #: addons/moredatabase.php:93 backup.php:1353
2399
+ msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2400
+ msgstr "Připojení selhalo: zkontrolujte přístupové údaje, jestli server s databází běží a zda nebrání síťovému běhu firewall."
2401
+
2402
+ #: addons/google-enhanced.php:75
2403
+ msgid "In %s, path names are case sensitive."
2404
+ msgstr "V %s u cesty záleží na velikosti písmen."
2405
+
2406
+ #: addons/migrator.php:921
2407
+ msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2408
+ msgstr "Varování: domovská URL databáze (%s) je jiná, než jsme očekávali (%s)"
2409
+
2410
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2411
+ msgid "Enter the path of the %s folder you wish to use here."
2412
+ msgstr "Vložte cestu k %s složce, kterou zde chcete použít."
2413
+
2414
+ #: addons/google-enhanced.php:73 addons/onedrive.php:767
2415
+ msgid "If the folder does not already exist, then it will be created."
2416
+ msgstr "Pokud složka neexistuje, bude vytvořena."
2417
+
2418
+ #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2419
+ #: addons/onedrive.php:767
2420
+ msgid "e.g. %s"
2421
+ msgstr "např. %s"
2422
+
2423
+ #: addons/azure.php:522 addons/google-enhanced.php:73 addons/onedrive.php:767
2424
+ msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2425
+ msgstr "Pokud ji necháte prázdnou, bude záloha uložena do kořene vaší %s"
2426
+
2427
+ #: methods/openstack2.php:107
2428
+ msgid "Follow this link for more information"
2429
+ msgstr "Pro více informací následujte tento odkaz"
2430
+
2431
+ #: methods/openstack2.php:107
2432
+ msgid "Tenant"
2433
+ msgstr "Nájemník"
2434
+
2435
+ #: methods/openstack2.php:116
2436
+ msgid "Leave this blank, and a default will be chosen."
2437
+ msgstr "Pro zvolení výchozího nechte prázdné."
2438
+
2439
+ #: addons/azure.php:515 methods/openstack2.php:133
2440
+ msgid "Container"
2441
+ msgstr "Kontejner"
2442
+
2443
+ #: methods/addon-base.php:106
2444
+ msgid "failed to list files"
2445
+ msgstr "nepodařilo se získat seznam souborů"
2446
+
2447
+ #: methods/addon-base.php:208
2448
+ msgid "Failed to download"
2449
+ msgstr "Stahování se nezdařilo"
2450
+
2451
+ #: methods/addon-base.php:194 methods/addon-base.php:214
2452
+ msgid "Failed to download %s"
2453
+ msgstr "Stahování %s se nezdařilo"
2454
+
2455
+ #: methods/openstack2.php:94
2456
+ msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2457
+ msgstr "Získejte přihlašovací údaje od svého poskytovatele OpenStack Swift a pak vyberte jméno kontejneru, který chcete použít jako uložiště. Pokud daný kontejner neexistuje, bude pro vás vytvořen."
2458
+
2459
+ #: methods/openstack2.php:99 methods/openstack2.php:157
2460
+ msgid "authentication URI"
2461
+ msgstr "ověřovací URI"
2462
+
2463
+ #: methods/addon-base.php:75 methods/addon-base.php:80
2464
+ msgid "Failed to upload %s"
2465
+ msgstr "Nahrání %s se nezdařilo"
2466
+
2467
+ #: methods/dropbox.php:513 methods/dropbox.php:515
2468
+ msgid "Success:"
2469
+ msgstr "Úspěch:"
2470
+
2471
+ #: methods/dropbox.php:443 methods/dropbox.php:444
2472
+ msgid "Dropbox"
2473
+ msgstr "Dropbox"
2474
+
2475
+ #: addons/onedrive.php:773 methods/dropbox.php:444
2476
+ msgid "(You appear to be already authenticated)."
2477
+ msgstr "(Vypadá to, že již jste ověřeni)."
2478
+
2479
+ #: addons/onedrive.php:775 methods/dropbox.php:444
2480
+ 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 %s."
2481
+ msgstr "<strong>Poté</strong> co uložíte nastavení (kliknutím na \"Uložit změny\" níže), vraťte se sem a klikněte na tento odkaz pro dokončení ověření s %s."
2482
+
2483
+ #: addons/onedrive.php:772 methods/dropbox.php:443
2484
+ msgid "Authenticate with %s"
2485
+ msgstr "Ověření s %s"
2486
+
2487
+ #: methods/cloudfiles.php:409
2488
+ msgid "Error downloading remote file: Failed to download"
2489
+ msgstr "Chyba při stahování vzdáleného souboru: Nepodařilo se ho stáhnout"
2490
+
2491
+ #: methods/openstack-base.php:305
2492
+ msgid "The %s object was not found"
2493
+ msgstr "Objekt %s nebyl nalezen"
2494
+
2495
+ #: methods/openstack-base.php:387
2496
+ msgid "%s error - we accessed the container, but failed to create a file within it"
2497
+ msgstr "%s chyba - přistoupili jsme ke kontejneru, ale nepodařilo se nám v něm vytvořit soubor"
2498
+
2499
+ #: methods/openstack-base.php:388 methods/openstack-base.php:393
2500
+ msgid "Region: %s"
2501
+ msgstr "Oblast: %s"
2502
+
2503
+ #: methods/openstack-base.php:44 methods/openstack-base.php:228
2504
+ #: methods/openstack-base.php:297
2505
+ msgid "Could not access %s container"
2506
+ msgstr "Nepodařilo se přistoupit ke kontejneru %s"
2507
+
2508
+ #: addons/googlecloud.php:902 addons/onedrive.php:774 methods/dropbox.php:450
2509
+ #: methods/googledrive.php:955
2510
+ msgid "Account holder's name: %s."
2511
+ msgstr "Jméno držitele účtu: %s."
2512
+
2513
+ #: methods/openstack-base.php:36 methods/openstack-base.php:100
2514
+ #: methods/openstack-base.php:107 methods/openstack-base.php:220
2515
+ #: methods/openstack-base.php:285
2516
+ msgid "%s error - failed to access the container"
2517
+ msgstr "%s chyba - nepodařilo se přistoupit ke kontejneru"
2518
+
2519
+ #: methods/googledrive.php:935
2520
+ msgid "<strong>This is NOT a folder name</strong>."
2521
+ msgstr "<strong>Toto NENÍ název složky</strong>."
2522
+
2523
+ #: methods/googledrive.php:935
2524
+ msgid "It is an ID number internal to Google Drive"
2525
+ msgstr "Je to vnitřní ID Google Disku"
2526
+
2527
+ #: methods/googledrive.php:944
2528
+ msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2529
+ msgstr "Pokud chcete moct nastavit vlastní název složky, použijte UpdraftPlus Premium."
2530
+
2531
+ #: addons/google-enhanced.php:72 addons/onedrive.php:766
2532
+ #: methods/googledrive.php:931 methods/googledrive.php:941
2533
+ msgid "Folder"
2534
+ msgstr "Složka"
2535
+
2536
+ #: addons/googlecloud.php:579 methods/googledrive.php:358
2537
+ msgid "Name: %s."
2538
+ msgstr "Jméno: %s."
2539
+
2540
+ #: addons/googlecloud.php:254 addons/onedrive.php:351
2541
+ #: methods/googledrive.php:863
2542
+ msgid "%s download: failed: file not found"
2543
+ msgstr "%s stahování: selhalo: soubor nenalezen"
2544
+
2545
+ #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2546
+ msgid "This remote storage method (%s) requires PHP %s or later."
2547
+ msgstr "Toto vzdálené uložiště (%s) vyžaduje PHP %s, nebo novější."
2548
+
2549
+ #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2550
+ msgid "You will need to ask your web hosting company to upgrade."
2551
+ msgstr "Budete muset požádat svého poskytovatele o aktualizaci."
2552
+
2553
+ #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2554
+ msgid "Your %s version: %s."
2555
+ msgstr "Vaše %s verze: %s."
2556
+
2557
+ #: methods/googledrive.php:157
2558
+ msgid "Google Drive list files: failed to access parent folder"
2559
+ msgstr "Seznam souborů Google Disku: nelze přistoupit k rodičovské složce"
2560
+
2561
+ #: admin.php:5054
2562
+ msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2563
+ msgstr "Složka tématu (%s) nebyla nalezena, ale existuje její verze s malými písmeny; patřičně upravuji možnost databáze"
2564
+
2565
+ #: admin.php:3111
2566
+ msgid "Fetch"
2567
+ msgstr "Přinést"
2568
+
2569
+ #: admin.php:3113
2570
+ msgid "Call"
2571
+ msgstr "Zavolat"
2572
+
2573
+ #: addons/migrator.php:362 admin.php:2896 admin.php:3874
2574
+ msgid "This feature requires %s version %s or later"
2575
+ msgstr "Tato vlastnost vyžaduje %s verzi %s, nebo novější"
2576
+
2577
+ #: restorer.php:2116
2578
+ msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2579
+ msgstr "Detekován Elegant themes theme builder plugin: resetuji dočasnou složku"
2580
+
2581
+ #: restorer.php:106
2582
+ msgid "Failed to unpack the archive"
2583
+ msgstr "Nepodařilo se rozbalit archiv"
2584
+
2585
+ #: restorer.php:259
2586
+ msgid "%s files have been extracted"
2587
+ msgstr "%s souborů bylo rozbaleno"
2588
+
2589
+ #: class-updraftplus.php:923
2590
+ msgid "Error - failed to download the file"
2591
+ msgstr "Chyba - nepodařilo se stáhnout soubor"
2592
+
2593
+ #: admin.php:2880
2594
+ msgid "Rescan local folder for new backup sets"
2595
+ msgstr "Vyhledat nové zálohy v lokální složce"
2596
+
2597
+ #: udaddons/updraftplus-addons.php:208
2598
+ msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2599
+ msgstr "Pro zajištění kompatibility byste měli aktualizovat UpdraftPlus."
2600
+
2601
+ #: udaddons/updraftplus-addons.php:208
2602
+ msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
2603
+ msgstr "Nainstalovaná verze UpdraftPlus Backup/Restore nebyla testována na vaší verzi WordPressu (%s)."
2604
+
2605
+ #: udaddons/updraftplus-addons.php:208
2606
+ msgid "It has been tested up to version %s."
2607
+ msgstr "Byla testována do verze %s."
2608
+
2609
+ #: addons/sftp.php:425
2610
+ msgid "password/key"
2611
+ msgstr "heslo/klíč"
2612
+
2613
+ #: addons/sftp.php:47
2614
+ msgid "SCP/SFTP password/key"
2615
+ msgstr "SCP/SFTP heslo/klíč"
2616
+
2617
+ #: addons/sftp.php:308
2618
+ msgid "The key provided was not in a valid format, or was corrupt."
2619
+ msgstr "Vložený klíč není ve správném formátu, nebo je poškozen."
2620
+
2621
+ #: addons/sftp.php:371
2622
+ msgid "Your login may be either password or key-based - you only need to enter one, not both."
2623
+ msgstr "Vaše přihlášení může být založeno pouze na heslu, nebo klíči - vložte pouze jedno, ne oboje."
2624
+
2625
+ #: addons/azure.php:508 addons/migrator.php:2198 addons/sftp.php:376
2626
+ #: admin.php:535
2627
+ msgid "Key"
2628
+ msgstr "Klíč"
2629
+
2630
+ #: addons/importer.php:256 admin.php:4513 class-updraftplus.php:2267
2631
+ msgid "Backup created by: %s."
2632
+ msgstr "Zálohu vytvořil: %s."
2633
+
2634
+ #: admin.php:4519
2635
+ msgid "Files and database WordPress backup (created by %s)"
2636
+ msgstr "Záloha souborů a databáze WordPressu (vytvořil %s)"
2637
+
2638
+ #: admin.php:4519
2639
+ msgid "Files backup (created by %s)"
2640
+ msgstr "Záloha souborů (vytvořil %s)"
2641
+
2642
+ #: admin.php:4464 admin.php:4515
2643
+ msgid "unknown source"
2644
+ msgstr "neznámý zdroj"
2645
+
2646
+ #: admin.php:4470
2647
+ msgid "Database (created by %s)"
2648
+ msgstr "Databáze (vytvořil %s)"
2649
+
2650
+ #: admin.php:2881
2651
+ msgid "Rescan remote storage"
2652
+ msgstr "Znovu prohledat vzdálené uložiště"
2653
+
2654
+ #: admin.php:2879
2655
+ msgid "Upload backup files"
2656
+ msgstr "Nahrát soubory zálohy"
2657
+
2658
+ #: admin.php:2055
2659
+ msgid "This backup was created by %s, and can be imported."
2660
+ msgstr "Tuto zálohu vytvořil %s a může být importována."
2661
+
2662
+ #: admin.php:794
2663
+ msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
2664
+ msgstr "WordPress má {%d} zpožděných naplánovaných úkolů. Pokud není tato stránka vývojářská, je pravděpodobné, že plánovač ve vašem WordPressu nefunguje."
2665
+
2666
+ #: admin.php:794
2667
+ msgid "Read this page for a guide to possible causes and how to fix it."
2668
+ msgstr "Na této stránce je návod s možnými příčinami a opravami."
2669
+
2670
+ #: admin.php:499 admin.php:500 class-updraftplus.php:2274
2671
+ 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))."
2672
+ msgstr "Tento soubor nevypadá jako archiv se zálohou UpdraftPlus (takové soubory jsou .zip, nebo .gz soubory, které mají jméno ve tvaru: backup_(čas)_(název stránky)_(kód)_(typ).(zip|gz))."
2673
+
2674
+ #: admin.php:499
2675
+ msgid "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."
2676
+ msgstr "Nicméně archivy UpdraftPlus jsou běžné zip/SQL soubory - takže pokud si jste jisti, že má váš soubor správný formát, můžete ho přejmenovat, aby odpovídal danému vzoru."
2677
+
2678
+ #: admin.php:500 class-updraftplus.php:2274
2679
+ msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2680
+ msgstr "Pokud je toto záloha vytvořená jiným pluginem pro zálohu, pak by vám mohl pomoci UpdraftPlus Premium."
2681
+
2682
+ #: admin.php:1293 admin.php:4516 restorer.php:1337
2683
+ msgid "Backup created by unknown source (%s) - cannot be restored."
2684
+ msgstr "Záloha vytvořena neznámým zdrojem (%s) - nemůže být obnovena."
2685
+
2686
+ #: restorer.php:749 restorer.php:797
2687
+ msgid "The WordPress content folder (wp-content) was not found in this zip file."
2688
+ msgstr "Složka WordPressu s obsahem (wp-content) nebyla v tomto zip souboru nalezena."
2689
+
2690
+ #: restorer.php:614
2691
+ msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2692
+ msgstr "Tato verze UpdraftPlus neví, jak zpracovat tento typ cizí zálohy"
2693
+
2694
+ #: methods/dropbox.php:281
2695
+ msgid "%s returned an unexpected HTTP response: %s"
2696
+ msgstr "%s vrátil neočekávanou HTTP odpověď: %s"
2697
+
2698
+ #: addons/sftp.php:885
2699
+ msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2700
+ msgstr "UpdraftPlus modul pro tento typ přístupu k souborům (%s) nepodporuje výpis souborů"
2701
+
2702
+ #: methods/cloudfiles.php:234 methods/dropbox.php:262
2703
+ #: methods/openstack-base.php:95
2704
+ msgid "No settings were found"
2705
+ msgstr "Nebylo nalezeno žádné nastavení"
2706
+
2707
+ #: class-updraftplus.php:2395
2708
+ msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2709
+ msgstr "Jedna nebo více záloh byla přidána z prohledání vzdáleného uložiště; Upozorňujeme, že tyto zálohy nebudou automaticky smazány skrze \"ponechat\" nastavení; Pokud je budete chtít smazat, musíte to udělat ručně."
2710
+
2711
+ #: admin.php:468
2712
+ msgid "Rescanning remote and local storage for backup sets..."
2713
+ msgstr "Prohledávám vzdálená a lokální uložiště kvůli zálohám..."
2714
+
2715
+ #: addons/googlecloud.php:865 addons/googlecloud.php:880
2716
+ #: addons/s3-enhanced.php:46 addons/s3-enhanced.php:60
2717
+ msgid "(Read more)"
2718
+ msgstr "(Číst více)"
2719
+
2720
+ #: addons/migrator.php:738
2721
+ msgid "Adjusting multisite paths"
2722
+ msgstr "Nastavování vícestránkových (WPMU) cest"
2723
+
2724
+ #: addons/reporting.php:403
2725
+ msgid "Log all messages to syslog (only server admins are likely to want this)"
2726
+ msgstr "Logovat veškeré zprávy do syslogu (nastavení pouze pro správce serveru)"
2727
+
2728
+ #: addons/morefiles.php:217
2729
+ msgid "Add another..."
2730
+ msgstr "Přidat další..."
2731
+
2732
+ #: addons/morefiles.php:308
2733
+ msgid "No backup of directory: there was nothing found to back up"
2734
+ msgstr "Žádná záloha složky: nebylo nalezeno nic, co by se dalo zálohovat"
2735
+
2736
+ #: addons/moredatabase.php:229 addons/morefiles.php:212
2737
+ #: addons/morefiles.php:223
2738
+ msgid "Remove"
2739
+ msgstr "Odstranit"
2740
+
2741
+ #: methods/s3.php:750
2742
+ msgid "Other %s FAQs."
2743
+ msgstr "Ostatní frekventované otázky ohledně %s."
2744
+
2745
+ #: admin.php:3968
2746
+ msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
+ msgstr "Zaškrtněte, pokud chcete dostávat více informací a mailů o procesu záloh - užitečné pokud se něco pokazí."
2748
+
2749
+ #: addons/morefiles.php:262 admin.php:4106
2750
+ msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
2751
+ msgstr "Při vkládání více souborů/složek, je oddělujte čárkou. Pro objekty vrchní úrovně můžete na začátku, nebo na konci použít zástupný znak *."
2752
+
2753
+ #: restorer.php:2105
2754
+ msgid "Custom content type manager plugin data detected: clearing option cache"
2755
+ msgstr "Detekován plugin pro režii vlastního obsahu: mažu možnost cache"
2756
+
2757
+ #: methods/ftp.php:281
2758
+ msgid "encrypted FTP (explicit encryption)"
2759
+ msgstr "šifrované FTP (explicitní šifrování)"
2760
+
2761
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1367
2762
+ msgid "Your web server's PHP installation has these functions disabled: %s."
2763
+ msgstr "Instalace PHP na serveru má zakázány následující funkce: %s."
2764
+
2765
+ #: class-updraftplus.php:3770 methods/ftp.php:284 restorer.php:1368
2766
+ msgid "Your hosting company must enable these functions before %s can work."
2767
+ msgstr "Dokud váš provozovatel hostingu nepovolí tyto funkce, nebude %s pracovat."
2768
+
2769
+ #: methods/ftp.php:279
2770
+ msgid "regular non-encrypted FTP"
2771
+ msgstr "běžné nešifrované FTP"
2772
+
2773
+ #: methods/ftp.php:280
2774
+ msgid "encrypted FTP (implicit encryption)"
2775
+ msgstr "šifrované FTP (implicitní šifrování)"
2776
+
2777
+ #: restorer.php:1522
2778
+ msgid "Backup created by:"
2779
+ msgstr "Zálohu vytvořil:"
2780
+
2781
+ #: udaddons/options.php:482
2782
+ msgid "Available to claim on this site"
2783
+ msgstr "Dostupné pro tuto stránku"
2784
+
2785
+ #: udaddons/updraftplus-addons.php:229
2786
+ msgid "To maintain your access to support, please renew."
2787
+ msgstr "Pro udržení přístupu k podpoře, ho prosím obnovte."
2788
+
2789
+ #: udaddons/updraftplus-addons.php:217
2790
+ msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
2791
+ msgstr "Váš placený přístup k aktualizacím UpdraftPlus add-onů %s na této stránce vypršel."
2792
+
2793
+ #: udaddons/updraftplus-addons.php:221
2794
+ msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
2795
+ msgstr "Váš placený přístup k UpdraftPlus aktualizacím pro %s z %s add-onů na této stránce brzy vyprší."
2796
+
2797
+ #: udaddons/updraftplus-addons.php:221 udaddons/updraftplus-addons.php:223
2798
+ msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2799
+ msgstr "K zachování přístupu a udržení přístupu k aktualizacím (včetně budoucích novinek a kompatibility s budoucími vydáními WordPressu) a podpoře, ho prosím obnovte."
2800
+
2801
+ #: udaddons/updraftplus-addons.php:223
2802
+ msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
2803
+ msgstr "Placený přístup k aktualizacím UpdraftPlus na těchto stránkách brzy vyprší."
2804
+
2805
+ #: udaddons/updraftplus-addons.php:227
2806
+ msgid "Your paid access to UpdraftPlus support has expired."
2807
+ msgstr "Váš placený přístup k podpoře UpdraftPlus vypršel."
2808
+
2809
+ #: udaddons/updraftplus-addons.php:227
2810
+ msgid "To regain your access, please renew."
2811
+ msgstr "K obnovení přístupu, ho prosím obnovte."
2812
+
2813
+ #: udaddons/updraftplus-addons.php:229
2814
+ msgid "Your paid access to UpdraftPlus support will soon expire."
2815
+ msgstr "Placený přístup k UpdraftPlus podpoře brzy vyprší."
2816
+
2817
+ #: udaddons/updraftplus-addons.php:180
2818
+ msgid "Dismiss from main dashboard (for %s weeks)"
2819
+ msgstr "Odstranit z hlavní nástěnky (na %s týdnů)"
2820
+
2821
+ #: udaddons/updraftplus-addons.php:215
2822
+ msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
2823
+ msgstr "Placený přístup k UpdraftPlus aktualizacím pro tuto stránku vypršel. Nadále nebudete dostávat aktualizace pro UpdraftPlus."
2824
+
2825
+ #: udaddons/updraftplus-addons.php:215 udaddons/updraftplus-addons.php:217
2826
+ msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2827
+ msgstr "Pro obnovení přístupu k aktualizacím (včetně budoucích novinek a kompatibility s budoucími vydáními WordPressu) a podpoře, ho prosím obnovte."
2828
+
2829
+ #: class-updraftplus.php:3790
2830
+ msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
+ msgstr "Databázový soubor se zdá být dvakrát komprimovaný - stránka z které jste ho stáhli měl pravděpodobně špatně nastavený webserver."
2832
+
2833
+ #: class-updraftplus.php:3797 class-updraftplus.php:3818
2834
+ msgid "The attempt to undo the double-compression failed."
2835
+ msgstr "Pokus o dvojitou dekompresi selhal."
2836
+
2837
+ #: class-updraftplus.php:3820
2838
+ msgid "The attempt to undo the double-compression succeeded."
2839
+ msgstr "Pokus o dvojitou dekompresi byl úspěšný."
2840
+
2841
+ #: admin.php:1441
2842
+ msgid "Constants"
2843
+ msgstr "Konstanty"
2844
+
2845
+ #: backup.php:1566
2846
+ msgid "Failed to open database file for reading:"
2847
+ msgstr "Otevření souboru pro čtení selhalo:"
2848
+
2849
+ #: backup.php:1399
2850
+ msgid "please wait for the rescheduled attempt"
2851
+ msgstr "prosím počkejte na přeložený pokus"
2852
+
2853
+ #: backup.php:1401
2854
+ msgid "No database tables found"
2855
+ msgstr "V databázi nebyla nalezena žádná tabulka."
2856
+
2857
+ #: addons/reporting.php:185
2858
+ msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2859
+ msgstr "Berte na vědomí, že varovné zprávy jsou doporučené - proces zálohy se kvůli nim nezastaví. Místo toho poskytnou informace, které pro vás mohou být užitečné, nebo mohou poskytnout původce problému, pokud se záloha nezdaří."
2860
+
2861
+ #: restorer.php:2003
2862
+ msgid "Database queries processed: %d in %.2f seconds"
2863
+ msgstr "Zpracováno databázových dotazů: %d během %.2f vteřin"
2864
+
2865
+ #: addons/migrator.php:1237
2866
+ msgid "Searching and replacing reached row: %d"
2867
+ msgstr "Hledání a nahrazení dosáhlo řádek: %d"
2868
+
2869
+ #: addons/onedrive.php:91 methods/dropbox.php:176
2870
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
+ msgstr "Plný účet: na Vašem %s účtu zbývá pouze %d bytů prostoru, nahrávanému souboru zbývá %d bytů k úplnému nahrání (celková velikost: %d bytů)"
2872
+
2873
+ #: addons/migrator.php:661
2874
+ msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2875
+ msgstr "Přeskakuji tuto tabulku: data v této tabulce (%s) by neměly být vyhledány/změněny"
2876
+
2877
+ #: udaddons/updraftplus-addons.php:391 udaddons/updraftplus-addons.php:396
2878
+ msgid "Errors occurred:"
2879
+ msgstr "Objevily se chyby:"
2880
+
2881
+ #: admin.php:4727
2882
+ msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
+ msgstr "Pro stažení log souboru tohoto obnovení pokračujte zde (je třeba pro jakýkoliv požadavek podpory)."
2884
+
2885
+ #: admin.php:4012
2886
+ msgid "See this FAQ also."
2887
+ msgstr "Podívejte se i na tyto často kladené otázky."
2888
+
2889
+ #: admin.php:3814
2890
+ msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
2891
+ msgstr "Pokud si nezvolíte žádné vzdálené uložiště, zůstanou zálohy na tomto webserveru. To se nedoporučuje (pokud je ovšem nemáte v plánu ručně stáhnout do počítače), protože ztráta/zničení webserveru by znamenala ztracení jak webu, tak i záloh najednou."
2892
+
2893
+ #: admin.php:2969
2894
+ msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr "Získávám (pokud je potřeba) a připravuji soubory k zálohování..."
2896
+
2897
+ #: admin.php:1264
2898
+ msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
+ msgstr "PHP nastavení na tomto webserveru umožňuje, aby PHP běželo pouze %s sekund a nedovoluje, aby byl limit zvýšen. Pokud budete importovat velké množství dat a čas pro operaci obnovy vyprší, pak budete muset požádat svého poskytovatele hostingu o způsob, jak navýšit tento limit (nebo se pokusíte o obnovení kousek po kousku)."
2900
+
2901
+ #: restorer.php:605
2902
+ msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
+ msgstr "Existují nesmazané složky z předchozí obnovy (Než to zkusíte znovu, zmáčkněte prosím tlačítko \"Smazat staré složky\"): %s"
2904
+
2905
+ #: admin.php:769 class-updraftplus.php:568
2906
+ 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 recommended value is %s seconds or more)"
2907
+ msgstr "Čas, po který mohou pluginy WordPressu běžet je velmi malý (%s sekund) - měli byste zvýšit limit, abyste se vyhnuli chybám při zálohách způsobených nedostatkem času (pomoc konzultujte s vaším poskytovatelem hostingu - jde o nastavení PHP max_execution_time; doporučená hodnota je minimálně %s sekund)"
2908
+
2909
+ #: addons/migrator.php:669
2910
+ msgid "Replacing in blogs/site table: from: %s to: %s"
2911
+ msgstr "Nahrazení v tabulce blogu/stránky: z: %s na: %s"
2912
+
2913
+ #: addons/migrator.php:247
2914
+ msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
2915
+ msgstr "Deaktivován plugin: %s: až budete připraveni, plugin opět ručně aktivujte."
2916
+
2917
+ #: addons/migrator.php:260
2918
+ msgid "%s: Skipping cache file (does not already exist)"
2919
+ msgstr "%s: Přeskočen cache soubor (ještě neexistuje)"
2920
+
2921
+ #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
2922
+ #: includes/ftp.class.php:47
2923
+ msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
+ msgstr "Připojení %s vypršel čas; pokud jste server zadali správně, pak je tato chyba běžně způsobena blokací firewallu - doporučujeme konzultaci s poskytovatelem hostingu."
2925
+
2926
+ #: admin.php:5062
2927
+ msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
+ msgstr "Aktuální téma nebylo nalezeno; aby nedošlo k zastavení načítání stránky, bylo vaše téma vráceno zpět na původní"
2929
+
2930
+ #: admin.php:2247 admin.php:2257
2931
+ msgid "Restore failed..."
2932
+ msgstr "Obnova selhala..."
2933
+
2934
+ #: addons/moredatabase.php:125 admin.php:1514
2935
+ msgid "Messages:"
2936
+ msgstr "Zprávy:"
2937
+
2938
+ #: restorer.php:1884
2939
+ msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
+ msgstr "Byl nalezen řádek SQL, který nemůže být rozdělen a je větší, než maximální velikost paketu; tento řádek nebude proveden, ale bude vypuštěn: %s"
2941
+
2942
+ #: restorer.php:385
2943
+ msgid "The directory does not exist"
2944
+ msgstr "Složka neexistuje"
2945
+
2946
+ #: addons/cloudfiles-enhanced.php:247
2947
+ msgid "New User's Username"
2948
+ msgstr "Přihlašovací jméno nového uživatele"
2949
+
2950
+ #: addons/cloudfiles-enhanced.php:248
2951
+ msgid "New User's Email Address"
2952
+ msgstr "E-mailová adresa nového uživatele"
2953
+
2954
+ #: addons/cloudfiles-enhanced.php:225
2955
+ msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
+ msgstr "Vložte Rackspace administrátorské jméno/API klíč (takže Rackspace může ověřit vaše právo vytváření nových uživatelů) a vložte nové (jedinečné) uživatelské jméno a mailovou adresu pro nového uživatele a název kontejneru."
2957
+
2958
+ #: addons/cloudfiles-enhanced.php:231
2959
+ msgid "US or UK Rackspace Account"
2960
+ msgstr "Účet na US nebo UK Rackspace"
2961
+
2962
+ #: addons/cloudfiles-enhanced.php:245
2963
+ msgid "Admin Username"
2964
+ msgstr "Uživatelské jméno administrátora"
2965
+
2966
+ #: addons/cloudfiles-enhanced.php:246
2967
+ msgid "Admin API Key"
2968
+ msgstr "API klíč administrátora"
2969
+
2970
+ #: addons/cloudfiles-enhanced.php:55
2971
+ msgid "You need to enter a new username"
2972
+ msgstr "Musíte zadat nové uživatelské jméno"
2973
+
2974
+ #: addons/cloudfiles-enhanced.php:59
2975
+ msgid "You need to enter a container"
2976
+ msgstr "Musíte zadat kontejner"
2977
+
2978
+ #: addons/cloudfiles-enhanced.php:64
2979
+ msgid "You need to enter a valid new email address"
2980
+ msgstr "Musíte zadat správnou e-mailovou adresu"
2981
+
2982
+ #: addons/cloudfiles-enhanced.php:152
2983
+ msgid "Conflict: that user or email address already exists"
2984
+ msgstr "Konflikt: tento uživatel nebo e-mailová adresa již existuje"
2985
+
2986
+ #: addons/cloudfiles-enhanced.php:154 addons/cloudfiles-enhanced.php:158
2987
+ #: addons/cloudfiles-enhanced.php:163 addons/cloudfiles-enhanced.php:184
2988
+ #: addons/cloudfiles-enhanced.php:192 addons/cloudfiles-enhanced.php:197
2989
+ msgid "Cloud Files operation failed (%s)"
2990
+ msgstr "Neúspěšná operace s Cloud Files (%s)"
2991
+
2992
+ #: addons/cloudfiles-enhanced.php:209 addons/s3-enhanced.php:294
2993
+ msgid "Username: %s"
2994
+ msgstr "Uživatelské jméno: %s"
2995
+
2996
+ #: addons/cloudfiles-enhanced.php:209
2997
+ msgid "Password: %s"
2998
+ msgstr "Heslo: %s"
2999
+
3000
+ #: addons/cloudfiles-enhanced.php:209
3001
+ msgid "API Key: %s"
3002
+ msgstr "API klíč: %s"
3003
+
3004
+ #: addons/cloudfiles-enhanced.php:222
3005
+ msgid "Create new API user and container"
3006
+ msgstr "Vytvořit nového API uživatele a kontejner"
3007
+
3008
+ #: addons/cloudfiles-enhanced.php:26
3009
+ msgid "Rackspace Cloud Files, enhanced"
3010
+ msgstr "Rackspace Cloud Files, vylepšeno"
3011
+
3012
+ #: addons/cloudfiles-enhanced.php:27
3013
+ msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
+ msgstr "Přidejte vylepšené možnosti pro Rackspace Cloud Files uživatele"
3015
+
3016
+ #: addons/cloudfiles-enhanced.php:38
3017
+ msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
+ msgstr "Vytvořte nového API uživatele s přístupem pouze k tomuto kontejneru (spíš, než váš celý účet)"
3019
+
3020
+ #: addons/cloudfiles-enhanced.php:47
3021
+ msgid "You need to enter an admin username"
3022
+ msgstr "Je potřeba zadat uživatelské jméno administrátora"
3023
+
3024
+ #: addons/cloudfiles-enhanced.php:51
3025
+ msgid "You need to enter an admin API key"
3026
+ msgstr "Je potřeba zadat administrátorský API klíč"
3027
+
3028
+ #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:103
3029
+ msgid "Northern Virginia (IAD)"
3030
+ msgstr "Severní Virginia (IAD)"
3031
+
3032
+ #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:104
3033
+ msgid "Hong Kong (HKG)"
3034
+ msgstr "Hong Kong (HKG)"
3035
+
3036
+ #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:105
3037
+ msgid "London (LON)"
3038
+ msgstr "Londýn (LON)"
3039
+
3040
+ #: methods/cloudfiles-new.php:119
3041
+ msgid "Cloud Files Username"
3042
+ msgstr "Uživatelské jméno ke Cloud Files"
3043
+
3044
+ #: methods/cloudfiles-new.php:122
3045
+ msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr "K vytvoření nového Rackspace API pod-uživatele a API klíče, který má přístup pouze k tomuto Rackspace kontejneru, použijte tento add-on."
3047
+
3048
+ #: methods/cloudfiles-new.php:127
3049
+ msgid "Cloud Files API Key"
3050
+ msgstr "API klíč Cloud Files"
3051
+
3052
+ #: addons/cloudfiles-enhanced.php:269 methods/cloudfiles-new.php:132
3053
+ msgid "Cloud Files Container"
3054
+ msgstr "Kontejner Cloud Files"
3055
+
3056
+ #: methods/cloudfiles-new.php:85
3057
+ msgid "US or UK-based Rackspace Account"
3058
+ msgstr "US nebo UK účet Rackspace"
3059
+
3060
+ #: methods/cloudfiles-new.php:87
3061
+ msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
+ msgstr "Účty vytvořené na rackspacecloud.com jsou US účty; účty vytvořené na rackspace.co.uk jsou UK účty"
3063
+
3064
+ #: addons/cloudfiles-enhanced.php:250 methods/cloudfiles-new.php:95
3065
+ msgid "Cloud Files Storage Region"
3066
+ msgstr "Region Cloud Files úložiště"
3067
+
3068
+ #: addons/cloudfiles-enhanced.php:254 methods/cloudfiles-new.php:100
3069
+ msgid "Dallas (DFW) (default)"
3070
+ msgstr "Dallas (DFW) (výchozí)"
3071
+
3072
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:101
3073
+ msgid "Sydney (SYD)"
3074
+ msgstr "Sydney (SYD)"
3075
+
3076
+ #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:102
3077
+ msgid "Chicago (ORD)"
3078
+ msgstr "Chicago (ORD)"
3079
+
3080
+ #: addons/cloudfiles-enhanced.php:149 addons/s3-enhanced.php:197
3081
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
+ #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
+ #: methods/openstack2.php:25
3084
+ msgid "Authorisation failed (check your credentials)"
3085
+ msgstr "Ověření selhalo (zkontrolujte Vaše údaje)"
3086
+
3087
+ #: addons/cloudfiles-enhanced.php:232 methods/cloudfiles-new.php:85
3088
+ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr "Účty vytvořené na rackspacecloud.com jsou US účty; účty vytvořené na rackspace.co.uk jsou UK účty"
3090
+
3091
+ #: methods/updraftvault.php:509 udaddons/options.php:265
3092
+ msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr "Vyskytla se neznámá chyba při pokusu o připojení k UpdraftPlus.Com"
3094
+
3095
+ #: admin.php:513 central/bootstrap.php:443
3096
+ msgid "Create"
3097
+ msgstr "Vytvořit"
3098
+
3099
+ #: admin.php:475
3100
+ msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr "Konzolové heslo (již nebude znovu zobrazeno) nového uživatele RackSpace:"
3102
+
3103
+ #: admin.php:476
3104
+ msgid "Trying..."
3105
+ msgstr "Zkouším..."
3106
+
3107
+ #: class-updraftplus.php:1262
3108
+ msgid "(when decrypted)"
3109
+ msgstr "(po dešifrování)"
3110
+
3111
+ #: admin.php:486 admin.php:5004
3112
+ msgid "Error data:"
3113
+ msgstr "Chybová data:"
3114
+
3115
+ #: admin.php:4678
3116
+ msgid "Backup does not exist in the backup history"
3117
+ msgstr "Záloha neexistuje v historii záloh"
3118
+
3119
+ #: admin.php:3176
3120
+ msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3121
+ msgstr "Vaše WordPress instalace obsahuje staré složky ze stavu před obnovením/migrací (technická informace: tyto jsou označeny příponou -old). Jakmile ověříte, že obnova proběhla správně, měli byste je vymazat zmáčknutím tohoto tlačítka."
3122
+
3123
+ #: restorer.php:1590
3124
+ msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr "Abyste se vyhnuli překročení limitu pro velikost paketu, rozdělte řádek"
3126
+
3127
+ #: restorer.php:1471
3128
+ 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 (%s)"
3129
+ msgstr "Váš uživatel databáze nemá oprávnění k mazání složek (příkaz DROP). Pokusíme se o obnovu jejich pouhým vyprázdněním; to by se mělo podařit, pokud obnovujete WordPress se stejnou databázovou strukturou (%s)"
3130
+
3131
+ #: restorer.php:1515
3132
+ msgid "<strong>Backup of:</strong> %s"
3133
+ msgstr "<strong>Záloha:</strong> %s"
3134
+
3135
+ #: restorer.php:1297
3136
+ msgid "New table prefix: %s"
3137
+ msgstr "Předpona nové tabulky: %s"
3138
+
3139
+ #: restorer.php:956 restorer.php:970
3140
+ msgid "%s: This directory already exists, and will be replaced"
3141
+ msgstr "%s: Tato složka již existuje a bude nahrazena"
3142
+
3143
+ #: restorer.php:986
3144
+ msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3145
+ msgstr "Oprávnění souborů nedovoluje, aby byla stará data přesunuta a zachována; místo toho budou smazána."
3146
+
3147
+ #: restorer.php:103
3148
+ msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr "Nemohu přesunout soubory na místo. Zkontrolujte oprávnění souborů."
3150
+
3151
+ #: restorer.php:96
3152
+ msgid "Moving old data out of the way..."
3153
+ msgstr "Přesouvám stará data z cesty..."
3154
+
3155
+ #: restorer.php:100
3156
+ msgid "Could not move old files out of the way."
3157
+ msgstr "Nemohu přesunout stará data z cesty."
3158
+
3159
+ #: restorer.php:102
3160
+ msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr "Nemohu přesunout nová data na místo. Zkontrolujte vaši složku wp-content/upgrade."
3162
+
3163
+ #: addons/reporting.php:380
3164
+ msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3165
+ msgstr "Pokud chcete poslat report zálohy po jejím skončení, vložte adresy."
3166
+
3167
+ #: addons/reporting.php:394
3168
+ msgid "Add another address..."
3169
+ msgstr "Přidat další adresu..."
3170
+
3171
+ #: addons/reporting.php:287
3172
+ msgid " (with errors (%s))"
3173
+ msgstr "(s chybami (%s))"
3174
+
3175
+ #: addons/reporting.php:289
3176
+ msgid " (with warnings (%s))"
3177
+ msgstr "(s varováními (%s))"
3178
+
3179
+ #: addons/reporting.php:319
3180
+ msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3181
+ msgstr "V sekci \"Reportování\" můžete nastavit mailové adresy, které se mají použít."
3182
+
3183
+ #: class-updraftplus.php:1231 class-updraftplus.php:1233
3184
+ msgid "files: %s"
3185
+ msgstr "souborů: %s"
3186
+
3187
+ #: class-updraftplus.php:1258 class-updraftplus.php:1263
3188
+ msgid "%s checksum: %s"
3189
+ msgstr "%s kontrolní součet: %s"
3190
+
3191
+ #: addons/reporting.php:355
3192
+ msgid "Email reports"
3193
+ msgstr "Reporty pro mail"
3194
+
3195
+ #: addons/reporting.php:165
3196
+ msgid "Errors"
3197
+ msgstr "Chyby"
3198
+
3199
+ #: addons/reporting.php:180
3200
+ msgid "Warnings"
3201
+ msgstr "Varování"
3202
+
3203
+ #: addons/reporting.php:189
3204
+ msgid "Time taken:"
3205
+ msgstr "Potřebný čas:"
3206
+
3207
+ #: addons/reporting.php:190 admin.php:4291
3208
+ msgid "Uploaded to:"
3209
+ msgstr "Nahráno do:"
3210
+
3211
+ #: addons/reporting.php:235
3212
+ msgid "Debugging information"
3213
+ msgstr "Debug informace"
3214
+
3215
+ #: addons/reporting.php:123
3216
+ msgid "%d errors, %d warnings"
3217
+ msgstr "%d chyb, %d varování"
3218
+
3219
+ #: addons/reporting.php:137
3220
+ msgid "%d hours, %d minutes, %d seconds"
3221
+ msgstr "%d hodin, %d minut, %d vteřin"
3222
+
3223
+ #: addons/reporting.php:142
3224
+ msgid "Backup Report"
3225
+ msgstr "Zpráva o záloze"
3226
+
3227
+ #: addons/reporting.php:150
3228
+ msgid "Backup began:"
3229
+ msgstr "Začátek zálohování:"
3230
+
3231
+ #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:151
3232
+ msgid "Contains:"
3233
+ msgstr "Obsahuje:"
3234
+
3235
+ #: addons/reporting.php:162
3236
+ msgid "Errors / warnings:"
3237
+ msgstr "Chyby/varování:"
3238
+
3239
+ #: addons/onedrive.php:549 methods/dropbox.php:496
3240
+ msgid "%s authentication"
3241
+ msgstr "%s ověření"
3242
+
3243
+ #: addons/onedrive.php:549 class-updraftplus.php:309 methods/dropbox.php:496
3244
+ #: methods/dropbox.php:510 methods/dropbox.php:605
3245
+ msgid "%s error: %s"
3246
+ msgstr "%s chyby: %s"
3247
+
3248
+ #: addons/googlecloud.php:815 methods/dropbox.php:419
3249
+ msgid "%s logo"
3250
+ msgstr "%s logo"
3251
+
3252
+ #: methods/email.php:73
3253
+ msgid "Your site's admin email address (%s) will be used."
3254
+ msgstr "Bude použit mail administrátora vašich stránek (%s)."
3255
+
3256
+ #: methods/email.php:74
3257
+ msgid "For more options, use the \"%s\" add-on."
3258
+ msgstr "Pro více možností použijte \"%s\" add-on."
3259
+
3260
+ #: methods/s3.php:273
3261
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
+ msgstr "Požadovaný %s modul PHP není nainstalován - požádejte svého poskytovatele hostingu, aby ho povolil"
3263
+
3264
+ #: methods/dropbox.php:195
3265
+ msgid "%s did not return the expected response - check your log file for more details"
3266
+ msgstr "%s nevrátil požadovanou odpověď - pro více informací zkontrolujte log soubor"
3267
+
3268
+ #: admin.php:522 methods/updraftvault.php:260 methods/updraftvault.php:305
3269
+ #: udaddons/options.php:244
3270
+ msgid "Connect"
3271
+ msgstr "Připojit"
3272
+
3273
+ #: admin.php:3936
3274
+ msgid "For more reporting features, use the Reporting add-on."
3275
+ msgstr "Pro více reportovacích možností použijte Reporting add-on."
3276
+
3277
+ #: class-updraftplus.php:3616
3278
+ msgid "(version: %s)"
3279
+ msgstr "(verze: %s)"
3280
+
3281
+ #: addons/reporting.php:427 admin.php:466
3282
+ msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr "Mějte na vědomí, že mailové servery mívají limity pro velikost příloh; typicky okolo %s Mb; zálohy větší, než jakýkoliv limit pravděpodobně nedorazí."
3284
+
3285
+ #: addons/reporting.php:427 admin.php:465
3286
+ msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr "Pokud je povoleno uložiště přes mail, poslat zároveň celou zálohu"
3288
+
3289
+ #: backup.php:844
3290
+ msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr "Neznámá/nečekaná chyba - prosím kontaktujte podporu"
3292
+
3293
+ #: addons/reporting.php:232 backup.php:880
3294
+ msgid "The log file has been attached to this email."
3295
+ msgstr "K tomuto mailu byl připojen log soubor."
3296
+
3297
+ #: backup.php:886
3298
+ msgid "Backed up: %s"
3299
+ msgstr "Zálohováno: %s"
3300
+
3301
+ #: backup.php:925
3302
+ msgid "Backup contains:"
3303
+ msgstr "Záloha obsahuje:"
3304
+
3305
+ #: addons/reporting.php:149 backup.php:926
3306
+ msgid "Latest status:"
3307
+ msgstr "Poslední stav:"
3308
+
3309
+ #: admin.php:155 backup.php:836
3310
+ msgid "Files and database"
3311
+ msgstr "Soubory a databáze"
3312
+
3313
+ #: backup.php:838
3314
+ msgid "Files (database backup has not completed)"
3315
+ msgstr "Soubory (záloha databáze nebyla dokončena)"
3316
+
3317
+ #: backup.php:838
3318
+ msgid "Files only (database was not part of this particular schedule)"
3319
+ msgstr "Pouze soubory (tento plán neobsahoval zálohu databáze)"
3320
+
3321
+ #: backup.php:841
3322
+ msgid "Database (files backup has not completed)"
3323
+ msgstr "Databáze (záloha souboru nebyla dokončena)"
3324
+
3325
+ #: backup.php:841
3326
+ msgid "Database only (files were not part of this particular schedule)"
3327
+ msgstr "Pouze databáze (tento plán neobsahoval zálohu souborů)"
3328
+
3329
+ #: options.php:185
3330
+ msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
+ msgstr "Toto je WPMU (síťová) instalace."
3332
+
3333
+ #: options.php:185
3334
+ msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
+ msgstr "WPMU je podporováno s extra funkcemi prostřednictvím UpdraftPlus Premium, nebo Multisite add-onem."
3336
+
3337
+ #: options.php:185
3338
+ msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
3339
+ msgstr "Bez upgradu dovoluje UpdraftPlus <strong>každému</strong> administrátorovi blogu, který může upravovat nastavení pluginu, zálohovat (a nakládat s daty, včetně hesel) a obnovovat (zahrnuje vlastní úpravy, třeba změnu hesel) <strong>celou síť</strong>."
3340
+
3341
+ #: options.php:185
3342
+ msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr "(Toto se vztahuje na všechny pluginy WordPressu, pokud nebyly speciálně naprogramovány s WPMU podporou.)"
3344
+
3345
+ #: options.php:185
3346
+ msgid "UpdraftPlus warning:"
3347
+ msgstr "Varování UpdraftPlus:"
3348
+
3349
+ #: udaddons/options.php:488
3350
+ msgid "(or connect using the form on this page if you have already purchased it)"
3351
+ msgstr "(nebo se připojte pomocí formuláře na této stránce, pokud jste se již zakoupili)"
3352
+
3353
+ #: udaddons/options.php:457
3354
+ msgid "You've got it"
3355
+ msgstr "Máte to"
3356
+
3357
+ #: udaddons/options.php:459
3358
+ msgid "Your version: %s"
3359
+ msgstr "Vaše verze: %s"
3360
+
3361
+ #: udaddons/options.php:461 udaddons/options.php:463
3362
+ msgid "latest"
3363
+ msgstr "nedávné"
3364
+
3365
+ #: udaddons/options.php:471
3366
+ msgid "please follow this link to update the plugin in order to get it"
3367
+ msgstr "Pokud chcete získat aktualizaci pluginu, následujte tento odkaz"
3368
+
3369
+ #: udaddons/options.php:474
3370
+ msgid "please follow this link to update the plugin in order to activate it"
3371
+ msgstr "Pokud chcete aktivovat aktualizaci pluginu, následujte tento odkaz"
3372
+
3373
+ #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3374
+ msgid "UpdraftPlus Addons"
3375
+ msgstr "UpdraftPlus Addony"
3376
+
3377
+ #: udaddons/options.php:381
3378
+ msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3379
+ msgstr "Je k dispozici aktualizace pro UpdraftPlus addony, které používáte - pro získání následujte odkaz."
3380
+
3381
+ #: udaddons/options.php:423
3382
+ msgid "UpdraftPlus Support"
3383
+ msgstr "Podpora UpdraftPlus"
3384
+
3385
+ #: udaddons/updraftplus-addons.php:682
3386
+ msgid "UpdraftPlus.Com responded, but we did not understand the response"
3387
+ msgstr "UpdraftPlus.Com odpověděl, ale odpovědi jsme nerozuměli"
3388
+
3389
+ #: methods/updraftvault.php:555 udaddons/updraftplus-addons.php:725
3390
+ msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
+ msgstr "UpdraftPlus.Com vrátil odpověď, které nerozumíme (data: %s)"
3392
+
3393
+ #: methods/updraftvault.php:596 udaddons/updraftplus-addons.php:765
3394
+ msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
+ msgstr "UpdraftPlus.Com nerozpoznal vaši mailovou adresu a heslo"
3396
+
3397
+ #: methods/updraftvault.php:582 methods/updraftvault.php:600
3398
+ #: udaddons/updraftplus-addons.php:768
3399
+ msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
+ msgstr "UpdraftPlus.Com vrátil odpověď, které nerozumíme"
3401
+
3402
+ #: udaddons/options.php:94
3403
+ msgid "An update is available for UpdraftPlus - please follow this link to get it."
3404
+ msgstr "Je k dospozici aktualizace UpdraftPlus - pro získání následujte tento odkaz."
3405
+
3406
+ #: udaddons/updraftplus-addons.php:680
3407
+ msgid "We failed to successfully connect to UpdraftPlus.Com"
3408
+ msgstr "Nepodařilo se nám připojit k UpdraftPlus.Com"
3409
+
3410
+ #: admin.php:3917 methods/email.php:74
3411
+ msgid "Reporting"
3412
+ msgstr "Reportování"
3413
+
3414
+ #: admin.php:1412
3415
+ msgid "Options (raw)"
3416
+ msgstr "Možnosti (holé)"
3417
+
3418
+ #: addons/reporting.php:425 admin.php:464
3419
+ msgid "Send a report only when there are warnings/errors"
3420
+ msgstr "Poslat report pouze pokud nastanou varování/chyby"
3421
+
3422
+ #: restorer.php:1533
3423
+ msgid "Content URL:"
3424
+ msgstr "URL obsahu:"
3425
+
3426
+ #: restorer.php:100
3427
+ msgid "You should check the file ownerships and permissions in your WordPress installation"
3428
+ msgstr ""
3429
+
3430
+ #: admin.php:3840
3431
+ msgid "See also the \"More Files\" add-on from our shop."
3432
+ msgstr "Podívejte se také na \"More Files\" add-on z našeho obchodu."
3433
+
3434
+ #: backup.php:2931 class-updraftplus.php:588
3435
+ msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
+ msgstr "Máte velmi málo volného místa na vašem hostingovém účtu - zbývá pouze %s Mb"
3437
+
3438
+ #: class-updraftplus.php:565
3439
+ 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)"
3440
+ msgstr "Množství paměti (RAM) povolené pro PHP je velmi malé (%s Mb) - pokud se chcete vyhnout chybám způsobeným nedostatečnou pamětí, zvyšte ji (pro více pomoci kontaktujte vašeho správce hostingu)"
3441
+
3442
+ #: udaddons/options.php:484
3443
+ msgid "You have an inactive purchase"
3444
+ msgstr "Máte neaktivní objednávku"
3445
+
3446
+ #: udaddons/options.php:482 udaddons/options.php:484
3447
+ msgid "activate it on this site"
3448
+ msgstr "aktivujte ji na této stránce"
3449
+
3450
+ #: udaddons/options.php:488
3451
+ msgid "Get it from the UpdraftPlus.Com Store"
3452
+ msgstr "Získat z obchodu UpdraftPlus.Com"
3453
+
3454
+ #: udaddons/options.php:489
3455
+ msgid "Buy It"
3456
+ msgstr "Koupit"
3457
+
3458
+ #: udaddons/options.php:547
3459
+ msgid "Manage Addons"
3460
+ msgstr "Spravovat addony"
3461
+
3462
+ #: udaddons/options.php:340
3463
+ msgid "An unknown response was received. Response was:"
3464
+ msgstr "Byla přijata neznámá odpověď. Odpověď byla:"
3465
+
3466
+ #: udaddons/options.php:407
3467
+ msgid "An error occurred when trying to retrieve your add-ons."
3468
+ msgstr "Při obnově vašich add-onů došlo k chybě."
3469
+
3470
+ #: udaddons/options.php:425
3471
+ msgid "Need to get support?"
3472
+ msgstr "Potřebujete podporu?"
3473
+
3474
+ #: udaddons/options.php:425
3475
+ msgid "Go here"
3476
+ msgstr "Jděte sem"
3477
+
3478
+ #: udaddons/options.php:465
3479
+ msgid "(apparently a pre-release or withdrawn release)"
3480
+ msgstr "(zřejmě před-verze, nebo uzavřená verze)"
3481
+
3482
+ #: udaddons/options.php:471
3483
+ msgid "Available for this site (via your all-addons purchase)"
3484
+ msgstr "Povolit pro tuto stránku (skrze vaši objednávku add-onů)"
3485
+
3486
+ #: udaddons/options.php:474
3487
+ msgid "Assigned to this site"
3488
+ msgstr "Přiděleno této stránce"
3489
+
3490
+ #: udaddons/options.php:242
3491
+ msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3492
+ msgstr "Chcete vědět o bezpečí vašeho hesla u UpdraftPlus.Com? Čtěte zde."
3493
+
3494
+ #: udaddons/options.php:271
3495
+ msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
3496
+ msgstr "Právě <strong>jste připojeni</strong> ke svému UpDraftPlus.Com účtu."
3497
+
3498
+ #: udaddons/options.php:272
3499
+ msgid "If you bought new add-ons, then follow this link to refresh your connection"
3500
+ msgstr "Pokud jste si koupili nové add-ony, následujte tento odkaz k obnově vašeho připojení"
3501
+
3502
+ #: udaddons/options.php:281
3503
+ msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
3504
+ msgstr "Právě <strong>nejste připojeni</strong> ke svému UpDraftPlus.Com účtu."
3505
+
3506
+ #: udaddons/options.php:290
3507
+ msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
3508
+ msgstr "Při snaza o připojení k UpdraftPlus.Com nastaly tyto chyby:"
3509
+
3510
+ #: udaddons/options.php:337
3511
+ msgid "Please wait whilst we make the claim..."
3512
+ msgstr "Vytváříme požadavek, prosím čekejte..."
3513
+
3514
+ #: udaddons/options.php:339
3515
+ msgid "Claim not granted - your account login details were wrong"
3516
+ msgstr "Povolení nebylo uděleno - vaše přihlašovací údaje nebyly správné"
3517
+
3518
+ #: udaddons/options.php:120
3519
+ msgid "Your web server's version of PHP is too old ("
3520
+ msgstr "Verze PHP na vašem webserveru je příliš stará ("
3521
+
3522
+ #: udaddons/options.php:141
3523
+ msgid "Connect with your UpdraftPlus.Com account"
3524
+ msgstr "Spojit s vaším UpdraftPlus.Com účtem"
3525
+
3526
+ #: udaddons/options.php:172
3527
+ msgid "Not yet got an account (it's free)? Go get one!"
3528
+ msgstr "Stále ještě nemáte účet (je zdarma)? Získejte ho!"
3529
+
3530
+ #: udaddons/options.php:183
3531
+ msgid "Forgotten your details?"
3532
+ msgstr "Zapomněli jste své údaje?"
3533
+
3534
+ #: udaddons/options.php:100
3535
+ msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
3536
+ msgstr "K tomu abyste mohli procházet zakoupené add-ony se musíte přihlásit vaším UpdraftPlus.Com účtem."
3537
+
3538
+ #: udaddons/options.php:100 udaddons/options.php:102
3539
+ msgid "Go here to connect."
3540
+ msgstr "Pro připojení jděte sem."
3541
+
3542
+ #: udaddons/options.php:109
3543
+ msgid "UpdraftPlus is not yet activated."
3544
+ msgstr "UpdraftPlus stále není aktivován."
3545
+
3546
+ #: udaddons/options.php:110
3547
+ msgid "Go here to activate it."
3548
+ msgstr "Pro aktivaci jděte sem."
3549
+
3550
+ #: udaddons/options.php:113
3551
+ msgid "UpdraftPlus is not yet installed."
3552
+ msgstr "UpdraftPlus ještě není nainstalován."
3553
+
3554
+ #: udaddons/options.php:113
3555
+ msgid "Go here to begin installing it."
3556
+ msgstr "Chcete-li začít instalaci, jděte sem."
3557
+
3558
+ #: udaddons/options.php:114
3559
+ msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
3560
+ msgstr "Zdá se, že máte nainstalovaný zastaralý Updraft plugin - možná zmatení?"
3561
+
3562
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3563
+ msgid "Your web-server does not have the %s module installed."
3564
+ msgstr "Váš webserver nemá nainstalovaný %s modul."
3565
+
3566
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3567
+ msgid "Without it, encryption will be a lot slower."
3568
+ msgstr "Bez něho bude šifrování mnohem pomalejší."
3569
+
3570
+ #: admin.php:2902
3571
+ msgid "Drop backup files here"
3572
+ msgstr "Sem přesuňte soubory zálohy"
3573
+
3574
+ #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
+ msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
+ msgstr "(<strong>Zdá se, že jste již byli ověřeni,</strong> ale můžete být ověřeni znovu k obnově vašeho přístupu, pokud máte problém.)"
3577
+
3578
+ #: class-updraftplus.php:3472
3579
+ msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
+ msgstr "Chcete více funkcí, nebo placenou garantovanou podporu? Pak jděte na UpdraftPlus.Com"
3581
+
3582
+ #: class-updraftplus.php:3482
3583
+ msgid "Check out WordShell"
3584
+ msgstr "Podívejte se na WordShell"
3585
+
3586
+ #: class-updraftplus.php:3482
3587
+ msgid "manage WordPress from the command line - huge time-saver"
3588
+ msgstr "správa WordPressu přes příkazový řádek - velký spořič času"
3589
+
3590
+ #: admin.php:472
3591
+ msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
+ msgstr "Proces obnovy začal. Nemačkejte stop, ani nezavírejte prohlížeč, dokud se proces neoznačí za dokončený."
3593
+
3594
+ #: admin.php:474
3595
+ msgid "The web server returned an error code (try again, or check your web server logs)"
3596
+ msgstr "Webserver vrátil chybový kód (zkuste to znovu, nebo zkontrolujte logy webserveru)"
3597
+
3598
+ #: admin.php:470
3599
+ msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
+ msgstr "Pokud ze zálohy vyjmete databázi i soubory, pak jste vyjmuli všechno!"
3601
+
3602
+ #: restorer.php:1527
3603
+ msgid "Site home:"
3604
+ msgstr "Úvodní stránka:"
3605
+
3606
+ #: addons/morestorage.php:78
3607
+ msgid "Remote Storage Options"
3608
+ msgstr "Možnosti vzdáleného uložiště"
3609
+
3610
+ #: addons/autobackup.php:249 addons/autobackup.php:985
3611
+ msgid "Remember this choice for next time (you will still have the chance to change it)"
3612
+ msgstr "Zapamatovat tuto volbu pro příště (stále budete mít možnost ji změnit)"
3613
+
3614
+ #: addons/autobackup.php:288 addons/autobackup.php:381
3615
+ msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
3616
+ msgstr "(logy jsou k dispozici v stránce nastavení UpdraftPlus jako normálně)..."
3617
+
3618
+ #: addons/azure.php:349 methods/stream-base.php:125 methods/stream-base.php:130
3619
+ msgid "Upload failed"
3620
+ msgstr "Nahrávání selhalo"
3621
+
3622
+ #: admin.php:3806
3623
+ msgid "You can send a backup to more than one destination with an add-on."
3624
+ msgstr "S add-onem můžete zálohu odeslat na více, než jedno místo."
3625
+
3626
+ #: admin.php:3394
3627
+ 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."
3628
+ msgstr "Poznámka: ukazatel postupu je založen na fázích, NE čase. Nezastavujte zálohu jen proto, že to vypadá, že se nic neděje - to je normální."
3629
+
3630
+ #: admin.php:3292
3631
+ msgid "(%s%%, file %s of %s)"
3632
+ msgstr "(%s%%, soubor %s z %s)"
3633
+
3634
+ #: addons/sftp.php:483
3635
+ msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
3636
+ msgstr "Chyba: Byli jsme schopni se přihlásit a přesunout se do dané složky, ale nemohli jsme vytvořit soubor."
3637
+
3638
+ #: addons/sftp.php:485
3639
+ msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
3640
+ msgstr "Chyba: Byli jsme schopni se přihlásit, ale nemohli jsme vytvořit soubor."
3641
+
3642
+ #: addons/autobackup.php:249 addons/autobackup.php:989 addons/lockadmin.php:132
3643
+ msgid "Read more about how this works..."
3644
+ msgstr "Jak toto funguje? Čtěte více..."
3645
+
3646
+ #: addons/sftp.php:402
3647
+ msgid "Use SCP instead of SFTP"
3648
+ msgstr "Použijte SCP místo SFTP"
3649
+
3650
+ #: addons/sftp.php:45
3651
+ msgid "SCP/SFTP host setting"
3652
+ msgstr "SCP/SFTP nastavení hosta"
3653
+
3654
+ #: addons/sftp.php:46
3655
+ msgid "SCP/SFTP user setting"
3656
+ msgstr "SCP/SFTP nastavení uživatele"
3657
+
3658
+ #: methods/email.php:45
3659
+ msgid "Backup is of: %s."
3660
+ msgstr "Záloha je z: %s."
3661
+
3662
+ #: methods/email.php:58
3663
+ msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
+ msgstr "Pokus o odeslání zálohy mailem selhal (pravděpodobně byla záloha pro tuto metodu příliš velká)"
3665
+
3666
+ #: admin.php:559
3667
+ msgid "%s settings test result:"
3668
+ msgstr "%s nastavení testovací výsledek:"
3669
+
3670
+ #: admin.php:4584
3671
+ 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."
3672
+ msgstr "Pokud vidíte více záloh, než byste chtěli, je to pravděpodobně proto, že se staré zálohy nesmažou, dokud není nová hotová."
3673
+
3674
+ #: admin.php:4582 admin.php:4584
3675
+ msgid "(Not finished)"
3676
+ msgstr "(Neskončeno)"
3677
+
3678
+ #: admin.php:3995
3679
+ 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)."
3680
+ msgstr "Sem bude UpdraftPlus ukládat zip soubory, které bude vytvářet. Do složky musí být povolený zápis. Umístění je relativní vzhledem ke složce obsahu (v základu ke složce wp-content)."
3681
+
3682
+ #: admin.php:3995
3683
+ msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
+ msgstr "<b>Neumisťujte</b> ji do složky uploads, nebo plugins, protože by to způsobilo rekurzi (záloha zálohy zálohy zálohy...)"
3685
+
3686
+ #: admin.php:3301
3687
+ msgid "Waiting until scheduled time to retry because of errors"
3688
+ msgstr "Došlo k chybám, s dalším pokusem čekám na naplánovaný čas"
3689
+
3690
+ #: admin.php:3306
3691
+ msgid "Backup finished"
3692
+ msgstr "Záloha dokončena"
3693
+
3694
+ #: admin.php:3356 central/bootstrap.php:405 central/bootstrap.php:412
3695
+ #: methods/updraftvault.php:340 methods/updraftvault.php:420
3696
+ msgid "Unknown"
3697
+ msgstr "Neznámý"
3698
+
3699
+ #: admin.php:3373
3700
+ msgid "next resumption: %d (after %ss)"
3701
+ msgstr "další pokračování: %d (po %ss)"
3702
+
3703
+ #: admin.php:3374
3704
+ msgid "last activity: %ss ago"
3705
+ msgstr "poslední aktivita: před %ss"
3706
+
3707
+ #: admin.php:3389
3708
+ msgid "Job ID: %s"
3709
+ msgstr "ID operace: %s"
3710
+
3711
+ #: admin.php:3333
3712
+ msgid "table: %s"
3713
+ msgstr "tabulka: %s"
3714
+
3715
+ #: admin.php:3320
3716
+ msgid "Created database backup"
3717
+ msgstr "Záloha databáze vytvořena"
3718
+
3719
+ #: admin.php:3346
3720
+ msgid "Encrypting database"
3721
+ msgstr "Šifrování databáze"
3722
+
3723
+ #: admin.php:3354
3724
+ msgid "Encrypted database"
3725
+ msgstr "Databáze zašifrována"
3726
+
3727
+ #: admin.php:3285
3728
+ msgid "Uploading files to remote storage"
3729
+ msgstr "Nahrávám soubory do vzdáleného uložiště"
3730
+
3731
+ #: admin.php:3297
3732
+ msgid "Pruning old backup sets"
3733
+ msgstr "Odstraňuji staré zálohy"
3734
+
3735
+ #: admin.php:3266
3736
+ msgid "Creating file backup zips"
3737
+ msgstr "Vytvářím zálohové zip soubory"
3738
+
3739
+ #: admin.php:3279
3740
+ msgid "Created file backup zips"
3741
+ msgstr "Zálohové zip soubory vytvořeny"
3742
+
3743
+ #: admin.php:3331
3744
+ msgid "Creating database backup"
3745
+ msgstr "Vytvářím zálohu databáze"
3746
+
3747
+ #: admin.php:3261
3748
+ msgid "Backup begun"
3749
+ msgstr "Záloha začala"
3750
+
3751
+ #: admin.php:2789
3752
+ msgid "Backups in progress:"
3753
+ msgstr "Průběh zálohy:"
3754
+
3755
+ #: admin.php:773
3756
+ 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."
3757
+ msgstr "Ve vaší instalaci WordPressu je pomocí DISABLE_WP_CRON zakázán plánovač. Nemůže být provedena žádná záloha (dokonce ani &quot;Zálohovat nyní&quot;), pokud nespouštíte plánovač ručně, nebo dokud ho nepovolíte."
3758
+
3759
+ #: restorer.php:580 restorer.php:587
3760
+ msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
+ msgstr "UpdraftPlus potřebuje vytvořit ve složce obsahu %s, ale selhal - zkontrolujte prosím oprávnění souborů a povolte přístup (%s)"
3762
+
3763
+ #: restorer.php:580
3764
+ msgid "folder"
3765
+ msgstr "složka"
3766
+
3767
+ #: restorer.php:587
3768
+ msgid "file"
3769
+ msgstr "soubor"
3770
+
3771
+ #: class-updraftplus.php:2492
3772
+ msgid "The backup has not finished; a resumption is scheduled"
3773
+ msgstr "Záloha nebyla dokončena; pokračování je naplánováno"
3774
+
3775
+ #: class-updraftplus.php:1502
3776
+ msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
+ msgstr "Vaše stránka je navštěvována nepravidelně a UpdraftPlus nezískal výsledek v jaký doufal; prosím přečtěte si tuto stránku:"
3778
+
3779
+ #: addons/googlecloud.php:337 addons/onedrive.php:687
3780
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
+ #: methods/googledrive.php:239
3782
+ 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)."
3783
+ msgstr "%s autentifikace nemohla proběhnout, protože ji přerušilo něco na vaší stránce. Zkuste zakázat ostatní pluginy a přepnout na základní téma. (Zaměřte se hlavně na komponenty, které vyvolávají výstup (nejspíše PHP varování/chyby) před začátkem stránky. Vypnutí veškerých nastavení debugu může také pomoct.)"
3784
+
3785
+ #: admin.php:2370
3786
+ 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)."
3787
+ msgstr "Limit paměti pro PHP (nastavený poskytovatelem hostingu) je velmi nízký. UpdraftPlus se ho pokusil zvýšit, ale neuspěl. Tento plugin může mít problémy, pokud je limit nastavený na hodnotu menší, než 64 Mb - obzvláště, pokud nahráváte velké soubory (na druhou stranu stačí mnoha webům pouze 32 Mb - záleží na konkrétním případu)."
3788
+
3789
+ #: addons/autobackup.php:113 addons/autobackup.php:972
3790
+ msgid "UpdraftPlus Automatic Backups"
3791
+ msgstr "Automatické zálohy UpdraftPlus"
3792
+
3793
+ #: addons/autobackup.php:993
3794
+ msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
3795
+ msgstr "Po stisku tlačítka Pokračovat počkejte na dokončení zálohy a nepřerušujte ji."
3796
+
3797
+ #: addons/autobackup.php:994 admin.php:515
3798
+ msgid "Proceed with update"
3799
+ msgstr "Pokračovat s aktualizací"
3800
+
3801
+ #: addons/autobackup.php:292 addons/autobackup.php:388
3802
+ msgid "Starting automatic backup..."
3803
+ msgstr "Zahajuji automatickou zálohu..."
3804
+
3805
+ #: addons/autobackup.php:342
3806
+ msgid "plugins"
3807
+ msgstr "pluginy"
3808
+
3809
+ #: addons/autobackup.php:349
3810
+ msgid "themes"
3811
+ msgstr "témata"
3812
+
3813
+ #: addons/autobackup.php:370
3814
+ msgid "You do not have sufficient permissions to update this site."
3815
+ msgstr "K aktualizaci této stránky nemáte dostatečná oprávnění."
3816
+
3817
+ #: addons/autobackup.php:381
3818
+ msgid "Creating database backup with UpdraftPlus..."
3819
+ msgstr "Vytvářím zálohu databáze pomocí UpdraftPlus..."
3820
+
3821
+ #: addons/autobackup.php:390 addons/autobackup.php:518
3822
+ #: addons/autobackup.php:569
3823
+ msgid "Automatic Backup"
3824
+ msgstr "Automatická záloha"
3825
+
3826
+ #: addons/autobackup.php:443
3827
+ msgid "Creating backup with UpdraftPlus..."
3828
+ msgstr "Vytvářím zálohu pomocí UpdraftPlus..."
3829
+
3830
+ #: addons/autobackup.php:471
3831
+ msgid "Errors have occurred:"
3832
+ msgstr "Objevily se chyby:"
3833
+
3834
+ #: addons/autobackup.php:249
3835
+ msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3836
+ msgstr "Před aktualizací automaticky zálohovat (kde je to relevantní) pluginy, témata a databázi WordPressu pomocí UpdraftPlus"
3837
+
3838
+ #: addons/autobackup.php:288
3839
+ msgid "Creating %s and database backup with UpdraftPlus..."
3840
+ msgstr "Vytvářím %s a zálohu databáze pomocí UpdraftPlus..."
3841
+
3842
+ #: addons/morefiles.php:106
3843
+ msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
3844
+ msgstr "Nepodařilo se přečíst zip soubor (%s) - nepodařilo se provést před-sken pro zkontrolování integrity."
3845
+
3846
+ #: addons/morefiles.php:116
3847
+ msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
3848
+ msgstr "Nepodařilo se otevřít zip soubor (%s) - nepodařilo se provést před-sken pro zkontrolování integrity."
3849
+
3850
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3851
+ msgid "This does not look like a valid WordPress core backup - the file %s was missing."
3852
+ msgstr "Toto nevypadá jako správná záloha jádra WordPressu - soubor %s chybí."
3853
+
3854
+ #: addons/morefiles.php:163 addons/morefiles.php:164
3855
+ msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
3856
+ msgstr "Pokud si nejste jisti, měli byste přestat, jinak si můžete zničit vaši WordPress instalaci."
3857
+
3858
+ #: admin.php:2171 admin.php:2561
3859
+ msgid "Support"
3860
+ msgstr "Podpora"
3861
+
3862
+ #: admin.php:2174
3863
+ msgid "More plugins"
3864
+ msgstr "Víc pluginů"
3865
+
3866
+ #: class-updraftplus.php:3649
3867
+ 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."
3868
+ msgstr "Importujete z novější verze WordPressu (%s) na starší (%s). Není žádná záruka, že to WordPress zvládne."
3869
+
3870
+ #: class-updraftplus.php:3752
3871
+ msgid "This database backup is missing core WordPress tables: %s"
3872
+ msgstr "V této záloze databáze chybí základní WordPress tabulky: %s"
3873
+
3874
+ #: class-updraftplus.php:3757
3875
+ msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
+ msgstr "UpdraftPlus nedokázal při skenu zálohy databáze najít prefix tabulek."
3877
+
3878
+ #: class-updraftplus.php:3565
3879
+ msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
+ msgstr "Databáze je příliš malá na to, aby se mohlo jednat o správnou WordPress databázi (velikost: %s Kb)."
3881
+
3882
+ #: addons/autobackup.php:507 admin.php:733
3883
+ msgid "Update Plugin"
3884
+ msgstr "Aktualizace pluginu"
3885
+
3886
+ #: addons/autobackup.php:558 admin.php:737
3887
+ msgid "Update Theme"
3888
+ msgstr "Aktualizace tématu"
3889
+
3890
+ #: admin.php:579 admin.php:746
3891
+ msgid "Dismiss (for %s weeks)"
3892
+ msgstr "Zrušit (na %s týdnů)"
3893
+
3894
+ #: addons/autobackup.php:975 admin.php:580 admin.php:747
3895
+ msgid "Be safe with an automatic backup"
3896
+ msgstr "Buďte v bezpečí s automatickou zálohou"
3897
+
3898
+ #: restorer.php:2084
3899
+ msgid "Uploads path (%s) does not exist - resetting (%s)"
3900
+ msgstr "Cesta nahrávání (%s) neexistuje - resetuji (%s)"
3901
+
3902
+ #: admin.php:2333
3903
+ msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3904
+ msgstr "Pokud můžete přečíst tato slova i poté, co se stránka načte, je na stránce problém s JavaScriptem, nebo JQuery."
3905
+
3906
+ #: admin.php:505
3907
+ msgid "Follow this link to attempt decryption and download the database file to your computer."
3908
+ msgstr "Chcete-li zkusit dešifrovat a stáhnout databázi do počítače, klikněte sem."
3909
+
3910
+ #: admin.php:506
3911
+ msgid "This decryption key will be attempted:"
3912
+ msgstr "Bude použit tento dešifrovací klíč:"
3913
+
3914
+ #: admin.php:507
3915
+ msgid "Unknown server response:"
3916
+ msgstr "Neznámá odpověď serveru:"
3917
+
3918
+ #: admin.php:508
3919
+ msgid "Unknown server response status:"
3920
+ msgstr "Neznámý status odpovědi serveru:"
3921
+
3922
+ #: admin.php:509
3923
+ msgid "The file was uploaded."
3924
+ msgstr "Soubor byl nahrán."
3925
+
3926
+ #: admin.php:501
3927
+ msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3928
+ msgstr "(ujistěte se, že se pokoušíte nahrát zip soubor, který byl vytvořen UpdraftPlus)"
3929
+
3930
+ #: admin.php:502
3931
+ msgid "Upload error:"
3932
+ msgstr "Chyba nahrávání:"
3933
+
3934
+ #: admin.php:503
3935
+ 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)."
3936
+ msgstr "Tento soubor zřejmě není databáze šifrovaná UpdraftPlus (takové soubory jsou .gz.crypt s jménem podle vzoru: backup_(čas)_(název stránky)_(kód)_db.crypt.gz)."
3937
+
3938
+ #: admin.php:504
3939
+ msgid "Upload error"
3940
+ msgstr "Chyba nahrávání"
3941
+
3942
+ #: admin.php:491
3943
+ msgid "Delete from your web server"
3944
+ msgstr "Smazat z webserveru"
3945
+
3946
+ #: admin.php:492
3947
+ msgid "Download to your computer"
3948
+ msgstr "Stáhnout do počítače"
3949
+
3950
+ #: admin.php:493
3951
+ msgid "and then, if you wish,"
3952
+ msgstr "A pak, až skončíte,"
3953
+
3954
+ #: methods/s3.php:710
3955
+ msgid "Examples of S3-compatible storage providers:"
3956
+ msgstr "Příklady S3-kompatibilních poskytovatelů uložišť:"
3957
+
3958
+ #: admin.php:4954
3959
+ msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3960
+ msgstr "Pro tuto zálohu nebylo vybráno žádné vzdálené uložiště a proto nebudou archivy po rozbalení smazány"
3961
+
3962
+ #: admin.php:4548
3963
+ msgid "(%d archive(s) in set)."
3964
+ msgstr "(%d archiv(ů) v záloze)"
3965
+
3966
+ #: admin.php:4551
3967
+ msgid "You appear to be missing one or more archives from this multi-archive set."
3968
+ msgstr "Zdá se, že v této více archivní záloze chybí jeden, nebo více archivů."
3969
+
3970
+ #: admin.php:3972
3971
+ msgid "Split archives every:"
3972
+ msgstr "Rozdělit archivy každých:"
3973
+
3974
+ #: admin.php:482
3975
+ msgid "Error: the server sent an empty response."
3976
+ msgstr "Chyba: server poslal prázdnou odpověď."
3977
+
3978
+ #: admin.php:483
3979
+ msgid "Warnings:"
3980
+ msgstr "Varování:"
3981
+
3982
+ #: addons/moredatabase.php:269
3983
+ msgid "Error: the server sent us a response (JSON) which we did not understand."
3984
+ msgstr "Chyba: server zaslal odpověď (JSON) které systém nerozumí."
3985
+
3986
+ #: admin.php:2066
3987
+ 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?"
3988
+ msgstr "Zdá se, že jde o soubor vytvořený UpdraftPlus, ale instalace nezná tento typ objektu: %s. Možná potřebujete nainstalovat nějaký add-on?"
3989
+
3990
+ #: admin.php:1341
3991
+ msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
3992
+ msgstr "Archivy zálohy byly úspěšně zpracovány. Klikněte znovu na Obnovit pro pokračování."
3993
+
3994
+ #: admin.php:1343
3995
+ 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."
3996
+ msgstr "Archivy zálohy byly zpracovány s varováními. Pokud je vše v pořádku, klikněte znovu na Obnovit pro pokračování. Jinak operaci zrušte a opravte problémy."
3997
+
3998
+ #: admin.php:1345
3999
+ msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4000
+ msgstr "Archivy zálohy byly zpracovány s chybami. Před pokračováním musíte zrušit operaci a opravit veškeré problémy."
4001
+
4002
+ #: admin.php:1025
4003
+ 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"
4004
+ msgstr "Archiv zálohy pro tento soubor nebyl nalezen. Vzdáleného uložiště (%s) nám nedovoluje získat soubory. K provedení obnovy pomocí UpdraftPlus budete potřebovat zkopírovat tento soubor do pracovní složky UpdraftPlus"
4005
+
4006
+ #: admin.php:1245
4007
+ msgid "No such backup set exists"
4008
+ msgstr "Žádná taková záloha neexistuje"
4009
+
4010
+ #: admin.php:1314
4011
+ msgid "File not found (you need to upload it): %s"
4012
+ msgstr "Soubor nenalezen (musíte ho nahrát): %s"
4013
+
4014
+ #: admin.php:1316
4015
+ msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4016
+ msgstr "Soubor byl nalezen, ale má nulovou velikost (musíte ho nahrát znovu): %s"
4017
+
4018
+ #: admin.php:1321
4019
+ msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4020
+ msgstr "Soubor (%s) byl nalezen, ale má jinou velikost (%s), než byla předpokládána (%s) - zřejmě je poškozen."
4021
+
4022
+ #: admin.php:1336
4023
+ msgid "This multi-archive backup set appears to have the following archives missing: %s"
4024
+ msgstr "Zdá se, že v této záloze s více archivy nejsou následující archivy: %s"
4025
+
4026
+ #: restorer.php:529
4027
+ msgid "Failed to move directory (check your file permissions and disk quota): %s"
4028
+ msgstr "Nelze přesunout složku (zkontrolujte oprávnění souboru a kvótu disku): %s"
4029
+
4030
+ #: restorer.php:520
4031
+ msgid "Failed to move file (check your file permissions and disk quota): %s"
4032
+ msgstr "Nelze přesunout soubor (zkontrolujte oprávnění souboru a kvótu disku): %s"
4033
+
4034
+ #: restorer.php:97
4035
+ msgid "Moving unpacked backup into place..."
4036
+ msgstr "Přesouvání rozbalené zálohy na místo..."
4037
+
4038
+ #: backup.php:2635 backup.php:2891
4039
+ msgid "Failed to open the zip file (%s) - %s"
4040
+ msgstr "Nelze otevřít soubor zip (%s) - %s"
4041
+
4042
+ #: addons/morefiles.php:94
4043
+ msgid "WordPress root directory server path: %s"
4044
+ msgstr "serverová cesta ke kořenové složce WordPressu: %s"
4045
+
4046
+ #: methods/s3.php:717
4047
+ msgid "... and many more!"
4048
+ msgstr "... a mnoho dalšího!"
4049
+
4050
+ #: methods/s3.php:755
4051
+ msgid "%s end-point"
4052
+ msgstr "%s koncový bod"
4053
+
4054
+ #: admin.php:4873
4055
+ msgid "File is not locally present - needs retrieving from remote storage"
4056
+ msgstr "Soubor není lokálně dostupný - musí být obnoven ze vzdáleného uložiště"
4057
+
4058
+ #: methods/s3generic.php:41 methods/s3generic.php:49
4059
+ msgid "S3 (Compatible)"
4060
+ msgstr "S3 (Kompatibilní)"
4061
+
4062
+ #: admin.php:4821
4063
+ msgid "Final checks"
4064
+ msgstr "Závěrečná kontrola"
4065
+
4066
+ #: admin.php:4860
4067
+ msgid "Looking for %s archive: file name: %s"
4068
+ msgstr "Hledám archiv %s: jméno souboru: %s"
4069
+
4070
+ #: admin.php:3978
4071
+ 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)."
4072
+ msgstr "Zaškrtněte, pokud chcete po dokončení zálohy smazat všechny nadbytečné zálohy (tj. pokud odškrtnete, pak veškeré soubory, které budou odeslány na vzdálené uložiště zůstanou i lokálně a lokální soubory nejsou zahrnuty do limitu počtu záloh)."
4073
+
4074
+ #: admin.php:3881
4075
+ msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4076
+ msgstr "přesuňte sem šifrované databázové soubory (db.gz.crypt soubory) k jejich nahrání a dešifrování"
4077
+
4078
+ #: admin.php:4095
4079
+ msgid "Your wp-content directory server path: %s"
4080
+ msgstr "Serverová cesta k vaší složce wp-content: %s"
4081
+
4082
+ #: admin.php:498
4083
+ msgid "Raw backup history"
4084
+ msgstr "Prostá historie zálohování"
4085
+
4086
+ #: admin.php:3117
4087
+ msgid "Show raw backup and file list"
4088
+ msgstr "Zobrazit prostou zálohu a seznam souborů"
4089
+
4090
+ #: admin.php:481
4091
+ msgid "Processing files - please wait..."
4092
+ msgstr "Zpracovávám soubory - prosím čekejte..."
4093
+
4094
+ #: admin.php:2870
4095
+ msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4096
+ msgstr "Vaše instalace WordPressu má problém s výstupem mezer navíc. To může poškodit zálohy, které odsud stáhnete."
4097
+
4098
+ #: admin.php:2870 admin.php:5006
4099
+ msgid "Please consult this FAQ for help on what to do about it."
4100
+ msgstr "Kontaktujte prosím často kladené otázky pro pomoc s tímto problémem."
4101
+
4102
+ #: class-updraftplus.php:3573
4103
+ msgid "Failed to open database file."
4104
+ msgstr "Nepodařilo se otevřít soubor databáze."
4105
+
4106
+ #: class-updraftplus.php:3553
4107
+ msgid "Failed to write out the decrypted database to the filesystem."
4108
+ msgstr "Chyba při zápisu dešifrované databáze do systému souborů."
4109
+
4110
+ #: admin.php:1384
4111
+ msgid "Known backups (raw)"
4112
+ msgstr "Známé zálohy (prosté)"
4113
+
4114
+ #: restorer.php:1270
4115
+ msgid "Using directory from backup: %s"
4116
+ msgstr "Použít složku ze zálohy: %s"
4117
+
4118
+ #: restorer.php:879
4119
+ msgid "Files found:"
4120
+ msgstr "Nalezené soubory:"
4121
+
4122
+ #: restorer.php:885
4123
+ msgid "Unable to enumerate files in that directory."
4124
+ msgstr "Ze zadané složky nelze vyčíst soubory."
4125
+
4126
+ #: restorer.php:1720
4127
+ msgid "Requested table engine (%s) is not present - changing to MyISAM."
4128
+ msgstr "Požadovaný engine tabulky (%s) není přítomen - měním na MyISAM."
4129
+
4130
+ #: restorer.php:1730
4131
+ msgid "Restoring table (%s)"
4132
+ msgstr "Obnovuji tabulku (%s)"
4133
+
4134
+ #: addons/migrator.php:312
4135
+ 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."
4136
+ msgstr "Zdá se, že jde o migraci (záloha je ze stránek s jinou adresou/URL), ale nezaškrtli jste možnost najít a nahradit databázi. To je obvykle chyba."
4137
+
4138
+ #: admin.php:4895
4139
+ msgid "file is size:"
4140
+ msgstr "velikost souboru je:"
4141
+
4142
+ #: addons/googlecloud.php:855 addons/migrator.php:350 addons/migrator.php:353
4143
+ #: addons/migrator.php:356 admin.php:773 admin.php:2338 admin.php:3142
4144
+ #: backup.php:2938 updraftplus.php:147
4145
+ msgid "Go here for more information."
4146
+ msgstr "Pro více informací jděte sem."
4147
+
4148
+ #: admin.php:480
4149
+ msgid "Some files are still downloading or being processed - please wait."
4150
+ msgstr "Některé soubory jsou stále stahovány, nebo zpracovávány - prosím čekejte."
4151
+
4152
+ #: class-updraftplus.php:3621 class-updraftplus.php:3639
4153
+ 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."
4154
+ msgstr "Tato záloha pochází z jiné stránky - nejde o obnovu, ale migraci. K pokračování potřebujete Migrator add-on."
4155
+
4156
+ #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4157
+ msgid "%s login failure"
4158
+ msgstr "%s přihlášení selhalo"
4159
+
4160
+ #: methods/ftp.php:111
4161
+ msgid "%s upload failed"
4162
+ msgstr "%s nahrávání selhalo"
4163
+
4164
+ #: addons/fixtime.php:545
4165
+ msgid "Enter in format HH:MM (e.g. 14:22)."
4166
+ msgstr "Vložte ve formátu HH:MM (například 14:22)."
4167
+
4168
+ #: addons/fixtime.php:545
4169
+ msgid "The time zone used is that from your WordPress settings, in Settings -> General."
4170
+ msgstr "Časová zóna je převzatá z nastavení WordPressu, Nastavení -> Obecné."
4171
+
4172
+ #: methods/dropbox.php:113
4173
+ msgid "Dropbox error: %s (see log file for more)"
4174
+ msgstr "Chyba Dropboxu: %s (pro více informací se podívejte do logu)"
4175
+
4176
+ #: methods/dropbox.php:323
4177
+ msgid "You do not appear to be authenticated with %s (whilst deleting)"
4178
+ msgstr "Zdá se, že nejste ověřeni s %s (při mazání)"
4179
+
4180
+ #: methods/dropbox.php:331
4181
+ msgid "Failed to access %s when deleting (see log file for more)"
4182
+ msgstr "Při mazání se nepodařilo získat přístup k %s (pro více informací se podívejte do log souboru)"
4183
+
4184
+ #: methods/dropbox.php:364
4185
+ msgid "You do not appear to be authenticated with %s"
4186
+ msgstr "Zdá se, že nejste ověřeni s %s"
4187
+
4188
+ #: methods/cloudfiles.php:418
4189
+ msgid "Error - no such file exists at %s"
4190
+ msgstr "Chyba - v %s takový soubor neexistuje"
4191
+
4192
+ #: methods/cloudfiles.php:422
4193
+ msgid "Error - failed to download the file from %s"
4194
+ msgstr "Chyba - selhalo stažení souboru z %s"
4195
+
4196
+ #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4197
+ msgid "%s error - failed to upload file"
4198
+ msgstr "%s chyba - nepovedlo se nahrát soubor"
4199
+
4200
+ #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4201
+ #: methods/cloudfiles.php:409 methods/googledrive.php:823
4202
+ #: methods/openstack-base.php:319 methods/stream-base.php:261
4203
+ #: methods/stream-base.php:268 methods/stream-base.php:281
4204
+ msgid "%s Error"
4205
+ msgstr "%s Chyba"
4206
+
4207
+ #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4208
+ #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4209
+ #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4210
+ #: methods/openstack-base.php:32 methods/openstack-base.php:216
4211
+ #: methods/openstack-base.php:281 methods/openstack-base.php:353
4212
+ #: methods/openstack-base.php:356 methods/openstack-base.php:373
4213
+ #: methods/openstack-base.php:378
4214
+ msgid "%s authentication failed"
4215
+ msgstr "%s ověření selhalo"
4216
+
4217
+ #: class-updraftplus.php:851 methods/cloudfiles.php:211
4218
+ msgid "%s error - failed to re-assemble chunks"
4219
+ msgstr "%s chyba - nepodařilo se složit kousky dohromady"
4220
+
4221
+ #: addons/googlecloud.php:384 addons/migrator.php:449 admin.php:2011
4222
+ #: admin.php:2058 admin.php:2066 class-updraftplus.php:691
4223
+ #: class-updraftplus.php:697 class-updraftplus.php:3541
4224
+ #: class-updraftplus.php:3543 class-updraftplus.php:3679
4225
+ #: class-updraftplus.php:3712 methods/googledrive.php:299 restorer.php:873
4226
+ msgid "Error: %s"
4227
+ msgstr "Chyba: %s"
4228
+
4229
+ #: admin.php:3668
4230
+ msgid "Backup directory specified exists, but is <b>not</b> writable."
4231
+ msgstr "Složka pro zálohy existuje, ale <b>nelze</b> do ní zapisovat."
4232
+
4233
+ #: admin.php:3666
4234
+ msgid "Backup directory specified does <b>not</b> exist."
4235
+ msgstr "Složka pro zálohy <b>neexistuje</b>."
4236
+
4237
+ #: admin.php:3401 admin.php:3622 class-updraftplus.php:3621
4238
+ #: class-updraftplus.php:3639
4239
+ msgid "Warning: %s"
4240
+ msgstr "Varování: %s"
4241
+
4242
+ #: admin.php:2474
4243
+ msgid "Last backup job run:"
4244
+ msgstr "Poslední záloha proběhla:"
4245
+
4246
+ #: backup.php:2033 backup.php:2063
4247
+ msgid "%s: unreadable file - could not be backed up"
4248
+ msgstr "%s: nečitelný soubor - nemůže být zálohován"
4249
+
4250
+ #: backup.php:2657
4251
+ msgid "A very large file was encountered: %s (size: %s Mb)"
4252
+ msgstr "Byl zaznamenán velmi velký soubor: %s (velikost: %s Mb)"
4253
+
4254
+ #: backup.php:1474
4255
+ 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"
4256
+ msgstr "Tabulka %s má velmi mnoho řádků (%s) - doufáme, že vám poskytovatel hostingu dal dostatek prostředků záloze této tabulky"
4257
+
4258
+ #: backup.php:1585
4259
+ msgid "An error occurred whilst closing the final database file"
4260
+ msgstr "Při zavírání posledního souboru databáze se vyskytla chyba"
4261
+
4262
+ #: backup.php:871
4263
+ msgid "Warnings encountered:"
4264
+ msgstr "Vzniklá varování:"
4265
+
4266
+ #: class-updraftplus.php:2480
4267
+ msgid "The backup apparently succeeded (with warnings) and is now complete"
4268
+ msgstr "Záloha by zřejmě vytvořena (s varováními)"
4269
+
4270
+ #: class-updraftplus.php:601
4271
+ msgid "Your free disk space is very low - only %s Mb remain"
4272
+ msgstr "Na disku je velmi málo volného místa - zbývá pouze %s Mb"
4273
+
4274
+ #: addons/migrator.php:432
4275
+ msgid "Migrated site (from UpdraftPlus)"
4276
+ msgstr "Migrovaná stránka (z UpdraftPlus)"
4277
+
4278
+ #: addons/migrator.php:511
4279
+ msgid "<strong>ERROR</strong>: Site URL already taken."
4280
+ msgstr "<strong>CHYBA</strong>: URL adresa je již zabraná."
4281
+
4282
+ #: addons/migrator.php:456
4283
+ msgid "New site:"
4284
+ msgstr "Nový web:"
4285
+
4286
+ #: addons/migrator.php:370
4287
+ msgid "Information needed to continue:"
4288
+ msgstr "Pro pokračování jsou potřeba informace:"
4289
+
4290
+ #: addons/migrator.php:371
4291
+ msgid "Enter details for where this new site is to live within your multisite install:"
4292
+ msgstr "Vložte podrobnosti kde ve vaší multisite instalaci tato stránka leží:"
4293
+
4294
+ #: addons/migrator.php:316
4295
+ msgid "Processed plugin:"
4296
+ msgstr "Zpracováván plugin:"
4297
+
4298
+ #: addons/migrator.php:327
4299
+ msgid "Network activating theme:"
4300
+ msgstr "Aktivační téma pro síť:"
4301
+
4302
+ #: addons/sftp.php:38
4303
+ 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."
4304
+ msgstr "Některé servery doporučují šifrované FTP, ale poté nastává time-out (po dlouhém čase), když se ho pokoušíte použít. Pokud se vám to stane, jděte do \"Nastavení pro experty\" (níže) a vypněte tam SSL."
4305
+
4306
+ #: addons/sftp.php:74
4307
+ msgid "Check your file permissions: Could not successfully create and enter directory:"
4308
+ msgstr "Zkontrolujte práva souborů: Nepodařilo se vytvořit složku a vstoupit do ní:"
4309
+
4310
+ #: methods/s3.php:731
4311
+ 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."
4312
+ msgstr "Vaše instalace PHP neobsahuje požadovaný modul (%s). Zkontaktujte prosím svého poskytovatele hostingu a požádejte ho o povolení tohoto modulu."
4313
+
4314
+ #: methods/s3.php:970
4315
+ msgid "Please check your access credentials."
4316
+ msgstr "Zkontrolujte si prosím své přístupové údaje."
4317
+
4318
+ #: addons/s3-enhanced.php:172 methods/s3.php:948
4319
+ msgid "The error reported by %s was:"
4320
+ msgstr "Chyba ohlášená %s byla:"
4321
+
4322
+ #: restorer.php:1287
4323
+ msgid "Please supply the requested information, and then continue."
4324
+ msgstr "Prosím vložte požadované informace a pokračujte."
4325
+
4326
+ #: restorer.php:1925
4327
+ msgid "Cannot drop tables, so deleting instead (%s)"
4328
+ msgstr "Nelze smazat tabulky, takže je vymazávám (%s)"
4329
+
4330
+ #: class-updraftplus.php:3690 restorer.php:1564
4331
+ msgid "Site information:"
4332
+ msgstr "Informace o stránce:"
4333
+
4334
+ #: restorer.php:1908
4335
+ msgid "Cannot create new tables, so skipping this command (%s)"
4336
+ msgstr "Nelze vytvořit nové tabulky, takže tento příkaz přeskakuji (%s)"
4337
+
4338
+ #: addons/migrator.php:312 admin.php:2333 class-updraftplus.php:3683
4339
+ #: restorer.php:1441 restorer.php:1470 restorer.php:1884
4340
+ msgid "Warning:"
4341
+ msgstr "Varování:"
4342
+
4343
+ #: restorer.php:1442
4344
+ 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."
4345
+ msgstr "Váš uživatel databáze nemá povolení k tvorbě tabulek. Pokusíme se je obnovit pomocí jejich vyprázdnění; to by mělo fungovat pokud a) obnovujete WordPress se stejnou tabulkovou strukturou a b) vaše importovaná databáze neobsahuje žádné tabulky, které by už nebyly vytvořeny."
4346
+
4347
+ #: class-updraftplus.php:3675 restorer.php:105
4348
+ msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4349
+ msgstr "Používáte WordPress multisite, ale vaše záloha není záloha multisite stránky."
4350
+
4351
+ #: admin.php:4848
4352
+ 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."
4353
+ msgstr "Přeskakuji obnovu jádra WordPressu při importu jednotlivé stránky do multisite instalace. Pokud máte ve složce s WordPressem něco důležitého, pak to musíte obnovit ze zip souboru ručně."
4354
+
4355
+ #: admin.php:4151 methods/updraftvault.php:244
4356
+ 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."
4357
+ msgstr "Vaše instalace PHP neobsahuje <strong>požadovaný</strong> (pro %s) modul (%s). Prosím kontaktujte svého poskytovatele hostingu a požádejte ho o povolení tohoto modulu."
4358
+
4359
+ #: admin.php:516
4360
+ msgid "Close"
4361
+ msgstr "Zavřít"
4362
+
4363
+ #: addons/autobackup.php:294 addons/autobackup.php:385 admin.php:473
4364
+ #: methods/remotesend.php:71 methods/remotesend.php:79
4365
+ #: methods/remotesend.php:220 methods/remotesend.php:237
4366
+ msgid "Unexpected response:"
4367
+ msgstr "Neočekávaná odpověď:"
4368
+
4369
+ #: addons/reporting.php:423 admin.php:469
4370
+ msgid "To send to more than one address, separate each address with a comma."
4371
+ msgstr "K odeslání na více než jednu adresu, oddělte adresy čárkou."
4372
+
4373
+ #: admin.php:496
4374
+ msgid "PHP information"
4375
+ msgstr "PHP informace"
4376
+
4377
+ #: admin.php:3082
4378
+ msgid "show PHP information (phpinfo)"
4379
+ msgstr "Ukázat PHP informace (phpinfo)"
4380
+
4381
+ #: admin.php:3102
4382
+ msgid "zip executable found:"
4383
+ msgstr "nalezen spustitelný zip:"
4384
+
4385
+ #: admin.php:2483
4386
+ msgid "Migrate Site"
4387
+ msgstr "Migrovaná stránka"
4388
+
4389
+ #: addons/migrator.php:168
4390
+ msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4391
+ msgstr "<a href=\"%s\">V tomto článku se dočtete, jak je to uděláno krok po kroku.</a>"
4392
+
4393
+ #: admin.php:2488
4394
+ msgid "Do you want to migrate or clone/duplicate a site?"
4395
+ msgstr "Chcete migrovat, nebo klonovat/duplikovat stránku?"
4396
+
4397
+ #: admin.php:2488
4398
+ 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."
4399
+ msgstr "Pak zkuste náš \"Migrator\" add-on. Po prvním použití se vám, v porovnání s časem potřebným pro ruční kopírování, jeho cena vyplatí."
4400
+
4401
+ #: admin.php:2488
4402
+ msgid "Get it here."
4403
+ msgstr "Získejte ho zde."
4404
+
4405
+ #: admin.php:2958
4406
+ msgid "Deleting... please allow time for the communications with the remote storage to complete."
4407
+ msgstr "Mažu... prosím nechte nějaký čas pro dokončení komunikace se vzdáleným uložištěm."
4408
+
4409
+ #: admin.php:2957
4410
+ msgid "Also delete from remote storage"
4411
+ msgstr "Smazat i ze vzdáleného uložiště"
4412
+
4413
+ #: admin.php:2816
4414
+ msgid "Latest UpdraftPlus.com news:"
4415
+ msgstr "Poslední novinky z UpdraftPlus.com:"
4416
+
4417
+ #: admin.php:2449
4418
+ msgid "Clone/Migrate"
4419
+ msgstr "Klonovat/Migrovat"
4420
+
4421
+ #: admin.php:2169
4422
+ msgid "News"
4423
+ msgstr "Novinky"
4424
+
4425
+ #: admin.php:2168
4426
+ msgid "Premium"
4427
+ msgstr "Premium"
4428
+
4429
+ #: admin.php:1628
4430
+ msgid "Local archives deleted: %d"
4431
+ msgstr "Místní archivy smazány: %d"
4432
+
4433
+ #: admin.php:1629
4434
+ msgid "Remote archives deleted: %d"
4435
+ msgstr "Vzdálené archivy smazány: %d"
4436
+
4437
+ #: backup.php:157
4438
+ msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4439
+ msgstr "%s - nelze zazálohovat tuto entitu; odpovídající složka neexistuje (%s)"
4440
+
4441
+ #: admin.php:1554
4442
+ msgid "Backup set not found"
4443
+ msgstr "Soubory zálohy nebyly nalezeny"
4444
+
4445
+ #: class-updraftplus.php:3499
4446
+ msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4447
+ msgstr "Na UpdraftPlus blogu se přihlašte k odběru novinek a nabídek"
4448
+
4449
+ #: class-updraftplus.php:3499
4450
+ msgid "Blog link"
4451
+ msgstr "Odkaz blogu"
4452
+
4453
+ #: class-updraftplus.php:3499
4454
+ msgid "RSS link"
4455
+ msgstr "Odkaz RSS"
4456
+
4457
+ #: admin.php:558
4458
+ msgid "Testing %s Settings..."
4459
+ msgstr "Testování %s nastavení..."
4460
+
4461
+ #: admin.php:2892
4462
+ 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."
4463
+ msgstr "Nebo můžete vložit ručně do UpdraftPlus složky (obvykle wp-content/updraft), například přes FTP, a pak kliknout na odkaz \"skenovat znovu\"."
4464
+
4465
+ #: admin.php:789
4466
+ msgid "Notice"
4467
+ msgstr "Oznámení"
4468
+
4469
+ #: admin.php:789
4470
+ 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."
4471
+ msgstr "Debug mód UpdraftPlus je zapnutý. Na této stránce můžete vidět debug zprávy nejen z UpdraftPlus, ale i z jakéhokoliv jiného nainstalovaného pluginu. Než požádáte o podporu, tak se prosím přesvědčte, že zprávy patří UpdraftPlus."
4472
+
4473
+ #: backup.php:853
4474
+ msgid "Errors encountered:"
4475
+ msgstr "Narazili jsme na problémy:"
4476
+
4477
+ #: admin.php:467
4478
+ msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4479
+ msgstr "Skenuji znovu (dívám se po zálohách ručně nahraných do uložiště záloh)..."
4480
+
4481
+ #: admin.php:479
4482
+ msgid "Begun looking for this entity"
4483
+ msgstr "Začal jsem hledat tuto entitu"
4484
+
4485
+ #: addons/migrator.php:1090
4486
+ msgid "SQL update commands run:"
4487
+ msgstr "Běh SQL příkazu update:"
4488
+
4489
+ #: addons/migrator.php:1091 admin.php:484
4490
+ msgid "Errors:"
4491
+ msgstr "Chyby:"
4492
+
4493
+ #: addons/migrator.php:1092
4494
+ msgid "Time taken (seconds):"
4495
+ msgstr "Čas běhu (sekundy):"
4496
+
4497
+ #: addons/migrator.php:1228
4498
+ msgid "rows: %d"
4499
+ msgstr "řádků: %d"
4500
+
4501
+ #: addons/migrator.php:1348
4502
+ msgid "\"%s\" has no primary key, manual change needed on row %s."
4503
+ msgstr "\"%s\" nemá primární klíč, je vyžadována ruční změna na řádku %s."
4504
+
4505
+ #: addons/dropbox-folders.php:26
4506
+ msgid "Store at"
4507
+ msgstr "Uložit na"
4508
+
4509
+ #: addons/migrator.php:905
4510
+ msgid "Nothing to do: the site URL is already: %s"
4511
+ msgstr "Není co udělat: URL stránky již je: %s"
4512
+
4513
+ #: addons/migrator.php:916
4514
+ msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
4515
+ msgstr "Varování: URL databáze stránky (%s) je jiná, než jsme očekávali (%s)"
4516
+
4517
+ #: addons/migrator.php:932
4518
+ msgid "Database search and replace: replace %s in backup dump with %s"
4519
+ msgstr "Hledání a nahrazení databáze: nahrazení %s ve výpisu zálohy za %s"
4520
+
4521
+ #: addons/migrator.php:972
4522
+ msgid "Could not get list of tables"
4523
+ msgstr "Nemohu získat seznam tabulek"
4524
+
4525
+ #: addons/migrator.php:1087
4526
+ msgid "Tables examined:"
4527
+ msgstr "Prozkoumané tabulky:"
4528
+
4529
+ #: addons/migrator.php:1088
4530
+ msgid "Rows examined:"
4531
+ msgstr "Prozkoumané řádky:"
4532
+
4533
+ #: addons/migrator.php:1089
4534
+ msgid "Changes made:"
4535
+ msgstr "Provedeno změn:"
4536
+
4537
+ #: addons/sftp.php:280
4538
+ msgid "%s Error: Failed to download"
4539
+ msgstr "%s Chyba: Stahování se nepodařilo"
4540
+
4541
+ #: addons/moredatabase.php:232 addons/sftp.php:347
4542
+ msgid "Host"
4543
+ msgstr "Host"
4544
+
4545
+ #: addons/sftp.php:354
4546
+ msgid "Port"
4547
+ msgstr "Port"
4548
+
4549
+ #: addons/lockadmin.php:141 addons/moredatabase.php:234 addons/sftp.php:368
4550
+ #: methods/openstack2.php:127 methods/updraftvault.php:304
4551
+ #: udaddons/options.php:145
4552
+ msgid "Password"
4553
+ msgstr "Heslo"
4554
+
4555
+ #: addons/sftp.php:393
4556
+ msgid "Directory path"
4557
+ msgstr "Cesta složky"
4558
+
4559
+ #: addons/sftp.php:395
4560
+ msgid "Where to change directory to after logging in - often this is relative to your home directory."
4561
+ msgstr "Kde změnit adresář po přihlášení - často jde o relativní cestu k domovské složce."
4562
+
4563
+ #: addons/sftp.php:417
4564
+ msgid "host name"
4565
+ msgstr "Jméno hosta"
4566
+
4567
+ #: addons/sftp.php:421 methods/openstack2.php:142
4568
+ msgid "username"
4569
+ msgstr "přihlašovací jméno"
4570
+
4571
+ #: methods/ftp.php:359 methods/openstack2.php:147
4572
+ msgid "password"
4573
+ msgstr "heslo"
4574
+
4575
+ #: addons/sftp.php:430
4576
+ msgid "Failure: Port must be an integer."
4577
+ msgstr "Chyba: Port musí být celé číslo."
4578
+
4579
+ #: addons/fixtime.php:545
4580
+ msgid "starting from next time it is"
4581
+ msgstr "počínaje od příště je to"
4582
+
4583
+ #: addons/multisite.php:174
4584
+ msgid "Multisite Install"
4585
+ msgstr "Multisite instalace"
4586
+
4587
+ #: addons/multisite.php:180 udaddons/options.php:225
4588
+ msgid "You do not have sufficient permissions to access this page."
4589
+ msgstr "K přístupu na tuto stránku nemáte dostatečná oprávnění."
4590
+
4591
+ #: addons/multisite.php:194
4592
+ msgid "You do not have permission to access this page."
4593
+ msgstr "K přístupu na tuto stránku nemáte oprávnění."
4594
+
4595
+ #: addons/migrator.php:356 addons/multisite.php:610
4596
+ msgid "Must-use plugins"
4597
+ msgstr "Musíte vyzkoušet pluginy"
4598
+
4599
+ #: addons/multisite.php:617
4600
+ msgid "Blog uploads"
4601
+ msgstr "Nahrávání blogu"
4602
+
4603
+ #: addons/migrator.php:529
4604
+ msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
4605
+ msgstr "Všechny odkaz na umístění stránky v databázi byly změněny na vaši současnou URL adresu, což je: %s"
4606
+
4607
+ #: addons/migrator.php:529
4608
+ msgid "Search and replace site location in the database (migrate)"
4609
+ msgstr "Hledat a nahradit umístění stránky v databázi (migrace)"
4610
+
4611
+ #: addons/migrator.php:529
4612
+ msgid "(learn more)"
4613
+ msgstr "(dozvědět se více)"
4614
+
4615
+ #: addons/migrator.php:765 addons/migrator.php:1069
4616
+ msgid "Failed: the %s operation was not able to start."
4617
+ msgstr "Chyba: %s operace nemohla začít."
4618
+
4619
+ #: addons/migrator.php:767 addons/migrator.php:1071
4620
+ msgid "Failed: we did not understand the result returned by the %s operation."
4621
+ msgstr "Chyba: nerozumíme výsledku, který vrátila %s operace."
4622
+
4623
+ #: addons/migrator.php:839
4624
+ msgid "Database: search and replace site URL"
4625
+ msgstr "Databáze: najít a nahradit URL stránky"
4626
+
4627
+ #: addons/migrator.php:843
4628
+ msgid "This option was not selected."
4629
+ msgstr "Tato možnost nebyla vybrána."
4630
+
4631
+ #: addons/migrator.php:877 addons/migrator.php:881 addons/migrator.php:885
4632
+ #: addons/migrator.php:890 addons/migrator.php:894 addons/migrator.php:899
4633
+ msgid "Error: unexpected empty parameter (%s, %s)"
4634
+ msgstr "Chyba: neočekávaný prázdný parametr (%s, %s)"
4635
+
4636
+ #: addons/morefiles.php:86
4637
+ msgid "The above files comprise everything in a WordPress installation."
4638
+ msgstr "Soubory výše obsahují celou WordPress instalaci."
4639
+
4640
+ #: addons/morefiles.php:93
4641
+ msgid "WordPress core (including any additions to your WordPress root directory)"
4642
+ msgstr "Jádro WordPressu (včetně všech přídavků v kořenové složce WordPressu)"
4643
+
4644
+ #: addons/morefiles.php:179
4645
+ msgid "More Files"
4646
+ msgstr "Více souborů"
4647
+
4648
+ #: addons/morefiles.php:211 addons/morefiles.php:222
4649
+ msgid "Enter the directory:"
4650
+ msgstr "Vložte složku:"
4651
+
4652
+ #: addons/morefiles.php:200
4653
+ msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
4654
+ msgstr "Pokud nevíte k čemu tato možnost slouží, tak ji nechcete a měla by být vypnuta."
4655
+
4656
+ #: addons/morefiles.php:200
4657
+ msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
4658
+ msgstr "Pokud ji použijete, vložte absolutní adresu (nejde o relativní cestu k vaší instalaci WordPressu)."
4659
+
4660
+ #: addons/morefiles.php:202
4661
+ msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
4662
+ msgstr "Dávejte pozor co vkládáte - pokud vložíte / pak se vážně pokusíme vytvořit zip soubor obsahující váš celý webserver."
4663
+
4664
+ #: addons/morefiles.php:442
4665
+ msgid "No backup of %s directories: there was nothing found to back up"
4666
+ msgstr "Žádná záloha %s složek: nebylo zde nalezeno nic k zálohování"
4667
+
4668
+ #: addons/sftp.php:38
4669
+ 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."
4670
+ msgstr "Šifrované FTP je dostupné a bude automaticky vyzkoušeno jako první (před přepnutím zpět na nešifrované při neúspěchu), pokud ho v nastavení pro experty nevypnete. Tlačítko \"Test FTP přihlášení\" vám řekne, jakou verzi připojení používáte."
4671
+
4672
+ #: addons/sftp.php:38
4673
+ msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
4674
+ msgstr "V základu je použito explicitní šifrování. Pro vnucení implicitního šifrování (port 990), přidejte :990 k vašemu FTP serveru níže."
4675
+
4676
+ #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
4677
+ msgid "No %s found"
4678
+ msgstr "%s nenalezeno"
4679
+
4680
+ #: addons/sftp.php:460
4681
+ msgid "Check your file permissions: Could not successfully create and enter:"
4682
+ msgstr "Zkontrolujte oprávnění pro soubory: Nepovedlo se úspěšně vytvořit a vstoupit:"
4683
+
4684
+ #: methods/ftp.php:320
4685
+ msgid "Needs to already exist"
4686
+ msgstr "Je třeba, aby již existoval"
4687
+
4688
+ #: methods/ftp.php:351
4689
+ msgid "Failure: No server details were given."
4690
+ msgstr "Chyba: Nebyly vloženy detaily o serveru."
4691
+
4692
+ #: methods/ftp.php:369
4693
+ msgid "Failure: we did not successfully log in with those credentials."
4694
+ msgstr "Chyba: s těmito přihlašovacími údaji se nám nepodařilo připojit."
4695
+
4696
+ #: methods/ftp.php:378
4697
+ msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4698
+ msgstr "Úspěch: úspěšně jsme se přihlásili a potvrdili naši schopnost vytvořit soubor v dané složce (typ připojení:"
4699
+
4700
+ #: methods/ftp.php:381
4701
+ msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4702
+ msgstr "Chyba: úspěšně jsme se přihlásili, ale nepodařilo se nám vytvořit soubor v dané složce."
4703
+
4704
+ #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4705
+ #: methods/addon-base.php:97 methods/addon-base.php:128
4706
+ #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
4707
+ #: methods/googledrive.php:146 methods/stream-base.php:31
4708
+ #: methods/stream-base.php:145 methods/stream-base.php:180
4709
+ #: methods/stream-base.php:245
4710
+ msgid "No %s settings were found"
4711
+ msgstr "Nebylo nalezeno žádné %s nastavení"
4712
+
4713
+ #: methods/stream-base.php:107 methods/stream-base.php:111
4714
+ msgid "Chunk %s: A %s error occurred"
4715
+ msgstr "Část %s: Nastala chyba %s"
4716
+
4717
+ #: methods/stream-base.php:268
4718
+ msgid "Error opening remote file: Failed to download"
4719
+ msgstr "Chyba při otevření vzdáleného souboru: Soubor nelze stáhnout"
4720
+
4721
+ #: methods/stream-base.php:281
4722
+ msgid "Local write failed: Failed to download"
4723
+ msgstr "Chyba lokálního zápisu: Stahování se nezdařilo"
4724
+
4725
+ #: addons/webdav.php:42
4726
+ msgid "WebDAV URL"
4727
+ msgstr "WebDAV URL"
4728
+
4729
+ #: addons/webdav.php:46
4730
+ msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
4731
+ msgstr "Vložte celou URL adresu, začíná webdav://, nebo webdavs:// a obsahuje cestu, uživatelské jméno, heslo a port - například %s"
4732
+
4733
+ #: addons/googlecloud.php:626 addons/googlecloud.php:660
4734
+ #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:3454 admin.php:3489
4735
+ #: admin.php:3498 methods/addon-base.php:284 methods/stream-base.php:297
4736
+ msgid "Failed"
4737
+ msgstr "Selhání"
4738
+
4739
+ #: methods/addon-base.php:294 methods/stream-base.php:311
4740
+ msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4741
+ msgstr "Selhání: Do dané složky se nám nepodařilo umístit soubor - zkontrolujte prosím přihlašovací údaje."
4742
+
4743
+ #: addons/morefiles.php:63 addons/morefiles.php:442
4744
+ msgid "WordPress Core"
4745
+ msgstr "Jádro WordPressu"
4746
+
4747
+ #: addons/morefiles.php:67
4748
+ msgid "Over-write wp-config.php"
4749
+ msgstr "Přepsání wp-config.php"
4750
+
4751
+ #: methods/dropbox.php:513 methods/dropbox.php:515
4752
+ msgid "you have authenticated your %s account"
4753
+ msgstr "účet %s je ověřený"
4754
+
4755
+ #: methods/dropbox.php:518
4756
+ msgid "though part of the returned information was not as expected - your mileage may vary"
4757
+ msgstr "přesto, že část vrácených informací nebyla taková, jak bylo očekáváno - může to záviset na vaší vzdálenosti"
4758
+
4759
+ #: addons/onedrive.php:584 methods/dropbox.php:522
4760
+ msgid "Your %s account name: %s"
4761
+ msgstr "Vaše %s jméno účtu: %s"
4762
+
4763
+ #: methods/ftp.php:303
4764
+ msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4765
+ msgstr "základní UpdraftPlus podporuje pouze nešifrované FTP."
4766
+
4767
+ #: methods/ftp.php:303
4768
+ msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4769
+ msgstr "Pokud chcete šifrování (například ukládáte citlivá obchodní data), pak je pro vás k dispozici add-on."
4770
+
4771
+ #: methods/s3.php:681
4772
+ msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4773
+ msgstr "Chyba %s:Nepodařilo se stáhnout %s. Zkontrolujte vaše přihlašovací údaje a oprávnění."
4774
+
4775
+ #: methods/s3.php:434 methods/s3.php:608 methods/s3.php:687
4776
+ msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4777
+ msgstr "Chyba %s: Nelze přistoupit k bucketu %s. Zkontrolujte oprávnění a přihlašovací údaje."
4778
+
4779
+ #: methods/s3.php:746
4780
+ 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."
4781
+ msgstr "Získejte přístupový klíč a tajný klíč <a href=\"%s\">z vaší %s konzole</a>, pak vyberte (zcela unikátní - pro všechny %s uživatele) jméno bucketu (písmena a čísla) (a volitelně i cestu) k použití uložiště. Pokud tento bucket ještě neexistuje, bude pro vás vytvořen."
4782
+
4783
+ #: methods/s3.php:748
4784
+ msgid "If you see errors about SSL certificates, then please go here for help."
4785
+ msgstr "Pokud uvidíte chybu ohledně SSL certifikátů, pak klikněte sem pro pomoc."
4786
+
4787
+ #: methods/s3.php:783
4788
+ msgid "%s access key"
4789
+ msgstr "%s přístupový klíč"
4790
+
4791
+ #: methods/s3.php:787
4792
+ msgid "%s secret key"
4793
+ msgstr "%s tajný klíč"
4794
+
4795
+ #: methods/s3.php:791
4796
+ msgid "%s location"
4797
+ msgstr "%s umístění"
4798
+
4799
+ #: methods/s3.php:792
4800
+ msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4801
+ msgstr "Vložte pouze jméno bucketu, nebo bucket a cestu. Příklad: můjbucket, můjbucket/mojecesta"
4802
+
4803
+ #: methods/s3.php:900
4804
+ msgid "API secret"
4805
+ msgstr "tajné API"
4806
+
4807
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:922
4808
+ msgid "Failure: No bucket details were given."
4809
+ msgstr "Selhání: nejsou k dispozici žádné detaily o bucketu."
4810
+
4811
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:940
4812
+ msgid "Region"
4813
+ msgstr "Oblast"
4814
+
4815
+ #: methods/s3.php:946
4816
+ 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)."
4817
+ msgstr "Selhání: Nepodařilo se nám přistoupit k takovému bucketu, nebo ho vytvořit. Zkontrolujte prosím přihlašovací údaje a pokud jsou správné, zkuste jiné jméno bucketu (protože některý jiný %s uživatel již mohl toto jméno použít)."
4818
+
4819
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4820
+ #: methods/s3.php:970
4821
+ msgid "Failure"
4822
+ msgstr "Selhání"
4823
+
4824
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:958
4825
+ #: methods/s3.php:970
4826
+ msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4827
+ msgstr "Podařilo se nám přistoupit k bucketu, ale nepodařilo se nám v něm vytvořit soubor."
4828
+
4829
+ #: addons/googlecloud.php:689 methods/s3.php:960
4830
+ msgid "We accessed the bucket, and were able to create files within it."
4831
+ msgstr "Podařilo se nám přistoupit k bucketu a vytvořit v něm soubory."
4832
+
4833
+ #: methods/s3.php:963
4834
+ msgid "The communication with %s was encrypted."
4835
+ msgstr "Komunikace s %s byla šifrována."
4836
+
4837
+ #: methods/s3.php:965
4838
+ msgid "The communication with %s was not encrypted."
4839
+ msgstr "Komunikace s %s nebyla šifrována."
4840
+
4841
+ #: methods/dropbox.php:100 methods/dropbox.php:108
4842
+ msgid "You do not appear to be authenticated with Dropbox"
4843
+ msgstr "Zdá se, že nejste ověřeni Dropboxem"
4844
+
4845
+ #: methods/dropbox.php:193 methods/dropbox.php:214 methods/dropbox.php:230
4846
+ msgid "error: failed to upload file to %s (see log file for more)"
4847
+ msgstr "chyba: nepodařilo se nahrát soubor do %s (pro podrobnosti se podívejte do logu)"
4848
+
4849
+ #: methods/dropbox.php:438
4850
+ msgid "Need to use sub-folders?"
4851
+ msgstr "Potřebujete vytvořit podsložky?"
4852
+
4853
+ #: methods/dropbox.php:438
4854
+ msgid "Backups are saved in"
4855
+ msgstr "Zálohy jsou uloženy v"
4856
+
4857
+ #: methods/dropbox.php:438
4858
+ msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4859
+ msgstr "Pokud chcete zálohovat několik stránek do jednoho Dropboxu a chcete je organizovat do podsložek, pak"
4860
+
4861
+ #: methods/dropbox.php:438
4862
+ msgid "there's an add-on for that."
4863
+ msgstr "je tu k tomu add-on."
4864
+
4865
+ #: methods/cloudfiles.php:462
4866
+ msgid "US or UK Cloud"
4867
+ msgstr "US, nebo UK Cloud"
4868
+
4869
+ #: addons/cloudfiles-enhanced.php:235 methods/cloudfiles-new.php:88
4870
+ #: methods/cloudfiles.php:465
4871
+ msgid "US (default)"
4872
+ msgstr "US (výchozí)"
4873
+
4874
+ #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:89
4875
+ #: methods/cloudfiles.php:466
4876
+ msgid "UK"
4877
+ msgstr "UK"
4878
+
4879
+ #: methods/cloudfiles.php:482
4880
+ msgid "Cloud Files username"
4881
+ msgstr "Cloud Files uživatelské jméno"
4882
+
4883
+ #: methods/cloudfiles.php:486
4884
+ msgid "Cloud Files API key"
4885
+ msgstr "Cloud Files API klíč"
4886
+
4887
+ #: methods/cloudfiles.php:490
4888
+ msgid "Cloud Files container"
4889
+ msgstr "Cloud Files kontejner"
4890
+
4891
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
4892
+ msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4893
+ msgstr "%s modul UpdraftPlus <strong>vyžaduje</strong> %s. Prosím nezakládejte požadavky na podporu; není žádná jiná možnost."
4894
+
4895
+ #: addons/migrator.php:272 addons/migrator.php:1851 addons/moredatabase.php:70
4896
+ #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:417
4897
+ #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:56 admin.php:536
4898
+ #: methods/addon-base.php:277 methods/cloudfiles-new.php:142
4899
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:504
4900
+ #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
4901
+ #: methods/openstack2.php:142 methods/openstack2.php:147
4902
+ #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:896
4903
+ #: methods/s3.php:900
4904
+ msgid "Failure: No %s was given."
4905
+ msgstr "Selhání: Nebylo dáno %s."
4906
+
4907
+ #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:896
4908
+ msgid "API key"
4909
+ msgstr "API klíč"
4910
+
4911
+ #: addons/moredatabase.php:233 addons/sftp.php:361
4912
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4913
+ #: methods/openstack2.php:121
4914
+ msgid "Username"
4915
+ msgstr "Uživatelské jméno"
4916
+
4917
+ #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4918
+ msgid "Failure: No container details were given."
4919
+ msgstr "Selhání: Nebyly dány žádné detaily kontejneru."
4920
+
4921
+ #: methods/cloudfiles.php:556
4922
+ msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4923
+ msgstr "Cloud Files chyba - přistoupili jsme ke kontejneru, ale nepodařilo se nám v něm vytvořit soubor"
4924
+
4925
+ #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4926
+ msgid "We accessed the container, and were able to create files within it."
4927
+ msgstr "Přistoupili jsme ke kontejneru a podařilo se nám v něm vytvořit soubory."
4928
+
4929
+ #: methods/email.php:43
4930
+ msgid "WordPress Backup"
4931
+ msgstr "Záloha WordPressu"
4932
+
4933
+ #: methods/email.php:69
4934
+ msgid "Note:"
4935
+ msgstr "Poznámka:"
4936
+
4937
+ #: methods/s3.php:363
4938
+ msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4939
+ msgstr "%s nahrávání: selhalo získání uploadID pro nahrání více částí - pro bližší informace se podívejte do logu"
4940
+
4941
+ #: methods/s3.php:386
4942
+ msgid "%s error: file %s was shortened unexpectedly"
4943
+ msgstr "%s chyba: soubor %s byl neočekávaně zkrácen"
4944
+
4945
+ #: methods/s3.php:396
4946
+ msgid "%s chunk %s: upload failed"
4947
+ msgstr "%s kus %s: selhalo nahrávání"
4948
+
4949
+ #: methods/s3.php:412
4950
+ msgid "%s upload (%s): re-assembly failed (see log for more details)"
4951
+ msgstr "%s nahrávání (%s): znovu sestavení selhalo (pro bližší informace se podívejte do logu)"
4952
+
4953
+ #: methods/s3.php:416
4954
+ msgid "%s re-assembly error (%s): (see log file for more)"
4955
+ msgstr "%s chyba znovu sestavení (%s): (podívejte se do logu pro více informací)"
4956
+
4957
+ #: addons/googlecloud.php:826 methods/googledrive.php:904
4958
+ msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4959
+ msgstr "Pro delší podporu, včetně snímků obrazovky, následujte tento odkaz. Popis níže je dostatečný pro zkušenější uživatele."
4960
+
4961
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4962
+ msgid "Select 'Web Application' as the application type."
4963
+ msgstr "Vyberte \"Webová aplikace\" jako typ aplikace."
4964
+
4965
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4966
+ msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4967
+ msgstr "Pokud budete dotázáni, musíte přidat následující do autorizovaných přesměrovacích URI (pod \"Více možností\")"
4968
+
4969
+ #: addons/googlecloud.php:839 addons/onedrive.php:755
4970
+ #: methods/googledrive.php:916
4971
+ msgid "Client ID"
4972
+ msgstr "Klientské ID"
4973
+
4974
+ #: addons/googlecloud.php:842 methods/googledrive.php:917
4975
+ msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4976
+ msgstr "Pokud vám Google později ukáže zprávu \"invalid_client\", pak jste sem vložili špatné klientské ID."
4977
+
4978
+ #: addons/googlecloud.php:847 addons/onedrive.php:759
4979
+ #: methods/googledrive.php:920
4980
+ msgid "Client Secret"
4981
+ msgstr "Tajemství klienta"
4982
+
4983
+ #: addons/googlecloud.php:896 methods/googledrive.php:950
4984
+ msgid "Authenticate with Google"
4985
+ msgstr "Autorizováno s Googlem"
4986
+
4987
+ #: addons/googlecloud.php:907 methods/googledrive.php:961
4988
+ 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."
4989
+ msgstr "<strong>Poté</strong> co uložíte nastavení (kliknutím na \"Uložit změny\" níže), vraťte se sem a klikněte na odkaz k dokončení ověření s Googlem."
4990
+
4991
+ #: addons/cloudfiles-enhanced.php:87 addons/cloudfiles-enhanced.php:124
4992
+ #: addons/cloudfiles-enhanced.php:129 methods/cloudfiles.php:539
4993
+ #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
4994
+ msgid "Cloud Files authentication failed"
4995
+ msgstr "Ověření Cloud Files selhalo"
4996
+
4997
+ #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
4998
+ #: methods/cloudfiles.php:363
4999
+ msgid "Cloud Files error - failed to create and access the container"
5000
+ msgstr "Chyba Cloud Files - nepodařilo se vytvořit kontejner a přistoupit k němu"
5001
+
5002
+ #: addons/googlecloud.php:161 addons/googlecloud.php:166
5003
+ #: class-updraftplus.php:797 methods/cloudfiles.php:130
5004
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5005
+ msgid "%s Error: Failed to open local file"
5006
+ msgstr "%s Chyba: Nepodařilo se otevřít lokální soubor"
5007
+
5008
+ #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5009
+ #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5010
+ #: methods/openstack-base.php:190 methods/s3.php:331 methods/s3.php:343
5011
+ #: methods/s3.php:344
5012
+ msgid "%s Error: Failed to upload"
5013
+ msgstr "%s Chyba: Nahrávání se nezdařilo"
5014
+
5015
+ #: methods/cloudfiles.php:218
5016
+ msgid "Cloud Files error - failed to upload file"
5017
+ msgstr "Cloud Files chyba - nepodařilo se nahrát soubor"
5018
+
5019
+ #: class-updraftplus.php:880 methods/cloudfiles.php:392
5020
+ #: methods/stream-base.php:261
5021
+ msgid "Error opening local file: Failed to download"
5022
+ msgstr "Chyba při otevírání lokálního souboru: Nepodařilo se ho stáhnout"
5023
+
5024
+ #: methods/openstack-base.php:319
5025
+ msgid "Error downloading remote file: Failed to download ("
5026
+ msgstr "Chyba při stahování vzdáleného souboru: Stahování se nezdařilo ("
5027
+
5028
+ #: addons/sftp.php:408 admin.php:557 methods/addon-base.php:242
5029
+ #: methods/cloudfiles.php:496 methods/ftp.php:329
5030
+ #: methods/openstack-base.php:440 methods/s3.php:797
5031
+ #: methods/stream-base.php:219
5032
+ msgid "Test %s Settings"
5033
+ msgstr "Test %s nastavení"
5034
+
5035
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5036
+ 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."
5037
+ msgstr "Získejte API klíč <a href=\"https://mycloud.rackspace.com/\">z vaší Rackspace Cloud konzole</a> (přečtěte si instrukce <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">zde</a>), pak vyberte název kontejneru pro uložiště. Pokud takový kontejner ještě neexistuje, bude vytvořen."
5038
+
5039
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5040
+ #: methods/openstack2.php:94
5041
+ msgid "Also, you should read this important FAQ."
5042
+ msgstr "Také byste si měli přečíst tyto často kladené otázky."
5043
+
5044
+ #: methods/googledrive.php:410
5045
+ msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5046
+ msgstr "Účet je plný: váš %s účet má pouze %d bytů volného místa, ale soubor k nahrání má %d bytů"
5047
+
5048
+ #: methods/googledrive.php:381 methods/googledrive.php:427
5049
+ #: methods/googledrive.php:433 methods/googledrive.php:435
5050
+ #: methods/stream-base.php:196
5051
+ msgid "Failed to upload to %s"
5052
+ msgstr "Chyba při nahrávání do %s"
5053
+
5054
+ #: addons/googlecloud.php:445 addons/googlecloud.php:446
5055
+ #: addons/googlecloud.php:709 addons/onedrive.php:496
5056
+ #: methods/googledrive.php:455 methods/googledrive.php:456
5057
+ msgid "Account is not authorized."
5058
+ msgstr "Účet není ověřen."
5059
+
5060
+ #: methods/addon-base.php:230 methods/cloudfiles.php:438
5061
+ #: methods/dropbox.php:420 methods/ftp.php:298 methods/googledrive.php:889
5062
+ #: methods/openstack-base.php:419 methods/s3.php:707
5063
+ #: methods/stream-base.php:212
5064
+ 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."
5065
+ msgstr "%s je skvělá volba, protože UpdraftPlus podporuje rozkouskované nahrávání - bez ohledu na to, jak jsou vaše stránky velké, UpdraftPlus dokáže nahrávat pomalu v čase bez hrozby přerušení kvůli vypršení času."
5066
+
5067
+ #: restorer.php:1734
5068
+ msgid "will restore as:"
5069
+ msgstr "se obnoví jako:"
5070
+
5071
+ #: addons/migrator.php:1123 restorer.php:1964
5072
+ msgid "the database query being run was:"
5073
+ msgstr "byl spuštěn databázový dotaz:"
5074
+
5075
+ #: restorer.php:1796
5076
+ msgid "Finished: lines processed: %d in %.2f seconds"
5077
+ msgstr "Skončeno: zpracováno řádků: %d v %.2f sekundách"
5078
+
5079
+ #: restorer.php:2062 restorer.php:2137
5080
+ msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5081
+ msgstr "Prefix tabulek se změnil: Měním patřičně pole %s tabulky:"
5082
+
5083
+ #: addons/migrator.php:1750 admin.php:3457 admin.php:3491 admin.php:3495
5084
+ #: admin.php:4879 admin.php:4893 restorer.php:2068 restorer.php:2173
5085
+ msgid "OK"
5086
+ msgstr "OK"
5087
+
5088
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5089
+ msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5090
+ msgstr "Jelikož vaše současné přihlašovací údaje nefungují, potřebujete nové ověření s %s."
5091
+
5092
+ #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5093
+ #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5094
+ msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5095
+ msgstr "Nemáte nainstalovaný UpdraftPlus %s add-on - získejte ho z %s"
5096
+
5097
+ #: methods/viaaddon-base.php:72
5098
+ msgid "%s support is available as an add-on"
5099
+ msgstr "%s podpora je dostupná ve formě add-onu"
5100
+
5101
+ #: methods/viaaddon-base.php:72
5102
+ msgid "follow this link to get it"
5103
+ msgstr "pro získání následujte tento odkaz"
5104
+
5105
+ #: addons/googlecloud.php:382 methods/googledrive.php:297
5106
+ 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."
5107
+ msgstr "Od Googlu nebyl přijat žádný obnovovací token. Často to znamená, že jste špatně vložili klientovo tajemství, nebo že jste neprovedli nové ověření (níže) po jeho opravení. Překontrolujte ho a pak klikněte na odkaz k novému ověření. Pokud to nepomůže, použijte expert mód k vymazání všech vašich nastavení, založte nové Google klient ID/tajemství a začněte znovu."
5108
+
5109
+ #: addons/googlecloud.php:390 methods/googledrive.php:305
5110
+ msgid "Authorization failed"
5111
+ msgstr "Ověření selhalo"
5112
+
5113
+ #: addons/onedrive.php:577 methods/dropbox.php:535 methods/googledrive.php:332
5114
+ msgid "Your %s quota usage: %s %% used, %s available"
5115
+ msgstr "Vaše %s kvóta používání: %s %% použito, %s dostupné"
5116
+
5117
+ #: addons/googlecloud.php:579 addons/googlecloud.php:689
5118
+ #: addons/onedrive.php:611 addons/sftp.php:480 methods/addon-base.php:291
5119
+ #: methods/cloudfiles.php:560 methods/googledrive.php:358
5120
+ #: methods/openstack-base.php:392 methods/s3.php:960
5121
+ #: methods/stream-base.php:308
5122
+ msgid "Success"
5123
+ msgstr "Úspěch"
5124
+
5125
+ #: addons/googlecloud.php:579 addons/onedrive.php:611
5126
+ #: methods/googledrive.php:358
5127
+ msgid "you have authenticated your %s account."
5128
+ msgstr "Ověřili jste svůj %s účet."
5129
+
5130
+ #: methods/googledrive.php:507
5131
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5132
+ msgstr "Neobdrželi jsme přístupový token od Googlu - musíte autorizovat, nebo re-autorizovat vaše připojení ke Google Disku."
5133
+
5134
+ #: restorer.php:429
5135
+ msgid "wp-config.php from backup: restoring (as per user's request)"
5136
+ msgstr "wp-config.php ze zálohy: obnovuji (dle přání uživatele)"
5137
+
5138
+ #: restorer.php:1330
5139
+ 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."
5140
+ msgstr "Varování: PHP safe_mode je na vašem serveru aktivní. Vypršení času je mnohem pravděpodobnější. Pokud se to stane, budete muset ručně obnovit soubor přes phpMyAdmin nebo jinou metodou."
5141
+
5142
+ #: restorer.php:1353
5143
+ msgid "Failed to find database file"
5144
+ msgstr "Nepodařilo se najít soubor databáze"
5145
+
5146
+ #: restorer.php:1374
5147
+ msgid "Failed to open database file"
5148
+ msgstr "Nepodařilo se otevřít soubor databáze"
5149
+
5150
+ #: addons/migrator.php:588 restorer.php:1379
5151
+ msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5152
+ msgstr "Přístup k databázi: Přímý přístup k MySQL není k dispozici, takže jsme se vrátili do wpdb (což bude výrazně pomalejší)"
5153
+
5154
+ #: addons/reporting.php:65 addons/reporting.php:148 backup.php:923
5155
+ #: class-updraftplus.php:3616
5156
+ msgid "Backup of:"
5157
+ msgstr "Záloha:"
5158
+
5159
+ #: restorer.php:1545 restorer.php:1638 restorer.php:1664
5160
+ msgid "Old table prefix:"
5161
+ msgstr "Starý prefix tabulky:"
5162
+
5163
+ #: admin.php:4890
5164
+ msgid "Archive is expected to be size:"
5165
+ msgstr "Předpokládaná velikost archivu:"
5166
+
5167
+ #: admin.php:4898
5168
+ msgid "The backup records do not contain information about the proper size of this file."
5169
+ msgstr "Záznamy zálohy neobsahují informaci o správné velikosti tohoto souboru."
5170
+
5171
+ #: admin.php:4996
5172
+ msgid "Error message"
5173
+ msgstr "Chybová zpráva"
5174
+
5175
+ #: admin.php:4901 admin.php:4902
5176
+ msgid "Could not find one of the files for restoration"
5177
+ msgstr "Nelze najít jeden ze souborů k obnově"
5178
+
5179
+ #: restorer.php:90
5180
+ msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5181
+ msgstr "UpdraftPlus nedokáže přímo obnovit tento druh entity. Musí být obnovena ručně."
5182
+
5183
+ #: restorer.php:91
5184
+ msgid "Backup file not available."
5185
+ msgstr "Soubor se zálohou není dostupný."
5186
+
5187
+ #: restorer.php:92
5188
+ msgid "Copying this entity failed."
5189
+ msgstr "Kopírování této entity selhalo."
5190
+
5191
+ #: restorer.php:93
5192
+ msgid "Unpacking backup..."
5193
+ msgstr "Rozbalování zálohy..."
5194
+
5195
+ #: restorer.php:94
5196
+ msgid "Decrypting database (can take a while)..."
5197
+ msgstr "Dešifrování databáze (může chvíli trvat)..."
5198
+
5199
+ #: restorer.php:95
5200
+ msgid "Database successfully decrypted."
5201
+ msgstr "Databáze úspěšně dešifrována."
5202
+
5203
+ #: restorer.php:98
5204
+ 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)..."
5205
+ msgstr "Obnovování databáze (na větší stránce to může trvat dlouho - pokud čas vyprší (což může nastat, pokud vám váš poskytovatel hostingu omezil zdroje) pak byste měli použít jinou metodu, jako například phpMyAdmina)..."
5206
+
5207
+ #: restorer.php:99
5208
+ msgid "Cleaning up rubbish..."
5209
+ msgstr "Uklízím smetí..."
5210
+
5211
+ #: restorer.php:101
5212
+ msgid "Could not delete old directory."
5213
+ msgstr "Nelze smazat starou složku."
5214
+
5215
+ #: restorer.php:104
5216
+ msgid "Failed to delete working directory after restoring."
5217
+ msgstr "Nelze smazat pracovní složku po obnově."
5218
+
5219
+ #: restorer.php:301
5220
+ msgid "Failed to create a temporary directory"
5221
+ msgstr "Nelze založit dočasnou složku"
5222
+
5223
+ #: restorer.php:316
5224
+ msgid "Failed to write out the decrypted database to the filesystem"
5225
+ msgstr "Nepovedlo se zapsat dešifrovanou databázi do systému souborů"
5226
+
5227
+ #: restorer.php:424
5228
+ msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5229
+ msgstr "wp-config.php ze zálohy: bude obnoven jako wp-config-backup.php"
5230
+
5231
+ #: admin.php:4012
5232
+ 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."
5233
+ msgstr "Vybráním této možnosti snížíte zabezpečení tím, že úplně zakážete UpdraftPlus používat SSL pro ověření a šifrovaný přenos, kde by možný.Uvědomte si, že někteří poskytovatelé cloudových uložišť toto nedovolují (například Dropbox), takže s těmito poskytovateli nebude mít tato možnost žádný efekt."
5234
+
5235
+ #: admin.php:4035
5236
+ msgid "Save Changes"
5237
+ msgstr "Uložit změny"
5238
+
5239
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:735
5240
+ msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5241
+ msgstr "Instalace PHP na vašem serveru nemá požadovaný modul (%s). Kontaktujte prosím svého poskytovatele webu."
5242
+
5243
+ #: admin.php:4158
5244
+ 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)."
5245
+ msgstr "Vaše instalace PHP/Curl nepodporuje https přístup. Komunikace s %s bude nešifrovaná. Požádejte svého poskytovatele web, aby nainstaloval Curl/SSL, abyste mohli získat možnost pro šifrování (pomocí add-onu)."
5246
+
5247
+ #: admin.php:4160
5248
+ 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."
5249
+ msgstr "Vaše instalace PHP/Curl nepodporuje https přístup. Bez této podpory nemůžeme přistoupit k %s. Kontaktujte prosím svého poskytovatele webu. %s <strong>vyžaduje</strong> Curl + https. Prosím nekontaktujte naši podporu; neexistuje jiná alternativa."
5250
+
5251
+ #: admin.php:4163
5252
+ 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."
5253
+ msgstr "Dobré zprávy: Komunikace vašich stránek s %s může být šifrovaná. Pokud uvidíte nějakou chybu týkající se šifrování, podívejte se do \"Pokročilého nastavení\"."
5254
+
5255
+ #: admin.php:4635
5256
+ msgid "Delete this backup set"
5257
+ msgstr "Smazat tuto zálohu"
5258
+
5259
+ #: admin.php:4542
5260
+ msgid "Press here to download"
5261
+ msgstr "Klikněte sem pro stažení"
5262
+
5263
+ #: admin.php:4626
5264
+ msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5265
+ msgstr "Po stisku tohoto tlačítka dostane možnost vybrat si komponenty, které chcete obnovit"
5266
+
5267
+ #: admin.php:4677
5268
+ msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5269
+ msgstr "tato záloha neexistuje v historii záloh - obnova zrušena. Časová značka:"
5270
+
5271
+ #: admin.php:4725
5272
+ msgid "UpdraftPlus Restoration: Progress"
5273
+ msgstr "UpdraftPlus obnova: Průběh"
5274
+
5275
+ #: admin.php:4771
5276
+ msgid "ABORT: Could not find the information on which entities to restore."
5277
+ msgstr "ZRUŠENO: Nenalezena informace o tom, které entity obnovit."
5278
+
5279
+ #: admin.php:4772
5280
+ msgid "If making a request for support, please include this information:"
5281
+ msgstr "Pokud budete žádat o pomoc podporu, vložte prosím tuto informaci:"
5282
+
5283
+ #: admin.php:4006
5284
+ msgid "Do not verify SSL certificates"
5285
+ msgstr "Neověřovat SSL certifikáty"
5286
+
5287
+ #: admin.php:4007
5288
+ 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."
5289
+ msgstr "Vybráním této možnosti snížíte zabezpečení, protože zastavíte UpdraftPlus v používání šifrování při připojování na stránky (jako je Dropbox, nebo Google Disk). To znamená, že bude UpdraftPlus používat SSL pouze pro šifrování přenosu data a ne pro přihlášení."
5290
+
5291
+ #: admin.php:4007
5292
+ msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5293
+ msgstr "Uvědomte si, že ne všechny metody zálohy do cloudu musí nutně vyžadovat SSL ověření."
5294
+
5295
+ #: admin.php:4011
5296
+ msgid "Disable SSL entirely where possible"
5297
+ msgstr "Pokud je to možné, zakázat SSL úplně"
5298
+
5299
+ #: admin.php:3956
5300
+ msgid "Expert settings"
5301
+ msgstr "Pokročilé nastavení"
5302
+
5303
+ #: admin.php:3957
5304
+ msgid "Show expert settings"
5305
+ msgstr "Ukázat pokročilé nastavení"
5306
+
5307
+ #: admin.php:3957
5308
+ msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5309
+ msgstr "klikněte sem pro zobrazení dalších možností; nezatěžujte se s nimi, pokud nemáte problém, nebo nejste zvědaví."
5310
+
5311
+ #: admin.php:3977
5312
+ msgid "Delete local backup"
5313
+ msgstr "Smazat místní zálohu"
5314
+
5315
+ #: admin.php:3982
5316
+ msgid "Backup directory"
5317
+ msgstr "Složka zálohy"
5318
+
5319
+ #: admin.php:3662
5320
+ msgid "Backup directory specified is writable, which is good."
5321
+ msgstr "Do složka zálohy lze zapisovat, což je dobře."
5322
+
5323
+ #: admin.php:3670
5324
+ msgid "Click here to attempt to create the directory and set the permissions"
5325
+ msgstr "Klikněte sem pro pokus o vytvoření složky a nastavení práv"
5326
+
5327
+ #: admin.php:3670
5328
+ msgid "or, to reset this option"
5329
+ msgstr "nebo pro reset možnosti"
5330
+
5331
+ #: admin.php:3670
5332
+ msgid "click here"
5333
+ msgstr "klikněte sem"
5334
+
5335
+ #: admin.php:3670
5336
+ 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."
5337
+ msgstr "Pokud se akce nezdařila, zkontrolujte oprávnění na serveru, nebo nastavení změňte na složku do které může zapisovat proces webserveru."
5338
+
5339
+ #: admin.php:4001
5340
+ msgid "Use the server's SSL certificates"
5341
+ msgstr "Použít SSL certifikáty serveru"
5342
+
5343
+ #: admin.php:4002
5344
+ 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."
5345
+ msgstr "V základu požívá UpdraftPlus svůj vlastní seznam SSL certifikátů k ověření identity vzdálených stránek (například k ověření, že se připojuje ke skutečnému Dropboxu, Amazon S3, atd. a ne k útočníkovi). Tento seznam udržujeme aktualizovaný. Nicméně pokud dostanete SSl chybu, pak vybrání této možnosti (která způsobí, že místo toho UpdraftPlus použije seznam vašeho webserveru) může pomoci."
5346
+
5347
+ #: admin.php:3929 udaddons/options.php:143
5348
+ msgid "Email"
5349
+ msgstr "Email"
5350
+
5351
+ #: admin.php:3850
5352
+ msgid "Database encryption phrase"
5353
+ msgstr "Fráze pro šifrování databáze"
5354
+
5355
+ #: admin.php:3869
5356
+ msgid "Manually decrypt a database backup file"
5357
+ msgstr "Ručně dešifrovat soubor databáze"
5358
+
5359
+ #: admin.php:3782
5360
+ msgid "Choose your remote storage"
5361
+ msgstr "Vybrat vaše vzdálené uložiště"
5362
+
5363
+ #: addons/reporting.php:212 admin.php:4303
5364
+ msgid "None"
5365
+ msgstr "Žádné"
5366
+
5367
+ #: admin.php:511
5368
+ msgid "Cancel"
5369
+ msgstr "Zrušit"
5370
+
5371
+ #: admin.php:495
5372
+ msgid "Requesting start of backup..."
5373
+ msgstr "Požaduji začátek zálohy..."
5374
+
5375
+ #: admin.php:3952
5376
+ msgid "Advanced / Debugging Settings"
5377
+ msgstr "Pokročilé / Debug nastavení"
5378
+
5379
+ #: admin.php:3967
5380
+ msgid "Debug mode"
5381
+ msgstr "Debug mód"
5382
+
5383
+ #: admin.php:3840
5384
+ msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5385
+ msgstr "Složky výše jsou všechno, kromě jádra WordPressu, které můžete kdykoliv stáhnout aktuální z WordPress.org."
5386
+
5387
+ #: admin.php:3653
5388
+ msgid "Daily"
5389
+ msgstr "Denně"
5390
+
5391
+ #: admin.php:3654
5392
+ msgid "Weekly"
5393
+ msgstr "Týdně"
5394
+
5395
+ #: admin.php:3655
5396
+ msgid "Fortnightly"
5397
+ msgstr "Dvoutýdně"
5398
+
5399
+ #: admin.php:3656
5400
+ msgid "Monthly"
5401
+ msgstr "Měsíčně"
5402
+
5403
+ #: admin.php:3766
5404
+ msgid "To fix the time at which a backup should take place,"
5405
+ msgstr "K opravě času, kdy se má záloha provést,"
5406
+
5407
+ #: admin.php:3766
5408
+ msgid "e.g. if your server is busy at day and you want to run overnight"
5409
+ msgstr "například pokud je váš server zatížen přes den a chcete aby záloha běžela přes noc"
5410
+
5411
+ #: admin.php:3837
5412
+ msgid "Include in files backup"
5413
+ msgstr "Zahrnout do souborů zálohy"
5414
+
5415
+ #: admin.php:4095
5416
+ msgid "Any other directories found inside wp-content"
5417
+ msgstr "Jakoukoliv další složku nalezenou ve wp-content"
5418
+
5419
+ #: addons/morefiles.php:260 admin.php:4104
5420
+ msgid "Exclude these:"
5421
+ msgstr "Kromě těchto:"
5422
+
5423
+ #: admin.php:3155
5424
+ msgid "Debug Database Backup"
5425
+ msgstr "Debug zálohy databáze"
5426
+
5427
+ #: admin.php:3155
5428
+ 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.."
5429
+ msgstr "Toto způsobí okamžitou zálohu databáze. Stránka se bude načítat, doku nebude dokončena (případně nezruší). Záloze může snadno vypršet čas; toto tlačítko je opravdu pomocné pouze pro zjištění, zda se záloha dokáže dostat přes úvodní fáze, nebo pro malé WordPress stránky..."
5430
+
5431
+ #: admin.php:3165
5432
+ msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5433
+ msgstr "Toto smaže vaše veškeré nastavení UpdraftPlus - jste si jisti, že chcete pokračovat?"
5434
+
5435
+ #: admin.php:3392
5436
+ msgid "show log"
5437
+ msgstr "ukázat log"
5438
+
5439
+ #: addons/migrator.php:2243 admin.php:512 admin.php:2933 admin.php:3451
5440
+ #: admin.php:3484 admin.php:4635
5441
+ msgid "Delete"
5442
+ msgstr "Smazat"
5443
+
5444
+ #: admin.php:3535
5445
+ msgid "The request to the filesystem to create the directory failed."
5446
+ msgstr "Žádost souborovému systému o vytvoření složky selhal."
5447
+
5448
+ #: admin.php:3549
5449
+ 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"
5450
+ msgstr "Složka byla vytvořena, ale museli jsme změnit její oprávnění na 777 (všemi zapisovatelné), abychom do ní mohli zapsat. Měli byste si u poskytovatele hostingu ověřit, že to nezpůsobí žádný problém"
5451
+
5452
+ #: admin.php:3554
5453
+ msgid "The folder exists, but your webserver does not have permission to write to it."
5454
+ msgstr "Složka existuje, ale váš webserver nemá oprávnění, aby do ní mohl zapisovat."
5455
+
5456
+ #: admin.php:518 admin.php:3636
5457
+ msgid "Download log file"
5458
+ msgstr "Stáhnout log soubor"
5459
+
5460
+ #: admin.php:2509
5461
+ msgid "Multisite"
5462
+ msgstr "Multisite"
5463
+
5464
+ #: admin.php:2513
5465
+ msgid "Do you need WordPress Multisite support?"
5466
+ msgstr "Potřebujete WodPress Multisite podporu?"
5467
+
5468
+ #: admin.php:2513
5469
+ msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5470
+ msgstr "Podívejte se prosím na UpdraftPlus Premium, nebo samostatný Multisite add-on."
5471
+
5472
+ #: admin.php:3070
5473
+ msgid "Web server:"
5474
+ msgstr "Web server:"
5475
+
5476
+ #: admin.php:3079
5477
+ msgid "Peak memory usage"
5478
+ msgstr "Špičkové použití paměti"
5479
+
5480
+ #: admin.php:3080
5481
+ msgid "Current memory usage"
5482
+ msgstr "Současné použití paměti"
5483
+
5484
+ #: admin.php:3082 admin.php:3083 admin.php:3090 admin.php:3091
5485
+ msgid "%s version:"
5486
+ msgstr "%s verze:"
5487
+
5488
+ #: admin.php:3092 admin.php:3095 admin.php:3098 admin.php:3102
5489
+ msgid "Yes"
5490
+ msgstr "Ano"
5491
+
5492
+ #: admin.php:3092 admin.php:3098 admin.php:3102
5493
+ msgid "No"
5494
+ msgstr "Ne"
5495
+
5496
+ #: admin.php:3127
5497
+ msgid "Total (uncompressed) on-disk data:"
5498
+ msgstr "Celkem (nezabalených) dat na disku:"
5499
+
5500
+ #: admin.php:3128
5501
+ msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5502
+ msgstr "Pozn. Tento počet je založen na tom, co bylo, nebo nebylo vyjmuto, když jste naposledy ukládali možnosti."
5503
+
5504
+ #: admin.php:3136
5505
+ msgid "count"
5506
+ msgstr "počet"
5507
+
5508
+ #: admin.php:3150
5509
+ msgid "Debug Full Backup"
5510
+ msgstr "Debug plné zálohy"
5511
+
5512
+ #: admin.php:3150
5513
+ msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5514
+ msgstr "Toto způsobí okamžitou zálohu. Stránka se bude načítat, doku nebude dokončena (případně se záloha nezruší)."
5515
+
5516
+ #: admin.php:2891
5517
+ msgid "UpdraftPlus - Upload backup files"
5518
+ msgstr "UpdraftPlus - nahrávám soubory zálohy"
5519
+
5520
+ #: admin.php:478 admin.php:2875
5521
+ msgid "calculating..."
5522
+ msgstr "počítám..."
5523
+
5524
+ #: addons/cloudfiles-enhanced.php:90 addons/migrator.php:751
5525
+ #: addons/migrator.php:972 addons/migrator.php:1053 addons/migrator.php:1123
5526
+ #: addons/migrator.php:1348 addons/migrator.php:1689 addons/migrator.php:1716
5527
+ #: addons/migrator.php:1722 addons/migrator.php:1784 addons/migrator.php:1820
5528
+ #: addons/migrator.php:1859 addons/migrator.php:1869 addons/migrator.php:1874
5529
+ #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
5530
+ #: addons/s3-enhanced.php:127 addons/sftp.php:736 admin.php:487 admin.php:4895
5531
+ #: admin.php:4925 methods/remotesend.php:76 methods/remotesend.php:234
5532
+ #: methods/updraftvault.php:418 restorer.php:1292
5533
+ msgid "Error:"
5534
+ msgstr "Chyba:"
5535
+
5536
+ #: admin.php:490
5537
+ msgid "You should:"
5538
+ msgstr "Měli byste:"
5539
+
5540
+ #: admin.php:494
5541
+ msgid "Download error: the server sent us a response which we did not understand."
5542
+ msgstr "Chyba stahování: server nám zaslal odpověď, které nerozumíme."
5543
+
5544
+ #: admin.php:2943
5545
+ msgid "Delete backup set"
5546
+ msgstr "Smazat zálohu"
5547
+
5548
+ #: admin.php:2964
5549
+ msgid "Restore backup"
5550
+ msgstr "Obnovit zálohu"
5551
+
5552
+ #: admin.php:2965
5553
+ msgid "Restore backup from"
5554
+ msgstr "Obnovit zálohu z"
5555
+
5556
+ #: admin.php:2977
5557
+ 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)."
5558
+ msgstr "Obnova nahradí na této stránce témata, pluginy, nahrané soubory, databázi a/nebo ostatní obsah složek (podle toho, co je obsaženo v záloze a co zvolíte)."
5559
+
5560
+ #: admin.php:2977
5561
+ msgid "Choose the components to restore"
5562
+ msgstr "Vybrat komponenty k obnově"
5563
+
5564
+ #: admin.php:2989
5565
+ msgid "Your web server has PHP's so-called safe_mode active."
5566
+ msgstr "Váš webserver má aktivní takzvaný PHP safe_mode."
5567
+
5568
+ #: admin.php:3002
5569
+ msgid "The following entity cannot be restored automatically: \"%s\"."
5570
+ msgstr "Tato entita nemůže být automaticky obnovena: \"%s\"."
5571
+
5572
+ #: admin.php:3002
5573
+ msgid "You will need to restore it manually."
5574
+ msgstr "Budete ji muset obnovit ručně."
5575
+
5576
+ #: addons/morefiles.php:63 admin.php:3009
5577
+ msgid "%s restoration options:"
5578
+ msgstr "%s možnosti obnovy:"
5579
+
5580
+ #: admin.php:3017
5581
+ 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"
5582
+ msgstr "Pro databázi můžete použít najít a nahradit (pro migraci stránek na nové umístění/URL) pomocí Migrator add-onu - následujte odkaz pro více informací"
5583
+
5584
+ #: admin.php:3028
5585
+ msgid "Do read this helpful article of useful things to know before restoring."
5586
+ msgstr "Před obnovou si přečtěte tento článek plný užitečných věcí."
5587
+
5588
+ #: admin.php:2498
5589
+ msgid "Perform a one-time backup"
5590
+ msgstr "Provést jednorázovou zálohu"
5591
+
5592
+ #: admin.php:330 admin.php:510 admin.php:2443
5593
+ msgid "Backup Now"
5594
+ msgstr "Zálohovat nyní"
5595
+
5596
+ #: addons/migrator.php:221 admin.php:517 admin.php:2446 admin.php:4626
5597
+ msgid "Restore"
5598
+ msgstr "Obnovit"
5599
+
5600
+ #: addons/autobackup.php:289 addons/autobackup.php:383 admin.php:2798
5601
+ #: admin.php:2803
5602
+ msgid "Last log message"
5603
+ msgstr "Poslední log zpráva"
5604
+
5605
+ #: admin.php:2799 admin.php:2805 central/bootstrap.php:159
5606
+ msgid "(Nothing yet logged)"
5607
+ msgstr "(Zatím nebylo nic logováno)"
5608
+
5609
+ #: admin.php:2840
5610
+ msgid "Download most recently modified log file"
5611
+ msgstr "Stáhnout naposledy upravený log soubor"
5612
+
5613
+ #: admin.php:2878
5614
+ msgid "More tasks:"
5615
+ msgstr "Více úkolů:"
5616
+
5617
+ #: admin.php:2884
5618
+ msgid "Opera web browser"
5619
+ msgstr "Prohlížeč Opera"
5620
+
5621
+ #: admin.php:2884
5622
+ msgid "If you are using this, then turn Turbo/Road mode off."
5623
+ msgstr "Pokud ho používáte, vypněte režim Turbo/Na cestách."
5624
+
5625
+ #: addons/google-enhanced.php:72 methods/googledrive.php:146
5626
+ #: methods/googledrive.php:358 methods/googledrive.php:381
5627
+ #: methods/googledrive.php:410 methods/googledrive.php:417
5628
+ #: methods/googledrive.php:427 methods/googledrive.php:433
5629
+ #: methods/googledrive.php:435 methods/googledrive.php:888
5630
+ #: methods/googledrive.php:900 methods/googledrive.php:916
5631
+ #: methods/googledrive.php:920 methods/googledrive.php:931
5632
+ #: methods/googledrive.php:941
5633
+ msgid "Google Drive"
5634
+ msgstr "Google Disk"
5635
+
5636
+ #: admin.php:2875
5637
+ msgid "Web-server disk space in use by UpdraftPlus"
5638
+ msgstr "UpdraftPlusem využité místo na webserverovém disku"
5639
+
5640
+ #: admin.php:2875
5641
+ msgid "refresh"
5642
+ msgstr "obnovit"
5643
+
5644
+ #: admin.php:2173
5645
+ msgid "Lead developer's homepage"
5646
+ msgstr "Domácí stránka vedoucího vývojáře"
5647
+
5648
+ #: admin.php:2174
5649
+ msgid "Version"
5650
+ msgstr "Verze"
5651
+
5652
+ #: admin.php:2351
5653
+ msgid "Your backup has been restored."
5654
+ msgstr "Vaše záloha byla obnovena."
5655
+
5656
+ #: admin.php:2370
5657
+ msgid "Current limit is:"
5658
+ msgstr "Současný limit je:"
5659
+
5660
+ #: admin.php:497 admin.php:3182
5661
+ msgid "Delete Old Directories"
5662
+ msgstr "Smazat staré složky"
5663
+
5664
+ #: admin.php:2428
5665
+ msgid "JavaScript warning"
5666
+ msgstr "JavaScript varování"
5667
+
5668
+ #: admin.php:2429
5669
+ msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5670
+ msgstr "Toto administrátorské prostředí využívá JavaScript. Buď ho ve svém prohlížeči musíte povolit, nebo použít prohlížeč, který podporuje JavaScript."
5671
+
5672
+ #: admin.php:125 admin.php:146 admin.php:153
5673
+ msgid "Nothing currently scheduled"
5674
+ msgstr "V současnosti není nic naplánováno"
5675
+
5676
+ #: admin.php:135
5677
+ msgid "At the same time as the files backup"
5678
+ msgstr "Ve stejné době, jako záloha souborů"
5679
+
5680
+ #: admin.php:2464
5681
+ msgid "Next scheduled backups"
5682
+ msgstr "Další naplánované zálohy"
5683
+
5684
+ #: admin.php:155
5685
+ msgid "Files"
5686
+ msgstr "Soubory"
5687
+
5688
+ #: addons/migrator.php:1754 addons/moredatabase.php:235
5689
+ #: addons/reporting.php:227 admin.php:159 admin.php:1288 admin.php:3007
5690
+ #: admin.php:3009 admin.php:4278 admin.php:4470 admin.php:4979
5691
+ msgid "Database"
5692
+ msgstr "Databáze"
5693
+
5694
+ #: admin.php:785
5695
+ msgid "Your website is hosted using the %s web server."
5696
+ msgstr "Vaše stránky jsou hostovány pomocí %s webserveru."
5697
+
5698
+ #: admin.php:785
5699
+ msgid "Please consult this FAQ if you have problems backing up."
5700
+ msgstr "Pokud máte problém se zálohováním, pročtěte si tyto často kladené otázky."
5701
+
5702
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:820
5703
+ #: admin.php:824
5704
+ msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5705
+ msgstr "Pro ověření %s účtu klikněte sem (bez ověření nebudete moct na %s zálohovat)."
5706
+
5707
+ #: admin.php:560
5708
+ msgid "Nothing yet logged"
5709
+ msgstr "Zatím nebylo nic zalogováno"
5710
+
5711
+ #: admin.php:1802
5712
+ msgid "OK. You should soon see activity in the \"Last log message\" field below."
5713
+ msgstr "Dobře. Brzy byste měli vidět aktivitu v poli \"Poslední log zpráva\" níže."
5714
+
5715
+ #: admin.php:1718
5716
+ msgid "Job deleted"
5717
+ msgstr "Práce smazána"
5718
+
5719
+ #: admin.php:1726
5720
+ msgid "Could not find that job - perhaps it has already finished?"
5721
+ msgstr "Nemohu najít danou práci - možná už je skončená?"
5722
+
5723
+ #: admin.php:488 admin.php:1698 admin.php:4877 class-updraftplus.php:880
5724
+ #: methods/addon-base.php:75 methods/addon-base.php:80
5725
+ #: methods/addon-base.php:194 methods/addon-base.php:214
5726
+ #: methods/stream-base.php:196 restorer.php:2064 restorer.php:2089
5727
+ #: restorer.php:2170 updraftplus.php:147
5728
+ msgid "Error"
5729
+ msgstr "Chyba"
5730
+
5731
+ #: admin.php:1907
5732
+ msgid "Download failed"
5733
+ msgstr "Stahování selhalo"
5734
+
5735
+ #: admin.php:489 admin.php:1926
5736
+ msgid "File ready."
5737
+ msgstr "Soubor je připraven."
5738
+
5739
+ #: admin.php:1936
5740
+ msgid "Download in progress"
5741
+ msgstr "Probíhá stahování"
5742
+
5743
+ #: admin.php:1939
5744
+ msgid "No local copy present."
5745
+ msgstr "Není dostupná lokální kopie."
5746
+
5747
+ #: admin.php:2058
5748
+ msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5749
+ msgstr "Špatný formát názvu souboru - nezdá se, že jde o soubor vytvořený UpdraftPlus"
5750
+
5751
+ #: admin.php:2148
5752
+ msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5753
+ msgstr "Špatný formát názvu souboru - nezdá se, že jde o šifrovaný databázový soubor vytvořený UpdraftPlus"
5754
+
5755
+ #: admin.php:2233
5756
+ msgid "Restore successful!"
5757
+ msgstr "Obnova byla úspěšná!"
5758
+
5759
+ #: admin.php:2243 admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5760
+ #: admin.php:4343
5761
+ msgid "Actions"
5762
+ msgstr "Akce"
5763
+
5764
+ #: addons/migrator.php:273 addons/migrator.php:285 admin.php:2243
5765
+ #: admin.php:2252 admin.php:2261 admin.php:2303 admin.php:3425
5766
+ msgid "Return to UpdraftPlus Configuration"
5767
+ msgstr "Vracím se do konfigurace UpdraftPlus"
5768
+
5769
+ #: admin.php:3418
5770
+ msgid "Remove old directories"
5771
+ msgstr "Smazat staré složky"
5772
+
5773
+ #: admin.php:3421
5774
+ msgid "Old directories successfully removed."
5775
+ msgstr "Staré složky byly úspěšně smazány."
5776
+
5777
+ #: admin.php:3423
5778
+ msgid "Old directory removal failed for some reason. You may want to do this manually."
5779
+ msgstr "Z nějakého důvodu se nepodařilo odstranit staré složky. Budete to muset udělat ručně."
5780
+
5781
+ #: admin.php:2294
5782
+ msgid "Backup directory could not be created"
5783
+ msgstr "Složka pro zálohu nemohla být vytvořena."
5784
+
5785
+ #: admin.php:2301
5786
+ msgid "Backup directory successfully created."
5787
+ msgstr "Složka pro zálohu byla úspěšně vytvořena."
5788
+
5789
+ #: admin.php:2324
5790
+ msgid "Your settings have been wiped."
5791
+ msgstr "Vaše nastavení bylo vymazáno."
5792
+
5793
+ #: class-updraftplus.php:3485
5794
+ msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5795
+ msgstr "Prosím pomozte UpdraftPlus tím, že mu dáte pozitivní hodnocení na wordpress.org"
5796
+
5797
+ #: class-updraftplus.php:3492
5798
+ msgid "Need even more features and support? Check out UpdraftPlus Premium"
5799
+ msgstr "Potřebujete ještě více funkcí a podpory? Zkuste UpdraftPlus Premium"
5800
+
5801
+ #: class-updraftplus.php:3502
5802
+ msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5803
+ msgstr "Pro pomoc, add-ony a podporu běžte na UpdraftPlus.Com"
5804
+
5805
+ #: backup.php:1955
5806
+ msgid "Infinite recursion: consult your log for more information"
5807
+ msgstr "Nekonečná rekurze: pro více informací se podívejte do logu"
5808
+
5809
+ #: backup.php:229
5810
+ msgid "Could not create %s zip. Consult the log file for more information."
5811
+ msgstr "%s zip soubor nelze vytvořit. Pro více informací se podívejte do logu."
5812
+
5813
+ #: admin.php:667
5814
+ msgid "Allowed Files"
5815
+ msgstr "Povolené soubory"
5816
+
5817
+ #: admin.php:346 admin.php:709 admin.php:2406
5818
+ msgid "Settings"
5819
+ msgstr "Nastavení"
5820
+
5821
+ #: admin.php:713
5822
+ msgid "Add-Ons / Pro Support"
5823
+ msgstr "Add-ony / Pro podpora"
5824
+
5825
+ #: admin.php:769 admin.php:773 admin.php:777 admin.php:781 admin.php:785
5826
+ #: admin.php:794 admin.php:2870 admin.php:4151 admin.php:4158 admin.php:4160
5827
+ #: methods/cloudfiles.php:448 methods/ftp.php:284
5828
+ #: methods/openstack-base.php:429 methods/s3.php:731 methods/s3.php:735
5829
+ #: methods/updraftvault.php:244 udaddons/updraftplus-addons.php:208
5830
+ msgid "Warning"
5831
+ msgstr "Varování"
5832
+
5833
+ #: admin.php:777
5834
+ 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."
5835
+ msgstr "Na disku, který máte nastavený pro zálohy UpdraftPlus máte méně než %s volného místa. Mohlo by se stát, že UpdraftPlus zaplní zbytek volného místa. Pro vyřešení tohoto problému kontaktujte svého poskytovatele hostingu."
5836
+
5837
+ #: admin.php:781
5838
+ 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."
5839
+ msgstr "UpdraftPlus oficiálně nepodporuje WordPress verze nižší, než %s. Vše může fungovat, ale nebude vám poskytnuta žádná podpora, než si aktualizujete WordPress."
5840
+
5841
+ #: backup.php:924
5842
+ msgid "WordPress backup is complete"
5843
+ msgstr "Záloha WordPressu provedena"
5844
+
5845
+ #: admin.php:1976 backup.php:1120 restorer.php:168
5846
+ msgid "Backup directory (%s) is not writable, or does not exist."
5847
+ msgstr "Do složky zálohy (%s) nelze zapisovat, nebo neexistuje."
5848
+
5849
+ #: class-updraftplus.php:2916
5850
+ msgid "Could not read the directory"
5851
+ msgstr "Nelze přečíst složku"
5852
+
5853
+ #: class-updraftplus.php:2939
5854
+ msgid "Could not save backup history because we have no backup array. Backup probably failed."
5855
+ msgstr "Jelikož nemám pole zálohy, nelze uložit historii záloh. Záloha pravděpodobně selhala."
5856
+
5857
+ #: backup.php:1854
5858
+ msgid "Could not open the backup file for writing"
5859
+ msgstr "Soubor zálohy nelze otevřít pro zápis"
5860
+
5861
+ #: class-updraftplus.php:3287 class-updraftplus.php:3541 restorer.php:309
5862
+ msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5863
+ msgstr "Dešifrování selhalo. Soubor databáze je šifrovaný, ale nevložili jste žádný šifrovací klíč."
5864
+
5865
+ #: class-updraftplus.php:3298 class-updraftplus.php:3558 restorer.php:319
5866
+ msgid "Decryption failed. The most likely cause is that you used the wrong key."
5867
+ msgstr "Dešifrování selhalo. Nejpravděpodobněji jste zadali špatný klíč."
5868
+
5869
+ #: class-updraftplus.php:3298
5870
+ msgid "The decryption key used:"
5871
+ msgstr "Použitý dešifrovací klíč:"
5872
+
5873
+ #: addons/azure.php:215 class-updraftplus.php:3387 methods/googledrive.php:823
5874
+ msgid "File not found"
5875
+ msgstr "Soubor nenalezen"
5876
+
5877
+ #: class-updraftplus.php:3477
5878
+ msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5879
+ msgstr "Umíte překládat? Chcete vylepšit UpdraftPlus pro lidi mluvící vaším jazykem?"
5880
+
5881
+ #: class-updraftplus.php:3485
5882
+ msgid "Like UpdraftPlus and can spare one minute?"
5883
+ msgstr "Líbí se vám UpdraftPlus a můžete postrádat minutku?"
5884
+
5885
+ #: class-updraftplus.php:1293
5886
+ msgid "Themes"
5887
+ msgstr "Témata"
5888
+
5889
+ #: addons/multisite.php:452 class-updraftplus.php:1294
5890
+ msgid "Uploads"
5891
+ msgstr "Nahrané soubory"
5892
+
5893
+ #: class-updraftplus.php:1309
5894
+ msgid "Others"
5895
+ msgstr "Ostatní"
5896
+
5897
+ #: class-updraftplus.php:1910
5898
+ msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5899
+ msgstr "Ve složce pro zálohy nelze vytvořit soubory zálohy. Záloha zrušena - zkontrolujte UpdraftPlus nastavení."
5900
+
5901
+ #: addons/moredatabase.php:322
5902
+ msgid "Encryption error occurred when encrypting database. Encryption aborted."
5903
+ msgstr "Nastala chyba šifrování při šifrování databáze. Šifrování zrušeno."
5904
+
5905
+ #: class-updraftplus.php:2474
5906
+ msgid "The backup apparently succeeded and is now complete"
5907
+ msgstr "Záloha se zřejmě podařila a je hotová"
5908
+
5909
+ #: class-updraftplus.php:2489
5910
+ msgid "The backup attempt has finished, apparently unsuccessfully"
5911
+ msgstr "Pokus zálohu skončil, zřejmě neúspěchem"
5912
+
5913
+ #: addons/multisite.php:66 addons/multisite.php:647 options.php:41
5914
+ msgid "UpdraftPlus Backups"
5915
+ msgstr "UpdraftPlus zálohy"
5916
+
5917
+ #: admin.php:800 admin.php:804 admin.php:808 admin.php:812 admin.php:816
5918
+ #: admin.php:820 admin.php:824 class-updraftplus.php:361
5919
+ #: class-updraftplus.php:396 class-updraftplus.php:401
5920
+ #: class-updraftplus.php:406
5921
+ msgid "UpdraftPlus notice:"
5922
+ msgstr "UpdraftPlus poznámka:"
5923
+
5924
+ #: admin.php:1861 admin.php:1865 class-updraftplus.php:396
5925
+ msgid "The log file could not be read."
5926
+ msgstr "Nelze přečíst soubor logu."
5927
+
5928
+ #: class-updraftplus.php:401
5929
+ msgid "No log files were found."
5930
+ msgstr "Nebyl nalezen žádný log soubor."
5931
+
5932
+ #: class-updraftplus.php:1292
5933
+ msgid "Plugins"
5934
+ msgstr "Pluginy"
languages/updraftplus-da_DK.mo CHANGED
Binary file
languages/updraftplus-da_DK.po CHANGED
@@ -0,0 +1,5934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of UpdraftPlus in Danish
2
+ # This file is distributed under the same license as the UpdraftPlus package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-07-08 22:08:10+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/2.0.1\n"
11
+ "Project-Id-Version: UpdraftPlus\n"
12
+
13
+ #: methods/s3.php:87
14
+ msgid "No settings were found - please go to the Settings tab and check your settings"
15
+ msgstr "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
16
+
17
+ #: methods/s3.php:949
18
+ msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
19
+ msgstr "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
20
+
21
+ #: udaddons/updraftplus-addons.php:723
22
+ msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
23
+ msgstr "Ingen respons data blev modtaget. Dette indikerer normalt et netværksforbindelseproblem (fx en udgående firewall eller et overbelastet netværk) mellem dette websted og UpdraftPlus.com."
24
+
25
+ #: admin.php:597
26
+ msgid "UpdraftPlus Premium can automatically take a backup of your plugins or themes and database before you update. <a href=\"https://updraftplus.com/shop/autobackup/\" target=\"_blank\">Be safe every time, without needing to remember - follow this link to learn more</a>"
27
+ msgstr "UpdraftPlus Premium kan automatisk tage en backup af dine plugins, temaer og database, før du opdaterer. <a href=\"https://updraftplus.com/shop/autobackup/\" target=\"_blank\"> Vær sikker hver gang, uden at skulle huske på - Følg dette link for at lære mere</a>"
28
+
29
+ #: admin.php:598
30
+ msgid "Just this add-on"
31
+ msgstr "Kun dette add-on"
32
+
33
+ #: admin.php:599
34
+ msgid "Full Premium plugin"
35
+ msgstr "Full Premium plugin"
36
+
37
+ #: admin.php:3793
38
+ msgid "Backup using %s?"
39
+ msgstr "Bakcup ved hjælp af %s?"
40
+
41
+ #: addons/s3-enhanced.php:54
42
+ msgid "Standard (infrequent access)"
43
+ msgstr "Standard (sjælden adgang)"
44
+
45
+ #: addons/s3-enhanced.php:55
46
+ msgid "Reduced redundancy"
47
+ msgstr "Reduceret fyld-information"
48
+
49
+ #: addons/s3-enhanced.php:328
50
+ msgid "Asia Pacific (Mumbai)"
51
+ msgstr "Asia Pacific (Mumbai)"
52
+
53
+ #: admin.php:2174
54
+ msgid "FAQs"
55
+ msgstr "FAQs"
56
+
57
+ #: udaddons/plugin-updates/github-checker.php:120
58
+ msgid "There is no changelog available."
59
+ msgstr "Der er ingen ændrings-log til rådighed."
60
+
61
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
62
+ msgid "Check for updates"
63
+ msgstr "Tjek efter opdateringer"
64
+
65
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
66
+ msgid "This plugin is up to date."
67
+ msgstr "Dette plugin er opdateret."
68
+
69
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
70
+ msgid "A new version of this plugin is available."
71
+ msgstr "Der er en ny version af dette plugin til rådighed."
72
+
73
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
74
+ msgid "Unknown update checker status \"%s\""
75
+ msgstr "Ukendt opdatering - Tjekker status \"%s\""
76
+
77
+ #: backup.php:1986
78
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
79
+ msgstr "%s: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser og -ejerskab)"
80
+
81
+ #: backup.php:2002
82
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
83
+ msgstr "Kunne ikke åbne bibliotek (tjek fil-tilladelser og -ejerskab): %s"
84
+
85
+ #: central/bootstrap.php:414
86
+ msgid "Public key was sent to:"
87
+ msgstr "Offentlig nøgle blev sendt til:"
88
+
89
+ #: central/bootstrap.php:419
90
+ msgid "Key size: %d bits"
91
+ msgstr "Størrelse på nøgle: %d bits"
92
+
93
+ #: central/bootstrap.php:434
94
+ msgid "Dashboard at"
95
+ msgstr "Kontrolpanelet på"
96
+
97
+ #: central/bootstrap.php:434
98
+ msgid "Use the alternative method for making a connection with the dashboard."
99
+ msgstr "Benyt den alternative måde for at skabe forbindelse med kontrolpanelet."
100
+
101
+ #: central/bootstrap.php:434
102
+ msgid "More information..."
103
+ msgstr "Mere information..."
104
+
105
+ #: central/bootstrap.php:434
106
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
107
+ msgstr "Dette er nyttigt, hvis kontrolpanelets webserver ikke kan kontaktes med indgående trafik af denne hjemmeside (dette er f.eks. tilfældet, hvis denne hjemmeside er hostet på det offentlige internet, men UpdraftCentral kontrolpanelet er på localhost eller på et intranet, eller hvis denne hjemmeside har en udgående firewall), eller hvis kontrolpanelets hjemmeside ikke har et SSL-certifikat."
108
+
109
+ #: addons/migrator.php:2197
110
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
111
+ msgstr "Opret en nøgle: Giv denne nøgle et unikt navn (som f.eks antyder det site, den er til), og tryk derefter på \"Opret Nøgle\":"
112
+
113
+ #: addons/migrator.php:2198
114
+ msgid "Enter your chosen name"
115
+ msgstr "Indtast dit valgte navn"
116
+
117
+ #: addons/migrator.php:2200 central/bootstrap.php:436
118
+ msgid "Encryption key size:"
119
+ msgstr "Krypterings-nøglens størrelse:"
120
+
121
+ #: addons/migrator.php:2202 addons/migrator.php:2203 addons/migrator.php:2205
122
+ #: central/bootstrap.php:437 central/bootstrap.php:438
123
+ #: central/bootstrap.php:440
124
+ msgid "%s bits"
125
+ msgstr "%s bits"
126
+
127
+ #: addons/migrator.php:2202 central/bootstrap.php:437
128
+ msgid "easy to break, fastest"
129
+ msgstr "let at bryde, hurtigst"
130
+
131
+ #: addons/migrator.php:2203 central/bootstrap.php:438
132
+ msgid "faster (possibility for slow PHP installs)"
133
+ msgstr "hurtigere (mulighed for langsomme PHP installationer)"
134
+
135
+ #: addons/migrator.php:2204 central/bootstrap.php:439
136
+ msgid "%s bytes"
137
+ msgstr "%s bytes"
138
+
139
+ #: addons/migrator.php:2204 central/bootstrap.php:439
140
+ msgid "recommended"
141
+ msgstr "anbefalet"
142
+
143
+ #: addons/migrator.php:2205 central/bootstrap.php:440
144
+ msgid "slower, strongest"
145
+ msgstr "langsomere, stærkest"
146
+
147
+ #: addons/migrator.php:2208
148
+ msgid "Create key"
149
+ msgstr "Opret nøgle"
150
+
151
+ #: central/bootstrap.php:434
152
+ msgid "i.e. you have an account there"
153
+ msgstr "det vil sige, at du har en konto dér"
154
+
155
+ #: central/bootstrap.php:434
156
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
157
+ msgstr "Andet (angiv det site, hvor du har installeret et updraft Central kontrolpanel)"
158
+
159
+ #: class-updraftplus.php:1253
160
+ msgid "Size: %s MB"
161
+ msgstr "Størrelse: %s MB"
162
+
163
+ #: methods/email.php:28
164
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
165
+ msgstr "Størrelsen på dette backup-arkiv er %s MB - forsøge på at sende det via e-mail er tilbøjelige til at mislykkes (få email-servere tillader vedhæftede filer af denne størrelse). Hvis det er tilfældet, bør du skifte til at bruge en anden fjernlager metode."
166
+
167
+ #: methods/email.php:77
168
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
169
+ msgstr "Vær opmærksom på at mailservere ofte har størrelsesbegrænsninger; typisk omkring %s MB; backups større end eventuelle grænser vil sandsynligvis ikke blive modtaget."
170
+
171
+ #: methods/ftp.php:355
172
+ msgid "login"
173
+ msgstr "login"
174
+
175
+ #: methods/ftp.php:383
176
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
177
+ msgstr "Dette er undertiden forårsaget af en firewall - prøv at fravælge SSL i ekspert indstillingerne, og teste igen."
178
+
179
+ #: methods/googledrive.php:417
180
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
181
+ msgstr "Upload forventes at svigte: %s grænsen for en enkelt fil er %s, mens denne fil er %s GB (%d bytes)"
182
+
183
+ #: admin.php:2465
184
+ msgid "Now"
185
+ msgstr "Nu"
186
+
187
+ #: admin.php:2616
188
+ msgid "Free 1GB for UpdraftPlus Vault"
189
+ msgstr "1 GB gratis UpdraftPlus Vault"
190
+
191
+ #: admin.php:3973
192
+ msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s 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)."
193
+ msgstr "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstørrelse. Standardværdien er %s megabyte. Vær omhyggelig med at friholde lidt plads, hvis din web-server har en lidt vanskelig maksimal begrænsning (fx 2 GB / 2048 MB grænse på nogle 32-bit servere / filsystemer)."
194
+
195
+ #: class-updraftplus.php:3628 restorer.php:926
196
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
197
+ msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
198
+
199
+ #: admin.php:3782
200
+ msgid "(tap on an icon to select or unselect)"
201
+ msgstr "(klik på et ikon for at vælge eller fravælge)"
202
+
203
+ #: backup.php:834 class-updraftplus.php:2468
204
+ msgid "The backup was aborted by the user"
205
+ msgstr "Backup'en blev afbrudt af brugeren"
206
+
207
+ #: central/bootstrap.php:45
208
+ msgid "UpdraftCentral Connection"
209
+ msgstr "UpdraftCentral Connection"
210
+
211
+ #: central/bootstrap.php:48
212
+ msgid "An UpdraftCentral connection has been made successfully."
213
+ msgstr "En UpdraftCentral forbindelse blev oprettet med succes."
214
+
215
+ #: central/bootstrap.php:50
216
+ msgid "A new UpdraftCentral connection has not been made."
217
+ msgstr "Der er ikke blevet oprettet en UpdraftCentral forbindelse."
218
+
219
+ #: central/bootstrap.php:53
220
+ msgid "The key referred to was unknown."
221
+ msgstr "Nøglen der refereres til er ukendt."
222
+
223
+ #: central/bootstrap.php:59
224
+ msgid "You are not logged into this WordPress site in your web browser."
225
+ msgstr "Du er ikke logget på dette WordPress site i din browser."
226
+
227
+ #: central/bootstrap.php:59
228
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
229
+ msgstr "Du skal besøge denne URL i samme browser og login-session, som du oprettede nøglen i."
230
+
231
+ #: central/bootstrap.php:66
232
+ msgid "You must visit this link in the same browser and login session as you created the key in."
233
+ msgstr "Du skal besøge dette link i samme browser og login-session, som du oprettede nøglen i."
234
+
235
+ #: central/bootstrap.php:70
236
+ msgid "This connection appears to already have been made."
237
+ msgstr "Denne tilslutning tilsyneladende allerede er foretaget."
238
+
239
+ #: central/bootstrap.php:78
240
+ msgid "Close..."
241
+ msgstr "Luk..."
242
+
243
+ #: central/bootstrap.php:191
244
+ msgid "An invalid URL was entered"
245
+ msgstr "Ugyldig URL blev indtastet"
246
+
247
+ #: central/bootstrap.php:308 central/bootstrap.php:319
248
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
249
+ msgstr "En nøgle blev oprettet, men forsøget på at registrere den med %s mislykkedes - prøv igen senere."
250
+
251
+ #: central/bootstrap.php:376
252
+ msgid "Key description"
253
+ msgstr "Nøgle-beskrivelse"
254
+
255
+ #: central/bootstrap.php:376
256
+ msgid "Details"
257
+ msgstr "Detaljer"
258
+
259
+ #: central/bootstrap.php:382
260
+ msgid "No keys have yet been created."
261
+ msgstr "Der er endnu ikke oprettet en nøgle."
262
+
263
+ #: central/bootstrap.php:414
264
+ msgid "Access this site as user:"
265
+ msgstr "Adgang til dette site som bruger:"
266
+
267
+ #: central/bootstrap.php:417
268
+ msgid "Created:"
269
+ msgstr "Oprettet:"
270
+
271
+ #: central/bootstrap.php:424
272
+ msgid "Delete..."
273
+ msgstr "Slet..."
274
+
275
+ #: central/bootstrap.php:430
276
+ msgid "Create new key"
277
+ msgstr "Opret ny nøgle"
278
+
279
+ #: central/bootstrap.php:432
280
+ msgid "Description"
281
+ msgstr "Beskrivelse"
282
+
283
+ #: central/bootstrap.php:432
284
+ msgid "Enter any description"
285
+ msgstr "Angiv enhver beskrivelse"
286
+
287
+ #: central/bootstrap.php:434
288
+ msgid "URL of mothership"
289
+ msgstr "Moderskibets URL"
290
+
291
+ #: central/bootstrap.php:447
292
+ msgid "View recent UpdraftCentral log events"
293
+ msgstr "Se de seneste updraftCentral log-hændelser"
294
+
295
+ #: central/bootstrap.php:447
296
+ msgid "fetch..."
297
+ msgstr "hent..."
298
+
299
+ #: central/bootstrap.php:458
300
+ msgid "UpdraftCentral (Remote Control)"
301
+ msgstr "UpdraftCentral (Fjernbetjent)"
302
+
303
+ #: class-updraftplus.php:361 class-updraftplus.php:406
304
+ msgid "The given file was not found, or could not be read."
305
+ msgstr "Den pågældende fil blev ikke fundet eller kunne ikke læses."
306
+
307
+ #: methods/updraftvault.php:219
308
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
309
+ msgstr "Ingen Vault forbindelse blev fundet for dette websted (er det flyttet?); venligst afbryd og tilslut igen."
310
+
311
+ #: methods/updraftvault.php:274 methods/updraftvault.php:280
312
+ #: methods/updraftvault.php:286
313
+ msgid "or (annual discount)"
314
+ msgstr "eller (årlig rabat)"
315
+
316
+ #: methods/updraftvault.php:275 methods/updraftvault.php:281
317
+ #: methods/updraftvault.php:287
318
+ msgid "%s per year"
319
+ msgstr "%s pr. år"
320
+
321
+ #: addons/copycom.php:43 addons/copycom.php:81
322
+ msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
323
+ msgstr "Barracuda har lukket Copy.Com 1. maj 2016. Se:"
324
+
325
+ #: addons/s3-enhanced.php:325
326
+ msgid "Asia Pacific (Seoul)"
327
+ msgstr "Asia Pacific (Seoul)"
328
+
329
+ #: admin.php:477
330
+ msgid "Fetching..."
331
+ msgstr "Henter..."
332
+
333
+ #: admin.php:485
334
+ msgid "Error: the server sent us a response which we did not understand."
335
+ msgstr "Fejl: Serveren sendte et uforståeligt svar."
336
+
337
+ #: admin.php:521
338
+ msgid "Saving..."
339
+ msgstr "Gemmer..."
340
+
341
+ #: admin.php:538
342
+ msgid "Please enter a valid URL"
343
+ msgstr "Venligst indtast en gyldig URL"
344
+
345
+ #: admin.php:539
346
+ msgid "We requested to delete the file, but could not understand the server's response"
347
+ msgstr "Vi anmodede om at slette filen, men kunne ikke forstå serverens svar"
348
+
349
+ #: admin.php:545
350
+ msgid "You should save your changes to ensure that they are used for making your backup."
351
+ msgstr "Du bør gemme dine ændringer for at sikre, at de bliver anvendt til din backup."
352
+
353
+ #: admin.php:2611
354
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
355
+ msgstr "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
356
+
357
+ #: admin.php:2875
358
+ msgid "calculate"
359
+ msgstr "beregn"
360
+
361
+ #: admin.php:2946
362
+ msgid "this backup set"
363
+ msgstr "dette backup sæt"
364
+
365
+ #: admin.php:2949
366
+ msgid "these backup sets"
367
+ msgstr "disse backup sæt"
368
+
369
+ #: admin.php:3115
370
+ msgid "reset"
371
+ msgstr "reset"
372
+
373
+ #: admin.php:3161 admin.php:3165
374
+ msgid "Wipe settings"
375
+ msgstr "Wipe-indstillinger"
376
+
377
+ #: admin.php:3232
378
+ msgid "The backup has finished running"
379
+ msgstr "Denne backup er færdig"
380
+
381
+ #: admin.php:3394
382
+ msgid "stop"
383
+ msgstr "stop"
384
+
385
+ #: admin.php:4308
386
+ msgid "Total backup size:"
387
+ msgstr "Total backup-størrelse:"
388
+
389
+ #: admin.php:5226
390
+ msgid "Your settings have been saved."
391
+ msgstr "Dine indstillinger er blevet gemt."
392
+
393
+ #: addons/onedrive.php:50
394
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
395
+ msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
396
+
397
+ #: backup.php:385
398
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
399
+ msgstr "Uventet fejl: Ingen klasse '%s' blev fundet (der er sandsynligvis fejl på din UpdraftPlus installation - prøv at geninstallere)"
400
+
401
+ #: restorer.php:1538
402
+ msgid "Uploads URL:"
403
+ msgstr "Uploads URL:"
404
+
405
+ #: addons/multisite.php:374 addons/multisite.php:384
406
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
407
+ msgstr "Gendanner kun stedet med id =%s: Fjerner andre data (hvis nogen) fra den udpakkede backup"
408
+
409
+ #: addons/multisite.php:525
410
+ msgid "Which site to restore"
411
+ msgstr "Hvilket site at gendanne"
412
+
413
+ #: addons/multisite.php:529
414
+ msgid "All sites"
415
+ msgstr "Allle sider"
416
+
417
+ #: addons/multisite.php:534
418
+ msgid "may include some site-wide data"
419
+ msgstr "kan indeholde nogle data for hele sitet"
420
+
421
+ #: addons/multisite.php:543
422
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
423
+ msgstr "N. B. Denne indstilling påvirker kun gendannelse af databasen og uploads - andre filer (såsom plugins) i WordPress deles af hele netværket."
424
+
425
+ #: addons/multisite.php:543
426
+ msgid "Read more..."
427
+ msgstr "Læs mere..."
428
+
429
+ #: admin.php:556
430
+ msgid "Please fill in the required information."
431
+ msgstr "Venligst udfyld den nødvendige information."
432
+
433
+ #: admin.php:2739
434
+ msgid "Dismiss"
435
+ msgstr "Afvis"
436
+
437
+ #: class-updraftplus.php:3675
438
+ msgid "It will be imported as a new site."
439
+ msgstr "Vil blive importeret som et nyt site."
440
+
441
+ #: class-updraftplus.php:3675
442
+ msgid "Please read this link for important information on this process."
443
+ msgstr "Venligst læs dette link for vigtig information om processen."
444
+
445
+ #: class-updraftplus.php:3679 restorer.php:1558
446
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
447
+ msgstr "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
448
+
449
+ #: restorer.php:1899
450
+ msgid "Skipping table %s: this table will not be restored"
451
+ msgstr "Dropper tabel %s: Denne tabel vil ikke blive gendannet."
452
+
453
+ #: addons/migrator.php:350 addons/migrator.php:353 addons/migrator.php:356
454
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
455
+ msgstr "Du valgte at %s skal indgå i gendannelsen - det kan ikke / bør ikke ske ved import af et enkelt site til et netværk."
456
+
457
+ #: addons/migrator.php:350
458
+ msgid "WordPress core"
459
+ msgstr "WordPress core"
460
+
461
+ #: addons/migrator.php:353
462
+ msgid "other content from wp-content"
463
+ msgstr "andet indhold end wp-indhold"
464
+
465
+ #: addons/migrator.php:362 addons/migrator.php:364
466
+ msgid "Importing a single site into a multisite install"
467
+ msgstr "Importerer et single site til en multisite installation"
468
+
469
+ #: addons/migrator.php:364
470
+ msgid "This feature is not compatible with %s"
471
+ msgstr "Denne funktion er ikke kompatibel med %s"
472
+
473
+ #: addons/migrator.php:384 addons/migrator.php:386
474
+ msgid "You must use lower-case letters or numbers for the site path, only."
475
+ msgstr "Du skal bruge små bogstaver eller tal i websitets sti."
476
+
477
+ #: addons/migrator.php:394
478
+ msgid "Attribute imported content to user"
479
+ msgstr "Egenskabs importeret indhold til bruger"
480
+
481
+ #: addons/migrator.php:435
482
+ msgid "Required information for restoring this backup was not given (%s)"
483
+ msgstr "Der blev ikke givet nødvendige oplysninger for at kunne genskabe denne sikkerhedskopi (%s)"
484
+
485
+ #: addons/migrator.php:492 addons/migrator.php:493
486
+ msgid "Error when creating new site at your chosen address:"
487
+ msgstr "Der opsted fejl oprettelse af nyt site på din valgte adresse:"
488
+
489
+ #: addons/migrator.php:518
490
+ msgid "<strong>ERROR</strong>: problem creating site entry."
491
+ msgstr "<strong>ERROR</strong>: problem med at oprette indhold på sitet."
492
+
493
+ #: admin.php:3113
494
+ msgid "Call WordPress action:"
495
+ msgstr "Udfør WordPress handling:"
496
+
497
+ #: admin.php:2763
498
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
499
+ msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
500
+
501
+ #: admin.php:354 admin.php:2407
502
+ msgid "Advanced Tools"
503
+ msgstr "Advancerede værktøjer"
504
+
505
+ #: admin.php:362
506
+ msgid "Extensions"
507
+ msgstr "Udvidelser"
508
+
509
+ #: admin.php:471
510
+ msgid "You have chosen to backup files, but no file entities have been selected"
511
+ msgstr "Du har valgt at tage backup, men har ikke valgt nogle filer"
512
+
513
+ #: admin.php:544
514
+ msgctxt "(verb)"
515
+ msgid "Download"
516
+ msgstr "Download"
517
+
518
+ #: admin.php:2204 admin.php:2213
519
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
520
+ msgstr "Tilstrækkelige informationer om den igangværende genskabelse kunne ikke findes."
521
+
522
+ #: admin.php:2408
523
+ msgid "Premium / Extensions"
524
+ msgstr "Premium / Udvidelser"
525
+
526
+ #: admin.php:2533
527
+ msgid "Backup Contents And Schedule"
528
+ msgstr "Backup Indhold og Tidspland"
529
+
530
+ #: admin.php:2730
531
+ msgid "%s minutes, %s seconds"
532
+ msgstr "%s minutter, %s sekunder"
533
+
534
+ #: admin.php:2732
535
+ msgid "Unfinished restoration"
536
+ msgstr "Ufærdig gendannelse"
537
+
538
+ #: admin.php:2733
539
+ msgid "You have an unfinished restoration operation, begun %s ago."
540
+ msgstr "Du har en ufærdig gendannelses-operation, påbegyndt for %s siden."
541
+
542
+ #: admin.php:2738
543
+ msgid "Continue restoration"
544
+ msgstr "Fortsæt gendannelse"
545
+
546
+ #: admin.php:2759
547
+ msgid "Include the database in the backup"
548
+ msgstr "Medtag databasen i backup'en"
549
+
550
+ #: admin.php:2761
551
+ msgid "Include any files in the backup"
552
+ msgstr "Medtag alle filer i backup'en"
553
+
554
+ #: admin.php:5125
555
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
556
+ msgstr "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
557
+
558
+ #: admin.php:5125
559
+ msgid "settings"
560
+ msgstr "indstillinger"
561
+
562
+ #: admin.php:5125
563
+ msgid "Not got any remote storage?"
564
+ msgstr "Har du ikke et fjernlager?"
565
+
566
+ #: admin.php:5125
567
+ msgid "Check out UpdraftPlus Vault."
568
+ msgstr "Se UpdraftPlus Vault"
569
+
570
+ #: admin.php:5127
571
+ msgid "Send this backup to remote storage"
572
+ msgstr "Send denne backup til fjernlager"
573
+
574
+ #: admin.php:3162
575
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
576
+ msgstr "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
577
+
578
+ #: admin.php:3162
579
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
580
+ msgstr "Du skal derefter indtaste alle dine indstillinger igen. Du kan også gøre dette inden deaktivering / afinstallation af UpdraftPlus, hvis du ønsker det."
581
+
582
+ #: admin.php:3694
583
+ msgid "Files backup schedule"
584
+ msgstr "Tidsplan for backup af filer"
585
+
586
+ #: admin.php:3727
587
+ msgid "Incremental file backup schedule"
588
+ msgstr "Detaljeret tidsplan for backup af filer"
589
+
590
+ #: admin.php:3737
591
+ msgid "Database backup schedule"
592
+ msgstr "Database backup tidsplan"
593
+
594
+ #: admin.php:3772
595
+ msgid "Sending Your Backup To Remote Storage"
596
+ msgstr "Sender din backup til fjernlager"
597
+
598
+ #: admin.php:3833
599
+ msgid "File Options"
600
+ msgstr "Fil-muligheder"
601
+
602
+ #: admin.php:4863
603
+ msgid "Skipping: this archive was already restored."
604
+ msgstr "Stopper: Dette arkiv er allerede genskabt."
605
+
606
+ #: addons/googlecloud.php:860
607
+ msgid "You must use a bucket name that is unique, for all %s users."
608
+ msgstr "Du skal bruge et gruppenavn, der er unikt for alle %s brugere."
609
+
610
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
611
+ msgid "This setting applies only when a new bucket is being created."
612
+ msgstr "Denne indstilling gælder kun, når en ny gruppe bliver skabt."
613
+
614
+ #: addons/googlecloud.php:875
615
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
616
+ msgstr "Bemærk, at Google ikke understøtter alle lagringsklasser på enhver placering - Du bør læse deres dokumentation for at lære om aktuel tilgængelighed."
617
+
618
+ #: addons/googlecloud.php:880
619
+ msgid "Bucket location"
620
+ msgstr "Gruppe lokation"
621
+
622
+ #: addons/googlecloud.php:45
623
+ msgid " Eastern United States"
624
+ msgstr "Østlige United States"
625
+
626
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
627
+ msgid "Eastern United States"
628
+ msgstr "Østlige United States"
629
+
630
+ #: addons/googlecloud.php:49
631
+ msgid "Western United States"
632
+ msgstr "Vestlige United States"
633
+
634
+ #: addons/googlecloud.php:50
635
+ msgid "Eastern Asia-Pacific"
636
+ msgstr "Østlige Asia-Pacific"
637
+
638
+ #: addons/googlecloud.php:51
639
+ msgid "Western Europe"
640
+ msgstr "Vesteuropa"
641
+
642
+ #: addons/googlecloud.php:268
643
+ msgid "You do not have access to this bucket"
644
+ msgstr "Du har ikke adgang til denne gruppe"
645
+
646
+ #: addons/googlecloud.php:816
647
+ msgid "Do not confuse %s with %s - they are separate things."
648
+ msgstr "%s of %s må ikke forveksles - De er forskellige"
649
+
650
+ #: addons/azure.php:516
651
+ msgid "If the %s does not already exist, then it will be created."
652
+ msgstr "Hvis %s ikke allerede eksisterer, vil det blive oprettet."
653
+
654
+ #: addons/azure.php:516
655
+ msgid "See Microsoft's guidelines on container naming by following this link."
656
+ msgstr "Se Microsofts retningslinjer for mappe-navngivning ved at følge dette link."
657
+
658
+ #: addons/azure.php:521
659
+ msgid "Prefix"
660
+ msgstr "Præfiks"
661
+
662
+ #: addons/azure.php:521
663
+ msgid "optional"
664
+ msgstr "valgfri"
665
+
666
+ #: addons/azure.php:522
667
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
668
+ msgstr "Du kan indtaste stien til enhver %s virtuel mappe, du ønsker at bruge her."
669
+
670
+ #: addons/azure.php:522
671
+ msgid "container"
672
+ msgstr "mappe"
673
+
674
+ #: addons/googlecloud.php:35 addons/s3-enhanced.php:53
675
+ msgid "Standard"
676
+ msgstr "Standard"
677
+
678
+ #: addons/googlecloud.php:36
679
+ msgid "Durable reduced availability"
680
+ msgstr "Vedværende begrænset tilgængelighed"
681
+
682
+ #: addons/googlecloud.php:37
683
+ msgid "Nearline"
684
+ msgstr "Nearline"
685
+
686
+ #: addons/googlecloud.php:41
687
+ msgid "United States"
688
+ msgstr "United States"
689
+
690
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
691
+ #: addons/googlecloud.php:43
692
+ msgid "multi-region location"
693
+ msgstr "multi-regional lokation"
694
+
695
+ #: addons/googlecloud.php:42
696
+ msgid "Asia Pacific"
697
+ msgstr "Asia Pacific"
698
+
699
+ #: addons/googlecloud.php:43
700
+ msgid "European Union"
701
+ msgstr "Europæsik Union"
702
+
703
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
704
+ msgid "Central United States"
705
+ msgstr "Central United States"
706
+
707
+ #: addons/azure.php:342
708
+ msgid "Could not access container"
709
+ msgstr "Kunne ikke tilgå mappe"
710
+
711
+ #: addons/azure.php:448
712
+ msgid "Could not create the container"
713
+ msgstr "Kunne ikke oprette beholderen"
714
+
715
+ #: addons/azure.php:500
716
+ msgid "Create Azure credentials in your Azure developer console."
717
+ msgstr "Opret Azure legitimationsoplysninger i din Azure udviklerkonsol."
718
+
719
+ #: addons/azure.php:504 addons/azure.php:508
720
+ msgid "Azure"
721
+ msgstr "Azure"
722
+
723
+ #: addons/azure.php:504
724
+ msgid "Account Name"
725
+ msgstr "Kontonavn"
726
+
727
+ #: addons/azure.php:505
728
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
729
+ msgstr "Dette er ikke din Azure login - se anvisninger, hvis du har brug for mere vejledning."
730
+
731
+ #: addons/azure.php:516
732
+ msgid "Enter the path of the %s you wish to use here."
733
+ msgstr "Indtast stien til den %s, du ønsker at bruge her."
734
+
735
+ #: class-updraftplus.php:2485
736
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
737
+ msgstr "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
738
+
739
+ #: addons/googlecloud.php:854
740
+ msgid "Project ID"
741
+ msgstr "Projekt ID"
742
+
743
+ #: addons/googlecloud.php:743
744
+ msgid "You must enter a project ID in order to be able to create a new bucket."
745
+ msgstr "Du skal indtaste et projekt ID for at kunne oprette en nu gruppe."
746
+
747
+ #: addons/googlecloud.php:828
748
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
749
+ msgstr "Følg dette link til din Google API Console og aktivér Lager API'en og opret et klient ID i API-adgang sektionen."
750
+
751
+ #: addons/googlecloud.php:855
752
+ msgid "Enter the ID of the %s project you wish to use here."
753
+ msgstr "Indtast ID''et til det %s projekt du ønsker at benytte her."
754
+
755
+ #: addons/googlecloud.php:855
756
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
757
+ msgstr "N. B. Dette er kun nødvendigt, hvis du ikke allerede har oprettet gruppen, og du ønsker at UpdraftPlus opretter det for dig."
758
+
759
+ #: addons/googlecloud.php:855
760
+ msgid "Otherwise, you can leave it blank."
761
+ msgstr "Ellers kan du lade det være tomt."
762
+
763
+ #: addons/googlecloud.php:859
764
+ msgid "Bucket"
765
+ msgstr "Gruppe"
766
+
767
+ #: addons/googlecloud.php:860
768
+ msgid "Enter the name of the %s bucket you wish to use here."
769
+ msgstr "Indtast navnet på den %s gruppe, du vil bruge her."
770
+
771
+ #: addons/googlecloud.php:860
772
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
773
+ msgstr "Gruppenavne skal være globalt unikke. Hvis gruppen ikke allerede eksisterer, vil den blive oprettet."
774
+
775
+ #: addons/googlecloud.php:860
776
+ msgid "See Google's guidelines on bucket naming by following this link."
777
+ msgstr "Se Google's vejledning vedrørende navngivning af grupper ved at følge dette link."
778
+
779
+ #: addons/googlecloud.php:865 addons/s3-enhanced.php:46
780
+ msgid "Storage class"
781
+ msgstr "Lager niveau"
782
+
783
+ #: admin.php:3088
784
+ msgid "Not installed"
785
+ msgstr "Ikke installeret"
786
+
787
+ #: admin.php:3088
788
+ msgid "required for some remote storage providers"
789
+ msgstr "krævet af nogle lager-udbydere"
790
+
791
+ #: backup.php:1412
792
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
793
+ msgstr "Backup-mappen er ikke skrivbar (eller diskplads er fuld) - Database-backup'en forventes snart at mislykkes."
794
+
795
+ #: backup.php:1516 backup.php:1518
796
+ msgid "The database backup appears to have failed"
797
+ msgstr "Backup af databasen er tilsyneladende mislykkedes."
798
+
799
+ #: backup.php:1516
800
+ msgid "no options or sitemeta table was found"
801
+ msgstr "der blev ikke fundet hverken valgmuligheder eller site-meta"
802
+
803
+ #: backup.php:1518
804
+ msgid "the options table was not found"
805
+ msgstr "tabellen med muligheder blev ikke fundet"
806
+
807
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
808
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
809
+ #: addons/googlecloud.php:782
810
+ msgid "%s Service Exception."
811
+ msgstr "%s Service undtagelse"
812
+
813
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
814
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
815
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
816
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
817
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
818
+ #: addons/googlecloud.php:860
819
+ msgid "Google Cloud"
820
+ msgstr "Google Cloud"
821
+
822
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
823
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
824
+ msgid "You do not have access to this bucket."
825
+ msgstr "Du har ikke adgang til denne gruppe"
826
+
827
+ #: addons/googlecloud.php:479
828
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
829
+ msgstr "Har endnu ikke fået en adgang token fra Google - du har brug for at tillade eller re-autorisere din forbindelse til Google Cloud."
830
+
831
+ #: addons/googlecloud.php:609
832
+ msgid "You must save and authenticate before you can test your settings."
833
+ msgstr "Du skal gemme og godkende, før du kan teste dine indstillinger."
834
+
835
+ #: admin.php:548
836
+ msgid "day"
837
+ msgstr "dag"
838
+
839
+ #: admin.php:549
840
+ msgid "in the month"
841
+ msgstr "i måneden"
842
+
843
+ #: admin.php:550
844
+ msgid "day(s)"
845
+ msgstr "dag(e)"
846
+
847
+ #: admin.php:551
848
+ msgid "hour(s)"
849
+ msgstr "time(r)"
850
+
851
+ #: admin.php:552
852
+ msgid "week(s)"
853
+ msgstr "uge(r)"
854
+
855
+ #: admin.php:553
856
+ msgid "For backups older than"
857
+ msgstr "For backup ældre end"
858
+
859
+ #: admin.php:555
860
+ msgid "Processing..."
861
+ msgstr "Behandler..."
862
+
863
+ #: admin.php:1626
864
+ msgid "Backup sets removed: %d"
865
+ msgstr "Backup sæt fjernet: %d"
866
+
867
+ #: admin.php:2881
868
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
869
+ msgstr "Tryk her for at se dit fjernlagers muligheder ved eventuelle eksisterende backup sæt (fra ethvert websted, hvis de opbevares i samme mappe)."
870
+
871
+ #: admin.php:2932
872
+ msgid "Actions upon selected backups"
873
+ msgstr "Handlinger for udvalgte backups"
874
+
875
+ #: admin.php:2934
876
+ msgid "Select all"
877
+ msgstr "Vælg alle"
878
+
879
+ #: admin.php:2935
880
+ msgid "Deselect"
881
+ msgstr "Fravælg"
882
+
883
+ #: admin.php:2946 admin.php:2949
884
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
885
+ msgstr "Er du sikker på, at du ønsker at fjerne %s fra UpdraftPlus?"
886
+
887
+ #: admin.php:3766
888
+ msgid "or to configure more complex schedules"
889
+ msgstr "eller at konfigurere mere komplekse skemaer"
890
+
891
+ #: restorer.php:707
892
+ msgid "Deferring..."
893
+ msgstr "Udskydelse..."
894
+
895
+ #: updraftplus.php:147
896
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
897
+ msgstr "Du behøver ikke UpdraftPlus fuldt installeret - venligst af-installér og installér det igen. WordPress fejlede muligvis ved kopiering af plugin-filer."
898
+
899
+ #: addons/morestorage.php:26
900
+ msgid "(as many as you like)"
901
+ msgstr "(som mange af jer synes om)"
902
+
903
+ #: addons/fixtime.php:281 addons/fixtime.php:286
904
+ msgid "Add an additional retention rule..."
905
+ msgstr "Tilføj en ekstra tilføjelsesregel..."
906
+
907
+ #: methods/updraftvault.php:580
908
+ msgid "You do not currently have any UpdraftPlus Vault quota"
909
+ msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
910
+
911
+ #: restorer.php:1985
912
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
913
+ msgstr "Dette problem er forårsaget af forsøg på genskabelse af en database på en meget gammel MySQL version, der er uforenelig med kildedatabasen."
914
+
915
+ #: restorer.php:1985
916
+ msgid "This database needs to be deployed on MySQL version %s or later."
917
+ msgstr "Denne database skal indsættes på MySQL version %s eller nyere."
918
+
919
+ #: admin.php:2336
920
+ msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
921
+ msgstr "UpdraftPlus-mappen i wp-content/plugins indeholder white-space (tom plads / mellemrum); WordPress kan ikke lide dette. Du bør omdøbe mappen til wp-content/plugins/updraftplus for at løse dette problem."
922
+
923
+ #: admin.php:2661
924
+ msgid "No advertising links on UpdraftPlus settings page"
925
+ msgstr "Ingen reklamelinks på UpdraftPlus indstillings-siden"
926
+
927
+ #: class-updraftplus.php:3712
928
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
929
+ msgstr "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
930
+
931
+ #: class-updraftplus.php:3712
932
+ msgid "You must upgrade MySQL to be able to use this database."
933
+ msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
934
+
935
+ #: methods/updraftvault.php:308
936
+ msgid "Don't know your email address, or forgotten your password?"
937
+ msgstr "Kender du ikke din email-adresse, eller har du glemt dit password?"
938
+
939
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
940
+ msgid "Read the FAQs here."
941
+ msgstr "Læs FAQ her."
942
+
943
+ #: methods/updraftvault.php:301
944
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
945
+ msgstr "Indtast dit UpdraftPlus.Com email/password her for at forbinde:"
946
+
947
+ #: addons/s3-enhanced.php:60
948
+ msgid "Server-side encryption"
949
+ msgstr "Server-side kryptering"
950
+
951
+ #: addons/s3-enhanced.php:61
952
+ msgid "Check this box to use Amazon's server-side encryption"
953
+ msgstr "Sæt kryds i denne boks for at bruge Amazon's server-side kryptering"
954
+
955
+ #: methods/updraftvault.php:589
956
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
957
+ msgstr "Hvis du har glemt dit password, så klik her for at ændre det på udraftsplus.com "
958
+
959
+ #: admin.php:816
960
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
961
+ msgstr "%s er blevet valgt til fjernlager, men du er ikke tilsluttet i øjeblikket."
962
+
963
+ #: admin.php:816
964
+ msgid "Go to the remote storage settings in order to connect."
965
+ msgstr "Gå til fjernlager-indstillinger for at skabe forbindelse."
966
+
967
+ #: methods/updraftvault.php:290
968
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
969
+ msgstr "Betaling kan foretages i amerikanske dollars, euro eller GB pounds sterling, via kort eller PayPal."
970
+
971
+ #: admin.php:523
972
+ msgid "Connecting..."
973
+ msgstr "Tilslutter..."
974
+
975
+ #: admin.php:525
976
+ msgid "Disconnecting..."
977
+ msgstr "Afbryder..."
978
+
979
+ #: admin.php:526
980
+ msgid "Counting..."
981
+ msgstr "Tæller..."
982
+
983
+ #: admin.php:527
984
+ msgid "Update quota count"
985
+ msgstr "Opdatér kvotetæller"
986
+
987
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
988
+ msgid "Updraft Vault"
989
+ msgstr "Updraft Vault"
990
+
991
+ #: methods/updraftvault.php:209
992
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
993
+ msgstr "Din UpdraftPlus Premium er købt for over et år siden. Du bør forny straks for at undgå at miste de 12 måneders gratis lagerplads, du får for at være en nuværende UpdraftPlus Premium kunde."
994
+
995
+ #: methods/updraftvault.php:212
996
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
997
+ msgstr "Du har et UpdraftPlus Vault abonnement med overskredet betalingsfrist. Du er inden for de få dages periode, før det vil blive suspenderet, og du vil miste din kvote og adgang til data, der er lagret i den. Venligst forny så hurtigt som muligt!"
998
+
999
+ #: methods/updraftvault.php:215
1000
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
1001
+ msgstr "Du har et UpdraftPlus Vault abonnement, der ikke er blevet fornyet, og den betalte periode er udløbet. Om et par dage vil dine gemte data blive fjernet permanent. Hvis du ikke ønsker, at dette sker, skal du forny så hurtigt som muligt."
1002
+
1003
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1004
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1005
+ msgstr "UpdraftPlus Vault giver dig lagringsplads, der er <strong>pålidelige og nemme at bruge, til en god pris</strong>."
1006
+
1007
+ #: methods/updraftvault.php:252 methods/updraftvault.php:269
1008
+ msgid "Press a button to get started."
1009
+ msgstr "Tryk på en knap for at starte."
1010
+
1011
+ #: methods/updraftvault.php:255
1012
+ msgid "First time user?"
1013
+ msgstr "Ny bruger?"
1014
+
1015
+ #: methods/updraftvault.php:256
1016
+ msgid "Show the options"
1017
+ msgstr "Vis mulighederne"
1018
+
1019
+ #: methods/updraftvault.php:259
1020
+ msgid "Already purchased space?"
1021
+ msgstr "Har du allerede købt plads?"
1022
+
1023
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1024
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1025
+ msgstr "UpdraftPlus Vault er bygget over Amazons verdensførende data-centre, med masser af datalagring for at opnå 99,999999999% pålidelighed."
1026
+
1027
+ #: methods/updraftvault.php:263 methods/updraftvault.php:293
1028
+ msgid "Read more about it here."
1029
+ msgstr "Læs mere her."
1030
+
1031
+ #: methods/updraftvault.php:273 methods/updraftvault.php:279
1032
+ #: methods/updraftvault.php:285
1033
+ msgid "%s per quarter"
1034
+ msgstr "%s per kvartal"
1035
+
1036
+ #: methods/updraftvault.php:290
1037
+ msgid "Subscriptions can be cancelled at any time."
1038
+ msgstr "Abonnement kan til enhver tid opsiges."
1039
+
1040
+ #: methods/updraftvault.php:296 methods/updraftvault.php:311
1041
+ msgid "Back..."
1042
+ msgstr "Tilbage..."
1043
+
1044
+ #: methods/updraftvault.php:303
1045
+ msgid "E-mail"
1046
+ msgstr "E-mail"
1047
+
1048
+ #: methods/updraftvault.php:308
1049
+ msgid "Go here for help"
1050
+ msgstr "Klik her for hjælp"
1051
+
1052
+ #: methods/updraftvault.php:332
1053
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1054
+ msgstr "Du er <strong>ikke tilsluttet</strong> til UpdraftPlus Vault."
1055
+
1056
+ #: methods/updraftvault.php:336
1057
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1058
+ msgstr "Dette site er <strong>tilsluttet </strong> til UpdraftPlus Vault."
1059
+
1060
+ #: methods/updraftvault.php:336
1061
+ msgid "Well done - there's nothing more needed to set up."
1062
+ msgstr "Godt gået - Der behøves ikke mere for setup."
1063
+
1064
+ #: methods/updraftvault.php:336
1065
+ msgid "Vault owner"
1066
+ msgstr "Vault ejer"
1067
+
1068
+ #: methods/updraftvault.php:338
1069
+ msgid "Quota:"
1070
+ msgstr "Kvote:"
1071
+
1072
+ #: admin.php:524 methods/updraftvault.php:346
1073
+ msgid "Disconnect"
1074
+ msgstr "Afbrudt"
1075
+
1076
+ #: methods/updraftvault.php:354
1077
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1078
+ msgstr "%s Fejl: Du har utilstrækkelig lagerkvote tilgængelig (%s) til at kunne uploade dette arkiv (%s)."
1079
+
1080
+ #: methods/updraftvault.php:354
1081
+ msgid "You can get more quota here"
1082
+ msgstr "Du kan få større kvote her"
1083
+
1084
+ #: methods/updraftvault.php:359 methods/updraftvault.php:375
1085
+ #: methods/updraftvault.php:414
1086
+ msgid "Current use:"
1087
+ msgstr "Nuværende brug:"
1088
+
1089
+ #: methods/updraftvault.php:362 methods/updraftvault.php:378
1090
+ #: methods/updraftvault.php:380 methods/updraftvault.php:433
1091
+ msgid "Get more quota"
1092
+ msgstr "Få større kvote"
1093
+
1094
+ #: methods/updraftvault.php:364 methods/updraftvault.php:433
1095
+ msgid "Refresh current status"
1096
+ msgstr "Opdatér nuværende status"
1097
+
1098
+ #: addons/s3-enhanced.php:343
1099
+ msgid "Allow download"
1100
+ msgstr "Tillad download"
1101
+
1102
+ #: addons/s3-enhanced.php:345
1103
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1104
+ msgstr "Uden denne tilladelse, kan du ikke downloade eller gendanne direkte ved hjælp UpdraftPlus, og vil i stedet være nødt til at besøge AWS's hjemmeside."
1105
+
1106
+ #: addons/s3-enhanced.php:347
1107
+ msgid "Allow deletion"
1108
+ msgstr "Tillad sletning"
1109
+
1110
+ #: addons/s3-enhanced.php:349
1111
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1112
+ msgstr "Uden denne tilladelse, kan UpdraftPlus ikke slette backups - Du skal også sætte din 'behold' indstillinger meget høj for at forhindre at se sletningsfejl."
1113
+
1114
+ #: backup.php:2938
1115
+ msgid "The zip engine returned the message: %s."
1116
+ msgstr "Zip returnerede denne besked: %s."
1117
+
1118
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:977
1119
+ msgid "Delete failed:"
1120
+ msgstr "Sletning mislykkedes:"
1121
+
1122
+ #: addons/migrator.php:1722 admin.php:533
1123
+ msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1124
+ msgstr "Du bør kontrollere, at den eksterne site er online, ikke er bag en firewall, ikke har sikkerhedsmoduler, der kan blokere adgangen, har UpdraftPlus version %s eller nyere aktiv, og at nøglerne er blevet indtastet korrekt."
1125
+
1126
+ #: addons/migrator.php:1737
1127
+ msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1128
+ msgstr "Hvis muligheden for at sende direkte fra site til site ikke virker for dig, så er der tre andre metoder - prøv en af disse i stedet."
1129
+
1130
+ #: admin.php:531
1131
+ msgid "Creating..."
1132
+ msgstr "Opretter..."
1133
+
1134
+ #: admin.php:534
1135
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1136
+ msgstr "Giv denne nøgle et navn (angiv f.eks. sitet den er til):"
1137
+
1138
+ #: admin.php:536
1139
+ msgid "key name"
1140
+ msgstr "nøgle navn"
1141
+
1142
+ #: admin.php:537
1143
+ msgid "Deleting..."
1144
+ msgstr "Sletter..."
1145
+
1146
+ #: addons/migrator.php:1750 admin.php:540
1147
+ msgid "Testing connection..."
1148
+ msgstr "Tester forbindelse..."
1149
+
1150
+ #: admin.php:1268
1151
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1152
+ msgstr "Dette backup sæt blev ikke genkendt af UpdraftPlus som værende skabt af den nuværende WordPress installation, men blev enten fundet i fjernlager, eller blev sendt fra et eksternt site."
1153
+
1154
+ #: admin.php:1268
1155
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1156
+ msgstr "Du bør sørge for, at dette virkelig er et backup sæt beregnet til brug på denne hjemmeside, før du gendanner (snarere end et backup sæt fra en urelateret hjemmeside)."
1157
+
1158
+ #: admin.php:2989
1159
+ 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=\"https://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>."
1160
+ msgstr "Dette gør time-outs langt mere sandsynligt. Det anbefales at slå safe_mode fra, eller til kun at gendanne én enhed ad gangen, <ahref=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">eller at genoprette manuelt </a>."
1161
+
1162
+ #: admin.php:4395
1163
+ msgid "Backup sent to remote site - not available for download."
1164
+ msgstr "Backup sendt til eksternt site - ikke tilgængelig til download."
1165
+
1166
+ #: admin.php:4396
1167
+ msgid "Site"
1168
+ msgstr "Site"
1169
+
1170
+ #: admin.php:4623
1171
+ msgid "(backup set imported from remote location)"
1172
+ msgstr "(backup sæt importeret fra ekstern lokation)"
1173
+
1174
+ #: methods/addon-base.php:177
1175
+ msgid "This storage method does not allow downloading"
1176
+ msgstr "Denne lagringsmetode tillader ikke download"
1177
+
1178
+ #: addons/reporting.php:143
1179
+ msgid "Backup made by %s"
1180
+ msgstr "Backup skabt af %s"
1181
+
1182
+ #: addons/migrator.php:185
1183
+ msgid "This site has no backups to restore from yet."
1184
+ msgstr "Dette site har ingeb backups at genskabe fra endnu."
1185
+
1186
+ #: addons/migrator.php:192
1187
+ msgid "Restore an existing backup set onto this site"
1188
+ msgstr "Genskab et eksisterende backup sæt til dette site"
1189
+
1190
+ #: addons/migrator.php:1674
1191
+ msgid "Backup data will be sent to:"
1192
+ msgstr "Backup data vil blive sendt til:"
1193
+
1194
+ #: addons/migrator.php:1689
1195
+ msgid "site not found"
1196
+ msgstr "site ikke fundet"
1197
+
1198
+ #: addons/migrator.php:1733
1199
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1200
+ msgstr "Den webadresse, du sender til (%s) ligner en lokal udviklings-hjemmeside. Hvis du sender fra et eksternt netværk, er det sandsynligt, at en firewall vil blokere dette."
1201
+
1202
+ #: addons/migrator.php:1768
1203
+ msgid "Also send this backup to the active remote storage locations"
1204
+ msgstr "Send også denne backup til de aktive eksterne lagringslokationer"
1205
+
1206
+ #: addons/migrator.php:1820
1207
+ msgid "A key with this name already exists; you must use a unique name."
1208
+ msgstr "En nøgle med dette navn eksisterer allerede; du skal bruge et unikt navn."
1209
+
1210
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1211
+ msgid "Key created successfully."
1212
+ msgstr "Nøgle blev skabt med succes."
1213
+
1214
+ #: addons/migrator.php:1835 central/bootstrap.php:362
1215
+ msgid "You must copy and paste this key now - it cannot be shown again."
1216
+ msgstr "Du skal kopiere og indsætte denne nøgle nu - den kan ikke vises igen."
1217
+
1218
+ #: addons/migrator.php:2175
1219
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1220
+ msgstr "Nøgler til dette site er skabt i afsnittet nedenfor den, du netop har indtastet ind."
1221
+
1222
+ #: addons/migrator.php:2175
1223
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1224
+ msgstr "Så for at få nøglen til det eksterne site, skal du åbne 'Overfør' vinduet på det eksterne websted, scrolle ned, og så oprette en der."
1225
+
1226
+ #: addons/migrator.php:2192
1227
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1228
+ msgstr "For at tillade en anden hjemmeside til at sende en backup til denne hjemmeside, skal du oprette en nøgle, og derefter klikke på \"Overfør\"-knappen på det afsendende site, og kopiere og indsætte nøglen der."
1229
+
1230
+ #: addons/migrator.php:2213
1231
+ msgid "Your new key:"
1232
+ msgstr "Din nye nøgle:"
1233
+
1234
+ #: addons/migrator.php:2231
1235
+ msgid "No keys to allow remote sites to connect have yet been created."
1236
+ msgstr "Der er endnu ikke oprettet nøgler, der kan tillade eksterne sites at skabe forbindelse."
1237
+
1238
+ #: addons/migrator.php:2240
1239
+ msgid "Existing keys"
1240
+ msgstr "Eksisterende nøgler"
1241
+
1242
+ #: methods/ftp.php:307
1243
+ msgid "FTP server"
1244
+ msgstr "FTP server"
1245
+
1246
+ #: methods/ftp.php:311
1247
+ msgid "FTP login"
1248
+ msgstr "FTP login"
1249
+
1250
+ #: methods/ftp.php:315
1251
+ msgid "FTP password"
1252
+ msgstr "FTP password"
1253
+
1254
+ #: methods/ftp.php:319
1255
+ msgid "Remote path"
1256
+ msgstr "Fjern-sti"
1257
+
1258
+ #: methods/ftp.php:323
1259
+ msgid "Passive mode"
1260
+ msgstr "Passiv tilstand"
1261
+
1262
+ #: methods/ftp.php:325
1263
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1264
+ msgstr "Næsten alle FTP-servere benytter passiv tilstand; men hvis du behøver aktiv tilstand, skal du fjerne afkrydsning af dette felt."
1265
+
1266
+ #: addons/migrator.php:1851
1267
+ msgid "key"
1268
+ msgstr "nøgle"
1269
+
1270
+ #: addons/migrator.php:1861
1271
+ msgid "The entered key was the wrong length - please try again."
1272
+ msgstr "Den angivne nøgle havde forkert længde - prøv venligst igen."
1273
+
1274
+ #: addons/migrator.php:1863 addons/migrator.php:1865 addons/migrator.php:1869
1275
+ msgid "The entered key was corrupt - please try again."
1276
+ msgstr "Den angivne nøgle var i stykker - prøv venligst igen."
1277
+
1278
+ #: addons/migrator.php:1874
1279
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1280
+ msgstr "Den angivne nøgle tilhører ikke en fjern-side (den tilhører denne side)."
1281
+
1282
+ #: addons/migrator.php:1890
1283
+ msgid "The key was successfully added."
1284
+ msgstr "Nøglen blev tilføjet med succes."
1285
+
1286
+ #: addons/migrator.php:1890
1287
+ msgid "It is for sending backups to the following site: "
1288
+ msgstr "Det er til brug ved afsendelse af backup til følgende side:"
1289
+
1290
+ #: addons/migrator.php:1909
1291
+ msgid "No receiving sites have yet been added."
1292
+ msgstr "Ingen modtagerside er blevet tilføjet."
1293
+
1294
+ #: addons/migrator.php:1911 admin.php:532
1295
+ msgid "Send to site:"
1296
+ msgstr "Send til site:"
1297
+
1298
+ #: addons/migrator.php:1917 admin.php:541
1299
+ msgid "Send"
1300
+ msgstr "Send"
1301
+
1302
+ #: addons/migrator.php:2172
1303
+ msgid "Or, send a backup to another site"
1304
+ msgstr "Eller, send en backup til et andet site"
1305
+
1306
+ #: addons/migrator.php:2175
1307
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1308
+ msgstr "For at tilføje en hjemmeside som en destination til at sende til, skal du indtaste dette websteds nøgle nedenfor."
1309
+
1310
+ #: addons/migrator.php:2175
1311
+ msgid "How do I get a site's key?"
1312
+ msgstr "Hvordan får jeg et sites nøgle?"
1313
+
1314
+ #: addons/migrator.php:2180
1315
+ msgid "Paste key here"
1316
+ msgstr "Indsæt nøglen her"
1317
+
1318
+ #: addons/migrator.php:2191
1319
+ msgid "Or, receive a backup from a remote site"
1320
+ msgstr "Eller, modtag en backup fra det andet site"
1321
+
1322
+ #: admin.php:528
1323
+ msgid "Adding..."
1324
+ msgstr "Tilføjer..."
1325
+
1326
+ #: addons/migrator.php:2180 admin.php:529
1327
+ msgid "Add site"
1328
+ msgstr "Tilføj site"
1329
+
1330
+ #: addons/migrator.php:165
1331
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1332
+ msgstr "En \"flytning\" er i sidste ende det samme som en restaurering - men benytter backup arkiver, som du importerer fra et andet site."
1333
+
1334
+ #: addons/migrator.php:165
1335
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1336
+ msgstr "UpdraftPlus Migrator modificerer restaurering processen korrekt, så det passer til backup data på det nye websted."
1337
+
1338
+ #: restorer.php:1987
1339
+ msgid "To use this backup, your database server needs to support the %s character set."
1340
+ msgstr "For at bruge denne backup, skal din database server understøtte %s tegnsæt."
1341
+
1342
+ #: udaddons/options.php:338
1343
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1344
+ msgstr "Adgang nægtet - Måske har du allerede brugt dette køb et andet sted, eller din betalte periode til at downloade fra updraftplus.com er udløbet?"
1345
+
1346
+ #: udaddons/updraftplus-addons.php:758
1347
+ msgid "Go here to re-enter your password."
1348
+ msgstr "Klik her for at indtaste dit password igen."
1349
+
1350
+ #: udaddons/updraftplus-addons.php:759
1351
+ msgid "If you have forgotten your password "
1352
+ msgstr "Hvis du har glemt dit password"
1353
+
1354
+ #: udaddons/updraftplus-addons.php:759
1355
+ msgid "go here to change your password on updraftplus.com."
1356
+ msgstr "klik her for at ændre dit password på updraftplus.com"
1357
+
1358
+ #: addons/migrator.php:192
1359
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1360
+ msgstr "Gå til \"Eksisterende backups\" for at imp