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 @@