Redirection - Version 3.6

Version Description

  • Sometime =
  • Add option to ignore 404s
  • Add option to block 404s by IP
  • Add grouping of 404s by IP and URL
  • Add bulk block or redirect a group of 404s
  • Add option to redirect on a 404
  • Better page navigation change monitoring
  • Add URL & IP match
  • Add 303 and 304 redirect codes
  • Add 400, 403, and 418 (I'm a teapot!) error codes
  • Fix server match not supporting regex properly
  • Deprecated file pass through removed
  • 'Do nothing' now stops processing further rules
Download this release

Release Info

Developer johnny5
Plugin Icon 128x128 Redirection
Version 3.6
Comparing to
See all releases

Code changes from version 3.5 to 3.6

actions/error.php CHANGED
@@ -11,12 +11,13 @@ class Error_Action extends Red_Action {
11
  add_filter( 'pre_handle_404', array( $this, 'pre_handle_404' ) );
12
  add_action( 'wp', array( $this, 'wp' ) );
13
 
14
- return false;
15
  }
16
 
17
  public function wp() {
18
  status_header( $this->code );
19
  nocache_headers();
 
20
  }
21
 
22
  public function pre_handle_404() {
11
  add_filter( 'pre_handle_404', array( $this, 'pre_handle_404' ) );
12
  add_action( 'wp', array( $this, 'wp' ) );
13
 
14
+ return true;
15
  }
16
 
17
  public function wp() {
18
  status_header( $this->code );
19
  nocache_headers();
20
+ header( 'X-Redirect-Agent: redirection' );
21
  }
22
 
23
  public function pre_handle_404() {
actions/pass.php CHANGED
@@ -47,10 +47,6 @@ class Pass_Action extends Red_Action {
47
  return substr( $target, 0, 7 ) === 'http://' || substr( $target, 0, 8 ) === 'https://';
48
  }
49
 
50
- public function is_file( $target ) {
51
- return substr( $target, 0, 7 ) === 'file://';
52
- }
53
-
54
  public function process_before( $code, $target ) {
55
  // External target
56
  if ( $this->is_external( $target ) ) {
@@ -58,16 +54,6 @@ class Pass_Action extends Red_Action {
58
  exit();
59
  }
60
 
61
- // file:// targetw
62
- if ( $this->is_file( $target ) ) {
63
- if ( defined( 'REDIRECTION_SUPPORT_PASS_FILE' ) && REDIRECTION_SUPPORT_PASS_FILE ) {
64
- $this->process_file( $target );
65
- exit();
66
- }
67
-
68
- return;
69
- }
70
-
71
  return $this->process_internal( $target );
72
  }
73
  }
47
  return substr( $target, 0, 7 ) === 'http://' || substr( $target, 0, 8 ) === 'https://';
48
  }
49
 
 
 
 
 
50
  public function process_before( $code, $target ) {
51
  // External target
52
  if ( $this->is_external( $target ) ) {
54
  exit();
55
  }
56
 
 
 
 
 
 
 
 
 
 
 
57
  return $this->process_internal( $target );
58
  }
59
  }
actions/random.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- include_once dirname( __FILE__).'/url.php';
4
 
5
  class Random_Action extends Url_Action {
6
  public function process_before( $code, $target ) {
1
  <?php
2
 
3
+ include_once dirname( __FILE__ ) . '/url.php';
4
 
5
  class Random_Action extends Url_Action {
6
  public function process_before( $code, $target ) {
api/api-404.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  class Redirection_Api_404 extends Redirection_Api_Filter_Route {
4
  public function __construct( $namespace ) {
5
- $filters = array( 'ip', 'url', 'url-exact' );
6
 
7
  register_rest_route( $namespace, '/404', array(
8
  'args' => $this->get_filter_args( $filters, $filters ),
@@ -14,40 +14,70 @@ class Redirection_Api_404 extends Redirection_Api_Filter_Route {
14
  }
15
 
16
  public function route_404( WP_REST_Request $request ) {
17
- return RE_Filter_Log::get( 'redirection_404', 'RE_404', $request->get_params() );
18
  }
19
 
20
  public function route_bulk( WP_REST_Request $request ) {
 
21
  $items = explode( ',', $request['items'] );
22
 
23
  if ( is_array( $items ) ) {
24
- $items = array_map( 'intval', $items );
25
- array_map( array( 'RE_404', 'delete' ), $items );
 
 
 
 
 
 
26
  return $this->route_404( $request );
27
  }
28
 
29
  return $this->add_error_details( new WP_Error( 'redirect', 'Invalid array of items' ), __LINE__ );
30
  }
31
 
 
 
 
 
 
 
 
 
32
  public function route_delete_all( WP_REST_Request $request ) {
33
  $params = $request->get_params();
34
  $filter = false;
35
- $filterBy = false;
36
 
37
- if ( isset( $params['filter'] ) ) {
38
- $filter = $params['filter'];
39
- }
 
 
 
 
 
40
 
41
- if ( isset( $params['filterBy'] ) ) {
42
- $filterBy = $params['filterBy'];
43
- }
 
 
44
 
45
- RE_404::delete_all( $filterBy, $filter );
 
 
46
 
47
- unset( $params['filterBy'] );
48
- unset( $params['filter'] );
49
  unset( $params['page'] );
50
 
 
 
 
 
 
 
 
 
51
  return RE_Filter_Log::get( 'redirection_404', 'RE_404', $params );
52
  }
53
  }
2
 
3
  class Redirection_Api_404 extends Redirection_Api_Filter_Route {
4
  public function __construct( $namespace ) {
5
+ $filters = array( 'ip', 'url', 'url-exact', 'total' );
6
 
7
  register_rest_route( $namespace, '/404', array(
8
  'args' => $this->get_filter_args( $filters, $filters ),
14
  }
15
 
16
  public function route_404( WP_REST_Request $request ) {
17
+ return $this->get_404( $request->get_params() );
18
  }
19
 
20
  public function route_bulk( WP_REST_Request $request ) {
21
+ $params = $request->get_params();
22
  $items = explode( ',', $request['items'] );
23
 
24
  if ( is_array( $items ) ) {
25
+ foreach ( $items as $item ) {
26
+ if ( is_numeric( $item ) ) {
27
+ RE_404::delete( intval( $item, 10 ) );
28
+ } else {
29
+ RE_404::delete_all( $this->get_delete_group( $params ), $item );
30
+ }
31
+ }
32
+
33
  return $this->route_404( $request );
34
  }
35
 
36
  return $this->add_error_details( new WP_Error( 'redirect', 'Invalid array of items' ), __LINE__ );
37
  }
38
 
39
+ private function get_delete_group( array $params ) {
40
+ if ( isset( $params['groupBy'] ) && $params['groupBy'] === 'ip' ) {
41
+ return 'ip';
42
+ }
43
+
44
+ return 'url-exact';
45
+ }
46
+
47
  public function route_delete_all( WP_REST_Request $request ) {
48
  $params = $request->get_params();
49
  $filter = false;
50
+ $filter_by = false;
51
 
52
+ if ( isset( $params['items'] ) && is_array( $params['items'] ) ) {
53
+ foreach ( $params['items'] as $url ) {
54
+ RE_404::delete_all( $this->get_delete_group( $params ), $url );
55
+ }
56
+ } else {
57
+ if ( isset( $params['filter'] ) ) {
58
+ $filter = $params['filter'];
59
+ }
60
 
61
+ if ( isset( $params['filterBy'] ) ) {
62
+ $filter_by = $params['filterBy'];
63
+ }
64
+
65
+ RE_404::delete_all( $filter_by, $filter );
66
 
67
+ unset( $params['filterBy'] );
68
+ unset( $params['filter'] );
69
+ }
70
 
 
 
71
  unset( $params['page'] );
72
 
73
+ return $this->get_404( $params );
74
+ }
75
+
76
+ private function get_404( array $params ) {
77
+ if ( isset( $params['groupBy'] ) && in_array( $params['groupBy'], array( 'ip', 'url' ), true ) ) {
78
+ return RE_Filter_Log::get_grouped( 'redirection_404', $params['groupBy'], $params );
79
+ }
80
+
81
  return RE_Filter_Log::get( 'redirection_404', 'RE_404', $params );
82
  }
83
  }
api/api-group.php CHANGED
@@ -80,9 +80,9 @@ class Redirection_Api_Group extends Redirection_Api_Filter_Route {
80
  if ( $group ) {
81
  if ( $action === 'delete' ) {
82
  $group->delete();
83
- } else if ( $action === 'disable' ) {
84
  $group->disable();
85
- } else if ( $action === 'enable' ) {
86
  $group->enable();
87
  }
88
  }
80
  if ( $group ) {
81
  if ( $action === 'delete' ) {
82
  $group->delete();
83
+ } elseif ( $action === 'disable' ) {
84
  $group->disable();
85
+ } elseif ( $action === 'enable' ) {
86
  $group->enable();
87
  }
88
  }
api/api-import.php CHANGED
@@ -16,22 +16,22 @@ class Redirection_Api_Import extends Redirection_Api_Route {
16
  }
17
 
18
  public function route_plugin_import_list( WP_REST_Request $request ) {
19
- include_once dirname( dirname( __FILE__ ) ).'/models/importer.php';
20
 
21
  return array( 'importers' => Red_Plugin_Importer::get_plugins() );
22
  }
23
 
24
  public function route_plugin_import( WP_REST_Request $request ) {
25
- include_once dirname( dirname( __FILE__ ) ).'/models/importer.php';
26
 
27
  $groups = Red_Group::get_all();
28
 
29
- return array( 'imported' => Red_Plugin_Importer::import( $request['plugin'], $groups[ 0 ]['id'] ) );
30
  }
31
 
32
  public function route_import_file( WP_REST_Request $request ) {
33
  $upload = $request->get_file_params();
34
- $upload = isset( $upload[ 'file' ] ) ? $upload[ 'file' ] : false;
35
  $group_id = $request['group_id'];
36
 
37
  if ( $upload && is_uploaded_file( $upload['tmp_name'] ) ) {
16
  }
17
 
18
  public function route_plugin_import_list( WP_REST_Request $request ) {
19
+ include_once dirname( dirname( __FILE__ ) ) . '/models/importer.php';
20
 
21
  return array( 'importers' => Red_Plugin_Importer::get_plugins() );
22
  }
23
 
24
  public function route_plugin_import( WP_REST_Request $request ) {
25
+ include_once dirname( dirname( __FILE__ ) ) . '/models/importer.php';
26
 
27
  $groups = Red_Group::get_all();
28
 
29
+ return array( 'imported' => Red_Plugin_Importer::import( $request['plugin'], $groups[0]['id'] ) );
30
  }
31
 
32
  public function route_import_file( WP_REST_Request $request ) {
33
  $upload = $request->get_file_params();
34
+ $upload = isset( $upload['file'] ) ? $upload['file'] : false;
35
  $group_id = $request['group_id'];
36
 
37
  if ( $upload && is_uploaded_file( $upload['tmp_name'] ) ) {
api/api-log.php CHANGED
@@ -33,17 +33,17 @@ class Redirection_Api_Log extends Redirection_Api_Filter_Route {
33
  public function route_delete_all( WP_REST_Request $request ) {
34
  $params = $request->get_params();
35
  $filter = false;
36
- $filterBy = false;
37
 
38
  if ( isset( $params['filter'] ) ) {
39
  $filter = $params['filter'];
40
  }
41
 
42
  if ( isset( $params['filterBy'] ) && in_array( $params['filterBy'], array( 'url', 'ip', 'url-exact' ), true ) ) {
43
- $filterBy = $params['filterBy'];
44
  }
45
 
46
- RE_Log::delete_all( $filterBy, $filter );
47
  return $this->route_log( $request );
48
  }
49
 
33
  public function route_delete_all( WP_REST_Request $request ) {
34
  $params = $request->get_params();
35
  $filter = false;
36
+ $filter_by = false;
37
 
38
  if ( isset( $params['filter'] ) ) {
39
  $filter = $params['filter'];
40
  }
41
 
42
  if ( isset( $params['filterBy'] ) && in_array( $params['filterBy'], array( 'url', 'ip', 'url-exact' ), true ) ) {
43
+ $filter_by = $params['filterBy'];
44
  }
45
 
46
+ RE_Log::delete_all( $filter_by, $filter );
47
  return $this->route_log( $request );
48
  }
49
 
api/api-redirect.php CHANGED
@@ -23,10 +23,24 @@ class Redirection_Api_Redirect extends Redirection_Api_Filter_Route {
23
  }
24
 
25
  public function route_create( WP_REST_Request $request ) {
26
- $redirect = Red_Item::create( $request->get_params() );
 
 
 
 
 
 
 
 
27
 
28
- if ( is_wp_error( $redirect ) ) {
29
- return $this->add_error_details( $redirect, __LINE__ );
 
 
 
 
 
 
30
  }
31
 
32
  return $this->route_list( $request );
23
  }
24
 
25
  public function route_create( WP_REST_Request $request ) {
26
+ $params = $request->get_params();
27
+ $urls = array();
28
+
29
+ if ( isset( $params['url'] ) ) {
30
+ $urls = array( $params['url'] );
31
+
32
+ if ( is_array( $params['url'] ) ) {
33
+ $urls = $params['url'];
34
+ }
35
 
36
+ foreach ( $urls as $url ) {
37
+ $params['url'] = $url;
38
+ $redirect = Red_Item::create( $params );
39
+
40
+ if ( is_wp_error( $redirect ) ) {
41
+ return $this->add_error_details( $redirect, __LINE__ );
42
+ }
43
+ }
44
  }
45
 
46
  return $this->route_list( $request );
api/api-settings.php CHANGED
@@ -33,9 +33,15 @@ class Redirection_Api_Settings extends Redirection_Api_Route {
33
 
34
  foreach ( $groups as $text => $value ) {
35
  if ( is_array( $value ) && $depth === 0 ) {
36
- $items[] = (object)array( 'text' => $text, 'value' => $this->groups_to_json( $value, 1 ) );
 
 
 
37
  } else {
38
- $items[] = (object)array( 'text' => $value, 'value' => $text );
 
 
 
39
  }
40
  }
41
 
33
 
34
  foreach ( $groups as $text => $value ) {
35
  if ( is_array( $value ) && $depth === 0 ) {
36
+ $items[] = (object) array(
37
+ 'text' => $text,
38
+ 'value' => $this->groups_to_json( $value, 1 ),
39
+ );
40
  } else {
41
+ $items[] = (object) array(
42
+ 'text' => $value,
43
+ 'value' => $text,
44
+ );
45
  }
46
  }
47
 
fileio/apache.php CHANGED
@@ -4,14 +4,14 @@ class Red_Apache_File extends Red_FileIO {
4
  public function force_download() {
5
  parent::force_download();
6
 
7
- $filename = 'redirection-'.date_i18n( get_option( 'date_format' ) ).'.htaccess';
8
 
9
  header( 'Content-Type: application/octet-stream' );
10
- header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
11
  }
12
 
13
  public function get_data( array $items, array $groups ) {
14
- include_once dirname( dirname( __FILE__ ) ).'/models/htaccess.php';
15
 
16
  $htaccess = new Red_Htaccess();
17
 
@@ -19,7 +19,7 @@ class Red_Apache_File extends Red_FileIO {
19
  $htaccess->add( $item );
20
  }
21
 
22
- return $htaccess->get().PHP_EOL;
23
  }
24
 
25
  public function load( $group, $filename, $data ) {
@@ -30,14 +30,14 @@ class Red_Apache_File extends Red_FileIO {
30
  $lines = array_filter( explode( "\r", $data ) );
31
  $count = 0;
32
 
33
- foreach ( (array)$lines as $line ) {
34
  $item = $this->get_as_item( $line );
35
 
36
  if ( $item ) {
37
  $item['group_id'] = $group;
38
  $redirect = Red_Item::create( $item );
39
 
40
- if ( !is_wp_error( $redirect ) ) {
41
  $count++;
42
  }
43
  }
@@ -144,22 +144,22 @@ class Red_Apache_File extends Red_FileIO {
144
  return false;
145
  }
146
 
147
- private function regex_url ($url) {
148
  if ( $this->is_str_regex( $url ) ) {
149
  $tmp = ltrim( $url, '^' );
150
  $tmp = rtrim( $tmp, '$' );
151
 
152
  if ( $this->is_str_regex( $tmp ) === false ) {
153
- return '/'.$this->decode_url( $tmp );
154
  }
155
 
156
- return '/'.$this->decode_url( $url );
157
  }
158
 
159
  return $this->decode_url( $url );
160
  }
161
 
162
- private function get_code ($code) {
163
  if ( strpos( $code, '301' ) !== false || stripos( $code, 'permanent' ) !== false ) {
164
  return 301;
165
  } elseif ( strpos( $code, '302' ) !== false ) {
4
  public function force_download() {
5
  parent::force_download();
6
 
7
+ $filename = 'redirection-' . date_i18n( get_option( 'date_format' ) ) . '.htaccess';
8
 
9
  header( 'Content-Type: application/octet-stream' );
10
+ header( 'Content-Disposition: attachment; filename="' . $filename . '"' );
11
  }
12
 
13
  public function get_data( array $items, array $groups ) {
14
+ include_once dirname( dirname( __FILE__ ) ) . '/models/htaccess.php';
15
 
16
  $htaccess = new Red_Htaccess();
17
 
19
  $htaccess->add( $item );
20
  }
21
 
22
+ return $htaccess->get() . PHP_EOL;
23
  }
24
 
25
  public function load( $group, $filename, $data ) {
30
  $lines = array_filter( explode( "\r", $data ) );
31
  $count = 0;
32
 
33
+ foreach ( (array) $lines as $line ) {
34
  $item = $this->get_as_item( $line );
35
 
36
  if ( $item ) {
37
  $item['group_id'] = $group;
38
  $redirect = Red_Item::create( $item );
39
 
40
+ if ( ! is_wp_error( $redirect ) ) {
41
  $count++;
42
  }
43
  }
144
  return false;
145
  }
146
 
147
+ private function regex_url( $url ) {
148
  if ( $this->is_str_regex( $url ) ) {
149
  $tmp = ltrim( $url, '^' );
150
  $tmp = rtrim( $tmp, '$' );
151
 
152
  if ( $this->is_str_regex( $tmp ) === false ) {
153
+ return '/' . $this->decode_url( $tmp );
154
  }
155
 
156
+ return '/' . $this->decode_url( $url );
157
  }
158
 
159
  return $this->decode_url( $url );
160
  }
161
 
162
+ private function get_code( $code ) {
163
  if ( strpos( $code, '301' ) !== false || stripos( $code, 'permanent' ) !== false ) {
164
  return 301;
165
  } elseif ( strpos( $code, '302' ) !== false ) {
fileio/csv.php CHANGED
@@ -9,10 +9,10 @@ class Red_Csv_File extends Red_FileIO {
9
  public function force_download() {
10
  parent::force_download();
11
 
12
- $filename = 'redirection-'.date_i18n( get_option( 'date_format' ) ).'.csv';
13
 
14
  header( 'Content-Type: text/csv' );
15
- header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
16
  }
17
 
18
  public function get_data( array $items, array $groups ) {
@@ -22,7 +22,7 @@ class Red_Csv_File extends Red_FileIO {
22
  $lines[] = $this->item_as_csv( $line );
23
  }
24
 
25
- return implode( PHP_EOL, $lines ).PHP_EOL;
26
  }
27
 
28
  public function item_as_csv( $item ) {
@@ -45,7 +45,7 @@ class Red_Csv_File extends Red_FileIO {
45
  }
46
 
47
  public function escape_csv( $item ) {
48
- return '"'.str_replace( '"', '""', $item ).'"';
49
  }
50
 
51
  public function load( $group, $filename, $data ) {
9
  public function force_download() {
10
  parent::force_download();
11
 
12
+ $filename = 'redirection-' . date_i18n( get_option( 'date_format' ) ) . '.csv';
13
 
14
  header( 'Content-Type: text/csv' );
15
+ header( 'Content-Disposition: attachment; filename="' . $filename . '"' );
16
  }
17
 
18
  public function get_data( array $items, array $groups ) {
22
  $lines[] = $this->item_as_csv( $line );
23
  }
24
 
25
+ return implode( PHP_EOL, $lines ) . PHP_EOL;
26
  }
27
 
28
  public function item_as_csv( $item ) {
45
  }
46
 
47
  public function escape_csv( $item ) {
48
+ return '"' . str_replace( '"', '""', $item ) . '"';
49
  }
50
 
51
  public function load( $group, $filename, $data ) {
fileio/json.php CHANGED
@@ -4,14 +4,14 @@ class Red_Json_File extends Red_FileIO {
4
  public function force_download() {
5
  parent::force_download();
6
 
7
- $filename = 'redirection-'.date_i18n( get_option( 'date_format' ) ).'.json';
8
 
9
  header( 'Content-Type: application/json' );
10
- header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
11
  }
12
 
13
  public function get_data( array $items, array $groups ) {
14
- $version = red_get_plugin_data( dirname( dirname( __FILE__ ) ).'/redirection.php' );
15
 
16
  $items = array(
17
  'plugin' => array(
@@ -24,7 +24,7 @@ class Red_Json_File extends Red_FileIO {
24
  }, $items ),
25
  );
26
 
27
- return json_encode( $items, JSON_PRETTY_PRINT ) . PHP_EOL;
28
  }
29
 
30
  public function load( $group, $filename, $data ) {
4
  public function force_download() {
5
  parent::force_download();
6
 
7
+ $filename = 'redirection-' . date_i18n( get_option( 'date_format' ) ) . '.json';
8
 
9
  header( 'Content-Type: application/json' );
10
+ header( 'Content-Disposition: attachment; filename="' . $filename . '"' );
11
  }
12
 
13
  public function get_data( array $items, array $groups ) {
14
+ $version = red_get_plugin_data( dirname( dirname( __FILE__ ) ) . '/redirection.php' );
15
 
16
  $items = array(
17
  'plugin' => array(
24
  }, $items ),
25
  );
26
 
27
+ return wp_json_encode( $items, JSON_PRETTY_PRINT ) . PHP_EOL;
28
  }
29
 
30
  public function load( $group, $filename, $data ) {
fileio/nginx.php CHANGED
@@ -82,7 +82,7 @@ class Red_Nginx_File extends Red_FileIO {
82
  }
83
 
84
  if ( $item->match->url_notfrom ) {
85
- $lines[] = 'if ( $http_referer !~* ^' . $item->match->referrer.'$ ) {';
86
  $lines[] = ' ' . $this->add_redirect( $item->get_url(), $item->match->url_notfrom, $this->get_redirect_code( $item ) );
87
  $lines[] = ' }';
88
  }
82
  }
83
 
84
  if ( $item->match->url_notfrom ) {
85
+ $lines[] = 'if ( $http_referer !~* ^' . $item->match->referrer . '$ ) {';
86
  $lines[] = ' ' . $this->add_redirect( $item->get_url(), $item->match->url_notfrom, $this->get_redirect_code( $item ) );
87
  $lines[] = ' }';
88
  }
fileio/rss.php CHANGED
@@ -2,21 +2,21 @@
2
 
3
  class Red_Rss_File extends Red_FileIO {
4
  public function force_download() {
5
- header( 'Content-type: text/xml; charset='.get_option( 'blog_charset' ), true );
6
  }
7
 
8
  public function get_data( array $items, array $groups ) {
9
- $xml = '<?xml version="1.0" encoding="'.get_option( 'blog_charset' ).'"?'.">\r\n";
10
  ob_start();
11
- ?>
12
  <rss version="2.0"
13
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
14
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
15
  xmlns:dc="http://purl.org/dc/elements/1.1/">
16
  <channel>
17
  <title>Redirection - <?php bloginfo_rss( 'name' ); ?></title>
18
- <link><?php esc_url( bloginfo_rss( 'url' ) ) ?></link>
19
- <description><?php esc_html( bloginfo_rss( 'description' ) ) ?></description>
20
  <pubDate><?php echo esc_html( mysql2date( 'D, d M Y H:i:s +0000', get_lastpostmodified( 'GMT' ), false ) ); ?></pubDate>
21
  <generator>
22
  <?php echo esc_html( 'http://wordpress.org/?v=' ); ?>
@@ -24,18 +24,18 @@ class Red_Rss_File extends Red_FileIO {
24
  </generator>
25
  <language><?php echo esc_html( get_option( 'rss_language' ) ); ?></language>
26
 
27
- <?php foreach ( $items as $log ) : ?>
28
  <item>
29
  <title><?php echo esc_html( $log->get_url() ); ?></title>
30
- <link><![CDATA[<?php echo esc_url( home_url() ); echo esc_url( $log->get_url() ); ?>]]></link>
31
- <pubDate><?php echo date( 'D, d M Y H:i:s +0000', $log->get_last_hit() ); ?></pubDate>
32
  <guid isPermaLink="false"><?php echo esc_html( $log->get_id() ); ?></guid>
33
  <description><?php echo esc_html( $log->get_url() ); ?></description>
34
  </item>
35
- <?php endforeach; ?>
36
  </channel>
37
  </rss>
38
- <?php
39
  $xml .= ob_get_contents();
40
  ob_end_clean();
41
 
2
 
3
  class Red_Rss_File extends Red_FileIO {
4
  public function force_download() {
5
+ header( 'Content-type: text/xml; charset=' . get_option( 'blog_charset' ), true );
6
  }
7
 
8
  public function get_data( array $items, array $groups ) {
9
+ $xml = '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . ">\r\n";
10
  ob_start();
11
+ ?>
12
  <rss version="2.0"
13
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
14
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
15
  xmlns:dc="http://purl.org/dc/elements/1.1/">
16
  <channel>
17
  <title>Redirection - <?php bloginfo_rss( 'name' ); ?></title>
18
+ <link><?php esc_url( bloginfo_rss( 'url' ) ); ?></link>
19
+ <description><?php esc_html( bloginfo_rss( 'description' ) ); ?></description>
20
  <pubDate><?php echo esc_html( mysql2date( 'D, d M Y H:i:s +0000', get_lastpostmodified( 'GMT' ), false ) ); ?></pubDate>
21
  <generator>
22
  <?php echo esc_html( 'http://wordpress.org/?v=' ); ?>
24
  </generator>
25
  <language><?php echo esc_html( get_option( 'rss_language' ) ); ?></language>
26
 
27
+ <?php foreach ( $items as $log ) : ?>
28
  <item>
29
  <title><?php echo esc_html( $log->get_url() ); ?></title>
30
+ <link><![CDATA[<?php echo esc_url( home_url() ) . esc_url( $log->get_url() ); ?>]]></link>
31
+ <pubDate><?php echo esc_html( date( 'D, d M Y H:i:s +0000', intval( $log->get_last_hit(), 10 ) ) ); ?></pubDate>
32
  <guid isPermaLink="false"><?php echo esc_html( $log->get_id() ); ?></guid>
33
  <description><?php echo esc_html( $log->get_url() ); ?></description>
34
  </item>
35
+ <?php endforeach; ?>
36
  </channel>
37
  </rss>
38
+ <?php
39
  $xml .= ob_get_contents();
40
  ob_end_clean();
41
 
locale/json/redirection-de_DE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":[""],"URL is not being redirected with Redirection":[""],"URL is being redirected with Redirection":[""],"Unable to load details":[""],"Enter server URL to match against":[""],"Server":[""],"Enter role or capability value":[""],"Role":[""],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":[""],"Optional description - describe the purpose of this redirect":[""],"The target URL you want to redirect to if matched":[""],"(beta)":[""],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":[""],"Force HTTPS":[""],"GDPR / Privacy information":[""],"Add New":[""],"Please logout and login again.":[""],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":[""],"URL and role/capability":[""],"URL and server":[""],"Form request":["Formularanfrage"],"Relative /wp-json/":["Relativ /wp-json/"],"Proxy over Admin AJAX":["Proxy über Admin AJAX"],"Default /wp-json/":["Standard /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":[""],"Site and home are consistent":[""],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":["Akzeptiere Sprache"],"Header value":["Wert im Header "],"Header name":["Header Name "],"HTTP Header":["HTTP Header"],"WordPress filter name":["WordPress Filter Name "],"Filter Name":["Filter Name"],"Cookie value":[""],"Cookie name":[""],"Cookie":[""],"Target URL when not matched":[""],"Target URL when matched":[""],"clearing your cache.":[""],"If you are using a caching system such as Cloudflare then please read this: ":[""],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":[""],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":[""],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":[""],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":[""],"Unable to load Redirection ☹️":[""],"WordPress REST API is working at %s":[""],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":[""],"Unknown Useragent":[""],"Device":[""],"Operating System":["Betriebssystem"],"Browser":["Browser"],"Engine":[""],"Useragent":[""],"Agent":[""],"No IP logging":["Keine IP-Protokollierung"],"Full IP logging":["Vollständige IP-Protokollierung"],"Anonymize IP (mask last part)":["Anonymisiere IP (maskiere letzten Teil)"],"Monitor changes to %(type)s":["Änderungen überwachen für %(type)s"],"IP Logging":["IP-Protokollierung"],"(select IP logging level)":["(IP-Protokollierungsstufe wählen)"],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":[""],"Geo IP":[""],"City":[""],"Area":[""],"Timezone":[""],"Geo Location":[""],"Powered by {{link}}redirect.li{{/link}}":[""],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Die vollständige Dokumentation findest du unter {{site}}https://redirection.me{{/site}}. Solltest du Fragen oder Probleme mit dem Plugin haben, durchsuche bitte zunächst die {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Wenn du nicht möchtest, dass deine Nachricht öffentlich sichtbar ist, dann sende sie bitte per {{email}}E-Mail{{/email}} - sende so viele Informationen, wie möglich."],"Never cache":[""],"An hour":["Eine Stunde"],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Möchtest du wirklich von %s importieren?"],"Plugin Importers":["Plugin Importer"],"The following redirect plugins were detected on your site and can be imported from.":["Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."],"total = ":["Total = "],"Import from %s":["Import von %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."],"Redirection not installed properly":["Redirection wurde nicht korrekt installiert"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe zunächst ein WordPress Update durch."],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":["Redirection konnte nicht geladen werden"],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass ein Fehler aufgetreten ist oder dass die Anfrage blockiert wurde. Bitte überprüfe Deinen Server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":["Lädt, bitte warte..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":["E-Mail"],"Important details":["Wichtige Details"],"Need help?":["Hilfe benötigt?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":[""],"410 - Gone":["410 - Entfernt"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":["Apache Modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":["Importiere in Gruppe"],"Import a CSV, .htaccess, or JSON file.":["Importiere eine CSV, .htaccess oder JSON Datei."],"Click 'Add File' or drag and drop here.":["Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."],"Add File":["Datei hinzufügen"],"File selected":["Datei ausgewählt"],"Importing":["Importiere"],"Finished importing":["Importieren beendet"],"Total redirects imported:":["Umleitungen importiert:"],"Double-check the file is the correct format!":["Überprüfe, ob die Datei das richtige Format hat!"],"OK":["OK"],"Close":["Schließen"],"All imports will be appended to the current database.":["Alle Importe werden der aktuellen Datenbank hinzugefügt."],"Export":["Exportieren"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["Alles"],"WordPress redirects":["WordPress Weiterleitungen"],"Apache redirects":["Apache Weiterleitungen"],"Nginx redirects":["Nginx Weiterleitungen"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["Anzeigen"],"Log files can be exported from the log pages.":["Protokolldateien können aus den Protokollseiten exportiert werden."],"Import/Export":["Import/Export"],"Logs":["Protokolldateien"],"404 errors":["404 Fehler"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["Unterstützen 💰"],"Redirection saved":["Umleitung gespeichert"],"Log deleted":["Log gelöscht"],"Settings saved":["Einstellungen gespeichert"],"Group saved":["Gruppe gespeichert"],"Are you sure you want to delete this item?":["Bist du sicher, dass du diesen Eintrag löschen möchtest?","Bist du sicher, dass du diese Einträge löschen möchtest?"],"pass":[""],"All groups":["Alle Gruppen"],"301 - Moved Permanently":["301- Dauerhaft verschoben"],"302 - Found":["302 - Gefunden"],"307 - Temporary Redirect":["307 - Zeitweise Umleitung"],"308 - Permanent Redirect":["308 - Dauerhafte Umleitung"],"401 - Unauthorized":["401 - Unautorisiert"],"404 - Not Found":["404 - Nicht gefunden"],"Title":["Titel"],"When matched":[""],"with HTTP code":["mit HTTP Code"],"Show advanced options":["Zeige erweiterte Optionen"],"Matched Target":["Passendes Ziel"],"Unmatched Target":["Unpassendes Ziel"],"Saving...":["Speichern..."],"View notice":["Hinweis anzeigen"],"Invalid source URL":["Ungültige Quell URL"],"Invalid redirect action":["Ungültige Umleitungsaktion"],"Invalid redirect matcher":[""],"Unable to add new redirect":[""],"Something went wrong 🙁":["Etwas ist schiefgelaufen 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübergehendes Problem sein und wenn du es nochmal probierst, könnte es funktionieren - toll!"],"Log entries (%d max)":["Log Einträge (%d max)"],"Search by IP":["Suche nach IP"],"Select bulk action":[""],"Bulk Actions":[""],"Apply":["Anwenden"],"First page":["Erste Seite"],"Prev page":["Vorige Seite"],"Current Page":["Aktuelle Seite"],"of %(page)s":["von %(Seite)n"],"Next page":["Nächste Seite"],"Last page":["Letzte Seite"],"%s item":["%s Eintrag","%s Einträge"],"Select All":["Alle auswählen"],"Sorry, something went wrong loading the data - please try again":["Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"],"No results":["Keine Ergebnisse"],"Delete the logs - are you sure?":["Logs löschen - bist du sicher?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Einmal gelöscht, sind deine aktuellen Logs nicht mehr verfügbar. Du kannst einen Zeitplan zur Löschung in den Redirection Einstellungen setzen, wenn du dies automatisch machen möchtest."],"Yes! Delete the logs":["Ja! Lösche die Logs"],"No! Don't delete the logs":["Nein! Lösche die Logs nicht"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."],"Your email address:":["Deine E-Mail Adresse:"],"You've supported this plugin - thank you!":["Du hast dieses Plugin bereits unterstützt - vielen Dank!"],"You get useful software and I get to carry on making it better.":["Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."],"Forever":["Dauerhaft"],"Delete the plugin - are you sure?":["Plugin löschen - bist du sicher?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."],"Yes! Delete the plugin":["Ja! Lösche das Plugin"],"No! Don't delete the plugin":["Nein! Lösche das Plugin nicht"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Verwalte alle 301-Umleitungen und 404-Fehler."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber: Sehr viel Zeit und Arbeit sind in seine Entwicklung geflossen und falls es sich als nützlich erwiesen hat, kannst du die Entwicklung {{strong}}mit einer kleinen Spende unterstützen{{/strong}}."],"Redirection Support":["Unleitung Support"],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Umleitung löschen"],"Upload":["Hochladen"],"Import":["Importieren"],"Update":["Aktualisieren"],"Auto-generate URL":["Selbsterstellte URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"],"RSS Token":["RSS Token"],"404 Logs":["404-Logs"],"(time to keep logs for)":["(Dauer, für die die Logs behalten werden)"],"Redirect Logs":["Umleitungs-Logs"],"I'm a nice person and I have helped support the author of this plugin":["Ich bin eine nette Person und ich helfe dem Autor des Plugins"],"Plugin Support":["Plugin Support"],"Options":["Optionen"],"Two months":["zwei Monate"],"A month":["ein Monat"],"A week":["eine Woche"],"A day":["einen Tag"],"No logs":["Keine Logs"],"Delete All":["Alle löschen"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Benutze Gruppen, um deine Umleitungen zu ordnen. Gruppen werden einem Modul zugeordnet, dies beeinflusst, wie die Umleitungen in der jeweiligen Gruppe funktionieren. Falls du unsicher bist, bleib beim WordPress-Modul."],"Add Group":["Gruppe hinzufügen"],"Search":["Suchen"],"Groups":["Gruppen"],"Save":["Speichern"],"Group":["Gruppe"],"Match":["Passend"],"Add new redirection":["Eine neue Weiterleitung hinzufügen"],"Cancel":["Abbrechen"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Einstellungen"],"Do nothing":["Mache nichts"],"Error (404)":["Fehler (404)"],"Pass-through":["Durchreichen"],"Redirect to random post":["Umleitung zu zufälligen Beitrag"],"Redirect to URL":["Umleitung zur URL"],"Invalid group when creating redirect":["Ungültige Gruppe für die Erstellung der Umleitung"],"IP":["IP"],"Source URL":["URL-Quelle"],"Date":["Zeitpunkt"],"Add Redirect":["Umleitung hinzufügen"],"All modules":["Alle Module"],"View Redirects":["Weiterleitungen anschauen"],"Module":["Module"],"Redirects":["Umleitungen"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Treffer zurücksetzen"],"Enable":["Aktivieren"],"Disable":["Deaktivieren"],"Delete":["Löschen"],"Edit":["Bearbeiten"],"Last Access":["Letzter Zugriff"],"Hits":["Treffer"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Geänderte Beiträge"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL und User-Agent"],"Target URL":["Ziel-URL"],"URL only":["Nur URL"],"Regex":["Regex"],"Referrer":["Vermittler"],"URL and referrer":["URL und Vermittler"],"Logged Out":["Ausgeloggt"],"Logged In":["Eingeloggt"],"URL and login status":["URL- und Loginstatus"]}
1
+ {"":[],"Problem":[""],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":[""],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":[""],"URL is not being redirected with Redirection":[""],"URL is being redirected with Redirection":[""],"Unable to load details":[""],"Enter server URL to match against":[""],"Server":[""],"Enter role or capability value":[""],"Role":[""],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":[""],"Optional description - describe the purpose of this redirect":[""],"The target URL you want to redirect to if matched":[""],"(beta)":[""],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":[""],"Force HTTPS":[""],"GDPR / Privacy information":[""],"Add New":[""],"Please logout and login again.":[""],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":[""],"URL and role/capability":[""],"URL and server":[""],"Form request":["Formularanfrage"],"Relative /wp-json/":["Relativ /wp-json/"],"Proxy over Admin AJAX":["Proxy über Admin AJAX"],"Default /wp-json/":["Standard /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":[""],"Site and home are consistent":[""],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":["Akzeptiere Sprache"],"Header value":["Wert im Header "],"Header name":["Header Name "],"HTTP Header":["HTTP Header"],"WordPress filter name":["WordPress Filter Name "],"Filter Name":["Filter Name"],"Cookie value":[""],"Cookie name":[""],"Cookie":[""],"Target URL when not matched":[""],"Target URL when matched":[""],"clearing your cache.":[""],"If you are using a caching system such as Cloudflare then please read this: ":[""],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":[""],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":[""],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":[""],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":[""],"Unable to load Redirection ☹️":[""],"WordPress REST API is working at %s":[""],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":[""],"Unknown Useragent":[""],"Device":[""],"Operating System":["Betriebssystem"],"Browser":["Browser"],"Engine":[""],"Useragent":[""],"Agent":[""],"No IP logging":["Keine IP-Protokollierung"],"Full IP logging":["Vollständige IP-Protokollierung"],"Anonymize IP (mask last part)":["Anonymisiere IP (maskiere letzten Teil)"],"Monitor changes to %(type)s":["Änderungen überwachen für %(type)s"],"IP Logging":["IP-Protokollierung"],"(select IP logging level)":["(IP-Protokollierungsstufe wählen)"],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":[""],"Geo IP":[""],"City":[""],"Area":[""],"Timezone":[""],"Geo Location":[""],"Powered by {{link}}redirect.li{{/link}}":[""],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Die vollständige Dokumentation findest du unter {{site}}https://redirection.me{{/site}}. Solltest du Fragen oder Probleme mit dem Plugin haben, durchsuche bitte zunächst die {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Wenn du nicht möchtest, dass deine Nachricht öffentlich sichtbar ist, dann sende sie bitte per {{email}}E-Mail{{/email}} - sende so viele Informationen, wie möglich."],"Never cache":[""],"An hour":["Eine Stunde"],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Möchtest du wirklich von %s importieren?"],"Plugin Importers":["Plugin Importer"],"The following redirect plugins were detected on your site and can be imported from.":["Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."],"total = ":["Total = "],"Import from %s":["Import von %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."],"Redirection not installed properly":["Redirection wurde nicht korrekt installiert"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe zunächst ein WordPress Update durch."],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":["Redirection konnte nicht geladen werden"],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass ein Fehler aufgetreten ist oder dass die Anfrage blockiert wurde. Bitte überprüfe Deinen Server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":["Lädt, bitte warte..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":["E-Mail"],"Important details":["Wichtige Details"],"Need help?":["Hilfe benötigt?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":[""],"410 - Gone":["410 - Entfernt"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":["Apache Modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":["Importiere in Gruppe"],"Import a CSV, .htaccess, or JSON file.":["Importiere eine CSV, .htaccess oder JSON Datei."],"Click 'Add File' or drag and drop here.":["Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."],"Add File":["Datei hinzufügen"],"File selected":["Datei ausgewählt"],"Importing":["Importiere"],"Finished importing":["Importieren beendet"],"Total redirects imported:":["Umleitungen importiert:"],"Double-check the file is the correct format!":["Überprüfe, ob die Datei das richtige Format hat!"],"OK":["OK"],"Close":["Schließen"],"All imports will be appended to the current database.":["Alle Importe werden der aktuellen Datenbank hinzugefügt."],"Export":["Exportieren"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["Alles"],"WordPress redirects":["WordPress Weiterleitungen"],"Apache redirects":["Apache Weiterleitungen"],"Nginx redirects":["Nginx Weiterleitungen"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["Anzeigen"],"Log files can be exported from the log pages.":["Protokolldateien können aus den Protokollseiten exportiert werden."],"Import/Export":["Import/Export"],"Logs":["Protokolldateien"],"404 errors":["404 Fehler"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["Unterstützen 💰"],"Redirection saved":["Umleitung gespeichert"],"Log deleted":["Log gelöscht"],"Settings saved":["Einstellungen gespeichert"],"Group saved":["Gruppe gespeichert"],"Are you sure you want to delete this item?":["Bist du sicher, dass du diesen Eintrag löschen möchtest?","Bist du sicher, dass du diese Einträge löschen möchtest?"],"pass":[""],"All groups":["Alle Gruppen"],"301 - Moved Permanently":["301- Dauerhaft verschoben"],"302 - Found":["302 - Gefunden"],"307 - Temporary Redirect":["307 - Zeitweise Umleitung"],"308 - Permanent Redirect":["308 - Dauerhafte Umleitung"],"401 - Unauthorized":["401 - Unautorisiert"],"404 - Not Found":["404 - Nicht gefunden"],"Title":["Titel"],"When matched":[""],"with HTTP code":["mit HTTP Code"],"Show advanced options":["Zeige erweiterte Optionen"],"Matched Target":["Passendes Ziel"],"Unmatched Target":["Unpassendes Ziel"],"Saving...":["Speichern..."],"View notice":["Hinweis anzeigen"],"Invalid source URL":["Ungültige Quell URL"],"Invalid redirect action":["Ungültige Umleitungsaktion"],"Invalid redirect matcher":[""],"Unable to add new redirect":[""],"Something went wrong 🙁":["Etwas ist schiefgelaufen 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübergehendes Problem sein und wenn du es nochmal probierst, könnte es funktionieren - toll!"],"Log entries (%d max)":["Log Einträge (%d max)"],"Search by IP":["Suche nach IP"],"Select bulk action":[""],"Bulk Actions":[""],"Apply":["Anwenden"],"First page":["Erste Seite"],"Prev page":["Vorige Seite"],"Current Page":["Aktuelle Seite"],"of %(page)s":["von %(Seite)n"],"Next page":["Nächste Seite"],"Last page":["Letzte Seite"],"%s item":["%s Eintrag","%s Einträge"],"Select All":["Alle auswählen"],"Sorry, something went wrong loading the data - please try again":["Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"],"No results":["Keine Ergebnisse"],"Delete the logs - are you sure?":["Logs löschen - bist du sicher?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Einmal gelöscht, sind deine aktuellen Logs nicht mehr verfügbar. Du kannst einen Zeitplan zur Löschung in den Redirection Einstellungen setzen, wenn du dies automatisch machen möchtest."],"Yes! Delete the logs":["Ja! Lösche die Logs"],"No! Don't delete the logs":["Nein! Lösche die Logs nicht"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."],"Your email address:":["Deine E-Mail Adresse:"],"You've supported this plugin - thank you!":["Du hast dieses Plugin bereits unterstützt - vielen Dank!"],"You get useful software and I get to carry on making it better.":["Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."],"Forever":["Dauerhaft"],"Delete the plugin - are you sure?":["Plugin löschen - bist du sicher?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."],"Yes! Delete the plugin":["Ja! Lösche das Plugin"],"No! Don't delete the plugin":["Nein! Lösche das Plugin nicht"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Verwalte alle 301-Umleitungen und 404-Fehler."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber: Sehr viel Zeit und Arbeit sind in seine Entwicklung geflossen und falls es sich als nützlich erwiesen hat, kannst du die Entwicklung {{strong}}mit einer kleinen Spende unterstützen{{/strong}}."],"Redirection Support":["Unleitung Support"],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Umleitung löschen"],"Upload":["Hochladen"],"Import":["Importieren"],"Update":["Aktualisieren"],"Auto-generate URL":["Selbsterstellte URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"],"RSS Token":["RSS Token"],"404 Logs":["404-Logs"],"(time to keep logs for)":["(Dauer, für die die Logs behalten werden)"],"Redirect Logs":["Umleitungs-Logs"],"I'm a nice person and I have helped support the author of this plugin":["Ich bin eine nette Person und ich helfe dem Autor des Plugins"],"Plugin Support":["Plugin Support"],"Options":["Optionen"],"Two months":["zwei Monate"],"A month":["ein Monat"],"A week":["eine Woche"],"A day":["einen Tag"],"No logs":["Keine Logs"],"Delete All":["Alle löschen"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Benutze Gruppen, um deine Umleitungen zu ordnen. Gruppen werden einem Modul zugeordnet, dies beeinflusst, wie die Umleitungen in der jeweiligen Gruppe funktionieren. Falls du unsicher bist, bleib beim WordPress-Modul."],"Add Group":["Gruppe hinzufügen"],"Search":["Suchen"],"Groups":["Gruppen"],"Save":["Speichern"],"Group":["Gruppe"],"Match":["Passend"],"Add new redirection":["Eine neue Weiterleitung hinzufügen"],"Cancel":["Abbrechen"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Einstellungen"],"Do nothing":["Mache nichts"],"Error (404)":["Fehler (404)"],"Pass-through":["Durchreichen"],"Redirect to random post":["Umleitung zu zufälligen Beitrag"],"Redirect to URL":["Umleitung zur URL"],"Invalid group when creating redirect":["Ungültige Gruppe für die Erstellung der Umleitung"],"IP":["IP"],"Source URL":["URL-Quelle"],"Date":["Zeitpunkt"],"Add Redirect":["Umleitung hinzufügen"],"All modules":["Alle Module"],"View Redirects":["Weiterleitungen anschauen"],"Module":["Module"],"Redirects":["Umleitungen"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Treffer zurücksetzen"],"Enable":["Aktivieren"],"Disable":["Deaktivieren"],"Delete":["Löschen"],"Edit":["Bearbeiten"],"Last Access":["Letzter Zugriff"],"Hits":["Treffer"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Geänderte Beiträge"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL und User-Agent"],"Target URL":["Ziel-URL"],"URL only":["Nur URL"],"Regex":["Regex"],"Referrer":["Vermittler"],"URL and referrer":["URL und Vermittler"],"Logged Out":["Ausgeloggt"],"Logged In":["Eingeloggt"],"URL and login status":["URL- und Loginstatus"]}
locale/json/redirection-en_CA.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":["Redirect Tester"],"Target":["Target"],"URL is not being redirected with Redirection":["URL is not being redirected with Redirection"],"URL is being redirected with Redirection":["URL is being redirected with Redirection"],"Unable to load details":["Unable to load details"],"Enter server URL to match against":["Enter server URL to match against"],"Server":["Server"],"Enter role or capability value":["Enter role or capability value"],"Role":["Role"],"Match against this browser referrer text":["Match against this browser referrer text"],"Match against this browser user agent":["Match against this browser user agent"],"The relative URL you want to redirect from":["The relative URL you want to redirect from"],"Optional description - describe the purpose of this redirect":["Optional description - describe the purpose of this redirect"],"The target URL you want to redirect to if matched":["The target URL you want to redirect to if matched"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"],"Force HTTPS":["Force HTTPS"],"GDPR / Privacy information":["GDPR / Privacy information"],"Add New":["Add New"],"Please logout and login again.":["Please logout and login again."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection requires PHP v%1s, you are using v%2s - please update your PHP"],"URL and role/capability":["URL and role/capability"],"URL and server":["URL and server"],"Form request":["Form request"],"Relative /wp-json/":["Relative /wp-json/"],"Proxy over Admin AJAX":["Proxy over Admin AJAX"],"Default /wp-json/":["Default /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"],"Site and home protocol":["Site and home protocol"],"Site and home URL are inconsistent - please correct from your General settings":["Site and home URL are inconsistent - please correct from your General settings"],"Site and home are consistent":["Site and home are consistent"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."],"Accept Language":["Accept Language"],"Header value":["Header value"],"Header name":["Header name"],"HTTP Header":["HTTP Header"],"WordPress filter name":["WordPress filter name"],"Filter Name":["Filter Name"],"Cookie value":["Cookie value"],"Cookie name":["Cookie name"],"Cookie":["Cookie"],"Target URL when not matched":["Target URL when not matched"],"Target URL when matched":["Target URL when matched"],"clearing your cache.":["clearing your cache."],"If you are using a caching system such as Cloudflare then please read this: ":["If you are using a caching system such as Cloudflare then please read this: "],"URL and HTTP header":["URL and HTTP header"],"URL and custom filter":["URL and custom filter"],"URL and cookie":["URL and cookie"],"404 deleted":["404 deleted"],"Raw /index.php?rest_route=/":["Raw /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["How Redirection uses the REST API - don't change unless necessary"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."],"None of the suggestions helped":["None of the suggestions helped"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."],"Unable to load Redirection ☹️":["Unable to load Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API is working at %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API is not working so routes not checked"],"Redirection routes are working":["Redirection routes are working"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"],"Redirection routes":["Redirection routes"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Useragent Error"],"Unknown Useragent":["Unknown Useragent"],"Device":["Device"],"Operating System":["Operating System"],"Browser":["Browser"],"Engine":["Engine"],"Useragent":["Useragent"],"Agent":["Agent"],"No IP logging":["No IP logging"],"Full IP logging":["Full IP logging"],"Anonymize IP (mask last part)":["Anonymize IP (mask last part)"],"Monitor changes to %(type)s":["Monitor changes to %(type)s"],"IP Logging":["IP Logging"],"(select IP logging level)":["(select IP logging level)"],"Geo Info":["Geo Info"],"Agent Info":["Agent Info"],"Filter by IP":["Filter by IP"],"Referrer / User Agent":["Referrer / User Agent"],"Geo IP Error":["Geo IP Error"],"Something went wrong obtaining this information":["Something went wrong obtaining this information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."],"No details are known for this address.":["No details are known for this address."],"Geo IP":["Geo IP"],"City":["City"],"Area":["Area"],"Timezone":["Timezone"],"Geo Location":["Geo Location"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["Trash"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":["Never cache"],"An hour":["An hour"],"Redirect Cache":["Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Are you sure you want to import from %s?"],"Plugin Importers":["Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":["The following redirect plugins were detected on your site and can be imported from."],"total = ":["total = "],"Import from %s":["Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":["Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":["Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":["Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":["⚡️ Magic fix ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Custom"],"Mobile":["Mobile"],"Feed Readers":["Feed Readers"],"Libraries":["Libraries"],"URL Monitor Changes":["URL Monitor Changes"],"Save changes to this group":["Save changes to this group"],"For example \"/amp\"":["For example \"/amp\""],"URL Monitor":["URL Monitor"],"Delete 404s":["Delete 404s"],"Delete all logs for this 404":["Delete all logs for this 404"],"Delete all from IP %s":["Delete all from IP %s"],"Delete all matching \"%s\"":["Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":["Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":["Unable to load Redirection"],"Unable to create group":["Unable to create group"],"Failed to fix database tables":["Failed to fix database tables"],"Post monitor group is valid":["Post monitor group is valid"],"Post monitor group is invalid":["Post monitor group is invalid"],"Post monitor group":["Post monitor group"],"All redirects have a valid group":["All redirects have a valid group"],"Redirects with invalid groups detected":["Redirects with invalid groups detected"],"Valid redirect group":["Valid redirect group"],"Valid groups detected":["Valid groups detected"],"No valid groups, so you will not be able to create any redirects":["No valid groups, so you will not be able to create any redirects"],"Valid groups":["Valid groups"],"Database tables":["Database tables"],"The following tables are missing:":["The following tables are missing:"],"All tables present":["All tables present"],"Cached Redirection detected":["Cached Redirection detected"],"Please clear your browser cache and reload this page.":["Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":["The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":["If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":["This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":["Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":["Create Issue"],"Email":["Email"],"Important details":["Important details"],"Need help?":["Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":["Pos"],"410 - Gone":["410 - Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"],"Apache Module":["Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":["Import to group"],"Import a CSV, .htaccess, or JSON file.":["Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":["Click 'Add File' or drag and drop here."],"Add File":["Add File"],"File selected":["File selected"],"Importing":["Importing"],"Finished importing":["Finished importing"],"Total redirects imported:":["Total redirects imported:"],"Double-check the file is the correct format!":["Double-check the file is the correct format!"],"OK":["OK"],"Close":["Close"],"All imports will be appended to the current database.":["All imports will be appended to the current database."],"Export":["Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":["Everything"],"WordPress redirects":["WordPress redirects"],"Apache redirects":["Apache redirects"],"Nginx redirects":["Nginx redirects"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx rewrite rules"],"Redirection JSON":["Redirection JSON"],"View":["View"],"Log files can be exported from the log pages.":["Log files can be exported from the log pages."],"Import/Export":["Import/Export"],"Logs":["Logs"],"404 errors":["404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":["I'd like to support some more."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection saved"],"Log deleted":["Log deleted"],"Settings saved":["Settings saved"],"Group saved":["Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":["pass"],"All groups":["All groups"],"301 - Moved Permanently":["301 - Moved Permanently"],"302 - Found":["302 - Found"],"307 - Temporary Redirect":["307 - Temporary Redirect"],"308 - Permanent Redirect":["308 - Permanent Redirect"],"401 - Unauthorized":["401 - Unauthorized"],"404 - Not Found":["404 - Not Found"],"Title":["Title"],"When matched":["When matched"],"with HTTP code":["with HTTP code"],"Show advanced options":["Show advanced options"],"Matched Target":["Matched Target"],"Unmatched Target":["Unmatched Target"],"Saving...":["Saving..."],"View notice":["View notice"],"Invalid source URL":["Invalid source URL"],"Invalid redirect action":["Invalid redirect action"],"Invalid redirect matcher":["Invalid redirect matcher"],"Unable to add new redirect":["Unable to add new redirect"],"Something went wrong 🙁":["Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"Log entries (%d max)":["Log entries (%d max)"],"Search by IP":["Search by IP"],"Select bulk action":["Select bulk action"],"Bulk Actions":["Bulk Actions"],"Apply":["Apply"],"First page":["First page"],"Prev page":["Prev page"],"Current Page":["Current Page"],"of %(page)s":["of %(page)s"],"Next page":["Next page"],"Last page":["Last page"],"%s item":["%s item","%s items"],"Select All":["Select All"],"Sorry, something went wrong loading the data - please try again":["Sorry, something went wrong loading the data - please try again"],"No results":["No results"],"Delete the logs - are you sure?":["Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":["Yes! Delete the logs"],"No! Don't delete the logs":["No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":["Your email address:"],"You've supported this plugin - thank you!":["You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":["You get useful software and I get to carry on making it better."],"Forever":["Forever"],"Delete the plugin - are you sure?":["Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":["Yes! Delete the plugin"],"No! Don't delete the plugin":["No! Don't delete the plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Manage all your 301 redirects and monitor 404 errors."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Redirection Support":["Redirection Support"],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Delete Redirection"],"Upload":["Upload"],"Import":["Import"],"Update":["Update"],"Auto-generate URL":["Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":["RSS Token"],"404 Logs":["404 Logs"],"(time to keep logs for)":["(time to keep logs for)"],"Redirect Logs":["Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":["I'm a nice person and I have helped support the author of this plugin."],"Plugin Support":["Plugin Support"],"Options":["Options"],"Two months":["Two months"],"A month":["A month"],"A week":["A week"],"A day":["A day"],"No logs":["No logs"],"Delete All":["Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":["Add Group"],"Search":["Search"],"Groups":["Groups"],"Save":["Save"],"Group":["Group"],"Match":["Match"],"Add new redirection":["Add new redirection"],"Cancel":["Cancel"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Settings"],"Do nothing":["Do nothing"],"Error (404)":["Error (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Redirect to random post"],"Redirect to URL":["Redirect to URL"],"Invalid group when creating redirect":["Invalid group when creating redirect"],"IP":["IP"],"Source URL":["Source URL"],"Date":["Date"],"Add Redirect":["Add Redirect"],"All modules":["All modules"],"View Redirects":["View Redirects"],"Module":["Module"],"Redirects":["Redirects"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Reset hits"],"Enable":["Enable"],"Disable":["Disable"],"Delete":["Delete"],"Edit":["Edit"],"Last Access":["Last Access"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Modified Posts"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL and user agent"],"Target URL":["Target URL"],"URL only":["URL only"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL and referrer"],"Logged Out":["Logged Out"],"Logged In":["Logged In"],"URL and login status":["URL and login status"]}
1
+ {"":[],"Problem":["Problem"],"Good":["Good"],"Check":["Check"],"Check Redirect":["Check Redirect"],"Check redirect for: {{code}}%s{{/code}}":["Check redirect for: {{code}}%s{{/code}}"],"What does this mean?":["What does this mean?"],"Not using Redirection":["Not using Redirection"],"Using Redirection":["Using Redirection"],"Found":["Found"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"],"Expected":["Expected"],"Error":["Error"],"Enter full URL, including http:// or https://":["Enter full URL, including http:// or https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."],"Redirect Tester":["Redirect Tester"],"Target":["Target"],"URL is not being redirected with Redirection":["URL is not being redirected with Redirection"],"URL is being redirected with Redirection":["URL is being redirected with Redirection"],"Unable to load details":["Unable to load details"],"Enter server URL to match against":["Enter server URL to match against"],"Server":["Server"],"Enter role or capability value":["Enter role or capability value"],"Role":["Role"],"Match against this browser referrer text":["Match against this browser referrer text"],"Match against this browser user agent":["Match against this browser user agent"],"The relative URL you want to redirect from":["The relative URL you want to redirect from"],"Optional description - describe the purpose of this redirect":["Optional description - describe the purpose of this redirect"],"The target URL you want to redirect to if matched":["The target URL you want to redirect to if matched"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"],"Force HTTPS":["Force HTTPS"],"GDPR / Privacy information":["GDPR / Privacy information"],"Add New":["Add New"],"Please logout and login again.":["Please logout and login again."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection requires PHP v%1s, you are using v%2s - please update your PHP"],"URL and role/capability":["URL and role/capability"],"URL and server":["URL and server"],"Form request":["Form request"],"Relative /wp-json/":["Relative /wp-json/"],"Proxy over Admin AJAX":["Proxy over Admin AJAX"],"Default /wp-json/":["Default /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"],"Site and home protocol":["Site and home protocol"],"Site and home URL are inconsistent - please correct from your General settings":["Site and home URL are inconsistent - please correct from your General settings"],"Site and home are consistent":["Site and home are consistent"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."],"Accept Language":["Accept Language"],"Header value":["Header value"],"Header name":["Header name"],"HTTP Header":["HTTP Header"],"WordPress filter name":["WordPress filter name"],"Filter Name":["Filter Name"],"Cookie value":["Cookie value"],"Cookie name":["Cookie name"],"Cookie":["Cookie"],"Target URL when not matched":["Target URL when not matched"],"Target URL when matched":["Target URL when matched"],"clearing your cache.":["clearing your cache."],"If you are using a caching system such as Cloudflare then please read this: ":["If you are using a caching system such as Cloudflare then please read this: "],"URL and HTTP header":["URL and HTTP header"],"URL and custom filter":["URL and custom filter"],"URL and cookie":["URL and cookie"],"404 deleted":["404 deleted"],"Raw /index.php?rest_route=/":["Raw /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["How Redirection uses the REST API - don't change unless necessary"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."],"None of the suggestions helped":["None of the suggestions helped"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."],"Unable to load Redirection ☹️":["Unable to load Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API is working at %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API is not working so routes not checked"],"Redirection routes are working":["Redirection routes are working"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"],"Redirection routes":["Redirection routes"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Useragent Error"],"Unknown Useragent":["Unknown Useragent"],"Device":["Device"],"Operating System":["Operating System"],"Browser":["Browser"],"Engine":["Engine"],"Useragent":["Useragent"],"Agent":["Agent"],"No IP logging":["No IP logging"],"Full IP logging":["Full IP logging"],"Anonymize IP (mask last part)":["Anonymize IP (mask last part)"],"Monitor changes to %(type)s":["Monitor changes to %(type)s"],"IP Logging":["IP Logging"],"(select IP logging level)":["(select IP logging level)"],"Geo Info":["Geo Info"],"Agent Info":["Agent Info"],"Filter by IP":["Filter by IP"],"Referrer / User Agent":["Referrer / User Agent"],"Geo IP Error":["Geo IP Error"],"Something went wrong obtaining this information":["Something went wrong obtaining this information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."],"No details are known for this address.":["No details are known for this address."],"Geo IP":["Geo IP"],"City":["City"],"Area":["Area"],"Timezone":["Timezone"],"Geo Location":["Geo Location"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["Trash"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":["Never cache"],"An hour":["An hour"],"Redirect Cache":["Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Are you sure you want to import from %s?"],"Plugin Importers":["Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":["The following redirect plugins were detected on your site and can be imported from."],"total = ":["total = "],"Import from %s":["Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":["Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":["Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":["Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":["⚡️ Magic fix ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Custom"],"Mobile":["Mobile"],"Feed Readers":["Feed Readers"],"Libraries":["Libraries"],"URL Monitor Changes":["URL Monitor Changes"],"Save changes to this group":["Save changes to this group"],"For example \"/amp\"":["For example \"/amp\""],"URL Monitor":["URL Monitor"],"Delete 404s":["Delete 404s"],"Delete all logs for this 404":["Delete all logs for this 404"],"Delete all from IP %s":["Delete all from IP %s"],"Delete all matching \"%s\"":["Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":["Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":["Unable to load Redirection"],"Unable to create group":["Unable to create group"],"Failed to fix database tables":["Failed to fix database tables"],"Post monitor group is valid":["Post monitor group is valid"],"Post monitor group is invalid":["Post monitor group is invalid"],"Post monitor group":["Post monitor group"],"All redirects have a valid group":["All redirects have a valid group"],"Redirects with invalid groups detected":["Redirects with invalid groups detected"],"Valid redirect group":["Valid redirect group"],"Valid groups detected":["Valid groups detected"],"No valid groups, so you will not be able to create any redirects":["No valid groups, so you will not be able to create any redirects"],"Valid groups":["Valid groups"],"Database tables":["Database tables"],"The following tables are missing:":["The following tables are missing:"],"All tables present":["All tables present"],"Cached Redirection detected":["Cached Redirection detected"],"Please clear your browser cache and reload this page.":["Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":["The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":["If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":["This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":["Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":["Create Issue"],"Email":["Email"],"Important details":["Important details"],"Need help?":["Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":["Pos"],"410 - Gone":["410 - Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"],"Apache Module":["Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":["Import to group"],"Import a CSV, .htaccess, or JSON file.":["Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":["Click 'Add File' or drag and drop here."],"Add File":["Add File"],"File selected":["File selected"],"Importing":["Importing"],"Finished importing":["Finished importing"],"Total redirects imported:":["Total redirects imported:"],"Double-check the file is the correct format!":["Double-check the file is the correct format!"],"OK":["OK"],"Close":["Close"],"All imports will be appended to the current database.":["All imports will be appended to the current database."],"Export":["Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":["Everything"],"WordPress redirects":["WordPress redirects"],"Apache redirects":["Apache redirects"],"Nginx redirects":["Nginx redirects"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx rewrite rules"],"Redirection JSON":["Redirection JSON"],"View":["View"],"Log files can be exported from the log pages.":["Log files can be exported from the log pages."],"Import/Export":["Import/Export"],"Logs":["Logs"],"404 errors":["404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":["I'd like to support some more."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection saved"],"Log deleted":["Log deleted"],"Settings saved":["Settings saved"],"Group saved":["Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":["pass"],"All groups":["All groups"],"301 - Moved Permanently":["301 - Moved Permanently"],"302 - Found":["302 - Found"],"307 - Temporary Redirect":["307 - Temporary Redirect"],"308 - Permanent Redirect":["308 - Permanent Redirect"],"401 - Unauthorized":["401 - Unauthorized"],"404 - Not Found":["404 - Not Found"],"Title":["Title"],"When matched":["When matched"],"with HTTP code":["with HTTP code"],"Show advanced options":["Show advanced options"],"Matched Target":["Matched Target"],"Unmatched Target":["Unmatched Target"],"Saving...":["Saving..."],"View notice":["View notice"],"Invalid source URL":["Invalid source URL"],"Invalid redirect action":["Invalid redirect action"],"Invalid redirect matcher":["Invalid redirect matcher"],"Unable to add new redirect":["Unable to add new redirect"],"Something went wrong 🙁":["Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"Log entries (%d max)":["Log entries (%d max)"],"Search by IP":["Search by IP"],"Select bulk action":["Select bulk action"],"Bulk Actions":["Bulk Actions"],"Apply":["Apply"],"First page":["First page"],"Prev page":["Prev page"],"Current Page":["Current Page"],"of %(page)s":["of %(page)s"],"Next page":["Next page"],"Last page":["Last page"],"%s item":["%s item","%s items"],"Select All":["Select All"],"Sorry, something went wrong loading the data - please try again":["Sorry, something went wrong loading the data - please try again"],"No results":["No results"],"Delete the logs - are you sure?":["Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":["Yes! Delete the logs"],"No! Don't delete the logs":["No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":["Your email address:"],"You've supported this plugin - thank you!":["You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":["You get useful software and I get to carry on making it better."],"Forever":["Forever"],"Delete the plugin - are you sure?":["Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":["Yes! Delete the plugin"],"No! Don't delete the plugin":["No! Don't delete the plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Manage all your 301 redirects and monitor 404 errors."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Redirection Support":["Redirection Support"],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Delete Redirection"],"Upload":["Upload"],"Import":["Import"],"Update":["Update"],"Auto-generate URL":["Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":["RSS Token"],"404 Logs":["404 Logs"],"(time to keep logs for)":["(time to keep logs for)"],"Redirect Logs":["Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":["I'm a nice person and I have helped support the author of this plugin."],"Plugin Support":["Plugin Support"],"Options":["Options"],"Two months":["Two months"],"A month":["A month"],"A week":["A week"],"A day":["A day"],"No logs":["No logs"],"Delete All":["Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":["Add Group"],"Search":["Search"],"Groups":["Groups"],"Save":["Save"],"Group":["Group"],"Match":["Match"],"Add new redirection":["Add new redirection"],"Cancel":["Cancel"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Settings"],"Do nothing":["Do nothing"],"Error (404)":["Error (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Redirect to random post"],"Redirect to URL":["Redirect to URL"],"Invalid group when creating redirect":["Invalid group when creating redirect"],"IP":["IP"],"Source URL":["Source URL"],"Date":["Date"],"Add Redirect":["Add Redirect"],"All modules":["All modules"],"View Redirects":["View Redirects"],"Module":["Module"],"Redirects":["Redirects"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Reset hits"],"Enable":["Enable"],"Disable":["Disable"],"Delete":["Delete"],"Edit":["Edit"],"Last Access":["Last Access"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Modified Posts"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL and user agent"],"Target URL":["Target URL"],"URL only":["URL only"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL and referrer"],"Logged Out":["Logged Out"],"Logged In":["Logged In"],"URL and login status":["URL and login status"]}
locale/json/redirection-en_GB.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":[""],"URL is not being redirected with Redirection":[""],"URL is being redirected with Redirection":[""],"Unable to load details":[""],"Enter server URL to match against":[""],"Server":[""],"Enter role or capability value":[""],"Role":[""],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":[""],"Optional description - describe the purpose of this redirect":[""],"The target URL you want to redirect to if matched":[""],"(beta)":[""],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":[""],"Force HTTPS":[""],"GDPR / Privacy information":[""],"Add New":[""],"Please logout and login again.":[""],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection requires PHP v%1s, you are using v%2s - please update your PHP"],"URL and role/capability":[""],"URL and server":["URL and server"],"Form request":["Form request"],"Relative /wp-json/":["Relative /wp-json/"],"Proxy over Admin AJAX":["Proxy over Admin Ajax"],"Default /wp-json/":["Default /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"],"Site and home protocol":["Site and home protocol"],"Site and home URL are inconsistent - please correct from your General settings":["Site and home URL are inconsistent - please correct from your General settings"],"Site and home are consistent":["Site and home are consistent"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."],"Accept Language":["Accept Language"],"Header value":["Header value"],"Header name":["Header name"],"HTTP Header":["HTTP Header"],"WordPress filter name":["WordPress filter name"],"Filter Name":["Filter Name"],"Cookie value":["Cookie value"],"Cookie name":["Cookie name"],"Cookie":["Cookie"],"Target URL when not matched":["Target URL when not matched"],"Target URL when matched":["Target URL when matched"],"clearing your cache.":["clearing your cache."],"If you are using a caching system such as Cloudflare then please read this: ":["If you are using a caching system such as Cloudflare then please read this: "],"URL and HTTP header":["URL and HTTP header"],"URL and custom filter":["URL and custom filter"],"URL and cookie":["URL and cookie"],"404 deleted":["404 deleted"],"Raw /index.php?rest_route=/":["Raw /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["How Redirection uses the REST API - don't change unless necessary"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."],"None of the suggestions helped":["None of the suggestions helped"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."],"Unable to load Redirection ☹️":["Unable to load Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API is working at %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API is not working so routes not checked"],"Redirection routes are working":["Redirection routes are working"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"],"Redirection routes":["Redirection routes"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["User Agent Error"],"Unknown Useragent":["Unknown User Agent"],"Device":["Device"],"Operating System":["Operating System"],"Browser":["Browser"],"Engine":["Engine"],"Useragent":["User Agent"],"Agent":["Agent"],"No IP logging":["No IP logging"],"Full IP logging":["Full IP logging"],"Anonymize IP (mask last part)":["Anonymise IP (mask last part)"],"Monitor changes to %(type)s":["Monitor changes to %(type)s"],"IP Logging":["IP Logging"],"(select IP logging level)":["(select IP logging level)"],"Geo Info":["Geo Info"],"Agent Info":["Agent Info"],"Filter by IP":["Filter by IP"],"Referrer / User Agent":["Referrer / User Agent"],"Geo IP Error":["Geo IP Error"],"Something went wrong obtaining this information":["Something went wrong obtaining this information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."],"No details are known for this address.":["No details are known for this address."],"Geo IP":["Geo IP"],"City":["City"],"Area":["Area"],"Timezone":["Timezone"],"Geo Location":["Geo Location"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["Bin"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":["Never cache"],"An hour":["An hour"],"Redirect Cache":["Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Are you sure you want to import from %s?"],"Plugin Importers":["Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":["The following redirect plugins were detected on your site and can be imported from."],"total = ":["total = "],"Import from %s":["Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":["Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":["Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":["Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":["⚡️ Magic fix ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Custom"],"Mobile":["Mobile"],"Feed Readers":["Feed Readers"],"Libraries":["Libraries"],"URL Monitor Changes":["URL Monitor Changes"],"Save changes to this group":["Save changes to this group"],"For example \"/amp\"":["For example \"/amp\""],"URL Monitor":["URL Monitor"],"Delete 404s":["Delete 404s"],"Delete all logs for this 404":["Delete all logs for this 404"],"Delete all from IP %s":["Delete all from IP %s"],"Delete all matching \"%s\"":["Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":["Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":["Unable to load Redirection"],"Unable to create group":["Unable to create group"],"Failed to fix database tables":["Failed to fix database tables"],"Post monitor group is valid":["Post monitor group is valid"],"Post monitor group is invalid":["Post monitor group is invalid"],"Post monitor group":["Post monitor group"],"All redirects have a valid group":["All redirects have a valid group"],"Redirects with invalid groups detected":["Redirects with invalid groups detected"],"Valid redirect group":["Valid redirect group"],"Valid groups detected":["Valid groups detected"],"No valid groups, so you will not be able to create any redirects":["No valid groups, so you will not be able to create any redirects"],"Valid groups":["Valid groups"],"Database tables":["Database tables"],"The following tables are missing:":["The following tables are missing:"],"All tables present":["All tables present"],"Cached Redirection detected":["Cached Redirection detected"],"Please clear your browser cache and reload this page.":["Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":["The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":["If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":["This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":["Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":["Create Issue"],"Email":["Email"],"Important details":["Important details"],"Need help?":["Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":["Pos"],"410 - Gone":["410 - Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"],"Apache Module":["Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":["Import to group"],"Import a CSV, .htaccess, or JSON file.":["Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":["Click 'Add File' or drag and drop here."],"Add File":["Add File"],"File selected":["File selected"],"Importing":["Importing"],"Finished importing":["Finished importing"],"Total redirects imported:":["Total redirects imported:"],"Double-check the file is the correct format!":["Double-check the file is the correct format!"],"OK":["OK"],"Close":["Close"],"All imports will be appended to the current database.":["All imports will be appended to the current database."],"Export":["Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":["Everything"],"WordPress redirects":["WordPress redirects"],"Apache redirects":["Apache redirects"],"Nginx redirects":["Nginx redirects"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx rewrite rules"],"Redirection JSON":["Redirection JSON"],"View":["View"],"Log files can be exported from the log pages.":["Log files can be exported from the log pages."],"Import/Export":["Import/Export"],"Logs":["Logs"],"404 errors":["404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":["I'd like to support some more."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection saved"],"Log deleted":["Log deleted"],"Settings saved":["Settings saved"],"Group saved":["Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":["pass"],"All groups":["All groups"],"301 - Moved Permanently":["301 - Moved Permanently"],"302 - Found":["302 - Found"],"307 - Temporary Redirect":["307 - Temporary Redirect"],"308 - Permanent Redirect":["308 - Permanent Redirect"],"401 - Unauthorized":["401 - Unauthorized"],"404 - Not Found":["404 - Not Found"],"Title":["Title"],"When matched":["When matched"],"with HTTP code":["with HTTP code"],"Show advanced options":["Show advanced options"],"Matched Target":["Matched Target"],"Unmatched Target":["Unmatched Target"],"Saving...":["Saving..."],"View notice":["View notice"],"Invalid source URL":["Invalid source URL"],"Invalid redirect action":["Invalid redirect action"],"Invalid redirect matcher":["Invalid redirect matcher"],"Unable to add new redirect":["Unable to add new redirect"],"Something went wrong 🙁":["Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"Log entries (%d max)":["Log entries (%d max)"],"Search by IP":["Search by IP"],"Select bulk action":["Select bulk action"],"Bulk Actions":["Bulk Actions"],"Apply":["Apply"],"First page":["First page"],"Prev page":["Prev page"],"Current Page":["Current Page"],"of %(page)s":["of %(page)s"],"Next page":["Next page"],"Last page":["Last page"],"%s item":["%s item","%s items"],"Select All":["Select All"],"Sorry, something went wrong loading the data - please try again":["Sorry, something went wrong loading the data - please try again"],"No results":["No results"],"Delete the logs - are you sure?":["Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":["Yes! Delete the logs"],"No! Don't delete the logs":["No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":["Your email address:"],"You've supported this plugin - thank you!":["You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":["You get useful software and I get to carry on making it better."],"Forever":["Forever"],"Delete the plugin - are you sure?":["Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":["Yes! Delete the plugin"],"No! Don't delete the plugin":["No! Don't delete the plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Manage all your 301 redirects and monitor 404 errors"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Redirection Support":["Redirection Support"],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Delete Redirection"],"Upload":["Upload"],"Import":["Import"],"Update":["Update"],"Auto-generate URL":["Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":["RSS Token"],"404 Logs":["404 Logs"],"(time to keep logs for)":["(time to keep logs for)"],"Redirect Logs":["Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":["I'm a nice person and I have helped support the author of this plugin"],"Plugin Support":["Plugin Support"],"Options":["Options"],"Two months":["Two months"],"A month":["A month"],"A week":["A week"],"A day":["A day"],"No logs":["No logs"],"Delete All":["Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":["Add Group"],"Search":["Search"],"Groups":["Groups"],"Save":["Save"],"Group":["Group"],"Match":["Match"],"Add new redirection":["Add new redirection"],"Cancel":["Cancel"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Settings"],"Do nothing":["Do nothing"],"Error (404)":["Error (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Redirect to random post"],"Redirect to URL":["Redirect to URL"],"Invalid group when creating redirect":["Invalid group when creating redirect"],"IP":["IP"],"Source URL":["Source URL"],"Date":["Date"],"Add Redirect":["Add Redirect"],"All modules":["All modules"],"View Redirects":["View Redirects"],"Module":["Module"],"Redirects":["Redirects"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Reset hits"],"Enable":["Enable"],"Disable":["Disable"],"Delete":["Delete"],"Edit":["Edit"],"Last Access":["Last Access"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Modified Posts"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL and user agent"],"Target URL":["Target URL"],"URL only":["URL only"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL and referrer"],"Logged Out":["Logged Out"],"Logged In":["Logged In"],"URL and login status":["URL and login status"]}
1
+ {"":[],"Problem":[""],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":[""],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":[""],"URL is not being redirected with Redirection":[""],"URL is being redirected with Redirection":[""],"Unable to load details":[""],"Enter server URL to match against":[""],"Server":[""],"Enter role or capability value":[""],"Role":[""],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":[""],"Optional description - describe the purpose of this redirect":[""],"The target URL you want to redirect to if matched":[""],"(beta)":[""],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":[""],"Force HTTPS":[""],"GDPR / Privacy information":[""],"Add New":[""],"Please logout and login again.":[""],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection requires PHP v%1s, you are using v%2s - please update your PHP"],"URL and role/capability":["URL and role/capability"],"URL and server":["URL and server"],"Form request":["Form request"],"Relative /wp-json/":["Relative /wp-json/"],"Proxy over Admin AJAX":["Proxy over Admin Ajax"],"Default /wp-json/":["Default /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"],"Site and home protocol":["Site and home protocol"],"Site and home URL are inconsistent - please correct from your General settings":["Site and home URL are inconsistent - please correct from your General settings"],"Site and home are consistent":["Site and home are consistent"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."],"Accept Language":["Accept Language"],"Header value":["Header value"],"Header name":["Header name"],"HTTP Header":["HTTP Header"],"WordPress filter name":["WordPress filter name"],"Filter Name":["Filter Name"],"Cookie value":["Cookie value"],"Cookie name":["Cookie name"],"Cookie":["Cookie"],"Target URL when not matched":["Target URL when not matched"],"Target URL when matched":["Target URL when matched"],"clearing your cache.":["clearing your cache."],"If you are using a caching system such as Cloudflare then please read this: ":["If you are using a caching system such as Cloudflare then please read this: "],"URL and HTTP header":["URL and HTTP header"],"URL and custom filter":["URL and custom filter"],"URL and cookie":["URL and cookie"],"404 deleted":["404 deleted"],"Raw /index.php?rest_route=/":["Raw /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["How Redirection uses the REST API - don't change unless necessary"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."],"None of the suggestions helped":["None of the suggestions helped"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."],"Unable to load Redirection ☹️":["Unable to load Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API is working at %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API is not working so routes not checked"],"Redirection routes are working":["Redirection routes are working"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"],"Redirection routes":["Redirection routes"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["User Agent Error"],"Unknown Useragent":["Unknown User Agent"],"Device":["Device"],"Operating System":["Operating System"],"Browser":["Browser"],"Engine":["Engine"],"Useragent":["User Agent"],"Agent":["Agent"],"No IP logging":["No IP logging"],"Full IP logging":["Full IP logging"],"Anonymize IP (mask last part)":["Anonymise IP (mask last part)"],"Monitor changes to %(type)s":["Monitor changes to %(type)s"],"IP Logging":["IP Logging"],"(select IP logging level)":["(select IP logging level)"],"Geo Info":["Geo Info"],"Agent Info":["Agent Info"],"Filter by IP":["Filter by IP"],"Referrer / User Agent":["Referrer / User Agent"],"Geo IP Error":["Geo IP Error"],"Something went wrong obtaining this information":["Something went wrong obtaining this information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."],"No details are known for this address.":["No details are known for this address."],"Geo IP":["Geo IP"],"City":["City"],"Area":["Area"],"Timezone":["Timezone"],"Geo Location":["Geo Location"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["Bin"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":["Never cache"],"An hour":["An hour"],"Redirect Cache":["Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Are you sure you want to import from %s?"],"Plugin Importers":["Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":["The following redirect plugins were detected on your site and can be imported from."],"total = ":["total = "],"Import from %s":["Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":["Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":["Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":["Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":["⚡️ Magic fix ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Custom"],"Mobile":["Mobile"],"Feed Readers":["Feed Readers"],"Libraries":["Libraries"],"URL Monitor Changes":["URL Monitor Changes"],"Save changes to this group":["Save changes to this group"],"For example \"/amp\"":["For example \"/amp\""],"URL Monitor":["URL Monitor"],"Delete 404s":["Delete 404s"],"Delete all logs for this 404":["Delete all logs for this 404"],"Delete all from IP %s":["Delete all from IP %s"],"Delete all matching \"%s\"":["Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":["Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":["Unable to load Redirection"],"Unable to create group":["Unable to create group"],"Failed to fix database tables":["Failed to fix database tables"],"Post monitor group is valid":["Post monitor group is valid"],"Post monitor group is invalid":["Post monitor group is invalid"],"Post monitor group":["Post monitor group"],"All redirects have a valid group":["All redirects have a valid group"],"Redirects with invalid groups detected":["Redirects with invalid groups detected"],"Valid redirect group":["Valid redirect group"],"Valid groups detected":["Valid groups detected"],"No valid groups, so you will not be able to create any redirects":["No valid groups, so you will not be able to create any redirects"],"Valid groups":["Valid groups"],"Database tables":["Database tables"],"The following tables are missing:":["The following tables are missing:"],"All tables present":["All tables present"],"Cached Redirection detected":["Cached Redirection detected"],"Please clear your browser cache and reload this page.":["Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":["The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":["If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":["This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":["Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":["Create Issue"],"Email":["Email"],"Important details":["Important details"],"Need help?":["Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":["Pos"],"410 - Gone":["410 - Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"],"Apache Module":["Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":["Import to group"],"Import a CSV, .htaccess, or JSON file.":["Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":["Click 'Add File' or drag and drop here."],"Add File":["Add File"],"File selected":["File selected"],"Importing":["Importing"],"Finished importing":["Finished importing"],"Total redirects imported:":["Total redirects imported:"],"Double-check the file is the correct format!":["Double-check the file is the correct format!"],"OK":["OK"],"Close":["Close"],"All imports will be appended to the current database.":["All imports will be appended to the current database."],"Export":["Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":["Everything"],"WordPress redirects":["WordPress redirects"],"Apache redirects":["Apache redirects"],"Nginx redirects":["Nginx redirects"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx rewrite rules"],"Redirection JSON":["Redirection JSON"],"View":["View"],"Log files can be exported from the log pages.":["Log files can be exported from the log pages."],"Import/Export":["Import/Export"],"Logs":["Logs"],"404 errors":["404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":["I'd like to support some more."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection saved"],"Log deleted":["Log deleted"],"Settings saved":["Settings saved"],"Group saved":["Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":["pass"],"All groups":["All groups"],"301 - Moved Permanently":["301 - Moved Permanently"],"302 - Found":["302 - Found"],"307 - Temporary Redirect":["307 - Temporary Redirect"],"308 - Permanent Redirect":["308 - Permanent Redirect"],"401 - Unauthorized":["401 - Unauthorized"],"404 - Not Found":["404 - Not Found"],"Title":["Title"],"When matched":["When matched"],"with HTTP code":["with HTTP code"],"Show advanced options":["Show advanced options"],"Matched Target":["Matched Target"],"Unmatched Target":["Unmatched Target"],"Saving...":["Saving..."],"View notice":["View notice"],"Invalid source URL":["Invalid source URL"],"Invalid redirect action":["Invalid redirect action"],"Invalid redirect matcher":["Invalid redirect matcher"],"Unable to add new redirect":["Unable to add new redirect"],"Something went wrong 🙁":["Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"Log entries (%d max)":["Log entries (%d max)"],"Search by IP":["Search by IP"],"Select bulk action":["Select bulk action"],"Bulk Actions":["Bulk Actions"],"Apply":["Apply"],"First page":["First page"],"Prev page":["Prev page"],"Current Page":["Current Page"],"of %(page)s":["of %(page)s"],"Next page":["Next page"],"Last page":["Last page"],"%s item":["%s item","%s items"],"Select All":["Select All"],"Sorry, something went wrong loading the data - please try again":["Sorry, something went wrong loading the data - please try again"],"No results":["No results"],"Delete the logs - are you sure?":["Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":["Yes! Delete the logs"],"No! Don't delete the logs":["No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":["Your email address:"],"You've supported this plugin - thank you!":["You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":["You get useful software and I get to carry on making it better."],"Forever":["Forever"],"Delete the plugin - are you sure?":["Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":["Yes! Delete the plugin"],"No! Don't delete the plugin":["No! Don't delete the plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Manage all your 301 redirects and monitor 404 errors"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Redirection Support":["Redirection Support"],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Delete Redirection"],"Upload":["Upload"],"Import":["Import"],"Update":["Update"],"Auto-generate URL":["Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":["RSS Token"],"404 Logs":["404 Logs"],"(time to keep logs for)":["(time to keep logs for)"],"Redirect Logs":["Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":["I'm a nice person and I have helped support the author of this plugin"],"Plugin Support":["Plugin Support"],"Options":["Options"],"Two months":["Two months"],"A month":["A month"],"A week":["A week"],"A day":["A day"],"No logs":["No logs"],"Delete All":["Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":["Add Group"],"Search":["Search"],"Groups":["Groups"],"Save":["Save"],"Group":["Group"],"Match":["Match"],"Add new redirection":["Add new redirection"],"Cancel":["Cancel"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Settings"],"Do nothing":["Do nothing"],"Error (404)":["Error (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Redirect to random post"],"Redirect to URL":["Redirect to URL"],"Invalid group when creating redirect":["Invalid group when creating redirect"],"IP":["IP"],"Source URL":["Source URL"],"Date":["Date"],"Add Redirect":["Add Redirect"],"All modules":["All modules"],"View Redirects":["View Redirects"],"Module":["Module"],"Redirects":["Redirects"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Reset hits"],"Enable":["Enable"],"Disable":["Disable"],"Delete":["Delete"],"Edit":["Edit"],"Last Access":["Last Access"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Modified Posts"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL and user agent"],"Target URL":["Target URL"],"URL only":["URL only"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL and referrer"],"Logged Out":["Logged Out"],"Logged In":["Logged In"],"URL and login status":["URL and login status"]}
locale/json/redirection-es_ES.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":["Introduce la URL completa, incluyendo http:// o https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["A veces, tu navegador puede almacenar en caché una URL, lo que dificulta saber si está funcionando como se esperaba. Usa esto para verificar una URL para ver cómo está redirigiendo realmente."],"Redirect Tester":["Probar redirecciones"],"Target":["Destino"],"URL is not being redirected with Redirection":["La URL no está siendo redirigida por Redirection"],"URL is being redirected with Redirection":["La URL está siendo redirigida por Redirection"],"Unable to load details":["No se han podido cargar los detalles"],"Enter server URL to match against":["Escribe la URL del servidor que comprobar"],"Server":["Servidor"],"Enter role or capability value":["Escribe el valor de perfil o capacidad"],"Role":["Perfil"],"Match against this browser referrer text":["Comparar contra el texto de referencia de este navegador"],"Match against this browser user agent":["Comparar contra el agente usuario de este navegador"],"The relative URL you want to redirect from":["La URL relativa desde la que quieres redirigir"],"Optional description - describe the purpose of this redirect":["Descripción opcional - describe la finalidad de esta redirección"],"The target URL you want to redirect to if matched":["La URL de destino a la que quieres redirigir si coincide"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"],"Force HTTPS":["Forzar HTTPS"],"GDPR / Privacy information":["Información de RGPD / Provacidad"],"Add New":["Añadir nueva"],"Please logout and login again.":["Cierra sesión y vuelve a entrar, por favor."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection necesita PHP v%1s y estás usando v%2s - Actualiza tu versión de PHP"],"URL and role/capability":["URL y perfil/capacidad"],"URL and server":["URL y servidor"],"Form request":["Petición de formulario"],"Relative /wp-json/":["/wp-json/ relativo"],"Proxy over Admin AJAX":["Proxy sobre Admin AJAX"],"Default /wp-json/":["/wp-json/ por defecto"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Si no puedes hacer que funcione nada entonces Redirection puede tener dificultades para comunicarse con tu servidor. Puedes intentar cambiar manualmente este ajuste:"],"Site and home protocol":["Protocolo de portada y el sitio"],"Site and home URL are inconsistent - please correct from your General settings":["Las URLs del sitio y portada son inconsistentes - por favor, corrígelo en tus ajustes generales"],"Site and home are consistent":["Portada y sitio son consistentes"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Date cuenta de que es tu responsabilidad pasar las cabeceras HTTP a PHP. Por favor, contacta con tu proveedor de alojamiento para obtener soporte sobre esto."],"Accept Language":["Aceptar idioma"],"Header value":["Valor de cabecera"],"Header name":["Nombre de cabecera"],"HTTP Header":["Cabecera HTTP"],"WordPress filter name":["Nombre del filtro WordPress"],"Filter Name":["Nombre del filtro"],"Cookie value":["Valor de la cookie"],"Cookie name":["Nombre de la cookie"],"Cookie":["Cookie"],"Target URL when not matched":["URL de destino cuando no coincide"],"Target URL when matched":["URL de destino cuando coincide"],"clearing your cache.":["vaciando tu caché."],"If you are using a caching system such as Cloudflare then please read this: ":["Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"],"URL and HTTP header":["URL y cabecera HTTP"],"URL and custom filter":["URL y filtro personalizado"],"URL and cookie":["URL y cookie"],"404 deleted":["404 borrado"],"Raw /index.php?rest_route=/":["Sin modificar /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress devolvió un mensaje inesperado. Esto podría deberse a que tu REST API no funciona, o por otro plugin o tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Por favor, echa un vistazo al {{link}}estado del plugin{{/link}}. Podría ser capaz de identificar y resolver \"mágicamente\" el problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection no puede conectar con tu REST API{{/link}}. Si la has desactivado entonces necesitarás activarla."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Un software de seguridad podría estar bloqueando Redirection{{/link}}. Deberías configurarlo para permitir peticiones de la REST API."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Un software de caché{{/link}}, en particular Cloudflare, podría cachear lo que no debería. Prueba a borrar todas tus cachés."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Esto arregla muchos problemas."],"None of the suggestions helped":["Ninguna de las sugerencias ha ayudado"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."],"Unable to load Redirection ☹️":["No se puede cargar Redirection ☹️"],"WordPress REST API is working at %s":["La REST API de WordPress está funcionando en %s"],"WordPress REST API":["REST API de WordPress"],"REST API is not working so routes not checked":["La REST API no está funcionando, así que las rutas no se comprueban"],"Redirection routes are working":["Las rutas de redirección están funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection no aparece en las rutas de tu REST API. ¿La has desactivado con un plugin?"],"Redirection routes":["Rutas de redirección"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["La REST API de tu WordPress está desactivada. Necesitarás activarla para que Redirection continúe funcionando"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Error de agente de usuario"],"Unknown Useragent":["Agente de usuario desconocido"],"Device":["Dispositivo"],"Operating System":["Sistema operativo"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuario"],"Agent":["Agente"],"No IP logging":["Sin registro de IP"],"Full IP logging":["Registro completo de IP"],"Anonymize IP (mask last part)":["Anonimizar IP (enmascarar la última parte)"],"Monitor changes to %(type)s":["Monitorizar cambios de %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(seleccionar el nivel de registro de IP)"],"Geo Info":["Información de geolocalización"],"Agent Info":["Información de agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Procedencia / Agente de usuario"],"Geo IP Error":["Error de geolocalización de IP"],"Something went wrong obtaining this information":["Algo ha ido mal obteniendo esta información"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Esta es una IP de una red privada. Significa que se encuentra dentro de una casa o red de empresa y no se puede mostrar más información."],"No details are known for this address.":["No se conoce ningún detalle para esta dirección."],"Geo IP":["Geolocalización de IP"],"City":["Ciudad"],"Area":["Área"],"Timezone":["Zona horaria"],"Geo Location":["Geolocalización"],"Powered by {{link}}redirect.li{{/link}}":["Funciona gracias a {{link}}redirect.li{{/link}}"],"Trash":["Papelera"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Puedes encontrar la documentación completa sobre el uso de Redirection en el sitio de soporte <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentación completa de Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si quieres enviar información y no quieres que se incluya en un repositorio público, envíala directamente por {{email}}correo electrónico{{/email}} - ¡incluye toda la información que puedas!"],"Never cache":["No cachear nunca"],"An hour":["Una hora"],"Redirect Cache":["Redireccionar caché"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"],"Are you sure you want to import from %s?":["¿Estás seguro de querer importar de %s?"],"Plugin Importers":["Importadores de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."],"Redirection not installed properly":["Redirection no está instalado correctamente"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"],"Default WordPress \"old slugs\"":["\"Viejos slugs\" por defecto de WordPress"],"Create associated redirect (added to end of URL)":["Crea una redirección asociada (añadida al final de la URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> no está definido. Esto normalmente significa que otro plugin está impidiendo que cargue Redirection. Por favor, desactiva todos los plugins e inténtalo de nuevo."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si no funciona el botón mágico entonces deberías leer el error y ver si puedes arreglarlo manualmente, o sino seguir la sección 'Necesito ayuda' de abajo."],"⚡️ Magic fix ⚡️":["⚡️ Arreglo mágico ⚡️"],"Plugin Status":["Estado del plugin"],"Custom":["Personalizado"],"Mobile":["Móvil"],"Feed Readers":["Lectores de feeds"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Monitorizar el cambio de URL"],"Save changes to this group":["Guardar los cambios de este grupo"],"For example \"/amp\"":["Por ejemplo \"/amp\""],"URL Monitor":["Supervisar URL"],"Delete 404s":["Borrar 404s"],"Delete all logs for this 404":["Borra todos los registros de este 404"],"Delete all from IP %s":["Borra todo de la IP %s"],"Delete all matching \"%s\"":["Borra todo lo que tenga \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["También comprueba si tu navegador puede cargar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si estás usando un plugin o servicio (CloudFlare, OVH, etc.) de caché de página entonces también puedes probar a vaciar la caché."],"Unable to load Redirection":["No ha sido posible cargar Redirection"],"Unable to create group":["No fue posible crear el grupo"],"Failed to fix database tables":["Fallo al reparar las tablas de la base de datos"],"Post monitor group is valid":["El grupo de monitoreo de entradas es válido"],"Post monitor group is invalid":["El grupo de monitoreo de entradas no es válido"],"Post monitor group":["Grupo de monitoreo de entradas"],"All redirects have a valid group":["Todas las redirecciones tienen un grupo válido"],"Redirects with invalid groups detected":["Detectadas redirecciones con grupos no válidos"],"Valid redirect group":["Grupo de redirección válido"],"Valid groups detected":["Detectados grupos válidos"],"No valid groups, so you will not be able to create any redirects":["No hay grupos válidos, así que no podrás crear redirecciones"],"Valid groups":["Grupos válidos"],"Database tables":["Tablas de la base de datos"],"The following tables are missing:":["Faltan las siguientes tablas:"],"All tables present":["Están presentes todas las tablas"],"Cached Redirection detected":["Detectada caché de Redirection"],"Please clear your browser cache and reload this page.":["Por favor, vacía la caché de tu navegador y recarga esta página"],"The data on this page has expired, please reload.":["Los datos de esta página han caducado, por favor, recarga."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress no ha devuelto una respuesta. Esto podría significar que ocurrió un error o que la petición se bloqueó. Por favor, revisa el error_log de tu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Tu servidor devolvió un error de 403 Prohibido, que podría indicar que se bloqueó la petición. ¿Estás usando un cortafuegos o un plugin de seguridad?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si crees que es un fallo de Redirection entonces envía un aviso de problema."],"This may be caused by another plugin - look at your browser's error console for more details.":["Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."],"Loading, please wait...":["Cargando, por favor espera…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}formato de archivo CSV{{/strong}}: {{code}}URL de origen, URL de destino{{/code}} - y puede añadirse opcionalmente {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 para no, 1 para sí)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si eso no ayuda abre la consola de errores de tu navegador y crea un {{link}}aviso de problema nuevo{{/link}} con los detalles."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."],"Create Issue":["Crear aviso de problema"],"Email":["Correo electrónico"],"Important details":["Detalles importantes"],"Need help?":["¿Necesitas ayuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Por favor, date cuenta de que todo soporte se ofrece sobre la base del tiempo disponible y no está garantizado. No ofrezco soporte de pago."],"Pos":["Pos"],"410 - Gone":["410 - Desaparecido"],"Position":["Posición"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Se usa para generar automáticamente una URL si no se ofrece una URL. Utiliza las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para insertar un ID único insertado"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."],"Import to group":["Importar a un grupo"],"Import a CSV, .htaccess, or JSON file.":["Importa un archivo CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":["Haz clic en 'Añadir archivo' o arrastra y suelta aquí."],"Add File":["Añadir archivo"],"File selected":["Archivo seleccionado"],"Importing":["Importando"],"Finished importing":["Importación finalizada"],"Total redirects imported:":["Total de redirecciones importadas:"],"Double-check the file is the correct format!":["¡Vuelve a comprobar que el archivo esté en el formato correcto!"],"OK":["Aceptar"],"Close":["Cerrar"],"All imports will be appended to the current database.":["Todas las importaciones se añadirán a la base de datos actual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."],"Everything":["Todo"],"WordPress redirects":["Redirecciones WordPress"],"Apache redirects":["Redirecciones Apache"],"Nginx redirects":["Redirecciones Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess de Apache"],"Nginx rewrite rules":["Reglas de rewrite de Nginx"],"Redirection JSON":["JSON de Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Los archivos de registro se pueden exportar desde las páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Errores 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"],"I'd like to support some more.":["Me gustaría dar algo más de apoyo."],"Support 💰":["Apoyar 💰"],"Redirection saved":["Redirección guardada"],"Log deleted":["Registro borrado"],"Settings saved":["Ajustes guardados"],"Group saved":["Grupo guardado"],"Are you sure you want to delete this item?":["¿Estás seguro de querer borrar este elemento?","¿Estás seguro de querer borrar estos elementos?"],"pass":["pass"],"All groups":["Todos los grupos"],"301 - Moved Permanently":["301 - Movido permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirección temporal"],"308 - Permanent Redirect":["308 - Redirección permanente"],"401 - Unauthorized":["401 - No autorizado"],"404 - Not Found":["404 - No encontrado"],"Title":["Título"],"When matched":["Cuando coincide"],"with HTTP code":["con el código HTTP"],"Show advanced options":["Mostrar opciones avanzadas"],"Matched Target":["Objetivo coincidente"],"Unmatched Target":["Objetivo no coincidente"],"Saving...":["Guardando…"],"View notice":["Ver aviso"],"Invalid source URL":["URL de origen no válida"],"Invalid redirect action":["Acción de redirección no válida"],"Invalid redirect matcher":["Coincidencia de redirección no válida"],"Unable to add new redirect":["No ha sido posible añadir la nueva redirección"],"Something went wrong 🙁":["Algo fue mal 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "],"Log entries (%d max)":["Entradas del registro (máximo %d)"],"Search by IP":["Buscar por IP"],"Select bulk action":["Elegir acción en lote"],"Bulk Actions":["Acciones en lote"],"Apply":["Aplicar"],"First page":["Primera página"],"Prev page":["Página anterior"],"Current Page":["Página actual"],"of %(page)s":["de %(page)s"],"Next page":["Página siguiente"],"Last page":["Última página"],"%s item":["%s elemento","%s elementos"],"Select All":["Elegir todos"],"Sorry, something went wrong loading the data - please try again":["Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"],"No results":["No hay resultados"],"Delete the logs - are you sure?":["Borrar los registros - ¿estás seguro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."],"Yes! Delete the logs":["¡Sí! Borra los registros"],"No! Don't delete the logs":["¡No! No borres los registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."],"Newsletter":["Boletín"],"Want to keep up to date with changes to Redirection?":["¿Quieres estar al día de los cambios en Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."],"Your email address:":["Tu dirección de correo electrónico:"],"You've supported this plugin - thank you!":["Ya has apoyado a este plugin - ¡gracias!"],"You get useful software and I get to carry on making it better.":["Tienes un software útil y yo seguiré haciéndolo mejor."],"Forever":["Siempre"],"Delete the plugin - are you sure?":["Borrar el plugin - ¿estás seguro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."],"Yes! Delete the plugin":["¡Sí! Borrar el plugin"],"No! Don't delete the plugin":["¡No! No borrar el plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "],"Redirection Support":["Soporte de Redirection"],"Support":["Soporte"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Borrar Redirection"],"Upload":["Subir"],"Import":["Importar"],"Update":["Actualizar"],"Auto-generate URL":["Auto generar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registros 404"],"(time to keep logs for)":["(tiempo que se mantendrán los registros)"],"Redirect Logs":["Registros de redirecciones"],"I'm a nice person and I have helped support the author of this plugin":["Soy una buena persona y he apoyado al autor de este plugin"],"Plugin Support":["Soporte del plugin"],"Options":["Opciones"],"Two months":["Dos meses"],"A month":["Un mes"],"A week":["Una semana"],"A day":["Un dia"],"No logs":["No hay logs"],"Delete All":["Borrar todo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utiliza grupos para organizar tus redirecciones. Los grupos se asignan a un módulo, lo cual afecta a cómo se realizan las redirecciones en ese grupo. Si no estás seguro entonces utiliza el módulo WordPress."],"Add Group":["Añadir grupo"],"Search":["Buscar"],"Groups":["Grupos"],"Save":["Guardar"],"Group":["Grupo"],"Match":["Coincidencia"],"Add new redirection":["Añadir nueva redirección"],"Cancel":["Cancelar"],"Download":["Descargar"],"Redirection":["Redirection"],"Settings":["Ajustes"],"Do nothing":["No hacer nada"],"Error (404)":["Error (404)"],"Pass-through":["Pasar directo"],"Redirect to random post":["Redirigir a entrada aleatoria"],"Redirect to URL":["Redirigir a URL"],"Invalid group when creating redirect":["Grupo no válido a la hora de crear la redirección"],"IP":["IP"],"Source URL":["URL origen"],"Date":["Fecha"],"Add Redirect":["Añadir redirección"],"All modules":["Todos los módulos"],"View Redirects":["Ver redirecciones"],"Module":["Módulo"],"Redirects":["Redirecciones"],"Name":["Nombre"],"Filter":["Filtro"],"Reset hits":["Restablecer aciertos"],"Enable":["Habilitar"],"Disable":["Desactivar"],"Delete":["Eliminar"],"Edit":["Editar"],"Last Access":["Último acceso"],"Hits":["Hits"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Entradas modificadas"],"Redirections":["Redirecciones"],"User Agent":["Agente usuario HTTP"],"URL and user agent":["URL y cliente de usuario (user agent)"],"Target URL":["URL destino"],"URL only":["Sólo URL"],"Regex":["Expresión regular"],"Referrer":["Referente"],"URL and referrer":["URL y referente"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["Estado de URL y conexión"]}
1
+ {"":[],"Problem":["Problema"],"Good":["Bueno"],"Check":["Comprobar"],"Check Redirect":["Comprobar la redirección"],"Check redirect for: {{code}}%s{{/code}}":["Comprobar la redirección para: {{code}}%s{{/code}}"],"What does this mean?":["¿Qué significa esto?"],"Not using Redirection":["No uso la redirección"],"Using Redirection":["Usando la redirección"],"Found":["Encontrado"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} a {{code}}%(url)s{{/code}}"],"Expected":["Esperado"],"Error":["Error"],"Enter full URL, including http:// or https://":["Introduce la URL completa, incluyendo http:// o https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["A veces, tu navegador puede almacenar en caché una URL, lo que dificulta saber si está funcionando como se esperaba. Usa esto para verificar una URL para ver cómo está redirigiendo realmente."],"Redirect Tester":["Probar redirecciones"],"Target":["Destino"],"URL is not being redirected with Redirection":["La URL no está siendo redirigida por Redirection"],"URL is being redirected with Redirection":["La URL está siendo redirigida por Redirection"],"Unable to load details":["No se han podido cargar los detalles"],"Enter server URL to match against":["Escribe la URL del servidor que comprobar"],"Server":["Servidor"],"Enter role or capability value":["Escribe el valor de perfil o capacidad"],"Role":["Perfil"],"Match against this browser referrer text":["Comparar contra el texto de referencia de este navegador"],"Match against this browser user agent":["Comparar contra el agente usuario de este navegador"],"The relative URL you want to redirect from":["La URL relativa desde la que quieres redirigir"],"Optional description - describe the purpose of this redirect":["Descripción opcional - describe la finalidad de esta redirección"],"The target URL you want to redirect to if matched":["La URL de destino a la que quieres redirigir si coincide"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"],"Force HTTPS":["Forzar HTTPS"],"GDPR / Privacy information":["Información de RGPD / Provacidad"],"Add New":["Añadir nueva"],"Please logout and login again.":["Cierra sesión y vuelve a entrar, por favor."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection necesita PHP v%1s y estás usando v%2s - Actualiza tu versión de PHP"],"URL and role/capability":["URL y perfil/capacidad"],"URL and server":["URL y servidor"],"Form request":["Petición de formulario"],"Relative /wp-json/":["/wp-json/ relativo"],"Proxy over Admin AJAX":["Proxy sobre Admin AJAX"],"Default /wp-json/":["/wp-json/ por defecto"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Si no puedes hacer que funcione nada entonces Redirection puede tener dificultades para comunicarse con tu servidor. Puedes intentar cambiar manualmente este ajuste:"],"Site and home protocol":["Protocolo de portada y el sitio"],"Site and home URL are inconsistent - please correct from your General settings":["Las URLs del sitio y portada son inconsistentes - por favor, corrígelo en tus ajustes generales"],"Site and home are consistent":["Portada y sitio son consistentes"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Date cuenta de que es tu responsabilidad pasar las cabeceras HTTP a PHP. Por favor, contacta con tu proveedor de alojamiento para obtener soporte sobre esto."],"Accept Language":["Aceptar idioma"],"Header value":["Valor de cabecera"],"Header name":["Nombre de cabecera"],"HTTP Header":["Cabecera HTTP"],"WordPress filter name":["Nombre del filtro WordPress"],"Filter Name":["Nombre del filtro"],"Cookie value":["Valor de la cookie"],"Cookie name":["Nombre de la cookie"],"Cookie":["Cookie"],"Target URL when not matched":["URL de destino cuando no coincide"],"Target URL when matched":["URL de destino cuando coincide"],"clearing your cache.":["vaciando tu caché."],"If you are using a caching system such as Cloudflare then please read this: ":["Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"],"URL and HTTP header":["URL y cabecera HTTP"],"URL and custom filter":["URL y filtro personalizado"],"URL and cookie":["URL y cookie"],"404 deleted":["404 borrado"],"Raw /index.php?rest_route=/":["Sin modificar /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress devolvió un mensaje inesperado. Esto podría deberse a que tu REST API no funciona, o por otro plugin o tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Por favor, echa un vistazo al {{link}}estado del plugin{{/link}}. Podría ser capaz de identificar y resolver \"mágicamente\" el problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection no puede conectar con tu REST API{{/link}}. Si la has desactivado entonces necesitarás activarla."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Un software de seguridad podría estar bloqueando Redirection{{/link}}. Deberías configurarlo para permitir peticiones de la REST API."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Un software de caché{{/link}}, en particular Cloudflare, podría cachear lo que no debería. Prueba a borrar todas tus cachés."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Esto arregla muchos problemas."],"None of the suggestions helped":["Ninguna de las sugerencias ha ayudado"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."],"Unable to load Redirection ☹️":["No se puede cargar Redirection ☹️"],"WordPress REST API is working at %s":["La REST API de WordPress está funcionando en %s"],"WordPress REST API":["REST API de WordPress"],"REST API is not working so routes not checked":["La REST API no está funcionando, así que las rutas no se comprueban"],"Redirection routes are working":["Las rutas de redirección están funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection no aparece en las rutas de tu REST API. ¿La has desactivado con un plugin?"],"Redirection routes":["Rutas de redirección"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["La REST API de tu WordPress está desactivada. Necesitarás activarla para que Redirection continúe funcionando"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Error de agente de usuario"],"Unknown Useragent":["Agente de usuario desconocido"],"Device":["Dispositivo"],"Operating System":["Sistema operativo"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuario"],"Agent":["Agente"],"No IP logging":["Sin registro de IP"],"Full IP logging":["Registro completo de IP"],"Anonymize IP (mask last part)":["Anonimizar IP (enmascarar la última parte)"],"Monitor changes to %(type)s":["Monitorizar cambios de %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(seleccionar el nivel de registro de IP)"],"Geo Info":["Información de geolocalización"],"Agent Info":["Información de agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Procedencia / Agente de usuario"],"Geo IP Error":["Error de geolocalización de IP"],"Something went wrong obtaining this information":["Algo ha ido mal obteniendo esta información"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Esta es una IP de una red privada. Significa que se encuentra dentro de una casa o red de empresa y no se puede mostrar más información."],"No details are known for this address.":["No se conoce ningún detalle para esta dirección."],"Geo IP":["Geolocalización de IP"],"City":["Ciudad"],"Area":["Área"],"Timezone":["Zona horaria"],"Geo Location":["Geolocalización"],"Powered by {{link}}redirect.li{{/link}}":["Funciona gracias a {{link}}redirect.li{{/link}}"],"Trash":["Papelera"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Puedes encontrar la documentación completa sobre el uso de Redirection en el sitio de soporte <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentación completa de Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si quieres enviar información y no quieres que se incluya en un repositorio público, envíala directamente por {{email}}correo electrónico{{/email}} - ¡incluye toda la información que puedas!"],"Never cache":["No cachear nunca"],"An hour":["Una hora"],"Redirect Cache":["Redireccionar caché"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"],"Are you sure you want to import from %s?":["¿Estás seguro de querer importar de %s?"],"Plugin Importers":["Importadores de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."],"Redirection not installed properly":["Redirection no está instalado correctamente"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"],"Default WordPress \"old slugs\"":["\"Viejos slugs\" por defecto de WordPress"],"Create associated redirect (added to end of URL)":["Crea una redirección asociada (añadida al final de la URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> no está definido. Esto normalmente significa que otro plugin está impidiendo que cargue Redirection. Por favor, desactiva todos los plugins e inténtalo de nuevo."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si no funciona el botón mágico entonces deberías leer el error y ver si puedes arreglarlo manualmente, o sino seguir la sección 'Necesito ayuda' de abajo."],"⚡️ Magic fix ⚡️":["⚡️ Arreglo mágico ⚡️"],"Plugin Status":["Estado del plugin"],"Custom":["Personalizado"],"Mobile":["Móvil"],"Feed Readers":["Lectores de feeds"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Monitorizar el cambio de URL"],"Save changes to this group":["Guardar los cambios de este grupo"],"For example \"/amp\"":["Por ejemplo \"/amp\""],"URL Monitor":["Supervisar URL"],"Delete 404s":["Borrar 404s"],"Delete all logs for this 404":["Borra todos los registros de este 404"],"Delete all from IP %s":["Borra todo de la IP %s"],"Delete all matching \"%s\"":["Borra todo lo que tenga \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["También comprueba si tu navegador puede cargar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si estás usando un plugin o servicio (CloudFlare, OVH, etc.) de caché de página entonces también puedes probar a vaciar la caché."],"Unable to load Redirection":["No ha sido posible cargar Redirection"],"Unable to create group":["No fue posible crear el grupo"],"Failed to fix database tables":["Fallo al reparar las tablas de la base de datos"],"Post monitor group is valid":["El grupo de monitoreo de entradas es válido"],"Post monitor group is invalid":["El grupo de monitoreo de entradas no es válido"],"Post monitor group":["Grupo de monitoreo de entradas"],"All redirects have a valid group":["Todas las redirecciones tienen un grupo válido"],"Redirects with invalid groups detected":["Detectadas redirecciones con grupos no válidos"],"Valid redirect group":["Grupo de redirección válido"],"Valid groups detected":["Detectados grupos válidos"],"No valid groups, so you will not be able to create any redirects":["No hay grupos válidos, así que no podrás crear redirecciones"],"Valid groups":["Grupos válidos"],"Database tables":["Tablas de la base de datos"],"The following tables are missing:":["Faltan las siguientes tablas:"],"All tables present":["Están presentes todas las tablas"],"Cached Redirection detected":["Detectada caché de Redirection"],"Please clear your browser cache and reload this page.":["Por favor, vacía la caché de tu navegador y recarga esta página"],"The data on this page has expired, please reload.":["Los datos de esta página han caducado, por favor, recarga."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress no ha devuelto una respuesta. Esto podría significar que ocurrió un error o que la petición se bloqueó. Por favor, revisa el error_log de tu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Tu servidor devolvió un error de 403 Prohibido, que podría indicar que se bloqueó la petición. ¿Estás usando un cortafuegos o un plugin de seguridad?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si crees que es un fallo de Redirection entonces envía un aviso de problema."],"This may be caused by another plugin - look at your browser's error console for more details.":["Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."],"Loading, please wait...":["Cargando, por favor espera…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}formato de archivo CSV{{/strong}}: {{code}}URL de origen, URL de destino{{/code}} - y puede añadirse opcionalmente {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 para no, 1 para sí)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si eso no ayuda abre la consola de errores de tu navegador y crea un {{link}}aviso de problema nuevo{{/link}} con los detalles."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."],"Create Issue":["Crear aviso de problema"],"Email":["Correo electrónico"],"Important details":["Detalles importantes"],"Need help?":["¿Necesitas ayuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Por favor, date cuenta de que todo soporte se ofrece sobre la base del tiempo disponible y no está garantizado. No ofrezco soporte de pago."],"Pos":["Pos"],"410 - Gone":["410 - Desaparecido"],"Position":["Posición"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Se usa para generar automáticamente una URL si no se ofrece una URL. Utiliza las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para insertar un ID único insertado"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."],"Import to group":["Importar a un grupo"],"Import a CSV, .htaccess, or JSON file.":["Importa un archivo CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":["Haz clic en 'Añadir archivo' o arrastra y suelta aquí."],"Add File":["Añadir archivo"],"File selected":["Archivo seleccionado"],"Importing":["Importando"],"Finished importing":["Importación finalizada"],"Total redirects imported:":["Total de redirecciones importadas:"],"Double-check the file is the correct format!":["¡Vuelve a comprobar que el archivo esté en el formato correcto!"],"OK":["Aceptar"],"Close":["Cerrar"],"All imports will be appended to the current database.":["Todas las importaciones se añadirán a la base de datos actual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."],"Everything":["Todo"],"WordPress redirects":["Redirecciones WordPress"],"Apache redirects":["Redirecciones Apache"],"Nginx redirects":["Redirecciones Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess de Apache"],"Nginx rewrite rules":["Reglas de rewrite de Nginx"],"Redirection JSON":["JSON de Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Los archivos de registro se pueden exportar desde las páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Errores 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"],"I'd like to support some more.":["Me gustaría dar algo más de apoyo."],"Support 💰":["Apoyar 💰"],"Redirection saved":["Redirección guardada"],"Log deleted":["Registro borrado"],"Settings saved":["Ajustes guardados"],"Group saved":["Grupo guardado"],"Are you sure you want to delete this item?":["¿Estás seguro de querer borrar este elemento?","¿Estás seguro de querer borrar estos elementos?"],"pass":["pass"],"All groups":["Todos los grupos"],"301 - Moved Permanently":["301 - Movido permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirección temporal"],"308 - Permanent Redirect":["308 - Redirección permanente"],"401 - Unauthorized":["401 - No autorizado"],"404 - Not Found":["404 - No encontrado"],"Title":["Título"],"When matched":["Cuando coincide"],"with HTTP code":["con el código HTTP"],"Show advanced options":["Mostrar opciones avanzadas"],"Matched Target":["Objetivo coincidente"],"Unmatched Target":["Objetivo no coincidente"],"Saving...":["Guardando…"],"View notice":["Ver aviso"],"Invalid source URL":["URL de origen no válida"],"Invalid redirect action":["Acción de redirección no válida"],"Invalid redirect matcher":["Coincidencia de redirección no válida"],"Unable to add new redirect":["No ha sido posible añadir la nueva redirección"],"Something went wrong 🙁":["Algo fue mal 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "],"Log entries (%d max)":["Entradas del registro (máximo %d)"],"Search by IP":["Buscar por IP"],"Select bulk action":["Elegir acción en lote"],"Bulk Actions":["Acciones en lote"],"Apply":["Aplicar"],"First page":["Primera página"],"Prev page":["Página anterior"],"Current Page":["Página actual"],"of %(page)s":["de %(page)s"],"Next page":["Página siguiente"],"Last page":["Última página"],"%s item":["%s elemento","%s elementos"],"Select All":["Elegir todos"],"Sorry, something went wrong loading the data - please try again":["Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"],"No results":["No hay resultados"],"Delete the logs - are you sure?":["Borrar los registros - ¿estás seguro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."],"Yes! Delete the logs":["¡Sí! Borra los registros"],"No! Don't delete the logs":["¡No! No borres los registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."],"Newsletter":["Boletín"],"Want to keep up to date with changes to Redirection?":["¿Quieres estar al día de los cambios en Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."],"Your email address:":["Tu dirección de correo electrónico:"],"You've supported this plugin - thank you!":["Ya has apoyado a este plugin - ¡gracias!"],"You get useful software and I get to carry on making it better.":["Tienes un software útil y yo seguiré haciéndolo mejor."],"Forever":["Siempre"],"Delete the plugin - are you sure?":["Borrar el plugin - ¿estás seguro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."],"Yes! Delete the plugin":["¡Sí! Borrar el plugin"],"No! Don't delete the plugin":["¡No! No borrar el plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "],"Redirection Support":["Soporte de Redirection"],"Support":["Soporte"],"404s":["404s"],"Log":["Registro"],"Delete Redirection":["Borrar Redirection"],"Upload":["Subir"],"Import":["Importar"],"Update":["Actualizar"],"Auto-generate URL":["Auto generar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registros 404"],"(time to keep logs for)":["(tiempo que se mantendrán los registros)"],"Redirect Logs":["Registros de redirecciones"],"I'm a nice person and I have helped support the author of this plugin":["Soy una buena persona y he apoyado al autor de este plugin"],"Plugin Support":["Soporte del plugin"],"Options":["Opciones"],"Two months":["Dos meses"],"A month":["Un mes"],"A week":["Una semana"],"A day":["Un dia"],"No logs":["No hay logs"],"Delete All":["Borrar todo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utiliza grupos para organizar tus redirecciones. Los grupos se asignan a un módulo, lo cual afecta a cómo se realizan las redirecciones en ese grupo. Si no estás seguro entonces utiliza el módulo WordPress."],"Add Group":["Añadir grupo"],"Search":["Buscar"],"Groups":["Grupos"],"Save":["Guardar"],"Group":["Grupo"],"Match":["Coincidencia"],"Add new redirection":["Añadir nueva redirección"],"Cancel":["Cancelar"],"Download":["Descargar"],"Redirection":["Redirection"],"Settings":["Ajustes"],"Do nothing":["No hacer nada"],"Error (404)":["Error (404)"],"Pass-through":["Pasar directo"],"Redirect to random post":["Redirigir a entrada aleatoria"],"Redirect to URL":["Redirigir a URL"],"Invalid group when creating redirect":["Grupo no válido a la hora de crear la redirección"],"IP":["IP"],"Source URL":["URL de origen"],"Date":["Fecha"],"Add Redirect":["Añadir redirección"],"All modules":["Todos los módulos"],"View Redirects":["Ver redirecciones"],"Module":["Módulo"],"Redirects":["Redirecciones"],"Name":["Nombre"],"Filter":["Filtro"],"Reset hits":["Restablecer aciertos"],"Enable":["Activar"],"Disable":["Desactivar"],"Delete":["Eliminar"],"Edit":["Editar"],"Last Access":["Último acceso"],"Hits":["Hits"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Entradas modificadas"],"Redirections":["Redirecciones"],"User Agent":["Agente usuario HTTP"],"URL and user agent":["URL y cliente de usuario (user agent)"],"Target URL":["URL de destino"],"URL only":["Sólo URL"],"Regex":["Expresión regular"],"Referrer":["Referente"],"URL and referrer":["URL y referente"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["Estado de URL y conexión"]}
locale/json/redirection-fr_FR.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":["Saisir l’URL complète, avec http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Parfois, votre navigateur peut mettre en cache une URL, ce qui rend difficile de savoir si cela fonctionne comme prévu. Utiliser ceci pour vérifier qu’une URL est réellement redirigée."],"Redirect Tester":["Testeur de redirection"],"Target":["Cible"],"URL is not being redirected with Redirection":["L’URL n’est pas redirigée avec Redirection."],"URL is being redirected with Redirection":["L’URL est redirigée avec Redirection."],"Unable to load details":["Impossible de charger les détails"],"Enter server URL to match against":["Saisissez l’URL du serveur à comparer avec"],"Server":["Serveur"],"Enter role or capability value":["Saisissez la valeur de rôle ou de capacité"],"Role":["Rôle"],"Match against this browser referrer text":["Correspondance avec ce texte de référence du navigateur"],"Match against this browser user agent":["Correspondance avec cet agent utilisateur de navigateur"],"The relative URL you want to redirect from":["L’URL relative que vous voulez rediriger"],"Optional description - describe the purpose of this redirect":["Description facultative - décrire le but de cette redirection"],"The target URL you want to redirect to if matched":["L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."],"(beta)":["(bêta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."],"Force HTTPS":["Forcer HTTPS"],"GDPR / Privacy information":["RGPD/information de confidentialité"],"Add New":["Ajouter une nouvelle"],"Please logout and login again.":["Veuillez vous déconnecter puis vous connecter à nouveau."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection nécessite PHP v%1s, vous utilisez v%2s - veuillez mettre à jour PHP"],"URL and role/capability":["URL et rôle/capacité"],"URL and server":["URL et serveur"],"Form request":["Formulaire de demande"],"Relative /wp-json/":["/wp-json/ relatif"],"Proxy over Admin AJAX":["Proxy sur Admin AJAX"],"Default /wp-json/":["/wp-json/ par défaut"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Si vous ne pouvez pas faire fonctionne quoi que ce soit alors l’extension Redirection doit rencontrer des difficultés à communiquer avec votre serveur. Vous pouvez essayer de modifier ces réglages manuellement :"],"Site and home protocol":["Protocole du site et de l’accueil"],"Site and home URL are inconsistent - please correct from your General settings":["Les URL du site et de l’accueil sont incohérentes. Veuillez les corriger dans vos réglages généraux."],"Site and home are consistent":["Le site et l’accueil sont cohérents"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Veuillez noter qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour vous aider."],"Accept Language":["Accepter la langue"],"Header value":["Valeur de l’en-tête"],"Header name":["Nom de l’en-tête"],"HTTP Header":["En-tête HTTP"],"WordPress filter name":["Nom de filtre WordPress"],"Filter Name":["Nom du filtre"],"Cookie value":["Valeur du cookie"],"Cookie name":["Nom du cookie"],"Cookie":["Cookie"],"Target URL when not matched":["URL cible lorsque cela ne correspond pas"],"Target URL when matched":["URL cible lorsque cela correspond"],"clearing your cache.":["vider votre cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "],"URL and HTTP header":["URL et en-tête HTTP"],"URL and custom filter":["URL et filtre personnalisé"],"URL and cookie":["URL et cookie"],"404 deleted":["404 supprimée"],"Raw /index.php?rest_route=/":["/index.php?rest_route=/ brut"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Jetez un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}L’extension Redirection ne peut pas communiquer avec l’API REST{{/link}}. Si vous l’avez désactivée alors vous devriez l’activer à nouveau."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."],"None of the suggestions helped":["Aucune de ces suggestions n’a aidé"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."],"Unable to load Redirection ☹️":["Impossible de charger Redirection ☹️"],"WordPress REST API is working at %s":["L’API REST WordPress fonctionne à %s"],"WordPress REST API":["API REST WordPress"],"REST API is not working so routes not checked":["L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."],"Redirection routes are working":["Les redirections fonctionnent"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"],"Redirection routes":["Routes de redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erreur de l’agent utilisateur"],"Unknown Useragent":["Agent utilisateur inconnu"],"Device":["Appareil"],"Operating System":["Système d’exploitation"],"Browser":["Navigateur"],"Engine":["Moteur"],"Useragent":["Agent utilisateur"],"Agent":["Agent"],"No IP logging":["Aucune IP journalisée"],"Full IP logging":["Connexion avec IP complète"],"Anonymize IP (mask last part)":["Anonymiser l’IP (masquer la dernière partie)"],"Monitor changes to %(type)s":["Monitorer les modifications de %(type)s"],"IP Logging":["Journalisation d’IP"],"(select IP logging level)":["(sélectionnez le niveau de journalisation des IP)"],"Geo Info":["Informations géographiques"],"Agent Info":["Informations sur l’agent"],"Filter by IP":["Filtrer par IP"],"Referrer / User Agent":["Référent / Agent utilisateur"],"Geo IP Error":["Erreur de l’IP géographique"],"Something went wrong obtaining this information":["Un problème est survenu lors de l’obtention de cette information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Cette IP provient d’un réseau privé. Elle fait partie du réseau d’un domicile ou d’une entreprise. Aucune autre information ne peut être affichée."],"No details are known for this address.":["Aucun détail n’est connu pour cette adresse."],"Geo IP":["IP géographique"],"City":["Ville"],"Area":["Zone"],"Timezone":["Fuseau horaire"],"Geo Location":["Emplacement géographique"],"Powered by {{link}}redirect.li{{/link}}":["Propulsé par {{link}}redirect.li{{/link}}"],"Trash":["Corbeille"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Vous pouvez trouver une documentation complète à propos de l’utilisation de Redirection sur le site de support <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"],"Never cache":["Jamais de cache"],"An hour":["Une heure"],"Redirect Cache":["Cache de redirection"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"],"Are you sure you want to import from %s?":["Confirmez-vous l’importation depuis %s ?"],"Plugin Importers":["Importeurs d’extensions"],"The following redirect plugins were detected on your site and can be imported from.":["Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."],"total = ":["total = "],"Import from %s":["Importer depuis %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."],"Redirection not installed properly":["Redirection n’est pas correctement installé"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."],"Default WordPress \"old slugs\"":["« Anciens slugs » de WordPress par défaut"],"Create associated redirect (added to end of URL)":["Créer une redirection associée (ajoutée à la fin de l’URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."],"⚡️ Magic fix ⚡️":["⚡️ Correction magique ⚡️"],"Plugin Status":["Statut de l’extension"],"Custom":["Personnalisé"],"Mobile":["Mobile"],"Feed Readers":["Lecteurs de flux"],"Libraries":["Librairies"],"URL Monitor Changes":["Surveiller la modification des URL"],"Save changes to this group":["Enregistrer les modifications apportées à ce groupe"],"For example \"/amp\"":["Par exemple « /amp »"],"URL Monitor":["URL à surveiller"],"Delete 404s":["Supprimer les pages 404"],"Delete all logs for this 404":["Supprimer tous les journaux pour cette page 404"],"Delete all from IP %s":["Tout supprimer depuis l’IP %s"],"Delete all matching \"%s\"":["Supprimer toutes les correspondances « %s »"],"Your server has rejected the request for being too big. You will need to change it to continue.":["Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."],"Also check if your browser is able to load <code>redirection.js</code>:":["Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."],"Unable to load Redirection":["Impossible de charger Redirection"],"Unable to create group":["Impossible de créer un groupe"],"Failed to fix database tables":["La réparation des tables de la base de données a échoué."],"Post monitor group is valid":["Le groupe de surveillance d’articles est valide"],"Post monitor group is invalid":["Le groupe de surveillance d’articles est non valide"],"Post monitor group":["Groupe de surveillance d’article"],"All redirects have a valid group":["Toutes les redirections ont un groupe valide"],"Redirects with invalid groups detected":["Redirections avec des groupes non valides détectées"],"Valid redirect group":["Groupe de redirection valide"],"Valid groups detected":["Groupes valides détectés"],"No valid groups, so you will not be able to create any redirects":["Aucun groupe valide, vous ne pourrez pas créer de redirections."],"Valid groups":["Groupes valides"],"Database tables":["Tables de la base de données"],"The following tables are missing:":["Les tables suivantes sont manquantes :"],"All tables present":["Toutes les tables présentes"],"Cached Redirection detected":["Redirection en cache détectée"],"Please clear your browser cache and reload this page.":["Veuillez vider le cache de votre navigateur et recharger cette page."],"The data on this page has expired, please reload.":["Les données de cette page ont expiré, veuillez la recharger."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si vous pensez que Redirection est en faute alors créez un rapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."],"Loading, please wait...":["Veuillez patienter pendant le chargement…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."],"Create Issue":["Créer un rapport"],"Email":["E-mail"],"Important details":["Informations importantes"],"Need help?":["Besoin d’aide ?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."],"Pos":["Pos"],"410 - Gone":["410 – Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."],"Apache Module":["Module Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."],"Import to group":["Importer dans le groupe"],"Import a CSV, .htaccess, or JSON file.":["Importer un fichier CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Cliquer sur « ajouter un fichier » ou glisser-déposer ici."],"Add File":["Ajouter un fichier"],"File selected":["Fichier sélectionné"],"Importing":["Import"],"Finished importing":["Import terminé"],"Total redirects imported:":["Total des redirections importées :"],"Double-check the file is the correct format!":["Vérifiez à deux fois si le fichier et dans le bon format !"],"OK":["OK"],"Close":["Fermer"],"All imports will be appended to the current database.":["Tous les imports seront ajoutés à la base de données actuelle."],"Export":["Exporter"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."],"Everything":["Tout"],"WordPress redirects":["Redirections WordPress"],"Apache redirects":["Redirections Apache"],"Nginx redirects":["Redirections Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":["Règles de réécriture Nginx"],"Redirection JSON":["Redirection JSON"],"View":["Visualiser"],"Log files can be exported from the log pages.":["Les fichier de journal peuvent être exportés depuis les pages du journal."],"Import/Export":["Import/export"],"Logs":["Journaux"],"404 errors":["Erreurs 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."],"I'd like to support some more.":["Je voudrais soutenir un peu plus."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection sauvegardée"],"Log deleted":["Journal supprimé"],"Settings saved":["Réglages sauvegardés"],"Group saved":["Groupe sauvegardé"],"Are you sure you want to delete this item?":["Êtes-vous sûr•e de vouloir supprimer cet élément ?","Êtes-vous sûr•e de vouloir supprimer ces éléments ?"],"pass":["Passer"],"All groups":["Tous les groupes"],"301 - Moved Permanently":["301 - déplacé de façon permanente"],"302 - Found":["302 – trouvé"],"307 - Temporary Redirect":["307 – Redirigé temporairement"],"308 - Permanent Redirect":["308 – Redirigé de façon permanente"],"401 - Unauthorized":["401 – Non-autorisé"],"404 - Not Found":["404 – Introuvable"],"Title":["Titre"],"When matched":["Quand cela correspond"],"with HTTP code":["avec code HTTP"],"Show advanced options":["Afficher les options avancées"],"Matched Target":["Cible correspondant"],"Unmatched Target":["Cible ne correspondant pas"],"Saving...":["Sauvegarde…"],"View notice":["Voir la notification"],"Invalid source URL":["URL source non-valide"],"Invalid redirect action":["Action de redirection non-valide"],"Invalid redirect matcher":["Correspondance de redirection non-valide"],"Unable to add new redirect":["Incapable de créer une nouvelle redirection"],"Something went wrong 🙁":["Quelque chose s’est mal passé 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"],"Log entries (%d max)":["Entrées du journal (100 max.)"],"Search by IP":["Rechercher par IP"],"Select bulk action":["Sélectionner l’action groupée"],"Bulk Actions":["Actions groupées"],"Apply":["Appliquer"],"First page":["Première page"],"Prev page":["Page précédente"],"Current Page":["Page courante"],"of %(page)s":["de %(page)s"],"Next page":["Page suivante"],"Last page":["Dernière page"],"%s item":["%s élément","%s éléments"],"Select All":["Tout sélectionner"],"Sorry, something went wrong loading the data - please try again":["Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."],"No results":["Aucun résultat"],"Delete the logs - are you sure?":["Confirmez-vous la suppression des journaux ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."],"Yes! Delete the logs":["Oui ! Supprimer les journaux"],"No! Don't delete the logs":["Non ! Ne pas supprimer les journaux"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Vous souhaitez être au courant des modifications apportées à Redirection ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."],"Your email address:":["Votre adresse de messagerie :"],"You've supported this plugin - thank you!":["Vous avez apporté votre soutien à l’extension. Merci !"],"You get useful software and I get to carry on making it better.":["Vous avez une extension utile, et je peux continuer à l’améliorer."],"Forever":["Indéfiniment"],"Delete the plugin - are you sure?":["Confirmez-vous vouloir supprimer cette extension ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."],"Yes! Delete the plugin":["Oui ! Supprimer l’extension"],"No! Don't delete the plugin":["Non ! Ne pas supprimer l’extension"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gérez toutes vos redirections 301 et surveillez les erreurs 404."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."],"Redirection Support":["Support de Redirection"],"Support":["Support"],"404s":["404"],"Log":["Journaux"],"Delete Redirection":["Supprimer la redirection"],"Upload":["Mettre en ligne"],"Import":["Importer"],"Update":["Mettre à jour"],"Auto-generate URL":["URL auto-générée "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."],"RSS Token":["Jeton RSS "],"404 Logs":["Journaux des 404 "],"(time to keep logs for)":["(durée de conservation des journaux)"],"Redirect Logs":["Journaux des redirections "],"I'm a nice person and I have helped support the author of this plugin":["Je suis un type bien et j’ai aidé l’auteur de cette extension."],"Plugin Support":["Support de l’extension "],"Options":["Options"],"Two months":["Deux mois"],"A month":["Un mois"],"A week":["Une semaine"],"A day":["Un jour"],"No logs":["Aucun journal"],"Delete All":["Tout supprimer"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilisez les groupes pour organiser vos redirections. Les groupes sont assignés à un module qui affecte la manière dont les redirections dans ce groupe fonctionnent. Si vous n’êtes pas sûr/e, tenez-vous en au module de WordPress."],"Add Group":["Ajouter un groupe"],"Search":["Rechercher"],"Groups":["Groupes"],"Save":["Enregistrer"],"Group":["Groupe"],"Match":["Correspondant"],"Add new redirection":["Ajouter une nouvelle redirection"],"Cancel":["Annuler"],"Download":["Télécharger"],"Redirection":["Redirection"],"Settings":["Réglages"],"Do nothing":["Ne rien faire"],"Error (404)":["Erreur (404)"],"Pass-through":["Outrepasser"],"Redirect to random post":["Rediriger vers un article aléatoire"],"Redirect to URL":["Redirection vers une URL"],"Invalid group when creating redirect":["Groupe non valide à la création d’une redirection"],"IP":["IP"],"Source URL":["URL source"],"Date":["Date"],"Add Redirect":["Ajouter une redirection"],"All modules":["Tous les modules"],"View Redirects":["Voir les redirections"],"Module":["Module"],"Redirects":["Redirections"],"Name":["Nom"],"Filter":["Filtre"],"Reset hits":["Réinitialiser les vues"],"Enable":["Activer"],"Disable":["Désactiver"],"Delete":["Supprimer"],"Edit":["Modifier"],"Last Access":["Dernier accès"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Articles modifiés"],"Redirections":["Redirections"],"User Agent":["Agent utilisateur"],"URL and user agent":["URL et agent utilisateur"],"Target URL":["URL cible"],"URL only":["URL uniquement"],"Regex":["Regex"],"Referrer":["Référant"],"URL and referrer":["URL et référent"],"Logged Out":["Déconnecté"],"Logged In":["Connecté"],"URL and login status":["URL et état de connexion"]}
1
+ {"":[],"Problem":["Problème"],"Good":["Bon"],"Check":["Vérifier"],"Check Redirect":["Vérifier la redirection"],"Check redirect for: {{code}}%s{{/code}}":["Vérifier la redirection pour : {{code}}%s{{/code}}"],"What does this mean?":["Qu’est-ce que cela veut dire ?"],"Not using Redirection":["N’utilisant pas Redirection"],"Using Redirection":["Utilisant Redirection"],"Found":["Trouvé"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(code)d{{/code}} vers {{code}}%(url)s{{/code}}"],"Expected":["Attendu"],"Error":["Erreur"],"Enter full URL, including http:// or https://":["Saisissez l’URL complète, avec http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Parfois votre navigateur peut mettre en cache une URL, ce qui rend les diagnostics difficiles. Utilisez cet outil pour vérifier qu’une URL est réellement redirigée."],"Redirect Tester":["Testeur de redirection"],"Target":["Cible"],"URL is not being redirected with Redirection":["L’URL n’est pas redirigée avec Redirection."],"URL is being redirected with Redirection":["L’URL est redirigée avec Redirection."],"Unable to load details":["Impossible de charger les détails"],"Enter server URL to match against":["Saisissez l’URL du serveur à comparer avec"],"Server":["Serveur"],"Enter role or capability value":["Saisissez la valeur de rôle ou de capacité"],"Role":["Rôle"],"Match against this browser referrer text":["Correspondance avec ce texte de référence du navigateur"],"Match against this browser user agent":["Correspondance avec cet agent utilisateur de navigateur"],"The relative URL you want to redirect from":["L’URL relative que vous voulez rediriger"],"Optional description - describe the purpose of this redirect":["Description facultative - décrire le but de cette redirection"],"The target URL you want to redirect to if matched":["L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."],"(beta)":["(bêta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."],"Force HTTPS":["Forcer HTTPS"],"GDPR / Privacy information":["RGPD/information de confidentialité"],"Add New":["Ajouter une nouvelle"],"Please logout and login again.":["Veuillez vous déconnecter puis vous connecter à nouveau."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection nécessite PHP v%1s, vous utilisez v%2s - veuillez mettre à jour PHP"],"URL and role/capability":["URL et rôle/capacité"],"URL and server":["URL et serveur"],"Form request":["Formulaire de demande"],"Relative /wp-json/":["/wp-json/ relatif"],"Proxy over Admin AJAX":["Proxy sur Admin AJAX"],"Default /wp-json/":["/wp-json/ par défaut"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Si vous ne pouvez pas faire fonctionne quoi que ce soit alors l’extension Redirection doit rencontrer des difficultés à communiquer avec votre serveur. Vous pouvez essayer de modifier ces réglages manuellement :"],"Site and home protocol":["Protocole du site et de l’accueil"],"Site and home URL are inconsistent - please correct from your General settings":["Les URL du site et de l’accueil sont incohérentes. Veuillez les corriger dans vos réglages généraux."],"Site and home are consistent":["Le site et l’accueil sont cohérents"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Sachez qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour obtenir de l’aide."],"Accept Language":["Accepter la langue"],"Header value":["Valeur de l’en-tête"],"Header name":["Nom de l’en-tête"],"HTTP Header":["En-tête HTTP"],"WordPress filter name":["Nom de filtre WordPress"],"Filter Name":["Nom du filtre"],"Cookie value":["Valeur du cookie"],"Cookie name":["Nom du cookie"],"Cookie":["Cookie"],"Target URL when not matched":["URL cible lorsque cela ne correspond pas"],"Target URL when matched":["URL cible lorsque cela correspond"],"clearing your cache.":["vider votre cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "],"URL and HTTP header":["URL et en-tête HTTP"],"URL and custom filter":["URL et filtre personnalisé"],"URL and cookie":["URL et cookie"],"404 deleted":["404 supprimée"],"Raw /index.php?rest_route=/":["/index.php?rest_route=/ brut"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Jetez un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}L’extension Redirection ne peut pas communiquer avec l’API REST{{/link}}. Si vous l’avez désactivée alors vous devriez l’activer à nouveau."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."],"None of the suggestions helped":["Aucune de ces suggestions n’a aidé"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."],"Unable to load Redirection ☹️":["Impossible de charger Redirection ☹️"],"WordPress REST API is working at %s":["L’API REST WordPress fonctionne à %s"],"WordPress REST API":["API REST WordPress"],"REST API is not working so routes not checked":["L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."],"Redirection routes are working":["Les redirections fonctionnent"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"],"Redirection routes":["Routes de redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erreur de l’agent utilisateur"],"Unknown Useragent":["Agent utilisateur inconnu"],"Device":["Appareil"],"Operating System":["Système d’exploitation"],"Browser":["Navigateur"],"Engine":["Moteur"],"Useragent":["Agent utilisateur"],"Agent":["Agent"],"No IP logging":["Aucune IP journalisée"],"Full IP logging":["Connexion avec IP complète"],"Anonymize IP (mask last part)":["Anonymiser l’IP (masquer la dernière partie)"],"Monitor changes to %(type)s":["Monitorer les modifications de %(type)s"],"IP Logging":["Journalisation d’IP"],"(select IP logging level)":["(sélectionnez le niveau de journalisation des IP)"],"Geo Info":["Informations géographiques"],"Agent Info":["Informations sur l’agent"],"Filter by IP":["Filtrer par IP"],"Referrer / User Agent":["Référent / Agent utilisateur"],"Geo IP Error":["Erreur de l’IP géographique"],"Something went wrong obtaining this information":["Un problème est survenu lors de l’obtention de cette information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Cette IP provient d’un réseau privé. Elle fait partie du réseau d’un domicile ou d’une entreprise. Aucune autre information ne peut être affichée."],"No details are known for this address.":["Aucun détail n’est connu pour cette adresse."],"Geo IP":["IP géographique"],"City":["Ville"],"Area":["Zone"],"Timezone":["Fuseau horaire"],"Geo Location":["Emplacement géographique"],"Powered by {{link}}redirect.li{{/link}}":["Propulsé par {{link}}redirect.li{{/link}}"],"Trash":["Corbeille"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Vous pouvez trouver une documentation complète à propos de l’utilisation de Redirection sur le site de support <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"],"Never cache":["Jamais de cache"],"An hour":["Une heure"],"Redirect Cache":["Cache de redirection"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"],"Are you sure you want to import from %s?":["Confirmez-vous l’importation depuis %s ?"],"Plugin Importers":["Importeurs d’extensions"],"The following redirect plugins were detected on your site and can be imported from.":["Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."],"total = ":["total = "],"Import from %s":["Importer depuis %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."],"Redirection not installed properly":["Redirection n’est pas correctement installé"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."],"Default WordPress \"old slugs\"":["« Anciens slugs » de WordPress par défaut"],"Create associated redirect (added to end of URL)":["Créer une redirection associée (ajoutée à la fin de l’URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."],"⚡️ Magic fix ⚡️":["⚡️ Correction magique ⚡️"],"Plugin Status":["Statut de l’extension"],"Custom":["Personnalisé"],"Mobile":["Mobile"],"Feed Readers":["Lecteurs de flux"],"Libraries":["Librairies"],"URL Monitor Changes":["Surveiller la modification des URL"],"Save changes to this group":["Enregistrer les modifications apportées à ce groupe"],"For example \"/amp\"":["Par exemple « /amp »"],"URL Monitor":["URL à surveiller"],"Delete 404s":["Supprimer les pages 404"],"Delete all logs for this 404":["Supprimer tous les journaux pour cette page 404"],"Delete all from IP %s":["Tout supprimer depuis l’IP %s"],"Delete all matching \"%s\"":["Supprimer toutes les correspondances « %s »"],"Your server has rejected the request for being too big. You will need to change it to continue.":["Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."],"Also check if your browser is able to load <code>redirection.js</code>:":["Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."],"Unable to load Redirection":["Impossible de charger Redirection"],"Unable to create group":["Impossible de créer un groupe"],"Failed to fix database tables":["La réparation des tables de la base de données a échoué."],"Post monitor group is valid":["Le groupe de surveillance d’articles est valide"],"Post monitor group is invalid":["Le groupe de surveillance d’articles est non valide"],"Post monitor group":["Groupe de surveillance d’article"],"All redirects have a valid group":["Toutes les redirections ont un groupe valide"],"Redirects with invalid groups detected":["Redirections avec des groupes non valides détectées"],"Valid redirect group":["Groupe de redirection valide"],"Valid groups detected":["Groupes valides détectés"],"No valid groups, so you will not be able to create any redirects":["Aucun groupe valide, vous ne pourrez pas créer de redirections."],"Valid groups":["Groupes valides"],"Database tables":["Tables de la base de données"],"The following tables are missing:":["Les tables suivantes sont manquantes :"],"All tables present":["Toutes les tables présentes"],"Cached Redirection detected":["Redirection en cache détectée"],"Please clear your browser cache and reload this page.":["Veuillez vider le cache de votre navigateur et recharger cette page."],"The data on this page has expired, please reload.":["Les données de cette page ont expiré, veuillez la recharger."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si vous pensez que Redirection est en faute alors créez un rapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."],"Loading, please wait...":["Veuillez patienter pendant le chargement…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."],"Create Issue":["Créer un rapport"],"Email":["E-mail"],"Important details":["Informations importantes"],"Need help?":["Besoin d’aide ?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."],"Pos":["Pos"],"410 - Gone":["410 – Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."],"Apache Module":["Module Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."],"Import to group":["Importer dans le groupe"],"Import a CSV, .htaccess, or JSON file.":["Importer un fichier CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Cliquer sur « ajouter un fichier » ou glisser-déposer ici."],"Add File":["Ajouter un fichier"],"File selected":["Fichier sélectionné"],"Importing":["Import"],"Finished importing":["Import terminé"],"Total redirects imported:":["Total des redirections importées :"],"Double-check the file is the correct format!":["Vérifiez à deux fois si le fichier et dans le bon format !"],"OK":["OK"],"Close":["Fermer"],"All imports will be appended to the current database.":["Tous les imports seront ajoutés à la base de données actuelle."],"Export":["Exporter"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."],"Everything":["Tout"],"WordPress redirects":["Redirections WordPress"],"Apache redirects":["Redirections Apache"],"Nginx redirects":["Redirections Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":["Règles de réécriture Nginx"],"Redirection JSON":["Redirection JSON"],"View":["Visualiser"],"Log files can be exported from the log pages.":["Les fichier de journal peuvent être exportés depuis les pages du journal."],"Import/Export":["Import/export"],"Logs":["Journaux"],"404 errors":["Erreurs 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."],"I'd like to support some more.":["Je voudrais soutenir un peu plus."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection sauvegardée"],"Log deleted":["Journal supprimé"],"Settings saved":["Réglages sauvegardés"],"Group saved":["Groupe sauvegardé"],"Are you sure you want to delete this item?":["Confirmez-vous la suppression de cet élément ?","Confirmez-vous la suppression de ces éléments ?"],"pass":["Passer"],"All groups":["Tous les groupes"],"301 - Moved Permanently":["301 - déplacé de façon permanente"],"302 - Found":["302 – trouvé"],"307 - Temporary Redirect":["307 – Redirigé temporairement"],"308 - Permanent Redirect":["308 – Redirigé de façon permanente"],"401 - Unauthorized":["401 – Non-autorisé"],"404 - Not Found":["404 – Introuvable"],"Title":["Titre"],"When matched":["Quand cela correspond"],"with HTTP code":["avec code HTTP"],"Show advanced options":["Afficher les options avancées"],"Matched Target":["Cible correspondant"],"Unmatched Target":["Cible ne correspondant pas"],"Saving...":["Sauvegarde…"],"View notice":["Voir la notification"],"Invalid source URL":["URL source non-valide"],"Invalid redirect action":["Action de redirection non-valide"],"Invalid redirect matcher":["Correspondance de redirection non-valide"],"Unable to add new redirect":["Incapable de créer une nouvelle redirection"],"Something went wrong 🙁":["Quelque chose s’est mal passé 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"],"Log entries (%d max)":["Entrées du journal (100 max.)"],"Search by IP":["Rechercher par IP"],"Select bulk action":["Sélectionner l’action groupée"],"Bulk Actions":["Actions groupées"],"Apply":["Appliquer"],"First page":["Première page"],"Prev page":["Page précédente"],"Current Page":["Page courante"],"of %(page)s":["de %(page)s"],"Next page":["Page suivante"],"Last page":["Dernière page"],"%s item":["%s élément","%s éléments"],"Select All":["Tout sélectionner"],"Sorry, something went wrong loading the data - please try again":["Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."],"No results":["Aucun résultat"],"Delete the logs - are you sure?":["Confirmez-vous la suppression des journaux ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."],"Yes! Delete the logs":["Oui ! Supprimer les journaux"],"No! Don't delete the logs":["Non ! Ne pas supprimer les journaux"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Vous souhaitez être au courant des modifications apportées à Redirection ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."],"Your email address:":["Votre adresse de messagerie :"],"You've supported this plugin - thank you!":["Vous avez apporté votre soutien à l’extension. Merci !"],"You get useful software and I get to carry on making it better.":["Vous avez une extension utile, et je peux continuer à l’améliorer."],"Forever":["Indéfiniment"],"Delete the plugin - are you sure?":["Confirmez-vous la suppression de cette extension ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."],"Yes! Delete the plugin":["Oui ! Supprimer l’extension"],"No! Don't delete the plugin":["Non ! Ne pas supprimer l’extension"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gérez toutes vos redirections 301 et surveillez les erreurs 404."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."],"Redirection Support":["Support de Redirection"],"Support":["Support"],"404s":["404"],"Log":["Journaux"],"Delete Redirection":["Supprimer la redirection"],"Upload":["Mettre en ligne"],"Import":["Importer"],"Update":["Mettre à jour"],"Auto-generate URL":["URL auto-générée "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."],"RSS Token":["Jeton RSS "],"404 Logs":["Journaux des 404 "],"(time to keep logs for)":["(durée de conservation des journaux)"],"Redirect Logs":["Journaux des redirections "],"I'm a nice person and I have helped support the author of this plugin":["Je suis un type bien et j’ai aidé l’auteur de cette extension."],"Plugin Support":["Support de l’extension "],"Options":["Options"],"Two months":["Deux mois"],"A month":["Un mois"],"A week":["Une semaine"],"A day":["Un jour"],"No logs":["Aucun journal"],"Delete All":["Tout supprimer"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilisez les groupes pour organiser vos redirections. Les groupes sont assignés à un module qui affecte la manière dont les redirections dans ce groupe fonctionnent. Si vous n’êtes pas sûr/e, tenez-vous en au module de WordPress."],"Add Group":["Ajouter un groupe"],"Search":["Rechercher"],"Groups":["Groupes"],"Save":["Enregistrer"],"Group":["Groupe"],"Match":["Correspondant"],"Add new redirection":["Ajouter une nouvelle redirection"],"Cancel":["Annuler"],"Download":["Télécharger"],"Redirection":["Redirection"],"Settings":["Réglages"],"Do nothing":["Ne rien faire"],"Error (404)":["Erreur (404)"],"Pass-through":["Outrepasser"],"Redirect to random post":["Rediriger vers un article aléatoire"],"Redirect to URL":["Redirection vers une URL"],"Invalid group when creating redirect":["Groupe non valide à la création d’une redirection"],"IP":["IP"],"Source URL":["URL source"],"Date":["Date"],"Add Redirect":["Ajouter une redirection"],"All modules":["Tous les modules"],"View Redirects":["Voir les redirections"],"Module":["Module"],"Redirects":["Redirections"],"Name":["Nom"],"Filter":["Filtre"],"Reset hits":["Réinitialiser les vues"],"Enable":["Activer"],"Disable":["Désactiver"],"Delete":["Supprimer"],"Edit":["Modifier"],"Last Access":["Dernier accès"],"Hits":["Vues"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Articles modifiés"],"Redirections":["Redirections"],"User Agent":["Agent utilisateur"],"URL and user agent":["URL et agent utilisateur"],"Target URL":["URL cible"],"URL only":["URL uniquement"],"Regex":["Regex"],"Referrer":["Référant"],"URL and referrer":["URL et référent"],"Logged Out":["Déconnecté"],"Logged In":["Connecté"],"URL and login status":["URL et état de connexion"]}
locale/json/redirection-it_IT.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":[""],"URL is not being redirected with Redirection":[""],"URL is being redirected with Redirection":[""],"Unable to load details":[""],"Enter server URL to match against":[""],"Server":["Server"],"Enter role or capability value":[""],"Role":["Ruolo"],"Match against this browser referrer text":[""],"Match against this browser user agent":["Confronta con questo browser user agent"],"The relative URL you want to redirect from":["L'URL relativo dal quale vuoi creare una redirezione"],"Optional description - describe the purpose of this redirect":["Descrizione opzionale - descrivi lo scopo di questo reindirizzamento"],"The target URL you want to redirect to if matched":[""],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forza un reindirizzamento da HTTP a HTTPS. Verifica che HTTPS funzioni correttamente prima di abilitarlo"],"Force HTTPS":["Forza HTTPS"],"GDPR / Privacy information":[""],"Add New":["Aggiungi Nuovo"],"Please logout and login again.":[""],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection richiede PHP v%1s, stai usando v%2s - Aggiornare PHP"],"URL and role/capability":["URL e ruolo/permesso"],"URL and server":["URL e server"],"Form request":[""],"Relative /wp-json/":[""],"Proxy over Admin AJAX":[""],"Default /wp-json/":["Default /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":[""],"Site and home are consistent":[""],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":[""],"Header value":["Valore dell'header"],"Header name":[""],"HTTP Header":["Header HTTP"],"WordPress filter name":[""],"Filter Name":[""],"Cookie value":["Valore cookie"],"Cookie name":["Nome cookie"],"Cookie":["Cookie"],"Target URL when not matched":[""],"Target URL when matched":[""],"clearing your cache.":["cancellazione della tua cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Se stai utilizzando un sistema di caching come Cloudflare, per favore leggi questo:"],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":["URL e cookie"],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":[""],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":[""],"Unable to load Redirection ☹️":[""],"WordPress REST API is working at %s":[""],"WordPress REST API":[""],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":[""],"Useragent Error":[""],"Unknown Useragent":["Useragent sconosciuto"],"Device":["Periferica"],"Operating System":["Sistema operativo"],"Browser":["Browser"],"Engine":[""],"Useragent":["Useragent"],"Agent":[""],"No IP logging":[""],"Full IP logging":[""],"Anonymize IP (mask last part)":["Anonimizza IP (maschera l'ultima parte)"],"Monitor changes to %(type)s":[""],"IP Logging":[""],"(select IP logging level)":[""],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":[""],"Geo IP":[""],"City":["Città"],"Area":["Area"],"Timezone":["Fuso orario"],"Geo Location":[""],"Powered by {{link}}redirect.li{{/link}}":[""],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":["Pulisci la cache del tuo browser e ricarica questa pagina"],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":[""],"Need help?":["Hai bisogno di aiuto?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":[""],"410 - Gone":[""],"Position":["Posizione"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":["Modulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."],"Import to group":["Importa nel gruppo"],"Import a CSV, .htaccess, or JSON file.":["Importa un file CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":["Premi 'Aggiungi File' o trascina e rilascia qui."],"Add File":["Aggiungi File"],"File selected":["File selezionato"],"Importing":["Importazione"],"Finished importing":["Importazione finita"],"Total redirects imported:":["Totale redirect importati"],"Double-check the file is the correct format!":["Controlla che il file sia nel formato corretto!"],"OK":["OK"],"Close":["Chiudi"],"All imports will be appended to the current database.":["Tutte le importazioni verranno aggiunte al database corrente."],"Export":["Esporta"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."],"Everything":["Tutto"],"WordPress redirects":["Redirezioni di WordPress"],"Apache redirects":["Redirezioni Apache"],"Nginx redirects":["Redirezioni nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":[""],"Log files can be exported from the log pages.":[""],"Import/Export":["Importa/Esporta"],"Logs":[""],"404 errors":["Errori 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["Supporta 💰"],"Redirection saved":["Redirezione salvata"],"Log deleted":["Log eliminato"],"Settings saved":["Impostazioni salvate"],"Group saved":["Gruppo salvato"],"Are you sure you want to delete this item?":["Sei sicuro di voler eliminare questo oggetto?","Sei sicuro di voler eliminare questi oggetti?"],"pass":[""],"All groups":["Tutti i gruppi"],"301 - Moved Permanently":["301 - Spostato in maniera permanente"],"302 - Found":["302 - Trovato"],"307 - Temporary Redirect":["307 - Redirezione temporanea"],"308 - Permanent Redirect":["308 - Redirezione permanente"],"401 - Unauthorized":["401 - Non autorizzato"],"404 - Not Found":["404 - Non trovato"],"Title":["Titolo"],"When matched":["Quando corrisponde"],"with HTTP code":["Con codice HTTP"],"Show advanced options":["Mostra opzioni avanzate"],"Matched Target":[""],"Unmatched Target":[""],"Saving...":["Salvataggio..."],"View notice":["Vedi la notifica"],"Invalid source URL":["URL di origine non valido"],"Invalid redirect action":["Azione di redirezione non valida"],"Invalid redirect matcher":[""],"Unable to add new redirect":["Impossibile aggiungere una nuova redirezione"],"Something went wrong 🙁":["Qualcosa è andato storto 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\nI was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"],"Log entries (%d max)":[""],"Search by IP":["Cerca per IP"],"Select bulk action":["Seleziona l'azione di massa"],"Bulk Actions":["Azioni di massa"],"Apply":["Applica"],"First page":["Prima pagina"],"Prev page":["Pagina precedente"],"Current Page":["Pagina corrente"],"of %(page)s":[""],"Next page":["Prossima pagina"],"Last page":["Ultima pagina"],"%s item":["%s oggetto","%s oggetti"],"Select All":["Seleziona tutto"],"Sorry, something went wrong loading the data - please try again":["Qualcosa è andato storto leggendo i dati - riprova"],"No results":["Nessun risultato"],"Delete the logs - are you sure?":["Cancella i log - sei sicuro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."],"Yes! Delete the logs":["Sì! Cancella i log"],"No! Don't delete the logs":["No! Non cancellare i log"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Grazie per esserti iscritto! {{a}}Clicca qui{{/a}} se vuoi tornare alla tua sottoscrizione."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Vuoi essere informato sulle modifiche a Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."],"Your email address:":["Il tuo indirizzo email:"],"You've supported this plugin - thank you!":["Hai già supportato questo plugin - grazie!"],"You get useful software and I get to carry on making it better.":[""],"Forever":["Per sempre"],"Delete the plugin - are you sure?":["Cancella il plugin - sei sicuro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Cancellando questo plugin verranno rimossi tutti i reindirizzamenti, i log e le impostazioni. Fallo se vuoi rimuovere il plugin o se vuoi reimpostare il plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Dopo averle elimininati, i tuoi reindirizzamenti smetteranno di funzionare. Se sembra che continuino a funzionare cancella la cache del tuo browser."],"Yes! Delete the plugin":["Sì! Cancella il plugin"],"No! Don't delete the plugin":["No! Non cancellare il plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gestisci tutti i redirect 301 and controlla tutti gli errori 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection può essere utilizzato gratuitamente - la vita è davvero fantastica e piena di tante belle cose! Lo sviluppo di questo plugin richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo sostegno {{strong}}tramite una piccola donazione{{/strong}}."],"Redirection Support":["Forum di supporto Redirection"],"Support":["Supporto"],"404s":["404"],"Log":["Log"],"Delete Redirection":["Rimuovi Redirection"],"Upload":["Carica"],"Import":["Importa"],"Update":["Aggiorna"],"Auto-generate URL":["Genera URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registro 404"],"(time to keep logs for)":["(per quanto tempo conservare i log)"],"Redirect Logs":["Registro redirezioni"],"I'm a nice person and I have helped support the author of this plugin":["Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"],"Plugin Support":[""],"Options":["Opzioni"],"Two months":["Due mesi"],"A month":["Un mese"],"A week":["Una settimana"],"A day":["Un giorno"],"No logs":["Nessun log"],"Delete All":["Elimina tutto"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."],"Add Group":["Aggiungi gruppo"],"Search":["Cerca"],"Groups":["Gruppi"],"Save":["Salva"],"Group":["Gruppo"],"Match":["Match"],"Add new redirection":["Aggiungi un nuovo reindirizzamento"],"Cancel":["Annulla"],"Download":["Scaricare"],"Redirection":["Redirection"],"Settings":["Impostazioni"],"Do nothing":["Non fare niente"],"Error (404)":["Errore (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Reindirizza a un post a caso"],"Redirect to URL":["Reindirizza a URL"],"Invalid group when creating redirect":["Gruppo non valido nella creazione del redirect"],"IP":["IP"],"Source URL":["URL di partenza"],"Date":["Data"],"Add Redirect":[""],"All modules":["Tutti i moduli"],"View Redirects":["Mostra i redirect"],"Module":["Modulo"],"Redirects":["Reindirizzamenti"],"Name":["Nome"],"Filter":["Filtro"],"Reset hits":[""],"Enable":["Attiva"],"Disable":["Disattiva"],"Delete":["Cancella"],"Edit":["Modifica"],"Last Access":["Ultimo accesso"],"Hits":["Visite"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Post modificati"],"Redirections":["Reindirizzamenti"],"User Agent":["User agent"],"URL and user agent":["URL e user agent"],"Target URL":["URL di arrivo"],"URL only":["solo URL"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL e referrer"],"Logged Out":[""],"Logged In":[""],"URL and login status":["status URL e login"]}
1
+ {"":[],"Problem":["Problema"],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":["Trovato"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":["Errore"],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":[""],"URL is not being redirected with Redirection":[""],"URL is being redirected with Redirection":[""],"Unable to load details":[""],"Enter server URL to match against":[""],"Server":["Server"],"Enter role or capability value":[""],"Role":["Ruolo"],"Match against this browser referrer text":[""],"Match against this browser user agent":["Confronta con questo browser user agent"],"The relative URL you want to redirect from":["L'URL relativo dal quale vuoi creare una redirezione"],"Optional description - describe the purpose of this redirect":["Descrizione opzionale - descrivi lo scopo di questo reindirizzamento"],"The target URL you want to redirect to if matched":[""],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forza un reindirizzamento da HTTP a HTTPS. Verifica che HTTPS funzioni correttamente prima di abilitarlo"],"Force HTTPS":["Forza HTTPS"],"GDPR / Privacy information":[""],"Add New":["Aggiungi Nuovo"],"Please logout and login again.":[""],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection richiede PHP v%1s, stai usando v%2s - Aggiornare PHP"],"URL and role/capability":["URL e ruolo/permesso"],"URL and server":["URL e server"],"Form request":[""],"Relative /wp-json/":[""],"Proxy over Admin AJAX":[""],"Default /wp-json/":["Default /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":[""],"Site and home are consistent":[""],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":[""],"Header value":["Valore dell'header"],"Header name":[""],"HTTP Header":["Header HTTP"],"WordPress filter name":[""],"Filter Name":[""],"Cookie value":["Valore cookie"],"Cookie name":["Nome cookie"],"Cookie":["Cookie"],"Target URL when not matched":[""],"Target URL when matched":[""],"clearing your cache.":["cancellazione della tua cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Se stai utilizzando un sistema di caching come Cloudflare, per favore leggi questo:"],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":["URL e cookie"],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":[""],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":[""],"Unable to load Redirection ☹️":[""],"WordPress REST API is working at %s":[""],"WordPress REST API":[""],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":[""],"Useragent Error":[""],"Unknown Useragent":["Useragent sconosciuto"],"Device":["Periferica"],"Operating System":["Sistema operativo"],"Browser":["Browser"],"Engine":[""],"Useragent":["Useragent"],"Agent":[""],"No IP logging":[""],"Full IP logging":[""],"Anonymize IP (mask last part)":["Anonimizza IP (maschera l'ultima parte)"],"Monitor changes to %(type)s":[""],"IP Logging":[""],"(select IP logging level)":[""],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":[""],"Geo IP":[""],"City":["Città"],"Area":["Area"],"Timezone":["Fuso orario"],"Geo Location":[""],"Powered by {{link}}redirect.li{{/link}}":[""],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":["Pulisci la cache del tuo browser e ricarica questa pagina"],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":[""],"Need help?":["Hai bisogno di aiuto?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":[""],"410 - Gone":[""],"Position":["Posizione"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":["Modulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."],"Import to group":["Importa nel gruppo"],"Import a CSV, .htaccess, or JSON file.":["Importa un file CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":["Premi 'Aggiungi File' o trascina e rilascia qui."],"Add File":["Aggiungi File"],"File selected":["File selezionato"],"Importing":["Importazione"],"Finished importing":["Importazione finita"],"Total redirects imported:":["Totale redirect importati"],"Double-check the file is the correct format!":["Controlla che il file sia nel formato corretto!"],"OK":["OK"],"Close":["Chiudi"],"All imports will be appended to the current database.":["Tutte le importazioni verranno aggiunte al database corrente."],"Export":["Esporta"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."],"Everything":["Tutto"],"WordPress redirects":["Redirezioni di WordPress"],"Apache redirects":["Redirezioni Apache"],"Nginx redirects":["Redirezioni nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":[""],"Log files can be exported from the log pages.":[""],"Import/Export":["Importa/Esporta"],"Logs":[""],"404 errors":["Errori 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["Supporta 💰"],"Redirection saved":["Redirezione salvata"],"Log deleted":["Log eliminato"],"Settings saved":["Impostazioni salvate"],"Group saved":["Gruppo salvato"],"Are you sure you want to delete this item?":["Sei sicuro di voler eliminare questo oggetto?","Sei sicuro di voler eliminare questi oggetti?"],"pass":[""],"All groups":["Tutti i gruppi"],"301 - Moved Permanently":["301 - Spostato in maniera permanente"],"302 - Found":["302 - Trovato"],"307 - Temporary Redirect":["307 - Redirezione temporanea"],"308 - Permanent Redirect":["308 - Redirezione permanente"],"401 - Unauthorized":["401 - Non autorizzato"],"404 - Not Found":["404 - Non trovato"],"Title":["Titolo"],"When matched":["Quando corrisponde"],"with HTTP code":["Con codice HTTP"],"Show advanced options":["Mostra opzioni avanzate"],"Matched Target":[""],"Unmatched Target":[""],"Saving...":["Salvataggio..."],"View notice":["Vedi la notifica"],"Invalid source URL":["URL di origine non valido"],"Invalid redirect action":["Azione di redirezione non valida"],"Invalid redirect matcher":[""],"Unable to add new redirect":["Impossibile aggiungere una nuova redirezione"],"Something went wrong 🙁":["Qualcosa è andato storto 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\nI was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"],"Log entries (%d max)":[""],"Search by IP":["Cerca per IP"],"Select bulk action":["Seleziona l'azione di massa"],"Bulk Actions":["Azioni di massa"],"Apply":["Applica"],"First page":["Prima pagina"],"Prev page":["Pagina precedente"],"Current Page":["Pagina corrente"],"of %(page)s":[""],"Next page":["Prossima pagina"],"Last page":["Ultima pagina"],"%s item":["%s oggetto","%s oggetti"],"Select All":["Seleziona tutto"],"Sorry, something went wrong loading the data - please try again":["Qualcosa è andato storto leggendo i dati - riprova"],"No results":["Nessun risultato"],"Delete the logs - are you sure?":["Cancella i log - sei sicuro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."],"Yes! Delete the logs":["Sì! Cancella i log"],"No! Don't delete the logs":["No! Non cancellare i log"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Grazie per esserti iscritto! {{a}}Clicca qui{{/a}} se vuoi tornare alla tua sottoscrizione."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Vuoi essere informato sulle modifiche a Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."],"Your email address:":["Il tuo indirizzo email:"],"You've supported this plugin - thank you!":["Hai già supportato questo plugin - grazie!"],"You get useful software and I get to carry on making it better.":[""],"Forever":["Per sempre"],"Delete the plugin - are you sure?":["Cancella il plugin - sei sicuro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Cancellando questo plugin verranno rimossi tutti i reindirizzamenti, i log e le impostazioni. Fallo se vuoi rimuovere il plugin o se vuoi reimpostare il plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Dopo averle elimininati, i tuoi reindirizzamenti smetteranno di funzionare. Se sembra che continuino a funzionare cancella la cache del tuo browser."],"Yes! Delete the plugin":["Sì! Cancella il plugin"],"No! Don't delete the plugin":["No! Non cancellare il plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gestisci tutti i redirect 301 and controlla tutti gli errori 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection può essere utilizzato gratuitamente - la vita è davvero fantastica e piena di tante belle cose! Lo sviluppo di questo plugin richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo sostegno {{strong}}tramite una piccola donazione{{/strong}}."],"Redirection Support":["Forum di supporto Redirection"],"Support":["Supporto"],"404s":["404"],"Log":["Log"],"Delete Redirection":["Rimuovi Redirection"],"Upload":["Carica"],"Import":["Importa"],"Update":["Aggiorna"],"Auto-generate URL":["Genera URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registro 404"],"(time to keep logs for)":["(per quanto tempo conservare i log)"],"Redirect Logs":["Registro redirezioni"],"I'm a nice person and I have helped support the author of this plugin":["Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"],"Plugin Support":["Supporto del plugin"],"Options":["Opzioni"],"Two months":["Due mesi"],"A month":["Un mese"],"A week":["Una settimana"],"A day":["Un giorno"],"No logs":["Nessun log"],"Delete All":["Elimina tutto"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."],"Add Group":["Aggiungi gruppo"],"Search":["Cerca"],"Groups":["Gruppi"],"Save":["Salva"],"Group":["Gruppo"],"Match":["Match"],"Add new redirection":["Aggiungi un nuovo reindirizzamento"],"Cancel":["Annulla"],"Download":["Scaricare"],"Redirection":["Redirection"],"Settings":["Impostazioni"],"Do nothing":["Non fare niente"],"Error (404)":["Errore (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Reindirizza a un post a caso"],"Redirect to URL":["Reindirizza a URL"],"Invalid group when creating redirect":["Gruppo non valido nella creazione del redirect"],"IP":["IP"],"Source URL":["URL di partenza"],"Date":["Data"],"Add Redirect":["Aggiungi una redirezione"],"All modules":["Tutti i moduli"],"View Redirects":["Mostra i redirect"],"Module":["Modulo"],"Redirects":["Reindirizzamenti"],"Name":["Nome"],"Filter":["Filtro"],"Reset hits":[""],"Enable":["Attiva"],"Disable":["Disattiva"],"Delete":["Cancella"],"Edit":["Modifica"],"Last Access":["Ultimo accesso"],"Hits":["Visite"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Post modificati"],"Redirections":["Reindirizzamenti"],"User Agent":["User agent"],"URL and user agent":["URL e user agent"],"Target URL":["URL di arrivo"],"URL only":["solo URL"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL e referrer"],"Logged Out":[""],"Logged In":[""],"URL and login status":["status URL e login"]}
locale/json/redirection-ja.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":["リダイレクトテスター"],"Target":["ターゲット"],"URL is not being redirected with Redirection":["URL は Redirection によってリダイレクトされません"],"URL is being redirected with Redirection":["URL は Redirection によってリダイレクトされます"],"Unable to load details":["詳細のロードに失敗しました"],"Enter server URL to match against":[""],"Server":["サーバー"],"Enter role or capability value":["権限グループまたは権限の値を入力"],"Role":["権限グループ"],"Match against this browser referrer text":["このブラウザーリファラーテキストと一致"],"Match against this browser user agent":["このブラウザーユーザーエージェントに一致"],"The relative URL you want to redirect from":["リダイレクト元となる相対 URL"],"Optional description - describe the purpose of this redirect":["任意の説明欄 - リダイレクトの目的を説明してください"],"The target URL you want to redirect to if matched":["一致した場合にリダイレクトさせたいターゲット URL"],"(beta)":["(ベータ)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"],"Force HTTPS":["強制 HTTPS"],"GDPR / Privacy information":["GDPR / 個人情報"],"Add New":["新規追加"],"Please logout and login again.":["再度ログインし直してください。"],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection の動作には PHP v%1s が必要ですが、現在 v%2s をお使いです。PHP を更新してください。"],"URL and role/capability":["URL と権限グループ / 権限"],"URL and server":["URL とサーバー"],"Form request":["フォームリクエスト"],"Relative /wp-json/":["相対 /wp-json/"],"Proxy over Admin AJAX":[""],"Default /wp-json/":["デフォルト /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":["サイト URL とホーム URL のプロトコル"],"Site and home URL are inconsistent - please correct from your General settings":["サイト URL とホーム URL が一致しません。一般設定より設定してください。"],"Site and home are consistent":["サイト URL とホーム URL は一致しています"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"],"Accept Language":["Accept Language"],"Header value":["ヘッダー値"],"Header name":["ヘッダー名"],"HTTP Header":["HTTP ヘッダー"],"WordPress filter name":["WordPress フィルター名"],"Filter Name":["フィルター名"],"Cookie value":["Cookie 値"],"Cookie name":["Cookie 名"],"Cookie":["Cookie"],"Target URL when not matched":["一致しなかったときのターゲット URL"],"Target URL when matched":["一致したときのターゲット URL"],"clearing your cache.":["キャッシュを削除"],"If you are using a caching system such as Cloudflare then please read this: ":["Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"],"URL and HTTP header":["URL と HTTP ヘッダー"],"URL and custom filter":["URL とカスタムフィルター"],"URL and cookie":["URL と Cookie"],"404 deleted":["404 deleted"],"Raw /index.php?rest_route=/":[""],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress が予期しないエラーを返却しました。これは REST API が動いていないか、他のプラグインやテーマによって起こされている可能性があります。"],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["{{link}}プラグインステータス{{/link}} をご覧ください。問題を特定でき、問題を修正できるかもしれません。"],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection は REST API との通信に失敗しました。{{/link}} もし無効化している場合、有効化する必要があります。"],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}セキュリティソフトが Redirectin をブロックしている可能性があります。{{/link}} REST API リクエストを許可するために設定を行う必要があります。"],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}キャッシュソフト{{/link}} 特に Cloudflare は間違ったキャッシュを行うことがあります。すべてのキャッシュをクリアしてみてください。"],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}一時的に他のプラグインを無効化してください。{{/link}} 多くの問題はこれで解決します。"],"None of the suggestions helped":["これらの提案では解決しませんでした"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"],"Unable to load Redirection ☹️":["Redirection のロードに失敗しました☹️"],"WordPress REST API is working at %s":["WordPress REST API は次の URL でアクセス可能です: %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API が動作していないためルートはチェックされません"],"Redirection routes are working":["Redirection ルートは正常に動作しています"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection が REST API ルート上にないようです。プラグインなどを使用して REST API を無効化しましたか ?"],"Redirection routes":["Redirection ルート"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["サイト上の WordPress REST API は無効化されています。Redirection の動作のためには再度有効化する必要があります。"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["ユーザーエージェントエラー"],"Unknown Useragent":["不明なユーザーエージェント"],"Device":["デバイス"],"Operating System":["オペレーティングシステム"],"Browser":["ブラウザー"],"Engine":["エンジン"],"Useragent":["ユーザーエージェント"],"Agent":["エージェント"],"No IP logging":["IP ロギングなし"],"Full IP logging":["フル IP ロギング"],"Anonymize IP (mask last part)":[""],"Monitor changes to %(type)s":[""],"IP Logging":["IP ロギング"],"(select IP logging level)":[""],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":["この情報の取得中に問題が発生しました。"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["これはプライベートネットワーク内からの IP です。家庭もしくは職場ネットワークからのアクセスであり、これ以上の情報を表示することはできません。"],"No details are known for this address.":["このアドレスには詳細がありません"],"Geo IP":["ジオ IP"],"City":["市区町村"],"Area":["エリア"],"Timezone":["タイムゾーン"],"Geo Location":["位置情報"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["ゴミ箱"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":["キャッシュしない"],"An hour":["1時間"],"Redirect Cache":["リダイレクトキャッシュ"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"],"Are you sure you want to import from %s?":["本当に %s からインポートしますか ?"],"Plugin Importers":["インポートプラグイン"],"The following redirect plugins were detected on your site and can be imported from.":["サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"],"total = ":["全数 ="],"Import from %s":["%s からインポート"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":["Redirection がきちんとインストールされていません"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"],"⚡️ Magic fix ⚡️":["⚡️マジック修正⚡️"],"Plugin Status":["プラグインステータス"],"Custom":["カスタム"],"Mobile":["モバイル"],"Feed Readers":["フィード読者"],"Libraries":["ライブラリ"],"URL Monitor Changes":[""],"Save changes to this group":["このグループへの変更を保存"],"For example \"/amp\"":["例: \"/amp\""],"URL Monitor":["URL モニター"],"Delete 404s":["404を削除"],"Delete all logs for this 404":["この404エラーに対するすべてのログを削除"],"Delete all from IP %s":["すべての IP %s からのものを削除"],"Delete all matching \"%s\"":["すべての \"%s\" に一致するものを削除"],"Your server has rejected the request for being too big. You will need to change it to continue.":["大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"],"Also check if your browser is able to load <code>redirection.js</code>:":["また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"],"Unable to load Redirection":["Redirection のロードに失敗しました"],"Unable to create group":["グループの作成に失敗しました"],"Failed to fix database tables":["データベーステーブルの修正に失敗しました"],"Post monitor group is valid":["投稿モニターグループは有効です"],"Post monitor group is invalid":["投稿モニターグループが無効です"],"Post monitor group":["投稿モニターグループ"],"All redirects have a valid group":["すべてのリダイレクトは有効なグループになっています"],"Redirects with invalid groups detected":["無効なグループのリダイレクトが検出されました"],"Valid redirect group":["有効なリダイレクトグループ"],"Valid groups detected":["有効なグループが検出されました"],"No valid groups, so you will not be able to create any redirects":["有効なグループがない場合、新規のリダイレクトを追加することはできません。"],"Valid groups":["有効なグループ"],"Database tables":["データベーステーブル"],"The following tables are missing:":["次のテーブルが不足しています:"],"All tables present":["すべてのテーブルが存在しています"],"Cached Redirection detected":["キャッシュされた Redirection が検知されました"],"Please clear your browser cache and reload this page.":["ブラウザーのキャッシュをクリアしてページを再読込してください。"],"The data on this page has expired, please reload.":["このページのデータが期限切れになりました。再読込してください。"],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["サーバーが 403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":["もしこの原因が Redirection だと思うのであれば Issue を作成してください。"],"This may be caused by another plugin - look at your browser's error console for more details.":["この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"],"Loading, please wait...":["ロード中です。お待ち下さい…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n issue{{/link}} を詳細とともに作成してください。"],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"],"Create Issue":["Issue を作成"],"Email":["メール"],"Important details":["重要な詳細"],"Need help?":["ヘルプが必要ですか?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"],"Pos":["Pos"],"410 - Gone":["410 - 消滅"],"Position":["配置"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"Log entries (%d max)":["ログ (最大 %d)"],"Search by IP":["IP による検索"],"Select bulk action":["一括操作を選択"],"Bulk Actions":["一括操作"],"Apply":["適応"],"First page":["最初のページ"],"Prev page":["前のページ"],"Current Page":["現在のページ"],"of %(page)s":["%(page)s"],"Next page":["次のページ"],"Last page":["最後のページ"],"%s item":[["%s 個のアイテム"]],"Select All":["すべて選択"],"Sorry, something went wrong loading the data - please try again":["データのロード中に問題が発生しました - もう一度お試しください"],"No results":["結果なし"],"Delete the logs - are you sure?":["本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":["ログを消去する"],"No! Don't delete the logs":["ログを消去しない"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":["ニュースレター"],"Want to keep up to date with changes to Redirection?":["リダイレクトの変更を最新の状態に保ちたいですか ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"],"Your email address:":["メールアドレス: "],"You've supported this plugin - thank you!":["あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"You get useful software and I get to carry on making it better.":["あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Forever":["永久に"],"Delete the plugin - are you sure?":["本当にプラグインを削除しますか ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":["プラグインを消去する"],"No! Don't delete the plugin":["プラグインを消去しない"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["すべての 301 リダイレクトを管理し、404 エラーをモニター"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"],"Redirection Support":["Redirection を応援する"],"Support":["サポート"],"404s":["404 エラー"],"Log":["ログ"],"Delete Redirection":["転送ルールを削除"],"Upload":["アップロード"],"Import":["インポート"],"Update":["更新"],"Auto-generate URL":["URL を自動生成 "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"],"RSS Token":["RSS トークン"],"404 Logs":["404 ログ"],"(time to keep logs for)":["(ログの保存期間)"],"Redirect Logs":["転送ログ"],"I'm a nice person and I have helped support the author of this plugin":["このプラグインの作者に対する援助を行いました"],"Plugin Support":["プラグインサポート"],"Options":["設定"],"Two months":["2ヶ月"],"A month":["1ヶ月"],"A week":["1週間"],"A day":["1日"],"No logs":["ログなし"],"Delete All":["すべてを削除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"],"Add Group":["グループを追加"],"Search":["検索"],"Groups":["グループ"],"Save":["保存"],"Group":["グループ"],"Match":["一致条件"],"Add new redirection":["新しい転送ルールを追加"],"Cancel":["キャンセル"],"Download":["ダウンロード"],"Redirection":["Redirection"],"Settings":["設定"],"Do nothing":["何もしない"],"Error (404)":["エラー (404)"],"Pass-through":["通過"],"Redirect to random post":["ランダムな記事へ転送"],"Redirect to URL":["URL へ転送"],"Invalid group when creating redirect":["転送ルールを作成する際に無効なグループが指定されました"],"IP":["IP"],"Source URL":["ソース URL"],"Date":["日付"],"Add Redirect":["転送ルールを追加"],"All modules":["すべてのモジュール"],"View Redirects":["転送ルールを表示"],"Module":["モジュール"],"Redirects":["転送ルール"],"Name":["名称"],"Filter":["フィルター"],"Reset hits":["訪問数をリセット"],"Enable":["有効化"],"Disable":["無効化"],"Delete":["削除"],"Edit":["編集"],"Last Access":["前回のアクセス"],"Hits":["ヒット数"],"URL":["URL"],"Type":["タイプ"],"Modified Posts":["編集済みの投稿"],"Redirections":["転送ルール"],"User Agent":["ユーザーエージェント"],"URL and user agent":["URL およびユーザーエージェント"],"Target URL":["ターゲット URL"],"URL only":["URL のみ"],"Regex":["正規表現"],"Referrer":["リファラー"],"URL and referrer":["URL およびリファラー"],"Logged Out":["ログアウト中"],"Logged In":["ログイン中"],"URL and login status":["URL およびログイン状態"]}
1
+ {"":[],"Problem":[""],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":["エラー"],"Enter full URL, including http:// or https://":["http:// や https:// を含めた完全な URL を入力してください"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"],"Redirect Tester":["リダイレクトテスター"],"Target":["ターゲット"],"URL is not being redirected with Redirection":["URL は Redirection によってリダイレクトされません"],"URL is being redirected with Redirection":["URL は Redirection によってリダイレクトされます"],"Unable to load details":["詳細のロードに失敗しました"],"Enter server URL to match against":["一致するサーバーの URL を入力"],"Server":["サーバー"],"Enter role or capability value":["権限グループまたは権限の値を入力"],"Role":["権限グループ"],"Match against this browser referrer text":["このブラウザーリファラーテキストと一致"],"Match against this browser user agent":["このブラウザーユーザーエージェントに一致"],"The relative URL you want to redirect from":["リダイレクト元となる相対 URL"],"Optional description - describe the purpose of this redirect":["任意の説明欄 - リダイレクトの目的を説明してください"],"The target URL you want to redirect to if matched":["一致した場合にリダイレクトさせたいターゲット URL"],"(beta)":["(ベータ)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"],"Force HTTPS":["強制 HTTPS"],"GDPR / Privacy information":["GDPR / 個人情報"],"Add New":["新規追加"],"Please logout and login again.":["再度ログインし直してください。"],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection の動作には PHP v%1s が必要ですが、現在 v%2s をお使いです。PHP を更新してください。"],"URL and role/capability":["URL と権限グループ / 権限"],"URL and server":["URL とサーバー"],"Form request":["フォームリクエスト"],"Relative /wp-json/":["相対 /wp-json/"],"Proxy over Admin AJAX":[""],"Default /wp-json/":["デフォルト /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["動作が正常にできていない場合、 Redirection がサーバーと連携するのが困難な状態と考えられます。設定を手動で変更することが可能です :"],"Site and home protocol":["サイト URL とホーム URL のプロトコル"],"Site and home URL are inconsistent - please correct from your General settings":["サイト URL とホーム URL が一致しません。一般設定より設定してください。"],"Site and home are consistent":["サイト URL とホーム URL は一致しています"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"],"Accept Language":["Accept Language"],"Header value":["ヘッダー値"],"Header name":["ヘッダー名"],"HTTP Header":["HTTP ヘッダー"],"WordPress filter name":["WordPress フィルター名"],"Filter Name":["フィルター名"],"Cookie value":["Cookie 値"],"Cookie name":["Cookie 名"],"Cookie":["Cookie"],"Target URL when not matched":["一致しなかったときのターゲット URL"],"Target URL when matched":["一致したときのターゲット URL"],"clearing your cache.":["キャッシュを削除"],"If you are using a caching system such as Cloudflare then please read this: ":["Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"],"URL and HTTP header":["URL と HTTP ヘッダー"],"URL and custom filter":["URL とカスタムフィルター"],"URL and cookie":["URL と Cookie"],"404 deleted":["404 deleted"],"Raw /index.php?rest_route=/":["Raw /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress が予期しないエラーを返却しました。これは REST API が動いていないか、他のプラグインやテーマによって起こされている可能性があります。"],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["{{link}}プラグインステータス{{/link}} をご覧ください。問題を特定でき、問題を修正できるかもしれません。"],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection は REST API との通信に失敗しました。{{/link}} もし無効化している場合、有効化する必要があります。"],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}セキュリティソフトが Redirectin をブロックしている可能性があります。{{/link}} REST API リクエストを許可するために設定を行う必要があります。"],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}キャッシュソフト{{/link}} 特に Cloudflare は間違ったキャッシュを行うことがあります。すべてのキャッシュをクリアしてみてください。"],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}一時的に他のプラグインを無効化してください。{{/link}} 多くの問題はこれで解決します。"],"None of the suggestions helped":["これらの提案では解決しませんでした"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"],"Unable to load Redirection ☹️":["Redirection のロードに失敗しました☹️"],"WordPress REST API is working at %s":["WordPress REST API は次の URL でアクセス可能です: %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API が動作していないためルートはチェックされません"],"Redirection routes are working":["Redirection ルートは正常に動作しています"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection が REST API ルート上にないようです。プラグインなどを使用して REST API を無効化しましたか ?"],"Redirection routes":["Redirection ルート"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["サイト上の WordPress REST API は無効化されています。Redirection の動作のためには再度有効化する必要があります。"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["ユーザーエージェントエラー"],"Unknown Useragent":["不明なユーザーエージェント"],"Device":["デバイス"],"Operating System":["オペレーティングシステム"],"Browser":["ブラウザー"],"Engine":["エンジン"],"Useragent":["ユーザーエージェント"],"Agent":["エージェント"],"No IP logging":["IP ロギングなし"],"Full IP logging":["フル IP ロギング"],"Anonymize IP (mask last part)":["匿名 IP (最後の部分をマスクする)"],"Monitor changes to %(type)s":["%(type) の変更を監視する"],"IP Logging":["IP ロギング"],"(select IP logging level)":["(IP のログレベルを選択)"],"Geo Info":["位置情報"],"Agent Info":["エージェントの情報"],"Filter by IP":["IP でフィルター"],"Referrer / User Agent":["リファラー / User Agent"],"Geo IP Error":["位置情報エラー"],"Something went wrong obtaining this information":["この情報の取得中に問題が発生しました。"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["これはプライベートネットワーク内からの IP です。家庭もしくは職場ネットワークからのアクセスであり、これ以上の情報を表示することはできません。"],"No details are known for this address.":["このアドレスには詳細がありません"],"Geo IP":["ジオ IP"],"City":["市区町村"],"Area":["エリア"],"Timezone":["タイムゾーン"],"Geo Location":["位置情報"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["ゴミ箱"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"],"Never cache":["キャッシュしない"],"An hour":["1時間"],"Redirect Cache":["リダイレクトキャッシュ"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"],"Are you sure you want to import from %s?":["本当に %s からインポートしますか ?"],"Plugin Importers":["インポートプラグイン"],"The following redirect plugins were detected on your site and can be imported from.":["サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"],"total = ":["全数 ="],"Import from %s":["%s からインポート"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["データベースのテーブルに問題があります。詳しくは、<a href=\"%s\">support page</a> を御覧ください。"],"Redirection not installed properly":["Redirection がきちんとインストールされていません"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection の動作には WordPress v%1s が必要ですが、v%2s を利用しているようです。WordPress をアップデートしてください。"],"Default WordPress \"old slugs\"":["初期設定の WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"],"⚡️ Magic fix ⚡️":["⚡️マジック修正⚡️"],"Plugin Status":["プラグインステータス"],"Custom":["カスタム"],"Mobile":["モバイル"],"Feed Readers":["フィード読者"],"Libraries":["ライブラリ"],"URL Monitor Changes":["変更を監視する URL"],"Save changes to this group":["このグループへの変更を保存"],"For example \"/amp\"":["例: \"/amp\""],"URL Monitor":["URL モニター"],"Delete 404s":["404を削除"],"Delete all logs for this 404":["この404エラーに対するすべてのログを削除"],"Delete all from IP %s":["すべての IP %s からのものを削除"],"Delete all matching \"%s\"":["すべての \"%s\" に一致するものを削除"],"Your server has rejected the request for being too big. You will need to change it to continue.":["大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"],"Also check if your browser is able to load <code>redirection.js</code>:":["また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"],"Unable to load Redirection":["Redirection のロードに失敗しました"],"Unable to create group":["グループの作成に失敗しました"],"Failed to fix database tables":["データベーステーブルの修正に失敗しました"],"Post monitor group is valid":["投稿モニターグループは有効です"],"Post monitor group is invalid":["投稿モニターグループが無効です"],"Post monitor group":["投稿モニターグループ"],"All redirects have a valid group":["すべてのリダイレクトは有効なグループになっています"],"Redirects with invalid groups detected":["無効なグループのリダイレクトが検出されました"],"Valid redirect group":["有効なリダイレクトグループ"],"Valid groups detected":["有効なグループが検出されました"],"No valid groups, so you will not be able to create any redirects":["有効なグループがない場合、新規のリダイレクトを追加することはできません。"],"Valid groups":["有効なグループ"],"Database tables":["データベーステーブル"],"The following tables are missing:":["次のテーブルが不足しています:"],"All tables present":["すべてのテーブルが存在しています"],"Cached Redirection detected":["キャッシュされた Redirection が検知されました"],"Please clear your browser cache and reload this page.":["ブラウザーのキャッシュをクリアしてページを再読込してください。"],"The data on this page has expired, please reload.":["このページのデータが期限切れになりました。再読込してください。"],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["サーバーが 403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":["もしこの原因が Redirection だと思うのであれば Issue を作成してください。"],"This may be caused by another plugin - look at your browser's error console for more details.":["この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"],"Loading, please wait...":["ロード中です。お待ち下さい…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n issue{{/link}} を詳細とともに作成してください。"],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"],"Create Issue":["Issue を作成"],"Email":["メール"],"Important details":["重要な詳細"],"Need help?":["ヘルプが必要ですか?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"],"Pos":["Pos"],"410 - Gone":["410 - 消滅"],"Position":["配置"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"Log entries (%d max)":["ログ (最大 %d)"],"Search by IP":["IP による検索"],"Select bulk action":["一括操作を選択"],"Bulk Actions":["一括操作"],"Apply":["適応"],"First page":["最初のページ"],"Prev page":["前のページ"],"Current Page":["現在のページ"],"of %(page)s":["%(page)s"],"Next page":["次のページ"],"Last page":["最後のページ"],"%s item":[["%s 個のアイテム"]],"Select All":["すべて選択"],"Sorry, something went wrong loading the data - please try again":["データのロード中に問題が発生しました - もう一度お試しください"],"No results":["結果なし"],"Delete the logs - are you sure?":["本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":["ログを消去する"],"No! Don't delete the logs":["ログを消去しない"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":["ニュースレター"],"Want to keep up to date with changes to Redirection?":["リダイレクトの変更を最新の状態に保ちたいですか ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"],"Your email address:":["メールアドレス: "],"You've supported this plugin - thank you!":["あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"You get useful software and I get to carry on making it better.":["あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Forever":["永久に"],"Delete the plugin - are you sure?":["本当にプラグインを削除しますか ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":["プラグインを消去する"],"No! Don't delete the plugin":["プラグインを消去しない"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["すべての 301 リダイレクトを管理し、404 エラーをモニター"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"],"Redirection Support":["Redirection を応援する"],"Support":["サポート"],"404s":["404 エラー"],"Log":["ログ"],"Delete Redirection":["転送ルールを削除"],"Upload":["アップロード"],"Import":["インポート"],"Update":["更新"],"Auto-generate URL":["URL を自動生成 "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"],"RSS Token":["RSS トークン"],"404 Logs":["404 ログ"],"(time to keep logs for)":["(ログの保存期間)"],"Redirect Logs":["転送ログ"],"I'm a nice person and I have helped support the author of this plugin":["このプラグインの作者に対する援助を行いました"],"Plugin Support":["プラグインサポート"],"Options":["設定"],"Two months":["2ヶ月"],"A month":["1ヶ月"],"A week":["1週間"],"A day":["1日"],"No logs":["ログなし"],"Delete All":["すべてを削除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"],"Add Group":["グループを追加"],"Search":["検索"],"Groups":["グループ"],"Save":["保存"],"Group":["グループ"],"Match":["一致条件"],"Add new redirection":["新しい転送ルールを追加"],"Cancel":["キャンセル"],"Download":["ダウンロード"],"Redirection":["Redirection"],"Settings":["設定"],"Do nothing":["何もしない"],"Error (404)":["エラー (404)"],"Pass-through":["通過"],"Redirect to random post":["ランダムな記事へ転送"],"Redirect to URL":["URL へ転送"],"Invalid group when creating redirect":["転送ルールを作成する際に無効なグループが指定されました"],"IP":["IP"],"Source URL":["ソース URL"],"Date":["日付"],"Add Redirect":["転送ルールを追加"],"All modules":["すべてのモジュール"],"View Redirects":["転送ルールを表示"],"Module":["モジュール"],"Redirects":["転送ルール"],"Name":["名称"],"Filter":["フィルター"],"Reset hits":["訪問数をリセット"],"Enable":["有効化"],"Disable":["無効化"],"Delete":["削除"],"Edit":["編集"],"Last Access":["前回のアクセス"],"Hits":["ヒット数"],"URL":["URL"],"Type":["タイプ"],"Modified Posts":["編集済みの投稿"],"Redirections":["転送ルール"],"User Agent":["ユーザーエージェント"],"URL and user agent":["URL およびユーザーエージェント"],"Target URL":["ターゲット URL"],"URL only":["URL のみ"],"Regex":["正規表現"],"Referrer":["リファラー"],"URL and referrer":["URL およびリファラー"],"Logged Out":["ログアウト中"],"Logged In":["ログイン中"],"URL and login status":["URL およびログイン状態"]}
locale/json/redirection-lv.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":["Pāradresāciju Testēšana"],"Target":[""],"URL is not being redirected with Redirection":["URL netiek pāradresēts ar šo spraudni"],"URL is being redirected with Redirection":["URL tiek pāradresēts ar šo spraudni"],"Unable to load details":["Neizdevās izgūt informāciju"],"Enter server URL to match against":[""],"Server":["Servera domēns"],"Enter role or capability value":[""],"Role":[""],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":["Relatīvs sākotnējais URL no kura vēlies veikt pāradresāciju"],"Optional description - describe the purpose of this redirect":["Skaidrojums (nav obligāti) - apraksti, kāds ir mērķis šai pāradresācijai"],"The target URL you want to redirect to if matched":["Galamērķa URL, uz kuru Tu vēlies pāradresēt sākotnējo saiti"],"(beta)":["(eksperimentāls)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Piespiedu pāradresācija no HTTP uz HTTPS. Lūdzu pārliecinies, ka Tavai tīmekļa vietnei HTTPS darbojas korekti, pirms šī parametra iespējošanas."],"Force HTTPS":["Piespiedu HTTPS"],"GDPR / Privacy information":["GDPR / Informācija par privātumu"],"Add New":["Pievienot Jaunu"],"Please logout and login again.":["Lūdzu izej no sistēmas, un autorizējies tajā vēlreiz."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Spraudnim \"Pāradresācija\" nepieciešama PHP v%1s versija. Tu pašlaik izmanto v%2s - lūdzu atjaunini vai pārslēdz PHP versiju šai tīmekļa vietnei."],"URL and role/capability":[""],"URL and server":["URL un servera domēns"],"Form request":[""],"Relative /wp-json/":[""],"Proxy over Admin AJAX":[""],"Default /wp-json/":[""],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":["Tīmekļa vietnes un Sākuma URL ir pretrunīgi - lūdzu veic labojumus Gavenajos Uzstādījumos"],"Site and home are consistent":["Tīmekļa vietnes un sākumlapas URL ir saderīgi"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Ņem vērā, ka HTTP galveņu padošana uz PHP ir Tavā pārziņā. Ja Tev šajā jautājumā ir nepieciešama palīdzība, sazinies ar savu tīmekļa vietnes uzturētāju."],"Accept Language":[""],"Header value":["Galvenes saturs"],"Header name":["Galvenes nosaukums"],"HTTP Header":["HTTP Galvene"],"WordPress filter name":["WordPress filtra nosaukums"],"Filter Name":["Filtra Nosaukums"],"Cookie value":["Sīkdatnes saturs"],"Cookie name":["Sīkdatnes nosaukums"],"Cookie":["Sīkdatne"],"Target URL when not matched":["Galamērķa URL, ja nosacījums nav izpildīts"],"Target URL when matched":["Galamērķa URL, ja nosacījums izpildīts"],"clearing your cache.":[""],"If you are using a caching system such as Cloudflare then please read this: ":["Ja Tu izmanto kešošanas sistēmu, piemēram \"CloudFlare\", lūdzi izlasi šo:"],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":["URL un sīkdatne"],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":["Neviens no ieteikumiem nelīdzēja"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Lūdzu apskati <a href=\"https://redirection.me/support/problems/\">sarakstu ar biežākajām problēmām</a>."],"Unable to load Redirection ☹️":["Neizdevās ielādēt spraudni \"Pāradresācija\" ☹️"],"WordPress REST API is working at %s":[""],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":[""],"Unknown Useragent":["Nezināma Iekārta"],"Device":["Iekārta"],"Operating System":["Operētājsistēma"],"Browser":["Pārlūkprogramma"],"Engine":[""],"Useragent":["Iekārtas dati"],"Agent":[""],"No IP logging":["Bez IP žurnalēšanas"],"Full IP logging":["Pilna IP žurnalēšana"],"Anonymize IP (mask last part)":["Daļēja IP maskēšana"],"Monitor changes to %(type)s":["Pārraudzīt izmaiņas %(type)s saturā"],"IP Logging":["IP Žurnalēšana"],"(select IP logging level)":["(atlasiet IP žurnalēšanas līmeni)"],"Geo Info":[""],"Agent Info":[""],"Filter by IP":["Atlasīt pēc IP"],"Referrer / User Agent":["Ieteicējs / Iekārtas Dati"],"Geo IP Error":["IP Ģeolokācijas Kļūda"],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":["Par šo adresi nav pieejama informācija."],"Geo IP":["IP Ģeolokācija"],"City":["Pilsēta"],"Area":["Reģions"],"Timezone":["Laika Zona"],"Geo Location":["Ģeogr. Atrašanās Vieta"],"Powered by {{link}}redirect.li{{/link}}":["Darbību nodrošina {{link}}redirect.li{{/link}}"],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Ja vēlies ziņot par nepilnību, lūdzu iepazīsties ar {{report}}Ziņošana Par Nepilnībām{{/report}} ceļvedi."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":["Vai tiešām vēlies importēt datus no %s?"],"Plugin Importers":["Importēšana no citiem Spraudņiem"],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":["Pāradresētājs nav pareizi uzstādīts"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":["Spraudņa Statuss"],"Custom":[""],"Mobile":[""],"Feed Readers":["Jaunumu Plūsmas lasītāji"],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":["URL Pārraudzība"],"Delete 404s":["Dzēst 404 kļūdas"],"Delete all logs for this 404":["Dzēst visus ierakstus par šo 404"],"Delete all from IP %s":["Dzēst visu par IP %s"],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":["Nav iespējams izveidot grupu"],"Failed to fix database tables":["Neizdevās izlabot tabulas datubāzē"],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":["Konstatētas derīgas grupas"],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":["Tabulas datubāzē"],"The following tables are missing:":["Iztrūkst šādas tabulas:"],"All tables present":["Visas tabulas ir pieejamas"],"Cached Redirection detected":["Konstatēta kešatmiņā saglabāta pāradresācija"],"Please clear your browser cache and reload this page.":["Lūdzu iztīri savas pārlūkprogrammas kešatmiņu un pārlādē šo lapu."],"The data on this page has expired, please reload.":["Dati šajā lapā ir novecojuši. Lūdzu pārlādē to."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":[""],"Need help?":["Nepieciešama palīdzība?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":["Secība"],"410 - Gone":["410 - Aizvākts"],"Position":["Pozīcija"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":[""],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":[""],"Import a CSV, .htaccess, or JSON file.":[""],"Click 'Add File' or drag and drop here.":[""],"Add File":[""],"File selected":[""],"Importing":[""],"Finished importing":[""],"Total redirects imported:":[""],"Double-check the file is the correct format!":[""],"OK":["Labi"],"Close":["Aizvērt"],"All imports will be appended to the current database.":[""],"Export":["Eksportēšana"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":[""],"WordPress redirects":[""],"Apache redirects":[""],"Nginx redirects":[""],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":[""],"Redirection JSON":["Pāradresētāja JSON"],"View":["Skatīt"],"Log files can be exported from the log pages.":[""],"Import/Export":["Importēt/Eksportēt"],"Logs":["Žurnalēšana"],"404 errors":["404 kļūdas"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":["Es vēlos sniegt papildus atbalstu."],"Support 💰":["Atbalstīt! 💰"],"Redirection saved":[""],"Log deleted":[""],"Settings saved":["Uzstādījumi tika saglabāti"],"Group saved":["Grupa tika saglabāta"],"Are you sure you want to delete this item?":["Vai tiešām vēlies dzēst šo vienību (-as)?","Vai tiešām vēlies dzēst šīs vienības?","Vai tiešām vēlies dzēst šīs vienības?"],"pass":[""],"All groups":["Visas grupas"],"301 - Moved Permanently":["301 - Pārvietots Pavisam"],"302 - Found":["302 - Atrasts"],"307 - Temporary Redirect":["307 - Pagaidu Pāradresācija"],"308 - Permanent Redirect":["308 - Galēja Pāradresācija"],"401 - Unauthorized":["401 - Nav Autorizējies"],"404 - Not Found":["404 - Nav Atrasts"],"Title":["Nosaukums"],"When matched":[""],"with HTTP code":["ar HTTP kodu"],"Show advanced options":["Rādīt papildu iespējas"],"Matched Target":[""],"Unmatched Target":[""],"Saving...":["Saglabā izmaiņas..."],"View notice":[""],"Invalid source URL":[""],"Invalid redirect action":[""],"Invalid redirect matcher":[""],"Unable to add new redirect":[""],"Something went wrong 🙁":["Kaut kas nogāja greizi 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[""],"Log entries (%d max)":[""],"Search by IP":["Meklēt pēc IP"],"Select bulk action":["Izvēlies lielapjoma darbību"],"Bulk Actions":["Lielapjoma Darbības"],"Apply":["Pielietot"],"First page":["Pirmā lapa"],"Prev page":["Iepriekšējā lapa"],"Current Page":[""],"of %(page)s":[""],"Next page":["Nākošā lapa"],"Last page":["Pēdējā lapa"],"%s item":["%s vienība","%s vienības","%s vienības"],"Select All":["Iezīmēt Visu"],"Sorry, something went wrong loading the data - please try again":[""],"No results":[""],"Delete the logs - are you sure?":[""],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[""],"Yes! Delete the logs":["Jā! Dzēst žurnālus"],"No! Don't delete the logs":["Nē! Nedzēst žurnālus"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":["Jaunāko ziņu Abonēšana"],"Want to keep up to date with changes to Redirection?":["Vai vēlies pirmais uzzināt par jaunākajām izmaiņām \"Pāradresācija\" spraudnī?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[""],"Your email address:":["Tava e-pasta adrese:"],"You've supported this plugin - thank you!":["Tu esi atbalstījis šo spraudni - paldies Tev!"],"You get useful software and I get to carry on making it better.":["Tu saņem noderīgu programmatūru, un es turpinu to padarīt labāku."],"Forever":["Mūžīgi"],"Delete the plugin - are you sure?":["Spraudņa dzēšana - vai tiešām vēlies to darīt?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Dzēšot šo spraudni, tiks nodzēstas visas Tevis izveidotās pāradresācijas, žurnalētie dati un spraudņa uzstādījumi. Dari to tikai tad, ja vēlies aizvākt spraudni pavisam, vai arī veikt tā pilnīgu atiestatīšanu."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Tikko spraudnis tiks nodzēsts, visas caur to uzstādītās pāradresācijas pārstās darboties. Gadījumā, ja tās šķietami turpina darboties, iztīri pārlūkprogrammas kešatmiņu."],"Yes! Delete the plugin":["Jā! Dzēst šo spraudni"],"No! Don't delete the plugin":["Nē! Nedzēst šo spraudni"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":[""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzīve ir vienkārši lieliska! Tā attīstīšanai ir veltīts daudz laika, un arī Tu vari sniegt atbalstu spraudņa tālākai attīstībai, {{strong}}veicot mazu ziedojumu{{/strong}}."],"Redirection Support":[""],"Support":["Atbalsts"],"404s":[""],"Log":[""],"Delete Redirection":[""],"Upload":["Augšupielādēt"],"Import":["Importēt"],"Update":["Saglabāt Izmaiņas"],"Auto-generate URL":["URL Autom. Izveide"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Unikāls identifikators, kas ļauj jaunumu plūsmas lasītājiem piekļūt Pāradresāciju žurnāla RSS (atstāj tukšu, lai to izveidotu automātiski)"],"RSS Token":["RSS Identifikators"],"404 Logs":["404 Žurnalēšana"],"(time to keep logs for)":["(laiks, cik ilgi paturēt ierakstus žurnālā)"],"Redirect Logs":["Pāradresāciju Žurnalēšana"],"I'm a nice person and I have helped support the author of this plugin":["Esmu foršs cilvēks, jo jau piedalījos šī spraudņa autora atbalstīšanā."],"Plugin Support":["Spraudņa Atbalstīšana"],"Options":["Uzstādījumi"],"Two months":["Divus mēnešus"],"A month":["Mēnesi"],"A week":["Nedēļu"],"A day":["Dienu"],"No logs":["Bez žurnalēšanas"],"Delete All":["Dzēst Visu"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Izmanto grupas, lai organizētu uzstādītās pāradresācijas. Grupas tiek piesaistītas modulim, kas nosaka, pēc kādiem darbības principiem (metodes) pāradresācijas konkrētajā grupā ir jāveic."],"Add Group":["Pievienot grupu"],"Search":["Meklēt"],"Groups":["Grupas"],"Save":["Saglabāt"],"Group":["Grupa"],"Match":[""],"Add new redirection":[""],"Cancel":["Atcelt"],"Download":["Lejupielādēt"],"Redirection":["Pāradresētājs"],"Settings":["Iestatījumi"],"Do nothing":[""],"Error (404)":[""],"Pass-through":[""],"Redirect to random post":["Pāradresēt uz nejauši izvēlētu rakstu"],"Redirect to URL":["Pāradresēt uz URL"],"Invalid group when creating redirect":[""],"IP":["IP"],"Source URL":["Sākotnējais URL"],"Date":["Datums"],"Add Redirect":["Pievienot Pāradresāciju"],"All modules":[""],"View Redirects":["Skatīt pāradresācijas"],"Module":["Modulis"],"Redirects":["Pāradresācijas"],"Name":["Nosaukums"],"Filter":["Atlasīt"],"Reset hits":["Atiestatīt Izpildes"],"Enable":["Ieslēgt"],"Disable":["Atslēgt"],"Delete":["Dzēst"],"Edit":["Labot"],"Last Access":["Pēdējā piekļuve"],"Hits":["Izpildes"],"URL":["URL"],"Type":["Veids"],"Modified Posts":["Izmainītie Raksti"],"Redirections":["Pāradresācijas"],"User Agent":["Programmatūras Dati"],"URL and user agent":["URL un iekārtas dati"],"Target URL":["Galamērķa URL"],"URL only":["tikai URL"],"Regex":["Regulārā Izteiksme"],"Referrer":["Ieteicējs (Referrer)"],"URL and referrer":["URL un ieteicējs (referrer)"],"Logged Out":["Ja nav autorizējies"],"Logged In":["Ja autorizējies"],"URL and login status":["URL un autorizācijas statuss"]}
1
+ {"":[],"Problem":[""],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":[""],"Enter full URL, including http:// or https://":[""],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":["Pāradresāciju Testēšana"],"Target":[""],"URL is not being redirected with Redirection":["URL netiek pāradresēts ar šo spraudni"],"URL is being redirected with Redirection":["URL tiek pāradresēts ar šo spraudni"],"Unable to load details":["Neizdevās izgūt informāciju"],"Enter server URL to match against":[""],"Server":["Servera domēns"],"Enter role or capability value":[""],"Role":[""],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":["Relatīvs sākotnējais URL no kura vēlies veikt pāradresāciju"],"Optional description - describe the purpose of this redirect":["Skaidrojums (nav obligāti) - apraksti, kāds ir mērķis šai pāradresācijai"],"The target URL you want to redirect to if matched":["Galamērķa URL, uz kuru Tu vēlies pāradresēt sākotnējo saiti"],"(beta)":["(eksperimentāls)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Piespiedu pāradresācija no HTTP uz HTTPS. Lūdzu pārliecinies, ka Tavai tīmekļa vietnei HTTPS darbojas korekti, pirms šī parametra iespējošanas."],"Force HTTPS":["Piespiedu HTTPS"],"GDPR / Privacy information":["GDPR / Informācija par privātumu"],"Add New":["Pievienot Jaunu"],"Please logout and login again.":["Lūdzu izej no sistēmas, un autorizējies tajā vēlreiz."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Spraudnim \"Pāradresācija\" nepieciešama PHP v%1s versija. Tu pašlaik izmanto v%2s - lūdzu atjaunini vai pārslēdz PHP versiju šai tīmekļa vietnei."],"URL and role/capability":[""],"URL and server":["URL un servera domēns"],"Form request":[""],"Relative /wp-json/":[""],"Proxy over Admin AJAX":[""],"Default /wp-json/":[""],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":["Tīmekļa vietnes un Sākuma URL ir pretrunīgi - lūdzu veic labojumus Gavenajos Uzstādījumos"],"Site and home are consistent":["Tīmekļa vietnes un sākumlapas URL ir saderīgi"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":[""],"Header value":["Galvenes saturs"],"Header name":["Galvenes nosaukums"],"HTTP Header":["HTTP Galvene"],"WordPress filter name":["WordPress filtra nosaukums"],"Filter Name":["Filtra Nosaukums"],"Cookie value":["Sīkdatnes saturs"],"Cookie name":["Sīkdatnes nosaukums"],"Cookie":["Sīkdatne"],"Target URL when not matched":["Galamērķa URL, ja nosacījums nav izpildīts"],"Target URL when matched":["Galamērķa URL, ja nosacījums izpildīts"],"clearing your cache.":[""],"If you are using a caching system such as Cloudflare then please read this: ":["Ja Tu izmanto kešošanas sistēmu, piemēram \"CloudFlare\", lūdzi izlasi šo:"],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":["URL un sīkdatne"],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":["Neviens no ieteikumiem nelīdzēja"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Lūdzu apskati <a href=\"https://redirection.me/support/problems/\">sarakstu ar biežākajām problēmām</a>."],"Unable to load Redirection ☹️":["Neizdevās ielādēt spraudni \"Pāradresācija\" ☹️"],"WordPress REST API is working at %s":[""],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":[""],"Unknown Useragent":["Nezināma Iekārta"],"Device":["Iekārta"],"Operating System":["Operētājsistēma"],"Browser":["Pārlūkprogramma"],"Engine":[""],"Useragent":["Iekārtas dati"],"Agent":[""],"No IP logging":["Bez IP žurnalēšanas"],"Full IP logging":["Pilna IP žurnalēšana"],"Anonymize IP (mask last part)":["Daļēja IP maskēšana"],"Monitor changes to %(type)s":["Pārraudzīt izmaiņas %(type)s saturā"],"IP Logging":["IP Žurnalēšana"],"(select IP logging level)":["(atlasiet IP žurnalēšanas līmeni)"],"Geo Info":[""],"Agent Info":[""],"Filter by IP":["Atlasīt pēc IP"],"Referrer / User Agent":["Ieteicējs / Iekārtas Dati"],"Geo IP Error":["IP Ģeolokācijas Kļūda"],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":["Par šo adresi nav pieejama informācija."],"Geo IP":["IP Ģeolokācija"],"City":["Pilsēta"],"Area":["Reģions"],"Timezone":["Laika Zona"],"Geo Location":["Ģeogr. Atrašanās Vieta"],"Powered by {{link}}redirect.li{{/link}}":["Darbību nodrošina {{link}}redirect.li{{/link}}"],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Ja vēlies ziņot par nepilnību, lūdzu iepazīsties ar {{report}}Ziņošana Par Nepilnībām{{/report}} ceļvedi."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":["Vai tiešām vēlies importēt datus no %s?"],"Plugin Importers":["Importēšana no citiem Spraudņiem"],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":["Pāradresētājs nav pareizi uzstādīts"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":["Spraudņa Statuss"],"Custom":[""],"Mobile":[""],"Feed Readers":["Jaunumu Plūsmas lasītāji"],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":["URL Pārraudzība"],"Delete 404s":["Dzēst 404 kļūdas"],"Delete all logs for this 404":["Dzēst visus ierakstus par šo 404"],"Delete all from IP %s":["Dzēst visu par IP %s"],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":["Nav iespējams izveidot grupu"],"Failed to fix database tables":["Neizdevās izlabot tabulas datubāzē"],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":["Konstatētas derīgas grupas"],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":["Tabulas datubāzē"],"The following tables are missing:":["Iztrūkst šādas tabulas:"],"All tables present":["Visas tabulas ir pieejamas"],"Cached Redirection detected":["Konstatēta kešatmiņā saglabāta pāradresācija"],"Please clear your browser cache and reload this page.":["Lūdzu iztīri savas pārlūkprogrammas kešatmiņu un pārlādē šo lapu."],"The data on this page has expired, please reload.":["Dati šajā lapā ir novecojuši. Lūdzu pārlādē to."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":[""],"Need help?":["Nepieciešama palīdzība?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":["Secība"],"410 - Gone":["410 - Aizvākts"],"Position":["Pozīcija"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":[""],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":[""],"Import a CSV, .htaccess, or JSON file.":[""],"Click 'Add File' or drag and drop here.":[""],"Add File":[""],"File selected":[""],"Importing":[""],"Finished importing":[""],"Total redirects imported:":[""],"Double-check the file is the correct format!":[""],"OK":["Labi"],"Close":["Aizvērt"],"All imports will be appended to the current database.":[""],"Export":["Eksportēšana"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":[""],"WordPress redirects":[""],"Apache redirects":[""],"Nginx redirects":[""],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":[""],"Redirection JSON":["Pāradresētāja JSON"],"View":["Skatīt"],"Log files can be exported from the log pages.":[""],"Import/Export":["Importēt/Eksportēt"],"Logs":["Žurnalēšana"],"404 errors":["404 kļūdas"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":["Es vēlos sniegt papildus atbalstu."],"Support 💰":["Atbalstīt! 💰"],"Redirection saved":[""],"Log deleted":[""],"Settings saved":["Uzstādījumi tika saglabāti"],"Group saved":["Grupa tika saglabāta"],"Are you sure you want to delete this item?":["Vai tiešām vēlies dzēst šo vienību (-as)?","Vai tiešām vēlies dzēst šīs vienības?","Vai tiešām vēlies dzēst šīs vienības?"],"pass":[""],"All groups":["Visas grupas"],"301 - Moved Permanently":["301 - Pārvietots Pavisam"],"302 - Found":["302 - Atrasts"],"307 - Temporary Redirect":["307 - Pagaidu Pāradresācija"],"308 - Permanent Redirect":["308 - Galēja Pāradresācija"],"401 - Unauthorized":["401 - Nav Autorizējies"],"404 - Not Found":["404 - Nav Atrasts"],"Title":["Nosaukums"],"When matched":[""],"with HTTP code":["ar HTTP kodu"],"Show advanced options":["Rādīt papildu iespējas"],"Matched Target":[""],"Unmatched Target":[""],"Saving...":["Saglabā izmaiņas..."],"View notice":[""],"Invalid source URL":[""],"Invalid redirect action":[""],"Invalid redirect matcher":[""],"Unable to add new redirect":[""],"Something went wrong 🙁":["Kaut kas nogāja greizi 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[""],"Log entries (%d max)":[""],"Search by IP":["Meklēt pēc IP"],"Select bulk action":["Izvēlies lielapjoma darbību"],"Bulk Actions":["Lielapjoma Darbības"],"Apply":["Pielietot"],"First page":["Pirmā lapa"],"Prev page":["Iepriekšējā lapa"],"Current Page":[""],"of %(page)s":[""],"Next page":["Nākošā lapa"],"Last page":["Pēdējā lapa"],"%s item":["%s vienība","%s vienības","%s vienības"],"Select All":["Iezīmēt Visu"],"Sorry, something went wrong loading the data - please try again":[""],"No results":[""],"Delete the logs - are you sure?":[""],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[""],"Yes! Delete the logs":["Jā! Dzēst žurnālus"],"No! Don't delete the logs":["Nē! Nedzēst žurnālus"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":["Jaunāko ziņu Abonēšana"],"Want to keep up to date with changes to Redirection?":["Vai vēlies pirmais uzzināt par jaunākajām izmaiņām \"Pāradresācija\" spraudnī?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[""],"Your email address:":["Tava e-pasta adrese:"],"You've supported this plugin - thank you!":["Tu esi atbalstījis šo spraudni - paldies Tev!"],"You get useful software and I get to carry on making it better.":["Tu saņem noderīgu programmatūru, un es turpinu to padarīt labāku."],"Forever":["Mūžīgi"],"Delete the plugin - are you sure?":["Spraudņa dzēšana - vai tiešām vēlies to darīt?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Dzēšot šo spraudni, tiks nodzēstas visas Tevis izveidotās pāradresācijas, žurnalētie dati un spraudņa uzstādījumi. Dari to tikai tad, ja vēlies aizvākt spraudni pavisam, vai arī veikt tā pilnīgu atiestatīšanu."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Tikko spraudnis tiks nodzēsts, visas caur to uzstādītās pāradresācijas pārstās darboties. Gadījumā, ja tās šķietami turpina darboties, iztīri pārlūkprogrammas kešatmiņu."],"Yes! Delete the plugin":["Jā! Dzēst šo spraudni"],"No! Don't delete the plugin":["Nē! Nedzēst šo spraudni"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":[""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzīve ir vienkārši lieliska! Tā attīstīšanai ir veltīts daudz laika, un arī Tu vari sniegt atbalstu spraudņa tālākai attīstībai, {{strong}}veicot mazu ziedojumu{{/strong}}."],"Redirection Support":[""],"Support":["Atbalsts"],"404s":[""],"Log":[""],"Delete Redirection":[""],"Upload":["Augšupielādēt"],"Import":["Importēt"],"Update":["Saglabāt Izmaiņas"],"Auto-generate URL":["URL Autom. Izveide"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Unikāls identifikators, kas ļauj jaunumu plūsmas lasītājiem piekļūt Pāradresāciju žurnāla RSS (atstāj tukšu, lai to izveidotu automātiski)"],"RSS Token":["RSS Identifikators"],"404 Logs":["404 Žurnalēšana"],"(time to keep logs for)":["(laiks, cik ilgi paturēt ierakstus žurnālā)"],"Redirect Logs":["Pāradresāciju Žurnalēšana"],"I'm a nice person and I have helped support the author of this plugin":["Esmu foršs cilvēks, jo jau piedalījos šī spraudņa autora atbalstīšanā."],"Plugin Support":["Spraudņa Atbalstīšana"],"Options":["Uzstādījumi"],"Two months":["Divus mēnešus"],"A month":["Mēnesi"],"A week":["Nedēļu"],"A day":["Dienu"],"No logs":["Bez žurnalēšanas"],"Delete All":["Dzēst Visu"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Izmanto grupas, lai organizētu uzstādītās pāradresācijas. Grupas tiek piesaistītas modulim, kas nosaka, pēc kādiem darbības principiem (metodes) pāradresācijas konkrētajā grupā ir jāveic."],"Add Group":["Pievienot grupu"],"Search":["Meklēt"],"Groups":["Grupas"],"Save":["Saglabāt"],"Group":["Grupa"],"Match":[""],"Add new redirection":[""],"Cancel":["Atcelt"],"Download":["Lejupielādēt"],"Redirection":["Pāradresētājs"],"Settings":["Iestatījumi"],"Do nothing":[""],"Error (404)":[""],"Pass-through":[""],"Redirect to random post":["Pāradresēt uz nejauši izvēlētu rakstu"],"Redirect to URL":["Pāradresēt uz URL"],"Invalid group when creating redirect":[""],"IP":["IP"],"Source URL":["Sākotnējais URL"],"Date":["Datums"],"Add Redirect":["Pievienot Pāradresāciju"],"All modules":[""],"View Redirects":["Skatīt pāradresācijas"],"Module":["Modulis"],"Redirects":["Pāradresācijas"],"Name":["Nosaukums"],"Filter":["Atlasīt"],"Reset hits":["Atiestatīt Izpildes"],"Enable":["Ieslēgt"],"Disable":["Atslēgt"],"Delete":["Dzēst"],"Edit":["Labot"],"Last Access":["Pēdējā piekļuve"],"Hits":["Izpildes"],"URL":["URL"],"Type":["Veids"],"Modified Posts":["Izmainītie Raksti"],"Redirections":["Pāradresācijas"],"User Agent":["Programmatūras Dati"],"URL and user agent":["URL un iekārtas dati"],"Target URL":["Galamērķa URL"],"URL only":["tikai URL"],"Regex":["Regulārā Izteiksme"],"Referrer":["Ieteicējs (Referrer)"],"URL and referrer":["URL un ieteicējs (referrer)"],"Logged Out":["Ja nav autorizējies"],"Logged In":["Ja autorizējies"],"URL and login status":["URL un autorizācijas statuss"]}
locale/json/redirection-pt_BR.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":["Digite o URL inteiro, incluindo http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."],"Redirect Tester":["Teste de redirecionamento"],"Target":["Destino"],"URL is not being redirected with Redirection":["O URL não está sendo redirecionado com o Redirection"],"URL is being redirected with Redirection":["O URL está sendo redirecionado com o Redirection"],"Unable to load details":["Não foi possível carregar os detalhes"],"Enter server URL to match against":["Digite o URL do servidor para correspondência"],"Server":["Servidor"],"Enter role or capability value":["Digite a função ou capacidade"],"Role":["Função"],"Match against this browser referrer text":["Texto do referenciador do navegador para correspondênica"],"Match against this browser user agent":["Usuário de agente do navegador para correspondência"],"The relative URL you want to redirect from":["O URL relativo que você quer redirecionar"],"Optional description - describe the purpose of this redirect":["Descrição opcional. Descreva o propósito deste redirecionamento"],"The target URL you want to redirect to if matched":["O URL de destino para qual você quer redirecionar, se houver correspondência"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"],"Force HTTPS":["Forçar HTTPS"],"GDPR / Privacy information":["GDPR / Informações sobre privacidade"],"Add New":["Adicionar novo"],"Please logout and login again.":["Desconecte-se da sua conta e acesse novamente."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["O Redirection requer o PHP versão v%1s, mas você está usando a v%2s. Atualize seu PHP"],"URL and role/capability":["URL e função/capacidade"],"URL and server":["URL e servidor"],"Form request":["Solicitação via formulário"],"Relative /wp-json/":["/wp-json/ relativo"],"Proxy over Admin AJAX":["Proxy via Admin AJAX"],"Default /wp-json/":["/wp-json/ padrão"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Protocolo do endereço do WordPress e do site"],"Site and home URL are inconsistent - please correct from your General settings":["O URL do WordPress e do site são inconsistentes. Corrija em Configurações > Geral no WordPress"],"Site and home are consistent":["O endereço do WordPress e do site são consistentes"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."],"Accept Language":["Aceitar Idioma"],"Header value":["Valor do cabeçalho"],"Header name":["Nome cabeçalho"],"HTTP Header":["Cabeçalho HTTP"],"WordPress filter name":["Nome do filtro WordPress"],"Filter Name":["Nome do filtro"],"Cookie value":["Valor Cookie"],"Cookie name":["Nome do cookie"],"Cookie":["Cookie"],"Target URL when not matched":["URL de destino quando não corresponder"],"Target URL when matched":["URL de destino quando corresponder"],"clearing your cache.":["limpando seu cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "],"URL and HTTP header":["URL e cabeçalho HTTP"],"URL and custom filter":["URL e filtro personalizado"],"URL and cookie":["URL e cookie"],"404 deleted":["404 excluído"],"Raw /index.php?rest_route=/":["/index.php?rest_route=/"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Como o Redirection usa a API REST. Não altere a menos que seja necessário"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."],"None of the suggestions helped":["Nenhuma das sugestões ajudou"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."],"Unable to load Redirection ☹️":["Não foi possível carregar o Redirection ☹️"],"WordPress REST API is working at %s":["A API REST do WordPress está funcionando em %s"],"WordPress REST API":["A API REST do WordPress"],"REST API is not working so routes not checked":["A API REST não está funcionado, por isso as rotas não foram verificadas"],"Redirection routes are working":["As rotas do Redirection estão funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"],"Redirection routes":["Rotas do Redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erro de agente de usuário"],"Unknown Useragent":["Agente de usuário desconhecido"],"Device":["Dispositivo"],"Operating System":["Sistema operacional"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuário"],"Agent":["Agente"],"No IP logging":["Não registrar IP"],"Full IP logging":["Registrar IP completo"],"Anonymize IP (mask last part)":["Tornar IP anônimo (mascarar a última parte)"],"Monitor changes to %(type)s":["Monitorar alterações em %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(selecione o nível de registro de IP)"],"Geo Info":["Informações geográficas"],"Agent Info":["Informação sobre o agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Referenciador / Agente de usuário"],"Geo IP Error":["Erro IP Geo"],"Something went wrong obtaining this information":["Algo deu errado ao obter essa informação"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Este é um IP de uma rede privada. Isso significa que ele está localizado dentro de uma rede residencial ou comercial e nenhuma outra informação pode ser exibida."],"No details are known for this address.":["Nenhum detalhe é conhecido para este endereço."],"Geo IP":["IP Geo"],"City":["Cidade"],"Area":["Área"],"Timezone":["Fuso horário"],"Geo Location":["Coordenadas"],"Powered by {{link}}redirect.li{{/link}}":["Fornecido por {{link}}redirect.li{{/link}}"],"Trash":["Lixeira"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"],"Never cache":["Nunca fazer cache"],"An hour":["Uma hora"],"Redirect Cache":["Cache dos redirecionamentos"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"],"Are you sure you want to import from %s?":["Tem certeza de que deseja importar de %s?"],"Plugin Importers":["Importar de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."],"Redirection not installed properly":["O Redirection não foi instalado adequadamente"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["O Redirection requer o WordPress v%1s, mas você está usando a versão v%2s. Atualize seu WordPress"],"Default WordPress \"old slugs\"":["Redirecionamentos de \"slugs anteriores\" do WordPress"],"Create associated redirect (added to end of URL)":["Criar redirecionamento atrelado (adicionado ao fim do URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."],"⚡️ Magic fix ⚡️":["⚡️ Correção mágica ⚡️"],"Plugin Status":["Status do plugin"],"Custom":["Personalizado"],"Mobile":["Móvel"],"Feed Readers":["Leitores de feed"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Alterações do monitoramento de URLs"],"Save changes to this group":["Salvar alterações neste grupo"],"For example \"/amp\"":["Por exemplo, \"/amp\""],"URL Monitor":["Monitoramento de URLs"],"Delete 404s":["Excluir 404s"],"Delete all logs for this 404":["Excluir todos os registros para este 404"],"Delete all from IP %s":["Excluir registros do IP %s"],"Delete all matching \"%s\"":["Excluir tudo que corresponder a \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."],"Unable to load Redirection":["Não foi possível carregar o Redirection"],"Unable to create group":["Não foi possível criar grupo"],"Failed to fix database tables":["Falha ao corrigir tabelas do banco de dados"],"Post monitor group is valid":["O grupo do monitoramento de posts é válido"],"Post monitor group is invalid":["O grupo de monitoramento de post é inválido"],"Post monitor group":["Grupo do monitoramento de posts"],"All redirects have a valid group":["Todos os redirecionamentos têm um grupo válido"],"Redirects with invalid groups detected":["Redirecionamentos com grupos inválidos detectados"],"Valid redirect group":["Grupo de redirecionamento válido"],"Valid groups detected":["Grupos válidos detectados"],"No valid groups, so you will not be able to create any redirects":["Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"],"Valid groups":["Grupos válidos"],"Database tables":["Tabelas do banco de dados"],"The following tables are missing:":["As seguintes tabelas estão faltando:"],"All tables present":["Todas as tabelas presentes"],"Cached Redirection detected":["O Redirection foi detectado no cache"],"Please clear your browser cache and reload this page.":["Limpe o cache do seu navegador e recarregue esta página."],"The data on this page has expired, please reload.":["Os dados nesta página expiraram, por favor recarregue."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["O WordPress não retornou uma resposta. Isso pode significar que ocorreu um erro ou que a solicitação foi bloqueada. Confira o error_log de seu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Seu servidor retornou um erro 403 Proibido, que pode indicar que a solicitação foi bloqueada. Você está usando um firewall ou um plugin de segurança?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Se você acha que o erro é do Redirection, abra um chamado."],"This may be caused by another plugin - look at your browser's error console for more details.":["Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."],"Loading, please wait...":["Carregando, aguarde..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."],"Create Issue":["Criar chamado"],"Email":["E-mail"],"Important details":["Detalhes importantes"],"Need help?":["Precisa de ajuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."],"Pos":["Pos"],"410 - Gone":["410 - Não existe mais"],"Position":["Posição"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."],"Import to group":["Importar para grupo"],"Import a CSV, .htaccess, or JSON file.":["Importar um arquivo CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Clique 'Adicionar arquivo' ou arraste e solte aqui."],"Add File":["Adicionar arquivo"],"File selected":["Arquivo selecionado"],"Importing":["Importando"],"Finished importing":["Importação concluída"],"Total redirects imported:":["Total de redirecionamentos importados:"],"Double-check the file is the correct format!":["Verifique novamente se o arquivo é o formato correto!"],"OK":["OK"],"Close":["Fechar"],"All imports will be appended to the current database.":["Todas as importações serão anexadas ao banco de dados atual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess do Apache"],"Nginx rewrite rules":["Regras de reescrita do Nginx"],"Redirection JSON":["JSON do Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Arquivos de registro pode ser exportado das páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Erro 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"],"I'd like to support some more.":["Eu gostaria de ajudar mais um pouco."],"Support 💰":["Doação 💰"],"Redirection saved":["Redirecionamento salvo"],"Log deleted":["Registro excluído"],"Settings saved":["Configurações salvas"],"Group saved":["Grupo salvo"],"Are you sure you want to delete this item?":["Tem certeza de que deseja excluir este item?","Tem certeza de que deseja excluir estes item?"],"pass":["manter url"],"All groups":["Todos os grupos"],"301 - Moved Permanently":["301 - Movido"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirecionamento temporário"],"308 - Permanent Redirect":["308 - Redirecionamento permanente"],"401 - Unauthorized":["401 - Não autorizado"],"404 - Not Found":["404 - Não encontrado"],"Title":["Título"],"When matched":["Quando corresponder"],"with HTTP code":["com código HTTP"],"Show advanced options":["Exibir opções avançadas"],"Matched Target":["Destino correspondido"],"Unmatched Target":["Destino não correspondido"],"Saving...":["Salvando..."],"View notice":["Veja o aviso"],"Invalid source URL":["URL de origem inválido"],"Invalid redirect action":["Ação de redirecionamento inválida"],"Invalid redirect matcher":["Critério de redirecionamento inválido"],"Unable to add new redirect":["Não foi possível criar novo redirecionamento"],"Something went wrong 🙁":["Algo deu errado 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"],"Log entries (%d max)":["Entradas do registro (máx %d)"],"Search by IP":["Pesquisar por IP"],"Select bulk action":["Selecionar ações em massa"],"Bulk Actions":["Ações em massa"],"Apply":["Aplicar"],"First page":["Primeira página"],"Prev page":["Página anterior"],"Current Page":["Página atual"],"of %(page)s":["de %(page)s"],"Next page":["Próxima página"],"Last page":["Última página"],"%s item":["%s item","%s itens"],"Select All":["Selecionar tudo"],"Sorry, something went wrong loading the data - please try again":["Desculpe, mas algo deu errado ao carregar os dados - tente novamente"],"No results":["Nenhum resultado"],"Delete the logs - are you sure?":["Excluir os registros - Você tem certeza?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."],"Yes! Delete the logs":["Sim! Exclua os registros"],"No! Don't delete the logs":["Não! Não exclua os registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."],"Newsletter":["Boletim"],"Want to keep up to date with changes to Redirection?":["Quer ficar a par de mudanças no Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."],"Your email address:":["Seu endereço de e-mail:"],"You've supported this plugin - thank you!":["Você apoiou este plugin - obrigado!"],"You get useful software and I get to carry on making it better.":["Você obtém softwares úteis e eu continuo fazendo isso melhor."],"Forever":["Para sempre"],"Delete the plugin - are you sure?":["Excluir o plugin - Você tem certeza?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."],"Yes! Delete the plugin":["Sim! Exclua o plugin"],"No! Don't delete the plugin":["Não! Não exclua o plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gerencie todos os seus redirecionamentos 301 e monitore erros 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."],"Redirection Support":["Ajuda do Redirection"],"Support":["Ajuda"],"404s":["404s"],"Log":["Registro"],"Delete Redirection":["Excluir o Redirection"],"Upload":["Carregar"],"Import":["Importar"],"Update":["Atualizar"],"Auto-generate URL":["Gerar automaticamente o URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registros de 404"],"(time to keep logs for)":["(tempo para manter os registros)"],"Redirect Logs":["Registros de redirecionamento"],"I'm a nice person and I have helped support the author of this plugin":["Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"],"Plugin Support":["Suporte do plugin"],"Options":["Opções"],"Two months":["Dois meses"],"A month":["Um mês"],"A week":["Uma semana"],"A day":["Um dia"],"No logs":["Não registrar"],"Delete All":["Apagar Tudo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use grupos para organizar os seus redirecionamentos. Os grupos são associados a um módulo, e o módulo afeta como os redirecionamentos do grupo funcionam. Na dúvida, use o módulo WordPress."],"Add Group":["Adicionar grupo"],"Search":["Pesquisar"],"Groups":["Grupos"],"Save":["Salvar"],"Group":["Grupo"],"Match":["Corresponder"],"Add new redirection":["Adicionar novo redirecionamento"],"Cancel":["Cancelar"],"Download":["Baixar"],"Redirection":["Redirection"],"Settings":["Configurações"],"Do nothing":["Fazer nada"],"Error (404)":["Erro (404)"],"Pass-through":["Manter URL de origem"],"Redirect to random post":["Redirecionar para um post aleatório"],"Redirect to URL":["Redirecionar para URL"],"Invalid group when creating redirect":["Grupo inválido ao criar o redirecionamento"],"IP":["IP"],"Source URL":["URL de origem"],"Date":["Data"],"Add Redirect":["Adicionar redirecionamento"],"All modules":["Todos os módulos"],"View Redirects":["Ver redirecionamentos"],"Module":["Módulo"],"Redirects":["Redirecionamentos"],"Name":["Nome"],"Filter":["Filtrar"],"Reset hits":["Redefinir acessos"],"Enable":["Ativar"],"Disable":["Desativar"],"Delete":["Excluir"],"Edit":["Editar"],"Last Access":["Último Acesso"],"Hits":["Acessos"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Posts modificados"],"Redirections":["Redirecionamentos"],"User Agent":["Agente de usuário"],"URL and user agent":["URL e agente de usuário"],"Target URL":["URL de destino"],"URL only":["URL somente"],"Regex":["Regex"],"Referrer":["Referenciador"],"URL and referrer":["URL e referenciador"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["URL e status de login"]}
1
+ {"":[],"Problem":["Problema"],"Good":["Bom"],"Check":["Verificar"],"Check Redirect":["Verificar redirecionamento"],"Check redirect for: {{code}}%s{{/code}}":["Verifique o redirecionamento de: {{code}}%s{{/code}}"],"What does this mean?":["O que isto significa?"],"Not using Redirection":["Sem usar o Redirection"],"Using Redirection":["Usando o Redirection"],"Found":["Encontrado"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} para {{code}}%(url)s{{/code}}"],"Expected":["Esperado"],"Error":["Erro"],"Enter full URL, including http:// or https://":["Digite o URL inteiro, incluindo http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."],"Redirect Tester":["Teste de redirecionamento"],"Target":["Destino"],"URL is not being redirected with Redirection":["O URL não está sendo redirecionado com o Redirection"],"URL is being redirected with Redirection":["O URL está sendo redirecionado com o Redirection"],"Unable to load details":["Não foi possível carregar os detalhes"],"Enter server URL to match against":["Digite o URL do servidor para correspondência"],"Server":["Servidor"],"Enter role or capability value":["Digite a função ou capacidade"],"Role":["Função"],"Match against this browser referrer text":["Texto do referenciador do navegador para correspondênica"],"Match against this browser user agent":["Usuário de agente do navegador para correspondência"],"The relative URL you want to redirect from":["O URL relativo que você quer redirecionar"],"Optional description - describe the purpose of this redirect":["Descrição opcional. Descreva o propósito deste redirecionamento"],"The target URL you want to redirect to if matched":["O URL de destino para qual você quer redirecionar, se houver correspondência"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"],"Force HTTPS":["Forçar HTTPS"],"GDPR / Privacy information":["GDPR / Informações sobre privacidade (em inglês)"],"Add New":["Adicionar novo"],"Please logout and login again.":["Desconecte-se da sua conta e acesse novamente."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["O Redirection requer o PHP versão v%1s, mas você está usando a v%2s. Atualize seu PHP"],"URL and role/capability":["URL e função/capacidade"],"URL and server":["URL e servidor"],"Form request":["Solicitação via formulário"],"Relative /wp-json/":["/wp-json/ relativo"],"Proxy over Admin AJAX":["Proxy via Admin AJAX"],"Default /wp-json/":["/wp-json/ padrão"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Protocolo do endereço do WordPress e do site"],"Site and home URL are inconsistent - please correct from your General settings":["O URL do WordPress e do site são inconsistentes. Corrija em Configurações > Geral no WordPress"],"Site and home are consistent":["O endereço do WordPress e do site são consistentes"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."],"Accept Language":["Aceitar Idioma"],"Header value":["Valor do cabeçalho"],"Header name":["Nome cabeçalho"],"HTTP Header":["Cabeçalho HTTP"],"WordPress filter name":["Nome do filtro WordPress"],"Filter Name":["Nome do filtro"],"Cookie value":["Valor do cookie"],"Cookie name":["Nome do cookie"],"Cookie":["Cookie"],"Target URL when not matched":["URL de destino quando não corresponder"],"Target URL when matched":["URL de destino quando corresponder"],"clearing your cache.":["limpando seu cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "],"URL and HTTP header":["URL e cabeçalho HTTP"],"URL and custom filter":["URL e filtro personalizado"],"URL and cookie":["URL e cookie"],"404 deleted":["404 excluído"],"Raw /index.php?rest_route=/":["/index.php?rest_route=/"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Como o Redirection usa a API REST. Não altere a menos que seja necessário"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."],"None of the suggestions helped":["Nenhuma das sugestões ajudou"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."],"Unable to load Redirection ☹️":["Não foi possível carregar o Redirection ☹️"],"WordPress REST API is working at %s":["A API REST do WordPress está funcionando em %s"],"WordPress REST API":["A API REST do WordPress"],"REST API is not working so routes not checked":["A API REST não está funcionado, por isso as rotas não foram verificadas"],"Redirection routes are working":["As rotas do Redirection estão funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"],"Redirection routes":["Rotas do Redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erro de agente de usuário"],"Unknown Useragent":["Agente de usuário desconhecido"],"Device":["Dispositivo"],"Operating System":["Sistema operacional"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuário"],"Agent":["Agente"],"No IP logging":["Não registrar IP"],"Full IP logging":["Registrar IP completo"],"Anonymize IP (mask last part)":["Tornar IP anônimo (mascarar a última parte)"],"Monitor changes to %(type)s":["Monitorar alterações em %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(selecione o nível de registro de IP)"],"Geo Info":["Informações geográficas"],"Agent Info":["Informação sobre o agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Referenciador / Agente de usuário"],"Geo IP Error":["Erro IP Geo"],"Something went wrong obtaining this information":["Algo deu errado ao obter essa informação"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Este é um IP de uma rede privada. Isso significa que ele está localizado dentro de uma rede residencial ou comercial e nenhuma outra informação pode ser exibida."],"No details are known for this address.":["Nenhum detalhe é conhecido para este endereço."],"Geo IP":["IP Geo"],"City":["Cidade"],"Area":["Região"],"Timezone":["Fuso horário"],"Geo Location":["Coordenadas"],"Powered by {{link}}redirect.li{{/link}}":["Fornecido por {{link}}redirect.li{{/link}}"],"Trash":["Lixeira"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"],"Never cache":["Nunca fazer cache"],"An hour":["Uma hora"],"Redirect Cache":["Cache dos redirecionamentos"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"],"Are you sure you want to import from %s?":["Tem certeza de que deseja importar de %s?"],"Plugin Importers":["Importar de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."],"Redirection not installed properly":["O Redirection não foi instalado adequadamente"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["O Redirection requer o WordPress v%1s, mas você está usando a versão v%2s. Atualize seu WordPress"],"Default WordPress \"old slugs\"":["Redirecionamentos de \"slugs anteriores\" do WordPress"],"Create associated redirect (added to end of URL)":["Criar redirecionamento atrelado (adicionado ao fim do URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."],"⚡️ Magic fix ⚡️":["⚡️ Correção mágica ⚡️"],"Plugin Status":["Status do plugin"],"Custom":["Personalizado"],"Mobile":["Móvel"],"Feed Readers":["Leitores de feed"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Alterações do monitoramento de URLs"],"Save changes to this group":["Salvar alterações neste grupo"],"For example \"/amp\"":["Por exemplo, \"/amp\""],"URL Monitor":["Monitoramento de URLs"],"Delete 404s":["Excluir 404s"],"Delete all logs for this 404":["Excluir todos os registros para este 404"],"Delete all from IP %s":["Excluir registros do IP %s"],"Delete all matching \"%s\"":["Excluir tudo que corresponder a \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."],"Unable to load Redirection":["Não foi possível carregar o Redirection"],"Unable to create group":["Não foi possível criar grupo"],"Failed to fix database tables":["Falha ao corrigir tabelas do banco de dados"],"Post monitor group is valid":["O grupo do monitoramento de posts é válido"],"Post monitor group is invalid":["O grupo de monitoramento de post é inválido"],"Post monitor group":["Grupo do monitoramento de posts"],"All redirects have a valid group":["Todos os redirecionamentos têm um grupo válido"],"Redirects with invalid groups detected":["Redirecionamentos com grupos inválidos detectados"],"Valid redirect group":["Grupo de redirecionamento válido"],"Valid groups detected":["Grupos válidos detectados"],"No valid groups, so you will not be able to create any redirects":["Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"],"Valid groups":["Grupos válidos"],"Database tables":["Tabelas do banco de dados"],"The following tables are missing:":["As seguintes tabelas estão faltando:"],"All tables present":["Todas as tabelas presentes"],"Cached Redirection detected":["O Redirection foi detectado no cache"],"Please clear your browser cache and reload this page.":["Limpe o cache do seu navegador e recarregue esta página."],"The data on this page has expired, please reload.":["Os dados nesta página expiraram, por favor recarregue."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["O WordPress não retornou uma resposta. Isso pode significar que ocorreu um erro ou que a solicitação foi bloqueada. Confira o error_log de seu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Seu servidor retornou um erro 403 Proibido, que pode indicar que a solicitação foi bloqueada. Você está usando um firewall ou um plugin de segurança?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Se você acha que o erro é do Redirection, abra um chamado."],"This may be caused by another plugin - look at your browser's error console for more details.":["Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."],"Loading, please wait...":["Carregando, aguarde..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."],"Create Issue":["Criar chamado"],"Email":["E-mail"],"Important details":["Detalhes importantes"],"Need help?":["Precisa de ajuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."],"Pos":["Pos"],"410 - Gone":["410 - Não existe mais"],"Position":["Posição"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."],"Import to group":["Importar para grupo"],"Import a CSV, .htaccess, or JSON file.":["Importar um arquivo CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Clique 'Adicionar arquivo' ou arraste e solte aqui."],"Add File":["Adicionar arquivo"],"File selected":["Arquivo selecionado"],"Importing":["Importando"],"Finished importing":["Importação concluída"],"Total redirects imported:":["Total de redirecionamentos importados:"],"Double-check the file is the correct format!":["Verifique novamente se o arquivo é o formato correto!"],"OK":["OK"],"Close":["Fechar"],"All imports will be appended to the current database.":["Todas as importações serão anexadas ao banco de dados atual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess do Apache"],"Nginx rewrite rules":["Regras de reescrita do Nginx"],"Redirection JSON":["JSON do Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Arquivos de registro podem ser exportados nas páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Erro 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"],"I'd like to support some more.":["Eu gostaria de ajudar mais um pouco."],"Support 💰":["Doação 💰"],"Redirection saved":["Redirecionamento salvo"],"Log deleted":["Registro excluído"],"Settings saved":["Configurações salvas"],"Group saved":["Grupo salvo"],"Are you sure you want to delete this item?":["Tem certeza de que deseja excluir este item?","Tem certeza de que deseja excluir estes item?"],"pass":["manter url"],"All groups":["Todos os grupos"],"301 - Moved Permanently":["301 - Mudou permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirecionamento temporário"],"308 - Permanent Redirect":["308 - Redirecionamento permanente"],"401 - Unauthorized":["401 - Não autorizado"],"404 - Not Found":["404 - Não encontrado"],"Title":["Título"],"When matched":["Quando corresponder"],"with HTTP code":["com código HTTP"],"Show advanced options":["Exibir opções avançadas"],"Matched Target":["Destino correspondido"],"Unmatched Target":["Destino não correspondido"],"Saving...":["Salvando..."],"View notice":["Veja o aviso"],"Invalid source URL":["URL de origem inválido"],"Invalid redirect action":["Ação de redirecionamento inválida"],"Invalid redirect matcher":["Critério de redirecionamento inválido"],"Unable to add new redirect":["Não foi possível criar novo redirecionamento"],"Something went wrong 🙁":["Algo deu errado 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"],"Log entries (%d max)":["Entradas do registro (máx %d)"],"Search by IP":["Pesquisar por IP"],"Select bulk action":["Selecionar ações em massa"],"Bulk Actions":["Ações em massa"],"Apply":["Aplicar"],"First page":["Primeira página"],"Prev page":["Página anterior"],"Current Page":["Página atual"],"of %(page)s":["de %(page)s"],"Next page":["Próxima página"],"Last page":["Última página"],"%s item":["%s item","%s itens"],"Select All":["Selecionar tudo"],"Sorry, something went wrong loading the data - please try again":["Desculpe, mas algo deu errado ao carregar os dados - tente novamente"],"No results":["Nenhum resultado"],"Delete the logs - are you sure?":["Excluir os registros - Você tem certeza?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."],"Yes! Delete the logs":["Sim! Exclua os registros"],"No! Don't delete the logs":["Não! Não exclua os registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."],"Newsletter":["Boletim"],"Want to keep up to date with changes to Redirection?":["Quer ficar a par de mudanças no Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."],"Your email address:":["Seu endereço de e-mail:"],"You've supported this plugin - thank you!":["Você apoiou este plugin - obrigado!"],"You get useful software and I get to carry on making it better.":["Você obtém softwares úteis e eu continuo fazendo isso melhor."],"Forever":["Para sempre"],"Delete the plugin - are you sure?":["Excluir o plugin - Você tem certeza?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."],"Yes! Delete the plugin":["Sim! Exclua o plugin"],"No! Don't delete the plugin":["Não! Não exclua o plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gerencie todos os seus redirecionamentos 301 e monitore erros 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."],"Redirection Support":["Ajuda do Redirection"],"Support":["Ajuda"],"404s":["404s"],"Log":["Registro"],"Delete Redirection":["Excluir o Redirection"],"Upload":["Carregar"],"Import":["Importar"],"Update":["Atualizar"],"Auto-generate URL":["Gerar automaticamente o URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registros de 404"],"(time to keep logs for)":["(tempo para manter os registros)"],"Redirect Logs":["Registros de redirecionamento"],"I'm a nice person and I have helped support the author of this plugin":["Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"],"Plugin Support":["Suporte do plugin"],"Options":["Opções"],"Two months":["Dois meses"],"A month":["Um mês"],"A week":["Uma semana"],"A day":["Um dia"],"No logs":["Não registrar"],"Delete All":["Apagar Tudo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use grupos para organizar os seus redirecionamentos. Os grupos são associados a um módulo, e o módulo afeta como os redirecionamentos do grupo funcionam. Na dúvida, use o módulo WordPress."],"Add Group":["Adicionar grupo"],"Search":["Pesquisar"],"Groups":["Grupos"],"Save":["Salvar"],"Group":["Grupo"],"Match":["Corresponder"],"Add new redirection":["Adicionar novo redirecionamento"],"Cancel":["Cancelar"],"Download":["Baixar"],"Redirection":["Redirection"],"Settings":["Configurações"],"Do nothing":["Fazer nada"],"Error (404)":["Erro (404)"],"Pass-through":["Manter URL de origem"],"Redirect to random post":["Redirecionar para um post aleatório"],"Redirect to URL":["Redirecionar para URL"],"Invalid group when creating redirect":["Grupo inválido ao criar o redirecionamento"],"IP":["IP"],"Source URL":["URL de origem"],"Date":["Data"],"Add Redirect":["Adicionar redirecionamento"],"All modules":["Todos os módulos"],"View Redirects":["Ver redirecionamentos"],"Module":["Módulo"],"Redirects":["Redirecionamentos"],"Name":["Nome"],"Filter":["Filtrar"],"Reset hits":["Redefinir acessos"],"Enable":["Ativar"],"Disable":["Desativar"],"Delete":["Excluir"],"Edit":["Editar"],"Last Access":["Último Acesso"],"Hits":["Acessos"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Posts modificados"],"Redirections":["Redirecionamentos"],"User Agent":["Agente de usuário"],"URL and user agent":["URL e agente de usuário"],"Target URL":["URL de destino"],"URL only":["URL somente"],"Regex":["Regex"],"Referrer":["Referenciador"],"URL and referrer":["URL e referenciador"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["URL e status de login"]}
locale/json/redirection-ru_RU.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":["Введите полный URL-адрес, включая http:// или https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."],"Redirect Tester":["Тестирование перенаправлений"],"Target":["Цель"],"URL is not being redirected with Redirection":["URL-адрес не перенаправляется с помощью Redirection"],"URL is being redirected with Redirection":["URL-адрес перенаправлен с помощью Redirection"],"Unable to load details":["Не удается загрузить сведения"],"Enter server URL to match against":["Введите URL-адрес сервера для совпадений"],"Server":["Сервер"],"Enter role or capability value":["Введите значение роли или возможности"],"Role":["Роль"],"Match against this browser referrer text":["Совпадение с текстом реферера браузера"],"Match against this browser user agent":["Сопоставить с этим пользовательским агентом обозревателя"],"The relative URL you want to redirect from":["Относительный URL-адрес, с которого требуется перенаправить"],"Optional description - describe the purpose of this redirect":["Необязательное описание - опишите цель этого перенаправления"],"The target URL you want to redirect to if matched":["Целевой URL-адрес, который требуется перенаправить в случае совпадения"],"(beta)":["(бета)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"],"Force HTTPS":["Принудительное HTTPS"],"GDPR / Privacy information":["GDPR / Информация о конфиденциальности"],"Add New":["Добавить новое"],"Please logout and login again.":["Пожалуйста, выйдите и войдите снова."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection требует PHP v%1s, вы используете v%2s -пожалуйста, обновите вашу версию PHP"],"URL and role/capability":["URL-адрес и роль/возможности"],"URL and server":["URL и сервер"],"Form request":["Форма запроса"],"Relative /wp-json/":["Относительный /wp-json/"],"Proxy over Admin AJAX":["Прокси поверх Админ AJAX"],"Default /wp-json/":["По умолчанию /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Если вы не можете получить что-либо, то Redirection может столкнуться с трудностями при общении с вашим сервером. Вы можете вручную изменить этот параметр:"],"Site and home protocol":["Протокол сайта и домашней"],"Site and home URL are inconsistent - please correct from your General settings":["Сайт и домашний URL несовместимы-пожалуйста, исправьте в общих настройках"],"Site and home are consistent":["Сайт и домашняя страница соответствуют"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."],"Accept Language":["заголовок Accept Language"],"Header value":["Значение заголовка"],"Header name":["Имя заголовка"],"HTTP Header":["Заголовок HTTP"],"WordPress filter name":["Имя фильтра WordPress"],"Filter Name":["Название фильтра"],"Cookie value":["Значение куки"],"Cookie name":["Имя куки"],"Cookie":["Куки"],"Target URL when not matched":["Целевой URL-адрес при несовпадении"],"Target URL when matched":["Целевой URL-адрес при совпадении"],"clearing your cache.":["очистка кеша."],"If you are using a caching system such as Cloudflare then please read this: ":["Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "],"URL and HTTP header":["URL-адрес и заголовок HTTP"],"URL and custom filter":["URL-адрес и пользовательский фильтр"],"URL and cookie":["URL и куки"],"404 deleted":["404 удалено"],"Raw /index.php?rest_route=/":["Только /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Как Redirection использует REST API - не изменяются, если это необходимо"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress вернул неожиданное сообщение. Это может быть вызвано тем, что REST API не работает, или другим плагином или темой."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Взгляните на{{link}}статус плагина{{/link}}. Возможно, он сможет определить и \"волшебно исправить\" проблемы."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection не может соединиться с REST API{{/link}}.Если вы отключили его, то вам нужно будет включить его."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}} Программное обеспечение безопасности может блокировать Redirection{{/link}}. Необходимо настроить, чтобы разрешить запросы REST API."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Кэширование программного обеспечения{{/link}},в частности Cloudflare, может кэшировать неправильные вещи. Попробуйте очистить все кэши."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}} Пожалуйста, временно отключите другие плагины! {{/ link}} Это устраняет множество проблем."],"None of the suggestions helped":["Ни одно из предложений не помогло"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."],"Unable to load Redirection ☹️":["Не удается загрузить Redirection ☹ ️"],"WordPress REST API is working at %s":["WordPress REST API работает в %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API не работает, поэтому маршруты не проверены"],"Redirection routes are working":["Маршруты перенаправления работают"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Перенаправление не отображается в маршрутах REST API. Вы отключили его с плагином?"],"Redirection routes":["Маршруты перенаправления"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ваш WordPress REST API был отключен. Вам нужно будет включить его для продолжения работы Redirection"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Ошибка пользовательского агента"],"Unknown Useragent":["Неизвестный агент пользователя"],"Device":["Устройство"],"Operating System":["Операционная система"],"Browser":["Браузер"],"Engine":["Движок"],"Useragent":["Пользовательский агент"],"Agent":["Агент"],"No IP logging":["Не протоколировать IP"],"Full IP logging":["Полное протоколирование IP-адресов"],"Anonymize IP (mask last part)":["Анонимизировать IP (маска последняя часть)"],"Monitor changes to %(type)s":["Отслеживание изменений в %(type)s"],"IP Logging":["Протоколирование IP"],"(select IP logging level)":["(Выберите уровень ведения протокола по IP)"],"Geo Info":["Географическая информация"],"Agent Info":["Информация о агенте"],"Filter by IP":["Фильтровать по IP"],"Referrer / User Agent":["Пользователь / Агент пользователя"],"Geo IP Error":["Ошибка GeoIP"],"Something went wrong obtaining this information":["Что-то пошло не так получение этой информации"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Это IP из частной сети. Это означает, что он находится внутри домашней или бизнес-сети, и больше информации не может быть отображено."],"No details are known for this address.":["Сведения об этом адресе не известны."],"Geo IP":["GeoIP"],"City":["Город"],"Area":["Область"],"Timezone":["Часовой пояс"],"Geo Location":["Геолокация"],"Powered by {{link}}redirect.li{{/link}}":["Работает на {{link}}redirect.li{{/link}}"],"Trash":["Корзина"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"],"Never cache":["Не кэшировать"],"An hour":["Час"],"Redirect Cache":["Перенаправление кэша"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"],"Are you sure you want to import from %s?":["Вы действительно хотите импортировать из %s ?"],"Plugin Importers":["Импортеры плагина"],"The following redirect plugins were detected on your site and can be imported from.":["Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."],"total = ":["всего = "],"Import from %s":["Импортировать из %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Обнаружены проблемы с таблицами базы данных. Пожалуйста, посетите <a href=\"%s\">страницу поддержки</a> для более подробной информации."],"Redirection not installed properly":["Redirection установлен не правильно"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection требует WordPress v%1s, вы используете v%2s -пожалуйста, обновите ваш WordPress"],"Default WordPress \"old slugs\"":["\"Старые ярлыки\" WordPress по умолчанию"],"Create associated redirect (added to end of URL)":["Создание связанного перенаправления (Добавлено в конец URL-адреса)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."],"⚡️ Magic fix ⚡️":["⚡️ Волшебное исправление ⚡️"],"Plugin Status":["Статус плагина"],"Custom":["Пользовательский"],"Mobile":["Мобильный"],"Feed Readers":["Читатели ленты"],"Libraries":["Библиотеки"],"URL Monitor Changes":["URL-адрес монитор изменений"],"Save changes to this group":["Сохранить изменения в этой группе"],"For example \"/amp\"":["Например \"/amp\""],"URL Monitor":["Монитор URL"],"Delete 404s":["Удалить 404"],"Delete all logs for this 404":["Удалить все логи для этой ошибки 404"],"Delete all from IP %s":["Удалить все с IP %s"],"Delete all matching \"%s\"":["Удалить все совпадения \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."],"Also check if your browser is able to load <code>redirection.js</code>:":["Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."],"Unable to load Redirection":["Не удается загрузить Redirection"],"Unable to create group":["Невозможно создать группу"],"Failed to fix database tables":["Не удалось исправить таблицы базы данных"],"Post monitor group is valid":["Группа мониторинга сообщений действительна"],"Post monitor group is invalid":["Группа мониторинга постов недействительна."],"Post monitor group":["Группа отслеживания сообщений"],"All redirects have a valid group":["Все перенаправления имеют допустимую группу"],"Redirects with invalid groups detected":["Перенаправление с недопустимыми группами обнаружены"],"Valid redirect group":["Допустимая группа для перенаправления"],"Valid groups detected":["Обнаружены допустимые группы"],"No valid groups, so you will not be able to create any redirects":["Нет допустимых групп, поэтому вы не сможете создавать перенаправления"],"Valid groups":["Допустимые группы"],"Database tables":["Таблицы базы данных"],"The following tables are missing:":["Следующие таблицы отсутствуют:"],"All tables present":["Все таблицы в наличии"],"Cached Redirection detected":["Обнаружено кэшированное перенаправление"],"Please clear your browser cache and reload this page.":["Очистите кеш браузера и перезагрузите эту страницу."],"The data on this page has expired, please reload.":["Данные на этой странице истекли, пожалуйста, перезагрузите."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress не вернул ответ. Это может означать, что произошла ошибка или что запрос был заблокирован. Пожалуйста, проверьте ваш error_log сервера."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Ваш сервер вернул ошибку 403 (доступ запрещен), что означает что запрос был заблокирован. Возможно причина в том, что вы используете фаерволл или плагин безопасности? Возможно mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."],"This may be caused by another plugin - look at your browser's error console for more details.":["Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."],"Loading, please wait...":["Загрузка, пожалуйста подождите..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."],"Create Issue":["Создать тикет о проблеме"],"Email":["Электронная почта"],"Important details":["Важные детали"],"Need help?":["Нужна помощь?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."],"Pos":["Pos"],"410 - Gone":["410 - Удалено"],"Position":["Позиция"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"],"Apache Module":["Модуль Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."],"Import to group":["Импорт в группу"],"Import a CSV, .htaccess, or JSON file.":["Импортируйте файл CSV, .htaccess или JSON."],"Click 'Add File' or drag and drop here.":["Нажмите «Добавить файл» или перетащите сюда."],"Add File":["Добавить файл"],"File selected":["Выбран файл"],"Importing":["Импортирование"],"Finished importing":["Импорт завершен"],"Total redirects imported:":["Всего импортировано перенаправлений:"],"Double-check the file is the correct format!":["Дважды проверьте правильность формата файла!"],"OK":["OK"],"Close":["Закрыть"],"All imports will be appended to the current database.":["Все импортируемые компоненты будут добавлены в текущую базу данных."],"Export":["Экспорт"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."],"Everything":["Все"],"WordPress redirects":["Перенаправления WordPress"],"Apache redirects":["перенаправления Apache"],"Nginx redirects":["перенаправления NGINX"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Правила перезаписи nginx"],"Redirection JSON":["Перенаправление JSON"],"View":["Вид"],"Log files can be exported from the log pages.":["Файлы логов можно экспортировать из страниц логов."],"Import/Export":["Импорт/Экспорт"],"Logs":["Журналы"],"404 errors":["404 ошибки"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"],"I'd like to support some more.":["Мне хотелось бы поддержать чуть больше."],"Support 💰":["Поддержка 💰"],"Redirection saved":["Перенаправление сохранено"],"Log deleted":["Лог удален"],"Settings saved":["Настройки сохранены"],"Group saved":["Группа сохранена"],"Are you sure you want to delete this item?":["Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?"],"pass":["проход"],"All groups":["Все группы"],"301 - Moved Permanently":["301 - Переехал навсегда"],"302 - Found":["302 - Найдено"],"307 - Temporary Redirect":["307 - Временное перенаправление"],"308 - Permanent Redirect":["308 - Постоянное перенаправление"],"401 - Unauthorized":["401 - Не авторизованы"],"404 - Not Found":["404 - Страница не найдена"],"Title":["Название"],"When matched":["При совпадении"],"with HTTP code":["с кодом HTTP"],"Show advanced options":["Показать расширенные параметры"],"Matched Target":["Совпавшие цели"],"Unmatched Target":["Несовпавшая цель"],"Saving...":["Сохранение..."],"View notice":["Просмотреть уведомление"],"Invalid source URL":["Неверный исходный URL"],"Invalid redirect action":["Неверное действие перенаправления"],"Invalid redirect matcher":["Неверное совпадение перенаправления"],"Unable to add new redirect":["Не удалось добавить новое перенаправление"],"Something went wrong 🙁":["Что-то пошло не так 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Я пытался что-то сделать, и все пошло не так. Это может быть временная проблема, и если вы попробуете еще раз, это может сработать - здорово!"],"Log entries (%d max)":["Журнал записей (%d максимум)"],"Search by IP":["Поиск по IP"],"Select bulk action":["Выберите массовое действие"],"Bulk Actions":["Массовые действия"],"Apply":["Применить"],"First page":["Первая страница"],"Prev page":["Предыдущая страница"],"Current Page":["Текущая страница"],"of %(page)s":["из %(page)s"],"Next page":["Следующая страница"],"Last page":["Последняя страница"],"%s item":["%s элемент","%s элемента","%s элементов"],"Select All":["Выбрать всё"],"Sorry, something went wrong loading the data - please try again":["Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"],"No results":["Нет результатов"],"Delete the logs - are you sure?":["Удалить журналы - вы уверены?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."],"Yes! Delete the logs":["Да! Удалить журналы"],"No! Don't delete the logs":["Нет! Не удаляйте журналы"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."],"Newsletter":["Новости"],"Want to keep up to date with changes to Redirection?":["Хотите быть в курсе изменений в плагине?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."],"Your email address:":["Ваш адрес электронной почты:"],"You've supported this plugin - thank you!":["Вы поддерживаете этот плагин - спасибо!"],"You get useful software and I get to carry on making it better.":["Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."],"Forever":["Всегда"],"Delete the plugin - are you sure?":["Удалить плагин-вы уверены?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."],"Yes! Delete the plugin":["Да! Удалить плагин"],"No! Don't delete the plugin":["Нет! Не удаляйте плагин"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."],"Redirection Support":["Поддержка перенаправления"],"Support":["Поддержка"],"404s":["404"],"Log":["Журнал"],"Delete Redirection":["Удалить перенаправление"],"Upload":["Загрузить"],"Import":["Импортировать"],"Update":["Обновить"],"Auto-generate URL":["Автоматическое создание URL-адреса"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"],"RSS Token":["RSS-токен"],"404 Logs":["404 Журналы"],"(time to keep logs for)":["(время хранения журналов для)"],"Redirect Logs":["Перенаправление журналов"],"I'm a nice person and I have helped support the author of this plugin":["Я хороший человек, и я помог поддержать автора этого плагина"],"Plugin Support":["Поддержка плагина"],"Options":["Опции"],"Two months":["Два месяца"],"A month":["Месяц"],"A week":["Неделя"],"A day":["День"],"No logs":["Нет записей"],"Delete All":["Удалить все"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."],"Add Group":["Добавить группу"],"Search":["Поиск"],"Groups":["Группы"],"Save":["Сохранить"],"Group":["Группа"],"Match":["Совпадение"],"Add new redirection":["Добавить новое перенаправление"],"Cancel":["Отменить"],"Download":["Скачать"],"Redirection":["Redirection"],"Settings":["Настройки"],"Do nothing":["Ничего не делать"],"Error (404)":["Ошибка (404)"],"Pass-through":["Прозрачно пропускать"],"Redirect to random post":["Перенаправить на случайную запись"],"Redirect to URL":["Перенаправление на URL"],"Invalid group when creating redirect":["Неправильная группа при создании переадресации"],"IP":["IP"],"Source URL":["Исходный URL"],"Date":["Дата"],"Add Redirect":["Добавить перенаправление"],"All modules":["Все модули"],"View Redirects":["Просмотр перенаправлений"],"Module":["Модуль"],"Redirects":["Редиректы"],"Name":["Имя"],"Filter":["Фильтр"],"Reset hits":["Сбросить показы"],"Enable":["Включить"],"Disable":["Отключить"],"Delete":["Удалить"],"Edit":["Редактировать"],"Last Access":["Последний доступ"],"Hits":["Показы"],"URL":["URL"],"Type":["Тип"],"Modified Posts":["Измененные записи"],"Redirections":["Перенаправления"],"User Agent":["Агент пользователя"],"URL and user agent":["URL-адрес и агент пользователя"],"Target URL":["Целевой URL-адрес"],"URL only":["Только URL-адрес"],"Regex":["Regex"],"Referrer":["Ссылающийся URL"],"URL and referrer":["URL и ссылающийся URL"],"Logged Out":["Выход из системы"],"Logged In":["Вход в систему"],"URL and login status":["Статус URL и входа"]}
1
+ {"":[],"Problem":["Проблема"],"Good":["Хорошо"],"Check":["Проверка"],"Check Redirect":["Проверка перенаправления"],"Check redirect for: {{code}}%s{{/code}}":["Проверка перенаправления для: {{code}}%s{{/code}}"],"What does this mean?":["Что это значит?"],"Not using Redirection":["Не используется перенаправление"],"Using Redirection":["Использование перенаправления"],"Found":["Найдено"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} на {{code}}%(url)s{{/code}}"],"Expected":["Ожидается"],"Error":["Ошибка"],"Enter full URL, including http:// or https://":["Введите полный URL-адрес, включая http:// или https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."],"Redirect Tester":["Тестирование перенаправлений"],"Target":["Цель"],"URL is not being redirected with Redirection":["URL-адрес не перенаправляется с помощью Redirection"],"URL is being redirected with Redirection":["URL-адрес перенаправлен с помощью Redirection"],"Unable to load details":["Не удается загрузить сведения"],"Enter server URL to match against":["Введите URL-адрес сервера для совпадений"],"Server":["Сервер"],"Enter role or capability value":["Введите значение роли или возможности"],"Role":["Роль"],"Match against this browser referrer text":["Совпадение с текстом реферера браузера"],"Match against this browser user agent":["Сопоставить с этим пользовательским агентом обозревателя"],"The relative URL you want to redirect from":["Относительный URL-адрес, с которого требуется перенаправить"],"Optional description - describe the purpose of this redirect":["Необязательное описание - опишите цель этого перенаправления"],"The target URL you want to redirect to if matched":["Целевой URL-адрес, который требуется перенаправить в случае совпадения"],"(beta)":["(бета)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"],"Force HTTPS":["Принудительное HTTPS"],"GDPR / Privacy information":["GDPR / Информация о конфиденциальности"],"Add New":["Добавить новое"],"Please logout and login again.":["Пожалуйста, выйдите и войдите снова."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection требует PHP v%1s, вы используете v%2s -пожалуйста, обновите вашу версию PHP"],"URL and role/capability":["URL-адрес и роль/возможности"],"URL and server":["URL и сервер"],"Form request":["Форма запроса"],"Relative /wp-json/":["Относительный /wp-json/"],"Proxy over Admin AJAX":["Прокси поверх Админ AJAX"],"Default /wp-json/":["По умолчанию /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Если вы не можете получить что-либо, то Redirection может столкнуться с трудностями при общении с вашим сервером. Вы можете вручную изменить этот параметр:"],"Site and home protocol":["Протокол сайта и домашней"],"Site and home URL are inconsistent - please correct from your General settings":["Сайт и домашний URL несовместимы-пожалуйста, исправьте в общих настройках"],"Site and home are consistent":["Сайт и домашняя страница соответствуют"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."],"Accept Language":["заголовок Accept Language"],"Header value":["Значение заголовка"],"Header name":["Имя заголовка"],"HTTP Header":["Заголовок HTTP"],"WordPress filter name":["Имя фильтра WordPress"],"Filter Name":["Название фильтра"],"Cookie value":["Значение куки"],"Cookie name":["Имя куки"],"Cookie":["Куки"],"Target URL when not matched":["Целевой URL-адрес при несовпадении"],"Target URL when matched":["Целевой URL-адрес при совпадении"],"clearing your cache.":["очистка кеша."],"If you are using a caching system such as Cloudflare then please read this: ":["Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "],"URL and HTTP header":["URL-адрес и заголовок HTTP"],"URL and custom filter":["URL-адрес и пользовательский фильтр"],"URL and cookie":["URL и куки"],"404 deleted":["404 удалено"],"Raw /index.php?rest_route=/":["Только /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Как Redirection использует REST API - не изменяются, если это необходимо"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress вернул неожиданное сообщение. Это может быть вызвано тем, что REST API не работает, или другим плагином или темой."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Взгляните на{{link}}статус плагина{{/link}}. Возможно, он сможет определить и \"волшебно исправить\" проблемы."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection не может соединиться с REST API{{/link}}.Если вы отключили его, то вам нужно будет включить его."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}} Программное обеспечение безопасности может блокировать Redirection{{/link}}. Необходимо настроить, чтобы разрешить запросы REST API."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Кэширование программного обеспечения{{/link}},в частности Cloudflare, может кэшировать неправильные вещи. Попробуйте очистить все кэши."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}} Пожалуйста, временно отключите другие плагины! {{/ link}} Это устраняет множество проблем."],"None of the suggestions helped":["Ни одно из предложений не помогло"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."],"Unable to load Redirection ☹️":["Не удается загрузить Redirection ☹ ️"],"WordPress REST API is working at %s":["WordPress REST API работает в %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API не работает, поэтому маршруты не проверены"],"Redirection routes are working":["Маршруты перенаправления работают"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Перенаправление не отображается в маршрутах REST API. Вы отключили его с плагином?"],"Redirection routes":["Маршруты перенаправления"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ваш WordPress REST API был отключен. Вам нужно будет включить его для продолжения работы Redirection"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Ошибка пользовательского агента"],"Unknown Useragent":["Неизвестный агент пользователя"],"Device":["Устройство"],"Operating System":["Операционная система"],"Browser":["Браузер"],"Engine":["Движок"],"Useragent":["Пользовательский агент"],"Agent":["Агент"],"No IP logging":["Не протоколировать IP"],"Full IP logging":["Полное протоколирование IP-адресов"],"Anonymize IP (mask last part)":["Анонимизировать IP (маска последняя часть)"],"Monitor changes to %(type)s":["Отслеживание изменений в %(type)s"],"IP Logging":["Протоколирование IP"],"(select IP logging level)":["(Выберите уровень ведения протокола по IP)"],"Geo Info":["Географическая информация"],"Agent Info":["Информация о агенте"],"Filter by IP":["Фильтровать по IP"],"Referrer / User Agent":["Пользователь / Агент пользователя"],"Geo IP Error":["Ошибка GeoIP"],"Something went wrong obtaining this information":["Что-то пошло не так получение этой информации"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Это IP из частной сети. Это означает, что он находится внутри домашней или бизнес-сети, и больше информации не может быть отображено."],"No details are known for this address.":["Сведения об этом адресе не известны."],"Geo IP":["GeoIP"],"City":["Город"],"Area":["Область"],"Timezone":["Часовой пояс"],"Geo Location":["Геолокация"],"Powered by {{link}}redirect.li{{/link}}":["Работает на {{link}}redirect.li{{/link}}"],"Trash":["Корзина"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"],"Never cache":["Не кэшировать"],"An hour":["Час"],"Redirect Cache":["Перенаправление кэша"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"],"Are you sure you want to import from %s?":["Вы действительно хотите импортировать из %s ?"],"Plugin Importers":["Импортеры плагина"],"The following redirect plugins were detected on your site and can be imported from.":["Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."],"total = ":["всего = "],"Import from %s":["Импортировать из %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Обнаружены проблемы с таблицами базы данных. Пожалуйста, посетите <a href=\"%s\">страницу поддержки</a> для более подробной информации."],"Redirection not installed properly":["Redirection установлен не правильно"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection требует WordPress v%1s, вы используете v%2s -пожалуйста, обновите ваш WordPress"],"Default WordPress \"old slugs\"":["\"Старые ярлыки\" WordPress по умолчанию"],"Create associated redirect (added to end of URL)":["Создание связанного перенаправления (Добавлено в конец URL-адреса)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."],"⚡️ Magic fix ⚡️":["⚡️ Волшебное исправление ⚡️"],"Plugin Status":["Статус плагина"],"Custom":["Пользовательский"],"Mobile":["Мобильный"],"Feed Readers":["Читатели ленты"],"Libraries":["Библиотеки"],"URL Monitor Changes":["URL-адрес монитор изменений"],"Save changes to this group":["Сохранить изменения в этой группе"],"For example \"/amp\"":["Например \"/amp\""],"URL Monitor":["Монитор URL"],"Delete 404s":["Удалить 404"],"Delete all logs for this 404":["Удалить все логи для этой ошибки 404"],"Delete all from IP %s":["Удалить все с IP %s"],"Delete all matching \"%s\"":["Удалить все совпадения \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."],"Also check if your browser is able to load <code>redirection.js</code>:":["Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."],"Unable to load Redirection":["Не удается загрузить Redirection"],"Unable to create group":["Невозможно создать группу"],"Failed to fix database tables":["Не удалось исправить таблицы базы данных"],"Post monitor group is valid":["Группа мониторинга сообщений действительна"],"Post monitor group is invalid":["Группа мониторинга постов недействительна."],"Post monitor group":["Группа отслеживания сообщений"],"All redirects have a valid group":["Все перенаправления имеют допустимую группу"],"Redirects with invalid groups detected":["Перенаправление с недопустимыми группами обнаружены"],"Valid redirect group":["Допустимая группа для перенаправления"],"Valid groups detected":["Обнаружены допустимые группы"],"No valid groups, so you will not be able to create any redirects":["Нет допустимых групп, поэтому вы не сможете создавать перенаправления"],"Valid groups":["Допустимые группы"],"Database tables":["Таблицы базы данных"],"The following tables are missing:":["Следующие таблицы отсутствуют:"],"All tables present":["Все таблицы в наличии"],"Cached Redirection detected":["Обнаружено кэшированное перенаправление"],"Please clear your browser cache and reload this page.":["Очистите кеш браузера и перезагрузите эту страницу."],"The data on this page has expired, please reload.":["Данные на этой странице истекли, пожалуйста, перезагрузите."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress не вернул ответ. Это может означать, что произошла ошибка или что запрос был заблокирован. Пожалуйста, проверьте ваш error_log сервера."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Ваш сервер вернул ошибку 403 (доступ запрещен), что означает что запрос был заблокирован. Возможно причина в том, что вы используете фаерволл или плагин безопасности? Возможно mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."],"This may be caused by another plugin - look at your browser's error console for more details.":["Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."],"Loading, please wait...":["Загрузка, пожалуйста подождите..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."],"Create Issue":["Создать тикет о проблеме"],"Email":["Электронная почта"],"Important details":["Важные детали"],"Need help?":["Нужна помощь?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."],"Pos":["Pos"],"410 - Gone":["410 - Удалено"],"Position":["Позиция"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"],"Apache Module":["Модуль Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."],"Import to group":["Импорт в группу"],"Import a CSV, .htaccess, or JSON file.":["Импортируйте файл CSV, .htaccess или JSON."],"Click 'Add File' or drag and drop here.":["Нажмите «Добавить файл» или перетащите сюда."],"Add File":["Добавить файл"],"File selected":["Выбран файл"],"Importing":["Импортирование"],"Finished importing":["Импорт завершен"],"Total redirects imported:":["Всего импортировано перенаправлений:"],"Double-check the file is the correct format!":["Дважды проверьте правильность формата файла!"],"OK":["OK"],"Close":["Закрыть"],"All imports will be appended to the current database.":["Все импортируемые компоненты будут добавлены в текущую базу данных."],"Export":["Экспорт"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."],"Everything":["Все"],"WordPress redirects":["Перенаправления WordPress"],"Apache redirects":["перенаправления Apache"],"Nginx redirects":["перенаправления NGINX"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Правила перезаписи nginx"],"Redirection JSON":["Перенаправление JSON"],"View":["Вид"],"Log files can be exported from the log pages.":["Файлы логов можно экспортировать из страниц логов."],"Import/Export":["Импорт/Экспорт"],"Logs":["Журналы"],"404 errors":["404 ошибки"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"],"I'd like to support some more.":["Мне хотелось бы поддержать чуть больше."],"Support 💰":["Поддержка 💰"],"Redirection saved":["Перенаправление сохранено"],"Log deleted":["Лог удален"],"Settings saved":["Настройки сохранены"],"Group saved":["Группа сохранена"],"Are you sure you want to delete this item?":["Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?"],"pass":["проход"],"All groups":["Все группы"],"301 - Moved Permanently":["301 - Переехал навсегда"],"302 - Found":["302 - Найдено"],"307 - Temporary Redirect":["307 - Временное перенаправление"],"308 - Permanent Redirect":["308 - Постоянное перенаправление"],"401 - Unauthorized":["401 - Не авторизованы"],"404 - Not Found":["404 - Страница не найдена"],"Title":["Название"],"When matched":["При совпадении"],"with HTTP code":["с кодом HTTP"],"Show advanced options":["Показать расширенные параметры"],"Matched Target":["Совпавшие цели"],"Unmatched Target":["Несовпавшая цель"],"Saving...":["Сохранение..."],"View notice":["Просмотреть уведомление"],"Invalid source URL":["Неверный исходный URL"],"Invalid redirect action":["Неверное действие перенаправления"],"Invalid redirect matcher":["Неверное совпадение перенаправления"],"Unable to add new redirect":["Не удалось добавить новое перенаправление"],"Something went wrong 🙁":["Что-то пошло не так 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Я пытался что-то сделать, и все пошло не так. Это может быть временная проблема, и если вы попробуете еще раз, это может сработать - здорово!"],"Log entries (%d max)":["Журнал записей (%d максимум)"],"Search by IP":["Поиск по IP"],"Select bulk action":["Выберите массовое действие"],"Bulk Actions":["Массовые действия"],"Apply":["Применить"],"First page":["Первая страница"],"Prev page":["Предыдущая страница"],"Current Page":["Текущая страница"],"of %(page)s":["из %(page)s"],"Next page":["Следующая страница"],"Last page":["Последняя страница"],"%s item":["%s элемент","%s элемента","%s элементов"],"Select All":["Выбрать всё"],"Sorry, something went wrong loading the data - please try again":["Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"],"No results":["Нет результатов"],"Delete the logs - are you sure?":["Удалить журналы - вы уверены?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."],"Yes! Delete the logs":["Да! Удалить журналы"],"No! Don't delete the logs":["Нет! Не удаляйте журналы"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."],"Newsletter":["Новости"],"Want to keep up to date with changes to Redirection?":["Хотите быть в курсе изменений в плагине?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."],"Your email address:":["Ваш адрес электронной почты:"],"You've supported this plugin - thank you!":["Вы поддерживаете этот плагин - спасибо!"],"You get useful software and I get to carry on making it better.":["Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."],"Forever":["Всегда"],"Delete the plugin - are you sure?":["Удалить плагин-вы уверены?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."],"Yes! Delete the plugin":["Да! Удалить плагин"],"No! Don't delete the plugin":["Нет! Не удаляйте плагин"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."],"Redirection Support":["Поддержка перенаправления"],"Support":["Поддержка"],"404s":["404"],"Log":["Журнал"],"Delete Redirection":["Удалить перенаправление"],"Upload":["Загрузить"],"Import":["Импортировать"],"Update":["Обновить"],"Auto-generate URL":["Автоматическое создание URL-адреса"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"],"RSS Token":["RSS-токен"],"404 Logs":["404 Журналы"],"(time to keep logs for)":["(время хранения журналов для)"],"Redirect Logs":["Перенаправление журналов"],"I'm a nice person and I have helped support the author of this plugin":["Я хороший человек, и я помог поддержать автора этого плагина"],"Plugin Support":["Поддержка плагина"],"Options":["Опции"],"Two months":["Два месяца"],"A month":["Месяц"],"A week":["Неделя"],"A day":["День"],"No logs":["Нет записей"],"Delete All":["Удалить все"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."],"Add Group":["Добавить группу"],"Search":["Поиск"],"Groups":["Группы"],"Save":["Сохранить"],"Group":["Группа"],"Match":["Совпадение"],"Add new redirection":["Добавить новое перенаправление"],"Cancel":["Отменить"],"Download":["Скачать"],"Redirection":["Redirection"],"Settings":["Настройки"],"Do nothing":["Ничего не делать"],"Error (404)":["Ошибка (404)"],"Pass-through":["Прозрачно пропускать"],"Redirect to random post":["Перенаправить на случайную запись"],"Redirect to URL":["Перенаправление на URL"],"Invalid group when creating redirect":["Неправильная группа при создании переадресации"],"IP":["IP"],"Source URL":["Исходный URL"],"Date":["Дата"],"Add Redirect":["Добавить перенаправление"],"All modules":["Все модули"],"View Redirects":["Просмотр перенаправлений"],"Module":["Модуль"],"Redirects":["Редиректы"],"Name":["Имя"],"Filter":["Фильтр"],"Reset hits":["Сбросить показы"],"Enable":["Включить"],"Disable":["Отключить"],"Delete":["Удалить"],"Edit":["Редактировать"],"Last Access":["Последний доступ"],"Hits":["Показы"],"URL":["URL"],"Type":["Тип"],"Modified Posts":["Измененные записи"],"Redirections":["Перенаправления"],"User Agent":["Агент пользователя"],"URL and user agent":["URL-адрес и агент пользователя"],"Target URL":["Целевой URL-адрес"],"URL only":["Только URL-адрес"],"Regex":["Regex"],"Referrer":["Ссылающийся URL"],"URL and referrer":["URL и ссылающийся URL"],"Logged Out":["Выход из системы"],"Logged In":["Вход в систему"],"URL and login status":["Статус URL и входа"]}
locale/json/redirection-sv_SE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Enter full URL, including http:// or https://":["Ange fullständig URL, inklusive http:// eller https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":["Mål"],"URL is not being redirected with Redirection":["URL omdirigeras inte med Redirection"],"URL is being redirected with Redirection":["URL omdirigeras med Redirection"],"Unable to load details":["Det gick inte att ladda detaljer"],"Enter server URL to match against":[""],"Server":["Server"],"Enter role or capability value":["Ange roll eller behörighetsvärde"],"Role":["Roll"],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":["Den relativa URL du vill omdirigera från"],"Optional description - describe the purpose of this redirect":["Valfri beskrivning – beskriv syftet med denna omdirigering"],"The target URL you want to redirect to if matched":["URL-målet du vill omdirigera till om den matchas"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Tvinga en omdirigering från HTTP till HTTPS. Se till att din HTTPS fungerar innan du aktiverar"],"Force HTTPS":["Tvinga HTTPS"],"GDPR / Privacy information":["GDPR/integritetsinformation"],"Add New":["Lägg till ny"],"Please logout and login again.":["Logga ut och logga in igen."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection kräver PHP v%1s, du använder v%2s – uppdatera din PHP"],"URL and role/capability":["URL och roll/behörighet"],"URL and server":["URL och server"],"Form request":["Formulärbegäran"],"Relative /wp-json/":["Relativ /wp-json/"],"Proxy over Admin AJAX":["Proxy över Admin AJAX"],"Default /wp-json/":["Standard /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Om du inte kan få något att fungera kan det hända att Redirection har svårt att kommunicera med din server. Du kan försöka ändra den här inställningen manuellt:"],"Site and home protocol":["Webbplats och hemprotokoll"],"Site and home URL are inconsistent - please correct from your General settings":["URL för webbplats och hem är inkonsekvent. Korrigera från dina allmänna inställningar."],"Site and home are consistent":["Webbplats och hem är konsekventa"],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Observera att det är ditt ansvar att skicka HTTP-sidhuvuden till PHP. Vänligen kontakta din webbleverantör för support om detta."],"Accept Language":["Acceptera språk"],"Header value":["Värde för sidhuvud"],"Header name":["Namn på sidhuvud"],"HTTP Header":["HTTP-sidhuvud"],"WordPress filter name":["WordPress-filternamn"],"Filter Name":["Filternamn"],"Cookie value":["Cookie-värde"],"Cookie name":["Cookie-namn"],"Cookie":["Cookie"],"Target URL when not matched":["Mål-URL när det inte matchas"],"Target URL when matched":["Mål-URL när det matchas"],"clearing your cache.":["rensa cacheminnet."],"If you are using a caching system such as Cloudflare then please read this: ":["Om du använder ett caching-system som Cloudflare, läs det här:"],"URL and HTTP header":["URL- och HTTP-sidhuvuden"],"URL and custom filter":["URL och anpassat filter"],"URL and cookie":["URL och cookie"],"404 deleted":["404 borttagen"],"Raw /index.php?rest_route=/":["Rå /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Hur Redirection använder REST API – ändra inte om inte nödvändigt"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returnerade ett oväntat meddelande. Det här kan orsakas av att ditt REST API inte fungerar eller av ett annat tillägg eller tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Ta en titt på {{link}tilläggsstatusen{{/ link}}. Det kan vara möjligt att identifiera och ”magiskt åtgärda” problemet."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."],"None of the suggestions helped":["Inget av förslagen hjälpte"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."],"Unable to load Redirection ☹️":["Kunde inte ladda Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API arbetar på %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API fungerar inte så flödena kontrolleras inte"],"Redirection routes are working":["Omdirigeringsflödena fungerar"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"],"Redirection routes":["Omdirigeringsflöden"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Användaragentfel"],"Unknown Useragent":["Okänd användaragent"],"Device":["Enhet"],"Operating System":["Operativsystem"],"Browser":["Webbläsare"],"Engine":["Sökmotor"],"Useragent":["Useragent"],"Agent":["Agent"],"No IP logging":["Ingen loggning av IP-nummer"],"Full IP logging":["Fullständig loggning av IP-nummer"],"Anonymize IP (mask last part)":["Anonymisera IP-nummer (maska sista delen)"],"Monitor changes to %(type)s":["Övervaka ändringar till %(type)s"],"IP Logging":["Läggning av IP-nummer"],"(select IP logging level)":["(välj loggningsnivå för IP)"],"Geo Info":["Geo-info"],"Agent Info":["Agentinfo"],"Filter by IP":["Filtrera på IP-nummer"],"Referrer / User Agent":["Hänvisare/Användaragent"],"Geo IP Error":["Geo-IP-fel"],"Something went wrong obtaining this information":["Något gick fel när denna information skulle hämtas"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Detta är en IP från ett privat nätverk. Det betyder att det ligger i ett hem- eller företagsnätverk och ingen mer information kan visas."],"No details are known for this address.":["Det finns inga kända detaljer för denna adress."],"Geo IP":["Geo IP"],"City":["Stad"],"Area":["Region"],"Timezone":["Tidszon"],"Geo Location":["Geo-plats"],"Powered by {{link}}redirect.li{{/link}}":["Drivs av {{link}}redirect.li{{/link}}"],"Trash":["Släng"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Observera att Redirection kräver att WordPress REST API ska vara aktiverat. Om du har inaktiverat det här kommer du inte kunna använda Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} — inkludera så mycket information som du kan!"],"Never cache":["Använd aldrig cache"],"An hour":["En timma"],"Redirect Cache":["Omdirigera cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"],"Are you sure you want to import from %s?":["Är du säker på att du vill importera från %s?"],"Plugin Importers":["Tilläggsimporterare"],"The following redirect plugins were detected on your site and can be imported from.":["Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."],"total = ":["totalt ="],"Import from %s":["Importera från %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."],"Redirection not installed properly":["Redirection har inte installerats ordentligt"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection kräver WordPress version %1s, du använder version %2s — vänligen uppdatera WordPress"],"Default WordPress \"old slugs\"":["WordPress standard ”gamla permalänkar”"],"Create associated redirect (added to end of URL)":["Skapa associerad omdirigering (läggs till i slutet på URL:en)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> är inte definierat. Detta betyder vanligtvis att ett annat tillägg blockerar Redirection från att laddas. Vänligen inaktivera alla tillägg och försök igen."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Om knappen inte fungerar bör du läsa felmeddelande och se om du kan fixa felet manuellt, annars kan du kolla i avsnittet 'Behöver du hjälp?' längre ner."],"⚡️ Magic fix ⚡️":["⚡️ Magisk fix ⚡️"],"Plugin Status":["Tilläggsstatus"],"Custom":["Anpassad"],"Mobile":["Mobil"],"Feed Readers":["Feedläsare"],"Libraries":["Bibliotek"],"URL Monitor Changes":["Övervaka URL-ändringar"],"Save changes to this group":["Spara ändringar till den här gruppen"],"For example \"/amp\"":["Till exempel ”/amp”"],"URL Monitor":["URL-övervakning"],"Delete 404s":["Radera 404:or"],"Delete all logs for this 404":["Radera alla loggar för denna 404"],"Delete all from IP %s":["Ta bort allt från IP-numret %s"],"Delete all matching \"%s\"":["Ta bort allt som matchar \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."],"Also check if your browser is able to load <code>redirection.js</code>:":["Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Om du använder ett tillägg eller en tjänst för att cacha sidor (CloudFlare, OVH m.m.) så kan du också prova att rensa den cachen."],"Unable to load Redirection":["Det gick inte att ladda Redirection"],"Unable to create group":["Det gick inte att skapa grupp"],"Failed to fix database tables":["Det gick inte att korrigera databastabellerna"],"Post monitor group is valid":["Övervakningsgrupp för inlägg är giltig"],"Post monitor group is invalid":["Övervakningsgrupp för inlägg är ogiltig"],"Post monitor group":["Övervakningsgrupp för inlägg"],"All redirects have a valid group":["Alla omdirigeringar har en giltig grupp"],"Redirects with invalid groups detected":["Omdirigeringar med ogiltiga grupper upptäcktes"],"Valid redirect group":["Giltig omdirigeringsgrupp"],"Valid groups detected":["Giltiga grupper upptäcktes"],"No valid groups, so you will not be able to create any redirects":["Inga giltiga grupper, du kan inte skapa nya omdirigeringar"],"Valid groups":["Giltiga grupper"],"Database tables":["Databastabeller"],"The following tables are missing:":["Följande tabeller saknas:"],"All tables present":["Alla tabeller närvarande"],"Cached Redirection detected":["En cachad version av Redirection upptäcktes"],"Please clear your browser cache and reload this page.":["Vänligen rensa din webbläsares cache och ladda om denna sida."],"The data on this page has expired, please reload.":["Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Om du tror att Redirection orsakar felet, skapa en felrapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "],"Loading, please wait...":["Laddar, vänligen vänta..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "],"Create Issue":["Skapa felrapport"],"Email":["E-post"],"Important details":["Viktiga detaljer"],"Need help?":["Behöver du hjälp?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."],"Pos":["Pos"],"410 - Gone":["410 - Borttagen"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID istället"],"Apache Module":["Apache-modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."],"Import to group":["Importera till grupp"],"Import a CSV, .htaccess, or JSON file.":["Importera en CSV-fil, .htaccess-fil eller JSON-fil."],"Click 'Add File' or drag and drop here.":["Klicka på 'Lägg till fil' eller dra och släpp en fil här."],"Add File":["Lägg till fil"],"File selected":["Fil vald"],"Importing":["Importerar"],"Finished importing":["Importering klar"],"Total redirects imported:":["Antal omdirigeringar importerade:"],"Double-check the file is the correct format!":["Dubbelkolla att filen är i rätt format!"],"OK":["OK"],"Close":["Stäng"],"All imports will be appended to the current database.":["All importerade omdirigeringar kommer infogas till den aktuella databasen."],"Export":["Exportera"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."],"Everything":["Allt"],"WordPress redirects":["WordPress omdirigeringar"],"Apache redirects":["Apache omdirigeringar"],"Nginx redirects":["Nginx omdirigeringar"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx omskrivningsregler"],"Redirection JSON":["JSON omdirigeringar"],"View":["Visa"],"Log files can be exported from the log pages.":["Loggfiler kan exporteras från loggsidorna."],"Import/Export":["Importera/Exportera"],"Logs":["Loggar"],"404 errors":["404-fel"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"],"I'd like to support some more.":["Jag skulle vilja stödja lite till."],"Support 💰":["Support 💰"],"Redirection saved":["Omdirigering sparad"],"Log deleted":["Logginlägg raderades"],"Settings saved":["Inställning sparad"],"Group saved":["Grupp sparad"],"Are you sure you want to delete this item?":["Är du säker på att du vill radera detta objekt?","Är du säker på att du vill radera dessa objekt?"],"pass":["lösen"],"All groups":["Alla grupper"],"301 - Moved Permanently":["301 - Flyttad permanent"],"302 - Found":["302 - Hittad"],"307 - Temporary Redirect":["307 - Tillfällig omdirigering"],"308 - Permanent Redirect":["308 - Permanent omdirigering"],"401 - Unauthorized":["401 - Obehörig"],"404 - Not Found":["404 - Hittades inte"],"Title":["Titel"],"When matched":["När matchning sker"],"with HTTP code":["med HTTP-kod"],"Show advanced options":["Visa avancerande alternativ"],"Matched Target":["Matchande mål"],"Unmatched Target":["Ej matchande mål"],"Saving...":["Sparar..."],"View notice":["Visa meddelande"],"Invalid source URL":["Ogiltig URL-källa"],"Invalid redirect action":["Ogiltig omdirigeringsåtgärd"],"Invalid redirect matcher":["Ogiltig omdirigeringsmatchning"],"Unable to add new redirect":["Det går inte att lägga till en ny omdirigering"],"Something went wrong 🙁":["Något gick fel 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."],"Log entries (%d max)":["Antal logginlägg per sida (max %d)"],"Search by IP":["Sök via IP"],"Select bulk action":["Välj massåtgärd"],"Bulk Actions":["Massåtgärd"],"Apply":["Tillämpa"],"First page":["Första sidan"],"Prev page":["Föregående sida"],"Current Page":["Aktuell sida"],"of %(page)s":["av %(sidor)"],"Next page":["Nästa sida"],"Last page":["Sista sidan"],"%s item":["%s objekt","%s objekt"],"Select All":["Välj allt"],"Sorry, something went wrong loading the data - please try again":["Något gick fel när data laddades - Vänligen försök igen"],"No results":["Inga resultat"],"Delete the logs - are you sure?":["Är du säker på att du vill radera loggarna?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."],"Yes! Delete the logs":["Ja! Radera loggarna"],"No! Don't delete the logs":["Nej! Radera inte loggarna"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."],"Newsletter":["Nyhetsbrev"],"Want to keep up to date with changes to Redirection?":["Vill du bli uppdaterad om ändringar i Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Anmäl dig till Redirection-nyhetsbrevet - ett litet nyhetsbrev om nya funktioner och ändringar i tillägget. Det är perfekt om du vill testa kommande förändringar i betaversioner innan en skarp version släpps publikt."],"Your email address:":["Din e-postadress:"],"You've supported this plugin - thank you!":["Du har stöttat detta tillägg - tack!"],"You get useful software and I get to carry on making it better.":["Du får en användbar mjukvara och jag kan fortsätta göra den bättre."],"Forever":["För evigt"],"Delete the plugin - are you sure?":["Radera tillägget - är du verkligen säker på det?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Tar du bort tillägget tar du även bort alla omdirigeringar, loggar och inställningar. Gör detta om du vill ta bort tillägget helt och hållet, eller om du vill återställa tillägget."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["När du har tagit bort tillägget kommer dina omdirigeringar att sluta fungera. Om de verkar fortsätta att fungera, vänligen rensa din webbläsares cache."],"Yes! Delete the plugin":["Ja! Radera detta tillägg"],"No! Don't delete the plugin":["Nej! Radera inte detta tillägg"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Hantera alla dina 301-omdirigeringar och övervaka 404-fel"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection är gratis att använda - livet är underbart och ljuvligt! Det har krävts mycket tid och ansträngningar för att utveckla tillägget och du kan hjälpa till med att stödja denna utveckling genom att {{strong}} göra en liten donation {{/ strong}}."],"Redirection Support":["Support för Redirection"],"Support":["Support"],"404s":["404:or"],"Log":["Logg"],"Delete Redirection":["Ta bort Redirection"],"Upload":["Ladda upp"],"Import":["Importera"],"Update":["Uppdatera"],"Auto-generate URL":["Autogenerera URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"],"RSS Token":["RSS-nyckel"],"404 Logs":["404-loggar"],"(time to keep logs for)":["(hur länge loggar ska sparas)"],"Redirect Logs":["Redirection-loggar"],"I'm a nice person and I have helped support the author of this plugin":["Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"],"Plugin Support":["Support för tillägg"],"Options":["Alternativ"],"Two months":["Två månader"],"A month":["En månad"],"A week":["En vecka"],"A day":["En dag"],"No logs":["Inga loggar"],"Delete All":["Radera alla"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Använd grupper för att organisera dina omdirigeringar. Grupper tillämpas på en modul, vilken påverkar hur omdirigeringar i den gruppen funkar. Behåll bara WordPress-modulen om du känner dig osäker."],"Add Group":["Lägg till grupp"],"Search":["Sök"],"Groups":["Grupper"],"Save":["Spara"],"Group":["Grupp"],"Match":["Matcha"],"Add new redirection":["Lägg till ny omdirigering"],"Cancel":["Avbryt"],"Download":["Hämta"],"Redirection":["Redirection"],"Settings":["Inställningar"],"Do nothing":["Gör ingenting"],"Error (404)":["Fel (404)"],"Pass-through":["Passera"],"Redirect to random post":["Omdirigering till slumpmässigt inlägg"],"Redirect to URL":["Omdirigera till URL"],"Invalid group when creating redirect":["Gruppen är ogiltig när omdirigering skapas"],"IP":["IP"],"Source URL":["URL-källa"],"Date":["Datum"],"Add Redirect":["Lägg till omdirigering"],"All modules":["Alla moduler"],"View Redirects":["Visa omdirigeringar"],"Module":["Modul"],"Redirects":["Omdirigering"],"Name":["Namn"],"Filter":["Filtrera"],"Reset hits":["Nollställ träffar"],"Enable":["Aktivera"],"Disable":["Inaktivera"],"Delete":["Radera"],"Edit":["Redigera"],"Last Access":["Senast använd"],"Hits":["Träffar"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Modifierade inlägg"],"Redirections":["Omdirigeringar"],"User Agent":["Användaragent"],"URL and user agent":["URL och användaragent"],"Target URL":["Mål-URL"],"URL only":["Endast URL"],"Regex":["Reguljärt uttryck"],"Referrer":["Hänvisningsadress"],"URL and referrer":["URL och hänvisande webbplats"],"Logged Out":["Utloggad"],"Logged In":["Inloggad"],"URL and login status":["URL och inloggnings-status"]}
1
+ {"":[],"Problem":["Problem"],"Good":["Bra"],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":["Vad betyder detta?"],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":["Fel"],"Enter full URL, including http:// or https://":["Ange fullständig URL, inklusive http:// eller https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":[""],"Target":["Mål"],"URL is not being redirected with Redirection":["URL omdirigeras inte med Redirection"],"URL is being redirected with Redirection":["URL omdirigeras med Redirection"],"Unable to load details":["Det gick inte att ladda detaljer"],"Enter server URL to match against":[""],"Server":["Server"],"Enter role or capability value":["Ange roll eller behörighetsvärde"],"Role":["Roll"],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":["Den relativa URL du vill omdirigera från"],"Optional description - describe the purpose of this redirect":["Valfri beskrivning – beskriv syftet med denna omdirigering"],"The target URL you want to redirect to if matched":["URL-målet du vill omdirigera till om den matchas"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Tvinga en omdirigering från HTTP till HTTPS. Se till att din HTTPS fungerar innan du aktiverar"],"Force HTTPS":["Tvinga HTTPS"],"GDPR / Privacy information":["GDPR/integritetsinformation"],"Add New":["Lägg till ny"],"Please logout and login again.":["Logga ut och logga in igen."],"Redirection requires PHP v%1s, you are using v%2s - please update your PHP":["Redirection kräver PHP v%1s, du använder v%2s – uppdatera din PHP"],"URL and role/capability":["URL och roll/behörighet"],"URL and server":["URL och server"],"Form request":["Formulärbegäran"],"Relative /wp-json/":["Relativ /wp-json/"],"Proxy over Admin AJAX":["Proxy över Admin AJAX"],"Default /wp-json/":["Standard /wp-json/"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Om du inte kan få något att fungera kan det hända att Redirection har svårt att kommunicera med din server. Du kan försöka ändra den här inställningen manuellt:"],"Site and home protocol":["Webbplats och hemprotokoll"],"Site and home URL are inconsistent - please correct from your General settings":["URL för webbplats och hem är inkonsekvent. Korrigera från dina allmänna inställningar."],"Site and home are consistent":["Webbplats och hem är konsekventa"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":["Acceptera språk"],"Header value":["Värde för sidhuvud"],"Header name":["Namn på sidhuvud"],"HTTP Header":["HTTP-sidhuvud"],"WordPress filter name":["WordPress-filternamn"],"Filter Name":["Filternamn"],"Cookie value":["Cookie-värde"],"Cookie name":["Cookie-namn"],"Cookie":["Cookie"],"Target URL when not matched":["Mål-URL när det inte matchas"],"Target URL when matched":["Mål-URL när det matchas"],"clearing your cache.":["rensa cacheminnet."],"If you are using a caching system such as Cloudflare then please read this: ":["Om du använder ett caching-system som Cloudflare, läs det här:"],"URL and HTTP header":["URL- och HTTP-sidhuvuden"],"URL and custom filter":["URL och anpassat filter"],"URL and cookie":["URL och cookie"],"404 deleted":["404 borttagen"],"Raw /index.php?rest_route=/":["Rå /index.php?rest_route=/"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Hur Redirection använder REST API – ändra inte om inte nödvändigt"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returnerade ett oväntat meddelande. Det här kan orsakas av att ditt REST API inte fungerar eller av ett annat tillägg eller tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Ta en titt på {{link}tilläggsstatusen{{/ link}}. Det kan vara möjligt att identifiera och ”magiskt åtgärda” problemet."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."],"None of the suggestions helped":["Inget av förslagen hjälpte"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."],"Unable to load Redirection ☹️":["Kunde inte ladda Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API arbetar på %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API fungerar inte så flödena kontrolleras inte"],"Redirection routes are working":["Omdirigeringsflödena fungerar"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"],"Redirection routes":["Omdirigeringsflöden"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Användaragentfel"],"Unknown Useragent":["Okänd användaragent"],"Device":["Enhet"],"Operating System":["Operativsystem"],"Browser":["Webbläsare"],"Engine":["Sökmotor"],"Useragent":["Useragent"],"Agent":["Agent"],"No IP logging":["Ingen loggning av IP-nummer"],"Full IP logging":["Fullständig loggning av IP-nummer"],"Anonymize IP (mask last part)":["Anonymisera IP-nummer (maska sista delen)"],"Monitor changes to %(type)s":["Övervaka ändringar till %(type)s"],"IP Logging":["Läggning av IP-nummer"],"(select IP logging level)":["(välj loggningsnivå för IP)"],"Geo Info":["Geo-info"],"Agent Info":["Agentinfo"],"Filter by IP":["Filtrera på IP-nummer"],"Referrer / User Agent":["Hänvisare/Användaragent"],"Geo IP Error":["Geo-IP-fel"],"Something went wrong obtaining this information":["Något gick fel när denna information skulle hämtas"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Detta är en IP från ett privat nätverk. Det betyder att det ligger i ett hem- eller företagsnätverk och ingen mer information kan visas."],"No details are known for this address.":["Det finns inga kända detaljer för denna adress."],"Geo IP":["Geo IP"],"City":["Stad"],"Area":["Region"],"Timezone":["Tidszon"],"Geo Location":["Geo-plats"],"Powered by {{link}}redirect.li{{/link}}":["Drivs av {{link}}redirect.li{{/link}}"],"Trash":["Släng"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Observera att Redirection kräver att WordPress REST API ska vara aktiverat. Om du har inaktiverat det här kommer du inte kunna använda Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} — inkludera så mycket information som du kan!"],"Never cache":["Använd aldrig cache"],"An hour":["En timma"],"Redirect Cache":["Omdirigera cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"],"Are you sure you want to import from %s?":["Är du säker på att du vill importera från %s?"],"Plugin Importers":["Tilläggsimporterare"],"The following redirect plugins were detected on your site and can be imported from.":["Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."],"total = ":["totalt ="],"Import from %s":["Importera från %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."],"Redirection not installed properly":["Redirection har inte installerats ordentligt"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection kräver WordPress version %1s, du använder version %2s — vänligen uppdatera WordPress"],"Default WordPress \"old slugs\"":["WordPress standard ”gamla permalänkar”"],"Create associated redirect (added to end of URL)":["Skapa associerad omdirigering (läggs till i slutet på URL:en)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> är inte definierat. Detta betyder vanligtvis att ett annat tillägg blockerar Redirection från att laddas. Vänligen inaktivera alla tillägg och försök igen."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Om knappen inte fungerar bör du läsa felmeddelande och se om du kan fixa felet manuellt, annars kan du kolla i avsnittet 'Behöver du hjälp?' längre ner."],"⚡️ Magic fix ⚡️":["⚡️ Magisk fix ⚡️"],"Plugin Status":["Tilläggsstatus"],"Custom":["Anpassad"],"Mobile":["Mobil"],"Feed Readers":["Feedläsare"],"Libraries":["Bibliotek"],"URL Monitor Changes":["Övervaka URL-ändringar"],"Save changes to this group":["Spara ändringar till den här gruppen"],"For example \"/amp\"":["Till exempel ”/amp”"],"URL Monitor":["URL-övervakning"],"Delete 404s":["Radera 404:or"],"Delete all logs for this 404":["Radera alla loggar för denna 404"],"Delete all from IP %s":["Ta bort allt från IP-numret %s"],"Delete all matching \"%s\"":["Ta bort allt som matchar \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."],"Also check if your browser is able to load <code>redirection.js</code>:":["Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Om du använder ett tillägg eller en tjänst för att cacha sidor (CloudFlare, OVH m.m.) så kan du också prova att rensa den cachen."],"Unable to load Redirection":["Det gick inte att ladda Redirection"],"Unable to create group":["Det gick inte att skapa grupp"],"Failed to fix database tables":["Det gick inte att korrigera databastabellerna"],"Post monitor group is valid":["Övervakningsgrupp för inlägg är giltig"],"Post monitor group is invalid":["Övervakningsgrupp för inlägg är ogiltig"],"Post monitor group":["Övervakningsgrupp för inlägg"],"All redirects have a valid group":["Alla omdirigeringar har en giltig grupp"],"Redirects with invalid groups detected":["Omdirigeringar med ogiltiga grupper upptäcktes"],"Valid redirect group":["Giltig omdirigeringsgrupp"],"Valid groups detected":["Giltiga grupper upptäcktes"],"No valid groups, so you will not be able to create any redirects":["Inga giltiga grupper, du kan inte skapa nya omdirigeringar"],"Valid groups":["Giltiga grupper"],"Database tables":["Databastabeller"],"The following tables are missing:":["Följande tabeller saknas:"],"All tables present":["Alla tabeller närvarande"],"Cached Redirection detected":["En cachad version av Redirection upptäcktes"],"Please clear your browser cache and reload this page.":["Vänligen rensa din webbläsares cache och ladda om denna sida."],"The data on this page has expired, please reload.":["Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Om du tror att Redirection orsakar felet, skapa en felrapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "],"Loading, please wait...":["Laddar, vänligen vänta..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "],"Create Issue":["Skapa felrapport"],"Email":["E-post"],"Important details":["Viktiga detaljer"],"Need help?":["Behöver du hjälp?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."],"Pos":["Pos"],"410 - Gone":["410 - Borttagen"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID istället"],"Apache Module":["Apache-modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."],"Import to group":["Importera till grupp"],"Import a CSV, .htaccess, or JSON file.":["Importera en CSV-fil, .htaccess-fil eller JSON-fil."],"Click 'Add File' or drag and drop here.":["Klicka på 'Lägg till fil' eller dra och släpp en fil här."],"Add File":["Lägg till fil"],"File selected":["Fil vald"],"Importing":["Importerar"],"Finished importing":["Importering klar"],"Total redirects imported:":["Antal omdirigeringar importerade:"],"Double-check the file is the correct format!":["Dubbelkolla att filen är i rätt format!"],"OK":["OK"],"Close":["Stäng"],"All imports will be appended to the current database.":["All importerade omdirigeringar kommer infogas till den aktuella databasen."],"Export":["Exportera"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."],"Everything":["Allt"],"WordPress redirects":["WordPress omdirigeringar"],"Apache redirects":["Apache omdirigeringar"],"Nginx redirects":["Nginx omdirigeringar"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx omskrivningsregler"],"Redirection JSON":["JSON omdirigeringar"],"View":["Visa"],"Log files can be exported from the log pages.":["Loggfiler kan exporteras från loggsidorna."],"Import/Export":["Importera/Exportera"],"Logs":["Loggar"],"404 errors":["404-fel"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"],"I'd like to support some more.":["Jag skulle vilja stödja lite till."],"Support 💰":["Support 💰"],"Redirection saved":["Omdirigering sparad"],"Log deleted":["Logginlägg raderades"],"Settings saved":["Inställning sparad"],"Group saved":["Grupp sparad"],"Are you sure you want to delete this item?":["Är du säker på att du vill radera detta objekt?","Är du säker på att du vill radera dessa objekt?"],"pass":["lösen"],"All groups":["Alla grupper"],"301 - Moved Permanently":["301 - Flyttad permanent"],"302 - Found":["302 - Hittad"],"307 - Temporary Redirect":["307 - Tillfällig omdirigering"],"308 - Permanent Redirect":["308 - Permanent omdirigering"],"401 - Unauthorized":["401 - Obehörig"],"404 - Not Found":["404 - Hittades inte"],"Title":["Titel"],"When matched":["När matchning sker"],"with HTTP code":["med HTTP-kod"],"Show advanced options":["Visa avancerande alternativ"],"Matched Target":["Matchande mål"],"Unmatched Target":["Ej matchande mål"],"Saving...":["Sparar..."],"View notice":["Visa meddelande"],"Invalid source URL":["Ogiltig URL-källa"],"Invalid redirect action":["Ogiltig omdirigeringsåtgärd"],"Invalid redirect matcher":["Ogiltig omdirigeringsmatchning"],"Unable to add new redirect":["Det går inte att lägga till en ny omdirigering"],"Something went wrong 🙁":["Något gick fel 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."],"Log entries (%d max)":["Antal logginlägg per sida (max %d)"],"Search by IP":["Sök via IP"],"Select bulk action":["Välj massåtgärd"],"Bulk Actions":["Massåtgärd"],"Apply":["Tillämpa"],"First page":["Första sidan"],"Prev page":["Föregående sida"],"Current Page":["Aktuell sida"],"of %(page)s":["av %(sidor)"],"Next page":["Nästa sida"],"Last page":["Sista sidan"],"%s item":["%s objekt","%s objekt"],"Select All":["Välj allt"],"Sorry, something went wrong loading the data - please try again":["Något gick fel när data laddades - Vänligen försök igen"],"No results":["Inga resultat"],"Delete the logs - are you sure?":["Är du säker på att du vill radera loggarna?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."],"Yes! Delete the logs":["Ja! Radera loggarna"],"No! Don't delete the logs":["Nej! Radera inte loggarna"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."],"Newsletter":["Nyhetsbrev"],"Want to keep up to date with changes to Redirection?":["Vill du bli uppdaterad om ändringar i Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Anmäl dig till Redirection-nyhetsbrevet - ett litet nyhetsbrev om nya funktioner och ändringar i tillägget. Det är perfekt om du vill testa kommande förändringar i betaversioner innan en skarp version släpps publikt."],"Your email address:":["Din e-postadress:"],"You've supported this plugin - thank you!":["Du har stöttat detta tillägg - tack!"],"You get useful software and I get to carry on making it better.":["Du får en användbar mjukvara och jag kan fortsätta göra den bättre."],"Forever":["För evigt"],"Delete the plugin - are you sure?":["Radera tillägget - är du verkligen säker på det?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Tar du bort tillägget tar du även bort alla omdirigeringar, loggar och inställningar. Gör detta om du vill ta bort tillägget helt och hållet, eller om du vill återställa tillägget."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["När du har tagit bort tillägget kommer dina omdirigeringar att sluta fungera. Om de verkar fortsätta att fungera, vänligen rensa din webbläsares cache."],"Yes! Delete the plugin":["Ja! Radera detta tillägg"],"No! Don't delete the plugin":["Nej! Radera inte detta tillägg"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Hantera alla dina 301-omdirigeringar och övervaka 404-fel"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection är gratis att använda - livet är underbart och ljuvligt! Det har krävts mycket tid och ansträngningar för att utveckla tillägget och du kan hjälpa till med att stödja denna utveckling genom att {{strong}} göra en liten donation {{/ strong}}."],"Redirection Support":["Support för Redirection"],"Support":["Support"],"404s":["404:or"],"Log":["Logg"],"Delete Redirection":["Ta bort Redirection"],"Upload":["Ladda upp"],"Import":["Importera"],"Update":["Uppdatera"],"Auto-generate URL":["Autogenerera URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"],"RSS Token":["RSS-nyckel"],"404 Logs":["404-loggar"],"(time to keep logs for)":["(hur länge loggar ska sparas)"],"Redirect Logs":["Redirection-loggar"],"I'm a nice person and I have helped support the author of this plugin":["Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"],"Plugin Support":["Support för tillägg"],"Options":["Alternativ"],"Two months":["Två månader"],"A month":["En månad"],"A week":["En vecka"],"A day":["En dag"],"No logs":["Inga loggar"],"Delete All":["Radera alla"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Använd grupper för att organisera dina omdirigeringar. Grupper tillämpas på en modul, vilken påverkar hur omdirigeringar i den gruppen funkar. Behåll bara WordPress-modulen om du känner dig osäker."],"Add Group":["Lägg till grupp"],"Search":["Sök"],"Groups":["Grupper"],"Save":["Spara"],"Group":["Grupp"],"Match":["Matcha"],"Add new redirection":["Lägg till ny omdirigering"],"Cancel":["Avbryt"],"Download":["Hämta"],"Redirection":["Redirection"],"Settings":["Inställningar"],"Do nothing":["Gör ingenting"],"Error (404)":["Fel (404)"],"Pass-through":["Passera"],"Redirect to random post":["Omdirigering till slumpmässigt inlägg"],"Redirect to URL":["Omdirigera till URL"],"Invalid group when creating redirect":["Gruppen är ogiltig när omdirigering skapas"],"IP":["IP"],"Source URL":["URL-källa"],"Date":["Datum"],"Add Redirect":["Lägg till omdirigering"],"All modules":["Alla moduler"],"View Redirects":["Visa omdirigeringar"],"Module":["Modul"],"Redirects":["Omdirigering"],"Name":["Namn"],"Filter":["Filtrera"],"Reset hits":["Nollställ träffar"],"Enable":["Aktivera"],"Disable":["Inaktivera"],"Delete":["Radera"],"Edit":["Redigera"],"Last Access":["Senast använd"],"Hits":["Träffar"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Modifierade inlägg"],"Redirections":["Omdirigeringar"],"User Agent":["Användaragent"],"URL and user agent":["URL och användaragent"],"Target URL":["Mål-URL"],"URL only":["Endast URL"],"Regex":["Reguljärt uttryck"],"Referrer":["Hänvisningsadress"],"URL and referrer":["URL och hänvisande webbplats"],"Logged Out":["Utloggad"],"Logged In":["Inloggad"],"URL and login status":["URL och inloggnings-status"]}
locale/json/redirection-zh_TW.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Form request":[""],"Relative /wp-json/":[""],"Proxy over Admin AJAX":[""],"Default /wp-json/":[""],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":[""],"Site and home are consistent":[""],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":[""],"Header value":[""],"Header name":[""],"HTTP Header":[""],"WordPress filter name":[""],"Filter Name":[""],"Cookie value":[""],"Cookie name":[""],"Cookie":[""],"Optional description":[""],"Target URL when not matched":[""],"Target URL when matched":[""],"clearing your cache.":[""],"If you are using a caching system such as Cloudflare then please read this: ":[""],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":[""],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":[""],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":[""],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":[""],"Unable to load Redirection ☹️":[""],"WordPress REST API is working at %s":[""],"WordPress REST API":[""],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":[""],"Useragent Error":[""],"Unknown Useragent":[""],"Device":[""],"Operating System":[""],"Browser":[""],"Engine":[""],"Useragent":[""],"Agent":[""],"No IP logging":[""],"Full IP logging":[""],"Anonymize IP (mask last part)":[""],"Monitor changes to %(type)s":[""],"IP Logging":[""],"(select IP logging level)":[""],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":[""],"Geo IP":[""],"City":[""],"Area":[""],"Timezone":[""],"Geo Location":[""],"Powered by {{link}}redirect.li{{/link}}":[""],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":["重要詳細資料"],"Need help?":[""],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":["排序"],"410 - Gone":["410 - 已移走"],"Position":["排序"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":["Apache 模組"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":["匯入至群組"],"Import a CSV, .htaccess, or JSON file.":["匯入 CSV、 .htaccess 或 JSON 檔案。"],"Click 'Add File' or drag and drop here.":[""],"Add File":["新增檔案"],"File selected":["檔案已選擇"],"Importing":["匯入"],"Finished importing":["已完成匯入"],"Total redirects imported:":["總共匯入的重新導向:"],"Double-check the file is the correct format!":[""],"OK":["確定"],"Close":["關閉"],"All imports will be appended to the current database.":["所有的匯入將會顯示在目前的資料庫。"],"Export":["匯出"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["全部"],"WordPress redirects":["WordPress 的重新導向"],"Apache redirects":["Apache 的重新導向"],"Nginx redirects":["Nginx 的重新導向"],"CSV":["CSV"],"Apache .htaccess":[""],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["檢視"],"Log files can be exported from the log pages.":[""],"Import/Export":["匯入匯出"],"Logs":["記錄"],"404 errors":["404 錯誤"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["支援 💰"],"Redirection saved":["重新導向已儲存"],"Log deleted":[""],"Settings saved":["設定已儲存"],"Group saved":["群組已儲存"],"Are you sure you want to delete this item?":[[""]],"pass":["經由"],"All groups":["所有群組"],"301 - Moved Permanently":["301 - 已永久移動"],"302 - Found":["302 - 找到"],"307 - Temporary Redirect":["307 - 暫時重新導向"],"308 - Permanent Redirect":["308 - 永久重新導向"],"401 - Unauthorized":["401 - 未授權"],"404 - Not Found":["404 - 找不到頁面"],"Title":["標題"],"When matched":["當符合"],"with HTTP code":[""],"Show advanced options":["顯示進階選項"],"Matched Target":["有符合目標"],"Unmatched Target":["無符合目標"],"Saving...":["儲存…"],"View notice":["檢視注意事項"],"Invalid source URL":["無效的來源網址"],"Invalid redirect action":["無效的重新導向操作"],"Invalid redirect matcher":["無效的重新導向比對器"],"Unable to add new redirect":[""],"Something went wrong 🙁":[""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[""],"Log entries (%d max)":[""],"Search by IP":["依 IP 搜尋"],"Select bulk action":["選擇批量操作"],"Bulk Actions":["批量操作"],"Apply":["套用"],"First page":["第一頁"],"Prev page":["前一頁"],"Current Page":["目前頁數"],"of %(page)s":["之 %(頁)s"],"Next page":["下一頁"],"Last page":["最後頁"],"%s item":[[""]],"Select All":["全選"],"Sorry, something went wrong loading the data - please try again":[""],"No results":["無結果"],"Delete the logs - are you sure?":["刪除記錄 - 您確定嗎?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[""],"Yes! Delete the logs":["是!刪除記錄"],"No! Don't delete the logs":["否!不要刪除記錄"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":[""],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[""],"Your email address:":[""],"You've supported this plugin - thank you!":[""],"You get useful software and I get to carry on making it better.":[""],"Forever":["永遠"],"Delete the plugin - are you sure?":[""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[""],"Yes! Delete the plugin":[""],"No! Don't delete the plugin":[""],"John Godley":[""],"Manage all your 301 redirects and monitor 404 errors":[""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[""],"Redirection Support":[""],"Support":["支援"],"404s":["404 錯誤"],"Log":["記錄"],"Delete Redirection":["刪除重新導向"],"Upload":["上傳"],"Import":["匯入"],"Update":["更新"],"Auto-generate URL":["自動產生網址"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[""],"RSS Token":["RSS 動態金鑰"],"404 Logs":["404 記錄"],"(time to keep logs for)":["(保留記錄時間)"],"Redirect Logs":["重新導向記錄"],"I'm a nice person and I have helped support the author of this plugin":["我是個熱心人,我已經贊助或支援外掛作者"],"Plugin Support":["外掛支援"],"Options":["選項"],"Two months":["兩個月"],"A month":["一個月"],"A week":["一週"],"A day":["一天"],"No logs":["不記錄"],"Delete All":["全部刪除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[""],"Add Group":["新增群組"],"Search":["搜尋"],"Groups":["群組"],"Save":["儲存"],"Group":["群組"],"Match":["符合"],"Add new redirection":["新增重新導向"],"Cancel":["取消"],"Download":["下載"],"Redirection":["重新導向"],"Settings":["設定"],"Do nothing":["什麼也不做"],"Error (404)":["錯誤 (404)"],"Pass-through":["直接經由"],"Redirect to random post":["重新導向隨機發表"],"Redirect to URL":["重新導向至網址"],"Invalid group when creating redirect":[""],"IP":["IP"],"Source URL":["來源網址"],"Date":["日期"],"Add Redirect":["新增重新導向"],"All modules":["所有模組"],"View Redirects":["檢視重新導向"],"Module":["模組"],"Redirects":["重新導向"],"Name":["名稱"],"Filter":["篩選"],"Reset hits":["重設點擊"],"Enable":["啟用"],"Disable":["停用"],"Delete":["刪除"],"Edit":["編輯"],"Last Access":["最後存取"],"Hits":["點擊"],"URL":["網址"],"Type":["類型"],"Modified Posts":["特定發表"],"Redirections":["重新導向"],"User Agent":["使用者代理程式"],"URL and user agent":["網址與使用者代理程式"],"Target URL":["目標網址"],"URL only":["僅限網址"],"Regex":["正則表達式"],"Referrer":["引用頁"],"URL and referrer":["網址與引用頁"],"Logged Out":["已登出"],"Logged In":["已登入"],"URL and login status":["網址與登入狀態"]}
1
+ {"":[],"Form request":[""],"Relative /wp-json/":[""],"Proxy over Admin AJAX":[""],"Default /wp-json/":[""],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":[""],"Site and home protocol":[""],"Site and home URL are inconsistent - please correct from your General settings":[""],"Site and home are consistent":[""],"Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":[""],"Header value":[""],"Header name":[""],"HTTP Header":[""],"WordPress filter name":[""],"Filter Name":[""],"Cookie value":[""],"Cookie name":[""],"Cookie":[""],"Optional description":[""],"Target URL when not matched (empty to ignore)":[""],"Target URL when matched (empty to ignore)":[""],"clearing your cache.":[""],"If you are using a caching system such as Cloudflare then please read this: ":[""],"URL and HTTP header":[""],"URL and custom filter":[""],"URL and cookie":[""],"404 deleted":[""],"Raw /index.php?rest_route=/":[""],"REST API":[""],"How Redirection uses the REST API - don't change unless necessary":[""],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":[""],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":[""],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":[""],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":[""],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":[""],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":[""],"None of the suggestions helped":[""],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":[""],"Unable to load Redirection ☹️":[""],"WordPress REST API is working at %s":[""],"WordPress REST API":[""],"REST API is not working so routes not checked":[""],"Redirection routes are working":[""],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":[""],"Redirection routes":[""],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":[""],"https://johngodley.com":[""],"Useragent Error":[""],"Unknown Useragent":[""],"Device":[""],"Operating System":[""],"Browser":[""],"Engine":[""],"Useragent":[""],"Agent":[""],"No IP logging":[""],"Full IP logging":[""],"Anonymize IP (mask last part)":[""],"Monitor changes to %(type)s":[""],"IP Logging":[""],"(select IP logging level)":[""],"Geo Info":[""],"Agent Info":[""],"Filter by IP":[""],"Referrer / User Agent":[""],"Geo IP Error":[""],"Something went wrong obtaining this information":[""],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":[""],"No details are known for this address.":[""],"Geo IP":[""],"City":[""],"Area":[""],"Timezone":[""],"Geo Location":[""],"Powered by {{link}}redirect.li{{/link}}":[""],"Trash":[""],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":[""],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":[""],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":["重要詳細資料"],"Need help?":[""],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":["排序"],"410 - Gone":["410 - 已移走"],"Position":["排序"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":[""],"Apache Module":["Apache 模組"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":["匯入至群組"],"Import a CSV, .htaccess, or JSON file.":["匯入 CSV、 .htaccess 或 JSON 檔案。"],"Click 'Add File' or drag and drop here.":[""],"Add File":["新增檔案"],"File selected":["檔案已選擇"],"Importing":["匯入"],"Finished importing":["已完成匯入"],"Total redirects imported:":["總共匯入的重新導向:"],"Double-check the file is the correct format!":[""],"OK":["確定"],"Close":["關閉"],"All imports will be appended to the current database.":["所有的匯入將會顯示在目前的資料庫。"],"Export":["匯出"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["全部"],"WordPress redirects":["WordPress 的重新導向"],"Apache redirects":["Apache 的重新導向"],"Nginx redirects":["Nginx 的重新導向"],"CSV":["CSV"],"Apache .htaccess":[""],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["檢視"],"Log files can be exported from the log pages.":[""],"Import/Export":["匯入匯出"],"Logs":["記錄"],"404 errors":["404 錯誤"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["支援 💰"],"Redirection saved":["重新導向已儲存"],"Log deleted":[""],"Settings saved":["設定已儲存"],"Group saved":["群組已儲存"],"Are you sure you want to delete this item?":[[""]],"pass":["經由"],"All groups":["所有群組"],"301 - Moved Permanently":["301 - 已永久移動"],"302 - Found":["302 - 找到"],"307 - Temporary Redirect":["307 - 暫時重新導向"],"308 - Permanent Redirect":["308 - 永久重新導向"],"401 - Unauthorized":["401 - 未授權"],"404 - Not Found":["404 - 找不到頁面"],"Title":["標題"],"When matched":["當符合"],"with HTTP code":[""],"Show advanced options":["顯示進階選項"],"Matched Target":["有符合目標"],"Unmatched Target":["無符合目標"],"Saving...":["儲存…"],"View notice":["檢視注意事項"],"Invalid source URL":["無效的來源網址"],"Invalid redirect action":["無效的重新導向操作"],"Invalid redirect matcher":["無效的重新導向比對器"],"Unable to add new redirect":[""],"Something went wrong 🙁":[""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[""],"Log entries (%d max)":[""],"Search by IP":["依 IP 搜尋"],"Select bulk action":["選擇批量操作"],"Bulk Actions":["批量操作"],"Apply":["套用"],"First page":["第一頁"],"Prev page":["前一頁"],"Current Page":["目前頁數"],"of %(page)s":["之 %(頁)s"],"Next page":["下一頁"],"Last page":["最後頁"],"%s item":[[""]],"Select All":["全選"],"Sorry, something went wrong loading the data - please try again":[""],"No results":["無結果"],"Delete the logs - are you sure?":["刪除記錄 - 您確定嗎?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[""],"Yes! Delete the logs":["是!刪除記錄"],"No! Don't delete the logs":["否!不要刪除記錄"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":[""],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[""],"Your email address:":[""],"You've supported this plugin - thank you!":[""],"You get useful software and I get to carry on making it better.":[""],"Forever":["永遠"],"Delete the plugin - are you sure?":[""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[""],"Yes! Delete the plugin":[""],"No! Don't delete the plugin":[""],"John Godley":[""],"Manage all your 301 redirects and monitor 404 errors":[""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[""],"Redirection Support":[""],"Support":["支援"],"404s":["404 錯誤"],"Log":["記錄"],"Delete Redirection":["刪除重新導向"],"Upload":["上傳"],"Import":["匯入"],"Update":["更新"],"Auto-generate URL":["自動產生網址"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[""],"RSS Token":["RSS 動態金鑰"],"404 Logs":["404 記錄"],"(time to keep logs for)":["(保留記錄時間)"],"Redirect Logs":["重新導向記錄"],"I'm a nice person and I have helped support the author of this plugin":["我是個熱心人,我已經贊助或支援外掛作者"],"Plugin Support":["外掛支援"],"Options":["選項"],"Two months":["兩個月"],"A month":["一個月"],"A week":["一週"],"A day":["一天"],"No logs":["不記錄"],"Delete All":["全部刪除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[""],"Add Group":["新增群組"],"Search":["搜尋"],"Groups":["群組"],"Save":["儲存"],"Group":["群組"],"Match":["符合"],"Add new redirection":["新增重新導向"],"Cancel":["取消"],"Download":["下載"],"Redirection":["重新導向"],"Settings":["設定"],"Do nothing":["什麼也不做"],"Error (404)":["錯誤 (404)"],"Pass-through":["直接經由"],"Redirect to random post":["重新導向隨機發表"],"Redirect to URL":["重新導向至網址"],"Invalid group when creating redirect":[""],"IP":["IP"],"Source URL":["來源網址"],"Date":["日期"],"Add Redirect":["新增重新導向"],"All modules":["所有模組"],"View Redirects":["檢視重新導向"],"Module":["模組"],"Redirects":["重新導向"],"Name":["名稱"],"Filter":["篩選"],"Reset hits":["重設點擊"],"Enable":["啟用"],"Disable":["停用"],"Delete":["刪除"],"Edit":["編輯"],"Last Access":["最後存取"],"Hits":["點擊"],"URL":["網址"],"Type":["類型"],"Modified Posts":["特定發表"],"Redirections":["重新導向"],"User Agent":["使用者代理程式"],"URL and user agent":["網址與使用者代理程式"],"Target URL":["目標網址"],"URL only":["僅限網址"],"Regex":["正則表達式"],"Referrer":["引用頁"],"URL and referrer":["網址與引用頁"],"Logged Out":["已登出"],"Logged In":["已登入"],"URL and login status":["網址與登入狀態"]}
locale/redirection-de_DE.po CHANGED
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
15
- msgid "Enter full URL, including http:// or https://"
 
 
 
 
 
 
 
 
16
  msgstr ""
17
 
18
  #: redirection-strings.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr ""
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr ""
93
 
@@ -99,31 +147,31 @@ msgstr ""
99
  msgid "Please logout and login again."
100
  msgstr ""
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr ""
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr ""
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr ""
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "Formularanfrage"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "Relativ /wp-json/"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr "Proxy über Admin AJAX"
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "Standard /wp-json/"
129
 
@@ -143,51 +191,51 @@ msgstr ""
143
  msgid "Site and home are consistent"
144
  msgstr ""
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
  msgstr ""
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Akzeptiere Sprache"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Wert im Header "
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Header Name "
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "HTTP Header"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "WordPress Filter Name "
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Filter Name"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr ""
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr ""
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr ""
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr ""
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr ""
193
 
@@ -199,31 +247,31 @@ msgstr ""
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr ""
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr ""
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr ""
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr ""
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr ""
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr ""
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr ""
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr ""
229
 
@@ -255,11 +303,11 @@ msgstr ""
255
  msgid "None of the suggestions helped"
256
  msgstr ""
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr ""
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr ""
265
 
@@ -296,75 +344,75 @@ msgstr ""
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr ""
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr ""
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr ""
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Betriebssystem"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Browser"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr ""
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr ""
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr ""
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "Keine IP-Protokollierung"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Vollständige IP-Protokollierung"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Änderungen überwachen für %(type)s"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "IP-Protokollierung"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(IP-Protokollierungsstufe wählen)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr ""
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr ""
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr ""
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr ""
370
 
@@ -372,7 +420,8 @@ msgstr ""
372
  msgid "Geo IP Error"
373
  msgstr ""
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr ""
378
 
@@ -405,7 +454,8 @@ msgstr ""
405
  msgid "Geo Location"
406
  msgstr ""
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr ""
411
 
@@ -413,7 +463,7 @@ msgstr ""
413
  msgid "Trash"
414
  msgstr ""
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr ""
419
 
@@ -425,63 +475,63 @@ msgstr ""
425
  msgid "https://redirection.me/"
426
  msgstr ""
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "Die vollständige Dokumentation findest du unter {{site}}https://redirection.me{{/site}}. Solltest du Fragen oder Probleme mit dem Plugin haben, durchsuche bitte zunächst die {{faq}}FAQ{{/faq}}."
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr "Wenn du nicht möchtest, dass deine Nachricht öffentlich sichtbar ist, dann sende sie bitte per {{email}}E-Mail{{/email}} - sende so viele Informationen, wie möglich."
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr ""
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "Eine Stunde"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr ""
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "Möchtest du wirklich von %s importieren?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Plugin Importer"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "Total = "
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "Import von %s"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr "Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Redirection wurde nicht korrekt installiert"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr "Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe zunächst ein WordPress Update durch."
487
 
@@ -489,71 +539,71 @@ msgstr "Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe z
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr ""
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr ""
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr ""
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr ""
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr ""
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr ""
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr ""
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr ""
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr ""
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr ""
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr ""
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr ""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr ""
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr ""
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr ""
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr ""
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr ""
559
 
@@ -561,23 +611,23 @@ msgstr ""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr ""
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr ""
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr ""
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "Redirection konnte nicht geladen werden"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr ""
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr ""
583
 
@@ -653,19 +703,19 @@ msgstr ""
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr ""
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr ""
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "Lädt, bitte warte..."
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr ""
671
 
@@ -681,7 +731,7 @@ msgstr ""
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr ""
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr ""
687
 
@@ -693,135 +743,135 @@ msgstr "E-Mail"
693
  msgid "Important details"
694
  msgstr "Wichtige Details"
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Hilfe benötigt?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr ""
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr ""
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 - Entfernt"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Position"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr ""
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Apache Modul"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr ""
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Importiere in Gruppe"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Datei hinzufügen"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "Datei ausgewählt"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Importiere"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Importieren beendet"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Umleitungen importiert:"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "OK"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Schließen"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Exportieren"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr ""
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Alles"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "WordPress Weiterleitungen"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Apache Weiterleitungen"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Nginx Weiterleitungen"
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr "Apache .htaccess"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr ""
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr ""
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr "Anzeigen"
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Import/Export"
827
 
@@ -837,113 +887,113 @@ msgstr "404 Fehler"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr ""
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr ""
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Unterstützen 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr "Umleitung gespeichert"
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr "Log gelöscht"
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Einstellungen gespeichert"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Gruppe gespeichert"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
868
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
869
 
870
- #: redirection-strings.php:296
871
  msgid "pass"
872
  msgstr ""
873
 
874
- #: redirection-strings.php:262
875
  msgid "All groups"
876
  msgstr "Alle Gruppen"
877
 
878
- #: redirection-strings.php:232
879
  msgid "301 - Moved Permanently"
880
  msgstr "301- Dauerhaft verschoben"
881
 
882
- #: redirection-strings.php:233
883
  msgid "302 - Found"
884
  msgstr "302 - Gefunden"
885
 
886
- #: redirection-strings.php:234
887
  msgid "307 - Temporary Redirect"
888
  msgstr "307 - Zeitweise Umleitung"
889
 
890
- #: redirection-strings.php:235
891
  msgid "308 - Permanent Redirect"
892
  msgstr "308 - Dauerhafte Umleitung"
893
 
894
- #: redirection-strings.php:236
895
  msgid "401 - Unauthorized"
896
  msgstr "401 - Unautorisiert"
897
 
898
- #: redirection-strings.php:237
899
  msgid "404 - Not Found"
900
  msgstr "404 - Nicht gefunden"
901
 
902
- #: redirection-strings.php:239
903
  msgid "Title"
904
  msgstr "Titel"
905
 
906
- #: redirection-strings.php:242
907
  msgid "When matched"
908
  msgstr ""
909
 
910
- #: redirection-strings.php:243
911
  msgid "with HTTP code"
912
  msgstr "mit HTTP Code"
913
 
914
- #: redirection-strings.php:252
915
  msgid "Show advanced options"
916
  msgstr "Zeige erweiterte Optionen"
917
 
918
- #: redirection-strings.php:212
919
  msgid "Matched Target"
920
  msgstr "Passendes Ziel"
921
 
922
- #: redirection-strings.php:214
923
  msgid "Unmatched Target"
924
  msgstr "Unpassendes Ziel"
925
 
926
- #: redirection-strings.php:206 redirection-strings.php:207
927
  msgid "Saving..."
928
  msgstr "Speichern..."
929
 
930
- #: redirection-strings.php:145
931
  msgid "View notice"
932
  msgstr "Hinweis anzeigen"
933
 
934
- #: models/redirect.php:524
935
  msgid "Invalid source URL"
936
  msgstr "Ungültige Quell URL"
937
 
938
- #: models/redirect.php:456
939
  msgid "Invalid redirect action"
940
  msgstr "Ungültige Umleitungsaktion"
941
 
942
- #: models/redirect.php:450
943
  msgid "Invalid redirect matcher"
944
  msgstr ""
945
 
946
- #: models/redirect.php:185
947
  msgid "Unable to add new redirect"
948
  msgstr ""
949
 
@@ -959,129 +1009,129 @@ msgstr "Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübe
959
  msgid "Log entries (%d max)"
960
  msgstr "Log Einträge (%d max)"
961
 
962
- #: redirection-strings.php:334
963
  msgid "Search by IP"
964
  msgstr "Suche nach IP"
965
 
966
- #: redirection-strings.php:329
967
  msgid "Select bulk action"
968
  msgstr ""
969
 
970
- #: redirection-strings.php:330
971
  msgid "Bulk Actions"
972
  msgstr ""
973
 
974
- #: redirection-strings.php:331
975
  msgid "Apply"
976
  msgstr "Anwenden"
977
 
978
- #: redirection-strings.php:322
979
  msgid "First page"
980
  msgstr "Erste Seite"
981
 
982
- #: redirection-strings.php:323
983
  msgid "Prev page"
984
  msgstr "Vorige Seite"
985
 
986
- #: redirection-strings.php:324
987
  msgid "Current Page"
988
  msgstr "Aktuelle Seite"
989
 
990
- #: redirection-strings.php:325
991
  msgid "of %(page)s"
992
  msgstr "von %(Seite)n"
993
 
994
- #: redirection-strings.php:326
995
  msgid "Next page"
996
  msgstr "Nächste Seite"
997
 
998
- #: redirection-strings.php:327
999
  msgid "Last page"
1000
  msgstr "Letzte Seite"
1001
 
1002
- #: redirection-strings.php:328
1003
  msgid "%s item"
1004
  msgid_plural "%s items"
1005
  msgstr[0] "%s Eintrag"
1006
  msgstr[1] "%s Einträge"
1007
 
1008
- #: redirection-strings.php:321
1009
  msgid "Select All"
1010
  msgstr "Alle auswählen"
1011
 
1012
- #: redirection-strings.php:333
1013
  msgid "Sorry, something went wrong loading the data - please try again"
1014
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
1015
 
1016
- #: redirection-strings.php:332
1017
  msgid "No results"
1018
  msgstr "Keine Ergebnisse"
1019
 
1020
- #: redirection-strings.php:111
1021
  msgid "Delete the logs - are you sure?"
1022
  msgstr "Logs löschen - bist du sicher?"
1023
 
1024
- #: redirection-strings.php:112
1025
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1026
  msgstr "Einmal gelöscht, sind deine aktuellen Logs nicht mehr verfügbar. Du kannst einen Zeitplan zur Löschung in den Redirection Einstellungen setzen, wenn du dies automatisch machen möchtest."
1027
 
1028
- #: redirection-strings.php:113
1029
  msgid "Yes! Delete the logs"
1030
  msgstr "Ja! Lösche die Logs"
1031
 
1032
- #: redirection-strings.php:114
1033
  msgid "No! Don't delete the logs"
1034
  msgstr "Nein! Lösche die Logs nicht"
1035
 
1036
- #: redirection-strings.php:312
1037
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1038
  msgstr ""
1039
 
1040
- #: redirection-strings.php:311 redirection-strings.php:313
1041
  msgid "Newsletter"
1042
  msgstr "Newsletter"
1043
 
1044
- #: redirection-strings.php:314
1045
  msgid "Want to keep up to date with changes to Redirection?"
1046
  msgstr ""
1047
 
1048
- #: redirection-strings.php:315
1049
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1050
  msgstr "Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."
1051
 
1052
- #: redirection-strings.php:316
1053
  msgid "Your email address:"
1054
  msgstr "Deine E-Mail Adresse:"
1055
 
1056
- #: redirection-strings.php:153
1057
  msgid "You've supported this plugin - thank you!"
1058
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
1059
 
1060
- #: redirection-strings.php:156
1061
  msgid "You get useful software and I get to carry on making it better."
1062
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
1063
 
1064
- #: redirection-strings.php:164 redirection-strings.php:169
1065
  msgid "Forever"
1066
  msgstr "Dauerhaft"
1067
 
1068
- #: redirection-strings.php:146
1069
  msgid "Delete the plugin - are you sure?"
1070
  msgstr "Plugin löschen - bist du sicher?"
1071
 
1072
- #: redirection-strings.php:147
1073
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1074
  msgstr "Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."
1075
 
1076
- #: redirection-strings.php:148
1077
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1078
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
1079
 
1080
- #: redirection-strings.php:149
1081
  msgid "Yes! Delete the plugin"
1082
  msgstr "Ja! Lösche das Plugin"
1083
 
1084
- #: redirection-strings.php:150
1085
  msgid "No! Don't delete the plugin"
1086
  msgstr "Nein! Lösche das Plugin nicht"
1087
 
@@ -1093,7 +1143,7 @@ msgstr "John Godley"
1093
  msgid "Manage all your 301 redirects and monitor 404 errors"
1094
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
1095
 
1096
- #: redirection-strings.php:155
1097
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1098
  msgstr "Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber: Sehr viel Zeit und Arbeit sind in seine Entwicklung geflossen und falls es sich als nützlich erwiesen hat, kannst du die Entwicklung {{strong}}mit einer kleinen Spende unterstützen{{/strong}}."
1099
 
@@ -1101,91 +1151,91 @@ msgstr "Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber:
1101
  msgid "Redirection Support"
1102
  msgstr "Unleitung Support"
1103
 
1104
- #: redirection-strings.php:63 redirection-strings.php:144
1105
  msgid "Support"
1106
  msgstr "Support"
1107
 
1108
- #: redirection-strings.php:141
1109
  msgid "404s"
1110
  msgstr "404s"
1111
 
1112
- #: redirection-strings.php:140
1113
  msgid "Log"
1114
  msgstr "Log"
1115
 
1116
- #: redirection-strings.php:151
1117
  msgid "Delete Redirection"
1118
  msgstr "Umleitung löschen"
1119
 
1120
- #: redirection-strings.php:81
1121
  msgid "Upload"
1122
  msgstr "Hochladen"
1123
 
1124
- #: redirection-strings.php:92
1125
  msgid "Import"
1126
  msgstr "Importieren"
1127
 
1128
- #: redirection-strings.php:205
1129
  msgid "Update"
1130
  msgstr "Aktualisieren"
1131
 
1132
- #: redirection-strings.php:194
1133
  msgid "Auto-generate URL"
1134
  msgstr "Selbsterstellte URL"
1135
 
1136
- #: redirection-strings.php:193
1137
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1138
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1139
 
1140
- #: redirection-strings.php:192
1141
  msgid "RSS Token"
1142
  msgstr "RSS Token"
1143
 
1144
- #: redirection-strings.php:186
1145
  msgid "404 Logs"
1146
  msgstr "404-Logs"
1147
 
1148
- #: redirection-strings.php:185 redirection-strings.php:187
1149
  msgid "(time to keep logs for)"
1150
  msgstr "(Dauer, für die die Logs behalten werden)"
1151
 
1152
- #: redirection-strings.php:184
1153
  msgid "Redirect Logs"
1154
  msgstr "Umleitungs-Logs"
1155
 
1156
- #: redirection-strings.php:183
1157
  msgid "I'm a nice person and I have helped support the author of this plugin"
1158
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1159
 
1160
- #: redirection-strings.php:158
1161
  msgid "Plugin Support"
1162
  msgstr "Plugin Support"
1163
 
1164
- #: redirection-strings.php:62 redirection-strings.php:143
1165
  msgid "Options"
1166
  msgstr "Optionen"
1167
 
1168
- #: redirection-strings.php:163
1169
  msgid "Two months"
1170
  msgstr "zwei Monate"
1171
 
1172
- #: redirection-strings.php:162
1173
  msgid "A month"
1174
  msgstr "ein Monat"
1175
 
1176
- #: redirection-strings.php:161 redirection-strings.php:168
1177
  msgid "A week"
1178
  msgstr "eine Woche"
1179
 
1180
- #: redirection-strings.php:160 redirection-strings.php:167
1181
  msgid "A day"
1182
  msgstr "einen Tag"
1183
 
1184
- #: redirection-strings.php:159
1185
  msgid "No logs"
1186
  msgstr "Keine Logs"
1187
 
1188
- #: redirection-strings.php:110
1189
  msgid "Delete All"
1190
  msgstr "Alle löschen"
1191
 
@@ -1197,37 +1247,37 @@ msgstr "Benutze Gruppen, um deine Umleitungen zu ordnen. Gruppen werden einem Mo
1197
  msgid "Add Group"
1198
  msgstr "Gruppe hinzufügen"
1199
 
1200
- #: redirection-strings.php:335
1201
  msgid "Search"
1202
  msgstr "Suchen"
1203
 
1204
- #: redirection-strings.php:58 redirection-strings.php:139
1205
  msgid "Groups"
1206
  msgstr "Gruppen"
1207
 
1208
  #: redirection-strings.php:14 redirection-strings.php:55
1209
- #: redirection-strings.php:246
1210
  msgid "Save"
1211
  msgstr "Speichern"
1212
 
1213
- #: redirection-strings.php:244
1214
  msgid "Group"
1215
  msgstr "Gruppe"
1216
 
1217
- #: redirection-strings.php:241
1218
  msgid "Match"
1219
  msgstr "Passend"
1220
 
1221
- #: redirection-strings.php:263
1222
  msgid "Add new redirection"
1223
  msgstr "Eine neue Weiterleitung hinzufügen"
1224
 
1225
- #: redirection-strings.php:56 redirection-strings.php:82
1226
- #: redirection-strings.php:250
1227
  msgid "Cancel"
1228
  msgstr "Abbrechen"
1229
 
1230
- #: redirection-strings.php:106
1231
  msgid "Download"
1232
  msgstr "Download"
1233
 
@@ -1239,45 +1289,45 @@ msgstr "Redirection"
1239
  msgid "Settings"
1240
  msgstr "Einstellungen"
1241
 
1242
- #: redirection-strings.php:231
1243
  msgid "Do nothing"
1244
  msgstr "Mache nichts"
1245
 
1246
- #: redirection-strings.php:230
1247
  msgid "Error (404)"
1248
  msgstr "Fehler (404)"
1249
 
1250
- #: redirection-strings.php:229
1251
  msgid "Pass-through"
1252
  msgstr "Durchreichen"
1253
 
1254
- #: redirection-strings.php:228
1255
  msgid "Redirect to random post"
1256
  msgstr "Umleitung zu zufälligen Beitrag"
1257
 
1258
- #: redirection-strings.php:227
1259
  msgid "Redirect to URL"
1260
  msgstr "Umleitung zur URL"
1261
 
1262
- #: models/redirect.php:514
1263
  msgid "Invalid group when creating redirect"
1264
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1265
 
1266
- #: redirection-strings.php:119 redirection-strings.php:128
1267
  msgid "IP"
1268
  msgstr "IP"
1269
 
1270
- #: redirection-strings.php:117 redirection-strings.php:126
1271
- #: redirection-strings.php:247
1272
  msgid "Source URL"
1273
  msgstr "URL-Quelle"
1274
 
1275
- #: redirection-strings.php:116 redirection-strings.php:125
1276
  msgid "Date"
1277
  msgstr "Zeitpunkt"
1278
 
1279
- #: redirection-strings.php:130 redirection-strings.php:134
1280
- #: redirection-strings.php:264
1281
  msgid "Add Redirect"
1282
  msgstr "Umleitung hinzufügen"
1283
 
@@ -1293,7 +1343,7 @@ msgstr "Weiterleitungen anschauen"
1293
  msgid "Module"
1294
  msgstr "Module"
1295
 
1296
- #: redirection-strings.php:39 redirection-strings.php:138
1297
  msgid "Redirects"
1298
  msgstr "Umleitungen"
1299
 
@@ -1302,49 +1352,49 @@ msgstr "Umleitungen"
1302
  msgid "Name"
1303
  msgstr "Name"
1304
 
1305
- #: redirection-strings.php:320
1306
  msgid "Filter"
1307
  msgstr "Filter"
1308
 
1309
- #: redirection-strings.php:261
1310
  msgid "Reset hits"
1311
  msgstr "Treffer zurücksetzen"
1312
 
1313
  #: redirection-strings.php:42 redirection-strings.php:52
1314
- #: redirection-strings.php:259 redirection-strings.php:295
1315
  msgid "Enable"
1316
  msgstr "Aktivieren"
1317
 
1318
  #: redirection-strings.php:43 redirection-strings.php:51
1319
- #: redirection-strings.php:260 redirection-strings.php:294
1320
  msgid "Disable"
1321
  msgstr "Deaktivieren"
1322
 
1323
  #: redirection-strings.php:41 redirection-strings.php:49
1324
- #: redirection-strings.php:120 redirection-strings.php:121
1325
- #: redirection-strings.php:129 redirection-strings.php:133
1326
- #: redirection-strings.php:152 redirection-strings.php:258
1327
- #: redirection-strings.php:293
1328
  msgid "Delete"
1329
  msgstr "Löschen"
1330
 
1331
- #: redirection-strings.php:48 redirection-strings.php:292
1332
  msgid "Edit"
1333
  msgstr "Bearbeiten"
1334
 
1335
- #: redirection-strings.php:257
1336
  msgid "Last Access"
1337
  msgstr "Letzter Zugriff"
1338
 
1339
- #: redirection-strings.php:256
1340
  msgid "Hits"
1341
  msgstr "Treffer"
1342
 
1343
- #: redirection-strings.php:254 redirection-strings.php:308
1344
  msgid "URL"
1345
  msgstr "URL"
1346
 
1347
- #: redirection-strings.php:253
1348
  msgid "Type"
1349
  msgstr "Typ"
1350
 
@@ -1356,44 +1406,44 @@ msgstr "Geänderte Beiträge"
1356
  msgid "Redirections"
1357
  msgstr "Redirections"
1358
 
1359
- #: redirection-strings.php:265
1360
  msgid "User Agent"
1361
  msgstr "User Agent"
1362
 
1363
- #: matches/user-agent.php:10 redirection-strings.php:222
1364
  msgid "URL and user agent"
1365
  msgstr "URL und User-Agent"
1366
 
1367
- #: redirection-strings.php:216
1368
  msgid "Target URL"
1369
  msgstr "Ziel-URL"
1370
 
1371
- #: matches/url.php:7 redirection-strings.php:218
1372
  msgid "URL only"
1373
  msgstr "Nur URL"
1374
 
1375
- #: redirection-strings.php:249 redirection-strings.php:271
1376
- #: redirection-strings.php:275 redirection-strings.php:283
1377
- #: redirection-strings.php:287
1378
  msgid "Regex"
1379
  msgstr "Regex"
1380
 
1381
- #: redirection-strings.php:285
1382
  msgid "Referrer"
1383
  msgstr "Vermittler"
1384
 
1385
- #: matches/referrer.php:10 redirection-strings.php:221
1386
  msgid "URL and referrer"
1387
  msgstr "URL und Vermittler"
1388
 
1389
- #: redirection-strings.php:210
1390
  msgid "Logged Out"
1391
  msgstr "Ausgeloggt"
1392
 
1393
- #: redirection-strings.php:208
1394
  msgid "Logged In"
1395
  msgstr "Eingeloggt"
1396
 
1397
- #: matches/login.php:8 redirection-strings.php:219
1398
  msgid "URL and login status"
1399
  msgstr "URL- und Loginstatus"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
  msgstr ""
25
 
26
  #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:322
63
+ msgid "Enter full URL, including http:// or https://"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr ""
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr ""
141
 
147
  msgid "Please logout and login again."
148
  msgstr ""
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr ""
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr ""
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr ""
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "Formularanfrage"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "Relativ /wp-json/"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr "Proxy über Admin AJAX"
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "Standard /wp-json/"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr ""
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
  msgstr ""
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Akzeptiere Sprache"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Wert im Header "
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Header Name "
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "HTTP Header"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "WordPress Filter Name "
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Filter Name"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr ""
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr ""
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr ""
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr ""
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr ""
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr ""
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr ""
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr ""
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr ""
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr ""
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr ""
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr ""
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr ""
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr ""
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr ""
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Betriebssystem"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Browser"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr ""
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr ""
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "Keine IP-Protokollierung"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Vollständige IP-Protokollierung"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Änderungen überwachen für %(type)s"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "IP-Protokollierung"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(IP-Protokollierungsstufe wählen)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr ""
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr ""
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr ""
418
 
420
  msgid "Geo IP Error"
421
  msgstr ""
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr ""
427
 
454
  msgid "Geo Location"
455
  msgstr ""
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr ""
461
 
463
  msgid "Trash"
464
  msgstr ""
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr ""
469
 
475
  msgid "https://redirection.me/"
476
  msgstr ""
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "Die vollständige Dokumentation findest du unter {{site}}https://redirection.me{{/site}}. Solltest du Fragen oder Probleme mit dem Plugin haben, durchsuche bitte zunächst die {{faq}}FAQ{{/faq}}."
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr "Wenn du nicht möchtest, dass deine Nachricht öffentlich sichtbar ist, dann sende sie bitte per {{email}}E-Mail{{/email}} - sende so viele Informationen, wie möglich."
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr ""
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "Eine Stunde"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr ""
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "Möchtest du wirklich von %s importieren?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Plugin Importer"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "Total = "
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "Import von %s"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr "Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Redirection wurde nicht korrekt installiert"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr "Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe zunächst ein WordPress Update durch."
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr ""
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr ""
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr ""
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr ""
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr ""
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr ""
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr ""
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr ""
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr ""
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr ""
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr ""
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr ""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr ""
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr ""
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr ""
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr ""
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr ""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr ""
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr ""
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr ""
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "Redirection konnte nicht geladen werden"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr ""
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr ""
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr ""
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr ""
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "Lädt, bitte warte..."
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr ""
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr ""
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr ""
737
 
743
  msgid "Important details"
744
  msgstr "Wichtige Details"
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Hilfe benötigt?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr ""
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr ""
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 - Entfernt"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Position"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr ""
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Apache Modul"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr ""
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Importiere in Gruppe"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Datei hinzufügen"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "Datei ausgewählt"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Importiere"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Importieren beendet"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Umleitungen importiert:"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "OK"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Schließen"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Exportieren"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr ""
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Alles"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "WordPress Weiterleitungen"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Apache Weiterleitungen"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Nginx Weiterleitungen"
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr "Apache .htaccess"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr ""
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr ""
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr "Anzeigen"
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Import/Export"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr ""
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr ""
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Unterstützen 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr "Umleitung gespeichert"
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr "Log gelöscht"
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Einstellungen gespeichert"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Gruppe gespeichert"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
918
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
919
 
920
+ #: redirection-strings.php:309
921
  msgid "pass"
922
  msgstr ""
923
 
924
+ #: redirection-strings.php:274
925
  msgid "All groups"
926
  msgstr "Alle Gruppen"
927
 
928
+ #: redirection-strings.php:244
929
  msgid "301 - Moved Permanently"
930
  msgstr "301- Dauerhaft verschoben"
931
 
932
+ #: redirection-strings.php:245
933
  msgid "302 - Found"
934
  msgstr "302 - Gefunden"
935
 
936
+ #: redirection-strings.php:246
937
  msgid "307 - Temporary Redirect"
938
  msgstr "307 - Zeitweise Umleitung"
939
 
940
+ #: redirection-strings.php:247
941
  msgid "308 - Permanent Redirect"
942
  msgstr "308 - Dauerhafte Umleitung"
943
 
944
+ #: redirection-strings.php:248
945
  msgid "401 - Unauthorized"
946
  msgstr "401 - Unautorisiert"
947
 
948
+ #: redirection-strings.php:249
949
  msgid "404 - Not Found"
950
  msgstr "404 - Nicht gefunden"
951
 
952
+ #: redirection-strings.php:251
953
  msgid "Title"
954
  msgstr "Titel"
955
 
956
+ #: redirection-strings.php:254
957
  msgid "When matched"
958
  msgstr ""
959
 
960
+ #: redirection-strings.php:255
961
  msgid "with HTTP code"
962
  msgstr "mit HTTP Code"
963
 
964
+ #: redirection-strings.php:264
965
  msgid "Show advanced options"
966
  msgstr "Zeige erweiterte Optionen"
967
 
968
+ #: redirection-strings.php:224
969
  msgid "Matched Target"
970
  msgstr "Passendes Ziel"
971
 
972
+ #: redirection-strings.php:226
973
  msgid "Unmatched Target"
974
  msgstr "Unpassendes Ziel"
975
 
976
+ #: redirection-strings.php:218 redirection-strings.php:219
977
  msgid "Saving..."
978
  msgstr "Speichern..."
979
 
980
+ #: redirection-strings.php:157
981
  msgid "View notice"
982
  msgstr "Hinweis anzeigen"
983
 
984
+ #: models/redirect.php:526
985
  msgid "Invalid source URL"
986
  msgstr "Ungültige Quell URL"
987
 
988
+ #: models/redirect.php:458
989
  msgid "Invalid redirect action"
990
  msgstr "Ungültige Umleitungsaktion"
991
 
992
+ #: models/redirect.php:452
993
  msgid "Invalid redirect matcher"
994
  msgstr ""
995
 
996
+ #: models/redirect.php:187
997
  msgid "Unable to add new redirect"
998
  msgstr ""
999
 
1009
  msgid "Log entries (%d max)"
1010
  msgstr "Log Einträge (%d max)"
1011
 
1012
+ #: redirection-strings.php:350
1013
  msgid "Search by IP"
1014
  msgstr "Suche nach IP"
1015
 
1016
+ #: redirection-strings.php:345
1017
  msgid "Select bulk action"
1018
  msgstr ""
1019
 
1020
+ #: redirection-strings.php:346
1021
  msgid "Bulk Actions"
1022
  msgstr ""
1023
 
1024
+ #: redirection-strings.php:347
1025
  msgid "Apply"
1026
  msgstr "Anwenden"
1027
 
1028
+ #: redirection-strings.php:338
1029
  msgid "First page"
1030
  msgstr "Erste Seite"
1031
 
1032
+ #: redirection-strings.php:339
1033
  msgid "Prev page"
1034
  msgstr "Vorige Seite"
1035
 
1036
+ #: redirection-strings.php:340
1037
  msgid "Current Page"
1038
  msgstr "Aktuelle Seite"
1039
 
1040
+ #: redirection-strings.php:341
1041
  msgid "of %(page)s"
1042
  msgstr "von %(Seite)n"
1043
 
1044
+ #: redirection-strings.php:342
1045
  msgid "Next page"
1046
  msgstr "Nächste Seite"
1047
 
1048
+ #: redirection-strings.php:343
1049
  msgid "Last page"
1050
  msgstr "Letzte Seite"
1051
 
1052
+ #: redirection-strings.php:344
1053
  msgid "%s item"
1054
  msgid_plural "%s items"
1055
  msgstr[0] "%s Eintrag"
1056
  msgstr[1] "%s Einträge"
1057
 
1058
+ #: redirection-strings.php:337
1059
  msgid "Select All"
1060
  msgstr "Alle auswählen"
1061
 
1062
+ #: redirection-strings.php:349
1063
  msgid "Sorry, something went wrong loading the data - please try again"
1064
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
1065
 
1066
+ #: redirection-strings.php:348
1067
  msgid "No results"
1068
  msgstr "Keine Ergebnisse"
1069
 
1070
+ #: redirection-strings.php:123
1071
  msgid "Delete the logs - are you sure?"
1072
  msgstr "Logs löschen - bist du sicher?"
1073
 
1074
+ #: redirection-strings.php:124
1075
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1076
  msgstr "Einmal gelöscht, sind deine aktuellen Logs nicht mehr verfügbar. Du kannst einen Zeitplan zur Löschung in den Redirection Einstellungen setzen, wenn du dies automatisch machen möchtest."
1077
 
1078
+ #: redirection-strings.php:125
1079
  msgid "Yes! Delete the logs"
1080
  msgstr "Ja! Lösche die Logs"
1081
 
1082
+ #: redirection-strings.php:126
1083
  msgid "No! Don't delete the logs"
1084
  msgstr "Nein! Lösche die Logs nicht"
1085
 
1086
+ #: redirection-strings.php:326
1087
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1088
  msgstr ""
1089
 
1090
+ #: redirection-strings.php:325 redirection-strings.php:327
1091
  msgid "Newsletter"
1092
  msgstr "Newsletter"
1093
 
1094
+ #: redirection-strings.php:328
1095
  msgid "Want to keep up to date with changes to Redirection?"
1096
  msgstr ""
1097
 
1098
+ #: redirection-strings.php:329
1099
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1100
  msgstr "Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."
1101
 
1102
+ #: redirection-strings.php:330
1103
  msgid "Your email address:"
1104
  msgstr "Deine E-Mail Adresse:"
1105
 
1106
+ #: redirection-strings.php:165
1107
  msgid "You've supported this plugin - thank you!"
1108
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
1109
 
1110
+ #: redirection-strings.php:168
1111
  msgid "You get useful software and I get to carry on making it better."
1112
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
1113
 
1114
+ #: redirection-strings.php:176 redirection-strings.php:181
1115
  msgid "Forever"
1116
  msgstr "Dauerhaft"
1117
 
1118
+ #: redirection-strings.php:158
1119
  msgid "Delete the plugin - are you sure?"
1120
  msgstr "Plugin löschen - bist du sicher?"
1121
 
1122
+ #: redirection-strings.php:159
1123
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1124
  msgstr "Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."
1125
 
1126
+ #: redirection-strings.php:160
1127
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1128
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
1129
 
1130
+ #: redirection-strings.php:161
1131
  msgid "Yes! Delete the plugin"
1132
  msgstr "Ja! Lösche das Plugin"
1133
 
1134
+ #: redirection-strings.php:162
1135
  msgid "No! Don't delete the plugin"
1136
  msgstr "Nein! Lösche das Plugin nicht"
1137
 
1143
  msgid "Manage all your 301 redirects and monitor 404 errors"
1144
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
1145
 
1146
+ #: redirection-strings.php:167
1147
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1148
  msgstr "Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber: Sehr viel Zeit und Arbeit sind in seine Entwicklung geflossen und falls es sich als nützlich erwiesen hat, kannst du die Entwicklung {{strong}}mit einer kleinen Spende unterstützen{{/strong}}."
1149
 
1151
  msgid "Redirection Support"
1152
  msgstr "Unleitung Support"
1153
 
1154
+ #: redirection-strings.php:63 redirection-strings.php:156
1155
  msgid "Support"
1156
  msgstr "Support"
1157
 
1158
+ #: redirection-strings.php:153
1159
  msgid "404s"
1160
  msgstr "404s"
1161
 
1162
+ #: redirection-strings.php:152
1163
  msgid "Log"
1164
  msgstr "Log"
1165
 
1166
+ #: redirection-strings.php:163
1167
  msgid "Delete Redirection"
1168
  msgstr "Umleitung löschen"
1169
 
1170
+ #: redirection-strings.php:93
1171
  msgid "Upload"
1172
  msgstr "Hochladen"
1173
 
1174
+ #: redirection-strings.php:104
1175
  msgid "Import"
1176
  msgstr "Importieren"
1177
 
1178
+ #: redirection-strings.php:217
1179
  msgid "Update"
1180
  msgstr "Aktualisieren"
1181
 
1182
+ #: redirection-strings.php:206
1183
  msgid "Auto-generate URL"
1184
  msgstr "Selbsterstellte URL"
1185
 
1186
+ #: redirection-strings.php:205
1187
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1188
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1189
 
1190
+ #: redirection-strings.php:204
1191
  msgid "RSS Token"
1192
  msgstr "RSS Token"
1193
 
1194
+ #: redirection-strings.php:198
1195
  msgid "404 Logs"
1196
  msgstr "404-Logs"
1197
 
1198
+ #: redirection-strings.php:197 redirection-strings.php:199
1199
  msgid "(time to keep logs for)"
1200
  msgstr "(Dauer, für die die Logs behalten werden)"
1201
 
1202
+ #: redirection-strings.php:196
1203
  msgid "Redirect Logs"
1204
  msgstr "Umleitungs-Logs"
1205
 
1206
+ #: redirection-strings.php:195
1207
  msgid "I'm a nice person and I have helped support the author of this plugin"
1208
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1209
 
1210
+ #: redirection-strings.php:170
1211
  msgid "Plugin Support"
1212
  msgstr "Plugin Support"
1213
 
1214
+ #: redirection-strings.php:62 redirection-strings.php:155
1215
  msgid "Options"
1216
  msgstr "Optionen"
1217
 
1218
+ #: redirection-strings.php:175
1219
  msgid "Two months"
1220
  msgstr "zwei Monate"
1221
 
1222
+ #: redirection-strings.php:174
1223
  msgid "A month"
1224
  msgstr "ein Monat"
1225
 
1226
+ #: redirection-strings.php:173 redirection-strings.php:180
1227
  msgid "A week"
1228
  msgstr "eine Woche"
1229
 
1230
+ #: redirection-strings.php:172 redirection-strings.php:179
1231
  msgid "A day"
1232
  msgstr "einen Tag"
1233
 
1234
+ #: redirection-strings.php:171
1235
  msgid "No logs"
1236
  msgstr "Keine Logs"
1237
 
1238
+ #: redirection-strings.php:122
1239
  msgid "Delete All"
1240
  msgstr "Alle löschen"
1241
 
1247
  msgid "Add Group"
1248
  msgstr "Gruppe hinzufügen"
1249
 
1250
+ #: redirection-strings.php:351
1251
  msgid "Search"
1252
  msgstr "Suchen"
1253
 
1254
+ #: redirection-strings.php:58 redirection-strings.php:151
1255
  msgid "Groups"
1256
  msgstr "Gruppen"
1257
 
1258
  #: redirection-strings.php:14 redirection-strings.php:55
1259
+ #: redirection-strings.php:258
1260
  msgid "Save"
1261
  msgstr "Speichern"
1262
 
1263
+ #: redirection-strings.php:256
1264
  msgid "Group"
1265
  msgstr "Gruppe"
1266
 
1267
+ #: redirection-strings.php:253
1268
  msgid "Match"
1269
  msgstr "Passend"
1270
 
1271
+ #: redirection-strings.php:275
1272
  msgid "Add new redirection"
1273
  msgstr "Eine neue Weiterleitung hinzufügen"
1274
 
1275
+ #: redirection-strings.php:56 redirection-strings.php:94
1276
+ #: redirection-strings.php:262
1277
  msgid "Cancel"
1278
  msgstr "Abbrechen"
1279
 
1280
+ #: redirection-strings.php:118
1281
  msgid "Download"
1282
  msgstr "Download"
1283
 
1289
  msgid "Settings"
1290
  msgstr "Einstellungen"
1291
 
1292
+ #: redirection-strings.php:243
1293
  msgid "Do nothing"
1294
  msgstr "Mache nichts"
1295
 
1296
+ #: redirection-strings.php:242
1297
  msgid "Error (404)"
1298
  msgstr "Fehler (404)"
1299
 
1300
+ #: redirection-strings.php:241
1301
  msgid "Pass-through"
1302
  msgstr "Durchreichen"
1303
 
1304
+ #: redirection-strings.php:240
1305
  msgid "Redirect to random post"
1306
  msgstr "Umleitung zu zufälligen Beitrag"
1307
 
1308
+ #: redirection-strings.php:239
1309
  msgid "Redirect to URL"
1310
  msgstr "Umleitung zur URL"
1311
 
1312
+ #: models/redirect.php:516
1313
  msgid "Invalid group when creating redirect"
1314
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1315
 
1316
+ #: redirection-strings.php:131 redirection-strings.php:140
1317
  msgid "IP"
1318
  msgstr "IP"
1319
 
1320
+ #: redirection-strings.php:129 redirection-strings.php:138
1321
+ #: redirection-strings.php:259
1322
  msgid "Source URL"
1323
  msgstr "URL-Quelle"
1324
 
1325
+ #: redirection-strings.php:128 redirection-strings.php:137
1326
  msgid "Date"
1327
  msgstr "Zeitpunkt"
1328
 
1329
+ #: redirection-strings.php:142 redirection-strings.php:146
1330
+ #: redirection-strings.php:276
1331
  msgid "Add Redirect"
1332
  msgstr "Umleitung hinzufügen"
1333
 
1343
  msgid "Module"
1344
  msgstr "Module"
1345
 
1346
+ #: redirection-strings.php:39 redirection-strings.php:150
1347
  msgid "Redirects"
1348
  msgstr "Umleitungen"
1349
 
1352
  msgid "Name"
1353
  msgstr "Name"
1354
 
1355
+ #: redirection-strings.php:336
1356
  msgid "Filter"
1357
  msgstr "Filter"
1358
 
1359
+ #: redirection-strings.php:273
1360
  msgid "Reset hits"
1361
  msgstr "Treffer zurücksetzen"
1362
 
1363
  #: redirection-strings.php:42 redirection-strings.php:52
1364
+ #: redirection-strings.php:271 redirection-strings.php:308
1365
  msgid "Enable"
1366
  msgstr "Aktivieren"
1367
 
1368
  #: redirection-strings.php:43 redirection-strings.php:51
1369
+ #: redirection-strings.php:272 redirection-strings.php:306
1370
  msgid "Disable"
1371
  msgstr "Deaktivieren"
1372
 
1373
  #: redirection-strings.php:41 redirection-strings.php:49
1374
+ #: redirection-strings.php:132 redirection-strings.php:133
1375
+ #: redirection-strings.php:141 redirection-strings.php:145
1376
+ #: redirection-strings.php:164 redirection-strings.php:270
1377
+ #: redirection-strings.php:305
1378
  msgid "Delete"
1379
  msgstr "Löschen"
1380
 
1381
+ #: redirection-strings.php:48 redirection-strings.php:304
1382
  msgid "Edit"
1383
  msgstr "Bearbeiten"
1384
 
1385
+ #: redirection-strings.php:269
1386
  msgid "Last Access"
1387
  msgstr "Letzter Zugriff"
1388
 
1389
+ #: redirection-strings.php:268
1390
  msgid "Hits"
1391
  msgstr "Treffer"
1392
 
1393
+ #: redirection-strings.php:266 redirection-strings.php:321
1394
  msgid "URL"
1395
  msgstr "URL"
1396
 
1397
+ #: redirection-strings.php:265
1398
  msgid "Type"
1399
  msgstr "Typ"
1400
 
1406
  msgid "Redirections"
1407
  msgstr "Redirections"
1408
 
1409
+ #: redirection-strings.php:277
1410
  msgid "User Agent"
1411
  msgstr "User Agent"
1412
 
1413
+ #: matches/user-agent.php:10 redirection-strings.php:234
1414
  msgid "URL and user agent"
1415
  msgstr "URL und User-Agent"
1416
 
1417
+ #: redirection-strings.php:228
1418
  msgid "Target URL"
1419
  msgstr "Ziel-URL"
1420
 
1421
+ #: matches/url.php:7 redirection-strings.php:230
1422
  msgid "URL only"
1423
  msgstr "Nur URL"
1424
 
1425
+ #: redirection-strings.php:261 redirection-strings.php:283
1426
+ #: redirection-strings.php:287 redirection-strings.php:295
1427
+ #: redirection-strings.php:299
1428
  msgid "Regex"
1429
  msgstr "Regex"
1430
 
1431
+ #: redirection-strings.php:297
1432
  msgid "Referrer"
1433
  msgstr "Vermittler"
1434
 
1435
+ #: matches/referrer.php:10 redirection-strings.php:233
1436
  msgid "URL and referrer"
1437
  msgstr "URL und Vermittler"
1438
 
1439
+ #: redirection-strings.php:222
1440
  msgid "Logged Out"
1441
  msgstr "Ausgeloggt"
1442
 
1443
+ #: redirection-strings.php:220
1444
  msgid "Logged In"
1445
  msgstr "Eingeloggt"
1446
 
1447
+ #: matches/login.php:8 redirection-strings.php:231
1448
  msgid "URL and login status"
1449
  msgstr "URL- und Loginstatus"
locale/redirection-en_CA.mo CHANGED
Binary file
locale/redirection-en_CA.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-07-17 15:59:46+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
15
- msgid "Enter full URL, including http:// or https://"
16
- msgstr ""
 
 
 
 
 
 
 
 
17
 
18
  #: redirection-strings.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
- msgstr ""
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr "Redirect Tester"
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr "Target"
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr "URL is not being redirected with Redirection"
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr "URL is being redirected with Redirection"
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr "Unable to load details"
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr "Enter server URL to match against"
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "Server"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr "Enter role or capability value"
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr "Role"
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr "Match against this browser referrer text"
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr "Match against this browser user agent"
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "The relative URL you want to redirect from"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "Optional description - describe the purpose of this redirect"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr "The target URL you want to redirect to if matched"
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(beta)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "Force HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr "GDPR / Privacy information"
93
 
@@ -99,31 +147,31 @@ msgstr "Add New"
99
  msgid "Please logout and login again."
100
  msgstr "Please logout and login again."
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr "URL and role/capability"
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL and server"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "Form request"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "Relative /wp-json/"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr "Proxy over Admin AJAX"
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "Default /wp-json/"
129
 
@@ -143,51 +191,51 @@ msgstr "Site and home URL are inconsistent - please correct from your General se
143
  msgid "Site and home are consistent"
144
  msgstr "Site and home are consistent"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
- msgstr "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Accept Language"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Header value"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Header name"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "HTTP Header"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "WordPress filter name"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Filter Name"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Cookie value"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Cookie name"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "Target URL when not matched"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "Target URL when matched"
193
 
@@ -199,31 +247,31 @@ msgstr "clearing your cache."
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr "URL and HTTP header"
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr "URL and custom filter"
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL and cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr "404 deleted"
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr "Raw /index.php?rest_route=/"
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "REST API"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr "How Redirection uses the REST API - don't change unless necessary"
229
 
@@ -255,11 +303,11 @@ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so
255
  msgid "None of the suggestions helped"
256
  msgstr "None of the suggestions helped"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "Unable to load Redirection ☹️"
265
 
@@ -296,75 +344,75 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr "Useragent Error"
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Unknown Useragent"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Device"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Operating System"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Browser"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr "Engine"
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "Useragent"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr "Agent"
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "No IP logging"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Full IP logging"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Anonymize IP (mask last part)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Monitor changes to %(type)s"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "IP Logging"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(select IP logging level)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr "Geo Info"
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr "Agent Info"
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "Filter by IP"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "Referrer / User Agent"
370
 
@@ -372,7 +420,8 @@ msgstr "Referrer / User Agent"
372
  msgid "Geo IP Error"
373
  msgstr "Geo IP Error"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr "Something went wrong obtaining this information"
378
 
@@ -405,7 +454,8 @@ msgstr "Timezone"
405
  msgid "Geo Location"
406
  msgstr "Geo Location"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Powered by {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr "Trash"
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
419
 
@@ -425,63 +475,63 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr "Never cache"
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "An hour"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr "Redirect Cache"
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "Are you sure you want to import from %s?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Plugin Importers"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "The following redirect plugins were detected on your site and can be imported from."
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "total = "
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "Import from %s"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Redirection not installed properly"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
487
 
@@ -489,71 +539,71 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr "Default WordPress \"old slugs\""
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr "Create associated redirect (added to end of URL)"
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr "⚡️ Magic fix ⚡️"
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "Plugin Status"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr "Custom"
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr "Mobile"
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "Feed Readers"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr "Libraries"
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr "URL Monitor Changes"
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr "Save changes to this group"
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr "For example \"/amp\""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "URL Monitor"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "Delete 404s"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "Delete all logs for this 404"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "Delete all from IP %s"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr "Delete all matching \"%s\""
559
 
@@ -561,23 +611,23 @@ msgstr "Delete all matching \"%s\""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "Unable to load Redirection"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "Unable to create group"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "Failed to fix database tables"
583
 
@@ -653,19 +703,19 @@ msgstr "Your server returned a 403 Forbidden error which may indicate the reques
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr "If you think Redirection is at fault then create an issue."
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "Loading, please wait..."
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
671
 
@@ -681,7 +731,7 @@ msgstr "If that doesn't help, open your browser's error console and create a {{l
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr "Create Issue"
687
 
@@ -693,135 +743,135 @@ msgstr "Email"
693
  msgid "Important details"
694
  msgstr "Important details"
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Need help?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr "Pos"
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 - Gone"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Position"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Apache Module"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Import to group"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Import a CSV, .htaccess, or JSON file."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Click 'Add File' or drag and drop here."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Add File"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "File selected"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Importing"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Finished importing"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Total redirects imported:"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "Double-check the file is the correct format!"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "OK"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Close"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "All imports will be appended to the current database."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Export"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Everything"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "WordPress redirects"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Apache redirects"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Nginx redirects"
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr "Apache .htaccess"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr "Nginx rewrite rules"
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr "Redirection JSON"
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr "View"
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr "Log files can be exported from the log pages."
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Import/Export"
827
 
@@ -837,113 +887,113 @@ msgstr "404 errors"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr "I'd like to support some more."
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Support 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr "Redirection saved"
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr "Log deleted"
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Settings saved"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Group saved"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
  msgstr[0] "Are you sure you want to delete this item?"
868
  msgstr[1] "Are you sure you want to delete these items?"
869
 
870
- #: redirection-strings.php:296
871
  msgid "pass"
872
  msgstr "pass"
873
 
874
- #: redirection-strings.php:262
875
  msgid "All groups"
876
  msgstr "All groups"
877
 
878
- #: redirection-strings.php:232
879
  msgid "301 - Moved Permanently"
880
  msgstr "301 - Moved Permanently"
881
 
882
- #: redirection-strings.php:233
883
  msgid "302 - Found"
884
  msgstr "302 - Found"
885
 
886
- #: redirection-strings.php:234
887
  msgid "307 - Temporary Redirect"
888
  msgstr "307 - Temporary Redirect"
889
 
890
- #: redirection-strings.php:235
891
  msgid "308 - Permanent Redirect"
892
  msgstr "308 - Permanent Redirect"
893
 
894
- #: redirection-strings.php:236
895
  msgid "401 - Unauthorized"
896
  msgstr "401 - Unauthorized"
897
 
898
- #: redirection-strings.php:237
899
  msgid "404 - Not Found"
900
  msgstr "404 - Not Found"
901
 
902
- #: redirection-strings.php:239
903
  msgid "Title"
904
  msgstr "Title"
905
 
906
- #: redirection-strings.php:242
907
  msgid "When matched"
908
  msgstr "When matched"
909
 
910
- #: redirection-strings.php:243
911
  msgid "with HTTP code"
912
  msgstr "with HTTP code"
913
 
914
- #: redirection-strings.php:252
915
  msgid "Show advanced options"
916
  msgstr "Show advanced options"
917
 
918
- #: redirection-strings.php:212
919
  msgid "Matched Target"
920
  msgstr "Matched Target"
921
 
922
- #: redirection-strings.php:214
923
  msgid "Unmatched Target"
924
  msgstr "Unmatched Target"
925
 
926
- #: redirection-strings.php:206 redirection-strings.php:207
927
  msgid "Saving..."
928
  msgstr "Saving..."
929
 
930
- #: redirection-strings.php:145
931
  msgid "View notice"
932
  msgstr "View notice"
933
 
934
- #: models/redirect.php:524
935
  msgid "Invalid source URL"
936
  msgstr "Invalid source URL"
937
 
938
- #: models/redirect.php:456
939
  msgid "Invalid redirect action"
940
  msgstr "Invalid redirect action"
941
 
942
- #: models/redirect.php:450
943
  msgid "Invalid redirect matcher"
944
  msgstr "Invalid redirect matcher"
945
 
946
- #: models/redirect.php:185
947
  msgid "Unable to add new redirect"
948
  msgstr "Unable to add new redirect"
949
 
@@ -959,129 +1009,129 @@ msgstr "I was trying to do a thing and it went wrong. It may be a temporary issu
959
  msgid "Log entries (%d max)"
960
  msgstr "Log entries (%d max)"
961
 
962
- #: redirection-strings.php:334
963
  msgid "Search by IP"
964
  msgstr "Search by IP"
965
 
966
- #: redirection-strings.php:329
967
  msgid "Select bulk action"
968
  msgstr "Select bulk action"
969
 
970
- #: redirection-strings.php:330
971
  msgid "Bulk Actions"
972
  msgstr "Bulk Actions"
973
 
974
- #: redirection-strings.php:331
975
  msgid "Apply"
976
  msgstr "Apply"
977
 
978
- #: redirection-strings.php:322
979
  msgid "First page"
980
  msgstr "First page"
981
 
982
- #: redirection-strings.php:323
983
  msgid "Prev page"
984
  msgstr "Prev page"
985
 
986
- #: redirection-strings.php:324
987
  msgid "Current Page"
988
  msgstr "Current Page"
989
 
990
- #: redirection-strings.php:325
991
  msgid "of %(page)s"
992
  msgstr "of %(page)s"
993
 
994
- #: redirection-strings.php:326
995
  msgid "Next page"
996
  msgstr "Next page"
997
 
998
- #: redirection-strings.php:327
999
  msgid "Last page"
1000
  msgstr "Last page"
1001
 
1002
- #: redirection-strings.php:328
1003
  msgid "%s item"
1004
  msgid_plural "%s items"
1005
  msgstr[0] "%s item"
1006
  msgstr[1] "%s items"
1007
 
1008
- #: redirection-strings.php:321
1009
  msgid "Select All"
1010
  msgstr "Select All"
1011
 
1012
- #: redirection-strings.php:333
1013
  msgid "Sorry, something went wrong loading the data - please try again"
1014
  msgstr "Sorry, something went wrong loading the data - please try again"
1015
 
1016
- #: redirection-strings.php:332
1017
  msgid "No results"
1018
  msgstr "No results"
1019
 
1020
- #: redirection-strings.php:111
1021
  msgid "Delete the logs - are you sure?"
1022
  msgstr "Delete the logs - are you sure?"
1023
 
1024
- #: redirection-strings.php:112
1025
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1026
  msgstr "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1027
 
1028
- #: redirection-strings.php:113
1029
  msgid "Yes! Delete the logs"
1030
  msgstr "Yes! Delete the logs"
1031
 
1032
- #: redirection-strings.php:114
1033
  msgid "No! Don't delete the logs"
1034
  msgstr "No! Don't delete the logs"
1035
 
1036
- #: redirection-strings.php:312
1037
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1038
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1039
 
1040
- #: redirection-strings.php:311 redirection-strings.php:313
1041
  msgid "Newsletter"
1042
  msgstr "Newsletter"
1043
 
1044
- #: redirection-strings.php:314
1045
  msgid "Want to keep up to date with changes to Redirection?"
1046
  msgstr "Want to keep up to date with changes to Redirection?"
1047
 
1048
- #: redirection-strings.php:315
1049
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1050
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1051
 
1052
- #: redirection-strings.php:316
1053
  msgid "Your email address:"
1054
  msgstr "Your email address:"
1055
 
1056
- #: redirection-strings.php:153
1057
  msgid "You've supported this plugin - thank you!"
1058
  msgstr "You've supported this plugin - thank you!"
1059
 
1060
- #: redirection-strings.php:156
1061
  msgid "You get useful software and I get to carry on making it better."
1062
  msgstr "You get useful software and I get to carry on making it better."
1063
 
1064
- #: redirection-strings.php:164 redirection-strings.php:169
1065
  msgid "Forever"
1066
  msgstr "Forever"
1067
 
1068
- #: redirection-strings.php:146
1069
  msgid "Delete the plugin - are you sure?"
1070
  msgstr "Delete the plugin - are you sure?"
1071
 
1072
- #: redirection-strings.php:147
1073
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1074
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1075
 
1076
- #: redirection-strings.php:148
1077
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1078
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1079
 
1080
- #: redirection-strings.php:149
1081
  msgid "Yes! Delete the plugin"
1082
  msgstr "Yes! Delete the plugin"
1083
 
1084
- #: redirection-strings.php:150
1085
  msgid "No! Don't delete the plugin"
1086
  msgstr "No! Don't delete the plugin"
1087
 
@@ -1093,7 +1143,7 @@ msgstr "John Godley"
1093
  msgid "Manage all your 301 redirects and monitor 404 errors"
1094
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1095
 
1096
- #: redirection-strings.php:155
1097
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1098
  msgstr "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1099
 
@@ -1101,91 +1151,91 @@ msgstr "Redirection is free to use - life is wonderful and lovely! It has requir
1101
  msgid "Redirection Support"
1102
  msgstr "Redirection Support"
1103
 
1104
- #: redirection-strings.php:63 redirection-strings.php:144
1105
  msgid "Support"
1106
  msgstr "Support"
1107
 
1108
- #: redirection-strings.php:141
1109
  msgid "404s"
1110
  msgstr "404s"
1111
 
1112
- #: redirection-strings.php:140
1113
  msgid "Log"
1114
  msgstr "Log"
1115
 
1116
- #: redirection-strings.php:151
1117
  msgid "Delete Redirection"
1118
  msgstr "Delete Redirection"
1119
 
1120
- #: redirection-strings.php:81
1121
  msgid "Upload"
1122
  msgstr "Upload"
1123
 
1124
- #: redirection-strings.php:92
1125
  msgid "Import"
1126
  msgstr "Import"
1127
 
1128
- #: redirection-strings.php:205
1129
  msgid "Update"
1130
  msgstr "Update"
1131
 
1132
- #: redirection-strings.php:194
1133
  msgid "Auto-generate URL"
1134
  msgstr "Auto-generate URL"
1135
 
1136
- #: redirection-strings.php:193
1137
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1138
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1139
 
1140
- #: redirection-strings.php:192
1141
  msgid "RSS Token"
1142
  msgstr "RSS Token"
1143
 
1144
- #: redirection-strings.php:186
1145
  msgid "404 Logs"
1146
  msgstr "404 Logs"
1147
 
1148
- #: redirection-strings.php:185 redirection-strings.php:187
1149
  msgid "(time to keep logs for)"
1150
  msgstr "(time to keep logs for)"
1151
 
1152
- #: redirection-strings.php:184
1153
  msgid "Redirect Logs"
1154
  msgstr "Redirect Logs"
1155
 
1156
- #: redirection-strings.php:183
1157
  msgid "I'm a nice person and I have helped support the author of this plugin"
1158
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1159
 
1160
- #: redirection-strings.php:158
1161
  msgid "Plugin Support"
1162
  msgstr "Plugin Support"
1163
 
1164
- #: redirection-strings.php:62 redirection-strings.php:143
1165
  msgid "Options"
1166
  msgstr "Options"
1167
 
1168
- #: redirection-strings.php:163
1169
  msgid "Two months"
1170
  msgstr "Two months"
1171
 
1172
- #: redirection-strings.php:162
1173
  msgid "A month"
1174
  msgstr "A month"
1175
 
1176
- #: redirection-strings.php:161 redirection-strings.php:168
1177
  msgid "A week"
1178
  msgstr "A week"
1179
 
1180
- #: redirection-strings.php:160 redirection-strings.php:167
1181
  msgid "A day"
1182
  msgstr "A day"
1183
 
1184
- #: redirection-strings.php:159
1185
  msgid "No logs"
1186
  msgstr "No logs"
1187
 
1188
- #: redirection-strings.php:110
1189
  msgid "Delete All"
1190
  msgstr "Delete All"
1191
 
@@ -1197,37 +1247,37 @@ msgstr "Use groups to organise your redirects. Groups are assigned to a module,
1197
  msgid "Add Group"
1198
  msgstr "Add Group"
1199
 
1200
- #: redirection-strings.php:335
1201
  msgid "Search"
1202
  msgstr "Search"
1203
 
1204
- #: redirection-strings.php:58 redirection-strings.php:139
1205
  msgid "Groups"
1206
  msgstr "Groups"
1207
 
1208
  #: redirection-strings.php:14 redirection-strings.php:55
1209
- #: redirection-strings.php:246
1210
  msgid "Save"
1211
  msgstr "Save"
1212
 
1213
- #: redirection-strings.php:244
1214
  msgid "Group"
1215
  msgstr "Group"
1216
 
1217
- #: redirection-strings.php:241
1218
  msgid "Match"
1219
  msgstr "Match"
1220
 
1221
- #: redirection-strings.php:263
1222
  msgid "Add new redirection"
1223
  msgstr "Add new redirection"
1224
 
1225
- #: redirection-strings.php:56 redirection-strings.php:82
1226
- #: redirection-strings.php:250
1227
  msgid "Cancel"
1228
  msgstr "Cancel"
1229
 
1230
- #: redirection-strings.php:106
1231
  msgid "Download"
1232
  msgstr "Download"
1233
 
@@ -1239,45 +1289,45 @@ msgstr "Redirection"
1239
  msgid "Settings"
1240
  msgstr "Settings"
1241
 
1242
- #: redirection-strings.php:231
1243
  msgid "Do nothing"
1244
  msgstr "Do nothing"
1245
 
1246
- #: redirection-strings.php:230
1247
  msgid "Error (404)"
1248
  msgstr "Error (404)"
1249
 
1250
- #: redirection-strings.php:229
1251
  msgid "Pass-through"
1252
  msgstr "Pass-through"
1253
 
1254
- #: redirection-strings.php:228
1255
  msgid "Redirect to random post"
1256
  msgstr "Redirect to random post"
1257
 
1258
- #: redirection-strings.php:227
1259
  msgid "Redirect to URL"
1260
  msgstr "Redirect to URL"
1261
 
1262
- #: models/redirect.php:514
1263
  msgid "Invalid group when creating redirect"
1264
  msgstr "Invalid group when creating redirect"
1265
 
1266
- #: redirection-strings.php:119 redirection-strings.php:128
1267
  msgid "IP"
1268
  msgstr "IP"
1269
 
1270
- #: redirection-strings.php:117 redirection-strings.php:126
1271
- #: redirection-strings.php:247
1272
  msgid "Source URL"
1273
  msgstr "Source URL"
1274
 
1275
- #: redirection-strings.php:116 redirection-strings.php:125
1276
  msgid "Date"
1277
  msgstr "Date"
1278
 
1279
- #: redirection-strings.php:130 redirection-strings.php:134
1280
- #: redirection-strings.php:264
1281
  msgid "Add Redirect"
1282
  msgstr "Add Redirect"
1283
 
@@ -1293,7 +1343,7 @@ msgstr "View Redirects"
1293
  msgid "Module"
1294
  msgstr "Module"
1295
 
1296
- #: redirection-strings.php:39 redirection-strings.php:138
1297
  msgid "Redirects"
1298
  msgstr "Redirects"
1299
 
@@ -1302,49 +1352,49 @@ msgstr "Redirects"
1302
  msgid "Name"
1303
  msgstr "Name"
1304
 
1305
- #: redirection-strings.php:320
1306
  msgid "Filter"
1307
  msgstr "Filter"
1308
 
1309
- #: redirection-strings.php:261
1310
  msgid "Reset hits"
1311
  msgstr "Reset hits"
1312
 
1313
  #: redirection-strings.php:42 redirection-strings.php:52
1314
- #: redirection-strings.php:259 redirection-strings.php:295
1315
  msgid "Enable"
1316
  msgstr "Enable"
1317
 
1318
  #: redirection-strings.php:43 redirection-strings.php:51
1319
- #: redirection-strings.php:260 redirection-strings.php:294
1320
  msgid "Disable"
1321
  msgstr "Disable"
1322
 
1323
  #: redirection-strings.php:41 redirection-strings.php:49
1324
- #: redirection-strings.php:120 redirection-strings.php:121
1325
- #: redirection-strings.php:129 redirection-strings.php:133
1326
- #: redirection-strings.php:152 redirection-strings.php:258
1327
- #: redirection-strings.php:293
1328
  msgid "Delete"
1329
  msgstr "Delete"
1330
 
1331
- #: redirection-strings.php:48 redirection-strings.php:292
1332
  msgid "Edit"
1333
  msgstr "Edit"
1334
 
1335
- #: redirection-strings.php:257
1336
  msgid "Last Access"
1337
  msgstr "Last Access"
1338
 
1339
- #: redirection-strings.php:256
1340
  msgid "Hits"
1341
  msgstr "Hits"
1342
 
1343
- #: redirection-strings.php:254 redirection-strings.php:308
1344
  msgid "URL"
1345
  msgstr "URL"
1346
 
1347
- #: redirection-strings.php:253
1348
  msgid "Type"
1349
  msgstr "Type"
1350
 
@@ -1356,44 +1406,44 @@ msgstr "Modified Posts"
1356
  msgid "Redirections"
1357
  msgstr "Redirections"
1358
 
1359
- #: redirection-strings.php:265
1360
  msgid "User Agent"
1361
  msgstr "User Agent"
1362
 
1363
- #: matches/user-agent.php:10 redirection-strings.php:222
1364
  msgid "URL and user agent"
1365
  msgstr "URL and user agent"
1366
 
1367
- #: redirection-strings.php:216
1368
  msgid "Target URL"
1369
  msgstr "Target URL"
1370
 
1371
- #: matches/url.php:7 redirection-strings.php:218
1372
  msgid "URL only"
1373
  msgstr "URL only"
1374
 
1375
- #: redirection-strings.php:249 redirection-strings.php:271
1376
- #: redirection-strings.php:275 redirection-strings.php:283
1377
- #: redirection-strings.php:287
1378
  msgid "Regex"
1379
  msgstr "Regex"
1380
 
1381
- #: redirection-strings.php:285
1382
  msgid "Referrer"
1383
  msgstr "Referrer"
1384
 
1385
- #: matches/referrer.php:10 redirection-strings.php:221
1386
  msgid "URL and referrer"
1387
  msgstr "URL and referrer"
1388
 
1389
- #: redirection-strings.php:210
1390
  msgid "Logged Out"
1391
  msgstr "Logged Out"
1392
 
1393
- #: redirection-strings.php:208
1394
  msgid "Logged In"
1395
  msgstr "Logged In"
1396
 
1397
- #: matches/login.php:8 redirection-strings.php:219
1398
  msgid "URL and login status"
1399
  msgstr "URL and login status"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-25 17:06:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr "Problem"
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr "Good"
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
+ msgstr "Check"
25
 
26
  #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr "Check Redirect"
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr "Check redirect for: {{code}}%s{{/code}}"
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr "What does this mean?"
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr "Not using Redirection"
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr "Using Redirection"
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr "Found"
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr "Expected"
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr "Error"
61
+
62
+ #: redirection-strings.php:322
63
+ msgid "Enter full URL, including http:// or https://"
64
+ msgstr "Enter full URL, including http:// or https://"
65
+
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
+ msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr "Redirect Tester"
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr "Target"
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr "URL is not being redirected with Redirection"
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr "URL is being redirected with Redirection"
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr "Unable to load details"
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr "Enter server URL to match against"
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "Server"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr "Enter role or capability value"
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr "Role"
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr "Match against this browser referrer text"
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr "Match against this browser user agent"
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "The relative URL you want to redirect from"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "Optional description - describe the purpose of this redirect"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr "The target URL you want to redirect to if matched"
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(beta)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "Force HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr "GDPR / Privacy information"
141
 
147
  msgid "Please logout and login again."
148
  msgstr "Please logout and login again."
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr "URL and role/capability"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL and server"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "Form request"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "Relative /wp-json/"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr "Proxy over Admin AJAX"
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "Default /wp-json/"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "Site and home are consistent"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
+ msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Accept Language"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Header value"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Header name"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "HTTP Header"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "WordPress filter name"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Filter Name"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Cookie value"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Cookie name"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "Target URL when not matched"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "Target URL when matched"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr "URL and HTTP header"
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr "URL and custom filter"
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL and cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr "404 deleted"
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr "Raw /index.php?rest_route=/"
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "REST API"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr "How Redirection uses the REST API - don't change unless necessary"
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr "None of the suggestions helped"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "Unable to load Redirection ☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr "Useragent Error"
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Unknown Useragent"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Device"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Operating System"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Browser"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr "Engine"
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "Useragent"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr "Agent"
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "No IP logging"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Full IP logging"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Anonymize IP (mask last part)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Monitor changes to %(type)s"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "IP Logging"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(select IP logging level)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr "Geo Info"
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr "Agent Info"
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "Filter by IP"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "Referrer / User Agent"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "Geo IP Error"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr "Something went wrong obtaining this information"
427
 
454
  msgid "Geo Location"
455
  msgstr "Geo Location"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Powered by {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr "Trash"
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr "Never cache"
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "An hour"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr "Redirect Cache"
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "Are you sure you want to import from %s?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Plugin Importers"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "The following redirect plugins were detected on your site and can be imported from."
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "total = "
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "Import from %s"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Redirection not installed properly"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr "Default WordPress \"old slugs\""
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr "Create associated redirect (added to end of URL)"
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr "⚡️ Magic fix ⚡️"
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "Plugin Status"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr "Custom"
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr "Mobile"
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "Feed Readers"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr "Libraries"
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr "URL Monitor Changes"
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr "Save changes to this group"
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr "For example \"/amp\""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "URL Monitor"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "Delete 404s"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "Delete all logs for this 404"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "Delete all from IP %s"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr "Delete all matching \"%s\""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "Unable to load Redirection"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "Unable to create group"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "Failed to fix database tables"
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr "If you think Redirection is at fault then create an issue."
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "Loading, please wait..."
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr "Create Issue"
737
 
743
  msgid "Important details"
744
  msgstr "Important details"
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Need help?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr "Pos"
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 - Gone"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Position"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Apache Module"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Import to group"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Import a CSV, .htaccess, or JSON file."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Click 'Add File' or drag and drop here."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Add File"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "File selected"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Importing"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Finished importing"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Total redirects imported:"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "Double-check the file is the correct format!"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "OK"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Close"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "All imports will be appended to the current database."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Export"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Everything"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "WordPress redirects"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Apache redirects"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Nginx redirects"
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr "Apache .htaccess"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr "Nginx rewrite rules"
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr "Redirection JSON"
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr "View"
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr "Log files can be exported from the log pages."
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Import/Export"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr "I'd like to support some more."
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Support 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr "Redirection saved"
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr "Log deleted"
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Settings saved"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Group saved"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
  msgstr[0] "Are you sure you want to delete this item?"
918
  msgstr[1] "Are you sure you want to delete these items?"
919
 
920
+ #: redirection-strings.php:309
921
  msgid "pass"
922
  msgstr "pass"
923
 
924
+ #: redirection-strings.php:274
925
  msgid "All groups"
926
  msgstr "All groups"
927
 
928
+ #: redirection-strings.php:244
929
  msgid "301 - Moved Permanently"
930
  msgstr "301 - Moved Permanently"
931
 
932
+ #: redirection-strings.php:245
933
  msgid "302 - Found"
934
  msgstr "302 - Found"
935
 
936
+ #: redirection-strings.php:246
937
  msgid "307 - Temporary Redirect"
938
  msgstr "307 - Temporary Redirect"
939
 
940
+ #: redirection-strings.php:247
941
  msgid "308 - Permanent Redirect"
942
  msgstr "308 - Permanent Redirect"
943
 
944
+ #: redirection-strings.php:248
945
  msgid "401 - Unauthorized"
946
  msgstr "401 - Unauthorized"
947
 
948
+ #: redirection-strings.php:249
949
  msgid "404 - Not Found"
950
  msgstr "404 - Not Found"
951
 
952
+ #: redirection-strings.php:251
953
  msgid "Title"
954
  msgstr "Title"
955
 
956
+ #: redirection-strings.php:254
957
  msgid "When matched"
958
  msgstr "When matched"
959
 
960
+ #: redirection-strings.php:255
961
  msgid "with HTTP code"
962
  msgstr "with HTTP code"
963
 
964
+ #: redirection-strings.php:264
965
  msgid "Show advanced options"
966
  msgstr "Show advanced options"
967
 
968
+ #: redirection-strings.php:224
969
  msgid "Matched Target"
970
  msgstr "Matched Target"
971
 
972
+ #: redirection-strings.php:226
973
  msgid "Unmatched Target"
974
  msgstr "Unmatched Target"
975
 
976
+ #: redirection-strings.php:218 redirection-strings.php:219
977
  msgid "Saving..."
978
  msgstr "Saving..."
979
 
980
+ #: redirection-strings.php:157
981
  msgid "View notice"
982
  msgstr "View notice"
983
 
984
+ #: models/redirect.php:526
985
  msgid "Invalid source URL"
986
  msgstr "Invalid source URL"
987
 
988
+ #: models/redirect.php:458
989
  msgid "Invalid redirect action"
990
  msgstr "Invalid redirect action"
991
 
992
+ #: models/redirect.php:452
993
  msgid "Invalid redirect matcher"
994
  msgstr "Invalid redirect matcher"
995
 
996
+ #: models/redirect.php:187
997
  msgid "Unable to add new redirect"
998
  msgstr "Unable to add new redirect"
999
 
1009
  msgid "Log entries (%d max)"
1010
  msgstr "Log entries (%d max)"
1011
 
1012
+ #: redirection-strings.php:350
1013
  msgid "Search by IP"
1014
  msgstr "Search by IP"
1015
 
1016
+ #: redirection-strings.php:345
1017
  msgid "Select bulk action"
1018
  msgstr "Select bulk action"
1019
 
1020
+ #: redirection-strings.php:346
1021
  msgid "Bulk Actions"
1022
  msgstr "Bulk Actions"
1023
 
1024
+ #: redirection-strings.php:347
1025
  msgid "Apply"
1026
  msgstr "Apply"
1027
 
1028
+ #: redirection-strings.php:338
1029
  msgid "First page"
1030
  msgstr "First page"
1031
 
1032
+ #: redirection-strings.php:339
1033
  msgid "Prev page"
1034
  msgstr "Prev page"
1035
 
1036
+ #: redirection-strings.php:340
1037
  msgid "Current Page"
1038
  msgstr "Current Page"
1039
 
1040
+ #: redirection-strings.php:341
1041
  msgid "of %(page)s"
1042
  msgstr "of %(page)s"
1043
 
1044
+ #: redirection-strings.php:342
1045
  msgid "Next page"
1046
  msgstr "Next page"
1047
 
1048
+ #: redirection-strings.php:343
1049
  msgid "Last page"
1050
  msgstr "Last page"
1051
 
1052
+ #: redirection-strings.php:344
1053
  msgid "%s item"
1054
  msgid_plural "%s items"
1055
  msgstr[0] "%s item"
1056
  msgstr[1] "%s items"
1057
 
1058
+ #: redirection-strings.php:337
1059
  msgid "Select All"
1060
  msgstr "Select All"
1061
 
1062
+ #: redirection-strings.php:349
1063
  msgid "Sorry, something went wrong loading the data - please try again"
1064
  msgstr "Sorry, something went wrong loading the data - please try again"
1065
 
1066
+ #: redirection-strings.php:348
1067
  msgid "No results"
1068
  msgstr "No results"
1069
 
1070
+ #: redirection-strings.php:123
1071
  msgid "Delete the logs - are you sure?"
1072
  msgstr "Delete the logs - are you sure?"
1073
 
1074
+ #: redirection-strings.php:124
1075
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1076
  msgstr "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1077
 
1078
+ #: redirection-strings.php:125
1079
  msgid "Yes! Delete the logs"
1080
  msgstr "Yes! Delete the logs"
1081
 
1082
+ #: redirection-strings.php:126
1083
  msgid "No! Don't delete the logs"
1084
  msgstr "No! Don't delete the logs"
1085
 
1086
+ #: redirection-strings.php:326
1087
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1088
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1089
 
1090
+ #: redirection-strings.php:325 redirection-strings.php:327
1091
  msgid "Newsletter"
1092
  msgstr "Newsletter"
1093
 
1094
+ #: redirection-strings.php:328
1095
  msgid "Want to keep up to date with changes to Redirection?"
1096
  msgstr "Want to keep up to date with changes to Redirection?"
1097
 
1098
+ #: redirection-strings.php:329
1099
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1100
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1101
 
1102
+ #: redirection-strings.php:330
1103
  msgid "Your email address:"
1104
  msgstr "Your email address:"
1105
 
1106
+ #: redirection-strings.php:165
1107
  msgid "You've supported this plugin - thank you!"
1108
  msgstr "You've supported this plugin - thank you!"
1109
 
1110
+ #: redirection-strings.php:168
1111
  msgid "You get useful software and I get to carry on making it better."
1112
  msgstr "You get useful software and I get to carry on making it better."
1113
 
1114
+ #: redirection-strings.php:176 redirection-strings.php:181
1115
  msgid "Forever"
1116
  msgstr "Forever"
1117
 
1118
+ #: redirection-strings.php:158
1119
  msgid "Delete the plugin - are you sure?"
1120
  msgstr "Delete the plugin - are you sure?"
1121
 
1122
+ #: redirection-strings.php:159
1123
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1124
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1125
 
1126
+ #: redirection-strings.php:160
1127
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1128
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1129
 
1130
+ #: redirection-strings.php:161
1131
  msgid "Yes! Delete the plugin"
1132
  msgstr "Yes! Delete the plugin"
1133
 
1134
+ #: redirection-strings.php:162
1135
  msgid "No! Don't delete the plugin"
1136
  msgstr "No! Don't delete the plugin"
1137
 
1143
  msgid "Manage all your 301 redirects and monitor 404 errors"
1144
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1145
 
1146
+ #: redirection-strings.php:167
1147
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1148
  msgstr "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1149
 
1151
  msgid "Redirection Support"
1152
  msgstr "Redirection Support"
1153
 
1154
+ #: redirection-strings.php:63 redirection-strings.php:156
1155
  msgid "Support"
1156
  msgstr "Support"
1157
 
1158
+ #: redirection-strings.php:153
1159
  msgid "404s"
1160
  msgstr "404s"
1161
 
1162
+ #: redirection-strings.php:152
1163
  msgid "Log"
1164
  msgstr "Log"
1165
 
1166
+ #: redirection-strings.php:163
1167
  msgid "Delete Redirection"
1168
  msgstr "Delete Redirection"
1169
 
1170
+ #: redirection-strings.php:93
1171
  msgid "Upload"
1172
  msgstr "Upload"
1173
 
1174
+ #: redirection-strings.php:104
1175
  msgid "Import"
1176
  msgstr "Import"
1177
 
1178
+ #: redirection-strings.php:217
1179
  msgid "Update"
1180
  msgstr "Update"
1181
 
1182
+ #: redirection-strings.php:206
1183
  msgid "Auto-generate URL"
1184
  msgstr "Auto-generate URL"
1185
 
1186
+ #: redirection-strings.php:205
1187
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1188
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1189
 
1190
+ #: redirection-strings.php:204
1191
  msgid "RSS Token"
1192
  msgstr "RSS Token"
1193
 
1194
+ #: redirection-strings.php:198
1195
  msgid "404 Logs"
1196
  msgstr "404 Logs"
1197
 
1198
+ #: redirection-strings.php:197 redirection-strings.php:199
1199
  msgid "(time to keep logs for)"
1200
  msgstr "(time to keep logs for)"
1201
 
1202
+ #: redirection-strings.php:196
1203
  msgid "Redirect Logs"
1204
  msgstr "Redirect Logs"
1205
 
1206
+ #: redirection-strings.php:195
1207
  msgid "I'm a nice person and I have helped support the author of this plugin"
1208
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1209
 
1210
+ #: redirection-strings.php:170
1211
  msgid "Plugin Support"
1212
  msgstr "Plugin Support"
1213
 
1214
+ #: redirection-strings.php:62 redirection-strings.php:155
1215
  msgid "Options"
1216
  msgstr "Options"
1217
 
1218
+ #: redirection-strings.php:175
1219
  msgid "Two months"
1220
  msgstr "Two months"
1221
 
1222
+ #: redirection-strings.php:174
1223
  msgid "A month"
1224
  msgstr "A month"
1225
 
1226
+ #: redirection-strings.php:173 redirection-strings.php:180
1227
  msgid "A week"
1228
  msgstr "A week"
1229
 
1230
+ #: redirection-strings.php:172 redirection-strings.php:179
1231
  msgid "A day"
1232
  msgstr "A day"
1233
 
1234
+ #: redirection-strings.php:171
1235
  msgid "No logs"
1236
  msgstr "No logs"
1237
 
1238
+ #: redirection-strings.php:122
1239
  msgid "Delete All"
1240
  msgstr "Delete All"
1241
 
1247
  msgid "Add Group"
1248
  msgstr "Add Group"
1249
 
1250
+ #: redirection-strings.php:351
1251
  msgid "Search"
1252
  msgstr "Search"
1253
 
1254
+ #: redirection-strings.php:58 redirection-strings.php:151
1255
  msgid "Groups"
1256
  msgstr "Groups"
1257
 
1258
  #: redirection-strings.php:14 redirection-strings.php:55
1259
+ #: redirection-strings.php:258
1260
  msgid "Save"
1261
  msgstr "Save"
1262
 
1263
+ #: redirection-strings.php:256
1264
  msgid "Group"
1265
  msgstr "Group"
1266
 
1267
+ #: redirection-strings.php:253
1268
  msgid "Match"
1269
  msgstr "Match"
1270
 
1271
+ #: redirection-strings.php:275
1272
  msgid "Add new redirection"
1273
  msgstr "Add new redirection"
1274
 
1275
+ #: redirection-strings.php:56 redirection-strings.php:94
1276
+ #: redirection-strings.php:262
1277
  msgid "Cancel"
1278
  msgstr "Cancel"
1279
 
1280
+ #: redirection-strings.php:118
1281
  msgid "Download"
1282
  msgstr "Download"
1283
 
1289
  msgid "Settings"
1290
  msgstr "Settings"
1291
 
1292
+ #: redirection-strings.php:243
1293
  msgid "Do nothing"
1294
  msgstr "Do nothing"
1295
 
1296
+ #: redirection-strings.php:242
1297
  msgid "Error (404)"
1298
  msgstr "Error (404)"
1299
 
1300
+ #: redirection-strings.php:241
1301
  msgid "Pass-through"
1302
  msgstr "Pass-through"
1303
 
1304
+ #: redirection-strings.php:240
1305
  msgid "Redirect to random post"
1306
  msgstr "Redirect to random post"
1307
 
1308
+ #: redirection-strings.php:239
1309
  msgid "Redirect to URL"
1310
  msgstr "Redirect to URL"
1311
 
1312
+ #: models/redirect.php:516
1313
  msgid "Invalid group when creating redirect"
1314
  msgstr "Invalid group when creating redirect"
1315
 
1316
+ #: redirection-strings.php:131 redirection-strings.php:140
1317
  msgid "IP"
1318
  msgstr "IP"
1319
 
1320
+ #: redirection-strings.php:129 redirection-strings.php:138
1321
+ #: redirection-strings.php:259
1322
  msgid "Source URL"
1323
  msgstr "Source URL"
1324
 
1325
+ #: redirection-strings.php:128 redirection-strings.php:137
1326
  msgid "Date"
1327
  msgstr "Date"
1328
 
1329
+ #: redirection-strings.php:142 redirection-strings.php:146
1330
+ #: redirection-strings.php:276
1331
  msgid "Add Redirect"
1332
  msgstr "Add Redirect"
1333
 
1343
  msgid "Module"
1344
  msgstr "Module"
1345
 
1346
+ #: redirection-strings.php:39 redirection-strings.php:150
1347
  msgid "Redirects"
1348
  msgstr "Redirects"
1349
 
1352
  msgid "Name"
1353
  msgstr "Name"
1354
 
1355
+ #: redirection-strings.php:336
1356
  msgid "Filter"
1357
  msgstr "Filter"
1358
 
1359
+ #: redirection-strings.php:273
1360
  msgid "Reset hits"
1361
  msgstr "Reset hits"
1362
 
1363
  #: redirection-strings.php:42 redirection-strings.php:52
1364
+ #: redirection-strings.php:271 redirection-strings.php:308
1365
  msgid "Enable"
1366
  msgstr "Enable"
1367
 
1368
  #: redirection-strings.php:43 redirection-strings.php:51
1369
+ #: redirection-strings.php:272 redirection-strings.php:306
1370
  msgid "Disable"
1371
  msgstr "Disable"
1372
 
1373
  #: redirection-strings.php:41 redirection-strings.php:49
1374
+ #: redirection-strings.php:132 redirection-strings.php:133
1375
+ #: redirection-strings.php:141 redirection-strings.php:145
1376
+ #: redirection-strings.php:164 redirection-strings.php:270
1377
+ #: redirection-strings.php:305
1378
  msgid "Delete"
1379
  msgstr "Delete"
1380
 
1381
+ #: redirection-strings.php:48 redirection-strings.php:304
1382
  msgid "Edit"
1383
  msgstr "Edit"
1384
 
1385
+ #: redirection-strings.php:269
1386
  msgid "Last Access"
1387
  msgstr "Last Access"
1388
 
1389
+ #: redirection-strings.php:268
1390
  msgid "Hits"
1391
  msgstr "Hits"
1392
 
1393
+ #: redirection-strings.php:266 redirection-strings.php:321
1394
  msgid "URL"
1395
  msgstr "URL"
1396
 
1397
+ #: redirection-strings.php:265
1398
  msgid "Type"
1399
  msgstr "Type"
1400
 
1406
  msgid "Redirections"
1407
  msgstr "Redirections"
1408
 
1409
+ #: redirection-strings.php:277
1410
  msgid "User Agent"
1411
  msgstr "User Agent"
1412
 
1413
+ #: matches/user-agent.php:10 redirection-strings.php:234
1414
  msgid "URL and user agent"
1415
  msgstr "URL and user agent"
1416
 
1417
+ #: redirection-strings.php:228
1418
  msgid "Target URL"
1419
  msgstr "Target URL"
1420
 
1421
+ #: matches/url.php:7 redirection-strings.php:230
1422
  msgid "URL only"
1423
  msgstr "URL only"
1424
 
1425
+ #: redirection-strings.php:261 redirection-strings.php:283
1426
+ #: redirection-strings.php:287 redirection-strings.php:295
1427
+ #: redirection-strings.php:299
1428
  msgid "Regex"
1429
  msgstr "Regex"
1430
 
1431
+ #: redirection-strings.php:297
1432
  msgid "Referrer"
1433
  msgstr "Referrer"
1434
 
1435
+ #: matches/referrer.php:10 redirection-strings.php:233
1436
  msgid "URL and referrer"
1437
  msgstr "URL and referrer"
1438
 
1439
+ #: redirection-strings.php:222
1440
  msgid "Logged Out"
1441
  msgstr "Logged Out"
1442
 
1443
+ #: redirection-strings.php:220
1444
  msgid "Logged In"
1445
  msgstr "Logged In"
1446
 
1447
+ #: matches/login.php:8 redirection-strings.php:231
1448
  msgid "URL and login status"
1449
  msgstr "URL and login status"
locale/redirection-en_GB.mo CHANGED
Binary file
locale/redirection-en_GB.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-07-12 19:36:44+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
15
- msgid "Enter full URL, including http:// or https://"
 
 
 
 
 
 
 
 
16
  msgstr ""
17
 
18
  #: redirection-strings.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr ""
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr ""
93
 
@@ -99,31 +147,31 @@ msgstr ""
99
  msgid "Please logout and login again."
100
  msgstr ""
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
- msgstr ""
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL and server"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "Form request"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "Relative /wp-json/"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr "Proxy over Admin Ajax"
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "Default /wp-json/"
129
 
@@ -143,51 +191,51 @@ msgstr "Site and home URL are inconsistent - please correct from your General se
143
  msgid "Site and home are consistent"
144
  msgstr "Site and home are consistent"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Accept Language"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Header value"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Header name"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "HTTP Header"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "WordPress filter name"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Filter Name"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Cookie value"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Cookie name"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "Target URL when not matched"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "Target URL when matched"
193
 
@@ -199,31 +247,31 @@ msgstr "clearing your cache."
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr "URL and HTTP header"
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr "URL and custom filter"
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL and cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr "404 deleted"
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr "Raw /index.php?rest_route=/"
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "REST API"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr "How Redirection uses the REST API - don't change unless necessary"
229
 
@@ -233,7 +281,7 @@ msgstr "WordPress returned an unexpected message. This could be caused by your R
233
 
234
  #: redirection-strings.php:15
235
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
236
- msgstr ""
237
 
238
  #: redirection-strings.php:16
239
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
@@ -255,11 +303,11 @@ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so
255
  msgid "None of the suggestions helped"
256
  msgstr "None of the suggestions helped"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "Unable to load Redirection ☹️"
265
 
@@ -296,75 +344,75 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr "User Agent Error"
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Unknown User Agent"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Device"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Operating System"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Browser"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr "Engine"
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "User Agent"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr "Agent"
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "No IP logging"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Full IP logging"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Anonymise IP (mask last part)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Monitor changes to %(type)s"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "IP Logging"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(select IP logging level)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr "Geo Info"
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr "Agent Info"
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "Filter by IP"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "Referrer / User Agent"
370
 
@@ -372,7 +420,8 @@ msgstr "Referrer / User Agent"
372
  msgid "Geo IP Error"
373
  msgstr "Geo IP Error"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr "Something went wrong obtaining this information"
378
 
@@ -405,7 +454,8 @@ msgstr "Timezone"
405
  msgid "Geo Location"
406
  msgstr "Geo Location"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Powered by {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr "Bin"
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
419
 
@@ -425,63 +475,63 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr "Never cache"
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "An hour"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr "Redirect Cache"
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "Are you sure you want to import from %s?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Plugin Importers"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "The following redirect plugins were detected on your site and can be imported from."
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "total = "
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "Import from %s"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Redirection not installed properly"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
487
 
@@ -489,71 +539,71 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr "Default WordPress \"old slugs\""
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr "Create associated redirect (added to end of URL)"
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr "⚡️ Magic fix ⚡️"
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "Plugin Status"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr "Custom"
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr "Mobile"
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "Feed Readers"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr "Libraries"
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr "URL Monitor Changes"
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr "Save changes to this group"
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr "For example \"/amp\""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "URL Monitor"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "Delete 404s"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "Delete all logs for this 404"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "Delete all from IP %s"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr "Delete all matching \"%s\""
559
 
@@ -561,23 +611,23 @@ msgstr "Delete all matching \"%s\""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "Unable to load Redirection"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "Unable to create group"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "Failed to fix database tables"
583
 
@@ -647,25 +697,25 @@ msgstr "WordPress did not return a response. This could mean an error occurred o
647
 
648
  #: redirection-strings.php:7
649
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
650
- msgstr ""
651
 
652
  #: redirection-strings.php:25
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr "If you think Redirection is at fault then create an issue."
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "Loading, please wait..."
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
671
 
@@ -681,7 +731,7 @@ msgstr "If that doesn't help, open your browser's error console and create a {{l
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr "Create Issue"
687
 
@@ -693,135 +743,135 @@ msgstr "Email"
693
  msgid "Important details"
694
  msgstr "Important details"
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Need help?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr "Pos"
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 - Gone"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Position"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Apache Module"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Import to group"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Import a CSV, .htaccess, or JSON file."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Click 'Add File' or drag and drop here."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Add File"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "File selected"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Importing"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Finished importing"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Total redirects imported:"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "Double-check the file is the correct format!"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "OK"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Close"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "All imports will be appended to the current database."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Export"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Everything"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "WordPress redirects"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Apache redirects"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Nginx redirects"
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr "Apache .htaccess"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr "Nginx rewrite rules"
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr "Redirection JSON"
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr "View"
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr "Log files can be exported from the log pages."
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Import/Export"
827
 
@@ -837,113 +887,113 @@ msgstr "404 errors"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr "I'd like to support some more."
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Support 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr "Redirection saved"
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr "Log deleted"
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Settings saved"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Group saved"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
  msgstr[0] "Are you sure you want to delete this item?"
868
  msgstr[1] "Are you sure you want to delete these items?"
869
 
870
- #: redirection-strings.php:296
871
  msgid "pass"
872
  msgstr "pass"
873
 
874
- #: redirection-strings.php:262
875
  msgid "All groups"
876
  msgstr "All groups"
877
 
878
- #: redirection-strings.php:232
879
  msgid "301 - Moved Permanently"
880
  msgstr "301 - Moved Permanently"
881
 
882
- #: redirection-strings.php:233
883
  msgid "302 - Found"
884
  msgstr "302 - Found"
885
 
886
- #: redirection-strings.php:234
887
  msgid "307 - Temporary Redirect"
888
  msgstr "307 - Temporary Redirect"
889
 
890
- #: redirection-strings.php:235
891
  msgid "308 - Permanent Redirect"
892
  msgstr "308 - Permanent Redirect"
893
 
894
- #: redirection-strings.php:236
895
  msgid "401 - Unauthorized"
896
  msgstr "401 - Unauthorized"
897
 
898
- #: redirection-strings.php:237
899
  msgid "404 - Not Found"
900
  msgstr "404 - Not Found"
901
 
902
- #: redirection-strings.php:239
903
  msgid "Title"
904
  msgstr "Title"
905
 
906
- #: redirection-strings.php:242
907
  msgid "When matched"
908
  msgstr "When matched"
909
 
910
- #: redirection-strings.php:243
911
  msgid "with HTTP code"
912
  msgstr "with HTTP code"
913
 
914
- #: redirection-strings.php:252
915
  msgid "Show advanced options"
916
  msgstr "Show advanced options"
917
 
918
- #: redirection-strings.php:212
919
  msgid "Matched Target"
920
  msgstr "Matched Target"
921
 
922
- #: redirection-strings.php:214
923
  msgid "Unmatched Target"
924
  msgstr "Unmatched Target"
925
 
926
- #: redirection-strings.php:206 redirection-strings.php:207
927
  msgid "Saving..."
928
  msgstr "Saving..."
929
 
930
- #: redirection-strings.php:145
931
  msgid "View notice"
932
  msgstr "View notice"
933
 
934
- #: models/redirect.php:524
935
  msgid "Invalid source URL"
936
  msgstr "Invalid source URL"
937
 
938
- #: models/redirect.php:456
939
  msgid "Invalid redirect action"
940
  msgstr "Invalid redirect action"
941
 
942
- #: models/redirect.php:450
943
  msgid "Invalid redirect matcher"
944
  msgstr "Invalid redirect matcher"
945
 
946
- #: models/redirect.php:185
947
  msgid "Unable to add new redirect"
948
  msgstr "Unable to add new redirect"
949
 
@@ -959,129 +1009,129 @@ msgstr "I was trying to do a thing and it went wrong. It may be a temporary issu
959
  msgid "Log entries (%d max)"
960
  msgstr "Log entries (%d max)"
961
 
962
- #: redirection-strings.php:334
963
  msgid "Search by IP"
964
  msgstr "Search by IP"
965
 
966
- #: redirection-strings.php:329
967
  msgid "Select bulk action"
968
  msgstr "Select bulk action"
969
 
970
- #: redirection-strings.php:330
971
  msgid "Bulk Actions"
972
  msgstr "Bulk Actions"
973
 
974
- #: redirection-strings.php:331
975
  msgid "Apply"
976
  msgstr "Apply"
977
 
978
- #: redirection-strings.php:322
979
  msgid "First page"
980
  msgstr "First page"
981
 
982
- #: redirection-strings.php:323
983
  msgid "Prev page"
984
  msgstr "Prev page"
985
 
986
- #: redirection-strings.php:324
987
  msgid "Current Page"
988
  msgstr "Current Page"
989
 
990
- #: redirection-strings.php:325
991
  msgid "of %(page)s"
992
  msgstr "of %(page)s"
993
 
994
- #: redirection-strings.php:326
995
  msgid "Next page"
996
  msgstr "Next page"
997
 
998
- #: redirection-strings.php:327
999
  msgid "Last page"
1000
  msgstr "Last page"
1001
 
1002
- #: redirection-strings.php:328
1003
  msgid "%s item"
1004
  msgid_plural "%s items"
1005
  msgstr[0] "%s item"
1006
  msgstr[1] "%s items"
1007
 
1008
- #: redirection-strings.php:321
1009
  msgid "Select All"
1010
  msgstr "Select All"
1011
 
1012
- #: redirection-strings.php:333
1013
  msgid "Sorry, something went wrong loading the data - please try again"
1014
  msgstr "Sorry, something went wrong loading the data - please try again"
1015
 
1016
- #: redirection-strings.php:332
1017
  msgid "No results"
1018
  msgstr "No results"
1019
 
1020
- #: redirection-strings.php:111
1021
  msgid "Delete the logs - are you sure?"
1022
  msgstr "Delete the logs - are you sure?"
1023
 
1024
- #: redirection-strings.php:112
1025
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1026
  msgstr "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1027
 
1028
- #: redirection-strings.php:113
1029
  msgid "Yes! Delete the logs"
1030
  msgstr "Yes! Delete the logs"
1031
 
1032
- #: redirection-strings.php:114
1033
  msgid "No! Don't delete the logs"
1034
  msgstr "No! Don't delete the logs"
1035
 
1036
- #: redirection-strings.php:312
1037
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1038
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1039
 
1040
- #: redirection-strings.php:311 redirection-strings.php:313
1041
  msgid "Newsletter"
1042
  msgstr "Newsletter"
1043
 
1044
- #: redirection-strings.php:314
1045
  msgid "Want to keep up to date with changes to Redirection?"
1046
  msgstr "Want to keep up to date with changes to Redirection?"
1047
 
1048
- #: redirection-strings.php:315
1049
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1050
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1051
 
1052
- #: redirection-strings.php:316
1053
  msgid "Your email address:"
1054
  msgstr "Your email address:"
1055
 
1056
- #: redirection-strings.php:153
1057
  msgid "You've supported this plugin - thank you!"
1058
  msgstr "You've supported this plugin - thank you!"
1059
 
1060
- #: redirection-strings.php:156
1061
  msgid "You get useful software and I get to carry on making it better."
1062
  msgstr "You get useful software and I get to carry on making it better."
1063
 
1064
- #: redirection-strings.php:164 redirection-strings.php:169
1065
  msgid "Forever"
1066
  msgstr "Forever"
1067
 
1068
- #: redirection-strings.php:146
1069
  msgid "Delete the plugin - are you sure?"
1070
  msgstr "Delete the plugin - are you sure?"
1071
 
1072
- #: redirection-strings.php:147
1073
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1074
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1075
 
1076
- #: redirection-strings.php:148
1077
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1078
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1079
 
1080
- #: redirection-strings.php:149
1081
  msgid "Yes! Delete the plugin"
1082
  msgstr "Yes! Delete the plugin"
1083
 
1084
- #: redirection-strings.php:150
1085
  msgid "No! Don't delete the plugin"
1086
  msgstr "No! Don't delete the plugin"
1087
 
@@ -1093,7 +1143,7 @@ msgstr "John Godley"
1093
  msgid "Manage all your 301 redirects and monitor 404 errors"
1094
  msgstr "Manage all your 301 redirects and monitor 404 errors"
1095
 
1096
- #: redirection-strings.php:155
1097
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1098
  msgstr "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1099
 
@@ -1101,91 +1151,91 @@ msgstr "Redirection is free to use - life is wonderful and lovely! It has requir
1101
  msgid "Redirection Support"
1102
  msgstr "Redirection Support"
1103
 
1104
- #: redirection-strings.php:63 redirection-strings.php:144
1105
  msgid "Support"
1106
  msgstr "Support"
1107
 
1108
- #: redirection-strings.php:141
1109
  msgid "404s"
1110
  msgstr "404s"
1111
 
1112
- #: redirection-strings.php:140
1113
  msgid "Log"
1114
  msgstr "Log"
1115
 
1116
- #: redirection-strings.php:151
1117
  msgid "Delete Redirection"
1118
  msgstr "Delete Redirection"
1119
 
1120
- #: redirection-strings.php:81
1121
  msgid "Upload"
1122
  msgstr "Upload"
1123
 
1124
- #: redirection-strings.php:92
1125
  msgid "Import"
1126
  msgstr "Import"
1127
 
1128
- #: redirection-strings.php:205
1129
  msgid "Update"
1130
  msgstr "Update"
1131
 
1132
- #: redirection-strings.php:194
1133
  msgid "Auto-generate URL"
1134
  msgstr "Auto-generate URL"
1135
 
1136
- #: redirection-strings.php:193
1137
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1138
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1139
 
1140
- #: redirection-strings.php:192
1141
  msgid "RSS Token"
1142
  msgstr "RSS Token"
1143
 
1144
- #: redirection-strings.php:186
1145
  msgid "404 Logs"
1146
  msgstr "404 Logs"
1147
 
1148
- #: redirection-strings.php:185 redirection-strings.php:187
1149
  msgid "(time to keep logs for)"
1150
  msgstr "(time to keep logs for)"
1151
 
1152
- #: redirection-strings.php:184
1153
  msgid "Redirect Logs"
1154
  msgstr "Redirect Logs"
1155
 
1156
- #: redirection-strings.php:183
1157
  msgid "I'm a nice person and I have helped support the author of this plugin"
1158
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1159
 
1160
- #: redirection-strings.php:158
1161
  msgid "Plugin Support"
1162
  msgstr "Plugin Support"
1163
 
1164
- #: redirection-strings.php:62 redirection-strings.php:143
1165
  msgid "Options"
1166
  msgstr "Options"
1167
 
1168
- #: redirection-strings.php:163
1169
  msgid "Two months"
1170
  msgstr "Two months"
1171
 
1172
- #: redirection-strings.php:162
1173
  msgid "A month"
1174
  msgstr "A month"
1175
 
1176
- #: redirection-strings.php:161 redirection-strings.php:168
1177
  msgid "A week"
1178
  msgstr "A week"
1179
 
1180
- #: redirection-strings.php:160 redirection-strings.php:167
1181
  msgid "A day"
1182
  msgstr "A day"
1183
 
1184
- #: redirection-strings.php:159
1185
  msgid "No logs"
1186
  msgstr "No logs"
1187
 
1188
- #: redirection-strings.php:110
1189
  msgid "Delete All"
1190
  msgstr "Delete All"
1191
 
@@ -1197,37 +1247,37 @@ msgstr "Use groups to organise your redirects. Groups are assigned to a module,
1197
  msgid "Add Group"
1198
  msgstr "Add Group"
1199
 
1200
- #: redirection-strings.php:335
1201
  msgid "Search"
1202
  msgstr "Search"
1203
 
1204
- #: redirection-strings.php:58 redirection-strings.php:139
1205
  msgid "Groups"
1206
  msgstr "Groups"
1207
 
1208
  #: redirection-strings.php:14 redirection-strings.php:55
1209
- #: redirection-strings.php:246
1210
  msgid "Save"
1211
  msgstr "Save"
1212
 
1213
- #: redirection-strings.php:244
1214
  msgid "Group"
1215
  msgstr "Group"
1216
 
1217
- #: redirection-strings.php:241
1218
  msgid "Match"
1219
  msgstr "Match"
1220
 
1221
- #: redirection-strings.php:263
1222
  msgid "Add new redirection"
1223
  msgstr "Add new redirection"
1224
 
1225
- #: redirection-strings.php:56 redirection-strings.php:82
1226
- #: redirection-strings.php:250
1227
  msgid "Cancel"
1228
  msgstr "Cancel"
1229
 
1230
- #: redirection-strings.php:106
1231
  msgid "Download"
1232
  msgstr "Download"
1233
 
@@ -1239,45 +1289,45 @@ msgstr "Redirection"
1239
  msgid "Settings"
1240
  msgstr "Settings"
1241
 
1242
- #: redirection-strings.php:231
1243
  msgid "Do nothing"
1244
  msgstr "Do nothing"
1245
 
1246
- #: redirection-strings.php:230
1247
  msgid "Error (404)"
1248
  msgstr "Error (404)"
1249
 
1250
- #: redirection-strings.php:229
1251
  msgid "Pass-through"
1252
  msgstr "Pass-through"
1253
 
1254
- #: redirection-strings.php:228
1255
  msgid "Redirect to random post"
1256
  msgstr "Redirect to random post"
1257
 
1258
- #: redirection-strings.php:227
1259
  msgid "Redirect to URL"
1260
  msgstr "Redirect to URL"
1261
 
1262
- #: models/redirect.php:514
1263
  msgid "Invalid group when creating redirect"
1264
  msgstr "Invalid group when creating redirect"
1265
 
1266
- #: redirection-strings.php:119 redirection-strings.php:128
1267
  msgid "IP"
1268
  msgstr "IP"
1269
 
1270
- #: redirection-strings.php:117 redirection-strings.php:126
1271
- #: redirection-strings.php:247
1272
  msgid "Source URL"
1273
  msgstr "Source URL"
1274
 
1275
- #: redirection-strings.php:116 redirection-strings.php:125
1276
  msgid "Date"
1277
  msgstr "Date"
1278
 
1279
- #: redirection-strings.php:130 redirection-strings.php:134
1280
- #: redirection-strings.php:264
1281
  msgid "Add Redirect"
1282
  msgstr "Add Redirect"
1283
 
@@ -1293,7 +1343,7 @@ msgstr "View Redirects"
1293
  msgid "Module"
1294
  msgstr "Module"
1295
 
1296
- #: redirection-strings.php:39 redirection-strings.php:138
1297
  msgid "Redirects"
1298
  msgstr "Redirects"
1299
 
@@ -1302,49 +1352,49 @@ msgstr "Redirects"
1302
  msgid "Name"
1303
  msgstr "Name"
1304
 
1305
- #: redirection-strings.php:320
1306
  msgid "Filter"
1307
  msgstr "Filter"
1308
 
1309
- #: redirection-strings.php:261
1310
  msgid "Reset hits"
1311
  msgstr "Reset hits"
1312
 
1313
  #: redirection-strings.php:42 redirection-strings.php:52
1314
- #: redirection-strings.php:259 redirection-strings.php:295
1315
  msgid "Enable"
1316
  msgstr "Enable"
1317
 
1318
  #: redirection-strings.php:43 redirection-strings.php:51
1319
- #: redirection-strings.php:260 redirection-strings.php:294
1320
  msgid "Disable"
1321
  msgstr "Disable"
1322
 
1323
  #: redirection-strings.php:41 redirection-strings.php:49
1324
- #: redirection-strings.php:120 redirection-strings.php:121
1325
- #: redirection-strings.php:129 redirection-strings.php:133
1326
- #: redirection-strings.php:152 redirection-strings.php:258
1327
- #: redirection-strings.php:293
1328
  msgid "Delete"
1329
  msgstr "Delete"
1330
 
1331
- #: redirection-strings.php:48 redirection-strings.php:292
1332
  msgid "Edit"
1333
  msgstr "Edit"
1334
 
1335
- #: redirection-strings.php:257
1336
  msgid "Last Access"
1337
  msgstr "Last Access"
1338
 
1339
- #: redirection-strings.php:256
1340
  msgid "Hits"
1341
  msgstr "Hits"
1342
 
1343
- #: redirection-strings.php:254 redirection-strings.php:308
1344
  msgid "URL"
1345
  msgstr "URL"
1346
 
1347
- #: redirection-strings.php:253
1348
  msgid "Type"
1349
  msgstr "Type"
1350
 
@@ -1356,44 +1406,44 @@ msgstr "Modified Posts"
1356
  msgid "Redirections"
1357
  msgstr "Redirections"
1358
 
1359
- #: redirection-strings.php:265
1360
  msgid "User Agent"
1361
  msgstr "User Agent"
1362
 
1363
- #: matches/user-agent.php:10 redirection-strings.php:222
1364
  msgid "URL and user agent"
1365
  msgstr "URL and user agent"
1366
 
1367
- #: redirection-strings.php:216
1368
  msgid "Target URL"
1369
  msgstr "Target URL"
1370
 
1371
- #: matches/url.php:7 redirection-strings.php:218
1372
  msgid "URL only"
1373
  msgstr "URL only"
1374
 
1375
- #: redirection-strings.php:249 redirection-strings.php:271
1376
- #: redirection-strings.php:275 redirection-strings.php:283
1377
- #: redirection-strings.php:287
1378
  msgid "Regex"
1379
  msgstr "Regex"
1380
 
1381
- #: redirection-strings.php:285
1382
  msgid "Referrer"
1383
  msgstr "Referrer"
1384
 
1385
- #: matches/referrer.php:10 redirection-strings.php:221
1386
  msgid "URL and referrer"
1387
  msgstr "URL and referrer"
1388
 
1389
- #: redirection-strings.php:210
1390
  msgid "Logged Out"
1391
  msgstr "Logged Out"
1392
 
1393
- #: redirection-strings.php:208
1394
  msgid "Logged In"
1395
  msgstr "Logged In"
1396
 
1397
- #: matches/login.php:8 redirection-strings.php:219
1398
  msgid "URL and login status"
1399
  msgstr "URL and login status"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-10-15 13:21:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
  msgstr ""
25
 
26
  #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:322
63
+ msgid "Enter full URL, including http:// or https://"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr ""
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr ""
141
 
147
  msgid "Please logout and login again."
148
  msgstr ""
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
+ msgstr "URL and role/capability"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL and server"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "Form request"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "Relative /wp-json/"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr "Proxy over Admin Ajax"
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "Default /wp-json/"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "Site and home are consistent"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Accept Language"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Header value"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Header name"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "HTTP Header"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "WordPress filter name"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Filter Name"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Cookie value"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Cookie name"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "Target URL when not matched"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "Target URL when matched"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr "URL and HTTP header"
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr "URL and custom filter"
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL and cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr "404 deleted"
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr "Raw /index.php?rest_route=/"
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "REST API"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr "How Redirection uses the REST API - don't change unless necessary"
277
 
281
 
282
  #: redirection-strings.php:15
283
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
284
+ msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
285
 
286
  #: redirection-strings.php:16
287
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
303
  msgid "None of the suggestions helped"
304
  msgstr "None of the suggestions helped"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "Unable to load Redirection ☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr "User Agent Error"
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Unknown User Agent"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Device"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Operating System"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Browser"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr "Engine"
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "User Agent"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr "Agent"
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "No IP logging"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Full IP logging"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Anonymise IP (mask last part)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Monitor changes to %(type)s"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "IP Logging"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(select IP logging level)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr "Geo Info"
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr "Agent Info"
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "Filter by IP"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "Referrer / User Agent"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "Geo IP Error"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr "Something went wrong obtaining this information"
427
 
454
  msgid "Geo Location"
455
  msgstr "Geo Location"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Powered by {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr "Bin"
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr "Never cache"
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "An hour"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr "Redirect Cache"
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "Are you sure you want to import from %s?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Plugin Importers"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "The following redirect plugins were detected on your site and can be imported from."
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "total = "
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "Import from %s"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Redirection not installed properly"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr "Default WordPress \"old slugs\""
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr "Create associated redirect (added to end of URL)"
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr "⚡️ Magic fix ⚡️"
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "Plugin Status"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr "Custom"
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr "Mobile"
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "Feed Readers"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr "Libraries"
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr "URL Monitor Changes"
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr "Save changes to this group"
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr "For example \"/amp\""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "URL Monitor"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "Delete 404s"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "Delete all logs for this 404"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "Delete all from IP %s"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr "Delete all matching \"%s\""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "Unable to load Redirection"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "Unable to create group"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "Failed to fix database tables"
633
 
697
 
698
  #: redirection-strings.php:7
699
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
700
+ msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
701
 
702
  #: redirection-strings.php:25
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr "If you think Redirection is at fault then create an issue."
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "Loading, please wait..."
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr "Create Issue"
737
 
743
  msgid "Important details"
744
  msgstr "Important details"
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Need help?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr "Pos"
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 - Gone"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Position"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Apache Module"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Import to group"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Import a CSV, .htaccess, or JSON file."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Click 'Add File' or drag and drop here."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Add File"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "File selected"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Importing"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Finished importing"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Total redirects imported:"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "Double-check the file is the correct format!"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "OK"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Close"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "All imports will be appended to the current database."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Export"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Everything"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "WordPress redirects"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Apache redirects"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Nginx redirects"
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr "Apache .htaccess"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr "Nginx rewrite rules"
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr "Redirection JSON"
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr "View"
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr "Log files can be exported from the log pages."
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Import/Export"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr "I'd like to support some more."
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Support 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr "Redirection saved"
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr "Log deleted"
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Settings saved"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Group saved"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
  msgstr[0] "Are you sure you want to delete this item?"
918
  msgstr[1] "Are you sure you want to delete these items?"
919
 
920
+ #: redirection-strings.php:309
921
  msgid "pass"
922
  msgstr "pass"
923
 
924
+ #: redirection-strings.php:274
925
  msgid "All groups"
926
  msgstr "All groups"
927
 
928
+ #: redirection-strings.php:244
929
  msgid "301 - Moved Permanently"
930
  msgstr "301 - Moved Permanently"
931
 
932
+ #: redirection-strings.php:245
933
  msgid "302 - Found"
934
  msgstr "302 - Found"
935
 
936
+ #: redirection-strings.php:246
937
  msgid "307 - Temporary Redirect"
938
  msgstr "307 - Temporary Redirect"
939
 
940
+ #: redirection-strings.php:247
941
  msgid "308 - Permanent Redirect"
942
  msgstr "308 - Permanent Redirect"
943
 
944
+ #: redirection-strings.php:248
945
  msgid "401 - Unauthorized"
946
  msgstr "401 - Unauthorized"
947
 
948
+ #: redirection-strings.php:249
949
  msgid "404 - Not Found"
950
  msgstr "404 - Not Found"
951
 
952
+ #: redirection-strings.php:251
953
  msgid "Title"
954
  msgstr "Title"
955
 
956
+ #: redirection-strings.php:254
957
  msgid "When matched"
958
  msgstr "When matched"
959
 
960
+ #: redirection-strings.php:255
961
  msgid "with HTTP code"
962
  msgstr "with HTTP code"
963
 
964
+ #: redirection-strings.php:264
965
  msgid "Show advanced options"
966
  msgstr "Show advanced options"
967
 
968
+ #: redirection-strings.php:224
969
  msgid "Matched Target"
970
  msgstr "Matched Target"
971
 
972
+ #: redirection-strings.php:226
973
  msgid "Unmatched Target"
974
  msgstr "Unmatched Target"
975
 
976
+ #: redirection-strings.php:218 redirection-strings.php:219
977
  msgid "Saving..."
978
  msgstr "Saving..."
979
 
980
+ #: redirection-strings.php:157
981
  msgid "View notice"
982
  msgstr "View notice"
983
 
984
+ #: models/redirect.php:526
985
  msgid "Invalid source URL"
986
  msgstr "Invalid source URL"
987
 
988
+ #: models/redirect.php:458
989
  msgid "Invalid redirect action"
990
  msgstr "Invalid redirect action"
991
 
992
+ #: models/redirect.php:452
993
  msgid "Invalid redirect matcher"
994
  msgstr "Invalid redirect matcher"
995
 
996
+ #: models/redirect.php:187
997
  msgid "Unable to add new redirect"
998
  msgstr "Unable to add new redirect"
999
 
1009
  msgid "Log entries (%d max)"
1010
  msgstr "Log entries (%d max)"
1011
 
1012
+ #: redirection-strings.php:350
1013
  msgid "Search by IP"
1014
  msgstr "Search by IP"
1015
 
1016
+ #: redirection-strings.php:345
1017
  msgid "Select bulk action"
1018
  msgstr "Select bulk action"
1019
 
1020
+ #: redirection-strings.php:346
1021
  msgid "Bulk Actions"
1022
  msgstr "Bulk Actions"
1023
 
1024
+ #: redirection-strings.php:347
1025
  msgid "Apply"
1026
  msgstr "Apply"
1027
 
1028
+ #: redirection-strings.php:338
1029
  msgid "First page"
1030
  msgstr "First page"
1031
 
1032
+ #: redirection-strings.php:339
1033
  msgid "Prev page"
1034
  msgstr "Prev page"
1035
 
1036
+ #: redirection-strings.php:340
1037
  msgid "Current Page"
1038
  msgstr "Current Page"
1039
 
1040
+ #: redirection-strings.php:341
1041
  msgid "of %(page)s"
1042
  msgstr "of %(page)s"
1043
 
1044
+ #: redirection-strings.php:342
1045
  msgid "Next page"
1046
  msgstr "Next page"
1047
 
1048
+ #: redirection-strings.php:343
1049
  msgid "Last page"
1050
  msgstr "Last page"
1051
 
1052
+ #: redirection-strings.php:344
1053
  msgid "%s item"
1054
  msgid_plural "%s items"
1055
  msgstr[0] "%s item"
1056
  msgstr[1] "%s items"
1057
 
1058
+ #: redirection-strings.php:337
1059
  msgid "Select All"
1060
  msgstr "Select All"
1061
 
1062
+ #: redirection-strings.php:349
1063
  msgid "Sorry, something went wrong loading the data - please try again"
1064
  msgstr "Sorry, something went wrong loading the data - please try again"
1065
 
1066
+ #: redirection-strings.php:348
1067
  msgid "No results"
1068
  msgstr "No results"
1069
 
1070
+ #: redirection-strings.php:123
1071
  msgid "Delete the logs - are you sure?"
1072
  msgstr "Delete the logs - are you sure?"
1073
 
1074
+ #: redirection-strings.php:124
1075
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1076
  msgstr "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1077
 
1078
+ #: redirection-strings.php:125
1079
  msgid "Yes! Delete the logs"
1080
  msgstr "Yes! Delete the logs"
1081
 
1082
+ #: redirection-strings.php:126
1083
  msgid "No! Don't delete the logs"
1084
  msgstr "No! Don't delete the logs"
1085
 
1086
+ #: redirection-strings.php:326
1087
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1088
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1089
 
1090
+ #: redirection-strings.php:325 redirection-strings.php:327
1091
  msgid "Newsletter"
1092
  msgstr "Newsletter"
1093
 
1094
+ #: redirection-strings.php:328
1095
  msgid "Want to keep up to date with changes to Redirection?"
1096
  msgstr "Want to keep up to date with changes to Redirection?"
1097
 
1098
+ #: redirection-strings.php:329
1099
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1100
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1101
 
1102
+ #: redirection-strings.php:330
1103
  msgid "Your email address:"
1104
  msgstr "Your email address:"
1105
 
1106
+ #: redirection-strings.php:165
1107
  msgid "You've supported this plugin - thank you!"
1108
  msgstr "You've supported this plugin - thank you!"
1109
 
1110
+ #: redirection-strings.php:168
1111
  msgid "You get useful software and I get to carry on making it better."
1112
  msgstr "You get useful software and I get to carry on making it better."
1113
 
1114
+ #: redirection-strings.php:176 redirection-strings.php:181
1115
  msgid "Forever"
1116
  msgstr "Forever"
1117
 
1118
+ #: redirection-strings.php:158
1119
  msgid "Delete the plugin - are you sure?"
1120
  msgstr "Delete the plugin - are you sure?"
1121
 
1122
+ #: redirection-strings.php:159
1123
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1124
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1125
 
1126
+ #: redirection-strings.php:160
1127
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1128
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1129
 
1130
+ #: redirection-strings.php:161
1131
  msgid "Yes! Delete the plugin"
1132
  msgstr "Yes! Delete the plugin"
1133
 
1134
+ #: redirection-strings.php:162
1135
  msgid "No! Don't delete the plugin"
1136
  msgstr "No! Don't delete the plugin"
1137
 
1143
  msgid "Manage all your 301 redirects and monitor 404 errors"
1144
  msgstr "Manage all your 301 redirects and monitor 404 errors"
1145
 
1146
+ #: redirection-strings.php:167
1147
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1148
  msgstr "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1149
 
1151
  msgid "Redirection Support"
1152
  msgstr "Redirection Support"
1153
 
1154
+ #: redirection-strings.php:63 redirection-strings.php:156
1155
  msgid "Support"
1156
  msgstr "Support"
1157
 
1158
+ #: redirection-strings.php:153
1159
  msgid "404s"
1160
  msgstr "404s"
1161
 
1162
+ #: redirection-strings.php:152
1163
  msgid "Log"
1164
  msgstr "Log"
1165
 
1166
+ #: redirection-strings.php:163
1167
  msgid "Delete Redirection"
1168
  msgstr "Delete Redirection"
1169
 
1170
+ #: redirection-strings.php:93
1171
  msgid "Upload"
1172
  msgstr "Upload"
1173
 
1174
+ #: redirection-strings.php:104
1175
  msgid "Import"
1176
  msgstr "Import"
1177
 
1178
+ #: redirection-strings.php:217
1179
  msgid "Update"
1180
  msgstr "Update"
1181
 
1182
+ #: redirection-strings.php:206
1183
  msgid "Auto-generate URL"
1184
  msgstr "Auto-generate URL"
1185
 
1186
+ #: redirection-strings.php:205
1187
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1188
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1189
 
1190
+ #: redirection-strings.php:204
1191
  msgid "RSS Token"
1192
  msgstr "RSS Token"
1193
 
1194
+ #: redirection-strings.php:198
1195
  msgid "404 Logs"
1196
  msgstr "404 Logs"
1197
 
1198
+ #: redirection-strings.php:197 redirection-strings.php:199
1199
  msgid "(time to keep logs for)"
1200
  msgstr "(time to keep logs for)"
1201
 
1202
+ #: redirection-strings.php:196
1203
  msgid "Redirect Logs"
1204
  msgstr "Redirect Logs"
1205
 
1206
+ #: redirection-strings.php:195
1207
  msgid "I'm a nice person and I have helped support the author of this plugin"
1208
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1209
 
1210
+ #: redirection-strings.php:170
1211
  msgid "Plugin Support"
1212
  msgstr "Plugin Support"
1213
 
1214
+ #: redirection-strings.php:62 redirection-strings.php:155
1215
  msgid "Options"
1216
  msgstr "Options"
1217
 
1218
+ #: redirection-strings.php:175
1219
  msgid "Two months"
1220
  msgstr "Two months"
1221
 
1222
+ #: redirection-strings.php:174
1223
  msgid "A month"
1224
  msgstr "A month"
1225
 
1226
+ #: redirection-strings.php:173 redirection-strings.php:180
1227
  msgid "A week"
1228
  msgstr "A week"
1229
 
1230
+ #: redirection-strings.php:172 redirection-strings.php:179
1231
  msgid "A day"
1232
  msgstr "A day"
1233
 
1234
+ #: redirection-strings.php:171
1235
  msgid "No logs"
1236
  msgstr "No logs"
1237
 
1238
+ #: redirection-strings.php:122
1239
  msgid "Delete All"
1240
  msgstr "Delete All"
1241
 
1247
  msgid "Add Group"
1248
  msgstr "Add Group"
1249
 
1250
+ #: redirection-strings.php:351
1251
  msgid "Search"
1252
  msgstr "Search"
1253
 
1254
+ #: redirection-strings.php:58 redirection-strings.php:151
1255
  msgid "Groups"
1256
  msgstr "Groups"
1257
 
1258
  #: redirection-strings.php:14 redirection-strings.php:55
1259
+ #: redirection-strings.php:258
1260
  msgid "Save"
1261
  msgstr "Save"
1262
 
1263
+ #: redirection-strings.php:256
1264
  msgid "Group"
1265
  msgstr "Group"
1266
 
1267
+ #: redirection-strings.php:253
1268
  msgid "Match"
1269
  msgstr "Match"
1270
 
1271
+ #: redirection-strings.php:275
1272
  msgid "Add new redirection"
1273
  msgstr "Add new redirection"
1274
 
1275
+ #: redirection-strings.php:56 redirection-strings.php:94
1276
+ #: redirection-strings.php:262
1277
  msgid "Cancel"
1278
  msgstr "Cancel"
1279
 
1280
+ #: redirection-strings.php:118
1281
  msgid "Download"
1282
  msgstr "Download"
1283
 
1289
  msgid "Settings"
1290
  msgstr "Settings"
1291
 
1292
+ #: redirection-strings.php:243
1293
  msgid "Do nothing"
1294
  msgstr "Do nothing"
1295
 
1296
+ #: redirection-strings.php:242
1297
  msgid "Error (404)"
1298
  msgstr "Error (404)"
1299
 
1300
+ #: redirection-strings.php:241
1301
  msgid "Pass-through"
1302
  msgstr "Pass-through"
1303
 
1304
+ #: redirection-strings.php:240
1305
  msgid "Redirect to random post"
1306
  msgstr "Redirect to random post"
1307
 
1308
+ #: redirection-strings.php:239
1309
  msgid "Redirect to URL"
1310
  msgstr "Redirect to URL"
1311
 
1312
+ #: models/redirect.php:516
1313
  msgid "Invalid group when creating redirect"
1314
  msgstr "Invalid group when creating redirect"
1315
 
1316
+ #: redirection-strings.php:131 redirection-strings.php:140
1317
  msgid "IP"
1318
  msgstr "IP"
1319
 
1320
+ #: redirection-strings.php:129 redirection-strings.php:138
1321
+ #: redirection-strings.php:259
1322
  msgid "Source URL"
1323
  msgstr "Source URL"
1324
 
1325
+ #: redirection-strings.php:128 redirection-strings.php:137
1326
  msgid "Date"
1327
  msgstr "Date"
1328
 
1329
+ #: redirection-strings.php:142 redirection-strings.php:146
1330
+ #: redirection-strings.php:276
1331
  msgid "Add Redirect"
1332
  msgstr "Add Redirect"
1333
 
1343
  msgid "Module"
1344
  msgstr "Module"
1345
 
1346
+ #: redirection-strings.php:39 redirection-strings.php:150
1347
  msgid "Redirects"
1348
  msgstr "Redirects"
1349
 
1352
  msgid "Name"
1353
  msgstr "Name"
1354
 
1355
+ #: redirection-strings.php:336
1356
  msgid "Filter"
1357
  msgstr "Filter"
1358
 
1359
+ #: redirection-strings.php:273
1360
  msgid "Reset hits"
1361
  msgstr "Reset hits"
1362
 
1363
  #: redirection-strings.php:42 redirection-strings.php:52
1364
+ #: redirection-strings.php:271 redirection-strings.php:308
1365
  msgid "Enable"
1366
  msgstr "Enable"
1367
 
1368
  #: redirection-strings.php:43 redirection-strings.php:51
1369
+ #: redirection-strings.php:272 redirection-strings.php:306
1370
  msgid "Disable"
1371
  msgstr "Disable"
1372
 
1373
  #: redirection-strings.php:41 redirection-strings.php:49
1374
+ #: redirection-strings.php:132 redirection-strings.php:133
1375
+ #: redirection-strings.php:141 redirection-strings.php:145
1376
+ #: redirection-strings.php:164 redirection-strings.php:270
1377
+ #: redirection-strings.php:305
1378
  msgid "Delete"
1379
  msgstr "Delete"
1380
 
1381
+ #: redirection-strings.php:48 redirection-strings.php:304
1382
  msgid "Edit"
1383
  msgstr "Edit"
1384
 
1385
+ #: redirection-strings.php:269
1386
  msgid "Last Access"
1387
  msgstr "Last Access"
1388
 
1389
+ #: redirection-strings.php:268
1390
  msgid "Hits"
1391
  msgstr "Hits"
1392
 
1393
+ #: redirection-strings.php:266 redirection-strings.php:321
1394
  msgid "URL"
1395
  msgstr "URL"
1396
 
1397
+ #: redirection-strings.php:265
1398
  msgid "Type"
1399
  msgstr "Type"
1400
 
1406
  msgid "Redirections"
1407
  msgstr "Redirections"
1408
 
1409
+ #: redirection-strings.php:277
1410
  msgid "User Agent"
1411
  msgstr "User Agent"
1412
 
1413
+ #: matches/user-agent.php:10 redirection-strings.php:234
1414
  msgid "URL and user agent"
1415
  msgstr "URL and user agent"
1416
 
1417
+ #: redirection-strings.php:228
1418
  msgid "Target URL"
1419
  msgstr "Target URL"
1420
 
1421
+ #: matches/url.php:7 redirection-strings.php:230
1422
  msgid "URL only"
1423
  msgstr "URL only"
1424
 
1425
+ #: redirection-strings.php:261 redirection-strings.php:283
1426
+ #: redirection-strings.php:287 redirection-strings.php:295
1427
+ #: redirection-strings.php:299
1428
  msgid "Regex"
1429
  msgstr "Regex"
1430
 
1431
+ #: redirection-strings.php:297
1432
  msgid "Referrer"
1433
  msgstr "Referrer"
1434
 
1435
+ #: matches/referrer.php:10 redirection-strings.php:233
1436
  msgid "URL and referrer"
1437
  msgstr "URL and referrer"
1438
 
1439
+ #: redirection-strings.php:222
1440
  msgid "Logged Out"
1441
  msgstr "Logged Out"
1442
 
1443
+ #: redirection-strings.php:220
1444
  msgid "Logged In"
1445
  msgstr "Logged In"
1446
 
1447
+ #: matches/login.php:8 redirection-strings.php:231
1448
  msgid "URL and login status"
1449
  msgstr "URL and login status"
locale/redirection-es_ES.mo CHANGED
Binary file
locale/redirection-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-09-10 07:53:33+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Enter full URL, including http:// or https://"
16
  msgstr "Introduce la URL completa, incluyendo http:// o https://"
17
 
18
- #: redirection-strings.php:307
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr "A veces, tu navegador puede almacenar en caché una URL, lo que dificulta saber si está funcionando como se esperaba. Usa esto para verificar una URL para ver cómo está redirigiendo realmente."
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr "Probar redirecciones"
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr "Destino"
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr "La URL no está siendo redirigida por Redirection"
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr "La URL está siendo redirigida por Redirection"
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr "No se han podido cargar los detalles"
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr "Escribe la URL del servidor que comprobar"
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "Servidor"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr "Escribe el valor de perfil o capacidad"
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr "Perfil"
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr "Comparar contra el texto de referencia de este navegador"
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr "Comparar contra el agente usuario de este navegador"
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "La URL relativa desde la que quieres redirigir"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "Descripción opcional - describe la finalidad de esta redirección"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr "La URL de destino a la que quieres redirigir si coincide"
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(beta)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "Forzar HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr "Información de RGPD / Provacidad"
93
 
@@ -99,31 +147,31 @@ msgstr "Añadir nueva"
99
  msgid "Please logout and login again."
100
  msgstr "Cierra sesión y vuelve a entrar, por favor."
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Redirection necesita PHP v%1s y estás usando v%2s - Actualiza tu versión de PHP"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr "URL y perfil/capacidad"
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL y servidor"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "Petición de formulario"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "/wp-json/ relativo"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr "Proxy sobre Admin AJAX"
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "/wp-json/ por defecto"
129
 
@@ -143,51 +191,51 @@ msgstr "Las URLs del sitio y portada son inconsistentes - por favor, corrígelo
143
  msgid "Site and home are consistent"
144
  msgstr "Portada y sitio son consistentes"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
  msgstr "Date cuenta de que es tu responsabilidad pasar las cabeceras HTTP a PHP. Por favor, contacta con tu proveedor de alojamiento para obtener soporte sobre esto."
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Aceptar idioma"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Valor de cabecera"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Nombre de cabecera"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "Cabecera HTTP"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "Nombre del filtro WordPress"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Nombre del filtro"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Valor de la cookie"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Nombre de la cookie"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "URL de destino cuando no coincide"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "URL de destino cuando coincide"
193
 
@@ -199,31 +247,31 @@ msgstr "vaciando tu caché."
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr "URL y cabecera HTTP"
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr "URL y filtro personalizado"
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL y cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr "404 borrado"
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr "Sin modificar /index.php?rest_route=/"
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "REST API"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
229
 
@@ -255,11 +303,11 @@ msgstr "{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Est
255
  msgid "None of the suggestions helped"
256
  msgstr "Ninguna de las sugerencias ha ayudado"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "No se puede cargar Redirection ☹️"
265
 
@@ -296,75 +344,75 @@ msgstr "La REST API de tu WordPress está desactivada. Necesitarás activarla pa
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr "Error de agente de usuario"
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Agente de usuario desconocido"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Dispositivo"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Sistema operativo"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Navegador"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr "Motor"
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "Agente de usuario"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr "Agente"
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "Sin registro de IP"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Registro completo de IP"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Anonimizar IP (enmascarar la última parte)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Monitorizar cambios de %(type)s"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "Registro de IP"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(seleccionar el nivel de registro de IP)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr "Información de geolocalización"
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr "Información de agente"
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "Filtrar por IP"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "Procedencia / Agente de usuario"
370
 
@@ -372,7 +420,8 @@ msgstr "Procedencia / Agente de usuario"
372
  msgid "Geo IP Error"
373
  msgstr "Error de geolocalización de IP"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr "Algo ha ido mal obteniendo esta información"
378
 
@@ -405,7 +454,8 @@ msgstr "Zona horaria"
405
  msgid "Geo Location"
406
  msgstr "Geolocalización"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr "Papelera"
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
419
 
@@ -425,63 +475,63 @@ msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "La documentación completa de Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}."
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr "Si quieres enviar información y no quieres que se incluya en un repositorio público, envíala directamente por {{email}}correo electrónico{{/email}} - ¡incluye toda la información que puedas!"
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr "No cachear nunca"
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "Una hora"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr "Redireccionar caché"
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "¿Estás seguro de querer importar de %s?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Importadores de plugins"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "total = "
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "Importar de %s"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr "Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Redirection no está instalado correctamente"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
487
 
@@ -489,71 +539,71 @@ msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, ac
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr "\"Viejos slugs\" por defecto de WordPress"
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr "<code>Redirectioni10n</code> no está definido. Esto normalmente significa que otro plugin está impidiendo que cargue Redirection. Por favor, desactiva todos los plugins e inténtalo de nuevo."
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr "Si no funciona el botón mágico entonces deberías leer el error y ver si puedes arreglarlo manualmente, o sino seguir la sección 'Necesito ayuda' de abajo."
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr "⚡️ Arreglo mágico ⚡️"
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "Estado del plugin"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr "Personalizado"
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr "Móvil"
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "Lectores de feeds"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr "Bibliotecas"
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr "Monitorizar el cambio de URL"
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr "Guardar los cambios de este grupo"
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr "Por ejemplo \"/amp\""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "Supervisar URL"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "Borrar 404s"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "Borra todos los registros de este 404"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "Borra todo de la IP %s"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr "Borra todo lo que tenga \"%s\""
559
 
@@ -561,23 +611,23 @@ msgstr "Borra todo lo que tenga \"%s\""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr "Si estás usando un plugin o servicio (CloudFlare, OVH, etc.) de caché de página entonces también puedes probar a vaciar la caché."
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "No ha sido posible cargar Redirection"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "No fue posible crear el grupo"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "Fallo al reparar las tablas de la base de datos"
583
 
@@ -653,19 +703,19 @@ msgstr "Tu servidor devolvió un error de 403 Prohibido, que podría indicar que
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "Cargando, por favor espera…"
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr "{{strong}}formato de archivo CSV{{/strong}}: {{code}}URL de origen, URL de destino{{/code}} - y puede añadirse opcionalmente {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 para no, 1 para sí)."
671
 
@@ -681,7 +731,7 @@ msgstr "Si eso no ayuda abre la consola de errores de tu navegador y crea un {{l
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr "Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr "Crear aviso de problema"
687
 
@@ -693,135 +743,135 @@ msgstr "Correo electrónico"
693
  msgid "Important details"
694
  msgstr "Detalles importantes"
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "¿Necesitas ayuda?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr "Por favor, date cuenta de que todo soporte se ofrece sobre la base del tiempo disponible y no está garantizado. No ofrezco soporte de pago."
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr "Pos"
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 - Desaparecido"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Posición"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr "Se usa para generar automáticamente una URL si no se ofrece una URL. Utiliza las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para insertar un ID único insertado"
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Módulo Apache"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Importar a un grupo"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Importa un archivo CSV, .htaccess o JSON."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Añadir archivo"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "Archivo seleccionado"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Importando"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Importación finalizada"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Total de redirecciones importadas:"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "Aceptar"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Cerrar"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Exportar"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Todo"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "Redirecciones WordPress"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Redirecciones Apache"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Redirecciones Nginx"
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr ".htaccess de Apache"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr "Reglas de rewrite de Nginx"
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr "JSON de Redirection"
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr "Ver"
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Importar/Exportar"
827
 
@@ -837,113 +887,113 @@ msgstr "Errores 404"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr "Me gustaría dar algo más de apoyo."
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Apoyar 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr "Redirección guardada"
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr "Registro borrado"
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Ajustes guardados"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Grupo guardado"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
868
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
869
 
870
- #: redirection-strings.php:296
871
  msgid "pass"
872
  msgstr "pass"
873
 
874
- #: redirection-strings.php:262
875
  msgid "All groups"
876
  msgstr "Todos los grupos"
877
 
878
- #: redirection-strings.php:232
879
  msgid "301 - Moved Permanently"
880
  msgstr "301 - Movido permanentemente"
881
 
882
- #: redirection-strings.php:233
883
  msgid "302 - Found"
884
  msgstr "302 - Encontrado"
885
 
886
- #: redirection-strings.php:234
887
  msgid "307 - Temporary Redirect"
888
  msgstr "307 - Redirección temporal"
889
 
890
- #: redirection-strings.php:235
891
  msgid "308 - Permanent Redirect"
892
  msgstr "308 - Redirección permanente"
893
 
894
- #: redirection-strings.php:236
895
  msgid "401 - Unauthorized"
896
  msgstr "401 - No autorizado"
897
 
898
- #: redirection-strings.php:237
899
  msgid "404 - Not Found"
900
  msgstr "404 - No encontrado"
901
 
902
- #: redirection-strings.php:239
903
  msgid "Title"
904
  msgstr "Título"
905
 
906
- #: redirection-strings.php:242
907
  msgid "When matched"
908
  msgstr "Cuando coincide"
909
 
910
- #: redirection-strings.php:243
911
  msgid "with HTTP code"
912
  msgstr "con el código HTTP"
913
 
914
- #: redirection-strings.php:252
915
  msgid "Show advanced options"
916
  msgstr "Mostrar opciones avanzadas"
917
 
918
- #: redirection-strings.php:212
919
  msgid "Matched Target"
920
  msgstr "Objetivo coincidente"
921
 
922
- #: redirection-strings.php:214
923
  msgid "Unmatched Target"
924
  msgstr "Objetivo no coincidente"
925
 
926
- #: redirection-strings.php:206 redirection-strings.php:207
927
  msgid "Saving..."
928
  msgstr "Guardando…"
929
 
930
- #: redirection-strings.php:145
931
  msgid "View notice"
932
  msgstr "Ver aviso"
933
 
934
- #: models/redirect.php:524
935
  msgid "Invalid source URL"
936
  msgstr "URL de origen no válida"
937
 
938
- #: models/redirect.php:456
939
  msgid "Invalid redirect action"
940
  msgstr "Acción de redirección no válida"
941
 
942
- #: models/redirect.php:450
943
  msgid "Invalid redirect matcher"
944
  msgstr "Coincidencia de redirección no válida"
945
 
946
- #: models/redirect.php:185
947
  msgid "Unable to add new redirect"
948
  msgstr "No ha sido posible añadir la nueva redirección"
949
 
@@ -959,129 +1009,129 @@ msgstr "Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un pro
959
  msgid "Log entries (%d max)"
960
  msgstr "Entradas del registro (máximo %d)"
961
 
962
- #: redirection-strings.php:334
963
  msgid "Search by IP"
964
  msgstr "Buscar por IP"
965
 
966
- #: redirection-strings.php:329
967
  msgid "Select bulk action"
968
  msgstr "Elegir acción en lote"
969
 
970
- #: redirection-strings.php:330
971
  msgid "Bulk Actions"
972
  msgstr "Acciones en lote"
973
 
974
- #: redirection-strings.php:331
975
  msgid "Apply"
976
  msgstr "Aplicar"
977
 
978
- #: redirection-strings.php:322
979
  msgid "First page"
980
  msgstr "Primera página"
981
 
982
- #: redirection-strings.php:323
983
  msgid "Prev page"
984
  msgstr "Página anterior"
985
 
986
- #: redirection-strings.php:324
987
  msgid "Current Page"
988
  msgstr "Página actual"
989
 
990
- #: redirection-strings.php:325
991
  msgid "of %(page)s"
992
  msgstr "de %(page)s"
993
 
994
- #: redirection-strings.php:326
995
  msgid "Next page"
996
  msgstr "Página siguiente"
997
 
998
- #: redirection-strings.php:327
999
  msgid "Last page"
1000
  msgstr "Última página"
1001
 
1002
- #: redirection-strings.php:328
1003
  msgid "%s item"
1004
  msgid_plural "%s items"
1005
  msgstr[0] "%s elemento"
1006
  msgstr[1] "%s elementos"
1007
 
1008
- #: redirection-strings.php:321
1009
  msgid "Select All"
1010
  msgstr "Elegir todos"
1011
 
1012
- #: redirection-strings.php:333
1013
  msgid "Sorry, something went wrong loading the data - please try again"
1014
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
1015
 
1016
- #: redirection-strings.php:332
1017
  msgid "No results"
1018
  msgstr "No hay resultados"
1019
 
1020
- #: redirection-strings.php:111
1021
  msgid "Delete the logs - are you sure?"
1022
  msgstr "Borrar los registros - ¿estás seguro?"
1023
 
1024
- #: redirection-strings.php:112
1025
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1026
  msgstr "Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."
1027
 
1028
- #: redirection-strings.php:113
1029
  msgid "Yes! Delete the logs"
1030
  msgstr "¡Sí! Borra los registros"
1031
 
1032
- #: redirection-strings.php:114
1033
  msgid "No! Don't delete the logs"
1034
  msgstr "¡No! No borres los registros"
1035
 
1036
- #: redirection-strings.php:312
1037
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1038
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
1039
 
1040
- #: redirection-strings.php:311 redirection-strings.php:313
1041
  msgid "Newsletter"
1042
  msgstr "Boletín"
1043
 
1044
- #: redirection-strings.php:314
1045
  msgid "Want to keep up to date with changes to Redirection?"
1046
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
1047
 
1048
- #: redirection-strings.php:315
1049
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1050
  msgstr "Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."
1051
 
1052
- #: redirection-strings.php:316
1053
  msgid "Your email address:"
1054
  msgstr "Tu dirección de correo electrónico:"
1055
 
1056
- #: redirection-strings.php:153
1057
  msgid "You've supported this plugin - thank you!"
1058
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
1059
 
1060
- #: redirection-strings.php:156
1061
  msgid "You get useful software and I get to carry on making it better."
1062
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
1063
 
1064
- #: redirection-strings.php:164 redirection-strings.php:169
1065
  msgid "Forever"
1066
  msgstr "Siempre"
1067
 
1068
- #: redirection-strings.php:146
1069
  msgid "Delete the plugin - are you sure?"
1070
  msgstr "Borrar el plugin - ¿estás seguro?"
1071
 
1072
- #: redirection-strings.php:147
1073
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1074
  msgstr "Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "
1075
 
1076
- #: redirection-strings.php:148
1077
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1078
  msgstr "Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."
1079
 
1080
- #: redirection-strings.php:149
1081
  msgid "Yes! Delete the plugin"
1082
  msgstr "¡Sí! Borrar el plugin"
1083
 
1084
- #: redirection-strings.php:150
1085
  msgid "No! Don't delete the plugin"
1086
  msgstr "¡No! No borrar el plugin"
1087
 
@@ -1093,7 +1143,7 @@ msgstr "John Godley"
1093
  msgid "Manage all your 301 redirects and monitor 404 errors"
1094
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
1095
 
1096
- #: redirection-strings.php:155
1097
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1098
  msgstr "Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "
1099
 
@@ -1101,91 +1151,91 @@ msgstr "Redirection se puede usar gratis - ¡La vida es maravillosa y encantador
1101
  msgid "Redirection Support"
1102
  msgstr "Soporte de Redirection"
1103
 
1104
- #: redirection-strings.php:63 redirection-strings.php:144
1105
  msgid "Support"
1106
  msgstr "Soporte"
1107
 
1108
- #: redirection-strings.php:141
1109
  msgid "404s"
1110
  msgstr "404s"
1111
 
1112
- #: redirection-strings.php:140
1113
  msgid "Log"
1114
- msgstr "Log"
1115
 
1116
- #: redirection-strings.php:151
1117
  msgid "Delete Redirection"
1118
  msgstr "Borrar Redirection"
1119
 
1120
- #: redirection-strings.php:81
1121
  msgid "Upload"
1122
  msgstr "Subir"
1123
 
1124
- #: redirection-strings.php:92
1125
  msgid "Import"
1126
  msgstr "Importar"
1127
 
1128
- #: redirection-strings.php:205
1129
  msgid "Update"
1130
  msgstr "Actualizar"
1131
 
1132
- #: redirection-strings.php:194
1133
  msgid "Auto-generate URL"
1134
  msgstr "Auto generar URL"
1135
 
1136
- #: redirection-strings.php:193
1137
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1138
  msgstr "Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"
1139
 
1140
- #: redirection-strings.php:192
1141
  msgid "RSS Token"
1142
  msgstr "Token RSS"
1143
 
1144
- #: redirection-strings.php:186
1145
  msgid "404 Logs"
1146
  msgstr "Registros 404"
1147
 
1148
- #: redirection-strings.php:185 redirection-strings.php:187
1149
  msgid "(time to keep logs for)"
1150
  msgstr "(tiempo que se mantendrán los registros)"
1151
 
1152
- #: redirection-strings.php:184
1153
  msgid "Redirect Logs"
1154
  msgstr "Registros de redirecciones"
1155
 
1156
- #: redirection-strings.php:183
1157
  msgid "I'm a nice person and I have helped support the author of this plugin"
1158
  msgstr "Soy una buena persona y he apoyado al autor de este plugin"
1159
 
1160
- #: redirection-strings.php:158
1161
  msgid "Plugin Support"
1162
  msgstr "Soporte del plugin"
1163
 
1164
- #: redirection-strings.php:62 redirection-strings.php:143
1165
  msgid "Options"
1166
  msgstr "Opciones"
1167
 
1168
- #: redirection-strings.php:163
1169
  msgid "Two months"
1170
  msgstr "Dos meses"
1171
 
1172
- #: redirection-strings.php:162
1173
  msgid "A month"
1174
  msgstr "Un mes"
1175
 
1176
- #: redirection-strings.php:161 redirection-strings.php:168
1177
  msgid "A week"
1178
  msgstr "Una semana"
1179
 
1180
- #: redirection-strings.php:160 redirection-strings.php:167
1181
  msgid "A day"
1182
  msgstr "Un dia"
1183
 
1184
- #: redirection-strings.php:159
1185
  msgid "No logs"
1186
  msgstr "No hay logs"
1187
 
1188
- #: redirection-strings.php:110
1189
  msgid "Delete All"
1190
  msgstr "Borrar todo"
1191
 
@@ -1197,37 +1247,37 @@ msgstr "Utiliza grupos para organizar tus redirecciones. Los grupos se asignan a
1197
  msgid "Add Group"
1198
  msgstr "Añadir grupo"
1199
 
1200
- #: redirection-strings.php:335
1201
  msgid "Search"
1202
  msgstr "Buscar"
1203
 
1204
- #: redirection-strings.php:58 redirection-strings.php:139
1205
  msgid "Groups"
1206
  msgstr "Grupos"
1207
 
1208
  #: redirection-strings.php:14 redirection-strings.php:55
1209
- #: redirection-strings.php:246
1210
  msgid "Save"
1211
  msgstr "Guardar"
1212
 
1213
- #: redirection-strings.php:244
1214
  msgid "Group"
1215
  msgstr "Grupo"
1216
 
1217
- #: redirection-strings.php:241
1218
  msgid "Match"
1219
  msgstr "Coincidencia"
1220
 
1221
- #: redirection-strings.php:263
1222
  msgid "Add new redirection"
1223
  msgstr "Añadir nueva redirección"
1224
 
1225
- #: redirection-strings.php:56 redirection-strings.php:82
1226
- #: redirection-strings.php:250
1227
  msgid "Cancel"
1228
  msgstr "Cancelar"
1229
 
1230
- #: redirection-strings.php:106
1231
  msgid "Download"
1232
  msgstr "Descargar"
1233
 
@@ -1239,45 +1289,45 @@ msgstr "Redirection"
1239
  msgid "Settings"
1240
  msgstr "Ajustes"
1241
 
1242
- #: redirection-strings.php:231
1243
  msgid "Do nothing"
1244
  msgstr "No hacer nada"
1245
 
1246
- #: redirection-strings.php:230
1247
  msgid "Error (404)"
1248
  msgstr "Error (404)"
1249
 
1250
- #: redirection-strings.php:229
1251
  msgid "Pass-through"
1252
  msgstr "Pasar directo"
1253
 
1254
- #: redirection-strings.php:228
1255
  msgid "Redirect to random post"
1256
  msgstr "Redirigir a entrada aleatoria"
1257
 
1258
- #: redirection-strings.php:227
1259
  msgid "Redirect to URL"
1260
  msgstr "Redirigir a URL"
1261
 
1262
- #: models/redirect.php:514
1263
  msgid "Invalid group when creating redirect"
1264
  msgstr "Grupo no válido a la hora de crear la redirección"
1265
 
1266
- #: redirection-strings.php:119 redirection-strings.php:128
1267
  msgid "IP"
1268
  msgstr "IP"
1269
 
1270
- #: redirection-strings.php:117 redirection-strings.php:126
1271
- #: redirection-strings.php:247
1272
  msgid "Source URL"
1273
- msgstr "URL origen"
1274
 
1275
- #: redirection-strings.php:116 redirection-strings.php:125
1276
  msgid "Date"
1277
  msgstr "Fecha"
1278
 
1279
- #: redirection-strings.php:130 redirection-strings.php:134
1280
- #: redirection-strings.php:264
1281
  msgid "Add Redirect"
1282
  msgstr "Añadir redirección"
1283
 
@@ -1293,7 +1343,7 @@ msgstr "Ver redirecciones"
1293
  msgid "Module"
1294
  msgstr "Módulo"
1295
 
1296
- #: redirection-strings.php:39 redirection-strings.php:138
1297
  msgid "Redirects"
1298
  msgstr "Redirecciones"
1299
 
@@ -1302,49 +1352,49 @@ msgstr "Redirecciones"
1302
  msgid "Name"
1303
  msgstr "Nombre"
1304
 
1305
- #: redirection-strings.php:320
1306
  msgid "Filter"
1307
  msgstr "Filtro"
1308
 
1309
- #: redirection-strings.php:261
1310
  msgid "Reset hits"
1311
  msgstr "Restablecer aciertos"
1312
 
1313
  #: redirection-strings.php:42 redirection-strings.php:52
1314
- #: redirection-strings.php:259 redirection-strings.php:295
1315
  msgid "Enable"
1316
- msgstr "Habilitar"
1317
 
1318
  #: redirection-strings.php:43 redirection-strings.php:51
1319
- #: redirection-strings.php:260 redirection-strings.php:294
1320
  msgid "Disable"
1321
  msgstr "Desactivar"
1322
 
1323
  #: redirection-strings.php:41 redirection-strings.php:49
1324
- #: redirection-strings.php:120 redirection-strings.php:121
1325
- #: redirection-strings.php:129 redirection-strings.php:133
1326
- #: redirection-strings.php:152 redirection-strings.php:258
1327
- #: redirection-strings.php:293
1328
  msgid "Delete"
1329
  msgstr "Eliminar"
1330
 
1331
- #: redirection-strings.php:48 redirection-strings.php:292
1332
  msgid "Edit"
1333
  msgstr "Editar"
1334
 
1335
- #: redirection-strings.php:257
1336
  msgid "Last Access"
1337
  msgstr "Último acceso"
1338
 
1339
- #: redirection-strings.php:256
1340
  msgid "Hits"
1341
  msgstr "Hits"
1342
 
1343
- #: redirection-strings.php:254 redirection-strings.php:308
1344
  msgid "URL"
1345
  msgstr "URL"
1346
 
1347
- #: redirection-strings.php:253
1348
  msgid "Type"
1349
  msgstr "Tipo"
1350
 
@@ -1356,44 +1406,44 @@ msgstr "Entradas modificadas"
1356
  msgid "Redirections"
1357
  msgstr "Redirecciones"
1358
 
1359
- #: redirection-strings.php:265
1360
  msgid "User Agent"
1361
  msgstr "Agente usuario HTTP"
1362
 
1363
- #: matches/user-agent.php:10 redirection-strings.php:222
1364
  msgid "URL and user agent"
1365
  msgstr "URL y cliente de usuario (user agent)"
1366
 
1367
- #: redirection-strings.php:216
1368
  msgid "Target URL"
1369
- msgstr "URL destino"
1370
 
1371
- #: matches/url.php:7 redirection-strings.php:218
1372
  msgid "URL only"
1373
  msgstr "Sólo URL"
1374
 
1375
- #: redirection-strings.php:249 redirection-strings.php:271
1376
- #: redirection-strings.php:275 redirection-strings.php:283
1377
- #: redirection-strings.php:287
1378
  msgid "Regex"
1379
  msgstr "Expresión regular"
1380
 
1381
- #: redirection-strings.php:285
1382
  msgid "Referrer"
1383
  msgstr "Referente"
1384
 
1385
- #: matches/referrer.php:10 redirection-strings.php:221
1386
  msgid "URL and referrer"
1387
  msgstr "URL y referente"
1388
 
1389
- #: redirection-strings.php:210
1390
  msgid "Logged Out"
1391
  msgstr "Desconectado"
1392
 
1393
- #: redirection-strings.php:208
1394
  msgid "Logged In"
1395
  msgstr "Conectado"
1396
 
1397
- #: matches/login.php:8 redirection-strings.php:219
1398
  msgid "URL and login status"
1399
  msgstr "Estado de URL y conexión"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-24 05:19:37+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr "Problema"
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr "Bueno"
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
+ msgstr "Comprobar"
25
+
26
+ #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr "Comprobar la redirección"
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr "Comprobar la redirección para: {{code}}%s{{/code}}"
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr "¿Qué significa esto?"
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr "No uso la redirección"
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr "Usando la redirección"
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr "Encontrado"
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr "{{code}}%(status)d{{/code}} a {{code}}%(url)s{{/code}}"
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr "Esperado"
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr "Error"
61
+
62
+ #: redirection-strings.php:322
63
  msgid "Enter full URL, including http:// or https://"
64
  msgstr "Introduce la URL completa, incluyendo http:// o https://"
65
 
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr "A veces, tu navegador puede almacenar en caché una URL, lo que dificulta saber si está funcionando como se esperaba. Usa esto para verificar una URL para ver cómo está redirigiendo realmente."
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr "Probar redirecciones"
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr "Destino"
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr "La URL no está siendo redirigida por Redirection"
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr "La URL está siendo redirigida por Redirection"
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr "No se han podido cargar los detalles"
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr "Escribe la URL del servidor que comprobar"
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "Servidor"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr "Escribe el valor de perfil o capacidad"
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr "Perfil"
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr "Comparar contra el texto de referencia de este navegador"
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr "Comparar contra el agente usuario de este navegador"
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "La URL relativa desde la que quieres redirigir"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "Descripción opcional - describe la finalidad de esta redirección"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr "La URL de destino a la que quieres redirigir si coincide"
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(beta)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "Forzar HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr "Información de RGPD / Provacidad"
141
 
147
  msgid "Please logout and login again."
148
  msgstr "Cierra sesión y vuelve a entrar, por favor."
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Redirection necesita PHP v%1s y estás usando v%2s - Actualiza tu versión de PHP"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr "URL y perfil/capacidad"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL y servidor"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "Petición de formulario"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "/wp-json/ relativo"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr "Proxy sobre Admin AJAX"
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "/wp-json/ por defecto"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "Portada y sitio son consistentes"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
  msgstr "Date cuenta de que es tu responsabilidad pasar las cabeceras HTTP a PHP. Por favor, contacta con tu proveedor de alojamiento para obtener soporte sobre esto."
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Aceptar idioma"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Valor de cabecera"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Nombre de cabecera"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "Cabecera HTTP"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "Nombre del filtro WordPress"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Nombre del filtro"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Valor de la cookie"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Nombre de la cookie"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "URL de destino cuando no coincide"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "URL de destino cuando coincide"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr "URL y cabecera HTTP"
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr "URL y filtro personalizado"
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL y cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr "404 borrado"
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr "Sin modificar /index.php?rest_route=/"
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "REST API"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr "Ninguna de las sugerencias ha ayudado"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "No se puede cargar Redirection ☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr "Error de agente de usuario"
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Agente de usuario desconocido"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Dispositivo"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Sistema operativo"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Navegador"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr "Motor"
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "Agente de usuario"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr "Agente"
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "Sin registro de IP"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Registro completo de IP"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Anonimizar IP (enmascarar la última parte)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Monitorizar cambios de %(type)s"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "Registro de IP"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(seleccionar el nivel de registro de IP)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr "Información de geolocalización"
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr "Información de agente"
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "Filtrar por IP"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "Procedencia / Agente de usuario"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "Error de geolocalización de IP"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr "Algo ha ido mal obteniendo esta información"
427
 
454
  msgid "Geo Location"
455
  msgstr "Geolocalización"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr "Papelera"
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "La documentación completa de Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}."
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr "Si quieres enviar información y no quieres que se incluya en un repositorio público, envíala directamente por {{email}}correo electrónico{{/email}} - ¡incluye toda la información que puedas!"
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr "No cachear nunca"
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "Una hora"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr "Redireccionar caché"
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "¿Estás seguro de querer importar de %s?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Importadores de plugins"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "total = "
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "Importar de %s"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr "Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Redirection no está instalado correctamente"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr "\"Viejos slugs\" por defecto de WordPress"
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr "<code>Redirectioni10n</code> no está definido. Esto normalmente significa que otro plugin está impidiendo que cargue Redirection. Por favor, desactiva todos los plugins e inténtalo de nuevo."
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr "Si no funciona el botón mágico entonces deberías leer el error y ver si puedes arreglarlo manualmente, o sino seguir la sección 'Necesito ayuda' de abajo."
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr "⚡️ Arreglo mágico ⚡️"
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "Estado del plugin"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr "Personalizado"
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr "Móvil"
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "Lectores de feeds"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr "Bibliotecas"
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr "Monitorizar el cambio de URL"
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr "Guardar los cambios de este grupo"
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr "Por ejemplo \"/amp\""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "Supervisar URL"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "Borrar 404s"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "Borra todos los registros de este 404"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "Borra todo de la IP %s"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr "Borra todo lo que tenga \"%s\""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr "Si estás usando un plugin o servicio (CloudFlare, OVH, etc.) de caché de página entonces también puedes probar a vaciar la caché."
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "No ha sido posible cargar Redirection"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "No fue posible crear el grupo"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "Fallo al reparar las tablas de la base de datos"
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "Cargando, por favor espera…"
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr "{{strong}}formato de archivo CSV{{/strong}}: {{code}}URL de origen, URL de destino{{/code}} - y puede añadirse opcionalmente {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 para no, 1 para sí)."
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr "Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr "Crear aviso de problema"
737
 
743
  msgid "Important details"
744
  msgstr "Detalles importantes"
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "¿Necesitas ayuda?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr "Por favor, date cuenta de que todo soporte se ofrece sobre la base del tiempo disponible y no está garantizado. No ofrezco soporte de pago."
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr "Pos"
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 - Desaparecido"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Posición"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr "Se usa para generar automáticamente una URL si no se ofrece una URL. Utiliza las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para insertar un ID único insertado"
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Módulo Apache"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Importar a un grupo"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Importa un archivo CSV, .htaccess o JSON."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Añadir archivo"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "Archivo seleccionado"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Importando"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Importación finalizada"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Total de redirecciones importadas:"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "Aceptar"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Cerrar"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Exportar"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Todo"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "Redirecciones WordPress"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Redirecciones Apache"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Redirecciones Nginx"
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr ".htaccess de Apache"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr "Reglas de rewrite de Nginx"
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr "JSON de Redirection"
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr "Ver"
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Importar/Exportar"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr "Me gustaría dar algo más de apoyo."
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Apoyar 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr "Redirección guardada"
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr "Registro borrado"
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Ajustes guardados"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Grupo guardado"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
918
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
919
 
920
+ #: redirection-strings.php:309
921
  msgid "pass"
922
  msgstr "pass"
923
 
924
+ #: redirection-strings.php:274
925
  msgid "All groups"
926
  msgstr "Todos los grupos"
927
 
928
+ #: redirection-strings.php:244
929
  msgid "301 - Moved Permanently"
930
  msgstr "301 - Movido permanentemente"
931
 
932
+ #: redirection-strings.php:245
933
  msgid "302 - Found"
934
  msgstr "302 - Encontrado"
935
 
936
+ #: redirection-strings.php:246
937
  msgid "307 - Temporary Redirect"
938
  msgstr "307 - Redirección temporal"
939
 
940
+ #: redirection-strings.php:247
941
  msgid "308 - Permanent Redirect"
942
  msgstr "308 - Redirección permanente"
943
 
944
+ #: redirection-strings.php:248
945
  msgid "401 - Unauthorized"
946
  msgstr "401 - No autorizado"
947
 
948
+ #: redirection-strings.php:249
949
  msgid "404 - Not Found"
950
  msgstr "404 - No encontrado"
951
 
952
+ #: redirection-strings.php:251
953
  msgid "Title"
954
  msgstr "Título"
955
 
956
+ #: redirection-strings.php:254
957
  msgid "When matched"
958
  msgstr "Cuando coincide"
959
 
960
+ #: redirection-strings.php:255
961
  msgid "with HTTP code"
962
  msgstr "con el código HTTP"
963
 
964
+ #: redirection-strings.php:264
965
  msgid "Show advanced options"
966
  msgstr "Mostrar opciones avanzadas"
967
 
968
+ #: redirection-strings.php:224
969
  msgid "Matched Target"
970
  msgstr "Objetivo coincidente"
971
 
972
+ #: redirection-strings.php:226
973
  msgid "Unmatched Target"
974
  msgstr "Objetivo no coincidente"
975
 
976
+ #: redirection-strings.php:218 redirection-strings.php:219
977
  msgid "Saving..."
978
  msgstr "Guardando…"
979
 
980
+ #: redirection-strings.php:157
981
  msgid "View notice"
982
  msgstr "Ver aviso"
983
 
984
+ #: models/redirect.php:526
985
  msgid "Invalid source URL"
986
  msgstr "URL de origen no válida"
987
 
988
+ #: models/redirect.php:458
989
  msgid "Invalid redirect action"
990
  msgstr "Acción de redirección no válida"
991
 
992
+ #: models/redirect.php:452
993
  msgid "Invalid redirect matcher"
994
  msgstr "Coincidencia de redirección no válida"
995
 
996
+ #: models/redirect.php:187
997
  msgid "Unable to add new redirect"
998
  msgstr "No ha sido posible añadir la nueva redirección"
999
 
1009
  msgid "Log entries (%d max)"
1010
  msgstr "Entradas del registro (máximo %d)"
1011
 
1012
+ #: redirection-strings.php:350
1013
  msgid "Search by IP"
1014
  msgstr "Buscar por IP"
1015
 
1016
+ #: redirection-strings.php:345
1017
  msgid "Select bulk action"
1018
  msgstr "Elegir acción en lote"
1019
 
1020
+ #: redirection-strings.php:346
1021
  msgid "Bulk Actions"
1022
  msgstr "Acciones en lote"
1023
 
1024
+ #: redirection-strings.php:347
1025
  msgid "Apply"
1026
  msgstr "Aplicar"
1027
 
1028
+ #: redirection-strings.php:338
1029
  msgid "First page"
1030
  msgstr "Primera página"
1031
 
1032
+ #: redirection-strings.php:339
1033
  msgid "Prev page"
1034
  msgstr "Página anterior"
1035
 
1036
+ #: redirection-strings.php:340
1037
  msgid "Current Page"
1038
  msgstr "Página actual"
1039
 
1040
+ #: redirection-strings.php:341
1041
  msgid "of %(page)s"
1042
  msgstr "de %(page)s"
1043
 
1044
+ #: redirection-strings.php:342
1045
  msgid "Next page"
1046
  msgstr "Página siguiente"
1047
 
1048
+ #: redirection-strings.php:343
1049
  msgid "Last page"
1050
  msgstr "Última página"
1051
 
1052
+ #: redirection-strings.php:344
1053
  msgid "%s item"
1054
  msgid_plural "%s items"
1055
  msgstr[0] "%s elemento"
1056
  msgstr[1] "%s elementos"
1057
 
1058
+ #: redirection-strings.php:337
1059
  msgid "Select All"
1060
  msgstr "Elegir todos"
1061
 
1062
+ #: redirection-strings.php:349
1063
  msgid "Sorry, something went wrong loading the data - please try again"
1064
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
1065
 
1066
+ #: redirection-strings.php:348
1067
  msgid "No results"
1068
  msgstr "No hay resultados"
1069
 
1070
+ #: redirection-strings.php:123
1071
  msgid "Delete the logs - are you sure?"
1072
  msgstr "Borrar los registros - ¿estás seguro?"
1073
 
1074
+ #: redirection-strings.php:124
1075
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1076
  msgstr "Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."
1077
 
1078
+ #: redirection-strings.php:125
1079
  msgid "Yes! Delete the logs"
1080
  msgstr "¡Sí! Borra los registros"
1081
 
1082
+ #: redirection-strings.php:126
1083
  msgid "No! Don't delete the logs"
1084
  msgstr "¡No! No borres los registros"
1085
 
1086
+ #: redirection-strings.php:326
1087
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1088
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
1089
 
1090
+ #: redirection-strings.php:325 redirection-strings.php:327
1091
  msgid "Newsletter"
1092
  msgstr "Boletín"
1093
 
1094
+ #: redirection-strings.php:328
1095
  msgid "Want to keep up to date with changes to Redirection?"
1096
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
1097
 
1098
+ #: redirection-strings.php:329
1099
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1100
  msgstr "Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."
1101
 
1102
+ #: redirection-strings.php:330
1103
  msgid "Your email address:"
1104
  msgstr "Tu dirección de correo electrónico:"
1105
 
1106
+ #: redirection-strings.php:165
1107
  msgid "You've supported this plugin - thank you!"
1108
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
1109
 
1110
+ #: redirection-strings.php:168
1111
  msgid "You get useful software and I get to carry on making it better."
1112
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
1113
 
1114
+ #: redirection-strings.php:176 redirection-strings.php:181
1115
  msgid "Forever"
1116
  msgstr "Siempre"
1117
 
1118
+ #: redirection-strings.php:158
1119
  msgid "Delete the plugin - are you sure?"
1120
  msgstr "Borrar el plugin - ¿estás seguro?"
1121
 
1122
+ #: redirection-strings.php:159
1123
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1124
  msgstr "Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "
1125
 
1126
+ #: redirection-strings.php:160
1127
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1128
  msgstr "Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."
1129
 
1130
+ #: redirection-strings.php:161
1131
  msgid "Yes! Delete the plugin"
1132
  msgstr "¡Sí! Borrar el plugin"
1133
 
1134
+ #: redirection-strings.php:162
1135
  msgid "No! Don't delete the plugin"
1136
  msgstr "¡No! No borrar el plugin"
1137
 
1143
  msgid "Manage all your 301 redirects and monitor 404 errors"
1144
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
1145
 
1146
+ #: redirection-strings.php:167
1147
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1148
  msgstr "Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "
1149
 
1151
  msgid "Redirection Support"
1152
  msgstr "Soporte de Redirection"
1153
 
1154
+ #: redirection-strings.php:63 redirection-strings.php:156
1155
  msgid "Support"
1156
  msgstr "Soporte"
1157
 
1158
+ #: redirection-strings.php:153
1159
  msgid "404s"
1160
  msgstr "404s"
1161
 
1162
+ #: redirection-strings.php:152
1163
  msgid "Log"
1164
+ msgstr "Registro"
1165
 
1166
+ #: redirection-strings.php:163
1167
  msgid "Delete Redirection"
1168
  msgstr "Borrar Redirection"
1169
 
1170
+ #: redirection-strings.php:93
1171
  msgid "Upload"
1172
  msgstr "Subir"
1173
 
1174
+ #: redirection-strings.php:104
1175
  msgid "Import"
1176
  msgstr "Importar"
1177
 
1178
+ #: redirection-strings.php:217
1179
  msgid "Update"
1180
  msgstr "Actualizar"
1181
 
1182
+ #: redirection-strings.php:206
1183
  msgid "Auto-generate URL"
1184
  msgstr "Auto generar URL"
1185
 
1186
+ #: redirection-strings.php:205
1187
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1188
  msgstr "Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"
1189
 
1190
+ #: redirection-strings.php:204
1191
  msgid "RSS Token"
1192
  msgstr "Token RSS"
1193
 
1194
+ #: redirection-strings.php:198
1195
  msgid "404 Logs"
1196
  msgstr "Registros 404"
1197
 
1198
+ #: redirection-strings.php:197 redirection-strings.php:199
1199
  msgid "(time to keep logs for)"
1200
  msgstr "(tiempo que se mantendrán los registros)"
1201
 
1202
+ #: redirection-strings.php:196
1203
  msgid "Redirect Logs"
1204
  msgstr "Registros de redirecciones"
1205
 
1206
+ #: redirection-strings.php:195
1207
  msgid "I'm a nice person and I have helped support the author of this plugin"
1208
  msgstr "Soy una buena persona y he apoyado al autor de este plugin"
1209
 
1210
+ #: redirection-strings.php:170
1211
  msgid "Plugin Support"
1212
  msgstr "Soporte del plugin"
1213
 
1214
+ #: redirection-strings.php:62 redirection-strings.php:155
1215
  msgid "Options"
1216
  msgstr "Opciones"
1217
 
1218
+ #: redirection-strings.php:175
1219
  msgid "Two months"
1220
  msgstr "Dos meses"
1221
 
1222
+ #: redirection-strings.php:174
1223
  msgid "A month"
1224
  msgstr "Un mes"
1225
 
1226
+ #: redirection-strings.php:173 redirection-strings.php:180
1227
  msgid "A week"
1228
  msgstr "Una semana"
1229
 
1230
+ #: redirection-strings.php:172 redirection-strings.php:179
1231
  msgid "A day"
1232
  msgstr "Un dia"
1233
 
1234
+ #: redirection-strings.php:171
1235
  msgid "No logs"
1236
  msgstr "No hay logs"
1237
 
1238
+ #: redirection-strings.php:122
1239
  msgid "Delete All"
1240
  msgstr "Borrar todo"
1241
 
1247
  msgid "Add Group"
1248
  msgstr "Añadir grupo"
1249
 
1250
+ #: redirection-strings.php:351
1251
  msgid "Search"
1252
  msgstr "Buscar"
1253
 
1254
+ #: redirection-strings.php:58 redirection-strings.php:151
1255
  msgid "Groups"
1256
  msgstr "Grupos"
1257
 
1258
  #: redirection-strings.php:14 redirection-strings.php:55
1259
+ #: redirection-strings.php:258
1260
  msgid "Save"
1261
  msgstr "Guardar"
1262
 
1263
+ #: redirection-strings.php:256
1264
  msgid "Group"
1265
  msgstr "Grupo"
1266
 
1267
+ #: redirection-strings.php:253
1268
  msgid "Match"
1269
  msgstr "Coincidencia"
1270
 
1271
+ #: redirection-strings.php:275
1272
  msgid "Add new redirection"
1273
  msgstr "Añadir nueva redirección"
1274
 
1275
+ #: redirection-strings.php:56 redirection-strings.php:94
1276
+ #: redirection-strings.php:262
1277
  msgid "Cancel"
1278
  msgstr "Cancelar"
1279
 
1280
+ #: redirection-strings.php:118
1281
  msgid "Download"
1282
  msgstr "Descargar"
1283
 
1289
  msgid "Settings"
1290
  msgstr "Ajustes"
1291
 
1292
+ #: redirection-strings.php:243
1293
  msgid "Do nothing"
1294
  msgstr "No hacer nada"
1295
 
1296
+ #: redirection-strings.php:242
1297
  msgid "Error (404)"
1298
  msgstr "Error (404)"
1299
 
1300
+ #: redirection-strings.php:241
1301
  msgid "Pass-through"
1302
  msgstr "Pasar directo"
1303
 
1304
+ #: redirection-strings.php:240
1305
  msgid "Redirect to random post"
1306
  msgstr "Redirigir a entrada aleatoria"
1307
 
1308
+ #: redirection-strings.php:239
1309
  msgid "Redirect to URL"
1310
  msgstr "Redirigir a URL"
1311
 
1312
+ #: models/redirect.php:516
1313
  msgid "Invalid group when creating redirect"
1314
  msgstr "Grupo no válido a la hora de crear la redirección"
1315
 
1316
+ #: redirection-strings.php:131 redirection-strings.php:140
1317
  msgid "IP"
1318
  msgstr "IP"
1319
 
1320
+ #: redirection-strings.php:129 redirection-strings.php:138
1321
+ #: redirection-strings.php:259
1322
  msgid "Source URL"
1323
+ msgstr "URL de origen"
1324
 
1325
+ #: redirection-strings.php:128 redirection-strings.php:137
1326
  msgid "Date"
1327
  msgstr "Fecha"
1328
 
1329
+ #: redirection-strings.php:142 redirection-strings.php:146
1330
+ #: redirection-strings.php:276
1331
  msgid "Add Redirect"
1332
  msgstr "Añadir redirección"
1333
 
1343
  msgid "Module"
1344
  msgstr "Módulo"
1345
 
1346
+ #: redirection-strings.php:39 redirection-strings.php:150
1347
  msgid "Redirects"
1348
  msgstr "Redirecciones"
1349
 
1352
  msgid "Name"
1353
  msgstr "Nombre"
1354
 
1355
+ #: redirection-strings.php:336
1356
  msgid "Filter"
1357
  msgstr "Filtro"
1358
 
1359
+ #: redirection-strings.php:273
1360
  msgid "Reset hits"
1361
  msgstr "Restablecer aciertos"
1362
 
1363
  #: redirection-strings.php:42 redirection-strings.php:52
1364
+ #: redirection-strings.php:271 redirection-strings.php:308
1365
  msgid "Enable"
1366
+ msgstr "Activar"
1367
 
1368
  #: redirection-strings.php:43 redirection-strings.php:51
1369
+ #: redirection-strings.php:272 redirection-strings.php:306
1370
  msgid "Disable"
1371
  msgstr "Desactivar"
1372
 
1373
  #: redirection-strings.php:41 redirection-strings.php:49
1374
+ #: redirection-strings.php:132 redirection-strings.php:133
1375
+ #: redirection-strings.php:141 redirection-strings.php:145
1376
+ #: redirection-strings.php:164 redirection-strings.php:270
1377
+ #: redirection-strings.php:305
1378
  msgid "Delete"
1379
  msgstr "Eliminar"
1380
 
1381
+ #: redirection-strings.php:48 redirection-strings.php:304
1382
  msgid "Edit"
1383
  msgstr "Editar"
1384
 
1385
+ #: redirection-strings.php:269
1386
  msgid "Last Access"
1387
  msgstr "Último acceso"
1388
 
1389
+ #: redirection-strings.php:268
1390
  msgid "Hits"
1391
  msgstr "Hits"
1392
 
1393
+ #: redirection-strings.php:266 redirection-strings.php:321
1394
  msgid "URL"
1395
  msgstr "URL"
1396
 
1397
+ #: redirection-strings.php:265
1398
  msgid "Type"
1399
  msgstr "Tipo"
1400
 
1406
  msgid "Redirections"
1407
  msgstr "Redirecciones"
1408
 
1409
+ #: redirection-strings.php:277
1410
  msgid "User Agent"
1411
  msgstr "Agente usuario HTTP"
1412
 
1413
+ #: matches/user-agent.php:10 redirection-strings.php:234
1414
  msgid "URL and user agent"
1415
  msgstr "URL y cliente de usuario (user agent)"
1416
 
1417
+ #: redirection-strings.php:228
1418
  msgid "Target URL"
1419
+ msgstr "URL de destino"
1420
 
1421
+ #: matches/url.php:7 redirection-strings.php:230
1422
  msgid "URL only"
1423
  msgstr "Sólo URL"
1424
 
1425
+ #: redirection-strings.php:261 redirection-strings.php:283
1426
+ #: redirection-strings.php:287 redirection-strings.php:295
1427
+ #: redirection-strings.php:299
1428
  msgid "Regex"
1429
  msgstr "Expresión regular"
1430
 
1431
+ #: redirection-strings.php:297
1432
  msgid "Referrer"
1433
  msgstr "Referente"
1434
 
1435
+ #: matches/referrer.php:10 redirection-strings.php:233
1436
  msgid "URL and referrer"
1437
  msgstr "URL y referente"
1438
 
1439
+ #: redirection-strings.php:222
1440
  msgid "Logged Out"
1441
  msgstr "Desconectado"
1442
 
1443
+ #: redirection-strings.php:220
1444
  msgid "Logged In"
1445
  msgstr "Conectado"
1446
 
1447
+ #: matches/login.php:8 redirection-strings.php:231
1448
  msgid "URL and login status"
1449
  msgstr "Estado de URL y conexión"
locale/redirection-fr_FR.mo CHANGED
Binary file
locale/redirection-fr_FR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-09-18 15:28:04+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
15
- msgid "Enter full URL, including http:// or https://"
16
- msgstr "Saisir l’URL complète, avec http:// ou https://"
 
 
 
 
 
 
 
 
17
 
18
  #: redirection-strings.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
- msgstr "Parfois, votre navigateur peut mettre en cache une URL, ce qui rend difficile de savoir si cela fonctionne comme prévu. Utiliser ceci pour vérifier qu’une URL est réellement redirigée."
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr "Testeur de redirection"
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr "Cible"
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr "L’URL n’est pas redirigée avec Redirection."
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr "L’URL est redirigée avec Redirection."
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr "Impossible de charger les détails"
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr "Saisissez l’URL du serveur à comparer avec"
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "Serveur"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr "Saisissez la valeur de rôle ou de capacité"
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr "Rôle"
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr "Correspondance avec ce texte de référence du navigateur"
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr "Correspondance avec cet agent utilisateur de navigateur"
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "L’URL relative que vous voulez rediriger"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "Description facultative - décrire le but de cette redirection"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr "L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(bêta)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "Forcer HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr "RGPD/information de confidentialité"
93
 
@@ -99,31 +147,31 @@ msgstr "Ajouter une nouvelle"
99
  msgid "Please logout and login again."
100
  msgstr "Veuillez vous déconnecter puis vous connecter à nouveau."
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Redirection nécessite PHP v%1s, vous utilisez v%2s - veuillez mettre à jour PHP"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr "URL et rôle/capacité"
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL et serveur"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "Formulaire de demande"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "/wp-json/ relatif"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr "Proxy sur Admin AJAX"
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "/wp-json/ par défaut"
129
 
@@ -143,51 +191,51 @@ msgstr "Les URL du site et de l’accueil sont incohérentes. Veuillez les corri
143
  msgid "Site and home are consistent"
144
  msgstr "Le site et l’accueil sont cohérents"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
- msgstr "Veuillez noter qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour vous aider."
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Accepter la langue"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Valeur de l’en-tête"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Nom de l’en-tête"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "En-tête HTTP"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "Nom de filtre WordPress"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Nom du filtre"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Valeur du cookie"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Nom du cookie"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "URL cible lorsque cela ne correspond pas"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "URL cible lorsque cela correspond"
193
 
@@ -199,31 +247,31 @@ msgstr "vider votre cache."
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr "URL et en-tête HTTP"
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr "URL et filtre personnalisé"
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL et cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr "404 supprimée"
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr "/index.php?rest_route=/ brut"
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "API REST"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
229
 
@@ -255,11 +303,11 @@ msgstr "{{link}}Veuillez temporairement désactiver les autres extensions !{{/l
255
  msgid "None of the suggestions helped"
256
  msgstr "Aucune de ces suggestions n’a aidé"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "Impossible de charger Redirection ☹️"
265
 
@@ -296,75 +344,75 @@ msgstr "Votre API REST WordPress a été désactivée. Vous devez l’activer po
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr "Erreur de l’agent utilisateur"
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Agent utilisateur inconnu"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Appareil"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Système d’exploitation"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Navigateur"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr "Moteur"
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "Agent utilisateur"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr "Agent"
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "Aucune IP journalisée"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Connexion avec IP complète"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Anonymiser l’IP (masquer la dernière partie)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Monitorer les modifications de %(type)s"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "Journalisation d’IP"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(sélectionnez le niveau de journalisation des IP)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr "Informations géographiques"
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr "Informations sur l’agent"
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "Filtrer par IP"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "Référent / Agent utilisateur"
370
 
@@ -372,7 +420,8 @@ msgstr "Référent / Agent utilisateur"
372
  msgid "Geo IP Error"
373
  msgstr "Erreur de l’IP géographique"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr "Un problème est survenu lors de l’obtention de cette information"
378
 
@@ -405,7 +454,8 @@ msgstr "Fuseau horaire"
405
  msgid "Geo Location"
406
  msgstr "Emplacement géographique"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Propulsé par {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Propulsé par {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr "Corbeille"
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr "Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."
419
 
@@ -425,63 +475,63 @@ msgstr "Vous pouvez trouver une documentation complète à propos de l’utilisa
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr "Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr "Jamais de cache"
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "Une heure"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr "Cache de redirection"
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "Confirmez-vous l’importation depuis %s ?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Importeurs d’extensions"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "total = "
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "Importer depuis %s"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr "Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Redirection n’est pas correctement installé"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."
487
 
@@ -489,71 +539,71 @@ msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mett
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr "« Anciens slugs » de WordPress par défaut"
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr "<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr "Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr "⚡️ Correction magique ⚡️"
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "Statut de l’extension"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr "Personnalisé"
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr "Mobile"
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "Lecteurs de flux"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr "Librairies"
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr "Surveiller la modification des URL"
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr "Enregistrer les modifications apportées à ce groupe"
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr "Par exemple « /amp »"
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "URL à surveiller"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "Supprimer les pages 404"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "Supprimer tous les journaux pour cette page 404"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "Tout supprimer depuis l’IP %s"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr "Supprimer toutes les correspondances « %s »"
559
 
@@ -561,23 +611,23 @@ msgstr "Supprimer toutes les correspondances « %s »"
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr "Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "Impossible de charger Redirection"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "Impossible de créer un groupe"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "La réparation des tables de la base de données a échoué."
583
 
@@ -653,19 +703,19 @@ msgstr "Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "Veuillez patienter pendant le chargement…"
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr "{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."
671
 
@@ -681,7 +731,7 @@ msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr "Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr "Créer un rapport"
687
 
@@ -693,135 +743,135 @@ msgstr "E-mail"
693
  msgid "Important details"
694
  msgstr "Informations importantes"
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Besoin d’aide ?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr "Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr "Pos"
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 – Gone"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Position"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr "Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Module Apache"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Importer dans le groupe"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Ajouter un fichier"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "Fichier sélectionné"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Import"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Import terminé"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Total des redirections importées :"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "OK"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Fermer"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Exporter"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Tout"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "Redirections WordPress"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Redirections Apache"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Redirections Nginx"
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr ".htaccess Apache"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr "Règles de réécriture Nginx"
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr "Redirection JSON"
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr "Visualiser"
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Import/export"
827
 
@@ -837,113 +887,113 @@ msgstr "Erreurs 404"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr "Je voudrais soutenir un peu plus."
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Support 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr "Redirection sauvegardée"
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr "Journal supprimé"
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Réglages sauvegardés"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Groupe sauvegardé"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
- msgstr[0] "Êtes-vous sûr•e de vouloir supprimer cet élément ?"
868
- msgstr[1] "Êtes-vous sûr•e de vouloir supprimer ces éléments ?"
869
 
870
- #: redirection-strings.php:296
871
  msgid "pass"
872
  msgstr "Passer"
873
 
874
- #: redirection-strings.php:262
875
  msgid "All groups"
876
  msgstr "Tous les groupes"
877
 
878
- #: redirection-strings.php:232
879
  msgid "301 - Moved Permanently"
880
  msgstr "301 - déplacé de façon permanente"
881
 
882
- #: redirection-strings.php:233
883
  msgid "302 - Found"
884
  msgstr "302 – trouvé"
885
 
886
- #: redirection-strings.php:234
887
  msgid "307 - Temporary Redirect"
888
  msgstr "307 – Redirigé temporairement"
889
 
890
- #: redirection-strings.php:235
891
  msgid "308 - Permanent Redirect"
892
  msgstr "308 – Redirigé de façon permanente"
893
 
894
- #: redirection-strings.php:236
895
  msgid "401 - Unauthorized"
896
  msgstr "401 – Non-autorisé"
897
 
898
- #: redirection-strings.php:237
899
  msgid "404 - Not Found"
900
  msgstr "404 – Introuvable"
901
 
902
- #: redirection-strings.php:239
903
  msgid "Title"
904
  msgstr "Titre"
905
 
906
- #: redirection-strings.php:242
907
  msgid "When matched"
908
  msgstr "Quand cela correspond"
909
 
910
- #: redirection-strings.php:243
911
  msgid "with HTTP code"
912
  msgstr "avec code HTTP"
913
 
914
- #: redirection-strings.php:252
915
  msgid "Show advanced options"
916
  msgstr "Afficher les options avancées"
917
 
918
- #: redirection-strings.php:212
919
  msgid "Matched Target"
920
  msgstr "Cible correspondant"
921
 
922
- #: redirection-strings.php:214
923
  msgid "Unmatched Target"
924
  msgstr "Cible ne correspondant pas"
925
 
926
- #: redirection-strings.php:206 redirection-strings.php:207
927
  msgid "Saving..."
928
  msgstr "Sauvegarde…"
929
 
930
- #: redirection-strings.php:145
931
  msgid "View notice"
932
  msgstr "Voir la notification"
933
 
934
- #: models/redirect.php:524
935
  msgid "Invalid source URL"
936
  msgstr "URL source non-valide"
937
 
938
- #: models/redirect.php:456
939
  msgid "Invalid redirect action"
940
  msgstr "Action de redirection non-valide"
941
 
942
- #: models/redirect.php:450
943
  msgid "Invalid redirect matcher"
944
  msgstr "Correspondance de redirection non-valide"
945
 
946
- #: models/redirect.php:185
947
  msgid "Unable to add new redirect"
948
  msgstr "Incapable de créer une nouvelle redirection"
949
 
@@ -959,129 +1009,129 @@ msgstr "J’essayais de faire une chose et ça a mal tourné. C’est peut-être
959
  msgid "Log entries (%d max)"
960
  msgstr "Entrées du journal (100 max.)"
961
 
962
- #: redirection-strings.php:334
963
  msgid "Search by IP"
964
  msgstr "Rechercher par IP"
965
 
966
- #: redirection-strings.php:329
967
  msgid "Select bulk action"
968
  msgstr "Sélectionner l’action groupée"
969
 
970
- #: redirection-strings.php:330
971
  msgid "Bulk Actions"
972
  msgstr "Actions groupées"
973
 
974
- #: redirection-strings.php:331
975
  msgid "Apply"
976
  msgstr "Appliquer"
977
 
978
- #: redirection-strings.php:322
979
  msgid "First page"
980
  msgstr "Première page"
981
 
982
- #: redirection-strings.php:323
983
  msgid "Prev page"
984
  msgstr "Page précédente"
985
 
986
- #: redirection-strings.php:324
987
  msgid "Current Page"
988
  msgstr "Page courante"
989
 
990
- #: redirection-strings.php:325
991
  msgid "of %(page)s"
992
  msgstr "de %(page)s"
993
 
994
- #: redirection-strings.php:326
995
  msgid "Next page"
996
  msgstr "Page suivante"
997
 
998
- #: redirection-strings.php:327
999
  msgid "Last page"
1000
  msgstr "Dernière page"
1001
 
1002
- #: redirection-strings.php:328
1003
  msgid "%s item"
1004
  msgid_plural "%s items"
1005
  msgstr[0] "%s élément"
1006
  msgstr[1] "%s éléments"
1007
 
1008
- #: redirection-strings.php:321
1009
  msgid "Select All"
1010
  msgstr "Tout sélectionner"
1011
 
1012
- #: redirection-strings.php:333
1013
  msgid "Sorry, something went wrong loading the data - please try again"
1014
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
1015
 
1016
- #: redirection-strings.php:332
1017
  msgid "No results"
1018
  msgstr "Aucun résultat"
1019
 
1020
- #: redirection-strings.php:111
1021
  msgid "Delete the logs - are you sure?"
1022
  msgstr "Confirmez-vous la suppression des journaux ?"
1023
 
1024
- #: redirection-strings.php:112
1025
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1026
  msgstr "Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."
1027
 
1028
- #: redirection-strings.php:113
1029
  msgid "Yes! Delete the logs"
1030
  msgstr "Oui ! Supprimer les journaux"
1031
 
1032
- #: redirection-strings.php:114
1033
  msgid "No! Don't delete the logs"
1034
  msgstr "Non ! Ne pas supprimer les journaux"
1035
 
1036
- #: redirection-strings.php:312
1037
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1038
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
1039
 
1040
- #: redirection-strings.php:311 redirection-strings.php:313
1041
  msgid "Newsletter"
1042
  msgstr "Newsletter"
1043
 
1044
- #: redirection-strings.php:314
1045
  msgid "Want to keep up to date with changes to Redirection?"
1046
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
1047
 
1048
- #: redirection-strings.php:315
1049
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1050
  msgstr "Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."
1051
 
1052
- #: redirection-strings.php:316
1053
  msgid "Your email address:"
1054
  msgstr "Votre adresse de messagerie :"
1055
 
1056
- #: redirection-strings.php:153
1057
  msgid "You've supported this plugin - thank you!"
1058
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
1059
 
1060
- #: redirection-strings.php:156
1061
  msgid "You get useful software and I get to carry on making it better."
1062
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
1063
 
1064
- #: redirection-strings.php:164 redirection-strings.php:169
1065
  msgid "Forever"
1066
  msgstr "Indéfiniment"
1067
 
1068
- #: redirection-strings.php:146
1069
  msgid "Delete the plugin - are you sure?"
1070
- msgstr "Confirmez-vous vouloir supprimer cette extension ?"
1071
 
1072
- #: redirection-strings.php:147
1073
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1074
  msgstr "Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."
1075
 
1076
- #: redirection-strings.php:148
1077
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1078
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
1079
 
1080
- #: redirection-strings.php:149
1081
  msgid "Yes! Delete the plugin"
1082
  msgstr "Oui ! Supprimer l’extension"
1083
 
1084
- #: redirection-strings.php:150
1085
  msgid "No! Don't delete the plugin"
1086
  msgstr "Non ! Ne pas supprimer l’extension"
1087
 
@@ -1093,7 +1143,7 @@ msgstr "John Godley"
1093
  msgid "Manage all your 301 redirects and monitor 404 errors"
1094
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
1095
 
1096
- #: redirection-strings.php:155
1097
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1098
  msgstr "Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."
1099
 
@@ -1101,91 +1151,91 @@ msgstr "Redirection est utilisable gratuitement. La vie est belle ! Cependant,
1101
  msgid "Redirection Support"
1102
  msgstr "Support de Redirection"
1103
 
1104
- #: redirection-strings.php:63 redirection-strings.php:144
1105
  msgid "Support"
1106
  msgstr "Support"
1107
 
1108
- #: redirection-strings.php:141
1109
  msgid "404s"
1110
  msgstr "404"
1111
 
1112
- #: redirection-strings.php:140
1113
  msgid "Log"
1114
  msgstr "Journaux"
1115
 
1116
- #: redirection-strings.php:151
1117
  msgid "Delete Redirection"
1118
  msgstr "Supprimer la redirection"
1119
 
1120
- #: redirection-strings.php:81
1121
  msgid "Upload"
1122
  msgstr "Mettre en ligne"
1123
 
1124
- #: redirection-strings.php:92
1125
  msgid "Import"
1126
  msgstr "Importer"
1127
 
1128
- #: redirection-strings.php:205
1129
  msgid "Update"
1130
  msgstr "Mettre à jour"
1131
 
1132
- #: redirection-strings.php:194
1133
  msgid "Auto-generate URL"
1134
  msgstr "URL auto-générée "
1135
 
1136
- #: redirection-strings.php:193
1137
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1138
  msgstr "Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."
1139
 
1140
- #: redirection-strings.php:192
1141
  msgid "RSS Token"
1142
  msgstr "Jeton RSS "
1143
 
1144
- #: redirection-strings.php:186
1145
  msgid "404 Logs"
1146
  msgstr "Journaux des 404 "
1147
 
1148
- #: redirection-strings.php:185 redirection-strings.php:187
1149
  msgid "(time to keep logs for)"
1150
  msgstr "(durée de conservation des journaux)"
1151
 
1152
- #: redirection-strings.php:184
1153
  msgid "Redirect Logs"
1154
  msgstr "Journaux des redirections "
1155
 
1156
- #: redirection-strings.php:183
1157
  msgid "I'm a nice person and I have helped support the author of this plugin"
1158
  msgstr "Je suis un type bien et j’ai aidé l’auteur de cette extension."
1159
 
1160
- #: redirection-strings.php:158
1161
  msgid "Plugin Support"
1162
  msgstr "Support de l’extension "
1163
 
1164
- #: redirection-strings.php:62 redirection-strings.php:143
1165
  msgid "Options"
1166
  msgstr "Options"
1167
 
1168
- #: redirection-strings.php:163
1169
  msgid "Two months"
1170
  msgstr "Deux mois"
1171
 
1172
- #: redirection-strings.php:162
1173
  msgid "A month"
1174
  msgstr "Un mois"
1175
 
1176
- #: redirection-strings.php:161 redirection-strings.php:168
1177
  msgid "A week"
1178
  msgstr "Une semaine"
1179
 
1180
- #: redirection-strings.php:160 redirection-strings.php:167
1181
  msgid "A day"
1182
  msgstr "Un jour"
1183
 
1184
- #: redirection-strings.php:159
1185
  msgid "No logs"
1186
  msgstr "Aucun journal"
1187
 
1188
- #: redirection-strings.php:110
1189
  msgid "Delete All"
1190
  msgstr "Tout supprimer"
1191
 
@@ -1197,37 +1247,37 @@ msgstr "Utilisez les groupes pour organiser vos redirections. Les groupes sont a
1197
  msgid "Add Group"
1198
  msgstr "Ajouter un groupe"
1199
 
1200
- #: redirection-strings.php:335
1201
  msgid "Search"
1202
  msgstr "Rechercher"
1203
 
1204
- #: redirection-strings.php:58 redirection-strings.php:139
1205
  msgid "Groups"
1206
  msgstr "Groupes"
1207
 
1208
  #: redirection-strings.php:14 redirection-strings.php:55
1209
- #: redirection-strings.php:246
1210
  msgid "Save"
1211
  msgstr "Enregistrer"
1212
 
1213
- #: redirection-strings.php:244
1214
  msgid "Group"
1215
  msgstr "Groupe"
1216
 
1217
- #: redirection-strings.php:241
1218
  msgid "Match"
1219
  msgstr "Correspondant"
1220
 
1221
- #: redirection-strings.php:263
1222
  msgid "Add new redirection"
1223
  msgstr "Ajouter une nouvelle redirection"
1224
 
1225
- #: redirection-strings.php:56 redirection-strings.php:82
1226
- #: redirection-strings.php:250
1227
  msgid "Cancel"
1228
  msgstr "Annuler"
1229
 
1230
- #: redirection-strings.php:106
1231
  msgid "Download"
1232
  msgstr "Télécharger"
1233
 
@@ -1239,45 +1289,45 @@ msgstr "Redirection"
1239
  msgid "Settings"
1240
  msgstr "Réglages"
1241
 
1242
- #: redirection-strings.php:231
1243
  msgid "Do nothing"
1244
  msgstr "Ne rien faire"
1245
 
1246
- #: redirection-strings.php:230
1247
  msgid "Error (404)"
1248
  msgstr "Erreur (404)"
1249
 
1250
- #: redirection-strings.php:229
1251
  msgid "Pass-through"
1252
  msgstr "Outrepasser"
1253
 
1254
- #: redirection-strings.php:228
1255
  msgid "Redirect to random post"
1256
  msgstr "Rediriger vers un article aléatoire"
1257
 
1258
- #: redirection-strings.php:227
1259
  msgid "Redirect to URL"
1260
  msgstr "Redirection vers une URL"
1261
 
1262
- #: models/redirect.php:514
1263
  msgid "Invalid group when creating redirect"
1264
  msgstr "Groupe non valide à la création d’une redirection"
1265
 
1266
- #: redirection-strings.php:119 redirection-strings.php:128
1267
  msgid "IP"
1268
  msgstr "IP"
1269
 
1270
- #: redirection-strings.php:117 redirection-strings.php:126
1271
- #: redirection-strings.php:247
1272
  msgid "Source URL"
1273
  msgstr "URL source"
1274
 
1275
- #: redirection-strings.php:116 redirection-strings.php:125
1276
  msgid "Date"
1277
  msgstr "Date"
1278
 
1279
- #: redirection-strings.php:130 redirection-strings.php:134
1280
- #: redirection-strings.php:264
1281
  msgid "Add Redirect"
1282
  msgstr "Ajouter une redirection"
1283
 
@@ -1293,7 +1343,7 @@ msgstr "Voir les redirections"
1293
  msgid "Module"
1294
  msgstr "Module"
1295
 
1296
- #: redirection-strings.php:39 redirection-strings.php:138
1297
  msgid "Redirects"
1298
  msgstr "Redirections"
1299
 
@@ -1302,49 +1352,49 @@ msgstr "Redirections"
1302
  msgid "Name"
1303
  msgstr "Nom"
1304
 
1305
- #: redirection-strings.php:320
1306
  msgid "Filter"
1307
  msgstr "Filtre"
1308
 
1309
- #: redirection-strings.php:261
1310
  msgid "Reset hits"
1311
  msgstr "Réinitialiser les vues"
1312
 
1313
  #: redirection-strings.php:42 redirection-strings.php:52
1314
- #: redirection-strings.php:259 redirection-strings.php:295
1315
  msgid "Enable"
1316
  msgstr "Activer"
1317
 
1318
  #: redirection-strings.php:43 redirection-strings.php:51
1319
- #: redirection-strings.php:260 redirection-strings.php:294
1320
  msgid "Disable"
1321
  msgstr "Désactiver"
1322
 
1323
  #: redirection-strings.php:41 redirection-strings.php:49
1324
- #: redirection-strings.php:120 redirection-strings.php:121
1325
- #: redirection-strings.php:129 redirection-strings.php:133
1326
- #: redirection-strings.php:152 redirection-strings.php:258
1327
- #: redirection-strings.php:293
1328
  msgid "Delete"
1329
  msgstr "Supprimer"
1330
 
1331
- #: redirection-strings.php:48 redirection-strings.php:292
1332
  msgid "Edit"
1333
  msgstr "Modifier"
1334
 
1335
- #: redirection-strings.php:257
1336
  msgid "Last Access"
1337
  msgstr "Dernier accès"
1338
 
1339
- #: redirection-strings.php:256
1340
  msgid "Hits"
1341
  msgstr "Vues"
1342
 
1343
- #: redirection-strings.php:254 redirection-strings.php:308
1344
  msgid "URL"
1345
  msgstr "URL"
1346
 
1347
- #: redirection-strings.php:253
1348
  msgid "Type"
1349
  msgstr "Type"
1350
 
@@ -1356,44 +1406,44 @@ msgstr "Articles modifiés"
1356
  msgid "Redirections"
1357
  msgstr "Redirections"
1358
 
1359
- #: redirection-strings.php:265
1360
  msgid "User Agent"
1361
  msgstr "Agent utilisateur"
1362
 
1363
- #: matches/user-agent.php:10 redirection-strings.php:222
1364
  msgid "URL and user agent"
1365
  msgstr "URL et agent utilisateur"
1366
 
1367
- #: redirection-strings.php:216
1368
  msgid "Target URL"
1369
  msgstr "URL cible"
1370
 
1371
- #: matches/url.php:7 redirection-strings.php:218
1372
  msgid "URL only"
1373
  msgstr "URL uniquement"
1374
 
1375
- #: redirection-strings.php:249 redirection-strings.php:271
1376
- #: redirection-strings.php:275 redirection-strings.php:283
1377
- #: redirection-strings.php:287
1378
  msgid "Regex"
1379
  msgstr "Regex"
1380
 
1381
- #: redirection-strings.php:285
1382
  msgid "Referrer"
1383
  msgstr "Référant"
1384
 
1385
- #: matches/referrer.php:10 redirection-strings.php:221
1386
  msgid "URL and referrer"
1387
  msgstr "URL et référent"
1388
 
1389
- #: redirection-strings.php:210
1390
  msgid "Logged Out"
1391
  msgstr "Déconnecté"
1392
 
1393
- #: redirection-strings.php:208
1394
  msgid "Logged In"
1395
  msgstr "Connecté"
1396
 
1397
- #: matches/login.php:8 redirection-strings.php:219
1398
  msgid "URL and login status"
1399
  msgstr "URL et état de connexion"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-10-24 16:20:00+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr "Problème"
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr "Bon"
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
+ msgstr "Vérifier"
25
 
26
  #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr "Vérifier la redirection"
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr "Vérifier la redirection pour : {{code}}%s{{/code}}"
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr "Qu’est-ce que cela veut dire ?"
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr "N’utilisant pas Redirection"
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr "Utilisant Redirection"
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr "Trouvé"
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr "{{code}}%(code)d{{/code}} vers {{code}}%(url)s{{/code}}"
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr "Attendu"
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr "Erreur"
61
+
62
+ #: redirection-strings.php:322
63
+ msgid "Enter full URL, including http:// or https://"
64
+ msgstr "Saisissez l’URL complète, avec http:// ou https://"
65
+
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
+ msgstr "Parfois votre navigateur peut mettre en cache une URL, ce qui rend les diagnostics difficiles. Utilisez cet outil pour vérifier qu’une URL est réellement redirigée."
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr "Testeur de redirection"
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr "Cible"
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr "L’URL n’est pas redirigée avec Redirection."
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr "L’URL est redirigée avec Redirection."
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr "Impossible de charger les détails"
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr "Saisissez l’URL du serveur à comparer avec"
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "Serveur"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr "Saisissez la valeur de rôle ou de capacité"
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr "Rôle"
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr "Correspondance avec ce texte de référence du navigateur"
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr "Correspondance avec cet agent utilisateur de navigateur"
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "L’URL relative que vous voulez rediriger"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "Description facultative - décrire le but de cette redirection"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr "L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(bêta)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "Forcer HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr "RGPD/information de confidentialité"
141
 
147
  msgid "Please logout and login again."
148
  msgstr "Veuillez vous déconnecter puis vous connecter à nouveau."
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Redirection nécessite PHP v%1s, vous utilisez v%2s - veuillez mettre à jour PHP"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr "URL et rôle/capacité"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL et serveur"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "Formulaire de demande"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "/wp-json/ relatif"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr "Proxy sur Admin AJAX"
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "/wp-json/ par défaut"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "Le site et l’accueil sont cohérents"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
+ msgstr "Sachez qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour obtenir de l’aide."
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Accepter la langue"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Valeur de l’en-tête"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Nom de l’en-tête"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "En-tête HTTP"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "Nom de filtre WordPress"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Nom du filtre"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Valeur du cookie"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Nom du cookie"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "URL cible lorsque cela ne correspond pas"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "URL cible lorsque cela correspond"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr "URL et en-tête HTTP"
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr "URL et filtre personnalisé"
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL et cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr "404 supprimée"
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr "/index.php?rest_route=/ brut"
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "API REST"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr "Aucune de ces suggestions n’a aidé"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "Impossible de charger Redirection ☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr "Erreur de l’agent utilisateur"
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Agent utilisateur inconnu"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Appareil"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Système d’exploitation"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Navigateur"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr "Moteur"
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "Agent utilisateur"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr "Agent"
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "Aucune IP journalisée"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Connexion avec IP complète"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Anonymiser l’IP (masquer la dernière partie)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Monitorer les modifications de %(type)s"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "Journalisation d’IP"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(sélectionnez le niveau de journalisation des IP)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr "Informations géographiques"
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr "Informations sur l’agent"
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "Filtrer par IP"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "Référent / Agent utilisateur"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "Erreur de l’IP géographique"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr "Un problème est survenu lors de l’obtention de cette information"
427
 
454
  msgid "Geo Location"
455
  msgstr "Emplacement géographique"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Propulsé par {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr "Corbeille"
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr "Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr "Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr "Jamais de cache"
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "Une heure"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr "Cache de redirection"
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "Confirmez-vous l’importation depuis %s ?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Importeurs d’extensions"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "total = "
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "Importer depuis %s"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr "Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Redirection n’est pas correctement installé"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr "« Anciens slugs » de WordPress par défaut"
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr "<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr "Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr "⚡️ Correction magique ⚡️"
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "Statut de l’extension"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr "Personnalisé"
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr "Mobile"
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "Lecteurs de flux"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr "Librairies"
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr "Surveiller la modification des URL"
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr "Enregistrer les modifications apportées à ce groupe"
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr "Par exemple « /amp »"
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "URL à surveiller"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "Supprimer les pages 404"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "Supprimer tous les journaux pour cette page 404"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "Tout supprimer depuis l’IP %s"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr "Supprimer toutes les correspondances « %s »"
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr "Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "Impossible de charger Redirection"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "Impossible de créer un groupe"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "La réparation des tables de la base de données a échoué."
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "Veuillez patienter pendant le chargement…"
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr "{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr "Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr "Créer un rapport"
737
 
743
  msgid "Important details"
744
  msgstr "Informations importantes"
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Besoin d’aide ?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr "Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr "Pos"
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 – Gone"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Position"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr "Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Module Apache"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Importer dans le groupe"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Ajouter un fichier"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "Fichier sélectionné"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Import"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Import terminé"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Total des redirections importées :"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "OK"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Fermer"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Exporter"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Tout"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "Redirections WordPress"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Redirections Apache"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Redirections Nginx"
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr ".htaccess Apache"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr "Règles de réécriture Nginx"
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr "Redirection JSON"
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr "Visualiser"
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Import/export"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr "Je voudrais soutenir un peu plus."
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Support 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr "Redirection sauvegardée"
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr "Journal supprimé"
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Réglages sauvegardés"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Groupe sauvegardé"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
+ msgstr[0] "Confirmez-vous la suppression de cet élément ?"
918
+ msgstr[1] "Confirmez-vous la suppression de ces éléments ?"
919
 
920
+ #: redirection-strings.php:309
921
  msgid "pass"
922
  msgstr "Passer"
923
 
924
+ #: redirection-strings.php:274
925
  msgid "All groups"
926
  msgstr "Tous les groupes"
927
 
928
+ #: redirection-strings.php:244
929
  msgid "301 - Moved Permanently"
930
  msgstr "301 - déplacé de façon permanente"
931
 
932
+ #: redirection-strings.php:245
933
  msgid "302 - Found"
934
  msgstr "302 – trouvé"
935
 
936
+ #: redirection-strings.php:246
937
  msgid "307 - Temporary Redirect"
938
  msgstr "307 – Redirigé temporairement"
939
 
940
+ #: redirection-strings.php:247
941
  msgid "308 - Permanent Redirect"
942
  msgstr "308 – Redirigé de façon permanente"
943
 
944
+ #: redirection-strings.php:248
945
  msgid "401 - Unauthorized"
946
  msgstr "401 – Non-autorisé"
947
 
948
+ #: redirection-strings.php:249
949
  msgid "404 - Not Found"
950
  msgstr "404 – Introuvable"
951
 
952
+ #: redirection-strings.php:251
953
  msgid "Title"
954
  msgstr "Titre"
955
 
956
+ #: redirection-strings.php:254
957
  msgid "When matched"
958
  msgstr "Quand cela correspond"
959
 
960
+ #: redirection-strings.php:255
961
  msgid "with HTTP code"
962
  msgstr "avec code HTTP"
963
 
964
+ #: redirection-strings.php:264
965
  msgid "Show advanced options"
966
  msgstr "Afficher les options avancées"
967
 
968
+ #: redirection-strings.php:224
969
  msgid "Matched Target"
970
  msgstr "Cible correspondant"
971
 
972
+ #: redirection-strings.php:226
973
  msgid "Unmatched Target"
974
  msgstr "Cible ne correspondant pas"
975
 
976
+ #: redirection-strings.php:218 redirection-strings.php:219
977
  msgid "Saving..."
978
  msgstr "Sauvegarde…"
979
 
980
+ #: redirection-strings.php:157
981
  msgid "View notice"
982
  msgstr "Voir la notification"
983
 
984
+ #: models/redirect.php:526
985
  msgid "Invalid source URL"
986
  msgstr "URL source non-valide"
987
 
988
+ #: models/redirect.php:458
989
  msgid "Invalid redirect action"
990
  msgstr "Action de redirection non-valide"
991
 
992
+ #: models/redirect.php:452
993
  msgid "Invalid redirect matcher"
994
  msgstr "Correspondance de redirection non-valide"
995
 
996
+ #: models/redirect.php:187
997
  msgid "Unable to add new redirect"
998
  msgstr "Incapable de créer une nouvelle redirection"
999
 
1009
  msgid "Log entries (%d max)"
1010
  msgstr "Entrées du journal (100 max.)"
1011
 
1012
+ #: redirection-strings.php:350
1013
  msgid "Search by IP"
1014
  msgstr "Rechercher par IP"
1015
 
1016
+ #: redirection-strings.php:345
1017
  msgid "Select bulk action"
1018
  msgstr "Sélectionner l’action groupée"
1019
 
1020
+ #: redirection-strings.php:346
1021
  msgid "Bulk Actions"
1022
  msgstr "Actions groupées"
1023
 
1024
+ #: redirection-strings.php:347
1025
  msgid "Apply"
1026
  msgstr "Appliquer"
1027
 
1028
+ #: redirection-strings.php:338
1029
  msgid "First page"
1030
  msgstr "Première page"
1031
 
1032
+ #: redirection-strings.php:339
1033
  msgid "Prev page"
1034
  msgstr "Page précédente"
1035
 
1036
+ #: redirection-strings.php:340
1037
  msgid "Current Page"
1038
  msgstr "Page courante"
1039
 
1040
+ #: redirection-strings.php:341
1041
  msgid "of %(page)s"
1042
  msgstr "de %(page)s"
1043
 
1044
+ #: redirection-strings.php:342
1045
  msgid "Next page"
1046
  msgstr "Page suivante"
1047
 
1048
+ #: redirection-strings.php:343
1049
  msgid "Last page"
1050
  msgstr "Dernière page"
1051
 
1052
+ #: redirection-strings.php:344
1053
  msgid "%s item"
1054
  msgid_plural "%s items"
1055
  msgstr[0] "%s élément"
1056
  msgstr[1] "%s éléments"
1057
 
1058
+ #: redirection-strings.php:337
1059
  msgid "Select All"
1060
  msgstr "Tout sélectionner"
1061
 
1062
+ #: redirection-strings.php:349
1063
  msgid "Sorry, something went wrong loading the data - please try again"
1064
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
1065
 
1066
+ #: redirection-strings.php:348
1067
  msgid "No results"
1068
  msgstr "Aucun résultat"
1069
 
1070
+ #: redirection-strings.php:123
1071
  msgid "Delete the logs - are you sure?"
1072
  msgstr "Confirmez-vous la suppression des journaux ?"
1073
 
1074
+ #: redirection-strings.php:124
1075
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1076
  msgstr "Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."
1077
 
1078
+ #: redirection-strings.php:125
1079
  msgid "Yes! Delete the logs"
1080
  msgstr "Oui ! Supprimer les journaux"
1081
 
1082
+ #: redirection-strings.php:126
1083
  msgid "No! Don't delete the logs"
1084
  msgstr "Non ! Ne pas supprimer les journaux"
1085
 
1086
+ #: redirection-strings.php:326
1087
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1088
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
1089
 
1090
+ #: redirection-strings.php:325 redirection-strings.php:327
1091
  msgid "Newsletter"
1092
  msgstr "Newsletter"
1093
 
1094
+ #: redirection-strings.php:328
1095
  msgid "Want to keep up to date with changes to Redirection?"
1096
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
1097
 
1098
+ #: redirection-strings.php:329
1099
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1100
  msgstr "Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."
1101
 
1102
+ #: redirection-strings.php:330
1103
  msgid "Your email address:"
1104
  msgstr "Votre adresse de messagerie :"
1105
 
1106
+ #: redirection-strings.php:165
1107
  msgid "You've supported this plugin - thank you!"
1108
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
1109
 
1110
+ #: redirection-strings.php:168
1111
  msgid "You get useful software and I get to carry on making it better."
1112
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
1113
 
1114
+ #: redirection-strings.php:176 redirection-strings.php:181
1115
  msgid "Forever"
1116
  msgstr "Indéfiniment"
1117
 
1118
+ #: redirection-strings.php:158
1119
  msgid "Delete the plugin - are you sure?"
1120
+ msgstr "Confirmez-vous la suppression de cette extension ?"
1121
 
1122
+ #: redirection-strings.php:159
1123
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1124
  msgstr "Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."
1125
 
1126
+ #: redirection-strings.php:160
1127
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1128
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
1129
 
1130
+ #: redirection-strings.php:161
1131
  msgid "Yes! Delete the plugin"
1132
  msgstr "Oui ! Supprimer l’extension"
1133
 
1134
+ #: redirection-strings.php:162
1135
  msgid "No! Don't delete the plugin"
1136
  msgstr "Non ! Ne pas supprimer l’extension"
1137
 
1143
  msgid "Manage all your 301 redirects and monitor 404 errors"
1144
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
1145
 
1146
+ #: redirection-strings.php:167
1147
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1148
  msgstr "Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."
1149
 
1151
  msgid "Redirection Support"
1152
  msgstr "Support de Redirection"
1153
 
1154
+ #: redirection-strings.php:63 redirection-strings.php:156
1155
  msgid "Support"
1156
  msgstr "Support"
1157
 
1158
+ #: redirection-strings.php:153
1159
  msgid "404s"
1160
  msgstr "404"
1161
 
1162
+ #: redirection-strings.php:152
1163
  msgid "Log"
1164
  msgstr "Journaux"
1165
 
1166
+ #: redirection-strings.php:163
1167
  msgid "Delete Redirection"
1168
  msgstr "Supprimer la redirection"
1169
 
1170
+ #: redirection-strings.php:93
1171
  msgid "Upload"
1172
  msgstr "Mettre en ligne"
1173
 
1174
+ #: redirection-strings.php:104
1175
  msgid "Import"
1176
  msgstr "Importer"
1177
 
1178
+ #: redirection-strings.php:217
1179
  msgid "Update"
1180
  msgstr "Mettre à jour"
1181
 
1182
+ #: redirection-strings.php:206
1183
  msgid "Auto-generate URL"
1184
  msgstr "URL auto-générée "
1185
 
1186
+ #: redirection-strings.php:205
1187
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1188
  msgstr "Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."
1189
 
1190
+ #: redirection-strings.php:204
1191
  msgid "RSS Token"
1192
  msgstr "Jeton RSS "
1193
 
1194
+ #: redirection-strings.php:198
1195
  msgid "404 Logs"
1196
  msgstr "Journaux des 404 "
1197
 
1198
+ #: redirection-strings.php:197 redirection-strings.php:199
1199
  msgid "(time to keep logs for)"
1200
  msgstr "(durée de conservation des journaux)"
1201
 
1202
+ #: redirection-strings.php:196
1203
  msgid "Redirect Logs"
1204
  msgstr "Journaux des redirections "
1205
 
1206
+ #: redirection-strings.php:195
1207
  msgid "I'm a nice person and I have helped support the author of this plugin"
1208
  msgstr "Je suis un type bien et j’ai aidé l’auteur de cette extension."
1209
 
1210
+ #: redirection-strings.php:170
1211
  msgid "Plugin Support"
1212
  msgstr "Support de l’extension "
1213
 
1214
+ #: redirection-strings.php:62 redirection-strings.php:155
1215
  msgid "Options"
1216
  msgstr "Options"
1217
 
1218
+ #: redirection-strings.php:175
1219
  msgid "Two months"
1220
  msgstr "Deux mois"
1221
 
1222
+ #: redirection-strings.php:174
1223
  msgid "A month"
1224
  msgstr "Un mois"
1225
 
1226
+ #: redirection-strings.php:173 redirection-strings.php:180
1227
  msgid "A week"
1228
  msgstr "Une semaine"
1229
 
1230
+ #: redirection-strings.php:172 redirection-strings.php:179
1231
  msgid "A day"
1232
  msgstr "Un jour"
1233
 
1234
+ #: redirection-strings.php:171
1235
  msgid "No logs"
1236
  msgstr "Aucun journal"
1237
 
1238
+ #: redirection-strings.php:122
1239
  msgid "Delete All"
1240
  msgstr "Tout supprimer"
1241
 
1247
  msgid "Add Group"
1248
  msgstr "Ajouter un groupe"
1249
 
1250
+ #: redirection-strings.php:351
1251
  msgid "Search"
1252
  msgstr "Rechercher"
1253
 
1254
+ #: redirection-strings.php:58 redirection-strings.php:151
1255
  msgid "Groups"
1256
  msgstr "Groupes"
1257
 
1258
  #: redirection-strings.php:14 redirection-strings.php:55
1259
+ #: redirection-strings.php:258
1260
  msgid "Save"
1261
  msgstr "Enregistrer"
1262
 
1263
+ #: redirection-strings.php:256
1264
  msgid "Group"
1265
  msgstr "Groupe"
1266
 
1267
+ #: redirection-strings.php:253
1268
  msgid "Match"
1269
  msgstr "Correspondant"
1270
 
1271
+ #: redirection-strings.php:275
1272
  msgid "Add new redirection"
1273
  msgstr "Ajouter une nouvelle redirection"
1274
 
1275
+ #: redirection-strings.php:56 redirection-strings.php:94
1276
+ #: redirection-strings.php:262
1277
  msgid "Cancel"
1278
  msgstr "Annuler"
1279
 
1280
+ #: redirection-strings.php:118
1281
  msgid "Download"
1282
  msgstr "Télécharger"
1283
 
1289
  msgid "Settings"
1290
  msgstr "Réglages"
1291
 
1292
+ #: redirection-strings.php:243
1293
  msgid "Do nothing"
1294
  msgstr "Ne rien faire"
1295
 
1296
+ #: redirection-strings.php:242
1297
  msgid "Error (404)"
1298
  msgstr "Erreur (404)"
1299
 
1300
+ #: redirection-strings.php:241
1301
  msgid "Pass-through"
1302
  msgstr "Outrepasser"
1303
 
1304
+ #: redirection-strings.php:240
1305
  msgid "Redirect to random post"
1306
  msgstr "Rediriger vers un article aléatoire"
1307
 
1308
+ #: redirection-strings.php:239
1309
  msgid "Redirect to URL"
1310
  msgstr "Redirection vers une URL"
1311
 
1312
+ #: models/redirect.php:516
1313
  msgid "Invalid group when creating redirect"
1314
  msgstr "Groupe non valide à la création d’une redirection"
1315
 
1316
+ #: redirection-strings.php:131 redirection-strings.php:140
1317
  msgid "IP"
1318
  msgstr "IP"
1319
 
1320
+ #: redirection-strings.php:129 redirection-strings.php:138
1321
+ #: redirection-strings.php:259
1322
  msgid "Source URL"
1323
  msgstr "URL source"
1324
 
1325
+ #: redirection-strings.php:128 redirection-strings.php:137
1326
  msgid "Date"
1327
  msgstr "Date"
1328
 
1329
+ #: redirection-strings.php:142 redirection-strings.php:146
1330
+ #: redirection-strings.php:276
1331
  msgid "Add Redirect"
1332
  msgstr "Ajouter une redirection"
1333
 
1343
  msgid "Module"
1344
  msgstr "Module"
1345
 
1346
+ #: redirection-strings.php:39 redirection-strings.php:150
1347
  msgid "Redirects"
1348
  msgstr "Redirections"
1349
 
1352
  msgid "Name"
1353
  msgstr "Nom"
1354
 
1355
+ #: redirection-strings.php:336
1356
  msgid "Filter"
1357
  msgstr "Filtre"
1358
 
1359
+ #: redirection-strings.php:273
1360
  msgid "Reset hits"
1361
  msgstr "Réinitialiser les vues"
1362
 
1363
  #: redirection-strings.php:42 redirection-strings.php:52
1364
+ #: redirection-strings.php:271 redirection-strings.php:308
1365
  msgid "Enable"
1366
  msgstr "Activer"
1367
 
1368
  #: redirection-strings.php:43 redirection-strings.php:51
1369
+ #: redirection-strings.php:272 redirection-strings.php:306
1370
  msgid "Disable"
1371
  msgstr "Désactiver"
1372
 
1373
  #: redirection-strings.php:41 redirection-strings.php:49
1374
+ #: redirection-strings.php:132 redirection-strings.php:133
1375
+ #: redirection-strings.php:141 redirection-strings.php:145
1376
+ #: redirection-strings.php:164 redirection-strings.php:270
1377
+ #: redirection-strings.php:305
1378
  msgid "Delete"
1379
  msgstr "Supprimer"
1380
 
1381
+ #: redirection-strings.php:48 redirection-strings.php:304
1382
  msgid "Edit"
1383
  msgstr "Modifier"
1384
 
1385
+ #: redirection-strings.php:269
1386
  msgid "Last Access"
1387
  msgstr "Dernier accès"
1388
 
1389
+ #: redirection-strings.php:268
1390
  msgid "Hits"
1391
  msgstr "Vues"
1392
 
1393
+ #: redirection-strings.php:266 redirection-strings.php:321
1394
  msgid "URL"
1395
  msgstr "URL"
1396
 
1397
+ #: redirection-strings.php:265
1398
  msgid "Type"
1399
  msgstr "Type"
1400
 
1406
  msgid "Redirections"
1407
  msgstr "Redirections"
1408
 
1409
+ #: redirection-strings.php:277
1410
  msgid "User Agent"
1411
  msgstr "Agent utilisateur"
1412
 
1413
+ #: matches/user-agent.php:10 redirection-strings.php:234
1414
  msgid "URL and user agent"
1415
  msgstr "URL et agent utilisateur"
1416
 
1417
+ #: redirection-strings.php:228
1418
  msgid "Target URL"
1419
  msgstr "URL cible"
1420
 
1421
+ #: matches/url.php:7 redirection-strings.php:230
1422
  msgid "URL only"
1423
  msgstr "URL uniquement"
1424
 
1425
+ #: redirection-strings.php:261 redirection-strings.php:283
1426
+ #: redirection-strings.php:287 redirection-strings.php:295
1427
+ #: redirection-strings.php:299
1428
  msgid "Regex"
1429
  msgstr "Regex"
1430
 
1431
+ #: redirection-strings.php:297
1432
  msgid "Referrer"
1433
  msgstr "Référant"
1434
 
1435
+ #: matches/referrer.php:10 redirection-strings.php:233
1436
  msgid "URL and referrer"
1437
  msgstr "URL et référent"
1438
 
1439
+ #: redirection-strings.php:222
1440
  msgid "Logged Out"
1441
  msgstr "Déconnecté"
1442
 
1443
+ #: redirection-strings.php:220
1444
  msgid "Logged In"
1445
  msgstr "Connecté"
1446
 
1447
+ #: matches/login.php:8 redirection-strings.php:231
1448
  msgid "URL and login status"
1449
  msgstr "URL et état de connexion"
locale/redirection-it_IT.mo CHANGED
Binary file
locale/redirection-it_IT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-09-15 10:34:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
15
- msgid "Enter full URL, including http:// or https://"
 
 
 
 
 
 
 
 
16
  msgstr ""
17
 
18
  #: redirection-strings.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr ""
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "Server"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr "Ruolo"
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr "Confronta con questo browser user agent"
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "L'URL relativo dal quale vuoi creare una redirezione"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "Descrizione opzionale - descrivi lo scopo di questo reindirizzamento"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(beta)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "Forza un reindirizzamento da HTTP a HTTPS. Verifica che HTTPS funzioni correttamente prima di abilitarlo"
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "Forza HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr ""
93
 
@@ -99,31 +147,31 @@ msgstr "Aggiungi Nuovo"
99
  msgid "Please logout and login again."
100
  msgstr ""
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Redirection richiede PHP v%1s, stai usando v%2s - Aggiornare PHP"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr "URL e ruolo/permesso"
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL e server"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr ""
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr ""
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr ""
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "Default /wp-json/"
129
 
@@ -143,51 +191,51 @@ msgstr ""
143
  msgid "Site and home are consistent"
144
  msgstr ""
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
  msgstr ""
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr ""
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Valore dell'header"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr ""
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "Header HTTP"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr ""
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr ""
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Valore cookie"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Nome cookie"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr ""
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr ""
193
 
@@ -199,31 +247,31 @@ msgstr "cancellazione della tua cache."
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "Se stai utilizzando un sistema di caching come Cloudflare, per favore leggi questo:"
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr ""
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr ""
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL e cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr ""
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr ""
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "REST API"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr ""
229
 
@@ -255,11 +303,11 @@ msgstr ""
255
  msgid "None of the suggestions helped"
256
  msgstr ""
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr ""
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr ""
265
 
@@ -296,75 +344,75 @@ msgstr ""
296
  msgid "https://johngodley.com"
297
  msgstr ""
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr ""
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Useragent sconosciuto"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Periferica"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Sistema operativo"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Browser"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr ""
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "Useragent"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr ""
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr ""
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr ""
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Anonimizza IP (maschera l'ultima parte)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr ""
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr ""
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr ""
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr ""
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr ""
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr ""
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr ""
370
 
@@ -372,7 +420,8 @@ msgstr ""
372
  msgid "Geo IP Error"
373
  msgstr ""
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr ""
378
 
@@ -405,7 +454,8 @@ msgstr "Fuso orario"
405
  msgid "Geo Location"
406
  msgstr ""
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr ""
411
 
@@ -413,7 +463,7 @@ msgstr ""
413
  msgid "Trash"
414
  msgstr ""
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr ""
419
 
@@ -425,63 +475,63 @@ msgstr ""
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr ""
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr ""
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr ""
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr ""
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr ""
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr ""
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr ""
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr ""
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr ""
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr ""
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr ""
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr ""
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr ""
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr ""
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr ""
487
 
@@ -489,71 +539,71 @@ msgstr ""
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr ""
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr ""
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr ""
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr ""
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr ""
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr ""
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr ""
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr ""
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr ""
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr ""
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr ""
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr ""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr ""
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr ""
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr ""
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr ""
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr ""
559
 
@@ -561,23 +611,23 @@ msgstr ""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr ""
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr ""
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr ""
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr ""
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr ""
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr ""
583
 
@@ -653,19 +703,19 @@ msgstr ""
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr ""
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr ""
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr ""
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr ""
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr ""
671
 
@@ -681,7 +731,7 @@ msgstr ""
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr ""
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr ""
687
 
@@ -693,135 +743,135 @@ msgstr ""
693
  msgid "Important details"
694
  msgstr ""
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Hai bisogno di aiuto?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr ""
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr ""
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr ""
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Posizione"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr ""
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Modulo Apache"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Importa nel gruppo"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Importa un file CSV, .htaccess o JSON."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Aggiungi File"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "File selezionato"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Importazione"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Importazione finita"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Totale redirect importati"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "Controlla che il file sia nel formato corretto!"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "OK"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Chiudi"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Esporta"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Tutto"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "Redirezioni di WordPress"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Redirezioni Apache"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Redirezioni nginx"
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr ".htaccess Apache"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr ""
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr ""
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr ""
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr ""
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Importa/Esporta"
827
 
@@ -837,113 +887,113 @@ msgstr "Errori 404"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr ""
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr ""
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Supporta 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr "Redirezione salvata"
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr "Log eliminato"
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Impostazioni salvate"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Gruppo salvato"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
868
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
869
 
870
- #: redirection-strings.php:296
871
  msgid "pass"
872
  msgstr ""
873
 
874
- #: redirection-strings.php:262
875
  msgid "All groups"
876
  msgstr "Tutti i gruppi"
877
 
878
- #: redirection-strings.php:232
879
  msgid "301 - Moved Permanently"
880
  msgstr "301 - Spostato in maniera permanente"
881
 
882
- #: redirection-strings.php:233
883
  msgid "302 - Found"
884
  msgstr "302 - Trovato"
885
 
886
- #: redirection-strings.php:234
887
  msgid "307 - Temporary Redirect"
888
  msgstr "307 - Redirezione temporanea"
889
 
890
- #: redirection-strings.php:235
891
  msgid "308 - Permanent Redirect"
892
  msgstr "308 - Redirezione permanente"
893
 
894
- #: redirection-strings.php:236
895
  msgid "401 - Unauthorized"
896
  msgstr "401 - Non autorizzato"
897
 
898
- #: redirection-strings.php:237
899
  msgid "404 - Not Found"
900
  msgstr "404 - Non trovato"
901
 
902
- #: redirection-strings.php:239
903
  msgid "Title"
904
  msgstr "Titolo"
905
 
906
- #: redirection-strings.php:242
907
  msgid "When matched"
908
  msgstr "Quando corrisponde"
909
 
910
- #: redirection-strings.php:243
911
  msgid "with HTTP code"
912
  msgstr "Con codice HTTP"
913
 
914
- #: redirection-strings.php:252
915
  msgid "Show advanced options"
916
  msgstr "Mostra opzioni avanzate"
917
 
918
- #: redirection-strings.php:212
919
  msgid "Matched Target"
920
  msgstr ""
921
 
922
- #: redirection-strings.php:214
923
  msgid "Unmatched Target"
924
  msgstr ""
925
 
926
- #: redirection-strings.php:206 redirection-strings.php:207
927
  msgid "Saving..."
928
  msgstr "Salvataggio..."
929
 
930
- #: redirection-strings.php:145
931
  msgid "View notice"
932
  msgstr "Vedi la notifica"
933
 
934
- #: models/redirect.php:524
935
  msgid "Invalid source URL"
936
  msgstr "URL di origine non valido"
937
 
938
- #: models/redirect.php:456
939
  msgid "Invalid redirect action"
940
  msgstr "Azione di redirezione non valida"
941
 
942
- #: models/redirect.php:450
943
  msgid "Invalid redirect matcher"
944
  msgstr ""
945
 
946
- #: models/redirect.php:185
947
  msgid "Unable to add new redirect"
948
  msgstr "Impossibile aggiungere una nuova redirezione"
949
 
@@ -961,129 +1011,129 @@ msgstr ""
961
  msgid "Log entries (%d max)"
962
  msgstr ""
963
 
964
- #: redirection-strings.php:334
965
  msgid "Search by IP"
966
  msgstr "Cerca per IP"
967
 
968
- #: redirection-strings.php:329
969
  msgid "Select bulk action"
970
  msgstr "Seleziona l'azione di massa"
971
 
972
- #: redirection-strings.php:330
973
  msgid "Bulk Actions"
974
  msgstr "Azioni di massa"
975
 
976
- #: redirection-strings.php:331
977
  msgid "Apply"
978
  msgstr "Applica"
979
 
980
- #: redirection-strings.php:322
981
  msgid "First page"
982
  msgstr "Prima pagina"
983
 
984
- #: redirection-strings.php:323
985
  msgid "Prev page"
986
  msgstr "Pagina precedente"
987
 
988
- #: redirection-strings.php:324
989
  msgid "Current Page"
990
  msgstr "Pagina corrente"
991
 
992
- #: redirection-strings.php:325
993
  msgid "of %(page)s"
994
  msgstr ""
995
 
996
- #: redirection-strings.php:326
997
  msgid "Next page"
998
  msgstr "Prossima pagina"
999
 
1000
- #: redirection-strings.php:327
1001
  msgid "Last page"
1002
  msgstr "Ultima pagina"
1003
 
1004
- #: redirection-strings.php:328
1005
  msgid "%s item"
1006
  msgid_plural "%s items"
1007
  msgstr[0] "%s oggetto"
1008
  msgstr[1] "%s oggetti"
1009
 
1010
- #: redirection-strings.php:321
1011
  msgid "Select All"
1012
  msgstr "Seleziona tutto"
1013
 
1014
- #: redirection-strings.php:333
1015
  msgid "Sorry, something went wrong loading the data - please try again"
1016
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
1017
 
1018
- #: redirection-strings.php:332
1019
  msgid "No results"
1020
  msgstr "Nessun risultato"
1021
 
1022
- #: redirection-strings.php:111
1023
  msgid "Delete the logs - are you sure?"
1024
  msgstr "Cancella i log - sei sicuro?"
1025
 
1026
- #: redirection-strings.php:112
1027
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1028
  msgstr "Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."
1029
 
1030
- #: redirection-strings.php:113
1031
  msgid "Yes! Delete the logs"
1032
  msgstr "Sì! Cancella i log"
1033
 
1034
- #: redirection-strings.php:114
1035
  msgid "No! Don't delete the logs"
1036
  msgstr "No! Non cancellare i log"
1037
 
1038
- #: redirection-strings.php:312
1039
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1040
  msgstr "Grazie per esserti iscritto! {{a}}Clicca qui{{/a}} se vuoi tornare alla tua sottoscrizione."
1041
 
1042
- #: redirection-strings.php:311 redirection-strings.php:313
1043
  msgid "Newsletter"
1044
  msgstr "Newsletter"
1045
 
1046
- #: redirection-strings.php:314
1047
  msgid "Want to keep up to date with changes to Redirection?"
1048
  msgstr "Vuoi essere informato sulle modifiche a Redirection?"
1049
 
1050
- #: redirection-strings.php:315
1051
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1052
  msgstr "Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."
1053
 
1054
- #: redirection-strings.php:316
1055
  msgid "Your email address:"
1056
  msgstr "Il tuo indirizzo email:"
1057
 
1058
- #: redirection-strings.php:153
1059
  msgid "You've supported this plugin - thank you!"
1060
  msgstr "Hai già supportato questo plugin - grazie!"
1061
 
1062
- #: redirection-strings.php:156
1063
  msgid "You get useful software and I get to carry on making it better."
1064
  msgstr ""
1065
 
1066
- #: redirection-strings.php:164 redirection-strings.php:169
1067
  msgid "Forever"
1068
  msgstr "Per sempre"
1069
 
1070
- #: redirection-strings.php:146
1071
  msgid "Delete the plugin - are you sure?"
1072
  msgstr "Cancella il plugin - sei sicuro?"
1073
 
1074
- #: redirection-strings.php:147
1075
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1076
  msgstr "Cancellando questo plugin verranno rimossi tutti i reindirizzamenti, i log e le impostazioni. Fallo se vuoi rimuovere il plugin o se vuoi reimpostare il plugin."
1077
 
1078
- #: redirection-strings.php:148
1079
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1080
  msgstr "Dopo averle elimininati, i tuoi reindirizzamenti smetteranno di funzionare. Se sembra che continuino a funzionare cancella la cache del tuo browser."
1081
 
1082
- #: redirection-strings.php:149
1083
  msgid "Yes! Delete the plugin"
1084
  msgstr "Sì! Cancella il plugin"
1085
 
1086
- #: redirection-strings.php:150
1087
  msgid "No! Don't delete the plugin"
1088
  msgstr "No! Non cancellare il plugin"
1089
 
@@ -1095,7 +1145,7 @@ msgstr "John Godley"
1095
  msgid "Manage all your 301 redirects and monitor 404 errors"
1096
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
1097
 
1098
- #: redirection-strings.php:155
1099
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1100
  msgstr "Redirection può essere utilizzato gratuitamente - la vita è davvero fantastica e piena di tante belle cose! Lo sviluppo di questo plugin richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo sostegno {{strong}}tramite una piccola donazione{{/strong}}."
1101
 
@@ -1103,91 +1153,91 @@ msgstr "Redirection può essere utilizzato gratuitamente - la vita è davvero fa
1103
  msgid "Redirection Support"
1104
  msgstr "Forum di supporto Redirection"
1105
 
1106
- #: redirection-strings.php:63 redirection-strings.php:144
1107
  msgid "Support"
1108
  msgstr "Supporto"
1109
 
1110
- #: redirection-strings.php:141
1111
  msgid "404s"
1112
  msgstr "404"
1113
 
1114
- #: redirection-strings.php:140
1115
  msgid "Log"
1116
  msgstr "Log"
1117
 
1118
- #: redirection-strings.php:151
1119
  msgid "Delete Redirection"
1120
  msgstr "Rimuovi Redirection"
1121
 
1122
- #: redirection-strings.php:81
1123
  msgid "Upload"
1124
  msgstr "Carica"
1125
 
1126
- #: redirection-strings.php:92
1127
  msgid "Import"
1128
  msgstr "Importa"
1129
 
1130
- #: redirection-strings.php:205
1131
  msgid "Update"
1132
  msgstr "Aggiorna"
1133
 
1134
- #: redirection-strings.php:194
1135
  msgid "Auto-generate URL"
1136
  msgstr "Genera URL automaticamente"
1137
 
1138
- #: redirection-strings.php:193
1139
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1140
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
1141
 
1142
- #: redirection-strings.php:192
1143
  msgid "RSS Token"
1144
  msgstr "Token RSS"
1145
 
1146
- #: redirection-strings.php:186
1147
  msgid "404 Logs"
1148
  msgstr "Registro 404"
1149
 
1150
- #: redirection-strings.php:185 redirection-strings.php:187
1151
  msgid "(time to keep logs for)"
1152
  msgstr "(per quanto tempo conservare i log)"
1153
 
1154
- #: redirection-strings.php:184
1155
  msgid "Redirect Logs"
1156
  msgstr "Registro redirezioni"
1157
 
1158
- #: redirection-strings.php:183
1159
  msgid "I'm a nice person and I have helped support the author of this plugin"
1160
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
1161
 
1162
- #: redirection-strings.php:158
1163
  msgid "Plugin Support"
1164
- msgstr ""
1165
 
1166
- #: redirection-strings.php:62 redirection-strings.php:143
1167
  msgid "Options"
1168
  msgstr "Opzioni"
1169
 
1170
- #: redirection-strings.php:163
1171
  msgid "Two months"
1172
  msgstr "Due mesi"
1173
 
1174
- #: redirection-strings.php:162
1175
  msgid "A month"
1176
  msgstr "Un mese"
1177
 
1178
- #: redirection-strings.php:161 redirection-strings.php:168
1179
  msgid "A week"
1180
  msgstr "Una settimana"
1181
 
1182
- #: redirection-strings.php:160 redirection-strings.php:167
1183
  msgid "A day"
1184
  msgstr "Un giorno"
1185
 
1186
- #: redirection-strings.php:159
1187
  msgid "No logs"
1188
  msgstr "Nessun log"
1189
 
1190
- #: redirection-strings.php:110
1191
  msgid "Delete All"
1192
  msgstr "Elimina tutto"
1193
 
@@ -1199,37 +1249,37 @@ msgstr "Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono asse
1199
  msgid "Add Group"
1200
  msgstr "Aggiungi gruppo"
1201
 
1202
- #: redirection-strings.php:335
1203
  msgid "Search"
1204
  msgstr "Cerca"
1205
 
1206
- #: redirection-strings.php:58 redirection-strings.php:139
1207
  msgid "Groups"
1208
  msgstr "Gruppi"
1209
 
1210
  #: redirection-strings.php:14 redirection-strings.php:55
1211
- #: redirection-strings.php:246
1212
  msgid "Save"
1213
  msgstr "Salva"
1214
 
1215
- #: redirection-strings.php:244
1216
  msgid "Group"
1217
  msgstr "Gruppo"
1218
 
1219
- #: redirection-strings.php:241
1220
  msgid "Match"
1221
  msgstr "Match"
1222
 
1223
- #: redirection-strings.php:263
1224
  msgid "Add new redirection"
1225
  msgstr "Aggiungi un nuovo reindirizzamento"
1226
 
1227
- #: redirection-strings.php:56 redirection-strings.php:82
1228
- #: redirection-strings.php:250
1229
  msgid "Cancel"
1230
  msgstr "Annulla"
1231
 
1232
- #: redirection-strings.php:106
1233
  msgid "Download"
1234
  msgstr "Scaricare"
1235
 
@@ -1241,47 +1291,47 @@ msgstr "Redirection"
1241
  msgid "Settings"
1242
  msgstr "Impostazioni"
1243
 
1244
- #: redirection-strings.php:231
1245
  msgid "Do nothing"
1246
  msgstr "Non fare niente"
1247
 
1248
- #: redirection-strings.php:230
1249
  msgid "Error (404)"
1250
  msgstr "Errore (404)"
1251
 
1252
- #: redirection-strings.php:229
1253
  msgid "Pass-through"
1254
  msgstr "Pass-through"
1255
 
1256
- #: redirection-strings.php:228
1257
  msgid "Redirect to random post"
1258
  msgstr "Reindirizza a un post a caso"
1259
 
1260
- #: redirection-strings.php:227
1261
  msgid "Redirect to URL"
1262
  msgstr "Reindirizza a URL"
1263
 
1264
- #: models/redirect.php:514
1265
  msgid "Invalid group when creating redirect"
1266
  msgstr "Gruppo non valido nella creazione del redirect"
1267
 
1268
- #: redirection-strings.php:119 redirection-strings.php:128
1269
  msgid "IP"
1270
  msgstr "IP"
1271
 
1272
- #: redirection-strings.php:117 redirection-strings.php:126
1273
- #: redirection-strings.php:247
1274
  msgid "Source URL"
1275
  msgstr "URL di partenza"
1276
 
1277
- #: redirection-strings.php:116 redirection-strings.php:125
1278
  msgid "Date"
1279
  msgstr "Data"
1280
 
1281
- #: redirection-strings.php:130 redirection-strings.php:134
1282
- #: redirection-strings.php:264
1283
  msgid "Add Redirect"
1284
- msgstr ""
1285
 
1286
  #: redirection-strings.php:44
1287
  msgid "All modules"
@@ -1295,7 +1345,7 @@ msgstr "Mostra i redirect"
1295
  msgid "Module"
1296
  msgstr "Modulo"
1297
 
1298
- #: redirection-strings.php:39 redirection-strings.php:138
1299
  msgid "Redirects"
1300
  msgstr "Reindirizzamenti"
1301
 
@@ -1304,49 +1354,49 @@ msgstr "Reindirizzamenti"
1304
  msgid "Name"
1305
  msgstr "Nome"
1306
 
1307
- #: redirection-strings.php:320
1308
  msgid "Filter"
1309
  msgstr "Filtro"
1310
 
1311
- #: redirection-strings.php:261
1312
  msgid "Reset hits"
1313
  msgstr ""
1314
 
1315
  #: redirection-strings.php:42 redirection-strings.php:52
1316
- #: redirection-strings.php:259 redirection-strings.php:295
1317
  msgid "Enable"
1318
  msgstr "Attiva"
1319
 
1320
  #: redirection-strings.php:43 redirection-strings.php:51
1321
- #: redirection-strings.php:260 redirection-strings.php:294
1322
  msgid "Disable"
1323
  msgstr "Disattiva"
1324
 
1325
  #: redirection-strings.php:41 redirection-strings.php:49
1326
- #: redirection-strings.php:120 redirection-strings.php:121
1327
- #: redirection-strings.php:129 redirection-strings.php:133
1328
- #: redirection-strings.php:152 redirection-strings.php:258
1329
- #: redirection-strings.php:293
1330
  msgid "Delete"
1331
  msgstr "Cancella"
1332
 
1333
- #: redirection-strings.php:48 redirection-strings.php:292
1334
  msgid "Edit"
1335
  msgstr "Modifica"
1336
 
1337
- #: redirection-strings.php:257
1338
  msgid "Last Access"
1339
  msgstr "Ultimo accesso"
1340
 
1341
- #: redirection-strings.php:256
1342
  msgid "Hits"
1343
  msgstr "Visite"
1344
 
1345
- #: redirection-strings.php:254 redirection-strings.php:308
1346
  msgid "URL"
1347
  msgstr "URL"
1348
 
1349
- #: redirection-strings.php:253
1350
  msgid "Type"
1351
  msgstr "Tipo"
1352
 
@@ -1358,44 +1408,44 @@ msgstr "Post modificati"
1358
  msgid "Redirections"
1359
  msgstr "Reindirizzamenti"
1360
 
1361
- #: redirection-strings.php:265
1362
  msgid "User Agent"
1363
  msgstr "User agent"
1364
 
1365
- #: matches/user-agent.php:10 redirection-strings.php:222
1366
  msgid "URL and user agent"
1367
  msgstr "URL e user agent"
1368
 
1369
- #: redirection-strings.php:216
1370
  msgid "Target URL"
1371
  msgstr "URL di arrivo"
1372
 
1373
- #: matches/url.php:7 redirection-strings.php:218
1374
  msgid "URL only"
1375
  msgstr "solo URL"
1376
 
1377
- #: redirection-strings.php:249 redirection-strings.php:271
1378
- #: redirection-strings.php:275 redirection-strings.php:283
1379
- #: redirection-strings.php:287
1380
  msgid "Regex"
1381
  msgstr "Regex"
1382
 
1383
- #: redirection-strings.php:285
1384
  msgid "Referrer"
1385
  msgstr "Referrer"
1386
 
1387
- #: matches/referrer.php:10 redirection-strings.php:221
1388
  msgid "URL and referrer"
1389
  msgstr "URL e referrer"
1390
 
1391
- #: redirection-strings.php:210
1392
  msgid "Logged Out"
1393
  msgstr ""
1394
 
1395
- #: redirection-strings.php:208
1396
  msgid "Logged In"
1397
  msgstr ""
1398
 
1399
- #: matches/login.php:8 redirection-strings.php:219
1400
  msgid "URL and login status"
1401
  msgstr "status URL e login"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-10-15 08:33:18+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr "Problema"
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
  msgstr ""
25
 
26
  #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr "Trovato"
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr "Errore"
61
+
62
+ #: redirection-strings.php:322
63
+ msgid "Enter full URL, including http:// or https://"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "Server"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr "Ruolo"
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr "Confronta con questo browser user agent"
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "L'URL relativo dal quale vuoi creare una redirezione"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "Descrizione opzionale - descrivi lo scopo di questo reindirizzamento"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(beta)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "Forza un reindirizzamento da HTTP a HTTPS. Verifica che HTTPS funzioni correttamente prima di abilitarlo"
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "Forza HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr ""
141
 
147
  msgid "Please logout and login again."
148
  msgstr ""
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Redirection richiede PHP v%1s, stai usando v%2s - Aggiornare PHP"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr "URL e ruolo/permesso"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL e server"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr ""
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr ""
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr ""
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "Default /wp-json/"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr ""
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
  msgstr ""
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr ""
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Valore dell'header"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr ""
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "Header HTTP"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr ""
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr ""
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Valore cookie"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Nome cookie"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr ""
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr ""
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "Se stai utilizzando un sistema di caching come Cloudflare, per favore leggi questo:"
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr ""
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr ""
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL e cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "REST API"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr ""
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr ""
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr ""
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr ""
313
 
344
  msgid "https://johngodley.com"
345
  msgstr ""
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr ""
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Useragent sconosciuto"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Periferica"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Sistema operativo"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Browser"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "Useragent"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr ""
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr ""
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr ""
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Anonimizza IP (maschera l'ultima parte)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr ""
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr ""
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr ""
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr ""
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr ""
418
 
420
  msgid "Geo IP Error"
421
  msgstr ""
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr ""
427
 
454
  msgid "Geo Location"
455
  msgstr ""
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr ""
461
 
463
  msgid "Trash"
464
  msgstr ""
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr ""
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr ""
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr ""
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr ""
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr ""
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr ""
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr ""
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr ""
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr ""
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr ""
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr ""
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr ""
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr ""
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr ""
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr ""
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr ""
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr ""
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr ""
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr ""
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr ""
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr ""
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr ""
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr ""
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr ""
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr ""
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr ""
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr ""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr ""
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr ""
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr ""
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr ""
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr ""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr ""
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr ""
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr ""
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr ""
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr ""
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr ""
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr ""
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr ""
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr ""
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr ""
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr ""
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr ""
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr ""
737
 
743
  msgid "Important details"
744
  msgstr ""
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Hai bisogno di aiuto?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr ""
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr ""
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr ""
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Posizione"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr ""
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Modulo Apache"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Importa nel gruppo"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Importa un file CSV, .htaccess o JSON."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Aggiungi File"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "File selezionato"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Importazione"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Importazione finita"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Totale redirect importati"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "Controlla che il file sia nel formato corretto!"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "OK"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Chiudi"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Esporta"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Tutto"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "Redirezioni di WordPress"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Redirezioni Apache"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Redirezioni nginx"
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr ".htaccess Apache"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr ""
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr ""
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr ""
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr ""
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Importa/Esporta"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr ""
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr ""
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Supporta 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr "Redirezione salvata"
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr "Log eliminato"
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Impostazioni salvate"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Gruppo salvato"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
918
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
919
 
920
+ #: redirection-strings.php:309
921
  msgid "pass"
922
  msgstr ""
923
 
924
+ #: redirection-strings.php:274
925
  msgid "All groups"
926
  msgstr "Tutti i gruppi"
927
 
928
+ #: redirection-strings.php:244
929
  msgid "301 - Moved Permanently"
930
  msgstr "301 - Spostato in maniera permanente"
931
 
932
+ #: redirection-strings.php:245
933
  msgid "302 - Found"
934
  msgstr "302 - Trovato"
935
 
936
+ #: redirection-strings.php:246
937
  msgid "307 - Temporary Redirect"
938
  msgstr "307 - Redirezione temporanea"
939
 
940
+ #: redirection-strings.php:247
941
  msgid "308 - Permanent Redirect"
942
  msgstr "308 - Redirezione permanente"
943
 
944
+ #: redirection-strings.php:248
945
  msgid "401 - Unauthorized"
946
  msgstr "401 - Non autorizzato"
947
 
948
+ #: redirection-strings.php:249
949
  msgid "404 - Not Found"
950
  msgstr "404 - Non trovato"
951
 
952
+ #: redirection-strings.php:251
953
  msgid "Title"
954
  msgstr "Titolo"
955
 
956
+ #: redirection-strings.php:254
957
  msgid "When matched"
958
  msgstr "Quando corrisponde"
959
 
960
+ #: redirection-strings.php:255
961
  msgid "with HTTP code"
962
  msgstr "Con codice HTTP"
963
 
964
+ #: redirection-strings.php:264
965
  msgid "Show advanced options"
966
  msgstr "Mostra opzioni avanzate"
967
 
968
+ #: redirection-strings.php:224
969
  msgid "Matched Target"
970
  msgstr ""
971
 
972
+ #: redirection-strings.php:226
973
  msgid "Unmatched Target"
974
  msgstr ""
975
 
976
+ #: redirection-strings.php:218 redirection-strings.php:219
977
  msgid "Saving..."
978
  msgstr "Salvataggio..."
979
 
980
+ #: redirection-strings.php:157
981
  msgid "View notice"
982
  msgstr "Vedi la notifica"
983
 
984
+ #: models/redirect.php:526
985
  msgid "Invalid source URL"
986
  msgstr "URL di origine non valido"
987
 
988
+ #: models/redirect.php:458
989
  msgid "Invalid redirect action"
990
  msgstr "Azione di redirezione non valida"
991
 
992
+ #: models/redirect.php:452
993
  msgid "Invalid redirect matcher"
994
  msgstr ""
995
 
996
+ #: models/redirect.php:187
997
  msgid "Unable to add new redirect"
998
  msgstr "Impossibile aggiungere una nuova redirezione"
999
 
1011
  msgid "Log entries (%d max)"
1012
  msgstr ""
1013
 
1014
+ #: redirection-strings.php:350
1015
  msgid "Search by IP"
1016
  msgstr "Cerca per IP"
1017
 
1018
+ #: redirection-strings.php:345
1019
  msgid "Select bulk action"
1020
  msgstr "Seleziona l'azione di massa"
1021
 
1022
+ #: redirection-strings.php:346
1023
  msgid "Bulk Actions"
1024
  msgstr "Azioni di massa"
1025
 
1026
+ #: redirection-strings.php:347
1027
  msgid "Apply"
1028
  msgstr "Applica"
1029
 
1030
+ #: redirection-strings.php:338
1031
  msgid "First page"
1032
  msgstr "Prima pagina"
1033
 
1034
+ #: redirection-strings.php:339
1035
  msgid "Prev page"
1036
  msgstr "Pagina precedente"
1037
 
1038
+ #: redirection-strings.php:340
1039
  msgid "Current Page"
1040
  msgstr "Pagina corrente"
1041
 
1042
+ #: redirection-strings.php:341
1043
  msgid "of %(page)s"
1044
  msgstr ""
1045
 
1046
+ #: redirection-strings.php:342
1047
  msgid "Next page"
1048
  msgstr "Prossima pagina"
1049
 
1050
+ #: redirection-strings.php:343
1051
  msgid "Last page"
1052
  msgstr "Ultima pagina"
1053
 
1054
+ #: redirection-strings.php:344
1055
  msgid "%s item"
1056
  msgid_plural "%s items"
1057
  msgstr[0] "%s oggetto"
1058
  msgstr[1] "%s oggetti"
1059
 
1060
+ #: redirection-strings.php:337
1061
  msgid "Select All"
1062
  msgstr "Seleziona tutto"
1063
 
1064
+ #: redirection-strings.php:349
1065
  msgid "Sorry, something went wrong loading the data - please try again"
1066
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
1067
 
1068
+ #: redirection-strings.php:348
1069
  msgid "No results"
1070
  msgstr "Nessun risultato"
1071
 
1072
+ #: redirection-strings.php:123
1073
  msgid "Delete the logs - are you sure?"
1074
  msgstr "Cancella i log - sei sicuro?"
1075
 
1076
+ #: redirection-strings.php:124
1077
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1078
  msgstr "Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."
1079
 
1080
+ #: redirection-strings.php:125
1081
  msgid "Yes! Delete the logs"
1082
  msgstr "Sì! Cancella i log"
1083
 
1084
+ #: redirection-strings.php:126
1085
  msgid "No! Don't delete the logs"
1086
  msgstr "No! Non cancellare i log"
1087
 
1088
+ #: redirection-strings.php:326
1089
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1090
  msgstr "Grazie per esserti iscritto! {{a}}Clicca qui{{/a}} se vuoi tornare alla tua sottoscrizione."
1091
 
1092
+ #: redirection-strings.php:325 redirection-strings.php:327
1093
  msgid "Newsletter"
1094
  msgstr "Newsletter"
1095
 
1096
+ #: redirection-strings.php:328
1097
  msgid "Want to keep up to date with changes to Redirection?"
1098
  msgstr "Vuoi essere informato sulle modifiche a Redirection?"
1099
 
1100
+ #: redirection-strings.php:329
1101
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1102
  msgstr "Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."
1103
 
1104
+ #: redirection-strings.php:330
1105
  msgid "Your email address:"
1106
  msgstr "Il tuo indirizzo email:"
1107
 
1108
+ #: redirection-strings.php:165
1109
  msgid "You've supported this plugin - thank you!"
1110
  msgstr "Hai già supportato questo plugin - grazie!"
1111
 
1112
+ #: redirection-strings.php:168
1113
  msgid "You get useful software and I get to carry on making it better."
1114
  msgstr ""
1115
 
1116
+ #: redirection-strings.php:176 redirection-strings.php:181
1117
  msgid "Forever"
1118
  msgstr "Per sempre"
1119
 
1120
+ #: redirection-strings.php:158
1121
  msgid "Delete the plugin - are you sure?"
1122
  msgstr "Cancella il plugin - sei sicuro?"
1123
 
1124
+ #: redirection-strings.php:159
1125
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1126
  msgstr "Cancellando questo plugin verranno rimossi tutti i reindirizzamenti, i log e le impostazioni. Fallo se vuoi rimuovere il plugin o se vuoi reimpostare il plugin."
1127
 
1128
+ #: redirection-strings.php:160
1129
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1130
  msgstr "Dopo averle elimininati, i tuoi reindirizzamenti smetteranno di funzionare. Se sembra che continuino a funzionare cancella la cache del tuo browser."
1131
 
1132
+ #: redirection-strings.php:161
1133
  msgid "Yes! Delete the plugin"
1134
  msgstr "Sì! Cancella il plugin"
1135
 
1136
+ #: redirection-strings.php:162
1137
  msgid "No! Don't delete the plugin"
1138
  msgstr "No! Non cancellare il plugin"
1139
 
1145
  msgid "Manage all your 301 redirects and monitor 404 errors"
1146
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
1147
 
1148
+ #: redirection-strings.php:167
1149
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1150
  msgstr "Redirection può essere utilizzato gratuitamente - la vita è davvero fantastica e piena di tante belle cose! Lo sviluppo di questo plugin richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo sostegno {{strong}}tramite una piccola donazione{{/strong}}."
1151
 
1153
  msgid "Redirection Support"
1154
  msgstr "Forum di supporto Redirection"
1155
 
1156
+ #: redirection-strings.php:63 redirection-strings.php:156
1157
  msgid "Support"
1158
  msgstr "Supporto"
1159
 
1160
+ #: redirection-strings.php:153
1161
  msgid "404s"
1162
  msgstr "404"
1163
 
1164
+ #: redirection-strings.php:152
1165
  msgid "Log"
1166
  msgstr "Log"
1167
 
1168
+ #: redirection-strings.php:163
1169
  msgid "Delete Redirection"
1170
  msgstr "Rimuovi Redirection"
1171
 
1172
+ #: redirection-strings.php:93
1173
  msgid "Upload"
1174
  msgstr "Carica"
1175
 
1176
+ #: redirection-strings.php:104
1177
  msgid "Import"
1178
  msgstr "Importa"
1179
 
1180
+ #: redirection-strings.php:217
1181
  msgid "Update"
1182
  msgstr "Aggiorna"
1183
 
1184
+ #: redirection-strings.php:206
1185
  msgid "Auto-generate URL"
1186
  msgstr "Genera URL automaticamente"
1187
 
1188
+ #: redirection-strings.php:205
1189
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1190
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
1191
 
1192
+ #: redirection-strings.php:204
1193
  msgid "RSS Token"
1194
  msgstr "Token RSS"
1195
 
1196
+ #: redirection-strings.php:198
1197
  msgid "404 Logs"
1198
  msgstr "Registro 404"
1199
 
1200
+ #: redirection-strings.php:197 redirection-strings.php:199
1201
  msgid "(time to keep logs for)"
1202
  msgstr "(per quanto tempo conservare i log)"
1203
 
1204
+ #: redirection-strings.php:196
1205
  msgid "Redirect Logs"
1206
  msgstr "Registro redirezioni"
1207
 
1208
+ #: redirection-strings.php:195
1209
  msgid "I'm a nice person and I have helped support the author of this plugin"
1210
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
1211
 
1212
+ #: redirection-strings.php:170
1213
  msgid "Plugin Support"
1214
+ msgstr "Supporto del plugin"
1215
 
1216
+ #: redirection-strings.php:62 redirection-strings.php:155
1217
  msgid "Options"
1218
  msgstr "Opzioni"
1219
 
1220
+ #: redirection-strings.php:175
1221
  msgid "Two months"
1222
  msgstr "Due mesi"
1223
 
1224
+ #: redirection-strings.php:174
1225
  msgid "A month"
1226
  msgstr "Un mese"
1227
 
1228
+ #: redirection-strings.php:173 redirection-strings.php:180
1229
  msgid "A week"
1230
  msgstr "Una settimana"
1231
 
1232
+ #: redirection-strings.php:172 redirection-strings.php:179
1233
  msgid "A day"
1234
  msgstr "Un giorno"
1235
 
1236
+ #: redirection-strings.php:171
1237
  msgid "No logs"
1238
  msgstr "Nessun log"
1239
 
1240
+ #: redirection-strings.php:122
1241
  msgid "Delete All"
1242
  msgstr "Elimina tutto"
1243
 
1249
  msgid "Add Group"
1250
  msgstr "Aggiungi gruppo"
1251
 
1252
+ #: redirection-strings.php:351
1253
  msgid "Search"
1254
  msgstr "Cerca"
1255
 
1256
+ #: redirection-strings.php:58 redirection-strings.php:151
1257
  msgid "Groups"
1258
  msgstr "Gruppi"
1259
 
1260
  #: redirection-strings.php:14 redirection-strings.php:55
1261
+ #: redirection-strings.php:258
1262
  msgid "Save"
1263
  msgstr "Salva"
1264
 
1265
+ #: redirection-strings.php:256
1266
  msgid "Group"
1267
  msgstr "Gruppo"
1268
 
1269
+ #: redirection-strings.php:253
1270
  msgid "Match"
1271
  msgstr "Match"
1272
 
1273
+ #: redirection-strings.php:275
1274
  msgid "Add new redirection"
1275
  msgstr "Aggiungi un nuovo reindirizzamento"
1276
 
1277
+ #: redirection-strings.php:56 redirection-strings.php:94
1278
+ #: redirection-strings.php:262
1279
  msgid "Cancel"
1280
  msgstr "Annulla"
1281
 
1282
+ #: redirection-strings.php:118
1283
  msgid "Download"
1284
  msgstr "Scaricare"
1285
 
1291
  msgid "Settings"
1292
  msgstr "Impostazioni"
1293
 
1294
+ #: redirection-strings.php:243
1295
  msgid "Do nothing"
1296
  msgstr "Non fare niente"
1297
 
1298
+ #: redirection-strings.php:242
1299
  msgid "Error (404)"
1300
  msgstr "Errore (404)"
1301
 
1302
+ #: redirection-strings.php:241
1303
  msgid "Pass-through"
1304
  msgstr "Pass-through"
1305
 
1306
+ #: redirection-strings.php:240
1307
  msgid "Redirect to random post"
1308
  msgstr "Reindirizza a un post a caso"
1309
 
1310
+ #: redirection-strings.php:239
1311
  msgid "Redirect to URL"
1312
  msgstr "Reindirizza a URL"
1313
 
1314
+ #: models/redirect.php:516
1315
  msgid "Invalid group when creating redirect"
1316
  msgstr "Gruppo non valido nella creazione del redirect"
1317
 
1318
+ #: redirection-strings.php:131 redirection-strings.php:140
1319
  msgid "IP"
1320
  msgstr "IP"
1321
 
1322
+ #: redirection-strings.php:129 redirection-strings.php:138
1323
+ #: redirection-strings.php:259
1324
  msgid "Source URL"
1325
  msgstr "URL di partenza"
1326
 
1327
+ #: redirection-strings.php:128 redirection-strings.php:137
1328
  msgid "Date"
1329
  msgstr "Data"
1330
 
1331
+ #: redirection-strings.php:142 redirection-strings.php:146
1332
+ #: redirection-strings.php:276
1333
  msgid "Add Redirect"
1334
+ msgstr "Aggiungi una redirezione"
1335
 
1336
  #: redirection-strings.php:44
1337
  msgid "All modules"
1345
  msgid "Module"
1346
  msgstr "Modulo"
1347
 
1348
+ #: redirection-strings.php:39 redirection-strings.php:150
1349
  msgid "Redirects"
1350
  msgstr "Reindirizzamenti"
1351
 
1354
  msgid "Name"
1355
  msgstr "Nome"
1356
 
1357
+ #: redirection-strings.php:336
1358
  msgid "Filter"
1359
  msgstr "Filtro"
1360
 
1361
+ #: redirection-strings.php:273
1362
  msgid "Reset hits"
1363
  msgstr ""
1364
 
1365
  #: redirection-strings.php:42 redirection-strings.php:52
1366
+ #: redirection-strings.php:271 redirection-strings.php:308
1367
  msgid "Enable"
1368
  msgstr "Attiva"
1369
 
1370
  #: redirection-strings.php:43 redirection-strings.php:51
1371
+ #: redirection-strings.php:272 redirection-strings.php:306
1372
  msgid "Disable"
1373
  msgstr "Disattiva"
1374
 
1375
  #: redirection-strings.php:41 redirection-strings.php:49
1376
+ #: redirection-strings.php:132 redirection-strings.php:133
1377
+ #: redirection-strings.php:141 redirection-strings.php:145
1378
+ #: redirection-strings.php:164 redirection-strings.php:270
1379
+ #: redirection-strings.php:305
1380
  msgid "Delete"
1381
  msgstr "Cancella"
1382
 
1383
+ #: redirection-strings.php:48 redirection-strings.php:304
1384
  msgid "Edit"
1385
  msgstr "Modifica"
1386
 
1387
+ #: redirection-strings.php:269
1388
  msgid "Last Access"
1389
  msgstr "Ultimo accesso"
1390
 
1391
+ #: redirection-strings.php:268
1392
  msgid "Hits"
1393
  msgstr "Visite"
1394
 
1395
+ #: redirection-strings.php:266 redirection-strings.php:321
1396
  msgid "URL"
1397
  msgstr "URL"
1398
 
1399
+ #: redirection-strings.php:265
1400
  msgid "Type"
1401
  msgstr "Tipo"
1402
 
1408
  msgid "Redirections"
1409
  msgstr "Reindirizzamenti"
1410
 
1411
+ #: redirection-strings.php:277
1412
  msgid "User Agent"
1413
  msgstr "User agent"
1414
 
1415
+ #: matches/user-agent.php:10 redirection-strings.php:234
1416
  msgid "URL and user agent"
1417
  msgstr "URL e user agent"
1418
 
1419
+ #: redirection-strings.php:228
1420
  msgid "Target URL"
1421
  msgstr "URL di arrivo"
1422
 
1423
+ #: matches/url.php:7 redirection-strings.php:230
1424
  msgid "URL only"
1425
  msgstr "solo URL"
1426
 
1427
+ #: redirection-strings.php:261 redirection-strings.php:283
1428
+ #: redirection-strings.php:287 redirection-strings.php:295
1429
+ #: redirection-strings.php:299
1430
  msgid "Regex"
1431
  msgstr "Regex"
1432
 
1433
+ #: redirection-strings.php:297
1434
  msgid "Referrer"
1435
  msgstr "Referrer"
1436
 
1437
+ #: matches/referrer.php:10 redirection-strings.php:233
1438
  msgid "URL and referrer"
1439
  msgstr "URL e referrer"
1440
 
1441
+ #: redirection-strings.php:222
1442
  msgid "Logged Out"
1443
  msgstr ""
1444
 
1445
+ #: redirection-strings.php:220
1446
  msgid "Logged In"
1447
  msgstr ""
1448
 
1449
+ #: matches/login.php:8 redirection-strings.php:231
1450
  msgid "URL and login status"
1451
  msgstr "status URL e login"
locale/redirection-ja.mo CHANGED
Binary file
locale/redirection-ja.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-09-16 09:59:54+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Enter full URL, including http:// or https://"
16
  msgstr "http:// や https:// を含めた完全な URL を入力してください"
17
 
18
- #: redirection-strings.php:307
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr "ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr "リダイレクトテスター"
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr "ターゲット"
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr "URL は Redirection によってリダイレクトされません"
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr "URL は Redirection によってリダイレクトされます"
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr "詳細のロードに失敗しました"
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
- msgstr ""
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "サーバー"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr "権限グループまたは権限の値を入力"
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr "権限グループ"
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr "このブラウザーリファラーテキストと一致"
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr "このブラウザーユーザーエージェントに一致"
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "リダイレクト元となる相対 URL"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "任意の説明欄 - リダイレクトの目的を説明してください"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr "一致した場合にリダイレクトさせたいターゲット URL"
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(ベータ)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "強制 HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr "GDPR / 個人情報"
93
 
@@ -99,31 +147,31 @@ msgstr "新規追加"
99
  msgid "Please logout and login again."
100
  msgstr "再度ログインし直してください。"
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Redirection の動作には PHP v%1s が必要ですが、現在 v%2s をお使いです。PHP を更新してください。"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr "URL と権限グループ / 権限"
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL とサーバー"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "フォームリクエスト"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "相対 /wp-json/"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr ""
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "デフォルト /wp-json/"
129
 
@@ -143,51 +191,51 @@ msgstr "サイト URL とホーム URL が一致しません。一般設定よ
143
  msgid "Site and home are consistent"
144
  msgstr "サイト URL とホーム URL は一致しています"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
  msgstr "HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Accept Language"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "ヘッダー値"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "ヘッダー名"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "HTTP ヘッダー"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "WordPress フィルター名"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "フィルター名"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Cookie 値"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Cookie 名"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "一致しなかったときのターゲット URL"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "一致したときのターゲット URL"
193
 
@@ -199,31 +247,31 @@ msgstr "キャッシュを削除"
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr "URL と HTTP ヘッダー"
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr "URL とカスタムフィルター"
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL と Cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr "404 deleted"
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr "Raw /index.php?rest_route=/"
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "REST API"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr "Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"
229
 
@@ -255,11 +303,11 @@ msgstr "{{link}}一時的に他のプラグインを無効化してください
255
  msgid "None of the suggestions helped"
256
  msgstr "これらの提案では解決しませんでした"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "Redirection のロードに失敗しました☹️"
265
 
@@ -296,75 +344,75 @@ msgstr "サイト上の WordPress REST API は無効化されています。Redi
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr "ユーザーエージェントエラー"
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "不明なユーザーエージェント"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "デバイス"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "オペレーティングシステム"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "ブラウザー"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr "エンジン"
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "ユーザーエージェント"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr "エージェント"
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "IP ロギングなし"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "フル IP ロギング"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "匿名 IP (最後の部分をマスクする)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "%(type) の変更を監視する"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "IP ロギング"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(IP のログレベルを選択)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr "位置情報"
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr "エージェントの情報"
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "IP でフィルター"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "リファラー / User Agent"
370
 
@@ -372,7 +420,8 @@ msgstr "リファラー / User Agent"
372
  msgid "Geo IP Error"
373
  msgstr "位置情報エラー"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr "この情報の取得中に問題が発生しました。"
378
 
@@ -405,7 +454,8 @@ msgstr "タイムゾーン"
405
  msgid "Geo Location"
406
  msgstr "位置情報"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Powered by {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr "ゴミ箱"
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr "Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"
419
 
@@ -425,135 +475,135 @@ msgstr "Redirection プラグインの詳しい使い方については <a href=
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
- msgstr ""
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr "キャッシュしない"
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "1時間"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr "リダイレクトキャッシュ"
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "本当に %s からインポートしますか ?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "インポートプラグイン"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "全数 ="
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "%s からインポート"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
- msgstr ""
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Redirection がきちんとインストールされていません"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
- msgstr ""
487
 
488
  #: models/importer.php:149
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr "初期設定の WordPress \"old slugs\""
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr ""
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr ""
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr "⚡️マジック修正⚡️"
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "プラグインステータス"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr "カスタム"
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr "モバイル"
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "フィード読者"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr "ライブラリ"
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
- msgstr ""
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr "このグループへの変更を保存"
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr "例: \"/amp\""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "URL モニター"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "404を削除"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "この404エラーに対するすべてのログを削除"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "すべての IP %s からのものを削除"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr "すべての \"%s\" に一致するものを削除"
559
 
@@ -561,23 +611,23 @@ msgstr "すべての \"%s\" に一致するものを削除"
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr "大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr "また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr "CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "Redirection のロードに失敗しました"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "グループの作成に失敗しました"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "データベーステーブルの修正に失敗しました"
583
 
@@ -653,19 +703,19 @@ msgstr "サーバーが 403 (閲覧禁止) エラーを返しました。これ
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr ""
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "ロード中です。お待ち下さい…"
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
671
 
@@ -683,7 +733,7 @@ msgstr ""
683
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
684
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
685
 
686
- #: redirection-admin.php:438 redirection-strings.php:22
687
  msgid "Create Issue"
688
  msgstr "Issue を作成"
689
 
@@ -695,135 +745,135 @@ msgstr "メール"
695
  msgid "Important details"
696
  msgstr "重要な詳細"
697
 
698
- #: redirection-strings.php:297
699
  msgid "Need help?"
700
  msgstr "ヘルプが必要ですか?"
701
 
702
- #: redirection-strings.php:300
703
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
704
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
705
 
706
- #: redirection-strings.php:255
707
  msgid "Pos"
708
  msgstr "Pos"
709
 
710
- #: redirection-strings.php:238
711
  msgid "410 - Gone"
712
  msgstr "410 - 消滅"
713
 
714
- #: redirection-strings.php:245
715
  msgid "Position"
716
  msgstr "配置"
717
 
718
- #: redirection-strings.php:195
719
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
720
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
721
 
722
- #: redirection-strings.php:196
723
  msgid "Apache Module"
724
  msgstr "Apache モジュール"
725
 
726
- #: redirection-strings.php:197
727
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
728
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
729
 
730
- #: redirection-strings.php:76
731
  msgid "Import to group"
732
  msgstr "グループにインポート"
733
 
734
- #: redirection-strings.php:77
735
  msgid "Import a CSV, .htaccess, or JSON file."
736
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
737
 
738
- #: redirection-strings.php:78
739
  msgid "Click 'Add File' or drag and drop here."
740
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
741
 
742
- #: redirection-strings.php:79
743
  msgid "Add File"
744
  msgstr "ファイルを追加"
745
 
746
- #: redirection-strings.php:80
747
  msgid "File selected"
748
  msgstr "選択されたファイル"
749
 
750
- #: redirection-strings.php:83
751
  msgid "Importing"
752
  msgstr "インポート中"
753
 
754
- #: redirection-strings.php:84
755
  msgid "Finished importing"
756
  msgstr "インポートが完了しました"
757
 
758
- #: redirection-strings.php:85
759
  msgid "Total redirects imported:"
760
  msgstr "インポートされたリダイレクト数: "
761
 
762
- #: redirection-strings.php:86
763
  msgid "Double-check the file is the correct format!"
764
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
765
 
766
- #: redirection-strings.php:87
767
  msgid "OK"
768
  msgstr "OK"
769
 
770
- #: redirection-strings.php:88 redirection-strings.php:251
771
  msgid "Close"
772
  msgstr "閉じる"
773
 
774
- #: redirection-strings.php:93
775
  msgid "All imports will be appended to the current database."
776
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
777
 
778
- #: redirection-strings.php:95 redirection-strings.php:115
779
  msgid "Export"
780
  msgstr "エクスポート"
781
 
782
- #: redirection-strings.php:96
783
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
784
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
785
 
786
- #: redirection-strings.php:97
787
  msgid "Everything"
788
  msgstr "すべて"
789
 
790
- #: redirection-strings.php:98
791
  msgid "WordPress redirects"
792
  msgstr "WordPress リダイレクト"
793
 
794
- #: redirection-strings.php:99
795
  msgid "Apache redirects"
796
  msgstr "Apache リダイレクト"
797
 
798
- #: redirection-strings.php:100
799
  msgid "Nginx redirects"
800
  msgstr "Nginx リダイレクト"
801
 
802
- #: redirection-strings.php:101
803
  msgid "CSV"
804
  msgstr "CSV"
805
 
806
- #: redirection-strings.php:102
807
  msgid "Apache .htaccess"
808
  msgstr "Apache .htaccess"
809
 
810
- #: redirection-strings.php:103
811
  msgid "Nginx rewrite rules"
812
  msgstr "Nginx のリライトルール"
813
 
814
- #: redirection-strings.php:104
815
  msgid "Redirection JSON"
816
  msgstr "Redirection JSON"
817
 
818
- #: redirection-strings.php:105
819
  msgid "View"
820
  msgstr "表示"
821
 
822
- #: redirection-strings.php:107
823
  msgid "Log files can be exported from the log pages."
824
  msgstr "ログファイルはログページにてエクスポート出来ます。"
825
 
826
- #: redirection-strings.php:59 redirection-strings.php:142
827
  msgid "Import/Export"
828
  msgstr "インポート / エクスポート"
829
 
@@ -839,112 +889,112 @@ msgstr "404 エラー"
839
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
840
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
841
 
842
- #: redirection-strings.php:154
843
  msgid "I'd like to support some more."
844
  msgstr "もっとサポートがしたいです。"
845
 
846
- #: redirection-strings.php:157
847
  msgid "Support 💰"
848
  msgstr "サポート💰"
849
 
850
- #: redirection-strings.php:347
851
  msgid "Redirection saved"
852
  msgstr "リダイレクトが保存されました"
853
 
854
- #: redirection-strings.php:348
855
  msgid "Log deleted"
856
  msgstr "ログが削除されました"
857
 
858
- #: redirection-strings.php:349
859
  msgid "Settings saved"
860
  msgstr "設定が保存されました"
861
 
862
- #: redirection-strings.php:350
863
  msgid "Group saved"
864
  msgstr "グループが保存されました"
865
 
866
- #: redirection-strings.php:346
867
  msgid "Are you sure you want to delete this item?"
868
  msgid_plural "Are you sure you want to delete these items?"
869
  msgstr[0] "本当に削除してもよろしいですか?"
870
 
871
- #: redirection-strings.php:296
872
  msgid "pass"
873
  msgstr "パス"
874
 
875
- #: redirection-strings.php:262
876
  msgid "All groups"
877
  msgstr "すべてのグループ"
878
 
879
- #: redirection-strings.php:232
880
  msgid "301 - Moved Permanently"
881
  msgstr "301 - 恒久的に移動"
882
 
883
- #: redirection-strings.php:233
884
  msgid "302 - Found"
885
  msgstr "302 - 発見"
886
 
887
- #: redirection-strings.php:234
888
  msgid "307 - Temporary Redirect"
889
  msgstr "307 - 一時リダイレクト"
890
 
891
- #: redirection-strings.php:235
892
  msgid "308 - Permanent Redirect"
893
  msgstr "308 - 恒久リダイレクト"
894
 
895
- #: redirection-strings.php:236
896
  msgid "401 - Unauthorized"
897
  msgstr "401 - 認証が必要"
898
 
899
- #: redirection-strings.php:237
900
  msgid "404 - Not Found"
901
  msgstr "404 - 未検出"
902
 
903
- #: redirection-strings.php:239
904
  msgid "Title"
905
  msgstr "タイトル"
906
 
907
- #: redirection-strings.php:242
908
  msgid "When matched"
909
  msgstr "マッチした時"
910
 
911
- #: redirection-strings.php:243
912
  msgid "with HTTP code"
913
  msgstr "次の HTTP コードと共に"
914
 
915
- #: redirection-strings.php:252
916
  msgid "Show advanced options"
917
  msgstr "高度な設定を表示"
918
 
919
- #: redirection-strings.php:212
920
  msgid "Matched Target"
921
  msgstr "見つかったターゲット"
922
 
923
- #: redirection-strings.php:214
924
  msgid "Unmatched Target"
925
  msgstr "ターゲットが見つかりません"
926
 
927
- #: redirection-strings.php:206 redirection-strings.php:207
928
  msgid "Saving..."
929
  msgstr "保存中…"
930
 
931
- #: redirection-strings.php:145
932
  msgid "View notice"
933
  msgstr "通知を見る"
934
 
935
- #: models/redirect.php:524
936
  msgid "Invalid source URL"
937
  msgstr "不正な元 URL"
938
 
939
- #: models/redirect.php:456
940
  msgid "Invalid redirect action"
941
  msgstr "不正なリダイレクトアクション"
942
 
943
- #: models/redirect.php:450
944
  msgid "Invalid redirect matcher"
945
  msgstr "不正なリダイレクトマッチャー"
946
 
947
- #: models/redirect.php:185
948
  msgid "Unable to add new redirect"
949
  msgstr "新しいリダイレクトの追加に失敗しました"
950
 
@@ -960,128 +1010,128 @@ msgstr "何かをしようとして問題が発生しました。 それは一
960
  msgid "Log entries (%d max)"
961
  msgstr "ログ (最大 %d)"
962
 
963
- #: redirection-strings.php:334
964
  msgid "Search by IP"
965
  msgstr "IP による検索"
966
 
967
- #: redirection-strings.php:329
968
  msgid "Select bulk action"
969
  msgstr "一括操作を選択"
970
 
971
- #: redirection-strings.php:330
972
  msgid "Bulk Actions"
973
  msgstr "一括操作"
974
 
975
- #: redirection-strings.php:331
976
  msgid "Apply"
977
  msgstr "適応"
978
 
979
- #: redirection-strings.php:322
980
  msgid "First page"
981
  msgstr "最初のページ"
982
 
983
- #: redirection-strings.php:323
984
  msgid "Prev page"
985
  msgstr "前のページ"
986
 
987
- #: redirection-strings.php:324
988
  msgid "Current Page"
989
  msgstr "現在のページ"
990
 
991
- #: redirection-strings.php:325
992
  msgid "of %(page)s"
993
  msgstr "%(page)s"
994
 
995
- #: redirection-strings.php:326
996
  msgid "Next page"
997
  msgstr "次のページ"
998
 
999
- #: redirection-strings.php:327
1000
  msgid "Last page"
1001
  msgstr "最後のページ"
1002
 
1003
- #: redirection-strings.php:328
1004
  msgid "%s item"
1005
  msgid_plural "%s items"
1006
  msgstr[0] "%s 個のアイテム"
1007
 
1008
- #: redirection-strings.php:321
1009
  msgid "Select All"
1010
  msgstr "すべて選択"
1011
 
1012
- #: redirection-strings.php:333
1013
  msgid "Sorry, something went wrong loading the data - please try again"
1014
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
1015
 
1016
- #: redirection-strings.php:332
1017
  msgid "No results"
1018
  msgstr "結果なし"
1019
 
1020
- #: redirection-strings.php:111
1021
  msgid "Delete the logs - are you sure?"
1022
  msgstr "本当にログを消去しますか ?"
1023
 
1024
- #: redirection-strings.php:112
1025
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1026
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
1027
 
1028
- #: redirection-strings.php:113
1029
  msgid "Yes! Delete the logs"
1030
  msgstr "ログを消去する"
1031
 
1032
- #: redirection-strings.php:114
1033
  msgid "No! Don't delete the logs"
1034
  msgstr "ログを消去しない"
1035
 
1036
- #: redirection-strings.php:312
1037
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1038
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
1039
 
1040
- #: redirection-strings.php:311 redirection-strings.php:313
1041
  msgid "Newsletter"
1042
  msgstr "ニュースレター"
1043
 
1044
- #: redirection-strings.php:314
1045
  msgid "Want to keep up to date with changes to Redirection?"
1046
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
1047
 
1048
- #: redirection-strings.php:315
1049
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1050
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
1051
 
1052
- #: redirection-strings.php:316
1053
  msgid "Your email address:"
1054
  msgstr "メールアドレス: "
1055
 
1056
- #: redirection-strings.php:153
1057
  msgid "You've supported this plugin - thank you!"
1058
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
1059
 
1060
- #: redirection-strings.php:156
1061
  msgid "You get useful software and I get to carry on making it better."
1062
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
1063
 
1064
- #: redirection-strings.php:164 redirection-strings.php:169
1065
  msgid "Forever"
1066
  msgstr "永久に"
1067
 
1068
- #: redirection-strings.php:146
1069
  msgid "Delete the plugin - are you sure?"
1070
  msgstr "本当にプラグインを削除しますか ?"
1071
 
1072
- #: redirection-strings.php:147
1073
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1074
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
1075
 
1076
- #: redirection-strings.php:148
1077
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1078
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
1079
 
1080
- #: redirection-strings.php:149
1081
  msgid "Yes! Delete the plugin"
1082
  msgstr "プラグインを消去する"
1083
 
1084
- #: redirection-strings.php:150
1085
  msgid "No! Don't delete the plugin"
1086
  msgstr "プラグインを消去しない"
1087
 
@@ -1093,7 +1143,7 @@ msgstr "John Godley"
1093
  msgid "Manage all your 301 redirects and monitor 404 errors"
1094
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
1095
 
1096
- #: redirection-strings.php:155
1097
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1098
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1099
 
@@ -1101,91 +1151,91 @@ msgstr "Redirection プラグインは無料でお使いいただけます。し
1101
  msgid "Redirection Support"
1102
  msgstr "Redirection を応援する"
1103
 
1104
- #: redirection-strings.php:63 redirection-strings.php:144
1105
  msgid "Support"
1106
  msgstr "サポート"
1107
 
1108
- #: redirection-strings.php:141
1109
  msgid "404s"
1110
  msgstr "404 エラー"
1111
 
1112
- #: redirection-strings.php:140
1113
  msgid "Log"
1114
  msgstr "ログ"
1115
 
1116
- #: redirection-strings.php:151
1117
  msgid "Delete Redirection"
1118
  msgstr "転送ルールを削除"
1119
 
1120
- #: redirection-strings.php:81
1121
  msgid "Upload"
1122
  msgstr "アップロード"
1123
 
1124
- #: redirection-strings.php:92
1125
  msgid "Import"
1126
  msgstr "インポート"
1127
 
1128
- #: redirection-strings.php:205
1129
  msgid "Update"
1130
  msgstr "更新"
1131
 
1132
- #: redirection-strings.php:194
1133
  msgid "Auto-generate URL"
1134
  msgstr "URL を自動生成 "
1135
 
1136
- #: redirection-strings.php:193
1137
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1138
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1139
 
1140
- #: redirection-strings.php:192
1141
  msgid "RSS Token"
1142
  msgstr "RSS トークン"
1143
 
1144
- #: redirection-strings.php:186
1145
  msgid "404 Logs"
1146
  msgstr "404 ログ"
1147
 
1148
- #: redirection-strings.php:185 redirection-strings.php:187
1149
  msgid "(time to keep logs for)"
1150
  msgstr "(ログの保存期間)"
1151
 
1152
- #: redirection-strings.php:184
1153
  msgid "Redirect Logs"
1154
  msgstr "転送ログ"
1155
 
1156
- #: redirection-strings.php:183
1157
  msgid "I'm a nice person and I have helped support the author of this plugin"
1158
  msgstr "このプラグインの作者に対する援助を行いました"
1159
 
1160
- #: redirection-strings.php:158
1161
  msgid "Plugin Support"
1162
  msgstr "プラグインサポート"
1163
 
1164
- #: redirection-strings.php:62 redirection-strings.php:143
1165
  msgid "Options"
1166
  msgstr "設定"
1167
 
1168
- #: redirection-strings.php:163
1169
  msgid "Two months"
1170
  msgstr "2ヶ月"
1171
 
1172
- #: redirection-strings.php:162
1173
  msgid "A month"
1174
  msgstr "1ヶ月"
1175
 
1176
- #: redirection-strings.php:161 redirection-strings.php:168
1177
  msgid "A week"
1178
  msgstr "1週間"
1179
 
1180
- #: redirection-strings.php:160 redirection-strings.php:167
1181
  msgid "A day"
1182
  msgstr "1日"
1183
 
1184
- #: redirection-strings.php:159
1185
  msgid "No logs"
1186
  msgstr "ログなし"
1187
 
1188
- #: redirection-strings.php:110
1189
  msgid "Delete All"
1190
  msgstr "すべてを削除"
1191
 
@@ -1197,37 +1247,37 @@ msgstr "グループを使って転送をグループ化しましょう。グル
1197
  msgid "Add Group"
1198
  msgstr "グループを追加"
1199
 
1200
- #: redirection-strings.php:335
1201
  msgid "Search"
1202
  msgstr "検索"
1203
 
1204
- #: redirection-strings.php:58 redirection-strings.php:139
1205
  msgid "Groups"
1206
  msgstr "グループ"
1207
 
1208
  #: redirection-strings.php:14 redirection-strings.php:55
1209
- #: redirection-strings.php:246
1210
  msgid "Save"
1211
  msgstr "保存"
1212
 
1213
- #: redirection-strings.php:244
1214
  msgid "Group"
1215
  msgstr "グループ"
1216
 
1217
- #: redirection-strings.php:241
1218
  msgid "Match"
1219
  msgstr "一致条件"
1220
 
1221
- #: redirection-strings.php:263
1222
  msgid "Add new redirection"
1223
  msgstr "新しい転送ルールを追加"
1224
 
1225
- #: redirection-strings.php:56 redirection-strings.php:82
1226
- #: redirection-strings.php:250
1227
  msgid "Cancel"
1228
  msgstr "キャンセル"
1229
 
1230
- #: redirection-strings.php:106
1231
  msgid "Download"
1232
  msgstr "ダウンロード"
1233
 
@@ -1239,45 +1289,45 @@ msgstr "Redirection"
1239
  msgid "Settings"
1240
  msgstr "設定"
1241
 
1242
- #: redirection-strings.php:231
1243
  msgid "Do nothing"
1244
  msgstr "何もしない"
1245
 
1246
- #: redirection-strings.php:230
1247
  msgid "Error (404)"
1248
  msgstr "エラー (404)"
1249
 
1250
- #: redirection-strings.php:229
1251
  msgid "Pass-through"
1252
  msgstr "通過"
1253
 
1254
- #: redirection-strings.php:228
1255
  msgid "Redirect to random post"
1256
  msgstr "ランダムな記事へ転送"
1257
 
1258
- #: redirection-strings.php:227
1259
  msgid "Redirect to URL"
1260
  msgstr "URL へ転送"
1261
 
1262
- #: models/redirect.php:514
1263
  msgid "Invalid group when creating redirect"
1264
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1265
 
1266
- #: redirection-strings.php:119 redirection-strings.php:128
1267
  msgid "IP"
1268
  msgstr "IP"
1269
 
1270
- #: redirection-strings.php:117 redirection-strings.php:126
1271
- #: redirection-strings.php:247
1272
  msgid "Source URL"
1273
  msgstr "ソース URL"
1274
 
1275
- #: redirection-strings.php:116 redirection-strings.php:125
1276
  msgid "Date"
1277
  msgstr "日付"
1278
 
1279
- #: redirection-strings.php:130 redirection-strings.php:134
1280
- #: redirection-strings.php:264
1281
  msgid "Add Redirect"
1282
  msgstr "転送ルールを追加"
1283
 
@@ -1293,7 +1343,7 @@ msgstr "転送ルールを表示"
1293
  msgid "Module"
1294
  msgstr "モジュール"
1295
 
1296
- #: redirection-strings.php:39 redirection-strings.php:138
1297
  msgid "Redirects"
1298
  msgstr "転送ルール"
1299
 
@@ -1302,49 +1352,49 @@ msgstr "転送ルール"
1302
  msgid "Name"
1303
  msgstr "名称"
1304
 
1305
- #: redirection-strings.php:320
1306
  msgid "Filter"
1307
  msgstr "フィルター"
1308
 
1309
- #: redirection-strings.php:261
1310
  msgid "Reset hits"
1311
  msgstr "訪問数をリセット"
1312
 
1313
  #: redirection-strings.php:42 redirection-strings.php:52
1314
- #: redirection-strings.php:259 redirection-strings.php:295
1315
  msgid "Enable"
1316
  msgstr "有効化"
1317
 
1318
  #: redirection-strings.php:43 redirection-strings.php:51
1319
- #: redirection-strings.php:260 redirection-strings.php:294
1320
  msgid "Disable"
1321
  msgstr "無効化"
1322
 
1323
  #: redirection-strings.php:41 redirection-strings.php:49
1324
- #: redirection-strings.php:120 redirection-strings.php:121
1325
- #: redirection-strings.php:129 redirection-strings.php:133
1326
- #: redirection-strings.php:152 redirection-strings.php:258
1327
- #: redirection-strings.php:293
1328
  msgid "Delete"
1329
  msgstr "削除"
1330
 
1331
- #: redirection-strings.php:48 redirection-strings.php:292
1332
  msgid "Edit"
1333
  msgstr "編集"
1334
 
1335
- #: redirection-strings.php:257
1336
  msgid "Last Access"
1337
  msgstr "前回のアクセス"
1338
 
1339
- #: redirection-strings.php:256
1340
  msgid "Hits"
1341
  msgstr "ヒット数"
1342
 
1343
- #: redirection-strings.php:254 redirection-strings.php:308
1344
  msgid "URL"
1345
  msgstr "URL"
1346
 
1347
- #: redirection-strings.php:253
1348
  msgid "Type"
1349
  msgstr "タイプ"
1350
 
@@ -1356,44 +1406,44 @@ msgstr "編集済みの投稿"
1356
  msgid "Redirections"
1357
  msgstr "転送ルール"
1358
 
1359
- #: redirection-strings.php:265
1360
  msgid "User Agent"
1361
  msgstr "ユーザーエージェント"
1362
 
1363
- #: matches/user-agent.php:10 redirection-strings.php:222
1364
  msgid "URL and user agent"
1365
  msgstr "URL およびユーザーエージェント"
1366
 
1367
- #: redirection-strings.php:216
1368
  msgid "Target URL"
1369
  msgstr "ターゲット URL"
1370
 
1371
- #: matches/url.php:7 redirection-strings.php:218
1372
  msgid "URL only"
1373
  msgstr "URL のみ"
1374
 
1375
- #: redirection-strings.php:249 redirection-strings.php:271
1376
- #: redirection-strings.php:275 redirection-strings.php:283
1377
- #: redirection-strings.php:287
1378
  msgid "Regex"
1379
  msgstr "正規表現"
1380
 
1381
- #: redirection-strings.php:285
1382
  msgid "Referrer"
1383
  msgstr "リファラー"
1384
 
1385
- #: matches/referrer.php:10 redirection-strings.php:221
1386
  msgid "URL and referrer"
1387
  msgstr "URL およびリファラー"
1388
 
1389
- #: redirection-strings.php:210
1390
  msgid "Logged Out"
1391
  msgstr "ログアウト中"
1392
 
1393
- #: redirection-strings.php:208
1394
  msgid "Logged In"
1395
  msgstr "ログイン中"
1396
 
1397
- #: matches/login.php:8 redirection-strings.php:219
1398
  msgid "URL and login status"
1399
  msgstr "URL およびログイン状態"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-10-10 10:24:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr "エラー"
61
+
62
+ #: redirection-strings.php:322
63
  msgid "Enter full URL, including http:// or https://"
64
  msgstr "http:// や https:// を含めた完全な URL を入力してください"
65
 
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr "ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr "リダイレクトテスター"
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr "ターゲット"
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr "URL は Redirection によってリダイレクトされません"
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr "URL は Redirection によってリダイレクトされます"
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr "詳細のロードに失敗しました"
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
+ msgstr "一致するサーバーの URL を入力"
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "サーバー"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr "権限グループまたは権限の値を入力"
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr "権限グループ"
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr "このブラウザーリファラーテキストと一致"
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr "このブラウザーユーザーエージェントに一致"
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "リダイレクト元となる相対 URL"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "任意の説明欄 - リダイレクトの目的を説明してください"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr "一致した場合にリダイレクトさせたいターゲット URL"
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(ベータ)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "強制 HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr "GDPR / 個人情報"
141
 
147
  msgid "Please logout and login again."
148
  msgstr "再度ログインし直してください。"
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Redirection の動作には PHP v%1s が必要ですが、現在 v%2s をお使いです。PHP を更新してください。"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr "URL と権限グループ / 権限"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL とサーバー"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "フォームリクエスト"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "相対 /wp-json/"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr ""
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "デフォルト /wp-json/"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "サイト URL とホーム URL は一致しています"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
  msgstr "HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Accept Language"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "ヘッダー値"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "ヘッダー名"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "HTTP ヘッダー"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "WordPress フィルター名"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "フィルター名"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Cookie 値"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Cookie 名"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "一致しなかったときのターゲット URL"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "一致したときのターゲット URL"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr "URL と HTTP ヘッダー"
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr "URL とカスタムフィルター"
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL と Cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr "404 deleted"
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr "Raw /index.php?rest_route=/"
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "REST API"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr "Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr "これらの提案では解決しませんでした"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "Redirection のロードに失敗しました☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr "ユーザーエージェントエラー"
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "不明なユーザーエージェント"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "デバイス"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "オペレーティングシステム"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "ブラウザー"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr "エンジン"
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "ユーザーエージェント"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr "エージェント"
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "IP ロギングなし"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "フル IP ロギング"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "匿名 IP (最後の部分をマスクする)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "%(type) の変更を監視する"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "IP ロギング"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(IP のログレベルを選択)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr "位置情報"
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr "エージェントの情報"
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "IP でフィルター"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "リファラー / User Agent"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "位置情報エラー"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr "この情報の取得中に問題が発生しました。"
427
 
454
  msgid "Geo Location"
455
  msgstr "位置情報"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Powered by {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr "ゴミ箱"
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr "Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
+ msgstr "公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr "キャッシュしない"
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "1時間"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr "リダイレクトキャッシュ"
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "本当に %s からインポートしますか ?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "インポートプラグイン"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "全数 ="
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "%s からインポート"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
+ msgstr "データベースのテーブルに問題があります。詳しくは、<a href=\"%s\">support page</a> を御覧ください。"
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Redirection がきちんとインストールされていません"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
+ msgstr "Redirection の動作には WordPress v%1s が必要ですが、v%2s を利用しているようです。WordPress をアップデートしてください。"
537
 
538
  #: models/importer.php:149
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr "初期設定の WordPress \"old slugs\""
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr ""
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr ""
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr "⚡️マジック修正⚡️"
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "プラグインステータス"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr "カスタム"
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr "モバイル"
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "フィード読者"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr "ライブラリ"
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
+ msgstr "変更を監視する URL"
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr "このグループへの変更を保存"
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr "例: \"/amp\""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "URL モニター"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "404を削除"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "この404エラーに対するすべてのログを削除"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "すべての IP %s からのものを削除"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr "すべての \"%s\" に一致するものを削除"
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr "大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr "また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr "CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "Redirection のロードに失敗しました"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "グループの作成に失敗しました"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "データベーステーブルの修正に失敗しました"
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr ""
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "ロード中です。お待ち下さい…"
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
721
 
733
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
734
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
735
 
736
+ #: redirection-admin.php:445 redirection-strings.php:22
737
  msgid "Create Issue"
738
  msgstr "Issue を作成"
739
 
745
  msgid "Important details"
746
  msgstr "重要な詳細"
747
 
748
+ #: redirection-strings.php:310
749
  msgid "Need help?"
750
  msgstr "ヘルプが必要ですか?"
751
 
752
+ #: redirection-strings.php:313
753
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
754
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
755
 
756
+ #: redirection-strings.php:267
757
  msgid "Pos"
758
  msgstr "Pos"
759
 
760
+ #: redirection-strings.php:250
761
  msgid "410 - Gone"
762
  msgstr "410 - 消滅"
763
 
764
+ #: redirection-strings.php:257
765
  msgid "Position"
766
  msgstr "配置"
767
 
768
+ #: redirection-strings.php:207
769
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
770
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
771
 
772
+ #: redirection-strings.php:208
773
  msgid "Apache Module"
774
  msgstr "Apache モジュール"
775
 
776
+ #: redirection-strings.php:209
777
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
778
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
779
 
780
+ #: redirection-strings.php:88
781
  msgid "Import to group"
782
  msgstr "グループにインポート"
783
 
784
+ #: redirection-strings.php:89
785
  msgid "Import a CSV, .htaccess, or JSON file."
786
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
787
 
788
+ #: redirection-strings.php:90
789
  msgid "Click 'Add File' or drag and drop here."
790
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
791
 
792
+ #: redirection-strings.php:91
793
  msgid "Add File"
794
  msgstr "ファイルを追加"
795
 
796
+ #: redirection-strings.php:92
797
  msgid "File selected"
798
  msgstr "選択されたファイル"
799
 
800
+ #: redirection-strings.php:95
801
  msgid "Importing"
802
  msgstr "インポート中"
803
 
804
+ #: redirection-strings.php:96
805
  msgid "Finished importing"
806
  msgstr "インポートが完了しました"
807
 
808
+ #: redirection-strings.php:97
809
  msgid "Total redirects imported:"
810
  msgstr "インポートされたリダイレクト数: "
811
 
812
+ #: redirection-strings.php:98
813
  msgid "Double-check the file is the correct format!"
814
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
815
 
816
+ #: redirection-strings.php:99
817
  msgid "OK"
818
  msgstr "OK"
819
 
820
+ #: redirection-strings.php:100 redirection-strings.php:263
821
  msgid "Close"
822
  msgstr "閉じる"
823
 
824
+ #: redirection-strings.php:105
825
  msgid "All imports will be appended to the current database."
826
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
827
 
828
+ #: redirection-strings.php:107 redirection-strings.php:127
829
  msgid "Export"
830
  msgstr "エクスポート"
831
 
832
+ #: redirection-strings.php:108
833
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
834
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
835
 
836
+ #: redirection-strings.php:109
837
  msgid "Everything"
838
  msgstr "すべて"
839
 
840
+ #: redirection-strings.php:110
841
  msgid "WordPress redirects"
842
  msgstr "WordPress リダイレクト"
843
 
844
+ #: redirection-strings.php:111
845
  msgid "Apache redirects"
846
  msgstr "Apache リダイレクト"
847
 
848
+ #: redirection-strings.php:112
849
  msgid "Nginx redirects"
850
  msgstr "Nginx リダイレクト"
851
 
852
+ #: redirection-strings.php:113
853
  msgid "CSV"
854
  msgstr "CSV"
855
 
856
+ #: redirection-strings.php:114
857
  msgid "Apache .htaccess"
858
  msgstr "Apache .htaccess"
859
 
860
+ #: redirection-strings.php:115
861
  msgid "Nginx rewrite rules"
862
  msgstr "Nginx のリライトルール"
863
 
864
+ #: redirection-strings.php:116
865
  msgid "Redirection JSON"
866
  msgstr "Redirection JSON"
867
 
868
+ #: redirection-strings.php:117
869
  msgid "View"
870
  msgstr "表示"
871
 
872
+ #: redirection-strings.php:119
873
  msgid "Log files can be exported from the log pages."
874
  msgstr "ログファイルはログページにてエクスポート出来ます。"
875
 
876
+ #: redirection-strings.php:59 redirection-strings.php:154
877
  msgid "Import/Export"
878
  msgstr "インポート / エクスポート"
879
 
889
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
890
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
891
 
892
+ #: redirection-strings.php:166
893
  msgid "I'd like to support some more."
894
  msgstr "もっとサポートがしたいです。"
895
 
896
+ #: redirection-strings.php:169
897
  msgid "Support 💰"
898
  msgstr "サポート💰"
899
 
900
+ #: redirection-strings.php:363
901
  msgid "Redirection saved"
902
  msgstr "リダイレクトが保存されました"
903
 
904
+ #: redirection-strings.php:364
905
  msgid "Log deleted"
906
  msgstr "ログが削除されました"
907
 
908
+ #: redirection-strings.php:365
909
  msgid "Settings saved"
910
  msgstr "設定が保存されました"
911
 
912
+ #: redirection-strings.php:366
913
  msgid "Group saved"
914
  msgstr "グループが保存されました"
915
 
916
+ #: redirection-strings.php:362
917
  msgid "Are you sure you want to delete this item?"
918
  msgid_plural "Are you sure you want to delete these items?"
919
  msgstr[0] "本当に削除してもよろしいですか?"
920
 
921
+ #: redirection-strings.php:309
922
  msgid "pass"
923
  msgstr "パス"
924
 
925
+ #: redirection-strings.php:274
926
  msgid "All groups"
927
  msgstr "すべてのグループ"
928
 
929
+ #: redirection-strings.php:244
930
  msgid "301 - Moved Permanently"
931
  msgstr "301 - 恒久的に移動"
932
 
933
+ #: redirection-strings.php:245
934
  msgid "302 - Found"
935
  msgstr "302 - 発見"
936
 
937
+ #: redirection-strings.php:246
938
  msgid "307 - Temporary Redirect"
939
  msgstr "307 - 一時リダイレクト"
940
 
941
+ #: redirection-strings.php:247
942
  msgid "308 - Permanent Redirect"
943
  msgstr "308 - 恒久リダイレクト"
944
 
945
+ #: redirection-strings.php:248
946
  msgid "401 - Unauthorized"
947
  msgstr "401 - 認証が必要"
948
 
949
+ #: redirection-strings.php:249
950
  msgid "404 - Not Found"
951
  msgstr "404 - 未検出"
952
 
953
+ #: redirection-strings.php:251
954
  msgid "Title"
955
  msgstr "タイトル"
956
 
957
+ #: redirection-strings.php:254
958
  msgid "When matched"
959
  msgstr "マッチした時"
960
 
961
+ #: redirection-strings.php:255
962
  msgid "with HTTP code"
963
  msgstr "次の HTTP コードと共に"
964
 
965
+ #: redirection-strings.php:264
966
  msgid "Show advanced options"
967
  msgstr "高度な設定を表示"
968
 
969
+ #: redirection-strings.php:224
970
  msgid "Matched Target"
971
  msgstr "見つかったターゲット"
972
 
973
+ #: redirection-strings.php:226
974
  msgid "Unmatched Target"
975
  msgstr "ターゲットが見つかりません"
976
 
977
+ #: redirection-strings.php:218 redirection-strings.php:219
978
  msgid "Saving..."
979
  msgstr "保存中…"
980
 
981
+ #: redirection-strings.php:157
982
  msgid "View notice"
983
  msgstr "通知を見る"
984
 
985
+ #: models/redirect.php:526
986
  msgid "Invalid source URL"
987
  msgstr "不正な元 URL"
988
 
989
+ #: models/redirect.php:458
990
  msgid "Invalid redirect action"
991
  msgstr "不正なリダイレクトアクション"
992
 
993
+ #: models/redirect.php:452
994
  msgid "Invalid redirect matcher"
995
  msgstr "不正なリダイレクトマッチャー"
996
 
997
+ #: models/redirect.php:187
998
  msgid "Unable to add new redirect"
999
  msgstr "新しいリダイレクトの追加に失敗しました"
1000
 
1010
  msgid "Log entries (%d max)"
1011
  msgstr "ログ (最大 %d)"
1012
 
1013
+ #: redirection-strings.php:350
1014
  msgid "Search by IP"
1015
  msgstr "IP による検索"
1016
 
1017
+ #: redirection-strings.php:345
1018
  msgid "Select bulk action"
1019
  msgstr "一括操作を選択"
1020
 
1021
+ #: redirection-strings.php:346
1022
  msgid "Bulk Actions"
1023
  msgstr "一括操作"
1024
 
1025
+ #: redirection-strings.php:347
1026
  msgid "Apply"
1027
  msgstr "適応"
1028
 
1029
+ #: redirection-strings.php:338
1030
  msgid "First page"
1031
  msgstr "最初のページ"
1032
 
1033
+ #: redirection-strings.php:339
1034
  msgid "Prev page"
1035
  msgstr "前のページ"
1036
 
1037
+ #: redirection-strings.php:340
1038
  msgid "Current Page"
1039
  msgstr "現在のページ"
1040
 
1041
+ #: redirection-strings.php:341
1042
  msgid "of %(page)s"
1043
  msgstr "%(page)s"
1044
 
1045
+ #: redirection-strings.php:342
1046
  msgid "Next page"
1047
  msgstr "次のページ"
1048
 
1049
+ #: redirection-strings.php:343
1050
  msgid "Last page"
1051
  msgstr "最後のページ"
1052
 
1053
+ #: redirection-strings.php:344
1054
  msgid "%s item"
1055
  msgid_plural "%s items"
1056
  msgstr[0] "%s 個のアイテム"
1057
 
1058
+ #: redirection-strings.php:337
1059
  msgid "Select All"
1060
  msgstr "すべて選択"
1061
 
1062
+ #: redirection-strings.php:349
1063
  msgid "Sorry, something went wrong loading the data - please try again"
1064
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
1065
 
1066
+ #: redirection-strings.php:348
1067
  msgid "No results"
1068
  msgstr "結果なし"
1069
 
1070
+ #: redirection-strings.php:123
1071
  msgid "Delete the logs - are you sure?"
1072
  msgstr "本当にログを消去しますか ?"
1073
 
1074
+ #: redirection-strings.php:124
1075
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1076
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
1077
 
1078
+ #: redirection-strings.php:125
1079
  msgid "Yes! Delete the logs"
1080
  msgstr "ログを消去する"
1081
 
1082
+ #: redirection-strings.php:126
1083
  msgid "No! Don't delete the logs"
1084
  msgstr "ログを消去しない"
1085
 
1086
+ #: redirection-strings.php:326
1087
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1088
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
1089
 
1090
+ #: redirection-strings.php:325 redirection-strings.php:327
1091
  msgid "Newsletter"
1092
  msgstr "ニュースレター"
1093
 
1094
+ #: redirection-strings.php:328
1095
  msgid "Want to keep up to date with changes to Redirection?"
1096
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
1097
 
1098
+ #: redirection-strings.php:329
1099
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1100
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
1101
 
1102
+ #: redirection-strings.php:330
1103
  msgid "Your email address:"
1104
  msgstr "メールアドレス: "
1105
 
1106
+ #: redirection-strings.php:165
1107
  msgid "You've supported this plugin - thank you!"
1108
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
1109
 
1110
+ #: redirection-strings.php:168
1111
  msgid "You get useful software and I get to carry on making it better."
1112
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
1113
 
1114
+ #: redirection-strings.php:176 redirection-strings.php:181
1115
  msgid "Forever"
1116
  msgstr "永久に"
1117
 
1118
+ #: redirection-strings.php:158
1119
  msgid "Delete the plugin - are you sure?"
1120
  msgstr "本当にプラグインを削除しますか ?"
1121
 
1122
+ #: redirection-strings.php:159
1123
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1124
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
1125
 
1126
+ #: redirection-strings.php:160
1127
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1128
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
1129
 
1130
+ #: redirection-strings.php:161
1131
  msgid "Yes! Delete the plugin"
1132
  msgstr "プラグインを消去する"
1133
 
1134
+ #: redirection-strings.php:162
1135
  msgid "No! Don't delete the plugin"
1136
  msgstr "プラグインを消去しない"
1137
 
1143
  msgid "Manage all your 301 redirects and monitor 404 errors"
1144
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
1145
 
1146
+ #: redirection-strings.php:167
1147
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1148
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1149
 
1151
  msgid "Redirection Support"
1152
  msgstr "Redirection を応援する"
1153
 
1154
+ #: redirection-strings.php:63 redirection-strings.php:156
1155
  msgid "Support"
1156
  msgstr "サポート"
1157
 
1158
+ #: redirection-strings.php:153
1159
  msgid "404s"
1160
  msgstr "404 エラー"
1161
 
1162
+ #: redirection-strings.php:152
1163
  msgid "Log"
1164
  msgstr "ログ"
1165
 
1166
+ #: redirection-strings.php:163
1167
  msgid "Delete Redirection"
1168
  msgstr "転送ルールを削除"
1169
 
1170
+ #: redirection-strings.php:93
1171
  msgid "Upload"
1172
  msgstr "アップロード"
1173
 
1174
+ #: redirection-strings.php:104
1175
  msgid "Import"
1176
  msgstr "インポート"
1177
 
1178
+ #: redirection-strings.php:217
1179
  msgid "Update"
1180
  msgstr "更新"
1181
 
1182
+ #: redirection-strings.php:206
1183
  msgid "Auto-generate URL"
1184
  msgstr "URL を自動生成 "
1185
 
1186
+ #: redirection-strings.php:205
1187
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1188
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1189
 
1190
+ #: redirection-strings.php:204
1191
  msgid "RSS Token"
1192
  msgstr "RSS トークン"
1193
 
1194
+ #: redirection-strings.php:198
1195
  msgid "404 Logs"
1196
  msgstr "404 ログ"
1197
 
1198
+ #: redirection-strings.php:197 redirection-strings.php:199
1199
  msgid "(time to keep logs for)"
1200
  msgstr "(ログの保存期間)"
1201
 
1202
+ #: redirection-strings.php:196
1203
  msgid "Redirect Logs"
1204
  msgstr "転送ログ"
1205
 
1206
+ #: redirection-strings.php:195
1207
  msgid "I'm a nice person and I have helped support the author of this plugin"
1208
  msgstr "このプラグインの作者に対する援助を行いました"
1209
 
1210
+ #: redirection-strings.php:170
1211
  msgid "Plugin Support"
1212
  msgstr "プラグインサポート"
1213
 
1214
+ #: redirection-strings.php:62 redirection-strings.php:155
1215
  msgid "Options"
1216
  msgstr "設定"
1217
 
1218
+ #: redirection-strings.php:175
1219
  msgid "Two months"
1220
  msgstr "2ヶ月"
1221
 
1222
+ #: redirection-strings.php:174
1223
  msgid "A month"
1224
  msgstr "1ヶ月"
1225
 
1226
+ #: redirection-strings.php:173 redirection-strings.php:180
1227
  msgid "A week"
1228
  msgstr "1週間"
1229
 
1230
+ #: redirection-strings.php:172 redirection-strings.php:179
1231
  msgid "A day"
1232
  msgstr "1日"
1233
 
1234
+ #: redirection-strings.php:171
1235
  msgid "No logs"
1236
  msgstr "ログなし"
1237
 
1238
+ #: redirection-strings.php:122
1239
  msgid "Delete All"
1240
  msgstr "すべてを削除"
1241
 
1247
  msgid "Add Group"
1248
  msgstr "グループを追加"
1249
 
1250
+ #: redirection-strings.php:351
1251
  msgid "Search"
1252
  msgstr "検索"
1253
 
1254
+ #: redirection-strings.php:58 redirection-strings.php:151
1255
  msgid "Groups"
1256
  msgstr "グループ"
1257
 
1258
  #: redirection-strings.php:14 redirection-strings.php:55
1259
+ #: redirection-strings.php:258
1260
  msgid "Save"
1261
  msgstr "保存"
1262
 
1263
+ #: redirection-strings.php:256
1264
  msgid "Group"
1265
  msgstr "グループ"
1266
 
1267
+ #: redirection-strings.php:253
1268
  msgid "Match"
1269
  msgstr "一致条件"
1270
 
1271
+ #: redirection-strings.php:275
1272
  msgid "Add new redirection"
1273
  msgstr "新しい転送ルールを追加"
1274
 
1275
+ #: redirection-strings.php:56 redirection-strings.php:94
1276
+ #: redirection-strings.php:262
1277
  msgid "Cancel"
1278
  msgstr "キャンセル"
1279
 
1280
+ #: redirection-strings.php:118
1281
  msgid "Download"
1282
  msgstr "ダウンロード"
1283
 
1289
  msgid "Settings"
1290
  msgstr "設定"
1291
 
1292
+ #: redirection-strings.php:243
1293
  msgid "Do nothing"
1294
  msgstr "何もしない"
1295
 
1296
+ #: redirection-strings.php:242
1297
  msgid "Error (404)"
1298
  msgstr "エラー (404)"
1299
 
1300
+ #: redirection-strings.php:241
1301
  msgid "Pass-through"
1302
  msgstr "通過"
1303
 
1304
+ #: redirection-strings.php:240
1305
  msgid "Redirect to random post"
1306
  msgstr "ランダムな記事へ転送"
1307
 
1308
+ #: redirection-strings.php:239
1309
  msgid "Redirect to URL"
1310
  msgstr "URL へ転送"
1311
 
1312
+ #: models/redirect.php:516
1313
  msgid "Invalid group when creating redirect"
1314
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1315
 
1316
+ #: redirection-strings.php:131 redirection-strings.php:140
1317
  msgid "IP"
1318
  msgstr "IP"
1319
 
1320
+ #: redirection-strings.php:129 redirection-strings.php:138
1321
+ #: redirection-strings.php:259
1322
  msgid "Source URL"
1323
  msgstr "ソース URL"
1324
 
1325
+ #: redirection-strings.php:128 redirection-strings.php:137
1326
  msgid "Date"
1327
  msgstr "日付"
1328
 
1329
+ #: redirection-strings.php:142 redirection-strings.php:146
1330
+ #: redirection-strings.php:276
1331
  msgid "Add Redirect"
1332
  msgstr "転送ルールを追加"
1333
 
1343
  msgid "Module"
1344
  msgstr "モジュール"
1345
 
1346
+ #: redirection-strings.php:39 redirection-strings.php:150
1347
  msgid "Redirects"
1348
  msgstr "転送ルール"
1349
 
1352
  msgid "Name"
1353
  msgstr "名称"
1354
 
1355
+ #: redirection-strings.php:336
1356
  msgid "Filter"
1357
  msgstr "フィルター"
1358
 
1359
+ #: redirection-strings.php:273
1360
  msgid "Reset hits"
1361
  msgstr "訪問数をリセット"
1362
 
1363
  #: redirection-strings.php:42 redirection-strings.php:52
1364
+ #: redirection-strings.php:271 redirection-strings.php:308
1365
  msgid "Enable"
1366
  msgstr "有効化"
1367
 
1368
  #: redirection-strings.php:43 redirection-strings.php:51
1369
+ #: redirection-strings.php:272 redirection-strings.php:306
1370
  msgid "Disable"
1371
  msgstr "無効化"
1372
 
1373
  #: redirection-strings.php:41 redirection-strings.php:49
1374
+ #: redirection-strings.php:132 redirection-strings.php:133
1375
+ #: redirection-strings.php:141 redirection-strings.php:145
1376
+ #: redirection-strings.php:164 redirection-strings.php:270
1377
+ #: redirection-strings.php:305
1378
  msgid "Delete"
1379
  msgstr "削除"
1380
 
1381
+ #: redirection-strings.php:48 redirection-strings.php:304
1382
  msgid "Edit"
1383
  msgstr "編集"
1384
 
1385
+ #: redirection-strings.php:269
1386
  msgid "Last Access"
1387
  msgstr "前回のアクセス"
1388
 
1389
+ #: redirection-strings.php:268
1390
  msgid "Hits"
1391
  msgstr "ヒット数"
1392
 
1393
+ #: redirection-strings.php:266 redirection-strings.php:321
1394
  msgid "URL"
1395
  msgstr "URL"
1396
 
1397
+ #: redirection-strings.php:265
1398
  msgid "Type"
1399
  msgstr "タイプ"
1400
 
1406
  msgid "Redirections"
1407
  msgstr "転送ルール"
1408
 
1409
+ #: redirection-strings.php:277
1410
  msgid "User Agent"
1411
  msgstr "ユーザーエージェント"
1412
 
1413
+ #: matches/user-agent.php:10 redirection-strings.php:234
1414
  msgid "URL and user agent"
1415
  msgstr "URL およびユーザーエージェント"
1416
 
1417
+ #: redirection-strings.php:228
1418
  msgid "Target URL"
1419
  msgstr "ターゲット URL"
1420
 
1421
+ #: matches/url.php:7 redirection-strings.php:230
1422
  msgid "URL only"
1423
  msgstr "URL のみ"
1424
 
1425
+ #: redirection-strings.php:261 redirection-strings.php:283
1426
+ #: redirection-strings.php:287 redirection-strings.php:295
1427
+ #: redirection-strings.php:299
1428
  msgid "Regex"
1429
  msgstr "正規表現"
1430
 
1431
+ #: redirection-strings.php:297
1432
  msgid "Referrer"
1433
  msgstr "リファラー"
1434
 
1435
+ #: matches/referrer.php:10 redirection-strings.php:233
1436
  msgid "URL and referrer"
1437
  msgstr "URL およびリファラー"
1438
 
1439
+ #: redirection-strings.php:222
1440
  msgid "Logged Out"
1441
  msgstr "ログアウト中"
1442
 
1443
+ #: redirection-strings.php:220
1444
  msgid "Logged In"
1445
  msgstr "ログイン中"
1446
 
1447
+ #: matches/login.php:8 redirection-strings.php:231
1448
  msgid "URL and login status"
1449
  msgstr "URL およびログイン状態"
locale/redirection-lv.mo CHANGED
Binary file
locale/redirection-lv.po CHANGED
@@ -11,83 +11,131 @@ msgstr ""
11
  "Language: lv\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
15
- msgid "Enter full URL, including http:// or https://"
 
 
 
 
 
 
 
 
16
  msgstr ""
17
 
18
  #: redirection-strings.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr ""
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr "Pāradresāciju Testēšana"
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr "URL netiek pāradresēts ar šo spraudni"
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr "URL tiek pāradresēts ar šo spraudni"
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr "Neizdevās izgūt informāciju"
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "Servera domēns"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "Relatīvs sākotnējais URL no kura vēlies veikt pāradresāciju"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "Skaidrojums (nav obligāti) - apraksti, kāds ir mērķis šai pāradresācijai"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr "Galamērķa URL, uz kuru Tu vēlies pāradresēt sākotnējo saiti"
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(eksperimentāls)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "Piespiedu pāradresācija no HTTP uz HTTPS. Lūdzu pārliecinies, ka Tavai tīmekļa vietnei HTTPS darbojas korekti, pirms šī parametra iespējošanas."
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "Piespiedu HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
  msgstr "GDPR / Informācija par privātumu"
93
 
@@ -99,31 +147,31 @@ msgstr "Pievienot Jaunu"
99
  msgid "Please logout and login again."
100
  msgstr "Lūdzu izej no sistēmas, un autorizējies tajā vēlreiz."
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "Spraudnim \"Pāradresācija\" nepieciešama PHP v%1s versija. Tu pašlaik izmanto v%2s - lūdzu atjaunini vai pārslēdz PHP versiju šai tīmekļa vietnei."
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr ""
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL un servera domēns"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr ""
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr ""
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr ""
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr ""
129
 
@@ -143,51 +191,51 @@ msgstr "Tīmekļa vietnes un Sākuma URL ir pretrunīgi - lūdzu veic labojumus
143
  msgid "Site and home are consistent"
144
  msgstr "Tīmekļa vietnes un sākumlapas URL ir saderīgi"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
- msgstr "Ņem vērā, ka HTTP galveņu padošana uz PHP ir Tavā pārziņā. Ja Tev šajā jautājumā ir nepieciešama palīdzība, sazinies ar savu tīmekļa vietnes uzturētāju."
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr ""
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Galvenes saturs"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Galvenes nosaukums"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "HTTP Galvene"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "WordPress filtra nosaukums"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Filtra Nosaukums"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
  msgstr "Sīkdatnes saturs"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Sīkdatnes nosaukums"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Sīkdatne"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "Galamērķa URL, ja nosacījums nav izpildīts"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "Galamērķa URL, ja nosacījums izpildīts"
193
 
@@ -199,31 +247,31 @@ msgstr ""
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "Ja Tu izmanto kešošanas sistēmu, piemēram \"CloudFlare\", lūdzi izlasi šo:"
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr ""
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr ""
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL un sīkdatne"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr ""
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr ""
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "REST API"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr ""
229
 
@@ -255,11 +303,11 @@ msgstr ""
255
  msgid "None of the suggestions helped"
256
  msgstr "Neviens no ieteikumiem nelīdzēja"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "Lūdzu apskati <a href=\"https://redirection.me/support/problems/\">sarakstu ar biežākajām problēmām</a>."
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "Neizdevās ielādēt spraudni \"Pāradresācija\" ☹️"
265
 
@@ -296,75 +344,75 @@ msgstr ""
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr ""
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Nezināma Iekārta"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Iekārta"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Operētājsistēma"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Pārlūkprogramma"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr ""
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "Iekārtas dati"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr ""
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "Bez IP žurnalēšanas"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Pilna IP žurnalēšana"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Daļēja IP maskēšana"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Pārraudzīt izmaiņas %(type)s saturā"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "IP Žurnalēšana"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(atlasiet IP žurnalēšanas līmeni)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr ""
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr ""
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "Atlasīt pēc IP"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "Ieteicējs / Iekārtas Dati"
370
 
@@ -372,7 +420,8 @@ msgstr "Ieteicējs / Iekārtas Dati"
372
  msgid "Geo IP Error"
373
  msgstr "IP Ģeolokācijas Kļūda"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr ""
378
 
@@ -405,7 +454,8 @@ msgstr "Laika Zona"
405
  msgid "Geo Location"
406
  msgstr "Ģeogr. Atrašanās Vieta"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Darbību nodrošina {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Darbību nodrošina {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr ""
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr ""
419
 
@@ -425,63 +475,63 @@ msgstr ""
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr ""
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "Ja vēlies ziņot par nepilnību, lūdzu iepazīsties ar {{report}}Ziņošana Par Nepilnībām{{/report}} ceļvedi."
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr ""
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr ""
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr ""
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr ""
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr ""
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "Vai tiešām vēlies importēt datus no %s?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Importēšana no citiem Spraudņiem"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr ""
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr ""
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr ""
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr ""
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "Pāradresētājs nav pareizi uzstādīts"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr ""
487
 
@@ -489,71 +539,71 @@ msgstr ""
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr ""
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr ""
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr ""
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr ""
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr ""
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "Spraudņa Statuss"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr ""
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "Jaunumu Plūsmas lasītāji"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr ""
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr ""
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr ""
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr ""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "URL Pārraudzība"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "Dzēst 404 kļūdas"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "Dzēst visus ierakstus par šo 404"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "Dzēst visu par IP %s"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr ""
559
 
@@ -561,23 +611,23 @@ msgstr ""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr ""
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr ""
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr ""
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr ""
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "Nav iespējams izveidot grupu"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "Neizdevās izlabot tabulas datubāzē"
583
 
@@ -653,19 +703,19 @@ msgstr ""
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr ""
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr ""
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr ""
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr ""
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr ""
671
 
@@ -681,7 +731,7 @@ msgstr ""
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr ""
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr ""
687
 
@@ -693,135 +743,135 @@ msgstr ""
693
  msgid "Important details"
694
  msgstr ""
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Nepieciešama palīdzība?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr ""
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr "Secība"
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 - Aizvākts"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Pozīcija"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr ""
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr ""
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr ""
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr ""
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr ""
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr ""
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr ""
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr ""
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr ""
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr ""
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr ""
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr ""
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "Labi"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Aizvērt"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr ""
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Eksportēšana"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr ""
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr ""
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr ""
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr ""
799
 
800
- #: redirection-strings.php:101
801
  msgid "CSV"
802
  msgstr "CSV"
803
 
804
- #: redirection-strings.php:102
805
  msgid "Apache .htaccess"
806
  msgstr "Apache .htaccess"
807
 
808
- #: redirection-strings.php:103
809
  msgid "Nginx rewrite rules"
810
  msgstr ""
811
 
812
- #: redirection-strings.php:104
813
  msgid "Redirection JSON"
814
  msgstr "Pāradresētāja JSON"
815
 
816
- #: redirection-strings.php:105
817
  msgid "View"
818
  msgstr "Skatīt"
819
 
820
- #: redirection-strings.php:107
821
  msgid "Log files can be exported from the log pages."
822
  msgstr ""
823
 
824
- #: redirection-strings.php:59 redirection-strings.php:142
825
  msgid "Import/Export"
826
  msgstr "Importēt/Eksportēt"
827
 
@@ -837,114 +887,114 @@ msgstr "404 kļūdas"
837
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
838
  msgstr ""
839
 
840
- #: redirection-strings.php:154
841
  msgid "I'd like to support some more."
842
  msgstr "Es vēlos sniegt papildus atbalstu."
843
 
844
- #: redirection-strings.php:157
845
  msgid "Support 💰"
846
  msgstr "Atbalstīt! 💰"
847
 
848
- #: redirection-strings.php:347
849
  msgid "Redirection saved"
850
  msgstr ""
851
 
852
- #: redirection-strings.php:348
853
  msgid "Log deleted"
854
  msgstr ""
855
 
856
- #: redirection-strings.php:349
857
  msgid "Settings saved"
858
  msgstr "Uzstādījumi tika saglabāti"
859
 
860
- #: redirection-strings.php:350
861
  msgid "Group saved"
862
  msgstr "Grupa tika saglabāta"
863
 
864
- #: redirection-strings.php:346
865
  msgid "Are you sure you want to delete this item?"
866
  msgid_plural "Are you sure you want to delete these items?"
867
  msgstr[0] "Vai tiešām vēlies dzēst šo vienību (-as)?"
868
  msgstr[1] "Vai tiešām vēlies dzēst šīs vienības?"
869
  msgstr[2] "Vai tiešām vēlies dzēst šīs vienības?"
870
 
871
- #: redirection-strings.php:296
872
  msgid "pass"
873
  msgstr ""
874
 
875
- #: redirection-strings.php:262
876
  msgid "All groups"
877
  msgstr "Visas grupas"
878
 
879
- #: redirection-strings.php:232
880
  msgid "301 - Moved Permanently"
881
  msgstr "301 - Pārvietots Pavisam"
882
 
883
- #: redirection-strings.php:233
884
  msgid "302 - Found"
885
  msgstr "302 - Atrasts"
886
 
887
- #: redirection-strings.php:234
888
  msgid "307 - Temporary Redirect"
889
  msgstr "307 - Pagaidu Pāradresācija"
890
 
891
- #: redirection-strings.php:235
892
  msgid "308 - Permanent Redirect"
893
  msgstr "308 - Galēja Pāradresācija"
894
 
895
- #: redirection-strings.php:236
896
  msgid "401 - Unauthorized"
897
  msgstr "401 - Nav Autorizējies"
898
 
899
- #: redirection-strings.php:237
900
  msgid "404 - Not Found"
901
  msgstr "404 - Nav Atrasts"
902
 
903
- #: redirection-strings.php:239
904
  msgid "Title"
905
  msgstr "Nosaukums"
906
 
907
- #: redirection-strings.php:242
908
  msgid "When matched"
909
  msgstr ""
910
 
911
- #: redirection-strings.php:243
912
  msgid "with HTTP code"
913
  msgstr "ar HTTP kodu"
914
 
915
- #: redirection-strings.php:252
916
  msgid "Show advanced options"
917
  msgstr "Rādīt papildu iespējas"
918
 
919
- #: redirection-strings.php:212
920
  msgid "Matched Target"
921
  msgstr ""
922
 
923
- #: redirection-strings.php:214
924
  msgid "Unmatched Target"
925
  msgstr ""
926
 
927
- #: redirection-strings.php:206 redirection-strings.php:207
928
  msgid "Saving..."
929
  msgstr "Saglabā izmaiņas..."
930
 
931
- #: redirection-strings.php:145
932
  msgid "View notice"
933
  msgstr ""
934
 
935
- #: models/redirect.php:524
936
  msgid "Invalid source URL"
937
  msgstr ""
938
 
939
- #: models/redirect.php:456
940
  msgid "Invalid redirect action"
941
  msgstr ""
942
 
943
- #: models/redirect.php:450
944
  msgid "Invalid redirect matcher"
945
  msgstr ""
946
 
947
- #: models/redirect.php:185
948
  msgid "Unable to add new redirect"
949
  msgstr ""
950
 
@@ -960,130 +1010,130 @@ msgstr ""
960
  msgid "Log entries (%d max)"
961
  msgstr ""
962
 
963
- #: redirection-strings.php:334
964
  msgid "Search by IP"
965
  msgstr "Meklēt pēc IP"
966
 
967
- #: redirection-strings.php:329
968
  msgid "Select bulk action"
969
  msgstr "Izvēlies lielapjoma darbību"
970
 
971
- #: redirection-strings.php:330
972
  msgid "Bulk Actions"
973
  msgstr "Lielapjoma Darbības"
974
 
975
- #: redirection-strings.php:331
976
  msgid "Apply"
977
  msgstr "Pielietot"
978
 
979
- #: redirection-strings.php:322
980
  msgid "First page"
981
  msgstr "Pirmā lapa"
982
 
983
- #: redirection-strings.php:323
984
  msgid "Prev page"
985
  msgstr "Iepriekšējā lapa"
986
 
987
- #: redirection-strings.php:324
988
  msgid "Current Page"
989
  msgstr ""
990
 
991
- #: redirection-strings.php:325
992
  msgid "of %(page)s"
993
  msgstr ""
994
 
995
- #: redirection-strings.php:326
996
  msgid "Next page"
997
  msgstr "Nākošā lapa"
998
 
999
- #: redirection-strings.php:327
1000
  msgid "Last page"
1001
  msgstr "Pēdējā lapa"
1002
 
1003
- #: redirection-strings.php:328
1004
  msgid "%s item"
1005
  msgid_plural "%s items"
1006
  msgstr[0] "%s vienība"
1007
  msgstr[1] "%s vienības"
1008
  msgstr[2] "%s vienības"
1009
 
1010
- #: redirection-strings.php:321
1011
  msgid "Select All"
1012
  msgstr "Iezīmēt Visu"
1013
 
1014
- #: redirection-strings.php:333
1015
  msgid "Sorry, something went wrong loading the data - please try again"
1016
  msgstr ""
1017
 
1018
- #: redirection-strings.php:332
1019
  msgid "No results"
1020
  msgstr ""
1021
 
1022
- #: redirection-strings.php:111
1023
  msgid "Delete the logs - are you sure?"
1024
  msgstr ""
1025
 
1026
- #: redirection-strings.php:112
1027
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1028
  msgstr ""
1029
 
1030
- #: redirection-strings.php:113
1031
  msgid "Yes! Delete the logs"
1032
  msgstr "Jā! Dzēst žurnālus"
1033
 
1034
- #: redirection-strings.php:114
1035
  msgid "No! Don't delete the logs"
1036
  msgstr "Nē! Nedzēst žurnālus"
1037
 
1038
- #: redirection-strings.php:312
1039
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1040
  msgstr ""
1041
 
1042
- #: redirection-strings.php:311 redirection-strings.php:313
1043
  msgid "Newsletter"
1044
  msgstr "Jaunāko ziņu Abonēšana"
1045
 
1046
- #: redirection-strings.php:314
1047
  msgid "Want to keep up to date with changes to Redirection?"
1048
  msgstr "Vai vēlies pirmais uzzināt par jaunākajām izmaiņām \"Pāradresācija\" spraudnī?"
1049
 
1050
- #: redirection-strings.php:315
1051
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1052
  msgstr ""
1053
 
1054
- #: redirection-strings.php:316
1055
  msgid "Your email address:"
1056
  msgstr "Tava e-pasta adrese:"
1057
 
1058
- #: redirection-strings.php:153
1059
  msgid "You've supported this plugin - thank you!"
1060
  msgstr "Tu esi atbalstījis šo spraudni - paldies Tev!"
1061
 
1062
- #: redirection-strings.php:156
1063
  msgid "You get useful software and I get to carry on making it better."
1064
  msgstr "Tu saņem noderīgu programmatūru, un es turpinu to padarīt labāku."
1065
 
1066
- #: redirection-strings.php:164 redirection-strings.php:169
1067
  msgid "Forever"
1068
  msgstr "Mūžīgi"
1069
 
1070
- #: redirection-strings.php:146
1071
  msgid "Delete the plugin - are you sure?"
1072
  msgstr "Spraudņa dzēšana - vai tiešām vēlies to darīt?"
1073
 
1074
- #: redirection-strings.php:147
1075
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1076
  msgstr "Dzēšot šo spraudni, tiks nodzēstas visas Tevis izveidotās pāradresācijas, žurnalētie dati un spraudņa uzstādījumi. Dari to tikai tad, ja vēlies aizvākt spraudni pavisam, vai arī veikt tā pilnīgu atiestatīšanu."
1077
 
1078
- #: redirection-strings.php:148
1079
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1080
  msgstr "Tikko spraudnis tiks nodzēsts, visas caur to uzstādītās pāradresācijas pārstās darboties. Gadījumā, ja tās šķietami turpina darboties, iztīri pārlūkprogrammas kešatmiņu."
1081
 
1082
- #: redirection-strings.php:149
1083
  msgid "Yes! Delete the plugin"
1084
  msgstr "Jā! Dzēst šo spraudni"
1085
 
1086
- #: redirection-strings.php:150
1087
  msgid "No! Don't delete the plugin"
1088
  msgstr "Nē! Nedzēst šo spraudni"
1089
 
@@ -1095,7 +1145,7 @@ msgstr "John Godley"
1095
  msgid "Manage all your 301 redirects and monitor 404 errors"
1096
  msgstr ""
1097
 
1098
- #: redirection-strings.php:155
1099
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1100
  msgstr "Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzīve ir vienkārši lieliska! Tā attīstīšanai ir veltīts daudz laika, un arī Tu vari sniegt atbalstu spraudņa tālākai attīstībai, {{strong}}veicot mazu ziedojumu{{/strong}}."
1101
 
@@ -1103,91 +1153,91 @@ msgstr "Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzī
1103
  msgid "Redirection Support"
1104
  msgstr ""
1105
 
1106
- #: redirection-strings.php:63 redirection-strings.php:144
1107
  msgid "Support"
1108
  msgstr "Atbalsts"
1109
 
1110
- #: redirection-strings.php:141
1111
  msgid "404s"
1112
  msgstr ""
1113
 
1114
- #: redirection-strings.php:140
1115
  msgid "Log"
1116
  msgstr ""
1117
 
1118
- #: redirection-strings.php:151
1119
  msgid "Delete Redirection"
1120
  msgstr ""
1121
 
1122
- #: redirection-strings.php:81
1123
  msgid "Upload"
1124
  msgstr "Augšupielādēt"
1125
 
1126
- #: redirection-strings.php:92
1127
  msgid "Import"
1128
  msgstr "Importēt"
1129
 
1130
- #: redirection-strings.php:205
1131
  msgid "Update"
1132
  msgstr "Saglabāt Izmaiņas"
1133
 
1134
- #: redirection-strings.php:194
1135
  msgid "Auto-generate URL"
1136
  msgstr "URL Autom. Izveide"
1137
 
1138
- #: redirection-strings.php:193
1139
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1140
  msgstr "Unikāls identifikators, kas ļauj jaunumu plūsmas lasītājiem piekļūt Pāradresāciju žurnāla RSS (atstāj tukšu, lai to izveidotu automātiski)"
1141
 
1142
- #: redirection-strings.php:192
1143
  msgid "RSS Token"
1144
  msgstr "RSS Identifikators"
1145
 
1146
- #: redirection-strings.php:186
1147
  msgid "404 Logs"
1148
  msgstr "404 Žurnalēšana"
1149
 
1150
- #: redirection-strings.php:185 redirection-strings.php:187
1151
  msgid "(time to keep logs for)"
1152
  msgstr "(laiks, cik ilgi paturēt ierakstus žurnālā)"
1153
 
1154
- #: redirection-strings.php:184
1155
  msgid "Redirect Logs"
1156
  msgstr "Pāradresāciju Žurnalēšana"
1157
 
1158
- #: redirection-strings.php:183
1159
  msgid "I'm a nice person and I have helped support the author of this plugin"
1160
  msgstr "Esmu foršs cilvēks, jo jau piedalījos šī spraudņa autora atbalstīšanā."
1161
 
1162
- #: redirection-strings.php:158
1163
  msgid "Plugin Support"
1164
  msgstr "Spraudņa Atbalstīšana"
1165
 
1166
- #: redirection-strings.php:62 redirection-strings.php:143
1167
  msgid "Options"
1168
  msgstr "Uzstādījumi"
1169
 
1170
- #: redirection-strings.php:163
1171
  msgid "Two months"
1172
  msgstr "Divus mēnešus"
1173
 
1174
- #: redirection-strings.php:162
1175
  msgid "A month"
1176
  msgstr "Mēnesi"
1177
 
1178
- #: redirection-strings.php:161 redirection-strings.php:168
1179
  msgid "A week"
1180
  msgstr "Nedēļu"
1181
 
1182
- #: redirection-strings.php:160 redirection-strings.php:167
1183
  msgid "A day"
1184
  msgstr "Dienu"
1185
 
1186
- #: redirection-strings.php:159
1187
  msgid "No logs"
1188
  msgstr "Bez žurnalēšanas"
1189
 
1190
- #: redirection-strings.php:110
1191
  msgid "Delete All"
1192
  msgstr "Dzēst Visu"
1193
 
@@ -1199,37 +1249,37 @@ msgstr "Izmanto grupas, lai organizētu uzstādītās pāradresācijas. Grupas t
1199
  msgid "Add Group"
1200
  msgstr "Pievienot grupu"
1201
 
1202
- #: redirection-strings.php:335
1203
  msgid "Search"
1204
  msgstr "Meklēt"
1205
 
1206
- #: redirection-strings.php:58 redirection-strings.php:139
1207
  msgid "Groups"
1208
  msgstr "Grupas"
1209
 
1210
  #: redirection-strings.php:14 redirection-strings.php:55
1211
- #: redirection-strings.php:246
1212
  msgid "Save"
1213
  msgstr "Saglabāt"
1214
 
1215
- #: redirection-strings.php:244
1216
  msgid "Group"
1217
  msgstr "Grupa"
1218
 
1219
- #: redirection-strings.php:241
1220
  msgid "Match"
1221
  msgstr ""
1222
 
1223
- #: redirection-strings.php:263
1224
  msgid "Add new redirection"
1225
  msgstr ""
1226
 
1227
- #: redirection-strings.php:56 redirection-strings.php:82
1228
- #: redirection-strings.php:250
1229
  msgid "Cancel"
1230
  msgstr "Atcelt"
1231
 
1232
- #: redirection-strings.php:106
1233
  msgid "Download"
1234
  msgstr "Lejupielādēt"
1235
 
@@ -1241,45 +1291,45 @@ msgstr "Pāradresētājs"
1241
  msgid "Settings"
1242
  msgstr "Iestatījumi"
1243
 
1244
- #: redirection-strings.php:231
1245
  msgid "Do nothing"
1246
  msgstr ""
1247
 
1248
- #: redirection-strings.php:230
1249
  msgid "Error (404)"
1250
  msgstr ""
1251
 
1252
- #: redirection-strings.php:229
1253
  msgid "Pass-through"
1254
  msgstr ""
1255
 
1256
- #: redirection-strings.php:228
1257
  msgid "Redirect to random post"
1258
  msgstr "Pāradresēt uz nejauši izvēlētu rakstu"
1259
 
1260
- #: redirection-strings.php:227
1261
  msgid "Redirect to URL"
1262
  msgstr "Pāradresēt uz URL"
1263
 
1264
- #: models/redirect.php:514
1265
  msgid "Invalid group when creating redirect"
1266
  msgstr ""
1267
 
1268
- #: redirection-strings.php:119 redirection-strings.php:128
1269
  msgid "IP"
1270
  msgstr "IP"
1271
 
1272
- #: redirection-strings.php:117 redirection-strings.php:126
1273
- #: redirection-strings.php:247
1274
  msgid "Source URL"
1275
  msgstr "Sākotnējais URL"
1276
 
1277
- #: redirection-strings.php:116 redirection-strings.php:125
1278
  msgid "Date"
1279
  msgstr "Datums"
1280
 
1281
- #: redirection-strings.php:130 redirection-strings.php:134
1282
- #: redirection-strings.php:264
1283
  msgid "Add Redirect"
1284
  msgstr "Pievienot Pāradresāciju"
1285
 
@@ -1295,7 +1345,7 @@ msgstr "Skatīt pāradresācijas"
1295
  msgid "Module"
1296
  msgstr "Modulis"
1297
 
1298
- #: redirection-strings.php:39 redirection-strings.php:138
1299
  msgid "Redirects"
1300
  msgstr "Pāradresācijas"
1301
 
@@ -1304,49 +1354,49 @@ msgstr "Pāradresācijas"
1304
  msgid "Name"
1305
  msgstr "Nosaukums"
1306
 
1307
- #: redirection-strings.php:320
1308
  msgid "Filter"
1309
  msgstr "Atlasīt"
1310
 
1311
- #: redirection-strings.php:261
1312
  msgid "Reset hits"
1313
  msgstr "Atiestatīt Izpildes"
1314
 
1315
  #: redirection-strings.php:42 redirection-strings.php:52
1316
- #: redirection-strings.php:259 redirection-strings.php:295
1317
  msgid "Enable"
1318
  msgstr "Ieslēgt"
1319
 
1320
  #: redirection-strings.php:43 redirection-strings.php:51
1321
- #: redirection-strings.php:260 redirection-strings.php:294
1322
  msgid "Disable"
1323
  msgstr "Atslēgt"
1324
 
1325
  #: redirection-strings.php:41 redirection-strings.php:49
1326
- #: redirection-strings.php:120 redirection-strings.php:121
1327
- #: redirection-strings.php:129 redirection-strings.php:133
1328
- #: redirection-strings.php:152 redirection-strings.php:258
1329
- #: redirection-strings.php:293
1330
  msgid "Delete"
1331
  msgstr "Dzēst"
1332
 
1333
- #: redirection-strings.php:48 redirection-strings.php:292
1334
  msgid "Edit"
1335
  msgstr "Labot"
1336
 
1337
- #: redirection-strings.php:257
1338
  msgid "Last Access"
1339
  msgstr "Pēdējā piekļuve"
1340
 
1341
- #: redirection-strings.php:256
1342
  msgid "Hits"
1343
  msgstr "Izpildes"
1344
 
1345
- #: redirection-strings.php:254 redirection-strings.php:308
1346
  msgid "URL"
1347
  msgstr "URL"
1348
 
1349
- #: redirection-strings.php:253
1350
  msgid "Type"
1351
  msgstr "Veids"
1352
 
@@ -1358,44 +1408,44 @@ msgstr "Izmainītie Raksti"
1358
  msgid "Redirections"
1359
  msgstr "Pāradresācijas"
1360
 
1361
- #: redirection-strings.php:265
1362
  msgid "User Agent"
1363
  msgstr "Programmatūras Dati"
1364
 
1365
- #: matches/user-agent.php:10 redirection-strings.php:222
1366
  msgid "URL and user agent"
1367
  msgstr "URL un iekārtas dati"
1368
 
1369
- #: redirection-strings.php:216
1370
  msgid "Target URL"
1371
  msgstr "Galamērķa URL"
1372
 
1373
- #: matches/url.php:7 redirection-strings.php:218
1374
  msgid "URL only"
1375
  msgstr "tikai URL"
1376
 
1377
- #: redirection-strings.php:249 redirection-strings.php:271
1378
- #: redirection-strings.php:275 redirection-strings.php:283
1379
- #: redirection-strings.php:287
1380
  msgid "Regex"
1381
  msgstr "Regulārā Izteiksme"
1382
 
1383
- #: redirection-strings.php:285
1384
  msgid "Referrer"
1385
  msgstr "Ieteicējs (Referrer)"
1386
 
1387
- #: matches/referrer.php:10 redirection-strings.php:221
1388
  msgid "URL and referrer"
1389
  msgstr "URL un ieteicējs (referrer)"
1390
 
1391
- #: redirection-strings.php:210
1392
  msgid "Logged Out"
1393
  msgstr "Ja nav autorizējies"
1394
 
1395
- #: redirection-strings.php:208
1396
  msgid "Logged In"
1397
  msgstr "Ja autorizējies"
1398
 
1399
- #: matches/login.php:8 redirection-strings.php:219
1400
  msgid "URL and login status"
1401
  msgstr "URL un autorizācijas statuss"
11
  "Language: lv\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
  msgstr ""
25
 
26
  #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:322
63
+ msgid "Enter full URL, including http:// or https://"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr "Pāradresāciju Testēšana"
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr "URL netiek pāradresēts ar šo spraudni"
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr "URL tiek pāradresēts ar šo spraudni"
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr "Neizdevās izgūt informāciju"
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "Servera domēns"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "Relatīvs sākotnējais URL no kura vēlies veikt pāradresāciju"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "Skaidrojums (nav obligāti) - apraksti, kāds ir mērķis šai pāradresācijai"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr "Galamērķa URL, uz kuru Tu vēlies pāradresēt sākotnējo saiti"
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(eksperimentāls)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "Piespiedu pāradresācija no HTTP uz HTTPS. Lūdzu pārliecinies, ka Tavai tīmekļa vietnei HTTPS darbojas korekti, pirms šī parametra iespējošanas."
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "Piespiedu HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
  msgstr "GDPR / Informācija par privātumu"
141
 
147
  msgid "Please logout and login again."
148
  msgstr "Lūdzu izej no sistēmas, un autorizējies tajā vēlreiz."
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "Spraudnim \"Pāradresācija\" nepieciešama PHP v%1s versija. Tu pašlaik izmanto v%2s - lūdzu atjaunini vai pārslēdz PHP versiju šai tīmekļa vietnei."
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr ""
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL un servera domēns"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr ""
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr ""
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr ""
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr ""
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "Tīmekļa vietnes un sākumlapas URL ir saderīgi"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
+ msgstr ""
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr ""
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Galvenes saturs"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Galvenes nosaukums"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "HTTP Galvene"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "WordPress filtra nosaukums"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Filtra Nosaukums"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
  msgstr "Sīkdatnes saturs"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Sīkdatnes nosaukums"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Sīkdatne"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "Galamērķa URL, ja nosacījums nav izpildīts"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "Galamērķa URL, ja nosacījums izpildīts"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "Ja Tu izmanto kešošanas sistēmu, piemēram \"CloudFlare\", lūdzi izlasi šo:"
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr ""
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr ""
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL un sīkdatne"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "REST API"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr ""
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr "Neviens no ieteikumiem nelīdzēja"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "Lūdzu apskati <a href=\"https://redirection.me/support/problems/\">sarakstu ar biežākajām problēmām</a>."
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "Neizdevās ielādēt spraudni \"Pāradresācija\" ☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr ""
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Nezināma Iekārta"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Iekārta"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Operētājsistēma"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Pārlūkprogramma"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "Iekārtas dati"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr ""
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "Bez IP žurnalēšanas"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Pilna IP žurnalēšana"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Daļēja IP maskēšana"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Pārraudzīt izmaiņas %(type)s saturā"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "IP Žurnalēšana"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(atlasiet IP žurnalēšanas līmeni)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr ""
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "Atlasīt pēc IP"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "Ieteicējs / Iekārtas Dati"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "IP Ģeolokācijas Kļūda"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr ""
427
 
454
  msgid "Geo Location"
455
  msgstr "Ģeogr. Atrašanās Vieta"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Darbību nodrošina {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr ""
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr ""
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr ""
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "Ja vēlies ziņot par nepilnību, lūdzu iepazīsties ar {{report}}Ziņošana Par Nepilnībām{{/report}} ceļvedi."
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr ""
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr ""
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr ""
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr ""
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr ""
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "Vai tiešām vēlies importēt datus no %s?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Importēšana no citiem Spraudņiem"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr ""
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr ""
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr ""
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr ""
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "Pāradresētājs nav pareizi uzstādīts"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr ""
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr ""
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr ""
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr ""
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr ""
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr ""
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "Spraudņa Statuss"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr ""
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr ""
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "Jaunumu Plūsmas lasītāji"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr ""
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr ""
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr ""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "URL Pārraudzība"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "Dzēst 404 kļūdas"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "Dzēst visus ierakstus par šo 404"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "Dzēst visu par IP %s"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr ""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr ""
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr ""
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr ""
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr ""
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "Nav iespējams izveidot grupu"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "Neizdevās izlabot tabulas datubāzē"
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr ""
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr ""
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr ""
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr ""
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr ""
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr ""
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr ""
737
 
743
  msgid "Important details"
744
  msgstr ""
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Nepieciešama palīdzība?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr ""
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr "Secība"
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 - Aizvākts"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Pozīcija"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr ""
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr ""
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr ""
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr ""
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr ""
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr ""
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr ""
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr ""
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr ""
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr ""
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr ""
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr ""
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "Labi"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Aizvērt"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr ""
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Eksportēšana"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr ""
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr ""
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr ""
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr ""
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr ""
849
 
850
+ #: redirection-strings.php:113
851
  msgid "CSV"
852
  msgstr "CSV"
853
 
854
+ #: redirection-strings.php:114
855
  msgid "Apache .htaccess"
856
  msgstr "Apache .htaccess"
857
 
858
+ #: redirection-strings.php:115
859
  msgid "Nginx rewrite rules"
860
  msgstr ""
861
 
862
+ #: redirection-strings.php:116
863
  msgid "Redirection JSON"
864
  msgstr "Pāradresētāja JSON"
865
 
866
+ #: redirection-strings.php:117
867
  msgid "View"
868
  msgstr "Skatīt"
869
 
870
+ #: redirection-strings.php:119
871
  msgid "Log files can be exported from the log pages."
872
  msgstr ""
873
 
874
+ #: redirection-strings.php:59 redirection-strings.php:154
875
  msgid "Import/Export"
876
  msgstr "Importēt/Eksportēt"
877
 
887
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
888
  msgstr ""
889
 
890
+ #: redirection-strings.php:166
891
  msgid "I'd like to support some more."
892
  msgstr "Es vēlos sniegt papildus atbalstu."
893
 
894
+ #: redirection-strings.php:169
895
  msgid "Support 💰"
896
  msgstr "Atbalstīt! 💰"
897
 
898
+ #: redirection-strings.php:363
899
  msgid "Redirection saved"
900
  msgstr ""
901
 
902
+ #: redirection-strings.php:364
903
  msgid "Log deleted"
904
  msgstr ""
905
 
906
+ #: redirection-strings.php:365
907
  msgid "Settings saved"
908
  msgstr "Uzstādījumi tika saglabāti"
909
 
910
+ #: redirection-strings.php:366
911
  msgid "Group saved"
912
  msgstr "Grupa tika saglabāta"
913
 
914
+ #: redirection-strings.php:362
915
  msgid "Are you sure you want to delete this item?"
916
  msgid_plural "Are you sure you want to delete these items?"
917
  msgstr[0] "Vai tiešām vēlies dzēst šo vienību (-as)?"
918
  msgstr[1] "Vai tiešām vēlies dzēst šīs vienības?"
919
  msgstr[2] "Vai tiešām vēlies dzēst šīs vienības?"
920
 
921
+ #: redirection-strings.php:309
922
  msgid "pass"
923
  msgstr ""
924
 
925
+ #: redirection-strings.php:274
926
  msgid "All groups"
927
  msgstr "Visas grupas"
928
 
929
+ #: redirection-strings.php:244
930
  msgid "301 - Moved Permanently"
931
  msgstr "301 - Pārvietots Pavisam"
932
 
933
+ #: redirection-strings.php:245
934
  msgid "302 - Found"
935
  msgstr "302 - Atrasts"
936
 
937
+ #: redirection-strings.php:246
938
  msgid "307 - Temporary Redirect"
939
  msgstr "307 - Pagaidu Pāradresācija"
940
 
941
+ #: redirection-strings.php:247
942
  msgid "308 - Permanent Redirect"
943
  msgstr "308 - Galēja Pāradresācija"
944
 
945
+ #: redirection-strings.php:248
946
  msgid "401 - Unauthorized"
947
  msgstr "401 - Nav Autorizējies"
948
 
949
+ #: redirection-strings.php:249
950
  msgid "404 - Not Found"
951
  msgstr "404 - Nav Atrasts"
952
 
953
+ #: redirection-strings.php:251
954
  msgid "Title"
955
  msgstr "Nosaukums"
956
 
957
+ #: redirection-strings.php:254
958
  msgid "When matched"
959
  msgstr ""
960
 
961
+ #: redirection-strings.php:255
962
  msgid "with HTTP code"
963
  msgstr "ar HTTP kodu"
964
 
965
+ #: redirection-strings.php:264
966
  msgid "Show advanced options"
967
  msgstr "Rādīt papildu iespējas"
968
 
969
+ #: redirection-strings.php:224
970
  msgid "Matched Target"
971
  msgstr ""
972
 
973
+ #: redirection-strings.php:226
974
  msgid "Unmatched Target"
975
  msgstr ""
976
 
977
+ #: redirection-strings.php:218 redirection-strings.php:219
978
  msgid "Saving..."
979
  msgstr "Saglabā izmaiņas..."
980
 
981
+ #: redirection-strings.php:157
982
  msgid "View notice"
983
  msgstr ""
984
 
985
+ #: models/redirect.php:526
986
  msgid "Invalid source URL"
987
  msgstr ""
988
 
989
+ #: models/redirect.php:458
990
  msgid "Invalid redirect action"
991
  msgstr ""
992
 
993
+ #: models/redirect.php:452
994
  msgid "Invalid redirect matcher"
995
  msgstr ""
996
 
997
+ #: models/redirect.php:187
998
  msgid "Unable to add new redirect"
999
  msgstr ""
1000
 
1010
  msgid "Log entries (%d max)"
1011
  msgstr ""
1012
 
1013
+ #: redirection-strings.php:350
1014
  msgid "Search by IP"
1015
  msgstr "Meklēt pēc IP"
1016
 
1017
+ #: redirection-strings.php:345
1018
  msgid "Select bulk action"
1019
  msgstr "Izvēlies lielapjoma darbību"
1020
 
1021
+ #: redirection-strings.php:346
1022
  msgid "Bulk Actions"
1023
  msgstr "Lielapjoma Darbības"
1024
 
1025
+ #: redirection-strings.php:347
1026
  msgid "Apply"
1027
  msgstr "Pielietot"
1028
 
1029
+ #: redirection-strings.php:338
1030
  msgid "First page"
1031
  msgstr "Pirmā lapa"
1032
 
1033
+ #: redirection-strings.php:339
1034
  msgid "Prev page"
1035
  msgstr "Iepriekšējā lapa"
1036
 
1037
+ #: redirection-strings.php:340
1038
  msgid "Current Page"
1039
  msgstr ""
1040
 
1041
+ #: redirection-strings.php:341
1042
  msgid "of %(page)s"
1043
  msgstr ""
1044
 
1045
+ #: redirection-strings.php:342
1046
  msgid "Next page"
1047
  msgstr "Nākošā lapa"
1048
 
1049
+ #: redirection-strings.php:343
1050
  msgid "Last page"
1051
  msgstr "Pēdējā lapa"
1052
 
1053
+ #: redirection-strings.php:344
1054
  msgid "%s item"
1055
  msgid_plural "%s items"
1056
  msgstr[0] "%s vienība"
1057
  msgstr[1] "%s vienības"
1058
  msgstr[2] "%s vienības"
1059
 
1060
+ #: redirection-strings.php:337
1061
  msgid "Select All"
1062
  msgstr "Iezīmēt Visu"
1063
 
1064
+ #: redirection-strings.php:349
1065
  msgid "Sorry, something went wrong loading the data - please try again"
1066
  msgstr ""
1067
 
1068
+ #: redirection-strings.php:348
1069
  msgid "No results"
1070
  msgstr ""
1071
 
1072
+ #: redirection-strings.php:123
1073
  msgid "Delete the logs - are you sure?"
1074
  msgstr ""
1075
 
1076
+ #: redirection-strings.php:124
1077
  msgid "Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."
1078
  msgstr ""
1079
 
1080
+ #: redirection-strings.php:125
1081
  msgid "Yes! Delete the logs"
1082
  msgstr "Jā! Dzēst žurnālus"
1083
 
1084
+ #: redirection-strings.php:126
1085
  msgid "No! Don't delete the logs"
1086
  msgstr "Nē! Nedzēst žurnālus"
1087
 
1088
+ #: redirection-strings.php:326
1089
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1090
  msgstr ""
1091
 
1092
+ #: redirection-strings.php:325 redirection-strings.php:327
1093
  msgid "Newsletter"
1094
  msgstr "Jaunāko ziņu Abonēšana"
1095
 
1096
+ #: redirection-strings.php:328
1097
  msgid "Want to keep up to date with changes to Redirection?"
1098
  msgstr "Vai vēlies pirmais uzzināt par jaunākajām izmaiņām \"Pāradresācija\" spraudnī?"
1099
 
1100
+ #: redirection-strings.php:329
1101
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1102
  msgstr ""
1103
 
1104
+ #: redirection-strings.php:330
1105
  msgid "Your email address:"
1106
  msgstr "Tava e-pasta adrese:"
1107
 
1108
+ #: redirection-strings.php:165
1109
  msgid "You've supported this plugin - thank you!"
1110
  msgstr "Tu esi atbalstījis šo spraudni - paldies Tev!"
1111
 
1112
+ #: redirection-strings.php:168
1113
  msgid "You get useful software and I get to carry on making it better."
1114
  msgstr "Tu saņem noderīgu programmatūru, un es turpinu to padarīt labāku."
1115
 
1116
+ #: redirection-strings.php:176 redirection-strings.php:181
1117
  msgid "Forever"
1118
  msgstr "Mūžīgi"
1119
 
1120
+ #: redirection-strings.php:158
1121
  msgid "Delete the plugin - are you sure?"
1122
  msgstr "Spraudņa dzēšana - vai tiešām vēlies to darīt?"
1123
 
1124
+ #: redirection-strings.php:159
1125
  msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
1126
  msgstr "Dzēšot šo spraudni, tiks nodzēstas visas Tevis izveidotās pāradresācijas, žurnalētie dati un spraudņa uzstādījumi. Dari to tikai tad, ja vēlies aizvākt spraudni pavisam, vai arī veikt tā pilnīgu atiestatīšanu."
1127
 
1128
+ #: redirection-strings.php:160
1129
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1130
  msgstr "Tikko spraudnis tiks nodzēsts, visas caur to uzstādītās pāradresācijas pārstās darboties. Gadījumā, ja tās šķietami turpina darboties, iztīri pārlūkprogrammas kešatmiņu."
1131
 
1132
+ #: redirection-strings.php:161
1133
  msgid "Yes! Delete the plugin"
1134
  msgstr "Jā! Dzēst šo spraudni"
1135
 
1136
+ #: redirection-strings.php:162
1137
  msgid "No! Don't delete the plugin"
1138
  msgstr "Nē! Nedzēst šo spraudni"
1139
 
1145
  msgid "Manage all your 301 redirects and monitor 404 errors"
1146
  msgstr ""
1147
 
1148
+ #: redirection-strings.php:167
1149
  msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
1150
  msgstr "Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzīve ir vienkārši lieliska! Tā attīstīšanai ir veltīts daudz laika, un arī Tu vari sniegt atbalstu spraudņa tālākai attīstībai, {{strong}}veicot mazu ziedojumu{{/strong}}."
1151
 
1153
  msgid "Redirection Support"
1154
  msgstr ""
1155
 
1156
+ #: redirection-strings.php:63 redirection-strings.php:156
1157
  msgid "Support"
1158
  msgstr "Atbalsts"
1159
 
1160
+ #: redirection-strings.php:153
1161
  msgid "404s"
1162
  msgstr ""
1163
 
1164
+ #: redirection-strings.php:152
1165
  msgid "Log"
1166
  msgstr ""
1167
 
1168
+ #: redirection-strings.php:163
1169
  msgid "Delete Redirection"
1170
  msgstr ""
1171
 
1172
+ #: redirection-strings.php:93
1173
  msgid "Upload"
1174
  msgstr "Augšupielādēt"
1175
 
1176
+ #: redirection-strings.php:104
1177
  msgid "Import"
1178
  msgstr "Importēt"
1179
 
1180
+ #: redirection-strings.php:217
1181
  msgid "Update"
1182
  msgstr "Saglabāt Izmaiņas"
1183
 
1184
+ #: redirection-strings.php:206
1185
  msgid "Auto-generate URL"
1186
  msgstr "URL Autom. Izveide"
1187
 
1188
+ #: redirection-strings.php:205
1189
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1190
  msgstr "Unikāls identifikators, kas ļauj jaunumu plūsmas lasītājiem piekļūt Pāradresāciju žurnāla RSS (atstāj tukšu, lai to izveidotu automātiski)"
1191
 
1192
+ #: redirection-strings.php:204
1193
  msgid "RSS Token"
1194
  msgstr "RSS Identifikators"
1195
 
1196
+ #: redirection-strings.php:198
1197
  msgid "404 Logs"
1198
  msgstr "404 Žurnalēšana"
1199
 
1200
+ #: redirection-strings.php:197 redirection-strings.php:199
1201
  msgid "(time to keep logs for)"
1202
  msgstr "(laiks, cik ilgi paturēt ierakstus žurnālā)"
1203
 
1204
+ #: redirection-strings.php:196
1205
  msgid "Redirect Logs"
1206
  msgstr "Pāradresāciju Žurnalēšana"
1207
 
1208
+ #: redirection-strings.php:195
1209
  msgid "I'm a nice person and I have helped support the author of this plugin"
1210
  msgstr "Esmu foršs cilvēks, jo jau piedalījos šī spraudņa autora atbalstīšanā."
1211
 
1212
+ #: redirection-strings.php:170
1213
  msgid "Plugin Support"
1214
  msgstr "Spraudņa Atbalstīšana"
1215
 
1216
+ #: redirection-strings.php:62 redirection-strings.php:155
1217
  msgid "Options"
1218
  msgstr "Uzstādījumi"
1219
 
1220
+ #: redirection-strings.php:175
1221
  msgid "Two months"
1222
  msgstr "Divus mēnešus"
1223
 
1224
+ #: redirection-strings.php:174
1225
  msgid "A month"
1226
  msgstr "Mēnesi"
1227
 
1228
+ #: redirection-strings.php:173 redirection-strings.php:180
1229
  msgid "A week"
1230
  msgstr "Nedēļu"
1231
 
1232
+ #: redirection-strings.php:172 redirection-strings.php:179
1233
  msgid "A day"
1234
  msgstr "Dienu"
1235
 
1236
+ #: redirection-strings.php:171
1237
  msgid "No logs"
1238
  msgstr "Bez žurnalēšanas"
1239
 
1240
+ #: redirection-strings.php:122
1241
  msgid "Delete All"
1242
  msgstr "Dzēst Visu"
1243
 
1249
  msgid "Add Group"
1250
  msgstr "Pievienot grupu"
1251
 
1252
+ #: redirection-strings.php:351
1253
  msgid "Search"
1254
  msgstr "Meklēt"
1255
 
1256
+ #: redirection-strings.php:58 redirection-strings.php:151
1257
  msgid "Groups"
1258
  msgstr "Grupas"
1259
 
1260
  #: redirection-strings.php:14 redirection-strings.php:55
1261
+ #: redirection-strings.php:258
1262
  msgid "Save"
1263
  msgstr "Saglabāt"
1264
 
1265
+ #: redirection-strings.php:256
1266
  msgid "Group"
1267
  msgstr "Grupa"
1268
 
1269
+ #: redirection-strings.php:253
1270
  msgid "Match"
1271
  msgstr ""
1272
 
1273
+ #: redirection-strings.php:275
1274
  msgid "Add new redirection"
1275
  msgstr ""
1276
 
1277
+ #: redirection-strings.php:56 redirection-strings.php:94
1278
+ #: redirection-strings.php:262
1279
  msgid "Cancel"
1280
  msgstr "Atcelt"
1281
 
1282
+ #: redirection-strings.php:118
1283
  msgid "Download"
1284
  msgstr "Lejupielādēt"
1285
 
1291
  msgid "Settings"
1292
  msgstr "Iestatījumi"
1293
 
1294
+ #: redirection-strings.php:243
1295
  msgid "Do nothing"
1296
  msgstr ""
1297
 
1298
+ #: redirection-strings.php:242
1299
  msgid "Error (404)"
1300
  msgstr ""
1301
 
1302
+ #: redirection-strings.php:241
1303
  msgid "Pass-through"
1304
  msgstr ""
1305
 
1306
+ #: redirection-strings.php:240
1307
  msgid "Redirect to random post"
1308
  msgstr "Pāradresēt uz nejauši izvēlētu rakstu"
1309
 
1310
+ #: redirection-strings.php:239
1311
  msgid "Redirect to URL"
1312
  msgstr "Pāradresēt uz URL"
1313
 
1314
+ #: models/redirect.php:516
1315
  msgid "Invalid group when creating redirect"
1316
  msgstr ""
1317
 
1318
+ #: redirection-strings.php:131 redirection-strings.php:140
1319
  msgid "IP"
1320
  msgstr "IP"
1321
 
1322
+ #: redirection-strings.php:129 redirection-strings.php:138
1323
+ #: redirection-strings.php:259
1324
  msgid "Source URL"
1325
  msgstr "Sākotnējais URL"
1326
 
1327
+ #: redirection-strings.php:128 redirection-strings.php:137
1328
  msgid "Date"
1329
  msgstr "Datums"
1330
 
1331
+ #: redirection-strings.php:142 redirection-strings.php:146
1332
+ #: redirection-strings.php:276
1333
  msgid "Add Redirect"
1334
  msgstr "Pievienot Pāradresāciju"
1335
 
1345
  msgid "Module"
1346
  msgstr "Modulis"
1347
 
1348
+ #: redirection-strings.php:39 redirection-strings.php:150
1349
  msgid "Redirects"
1350
  msgstr "Pāradresācijas"
1351
 
1354
  msgid "Name"
1355
  msgstr "Nosaukums"
1356
 
1357
+ #: redirection-strings.php:336
1358
  msgid "Filter"
1359
  msgstr "Atlasīt"
1360
 
1361
+ #: redirection-strings.php:273
1362
  msgid "Reset hits"
1363
  msgstr "Atiestatīt Izpildes"
1364
 
1365
  #: redirection-strings.php:42 redirection-strings.php:52
1366
+ #: redirection-strings.php:271 redirection-strings.php:308
1367
  msgid "Enable"
1368
  msgstr "Ieslēgt"
1369
 
1370
  #: redirection-strings.php:43 redirection-strings.php:51
1371
+ #: redirection-strings.php:272 redirection-strings.php:306
1372
  msgid "Disable"
1373
  msgstr "Atslēgt"
1374
 
1375
  #: redirection-strings.php:41 redirection-strings.php:49
1376
+ #: redirection-strings.php:132 redirection-strings.php:133
1377
+ #: redirection-strings.php:141 redirection-strings.php:145
1378
+ #: redirection-strings.php:164 redirection-strings.php:270
1379
+ #: redirection-strings.php:305
1380
  msgid "Delete"
1381
  msgstr "Dzēst"
1382
 
1383
+ #: redirection-strings.php:48 redirection-strings.php:304
1384
  msgid "Edit"
1385
  msgstr "Labot"
1386
 
1387
+ #: redirection-strings.php:269
1388
  msgid "Last Access"
1389
  msgstr "Pēdējā piekļuve"
1390
 
1391
+ #: redirection-strings.php:268
1392
  msgid "Hits"
1393
  msgstr "Izpildes"
1394
 
1395
+ #: redirection-strings.php:266 redirection-strings.php:321
1396
  msgid "URL"
1397
  msgstr "URL"
1398
 
1399
+ #: redirection-strings.php:265
1400
  msgid "Type"
1401
  msgstr "Veids"
1402
 
1408
  msgid "Redirections"
1409
  msgstr "Pāradresācijas"
1410
 
1411
+ #: redirection-strings.php:277
1412
  msgid "User Agent"
1413
  msgstr "Programmatūras Dati"
1414
 
1415
+ #: matches/user-agent.php:10 redirection-strings.php:234
1416
  msgid "URL and user agent"
1417
  msgstr "URL un iekārtas dati"
1418
 
1419
+ #: redirection-strings.php:228
1420
  msgid "Target URL"
1421
  msgstr "Galamērķa URL"
1422
 
1423
+ #: matches/url.php:7 redirection-strings.php:230
1424
  msgid "URL only"
1425
  msgstr "tikai URL"
1426
 
1427
+ #: redirection-strings.php:261 redirection-strings.php:283
1428
+ #: redirection-strings.php:287 redirection-strings.php:295
1429
+ #: redirection-strings.php:299
1430
  msgid "Regex"
1431
  msgstr "Regulārā Izteiksme"
1432
 
1433
+ #: redirection-strings.php:297
1434
  msgid "Referrer"
1435
  msgstr "Ieteicējs (Referrer)"
1436
 
1437
+ #: matches/referrer.php:10 redirection-strings.php:233
1438
  msgid "URL and referrer"
1439
  msgstr "URL un ieteicējs (referrer)"
1440
 
1441
+ #: redirection-strings.php:222
1442
  msgid "Logged Out"
1443
  msgstr "Ja nav autorizējies"
1444
 
1445
+ #: redirection-strings.php:220
1446
  msgid "Logged In"
1447
  msgstr "Ja autorizējies"
1448
 
1449
+ #: matches/login.php:8 redirection-strings.php:231
1450
  msgid "URL and login status"
1451
  msgstr "URL un autorizācijas statuss"
locale/redirection-pt_BR.mo CHANGED
Binary file
locale/redirection-pt_BR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-09-09 17:31:35+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,85 +11,133 @@ msgstr ""
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Enter full URL, including http:// or https://"
16
  msgstr "Digite o URL inteiro, incluindo http:// ou https://"
17
 
18
- #: redirection-strings.php:307
19
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
20
  msgstr "O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."
21
 
22
- #: redirection-strings.php:306
23
  msgid "Redirect Tester"
24
  msgstr "Teste de redirecionamento"
25
 
26
- #: redirection-strings.php:305
27
  msgid "Target"
28
  msgstr "Destino"
29
 
30
- #: redirection-strings.php:304
31
  msgid "URL is not being redirected with Redirection"
32
  msgstr "O URL não está sendo redirecionado com o Redirection"
33
 
34
- #: redirection-strings.php:303
35
  msgid "URL is being redirected with Redirection"
36
  msgstr "O URL está sendo redirecionado com o Redirection"
37
 
38
- #: redirection-strings.php:302 redirection-strings.php:310
39
  msgid "Unable to load details"
40
  msgstr "Não foi possível carregar os detalhes"
41
 
42
- #: redirection-strings.php:291
43
  msgid "Enter server URL to match against"
44
  msgstr "Digite o URL do servidor para correspondência"
45
 
46
- #: redirection-strings.php:290
47
  msgid "Server"
48
  msgstr "Servidor"
49
 
50
- #: redirection-strings.php:289
51
  msgid "Enter role or capability value"
52
  msgstr "Digite a função ou capacidade"
53
 
54
- #: redirection-strings.php:288
55
  msgid "Role"
56
  msgstr "Função"
57
 
58
- #: redirection-strings.php:286
59
  msgid "Match against this browser referrer text"
60
  msgstr "Texto do referenciador do navegador para correspondênica"
61
 
62
- #: redirection-strings.php:266
63
  msgid "Match against this browser user agent"
64
  msgstr "Usuário de agente do navegador para correspondência"
65
 
66
- #: redirection-strings.php:248
67
  msgid "The relative URL you want to redirect from"
68
  msgstr "O URL relativo que você quer redirecionar"
69
 
70
- #: redirection-strings.php:240
71
  msgid "Optional description - describe the purpose of this redirect"
72
  msgstr "Descrição opcional. Descreva o propósito deste redirecionamento"
73
 
74
- #: redirection-strings.php:217
75
  msgid "The target URL you want to redirect to if matched"
76
  msgstr "O URL de destino para qual você quer redirecionar, se houver correspondência"
77
 
78
- #: redirection-strings.php:200
79
  msgid "(beta)"
80
  msgstr "(beta)"
81
 
82
- #: redirection-strings.php:199
83
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
84
  msgstr "Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"
85
 
86
- #: redirection-strings.php:198
87
  msgid "Force HTTPS"
88
  msgstr "Forçar HTTPS"
89
 
90
- #: redirection-strings.php:190
91
  msgid "GDPR / Privacy information"
92
- msgstr "GDPR / Informações sobre privacidade"
93
 
94
  #: redirection-strings.php:73
95
  msgid "Add New"
@@ -99,31 +147,31 @@ msgstr "Adicionar novo"
99
  msgid "Please logout and login again."
100
  msgstr "Desconecte-se da sua conta e acesse novamente."
101
 
102
- #: redirection-admin.php:369
103
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
104
  msgstr "O Redirection requer o PHP versão v%1s, mas você está usando a v%2s. Atualize seu PHP"
105
 
106
- #: matches/user-role.php:9 redirection-strings.php:220
107
  msgid "URL and role/capability"
108
  msgstr "URL e função/capacidade"
109
 
110
- #: matches/server.php:9 redirection-strings.php:224
111
  msgid "URL and server"
112
  msgstr "URL e servidor"
113
 
114
- #: redirection-strings.php:177
115
  msgid "Form request"
116
  msgstr "Solicitação via formulário"
117
 
118
- #: redirection-strings.php:176
119
  msgid "Relative /wp-json/"
120
  msgstr "/wp-json/ relativo"
121
 
122
- #: redirection-strings.php:175
123
  msgid "Proxy over Admin AJAX"
124
  msgstr "Proxy via Admin AJAX"
125
 
126
- #: redirection-strings.php:173
127
  msgid "Default /wp-json/"
128
  msgstr "/wp-json/ padrão"
129
 
@@ -143,51 +191,51 @@ msgstr "O URL do WordPress e do site são inconsistentes. Corrija em Configuraç
143
  msgid "Site and home are consistent"
144
  msgstr "O endereço do WordPress e do site são consistentes"
145
 
146
- #: redirection-strings.php:284
147
- msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
148
  msgstr "É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."
149
 
150
- #: redirection-strings.php:282
151
  msgid "Accept Language"
152
  msgstr "Aceitar Idioma"
153
 
154
- #: redirection-strings.php:280
155
  msgid "Header value"
156
  msgstr "Valor do cabeçalho"
157
 
158
- #: redirection-strings.php:279
159
  msgid "Header name"
160
  msgstr "Nome cabeçalho"
161
 
162
- #: redirection-strings.php:278
163
  msgid "HTTP Header"
164
  msgstr "Cabeçalho HTTP"
165
 
166
- #: redirection-strings.php:277
167
  msgid "WordPress filter name"
168
  msgstr "Nome do filtro WordPress"
169
 
170
- #: redirection-strings.php:276
171
  msgid "Filter Name"
172
  msgstr "Nome do filtro"
173
 
174
- #: redirection-strings.php:274
175
  msgid "Cookie value"
176
- msgstr "Valor Cookie"
177
 
178
- #: redirection-strings.php:273
179
  msgid "Cookie name"
180
  msgstr "Nome do cookie"
181
 
182
- #: redirection-strings.php:272
183
  msgid "Cookie"
184
  msgstr "Cookie"
185
 
186
- #: redirection-strings.php:211 redirection-strings.php:215
187
  msgid "Target URL when not matched"
188
  msgstr "URL de destino quando não corresponder"
189
 
190
- #: redirection-strings.php:209 redirection-strings.php:213
191
  msgid "Target URL when matched"
192
  msgstr "URL de destino quando corresponder"
193
 
@@ -199,31 +247,31 @@ msgstr "limpando seu cache."
199
  msgid "If you are using a caching system such as Cloudflare then please read this: "
200
  msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
201
 
202
- #: matches/http-header.php:11 redirection-strings.php:225
203
  msgid "URL and HTTP header"
204
  msgstr "URL e cabeçalho HTTP"
205
 
206
- #: matches/custom-filter.php:9 redirection-strings.php:226
207
  msgid "URL and custom filter"
208
  msgstr "URL e filtro personalizado"
209
 
210
- #: matches/cookie.php:7 redirection-strings.php:223
211
  msgid "URL and cookie"
212
  msgstr "URL e cookie"
213
 
214
- #: redirection-strings.php:351
215
  msgid "404 deleted"
216
  msgstr "404 excluído"
217
 
218
- #: redirection-strings.php:174
219
  msgid "Raw /index.php?rest_route=/"
220
  msgstr "/index.php?rest_route=/"
221
 
222
- #: redirection-strings.php:203
223
  msgid "REST API"
224
  msgstr "API REST"
225
 
226
- #: redirection-strings.php:204
227
  msgid "How Redirection uses the REST API - don't change unless necessary"
228
  msgstr "Como o Redirection usa a API REST. Não altere a menos que seja necessário"
229
 
@@ -255,11 +303,11 @@ msgstr "{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige m
255
  msgid "None of the suggestions helped"
256
  msgstr "Nenhuma das sugestões ajudou"
257
 
258
- #: redirection-admin.php:433
259
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
260
  msgstr "Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."
261
 
262
- #: redirection-admin.php:427
263
  msgid "Unable to load Redirection ☹️"
264
  msgstr "Não foi possível carregar o Redirection ☹️"
265
 
@@ -296,75 +344,75 @@ msgstr "A API REST do WordPress foi desativada. É preciso ativá-la para que o
296
  msgid "https://johngodley.com"
297
  msgstr "https://johngodley.com"
298
 
299
- #: redirection-strings.php:336
300
  msgid "Useragent Error"
301
  msgstr "Erro de agente de usuário"
302
 
303
- #: redirection-strings.php:338
304
  msgid "Unknown Useragent"
305
  msgstr "Agente de usuário desconhecido"
306
 
307
- #: redirection-strings.php:339
308
  msgid "Device"
309
  msgstr "Dispositivo"
310
 
311
- #: redirection-strings.php:340
312
  msgid "Operating System"
313
  msgstr "Sistema operacional"
314
 
315
- #: redirection-strings.php:341
316
  msgid "Browser"
317
  msgstr "Navegador"
318
 
319
- #: redirection-strings.php:342
320
  msgid "Engine"
321
  msgstr "Motor"
322
 
323
- #: redirection-strings.php:343
324
  msgid "Useragent"
325
  msgstr "Agente de usuário"
326
 
327
- #: redirection-strings.php:344
328
  msgid "Agent"
329
  msgstr "Agente"
330
 
331
- #: redirection-strings.php:170
332
  msgid "No IP logging"
333
  msgstr "Não registrar IP"
334
 
335
- #: redirection-strings.php:171
336
  msgid "Full IP logging"
337
  msgstr "Registrar IP completo"
338
 
339
- #: redirection-strings.php:172
340
  msgid "Anonymize IP (mask last part)"
341
  msgstr "Tornar IP anônimo (mascarar a última parte)"
342
 
343
- #: redirection-strings.php:182
344
  msgid "Monitor changes to %(type)s"
345
  msgstr "Monitorar alterações em %(type)s"
346
 
347
- #: redirection-strings.php:188
348
  msgid "IP Logging"
349
  msgstr "Registro de IP"
350
 
351
- #: redirection-strings.php:189
352
  msgid "(select IP logging level)"
353
  msgstr "(selecione o nível de registro de IP)"
354
 
355
- #: redirection-strings.php:122 redirection-strings.php:135
356
  msgid "Geo Info"
357
  msgstr "Informações geográficas"
358
 
359
- #: redirection-strings.php:123 redirection-strings.php:136
360
  msgid "Agent Info"
361
  msgstr "Informação sobre o agente"
362
 
363
- #: redirection-strings.php:124 redirection-strings.php:137
364
  msgid "Filter by IP"
365
  msgstr "Filtrar por IP"
366
 
367
- #: redirection-strings.php:118 redirection-strings.php:127
368
  msgid "Referrer / User Agent"
369
  msgstr "Referenciador / Agente de usuário"
370
 
@@ -372,7 +420,8 @@ msgstr "Referenciador / Agente de usuário"
372
  msgid "Geo IP Error"
373
  msgstr "Erro IP Geo"
374
 
375
- #: redirection-strings.php:27 redirection-strings.php:337
 
376
  msgid "Something went wrong obtaining this information"
377
  msgstr "Algo deu errado ao obter essa informação"
378
 
@@ -395,7 +444,7 @@ msgstr "Cidade"
395
 
396
  #: redirection-strings.php:34
397
  msgid "Area"
398
- msgstr "Área"
399
 
400
  #: redirection-strings.php:35
401
  msgid "Timezone"
@@ -405,7 +454,8 @@ msgstr "Fuso horário"
405
  msgid "Geo Location"
406
  msgstr "Coordenadas"
407
 
408
- #: redirection-strings.php:37 redirection-strings.php:345
 
409
  msgid "Powered by {{link}}redirect.li{{/link}}"
410
  msgstr "Fornecido por {{link}}redirect.li{{/link}}"
411
 
@@ -413,7 +463,7 @@ msgstr "Fornecido por {{link}}redirect.li{{/link}}"
413
  msgid "Trash"
414
  msgstr "Lixeira"
415
 
416
- #: redirection-admin.php:432
417
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
418
  msgstr "O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"
419
 
@@ -425,63 +475,63 @@ msgstr "A documentação completa (em inglês) sobre como usar o Redirection se
425
  msgid "https://redirection.me/"
426
  msgstr "https://redirection.me/"
427
 
428
- #: redirection-strings.php:298
429
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
430
  msgstr "A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."
431
 
432
- #: redirection-strings.php:299
433
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
434
  msgstr "Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."
435
 
436
- #: redirection-strings.php:301
437
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
438
  msgstr "Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"
439
 
440
- #: redirection-strings.php:165
441
  msgid "Never cache"
442
  msgstr "Nunca fazer cache"
443
 
444
- #: redirection-strings.php:166
445
  msgid "An hour"
446
  msgstr "Uma hora"
447
 
448
- #: redirection-strings.php:201
449
  msgid "Redirect Cache"
450
  msgstr "Cache dos redirecionamentos"
451
 
452
- #: redirection-strings.php:202
453
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
454
  msgstr "O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"
455
 
456
- #: redirection-strings.php:89
457
  msgid "Are you sure you want to import from %s?"
458
  msgstr "Tem certeza de que deseja importar de %s?"
459
 
460
- #: redirection-strings.php:90
461
  msgid "Plugin Importers"
462
  msgstr "Importar de plugins"
463
 
464
- #: redirection-strings.php:91
465
  msgid "The following redirect plugins were detected on your site and can be imported from."
466
  msgstr "Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."
467
 
468
- #: redirection-strings.php:74
469
  msgid "total = "
470
  msgstr "total = "
471
 
472
- #: redirection-strings.php:75
473
  msgid "Import from %s"
474
  msgstr "Importar de %s"
475
 
476
- #: redirection-admin.php:385
477
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
478
  msgstr "Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."
479
 
480
- #: redirection-admin.php:384
481
  msgid "Redirection not installed properly"
482
  msgstr "O Redirection não foi instalado adequadamente"
483
 
484
- #: redirection-admin.php:355
485
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
486
  msgstr "O Redirection requer o WordPress v%1s, mas você está usando a versão v%2s. Atualize seu WordPress"
487
 
@@ -489,71 +539,71 @@ msgstr "O Redirection requer o WordPress v%1s, mas você está usando a versão
489
  msgid "Default WordPress \"old slugs\""
490
  msgstr "Redirecionamentos de \"slugs anteriores\" do WordPress"
491
 
492
- #: redirection-strings.php:181
493
  msgid "Create associated redirect (added to end of URL)"
494
  msgstr "Criar redirecionamento atrelado (adicionado ao fim do URL)"
495
 
496
- #: redirection-admin.php:435
497
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
498
  msgstr "O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."
499
 
500
- #: redirection-strings.php:317
501
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
502
  msgstr "Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."
503
 
504
- #: redirection-strings.php:318
505
  msgid "⚡️ Magic fix ⚡️"
506
  msgstr "⚡️ Correção mágica ⚡️"
507
 
508
- #: redirection-strings.php:319
509
  msgid "Plugin Status"
510
  msgstr "Status do plugin"
511
 
512
- #: redirection-strings.php:267 redirection-strings.php:281
513
  msgid "Custom"
514
  msgstr "Personalizado"
515
 
516
- #: redirection-strings.php:268
517
  msgid "Mobile"
518
  msgstr "Móvel"
519
 
520
- #: redirection-strings.php:269
521
  msgid "Feed Readers"
522
  msgstr "Leitores de feed"
523
 
524
- #: redirection-strings.php:270
525
  msgid "Libraries"
526
  msgstr "Bibliotecas"
527
 
528
- #: redirection-strings.php:178
529
  msgid "URL Monitor Changes"
530
  msgstr "Alterações do monitoramento de URLs"
531
 
532
- #: redirection-strings.php:179
533
  msgid "Save changes to this group"
534
  msgstr "Salvar alterações neste grupo"
535
 
536
- #: redirection-strings.php:180
537
  msgid "For example \"/amp\""
538
  msgstr "Por exemplo, \"/amp\""
539
 
540
- #: redirection-strings.php:191
541
  msgid "URL Monitor"
542
  msgstr "Monitoramento de URLs"
543
 
544
- #: redirection-strings.php:131
545
  msgid "Delete 404s"
546
  msgstr "Excluir 404s"
547
 
548
- #: redirection-strings.php:132
549
  msgid "Delete all logs for this 404"
550
  msgstr "Excluir todos os registros para este 404"
551
 
552
- #: redirection-strings.php:108
553
  msgid "Delete all from IP %s"
554
  msgstr "Excluir registros do IP %s"
555
 
556
- #: redirection-strings.php:109
557
  msgid "Delete all matching \"%s\""
558
  msgstr "Excluir tudo que corresponder a \"%s\""
559
 
@@ -561,23 +611,23 @@ msgstr "Excluir tudo que corresponder a \"%s\""
561
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
562
  msgstr "Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."
563
 
564
- #: redirection-admin.php:430
565
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
566
  msgstr "Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"
567
 
568
- #: redirection-admin.php:429 redirection-strings.php:70
569
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
570
  msgstr "Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."
571
 
572
- #: redirection-admin.php:354 redirection-admin.php:368
573
  msgid "Unable to load Redirection"
574
  msgstr "Não foi possível carregar o Redirection"
575
 
576
- #: models/fixer.php:259
577
  msgid "Unable to create group"
578
  msgstr "Não foi possível criar grupo"
579
 
580
- #: models/fixer.php:251
581
  msgid "Failed to fix database tables"
582
  msgstr "Falha ao corrigir tabelas do banco de dados"
583
 
@@ -653,19 +703,19 @@ msgstr "Seu servidor retornou um erro 403 Proibido, que pode indicar que a solic
653
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
654
  msgstr "Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."
655
 
656
- #: redirection-admin.php:434
657
  msgid "If you think Redirection is at fault then create an issue."
658
  msgstr "Se você acha que o erro é do Redirection, abra um chamado."
659
 
660
- #: redirection-admin.php:428
661
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
662
  msgstr "Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."
663
 
664
- #: redirection-admin.php:420
665
  msgid "Loading, please wait..."
666
  msgstr "Carregando, aguarde..."
667
 
668
- #: redirection-strings.php:94
669
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
670
  msgstr "{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."
671
 
@@ -681,7 +731,7 @@ msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um
681
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
682
  msgstr "Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."
683
 
684
- #: redirection-admin.php:438 redirection-strings.php:22
685
  msgid "Create Issue"
686
  msgstr "Criar chamado"
687
 
@@ -693,135 +743,135 @@ msgstr "E-mail"
693
  msgid "Important details"
694
  msgstr "Detalhes importantes"
695
 
696
- #: redirection-strings.php:297
697
  msgid "Need help?"
698
  msgstr "Precisa de ajuda?"
699
 
700
- #: redirection-strings.php:300
701
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
702
  msgstr "Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."
703
 
704
- #: redirection-strings.php:255
705
  msgid "Pos"
706
  msgstr "Pos"
707
 
708
- #: redirection-strings.php:238
709
  msgid "410 - Gone"
710
  msgstr "410 - Não existe mais"
711
 
712
- #: redirection-strings.php:245
713
  msgid "Position"
714
  msgstr "Posição"
715
 
716
- #: redirection-strings.php:195
717
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
718
  msgstr "Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"
719
 
720
- #: redirection-strings.php:196
721
  msgid "Apache Module"
722
  msgstr "Módulo Apache"
723
 
724
- #: redirection-strings.php:197
725
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
726
  msgstr "Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."
727
 
728
- #: redirection-strings.php:76
729
  msgid "Import to group"
730
  msgstr "Importar para grupo"
731
 
732
- #: redirection-strings.php:77
733
  msgid "Import a CSV, .htaccess, or JSON file."
734
  msgstr "Importar um arquivo CSV, .htaccess ou JSON."
735
 
736
- #: redirection-strings.php:78
737
  msgid "Click 'Add File' or drag and drop here."
738
  msgstr "Clique 'Adicionar arquivo' ou arraste e solte aqui."
739
 
740
- #: redirection-strings.php:79
741
  msgid "Add File"
742
  msgstr "Adicionar arquivo"
743
 
744
- #: redirection-strings.php:80
745
  msgid "File selected"
746
  msgstr "Arquivo selecionado"
747
 
748
- #: redirection-strings.php:83
749
  msgid "Importing"
750
  msgstr "Importando"
751
 
752
- #: redirection-strings.php:84
753
  msgid "Finished importing"
754
  msgstr "Importação concluída"
755
 
756
- #: redirection-strings.php:85
757
  msgid "Total redirects imported:"
758
  msgstr "Total de redirecionamentos importados:"
759
 
760
- #: redirection-strings.php:86
761
  msgid "Double-check the file is the correct format!"
762
  msgstr "Verifique novamente se o arquivo é o formato correto!"
763
 
764
- #: redirection-strings.php:87
765
  msgid "OK"
766
  msgstr "OK"
767
 
768
- #: redirection-strings.php:88 redirection-strings.php:251
769
  msgid "Close"
770
  msgstr "Fechar"
771
 
772
- #: redirection-strings.php:93
773
  msgid "All imports will be appended to the current database."
774
  msgstr "Todas as importações serão anexadas ao banco de dados atual."
775
 
776
- #: redirection-strings.php:95 redirection-strings.php:115
777
  msgid "Export"
778
  msgstr "Exportar"
779
 
780
- #: redirection-strings.php:96
781
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
782
  msgstr "Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."
783
 
784
- #: redirection-strings.php:97
785
  msgid "Everything"
786
  msgstr "Tudo"
787
 
788
- #: redirection-strings.php:98
789
  msgid "WordPress redirects"
790
  msgstr "Redirecionamentos WordPress"
791
 
792
- #: redirection-strings.php:99
793
  msgid "Apache redirects"
794
  msgstr "Redirecionamentos Apache"
795
 
796
- #: redirection-strings.php:100
797
  msgid "Nginx redirects"
798
  msgstr "Redirecionamentos Nginx"
799
 
800
- #: redirection-strings.php:101
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-25 00:33:40+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:334
15
+ msgid "Problem"
16
+ msgstr "Problema"
17
+
18
+ #: redirection-strings.php:333
19
+ msgid "Good"
20
+ msgstr "Bom"
21
+
22
+ #: redirection-strings.php:323
23
+ msgid "Check"
24
+ msgstr "Verificar"
25
+
26
+ #: redirection-strings.php:307
27
+ msgid "Check Redirect"
28
+ msgstr "Verificar redirecionamento"
29
+
30
+ #: redirection-strings.php:85
31
+ msgid "Check redirect for: {{code}}%s{{/code}}"
32
+ msgstr "Verifique o redirecionamento de: {{code}}%s{{/code}}"
33
+
34
+ #: redirection-strings.php:83
35
+ msgid "What does this mean?"
36
+ msgstr "O que isto significa?"
37
+
38
+ #: redirection-strings.php:82
39
+ msgid "Not using Redirection"
40
+ msgstr "Sem usar o Redirection"
41
+
42
+ #: redirection-strings.php:81
43
+ msgid "Using Redirection"
44
+ msgstr "Usando o Redirection"
45
+
46
+ #: redirection-strings.php:78
47
+ msgid "Found"
48
+ msgstr "Encontrado"
49
+
50
+ #: redirection-strings.php:77 redirection-strings.php:79
51
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
52
+ msgstr "{{code}}%(status)d{{/code}} para {{code}}%(url)s{{/code}}"
53
+
54
+ #: redirection-strings.php:76
55
+ msgid "Expected"
56
+ msgstr "Esperado"
57
+
58
+ #: redirection-strings.php:74
59
+ msgid "Error"
60
+ msgstr "Erro"
61
+
62
+ #: redirection-strings.php:322
63
  msgid "Enter full URL, including http:// or https://"
64
  msgstr "Digite o URL inteiro, incluindo http:// ou https://"
65
 
66
+ #: redirection-strings.php:320
67
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
68
  msgstr "O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."
69
 
70
+ #: redirection-strings.php:319
71
  msgid "Redirect Tester"
72
  msgstr "Teste de redirecionamento"
73
 
74
+ #: redirection-strings.php:318
75
  msgid "Target"
76
  msgstr "Destino"
77
 
78
+ #: redirection-strings.php:317
79
  msgid "URL is not being redirected with Redirection"
80
  msgstr "O URL não está sendo redirecionado com o Redirection"
81
 
82
+ #: redirection-strings.php:316
83
  msgid "URL is being redirected with Redirection"
84
  msgstr "O URL está sendo redirecionado com o Redirection"
85
 
86
+ #: redirection-strings.php:315 redirection-strings.php:324
87
  msgid "Unable to load details"
88
  msgstr "Não foi possível carregar os detalhes"
89
 
90
+ #: redirection-strings.php:303
91
  msgid "Enter server URL to match against"
92
  msgstr "Digite o URL do servidor para correspondência"
93
 
94
+ #: redirection-strings.php:302
95
  msgid "Server"
96
  msgstr "Servidor"
97
 
98
+ #: redirection-strings.php:301
99
  msgid "Enter role or capability value"
100
  msgstr "Digite a função ou capacidade"
101
 
102
+ #: redirection-strings.php:300
103
  msgid "Role"
104
  msgstr "Função"
105
 
106
+ #: redirection-strings.php:298
107
  msgid "Match against this browser referrer text"
108
  msgstr "Texto do referenciador do navegador para correspondênica"
109
 
110
+ #: redirection-strings.php:278
111
  msgid "Match against this browser user agent"
112
  msgstr "Usuário de agente do navegador para correspondência"
113
 
114
+ #: redirection-strings.php:260
115
  msgid "The relative URL you want to redirect from"
116
  msgstr "O URL relativo que você quer redirecionar"
117
 
118
+ #: redirection-strings.php:252
119
  msgid "Optional description - describe the purpose of this redirect"
120
  msgstr "Descrição opcional. Descreva o propósito deste redirecionamento"
121
 
122
+ #: redirection-strings.php:229
123
  msgid "The target URL you want to redirect to if matched"
124
  msgstr "O URL de destino para qual você quer redirecionar, se houver correspondência"
125
 
126
+ #: redirection-strings.php:212
127
  msgid "(beta)"
128
  msgstr "(beta)"
129
 
130
+ #: redirection-strings.php:211
131
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
132
  msgstr "Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"
133
 
134
+ #: redirection-strings.php:210
135
  msgid "Force HTTPS"
136
  msgstr "Forçar HTTPS"
137
 
138
+ #: redirection-strings.php:202
139
  msgid "GDPR / Privacy information"
140
+ msgstr "GDPR / Informações sobre privacidade (em inglês)"
141
 
142
  #: redirection-strings.php:73
143
  msgid "Add New"
147
  msgid "Please logout and login again."
148
  msgstr "Desconecte-se da sua conta e acesse novamente."
149
 
150
+ #: redirection-admin.php:376
151
  msgid "Redirection requires PHP v%1s, you are using v%2s - please update your PHP"
152
  msgstr "O Redirection requer o PHP versão v%1s, mas você está usando a v%2s. Atualize seu PHP"
153
 
154
+ #: matches/user-role.php:9 redirection-strings.php:232
155
  msgid "URL and role/capability"
156
  msgstr "URL e função/capacidade"
157
 
158
+ #: matches/server.php:9 redirection-strings.php:236
159
  msgid "URL and server"
160
  msgstr "URL e servidor"
161
 
162
+ #: redirection-strings.php:189
163
  msgid "Form request"
164
  msgstr "Solicitação via formulário"
165
 
166
+ #: redirection-strings.php:188
167
  msgid "Relative /wp-json/"
168
  msgstr "/wp-json/ relativo"
169
 
170
+ #: redirection-strings.php:187
171
  msgid "Proxy over Admin AJAX"
172
  msgstr "Proxy via Admin AJAX"
173
 
174
+ #: redirection-strings.php:185
175
  msgid "Default /wp-json/"
176
  msgstr "/wp-json/ padrão"
177
 
191
  msgid "Site and home are consistent"
192
  msgstr "O endereço do WordPress e do site são consistentes"
193
 
194
+ #: redirection-strings.php:296
195
+ msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
196
  msgstr "É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."
197
 
198
+ #: redirection-strings.php:294
199
  msgid "Accept Language"
200
  msgstr "Aceitar Idioma"
201
 
202
+ #: redirection-strings.php:292
203
  msgid "Header value"
204
  msgstr "Valor do cabeçalho"
205
 
206
+ #: redirection-strings.php:291
207
  msgid "Header name"
208
  msgstr "Nome cabeçalho"
209
 
210
+ #: redirection-strings.php:290
211
  msgid "HTTP Header"
212
  msgstr "Cabeçalho HTTP"
213
 
214
+ #: redirection-strings.php:289
215
  msgid "WordPress filter name"
216
  msgstr "Nome do filtro WordPress"
217
 
218
+ #: redirection-strings.php:288
219
  msgid "Filter Name"
220
  msgstr "Nome do filtro"
221
 
222
+ #: redirection-strings.php:286
223
  msgid "Cookie value"
224
+ msgstr "Valor do cookie"
225
 
226
+ #: redirection-strings.php:285
227
  msgid "Cookie name"
228
  msgstr "Nome do cookie"
229
 
230
+ #: redirection-strings.php:284
231
  msgid "Cookie"
232
  msgstr "Cookie"
233
 
234
+ #: redirection-strings.php:223 redirection-strings.php:227
235
  msgid "Target URL when not matched"
236
  msgstr "URL de destino quando não corresponder"
237
 
238
+ #: redirection-strings.php:221 redirection-strings.php:225
239
  msgid "Target URL when matched"
240
  msgstr "URL de destino quando corresponder"
241
 
247
  msgid "If you are using a caching system such as Cloudflare then please read this: "
248
  msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
249
 
250
+ #: matches/http-header.php:11 redirection-strings.php:237
251
  msgid "URL and HTTP header"
252
  msgstr "URL e cabeçalho HTTP"
253
 
254
+ #: matches/custom-filter.php:9 redirection-strings.php:238
255
  msgid "URL and custom filter"
256
  msgstr "URL e filtro personalizado"
257
 
258
+ #: matches/cookie.php:7 redirection-strings.php:235
259
  msgid "URL and cookie"
260
  msgstr "URL e cookie"
261
 
262
+ #: redirection-strings.php:367
263
  msgid "404 deleted"
264
  msgstr "404 excluído"
265
 
266
+ #: redirection-strings.php:186
267
  msgid "Raw /index.php?rest_route=/"
268
  msgstr "/index.php?rest_route=/"
269
 
270
+ #: redirection-strings.php:215
271
  msgid "REST API"
272
  msgstr "API REST"
273
 
274
+ #: redirection-strings.php:216
275
  msgid "How Redirection uses the REST API - don't change unless necessary"
276
  msgstr "Como o Redirection usa a API REST. Não altere a menos que seja necessário"
277
 
303
  msgid "None of the suggestions helped"
304
  msgstr "Nenhuma das sugestões ajudou"
305
 
306
+ #: redirection-admin.php:440
307
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
308
  msgstr "Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."
309
 
310
+ #: redirection-admin.php:434
311
  msgid "Unable to load Redirection ☹️"
312
  msgstr "Não foi possível carregar o Redirection ☹️"
313
 
344
  msgid "https://johngodley.com"
345
  msgstr "https://johngodley.com"
346
 
347
+ #: redirection-strings.php:352
348
  msgid "Useragent Error"
349
  msgstr "Erro de agente de usuário"
350
 
351
+ #: redirection-strings.php:354
352
  msgid "Unknown Useragent"
353
  msgstr "Agente de usuário desconhecido"
354
 
355
+ #: redirection-strings.php:355
356
  msgid "Device"
357
  msgstr "Dispositivo"
358
 
359
+ #: redirection-strings.php:356
360
  msgid "Operating System"
361
  msgstr "Sistema operacional"
362
 
363
+ #: redirection-strings.php:357
364
  msgid "Browser"
365
  msgstr "Navegador"
366
 
367
+ #: redirection-strings.php:358
368
  msgid "Engine"
369
  msgstr "Motor"
370
 
371
+ #: redirection-strings.php:359
372
  msgid "Useragent"
373
  msgstr "Agente de usuário"
374
 
375
+ #: redirection-strings.php:80 redirection-strings.php:360
376
  msgid "Agent"
377
  msgstr "Agente"
378
 
379
+ #: redirection-strings.php:182
380
  msgid "No IP logging"
381
  msgstr "Não registrar IP"
382
 
383
+ #: redirection-strings.php:183
384
  msgid "Full IP logging"
385
  msgstr "Registrar IP completo"
386
 
387
+ #: redirection-strings.php:184
388
  msgid "Anonymize IP (mask last part)"
389
  msgstr "Tornar IP anônimo (mascarar a última parte)"
390
 
391
+ #: redirection-strings.php:194
392
  msgid "Monitor changes to %(type)s"
393
  msgstr "Monitorar alterações em %(type)s"
394
 
395
+ #: redirection-strings.php:200
396
  msgid "IP Logging"
397
  msgstr "Registro de IP"
398
 
399
+ #: redirection-strings.php:201
400
  msgid "(select IP logging level)"
401
  msgstr "(selecione o nível de registro de IP)"
402
 
403
+ #: redirection-strings.php:134 redirection-strings.php:147
404
  msgid "Geo Info"
405
  msgstr "Informações geográficas"
406
 
407
+ #: redirection-strings.php:135 redirection-strings.php:148
408
  msgid "Agent Info"
409
  msgstr "Informação sobre o agente"
410
 
411
+ #: redirection-strings.php:136 redirection-strings.php:149
412
  msgid "Filter by IP"
413
  msgstr "Filtrar por IP"
414
 
415
+ #: redirection-strings.php:130 redirection-strings.php:139
416
  msgid "Referrer / User Agent"
417
  msgstr "Referenciador / Agente de usuário"
418
 
420
  msgid "Geo IP Error"
421
  msgstr "Erro IP Geo"
422
 
423
+ #: redirection-strings.php:27 redirection-strings.php:75
424
+ #: redirection-strings.php:353
425
  msgid "Something went wrong obtaining this information"
426
  msgstr "Algo deu errado ao obter essa informação"
427
 
444
 
445
  #: redirection-strings.php:34
446
  msgid "Area"
447
+ msgstr "Região"
448
 
449
  #: redirection-strings.php:35
450
  msgid "Timezone"
454
  msgid "Geo Location"
455
  msgstr "Coordenadas"
456
 
457
+ #: redirection-strings.php:37 redirection-strings.php:84
458
+ #: redirection-strings.php:361
459
  msgid "Powered by {{link}}redirect.li{{/link}}"
460
  msgstr "Fornecido por {{link}}redirect.li{{/link}}"
461
 
463
  msgid "Trash"
464
  msgstr "Lixeira"
465
 
466
+ #: redirection-admin.php:439
467
  msgid "Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection"
468
  msgstr "O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"
469
 
475
  msgid "https://redirection.me/"
476
  msgstr "https://redirection.me/"
477
 
478
+ #: redirection-strings.php:311
479
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
480
  msgstr "A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."
481
 
482
+ #: redirection-strings.php:312
483
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
484
  msgstr "Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."
485
 
486
+ #: redirection-strings.php:314
487
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
488
  msgstr "Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"
489
 
490
+ #: redirection-strings.php:177
491
  msgid "Never cache"
492
  msgstr "Nunca fazer cache"
493
 
494
+ #: redirection-strings.php:178
495
  msgid "An hour"
496
  msgstr "Uma hora"
497
 
498
+ #: redirection-strings.php:213
499
  msgid "Redirect Cache"
500
  msgstr "Cache dos redirecionamentos"
501
 
502
+ #: redirection-strings.php:214
503
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
504
  msgstr "O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"
505
 
506
+ #: redirection-strings.php:101
507
  msgid "Are you sure you want to import from %s?"
508
  msgstr "Tem certeza de que deseja importar de %s?"
509
 
510
+ #: redirection-strings.php:102
511
  msgid "Plugin Importers"
512
  msgstr "Importar de plugins"
513
 
514
+ #: redirection-strings.php:103
515
  msgid "The following redirect plugins were detected on your site and can be imported from."
516
  msgstr "Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."
517
 
518
+ #: redirection-strings.php:86
519
  msgid "total = "
520
  msgstr "total = "
521
 
522
+ #: redirection-strings.php:87
523
  msgid "Import from %s"
524
  msgstr "Importar de %s"
525
 
526
+ #: redirection-admin.php:392
527
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
528
  msgstr "Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."
529
 
530
+ #: redirection-admin.php:391
531
  msgid "Redirection not installed properly"
532
  msgstr "O Redirection não foi instalado adequadamente"
533
 
534
+ #: redirection-admin.php:362
535
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
536
  msgstr "O Redirection requer o WordPress v%1s, mas você está usando a versão v%2s. Atualize seu WordPress"
537
 
539
  msgid "Default WordPress \"old slugs\""
540
  msgstr "Redirecionamentos de \"slugs anteriores\" do WordPress"
541
 
542
+ #: redirection-strings.php:193
543
  msgid "Create associated redirect (added to end of URL)"
544
  msgstr "Criar redirecionamento atrelado (adicionado ao fim do URL)"
545
 
546
+ #: redirection-admin.php:442
547
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
548
  msgstr "O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."
549
 
550
+ #: redirection-strings.php:331
551
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
552
  msgstr "Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."
553
 
554
+ #: redirection-strings.php:332
555
  msgid "⚡️ Magic fix ⚡️"
556
  msgstr "⚡️ Correção mágica ⚡️"
557
 
558
+ #: redirection-strings.php:335
559
  msgid "Plugin Status"
560
  msgstr "Status do plugin"
561
 
562
+ #: redirection-strings.php:279 redirection-strings.php:293
563
  msgid "Custom"
564
  msgstr "Personalizado"
565
 
566
+ #: redirection-strings.php:280
567
  msgid "Mobile"
568
  msgstr "Móvel"
569
 
570
+ #: redirection-strings.php:281
571
  msgid "Feed Readers"
572
  msgstr "Leitores de feed"
573
 
574
+ #: redirection-strings.php:282
575
  msgid "Libraries"
576
  msgstr "Bibliotecas"
577
 
578
+ #: redirection-strings.php:190
579
  msgid "URL Monitor Changes"
580
  msgstr "Alterações do monitoramento de URLs"
581
 
582
+ #: redirection-strings.php:191
583
  msgid "Save changes to this group"
584
  msgstr "Salvar alterações neste grupo"
585
 
586
+ #: redirection-strings.php:192
587
  msgid "For example \"/amp\""
588
  msgstr "Por exemplo, \"/amp\""
589
 
590
+ #: redirection-strings.php:203
591
  msgid "URL Monitor"
592
  msgstr "Monitoramento de URLs"
593
 
594
+ #: redirection-strings.php:143
595
  msgid "Delete 404s"
596
  msgstr "Excluir 404s"
597
 
598
+ #: redirection-strings.php:144
599
  msgid "Delete all logs for this 404"
600
  msgstr "Excluir todos os registros para este 404"
601
 
602
+ #: redirection-strings.php:120
603
  msgid "Delete all from IP %s"
604
  msgstr "Excluir registros do IP %s"
605
 
606
+ #: redirection-strings.php:121
607
  msgid "Delete all matching \"%s\""
608
  msgstr "Excluir tudo que corresponder a \"%s\""
609
 
611
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
612
  msgstr "Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."
613
 
614
+ #: redirection-admin.php:437
615
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
616
  msgstr "Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"
617
 
618
+ #: redirection-admin.php:436 redirection-strings.php:70
619
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
620
  msgstr "Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."
621
 
622
+ #: redirection-admin.php:361 redirection-admin.php:375
623
  msgid "Unable to load Redirection"
624
  msgstr "Não foi possível carregar o Redirection"
625
 
626
+ #: models/fixer.php:265
627
  msgid "Unable to create group"
628
  msgstr "Não foi possível criar grupo"
629
 
630
+ #: models/fixer.php:257
631
  msgid "Failed to fix database tables"
632
  msgstr "Falha ao corrigir tabelas do banco de dados"
633
 
703
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
704
  msgstr "Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."
705
 
706
+ #: redirection-admin.php:441
707
  msgid "If you think Redirection is at fault then create an issue."
708
  msgstr "Se você acha que o erro é do Redirection, abra um chamado."
709
 
710
+ #: redirection-admin.php:435
711
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
712
  msgstr "Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."
713
 
714
+ #: redirection-admin.php:427
715
  msgid "Loading, please wait..."
716
  msgstr "Carregando, aguarde..."
717
 
718
+ #: redirection-strings.php:106
719
  msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
720
  msgstr "{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."
721
 
731
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
732
  msgstr "Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."
733
 
734
+ #: redirection-admin.php:445 redirection-strings.php:22
735
  msgid "Create Issue"
736
  msgstr "Criar chamado"
737
 
743
  msgid "Important details"
744
  msgstr "Detalhes importantes"
745
 
746
+ #: redirection-strings.php:310
747
  msgid "Need help?"
748
  msgstr "Precisa de ajuda?"
749
 
750
+ #: redirection-strings.php:313
751
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
752
  msgstr "Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."
753
 
754
+ #: redirection-strings.php:267
755
  msgid "Pos"
756
  msgstr "Pos"
757
 
758
+ #: redirection-strings.php:250
759
  msgid "410 - Gone"
760
  msgstr "410 - Não existe mais"
761
 
762
+ #: redirection-strings.php:257
763
  msgid "Position"
764
  msgstr "Posição"
765
 
766
+ #: redirection-strings.php:207
767
  msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
768
  msgstr "Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"
769
 
770
+ #: redirection-strings.php:208
771
  msgid "Apache Module"
772
  msgstr "Módulo Apache"
773
 
774
+ #: redirection-strings.php:209
775
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
776
  msgstr "Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."
777
 
778
+ #: redirection-strings.php:88
779
  msgid "Import to group"
780
  msgstr "Importar para grupo"
781
 
782
+ #: redirection-strings.php:89
783
  msgid "Import a CSV, .htaccess, or JSON file."
784
  msgstr "Importar um arquivo CSV, .htaccess ou JSON."
785
 
786
+ #: redirection-strings.php:90
787
  msgid "Click 'Add File' or drag and drop here."
788
  msgstr "Clique 'Adicionar arquivo' ou arraste e solte aqui."
789
 
790
+ #: redirection-strings.php:91
791
  msgid "Add File"
792
  msgstr "Adicionar arquivo"
793
 
794
+ #: redirection-strings.php:92
795
  msgid "File selected"
796
  msgstr "Arquivo selecionado"
797
 
798
+ #: redirection-strings.php:95
799
  msgid "Importing"
800
  msgstr "Importando"
801
 
802
+ #: redirection-strings.php:96
803
  msgid "Finished importing"
804
  msgstr "Importação concluída"
805
 
806
+ #: redirection-strings.php:97
807
  msgid "Total redirects imported:"
808
  msgstr "Total de redirecionamentos importados:"
809
 
810
+ #: redirection-strings.php:98
811
  msgid "Double-check the file is the correct format!"
812
  msgstr "Verifique novamente se o arquivo é o formato correto!"
813
 
814
+ #: redirection-strings.php:99
815
  msgid "OK"
816
  msgstr "OK"
817
 
818
+ #: redirection-strings.php:100 redirection-strings.php:263
819
  msgid "Close"
820
  msgstr "Fechar"
821
 
822
+ #: redirection-strings.php:105
823
  msgid "All imports will be appended to the current database."
824
  msgstr "Todas as importações serão anexadas ao banco de dados atual."
825
 
826
+ #: redirection-strings.php:107 redirection-strings.php:127
827
  msgid "Export"
828
  msgstr "Exportar"
829
 
830
+ #: redirection-strings.php:108
831
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
832
  msgstr "Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."
833
 
834
+ #: redirection-strings.php:109
835
  msgid "Everything"
836
  msgstr "Tudo"
837
 
838
+ #: redirection-strings.php:110
839
  msgid "WordPress redirects"
840
  msgstr "Redirecionamentos WordPress"
841
 
842
+ #: redirection-strings.php:111
843
  msgid "Apache redirects"
844
  msgstr "Redirecionamentos Apache"
845
 
846
+ #: redirection-strings.php:112
847
  msgid "Nginx redirects"
848
  msgstr "Redirecionamentos Nginx"
849
 
850
+ #: redirection-strings.php:113