Redirection - Version 3.3

Version Description

  • 24th June 2018 =
  • Add user role/capability match
  • Add fix for IP blocking plugins
  • Add server match to redirect other domains (beta)
  • Add a force http to https option (beta)
  • Use users locale setting, not site
  • Check for mismatched site/home URLs
  • Fix WP CLI not clearing logs
  • Fix old capability check
  • Detect BOM marker in response
  • Improve detection of servers that block content-type json
  • Fix incorrect encoding of entities in some locale files
  • Fix table navigation parameters not affecting subsequent pages
  • Fix .htaccess saving after WordPress redirects
  • Fix get_plugin_data error
  • Fix canonical redirect problem caused by change in WordPress
  • Fix situation that prevented rules cascading
Download this release

Release Info

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

Code changes from version 3.2.1 to 3.3

Files changed (57) hide show
  1. actions/pass.php +3 -0
  2. api/api-export.php +0 -4
  3. api/api-plugin.php +14 -4
  4. api/api-redirect.php +4 -4
  5. api/api-settings.php +0 -4
  6. fileio/json.php +1 -1
  7. fileio/nginx.php +25 -20
  8. locale/json/redirection-de_DE.json +1 -1
  9. locale/json/redirection-en_CA.json +1 -1
  10. locale/json/redirection-en_GB.json +1 -1
  11. locale/json/redirection-es_ES.json +1 -1
  12. locale/json/redirection-fr_FR.json +1 -1
  13. locale/json/redirection-it_IT.json +1 -1
  14. locale/json/redirection-ja.json +1 -1
  15. locale/json/redirection-pt_BR.json +1 -0
  16. locale/json/redirection-sv_SE.json +1 -1
  17. locale/json/redirection-zh_TW.json +1 -1
  18. locale/redirection-de_DE.mo +0 -0
  19. locale/redirection-de_DE.po +317 -292
  20. locale/redirection-en_CA.mo +0 -0
  21. locale/redirection-en_CA.po +315 -290
  22. locale/redirection-en_GB.mo +0 -0
  23. locale/redirection-en_GB.po +386 -361
  24. locale/redirection-es_ES.mo +0 -0
  25. locale/redirection-es_ES.po +315 -290
  26. locale/redirection-fr_FR.mo +0 -0
  27. locale/redirection-fr_FR.po +399 -374
  28. locale/redirection-it_IT.mo +0 -0
  29. locale/redirection-it_IT.po +317 -292
  30. locale/redirection-ja.mo +0 -0
  31. locale/redirection-ja.po +315 -290
  32. locale/redirection-pt_BR.mo +0 -0
  33. locale/redirection-pt_BR.po +1302 -0
  34. locale/redirection-sv_SE.mo +0 -0
  35. locale/redirection-sv_SE.po +344 -319
  36. locale/redirection-zh_TW.mo +0 -0
  37. locale/redirection-zh_TW.po +316 -291
  38. locale/redirection.pot +39 -38
  39. matches/http-header.php +1 -1
  40. matches/server.php +53 -0
  41. matches/user-role.php +55 -0
  42. models/fixer.php +60 -23
  43. models/htaccess.php +30 -14
  44. models/log.php +7 -6
  45. models/match.php +56 -5
  46. models/redirect.php +23 -10
  47. models/request.php +15 -1
  48. modules/apache.php +1 -1
  49. modules/nginx.php +2 -1
  50. modules/wordpress.php +20 -22
  51. readme.txt +15 -3
  52. redirection-admin.php +38 -33
  53. redirection-api.php +9 -9
  54. redirection-front.php +1 -1
  55. redirection-settings.php +22 -5
  56. redirection-version.php +2 -2
  57. redirection.js +10 -6
actions/pass.php CHANGED
@@ -5,6 +5,9 @@ class Pass_Action extends Red_Action {
5
  echo @wp_remote_fopen( $url );
6
  }
7
 
 
 
 
8
  public function process_file( $url ) {
9
  $parts = explode( '?', substr( $url, 7 ) );
10
 
5
  echo @wp_remote_fopen( $url );
6
  }
7
 
8
+ /**
9
+ * This is deprecated and will be removed in a future version
10
+ */
11
  public function process_file( $url ) {
12
  $parts = explode( '?', substr( $url, 7 ) );
13
 
api/api-export.php CHANGED
@@ -8,10 +8,6 @@ class Redirection_Api_Export extends Redirection_Api_Route {
8
  }
9
 
10
  public function route_export( WP_REST_Request $request ) {
11
- if ( ! function_exists( 'get_plugin_data' ) ) {
12
- include_once ABSPATH.'/wp-admin/includes/plugin.php';
13
- }
14
-
15
  $module = $request['module'];
16
  $format = 'json';
17
 
8
  }
9
 
10
  public function route_export( WP_REST_Request $request ) {
 
 
 
 
11
  $module = $request['module'];
12
  $format = 'json';
13
 
api/api-plugin.php CHANGED
@@ -13,17 +13,21 @@ class Redirection_Api_Plugin extends Redirection_Api_Route {
13
  register_rest_route( $namespace, '/plugin/delete', array(
14
  $this->get_route( WP_REST_Server::EDITABLE, 'route_delete' ),
15
  ) );
 
 
 
 
16
  }
17
 
18
  public function route_status( WP_REST_Request $request ) {
19
- include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
20
 
21
  $fixer = new Red_Fixer();
22
  return $fixer->get_status();
23
  }
24
 
25
  public function route_fixit( WP_REST_Request $request ) {
26
- include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
27
 
28
  $fixer = new Red_Fixer();
29
  return $fixer->fix( $fixer->get_status() );
@@ -38,9 +42,15 @@ class Redirection_Api_Plugin extends Redirection_Api_Route {
38
  $plugin->plugin_uninstall();
39
 
40
  $current = get_option( 'active_plugins' );
41
- array_splice( $current, array_search( basename( dirname( REDIRECTION_FILE ) ).'/'.basename( REDIRECTION_FILE ), $current ), 1 );
42
  update_option( 'active_plugins', $current );
43
 
44
- return array( 'location' => admin_url().'plugins.php' );
 
 
 
 
 
 
45
  }
46
  }
13
  register_rest_route( $namespace, '/plugin/delete', array(
14
  $this->get_route( WP_REST_Server::EDITABLE, 'route_delete' ),
15
  ) );
16
+
17
+ register_rest_route( $namespace, '/plugin/test', array(
18
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_test' ),
19
+ ) );
20
  }
21
 
22
  public function route_status( WP_REST_Request $request ) {
23
+ include_once dirname( REDIRECTION_FILE ) . '/models/fixer.php';
24
 
25
  $fixer = new Red_Fixer();
26
  return $fixer->get_status();
27
  }
28
 
29
  public function route_fixit( WP_REST_Request $request ) {
30
+ include_once dirname( REDIRECTION_FILE ) . '/models/fixer.php';
31
 
32
  $fixer = new Red_Fixer();
33
  return $fixer->fix( $fixer->get_status() );
42
  $plugin->plugin_uninstall();
43
 
44
  $current = get_option( 'active_plugins' );
45
+ array_splice( $current, array_search( basename( dirname( REDIRECTION_FILE ) ) . '/' . basename( REDIRECTION_FILE ), $current ), 1 );
46
  update_option( 'active_plugins', $current );
47
 
48
+ return array( 'location' => admin_url() . 'plugins.php' );
49
+ }
50
+
51
+ public function route_test() {
52
+ return array(
53
+ 'success' => true,
54
+ );
55
  }
56
  }
api/api-redirect.php CHANGED
@@ -29,7 +29,7 @@ class Redirection_Api_Redirect extends Redirection_Api_Filter_Route {
29
  return $this->add_error_details( $redirect, __LINE__ );
30
  }
31
 
32
- return $this->route_list( $request );;
33
  }
34
 
35
  public function route_update( WP_REST_Request $request ) {
@@ -60,11 +60,11 @@ class Redirection_Api_Redirect extends Redirection_Api_Filter_Route {
60
  if ( $redirect ) {
61
  if ( $action === 'delete' ) {
62
  $redirect->delete();
63
- } else if ( $action === 'disable' ) {
64
  $redirect->disable();
65
- } else if ( $action === 'enable' ) {
66
  $redirect->enable();
67
- } else if ( $action === 'reset' ) {
68
  $redirect->reset();
69
  }
70
  }
29
  return $this->add_error_details( $redirect, __LINE__ );
30
  }
31
 
32
+ return $this->route_list( $request );
33
  }
34
 
35
  public function route_update( WP_REST_Request $request ) {
60
  if ( $redirect ) {
61
  if ( $action === 'delete' ) {
62
  $redirect->delete();
63
+ } elseif ( $action === 'disable' ) {
64
  $redirect->disable();
65
+ } elseif ( $action === 'enable' ) {
66
  $redirect->enable();
67
+ } elseif ( $action === 'reset' ) {
68
  $redirect->reset();
69
  }
70
  }
api/api-settings.php CHANGED
@@ -23,10 +23,6 @@ class Redirection_Api_Settings extends Redirection_Api_Route {
23
  }
24
 
25
  public function route_save_settings( WP_REST_Request $request ) {
26
- if ( ! function_exists( 'get_plugin_data' ) ) {
27
- include_once ABSPATH.'/wp-admin/includes/plugin.php';
28
- }
29
-
30
  red_set_options( $request->get_params() );
31
 
32
  return $this->route_settings( $request );
23
  }
24
 
25
  public function route_save_settings( WP_REST_Request $request ) {
 
 
 
 
26
  red_set_options( $request->get_params() );
27
 
28
  return $this->route_settings( $request );
fileio/json.php CHANGED
@@ -11,7 +11,7 @@ class Red_Json_File extends Red_FileIO {
11
  }
12
 
13
  public function get_data( array $items, array $groups ) {
14
- $version = get_plugin_data( dirname( dirname( __FILE__ ) ).'/redirection.php' );
15
 
16
  $items = array(
17
  'plugin' => array(
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(
fileio/nginx.php CHANGED
@@ -4,36 +4,40 @@ class Red_Nginx_File extends Red_FileIO {
4
  public function force_download() {
5
  parent::force_download();
6
 
7
- $filename = 'redirection-'.date_i18n( get_option( 'date_format' ) ).'.nginx';
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
  $lines = array();
15
- $version = get_plugin_data( dirname( dirname( __FILE__ ) ).'/redirection.php' );
16
 
17
  $lines[] = '# Created by Redirection';
18
- $lines[] = '# '.date( 'r' );
19
- $lines[] = '# Redirection '.trim( $version['Version'] ).' - https://redirection.me';
20
  $lines[] = '';
21
  $lines[] = 'server {';
22
 
 
23
  foreach ( $items as $item ) {
24
- $lines[] = $this->get_nginx_item( $item );
25
  }
26
 
 
 
27
  $lines[] = '}';
28
  $lines[] = '';
29
  $lines[] = '# End of Redirection';
30
 
31
- return implode( PHP_EOL, $lines ).PHP_EOL;
32
  }
33
 
34
  private function get_redirect_code( Red_Item $item ) {
35
- if ( $item->get_action_code() === 301 )
36
  return 'permanent';
 
37
  return 'redirect';
38
  }
39
 
@@ -42,10 +46,11 @@ class Red_Nginx_File extends Red_FileIO {
42
  }
43
 
44
  private function get_nginx_item( Red_Item $item ) {
45
- $target = 'add_'.$item->get_match_type();
46
 
47
- if ( method_exists( $this, $target ) )
48
- return ' '.$this->$target( $item, $item->match );
 
49
  return false;
50
  }
51
 
@@ -55,14 +60,14 @@ class Red_Nginx_File extends Red_FileIO {
55
 
56
  private function add_agent( Red_Item $item ) {
57
  if ( $item->match->url_from ) {
58
- $lines[] = 'if ( $http_user_agent ~* ^'.$item->match->user_agent.'$ ) {';
59
- $lines[] = ' '.$this->add_redirect( $item->get_url(), $item->match->url_from, $this->get_redirect_code( $item ) );
60
  $lines[] = ' }';
61
  }
62
 
63
  if ( $item->match->url_notfrom ) {
64
- $lines[] = 'if ( $http_user_agent !~* ^'.$item->match->user_agent.'$ ) {';
65
- $lines[] = ' '.$this->add_redirect( $item->get_url(), $item->match->url_notfrom, $this->get_redirect_code( $item ) );
66
  $lines[] = ' }';
67
  }
68
 
@@ -71,14 +76,14 @@ class Red_Nginx_File extends Red_FileIO {
71
 
72
  private function add_referrer( Red_Item $item ) {
73
  if ( $item->match->url_from ) {
74
- $lines[] = 'if ( $http_referer ~* ^'.$item->match->referrer.'$ ) {';
75
- $lines[] = ' '.$this->add_redirect( $item->get_url(), $item->match->url_from, $this->get_redirect_code( $item ) );
76
  $lines[] = ' }';
77
  }
78
 
79
  if ( $item->match->url_notfrom ) {
80
- $lines[] = 'if ( $http_referer !~* ^'.$item->match->referrer.'$ ) {';
81
- $lines[] = ' '.$this->add_redirect( $item->get_url(), $item->match->url_notfrom, $this->get_redirect_code( $item ) );
82
  $lines[] = ' }';
83
  }
84
 
@@ -91,6 +96,6 @@ class Red_Nginx_File extends Red_FileIO {
91
  $target = preg_replace( "/[\r\n\t].*?$/s", '', $target );
92
  $target = preg_replace( '/[^\PC\s]/u', '', $target );
93
 
94
- return 'rewrite ^'.$source.'$ '.$target.' '.$code.';';
95
  }
96
  }
4
  public function force_download() {
5
  parent::force_download();
6
 
7
+ $filename = 'redirection-' . date_i18n( get_option( 'date_format' ) ) . '.nginx';
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
  $lines = array();
15
+ $version = red_get_plugin_data( dirname( dirname( __FILE__ ) ) . '/redirection.php' );
16
 
17
  $lines[] = '# Created by Redirection';
18
+ $lines[] = '# ' . date( 'r' );
19
+ $lines[] = '# Redirection ' . trim( $version['Version'] ) . ' - https://redirection.me';
20
  $lines[] = '';
21
  $lines[] = 'server {';
22
 
23
+ $parts = array();
24
  foreach ( $items as $item ) {
25
+ $parts[] = $this->get_nginx_item( $item );
26
  }
27
 
28
+ $lines = array_merge( $lines, array_filter( $parts ) );
29
+
30
  $lines[] = '}';
31
  $lines[] = '';
32
  $lines[] = '# End of Redirection';
33
 
34
+ return implode( PHP_EOL, $lines ) . PHP_EOL;
35
  }
36
 
37
  private function get_redirect_code( Red_Item $item ) {
38
+ if ( $item->get_action_code() === 301 ) {
39
  return 'permanent';
40
+ }
41
  return 'redirect';
42
  }
43
 
46
  }
47
 
48
  private function get_nginx_item( Red_Item $item ) {
49
+ $target = 'add_' . $item->get_match_type();
50
 
51
+ if ( method_exists( $this, $target ) ) {
52
+ return ' ' . $this->$target( $item, $item->match );
53
+ }
54
  return false;
55
  }
56
 
60
 
61
  private function add_agent( Red_Item $item ) {
62
  if ( $item->match->url_from ) {
63
+ $lines[] = 'if ( $http_user_agent ~* ^' . $item->match->user_agent . '$ ) {';
64
+ $lines[] = ' ' . $this->add_redirect( $item->get_url(), $item->match->url_from, $this->get_redirect_code( $item ) );
65
  $lines[] = ' }';
66
  }
67
 
68
  if ( $item->match->url_notfrom ) {
69
+ $lines[] = 'if ( $http_user_agent !~* ^' . $item->match->user_agent . '$ ) {';
70
+ $lines[] = ' ' . $this->add_redirect( $item->get_url(), $item->match->url_notfrom, $this->get_redirect_code( $item ) );
71
  $lines[] = ' }';
72
  }
73
 
76
 
77
  private function add_referrer( Red_Item $item ) {
78
  if ( $item->match->url_from ) {
79
+ $lines[] = 'if ( $http_referer ~* ^' . $item->match->referrer . '$ ) {';
80
+ $lines[] = ' ' . $this->add_redirect( $item->get_url(), $item->match->url_from, $this->get_redirect_code( $item ) );
81
  $lines[] = ' }';
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
  }
89
 
96
  $target = preg_replace( "/[\r\n\t].*?$/s", '', $target );
97
  $target = preg_replace( '/[^\PC\s]/u', '', $target );
98
 
99
+ return 'rewrite ^' . $source . '$ ' . $target . ' ' . $code . ';';
100
  }
101
  }
locale/json/redirection-de_DE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":[""],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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":["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":["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?":["Dein Server hat einen 403-Verboten Fehler zurückgegeben, der darauf hindeuten könnte, dass die Anfrage gesperrt wurde. Verwendest du eine Firewall oder ein Sicherheits-Plugin?"],"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":["Umleitungen"],"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
+ {"":[],"Form request":["Formularanfrage"],"Relative /wp-json/":["Relativ /wp-json/"],"Proxy over 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":[""],"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":["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?":["Dein Server hat einen 403-Verboten Fehler zurückgegeben, der darauf hindeuten könnte, dass die Anfrage gesperrt wurde. Verwendest du eine Firewall oder ein Sicherheits-Plugin?"],"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
- {"":[],"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"],"Optional description":["Optional description"],"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"],"Default /wp-json/ (preferred)":["Default /wp-json/ (preferred)"],"Raw /index.php?rest_route=/":["Raw /index.php?rest_route=/"],"Proxy over Admin AJAX (deprecated)":["Proxy over Admin AJAX (deprecated)"],"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."],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["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}}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?":["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}}.":["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
+ {"":[],"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"],"Optional description":["Optional description"],"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."],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["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}}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?":["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}}.":["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
- {"":[],"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":[""],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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/":["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?":["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}}.":["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":[""],"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
+ {"":[],"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"],"Optional description":["Optional description"],"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."],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["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}}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?":["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}}.":["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
- {"":[],"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"],"Optional description":["Descripción opcional"],"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"],"Default /wp-json/ (preferred)":["Por defecto /wp-json/ (preferido)"],"Raw /index.php?rest_route=/":["Sin modificar /index.php?rest_route=/"],"Proxy over Admin AJAX (deprecated)":["Proxy sobre administración en AJAX (obsoleto)"],"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."],"Please 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 \"mágicamente\" resolver 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?":["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 ayude 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
+ {"":[],"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"],"Optional description":["Descripción opcional"],"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."],"Please 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 \"mágicamente\" resolver 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?":["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 ayude 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"]}
locale/json/redirection-fr_FR.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":[""],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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/":["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":["Jamais de cache"],"An hour":["Une heure"],"Redirect Cache":["Cache de redirection"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":["Confirmez-vous l’importation depuis %s ?"],"Plugin Importers":[""],"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\"":[""],"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":[""],"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.":[""],"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":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"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?":["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":[""],"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&nbsp;"],"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&rsquo;ai aidé l&rsquo;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
+ {"":[],"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"],"Optional description":["Description facultative"],"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."],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Veuillez jeter 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?":["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"]}
locale/json/redirection-it_IT.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":[""],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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?":["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:":[""],"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":[""],"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.":[""],"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.":["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.":[""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[""],"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 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":["Rimuovi"],"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 out"],"Logged In":["Logged in"],"URL and login status":["status URL e login"]}
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?":["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:":[""],"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":[""],"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.":[""],"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.":["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.":[""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[""],"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 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":[""],"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
- {"":[],"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":[""],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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.":[""],"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":["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/":["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)":[""],"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 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>:":[""],"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":["キャッシュされた 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?":["サーバーが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":[""],"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
+ {"":[],"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":["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":["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/":["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)":[""],"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 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>:":[""],"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":["キャッシュされた 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?":["サーバーが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":[""],"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-pt_BR.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":[],"Form request":["Pedido de formulário"],"Relative /wp-json/":["Relativo /wp-json/"],"Proxy over Admin AJAX":["Proxy sobre Admin AJAX"],"Default /wp-json/":["Padrão /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:":["Se nada funcionar, o redirecionamento pode ter dificuldade em se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Site e inicio do protocolo"],"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":["Aceitar Idioma"],"Header value":["Valor 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"],"Optional description":["Descrição opcional"],"Target URL when not matched":["Destino da URL não corresponde"],"Target URL when matched":["Destino da URL é correspondente"],"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 and custom filter":[""],"URL and cookie":[""],"404 deleted":["404 excluído"],"Raw /index.php?rest_route=/":["Raw /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 mude 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.":["WordPress retornou uma mensagem inesperada. Isso pode ser causado por sua API REST que não funciona, ou por outro plugin ou tema."],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada no {{link}}plugin status{{/link}}. Pode ser capaz de identificar e \"corrigir a magia\" 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}}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 ☹️":["Não foi possível carregar Redirection ☹️"],"WordPress REST API is working at %s":["WordPress API REST está funcionando %s"],"WordPress REST API":["WordPress API REST"],"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":["Sistema operacional"],"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":["Cidade"],"Area":["Área"],"Timezone":["Fuso horário"],"Geo Location":[""],"Powered by {{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":[""],"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.":["Se o botão mágico não funcionar, então você deve ler o erro e ver se você pode corrigi-lo manualmente, caso contrário siga a seção 'Precisa de ajuda' logo abaixo."],"⚡️ Magic fix ⚡️":["⚡️ Correção mágica ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Personalizado"],"Mobile":["Móvel"],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Delete 404s":["Excluir 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":["Redirecionamento em cache detectado"],"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 um erro ocorreu ou que a requisiçã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?":["Seu servidor retornou um erro 403 Forbidden, que pode indicar que a requisiçã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}}além de descrever o 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 – olhe 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 de arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} – e pode ser opcionalmente seguido de {{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.":["Redirection não está funcionando. Tente limpar o cache do seu navegador e recarregue 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.":[""],"Pos":["Pos"],"410 - Gone":[""],"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":[""],"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":["Adicionar arquivo"],"File selected":[""],"Importing":["Importando"],"Finished importing":[""],"Total redirects imported:":[""],"Double-check the file is the correct format!":[""],"OK":[""],"Close":["Fechar"],"All imports will be appended to the current database.":[""],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[""],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["Ver"],"Log files can be exported from the log pages.":[""],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":[""],"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":[""],"302 - Found":[""],"307 - Temporary Redirect":[""],"308 - Permanent Redirect":[""],"401 - Unauthorized":[""],"404 - Not Found":[""],"Title":["Título"],"When matched":[""],"with HTTP code":[""],"Show advanced options":[""],"Matched Target":[""],"Unmatched Target":[""],"Saving...":["Salvando..."],"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":["Pesquisar por IP"],"Select bulk action":["Selecione ação 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 %(página)s"],"Next page":["Próxima página"],"Last page":["Última página"],"%s item":["%s item","%s items"],"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":["Sem resultados"],"Delete the logs - are you sure?":["Excluir os logs - 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á mais disponíveis. Você pode pré-programar exclusão automática na opções do plugin Redirecionamento. Se desejar fazer isso automaticamente."],"Yes! Delete the logs":["Sim! Exclua os logs"],"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":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Deseja manter-se atualizado com 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 para o pequeno boletim de informações sobre Redirection - um boletim informativo de baixo volume 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 email:"],"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ê adquire um software útil e eu tenho que me encarregar em torná-lo 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ídos, os redirecionamentos deixarão de funcionar. Se eles ainda continuam 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}}.":["Redirection é gratuito para uso - ah como a vida é bela! Entretanto, seu desenvolvimento requer tempo e esforço e, se ele lhe foi útil, você pode nos ajudar a manter o desenvolvimento através de uma {{strong}}pequena doação{{/strong}}."],"Redirection Support":["Ajuda do Redirection"],"Support":["Ajuda"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Remover Plugin Redirection"],"Upload":["Upload"],"Import":["Importar"],"Update":["Atualizar"],"Auto-generate URL":["Gerar URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Um token exclusivo permitindo que leitores de feeds acessem aos registros de redirecionamento em RSS (deixe em branco para auto-criação)"],"RSS Token":["Token RSS"],"404 Logs":["Registros 404"],"(time to keep logs for)":["(tempo para manter os registros)"],"Redirect Logs":["Registros do Redirect"],"I'm a nice person and I have helped support the author of this plugin":["Sou uma pessoa legal e já ajudei 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":["Nenhum registro"],"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 seus redirecionamentos. Grupos são associados a um módulo, que afeta como os redirecionamentos daquele grupo trabalham. Se você está em dúvida, use o módulo WordPress."],"Add Group":["Adicionar Grupo"],"Search":["Buscar"],"Groups":["Grupos"],"Save":["Salvar"],"Group":["Grupo"],"Match":["Correspondente à"],"Add new redirection":["Adicionar novo redirecionamento"],"Cancel":["Cancelar"],"Download":["Baixar"],"Redirection":["Redirection"],"Settings":["Configurações"],"Do nothing":["Não fazer nada"],"Error (404)":["Página inexistente (Erro 404)"],"Pass-through":["Pass-through"],"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 redirecionamento"],"IP":["IP"],"Source URL":["URL de origem"],"Date":["Data"],"Add Redirect":["Adicionar redirecionamento"],"All modules":["Todos módulos"],"View Redirects":["Ver redirecionamentos"],"Module":["Módulo"],"Redirects":["Redirecionamentos"],"Name":["Nome"],"Filter":["Filtro"],"Reset hits":["Reinicializar acessos"],"Enable":["Habilitar"],"Disable":["Desabilitar"],"Delete":["Remover"],"Edit":["Editar"],"Last Access":["Último Acesso"],"Hits":["Acessos"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Posts modificados"],"Redirections":["Redirecionamentos"],"User Agent":["User-Agent"],"URL and user agent":["URL e User-Agent"],"Target URL":["URL de destino"],"URL only":["URL"],"Regex":["Expressão Regular"],"Referrer":["Referrer"],"URL and referrer":["URL e referrer"],"Logged Out":["Usuário fez logout"],"Logged In":["Usuário fez login"],"URL and login status":["URL e status de login"]}
locale/json/redirection-sv_SE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":["404 borttagen"],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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.":["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."],"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.":["{{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":["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":["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}} &mdash; 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 &mdash; 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?":["Din server svarade med ett '403 Förbjudet'-fel som kan indikera att begäran blockerades. Använder du en brandvägg eller ett säkerhetsprogram?"],"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
+ {"":[],"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"],"Optional description":["Valfri beskrivning"],"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."],"Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Kolla in {{link}}tilläggsstatusen{{/link}}. Den kanske kan fixa problemet ”automagiskt”."],"{{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?":["Din server svarade med ett '403 Förbjudet'-fel som kan indikera att begäran blockerades. Använder du en brandvägg eller ett säkerhetsprogram?"],"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
- {"":[],"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":[""],"Default /wp-json/ (preferred)":[""],"Raw /index.php?rest_route=/":[""],"Proxy over Admin AJAX (deprecated)":[""],"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":[""],"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":["網址與登入狀態"]}
locale/redirection-de_DE.mo CHANGED
Binary file
locale/redirection-de_DE.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-01-29 12:23:16+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,99 +11,123 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
  msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
  msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
  msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
  msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
  msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
-
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr ""
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
  msgstr ""
109
 
@@ -131,39 +155,39 @@ msgstr ""
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr ""
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr ""
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr ""
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr ""
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
  msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr "WordPress REST API"
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
  msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
  msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
  msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
  msgstr ""
169
 
@@ -173,118 +197,118 @@ msgstr ""
173
 
174
  #. Author URI of the plugin/theme
175
  msgid "https://johngodley.com"
176
- msgstr ""
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr ""
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr ""
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr ""
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr "Betriebssystem"
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr "Browser"
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr ""
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr ""
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr ""
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr "Keine IP-Protokollierung"
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr "Vollständige IP-Protokollierung"
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr "Änderungen überwachen für %(type)s"
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr "IP-Protokollierung"
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr "(IP-Protokollierungsstufe wählen)"
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr ""
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr ""
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr ""
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr ""
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr ""
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr ""
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr ""
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr ""
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr ""
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr ""
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr ""
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr ""
290
 
@@ -292,11 +316,11 @@ msgstr ""
292
  msgid "Trash"
293
  msgstr ""
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  msgstr ""
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr ""
302
 
@@ -304,63 +328,63 @@ msgstr ""
304
  msgid "https://redirection.me/"
305
  msgstr ""
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  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}}."
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  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."
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr ""
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "Eine Stunde"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr ""
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "Möchtest du wirklich von %s importieren?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr "Plugin Importer"
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "Total = "
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "Import von %s"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr "Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr "Redirection wurde nicht korrekt installiert"
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr "Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe zunächst ein WordPress Update durch."
366
 
@@ -368,71 +392,71 @@ msgstr "Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe z
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr ""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr ""
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr ""
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  msgstr ""
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr ""
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr ""
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr ""
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr ""
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr ""
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr ""
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr ""
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr ""
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr ""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr ""
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr ""
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr ""
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr ""
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr ""
438
 
@@ -440,23 +464,23 @@ msgstr ""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr ""
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr ""
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr ""
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr "Redirection konnte nicht geladen werden"
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr ""
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr ""
462
 
@@ -508,11 +532,11 @@ msgstr ""
508
  msgid "All tables present"
509
  msgstr ""
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr ""
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr ""
518
 
@@ -528,285 +552,285 @@ msgstr "WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "Dein Server hat einen 403-Verboten Fehler zurückgegeben, der darauf hindeuten könnte, dass die Anfrage gesperrt wurde. Verwendest du eine Firewall oder ein Sicherheits-Plugin?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr ""
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr ""
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "Lädt, bitte warte..."
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  msgstr ""
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr ""
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  msgstr ""
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr ""
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr "E-Mail"
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "Wichtige Details"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "Hilfe benötigt?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  msgstr ""
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr ""
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 - Entfernt"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Position"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
  msgstr ""
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Apache Modul"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr ""
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Importiere in Gruppe"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Datei hinzufügen"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "Datei ausgewählt"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Importiere"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Importieren beendet"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "Umleitungen importiert:"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "OK"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Schließen"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Exportieren"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr ""
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Alles"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "WordPress Weiterleitungen"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Apache Weiterleitungen"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Nginx Weiterleitungen"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr "Apache .htaccess"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr ""
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr ""
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "Anzeigen"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "Import/Export"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "Protokolldateien"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "404 Fehler"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr ""
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr ""
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Unterstützen 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Umleitung gespeichert"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Log gelöscht"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Einstellungen gespeichert"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Gruppe gespeichert"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
747
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr ""
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "Alle Gruppen"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301- Dauerhaft verschoben"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 - Gefunden"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 - Zeitweise Umleitung"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 - Dauerhafte Umleitung"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 - Unautorisiert"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 - Nicht gefunden"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Titel"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr ""
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "mit HTTP Code"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Zeige erweiterte Optionen"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr "Passendes Ziel"
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr "Unpassendes Ziel"
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Speichern..."
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "Hinweis anzeigen"
812
 
@@ -826,7 +850,7 @@ msgstr ""
826
  msgid "Unable to add new redirect"
827
  msgstr ""
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Etwas ist schiefgelaufen 🙁"
832
 
@@ -834,113 +858,113 @@ msgstr "Etwas ist schiefgelaufen 🙁"
834
  msgid "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!"
835
  msgstr "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!"
836
 
837
- #: redirection-admin.php:198
838
  msgid "Log entries (%d max)"
839
  msgstr "Log Einträge (%d max)"
840
 
841
- #: redirection-strings.php:305
842
  msgid "Search by IP"
843
  msgstr "Suche nach IP"
844
 
845
- #: redirection-strings.php:300
846
  msgid "Select bulk action"
847
  msgstr ""
848
 
849
- #: redirection-strings.php:301
850
  msgid "Bulk Actions"
851
  msgstr ""
852
 
853
- #: redirection-strings.php:302
854
  msgid "Apply"
855
  msgstr "Anwenden"
856
 
857
- #: redirection-strings.php:293
858
  msgid "First page"
859
  msgstr "Erste Seite"
860
 
861
- #: redirection-strings.php:294
862
  msgid "Prev page"
863
  msgstr "Vorige Seite"
864
 
865
- #: redirection-strings.php:295
866
  msgid "Current Page"
867
  msgstr "Aktuelle Seite"
868
 
869
- #: redirection-strings.php:296
870
  msgid "of %(page)s"
871
  msgstr "von %(Seite)n"
872
 
873
- #: redirection-strings.php:297
874
  msgid "Next page"
875
  msgstr "Nächste Seite"
876
 
877
- #: redirection-strings.php:298
878
  msgid "Last page"
879
  msgstr "Letzte Seite"
880
 
881
- #: redirection-strings.php:299
882
  msgid "%s item"
883
  msgid_plural "%s items"
884
  msgstr[0] "%s Eintrag"
885
  msgstr[1] "%s Einträge"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "Alle auswählen"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "Keine Ergebnisse"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "Logs löschen - bist du sicher?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  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."
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "Ja! Lösche die Logs"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "Nein! Lösche die Logs nicht"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr ""
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "Newsletter"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr ""
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "Deine E-Mail Adresse:"
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "Dauerhaft"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  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}}."
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Unleitung Support"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
  msgstr "Support"
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404s"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "Log"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "Umleitung löschen"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "Hochladen"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "Importieren"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "Aktualisieren"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
  msgstr "Selbsterstellte URL"
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "RSS Token"
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "404-Logs"
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(Dauer, für die die Logs behalten werden)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "Umleitungs-Logs"
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "Plugin Support"
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "Optionen"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "zwei Monate"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "ein Monat"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "eine Woche"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "einen Tag"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "Keine Logs"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "Alle löschen"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "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."
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "Gruppe hinzufügen"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "Suchen"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "Gruppen"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "Speichern"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "Gruppe"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "Passend"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "Eine neue Weiterleitung hinzufügen"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "Abbrechen"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "Download"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "Download"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "Einstellungen"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "Mache nichts"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "Fehler (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "Durchreichen"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "Umleitung zu zufälligen Beitrag"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "Umleitung zur URL"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "Umleitung zur URL"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "URL-Quelle"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "Zeitpunkt"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "Umleitung hinzufügen"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "Alle Module"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "Weiterleitungen anschauen"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "Module"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "Umleitungen"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "Name"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "Filter"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "Treffer zurücksetzen"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "Aktivieren"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "Deaktivieren"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "Löschen"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "Bearbeiten"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "Letzter Zugriff"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "Treffer"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "Typ"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "Typ"
1230
  msgid "Modified Posts"
1231
  msgstr "Geänderte Beiträge"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
- msgstr "Umleitungen"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "User Agent"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL und User-Agent"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "Ziel-URL"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "Nur URL"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "Regex"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "Vermittler"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL und Vermittler"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "Ausgeloggt"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "Eingeloggt"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  msgstr "URL- und Loginstatus"
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-06-08 01:04:38+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: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr "Formularanfrage"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "Relativ /wp-json/"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "Standard /wp-json/"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr ""
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr ""
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr ""
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
  msgstr ""
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
  msgstr ""
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
  msgstr ""
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:197
 
 
 
 
127
  msgid "REST API"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
  msgstr ""
133
 
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr ""
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr ""
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr ""
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr ""
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
  msgstr ""
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr "WordPress REST API"
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
  msgstr ""
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
  msgstr ""
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
  msgstr ""
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
  msgstr ""
193
 
197
 
198
  #. Author URI of the plugin/theme
199
  msgid "https://johngodley.com"
200
+ msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr ""
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr ""
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr ""
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr "Betriebssystem"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr "Browser"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr ""
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr ""
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr ""
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr "Keine IP-Protokollierung"
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr "Vollständige IP-Protokollierung"
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr "Änderungen überwachen für %(type)s"
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr "IP-Protokollierung"
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr "(IP-Protokollierungsstufe wählen)"
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr ""
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr ""
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr ""
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr ""
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr ""
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr ""
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr ""
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr ""
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr ""
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr ""
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr ""
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr ""
314
 
316
  msgid "Trash"
317
  msgstr ""
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  msgstr ""
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr ""
326
 
328
  msgid "https://redirection.me/"
329
  msgstr ""
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  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}}."
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  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."
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr ""
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "Eine Stunde"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "Möchtest du wirklich von %s importieren?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr "Plugin Importer"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "Total = "
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "Import von %s"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr "Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr "Redirection wurde nicht korrekt installiert"
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr "Redirection benötigt WordPress v%1s – Du benutzt v%2s. Bitte führe zunächst ein WordPress Update durch."
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr ""
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr ""
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr ""
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr ""
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr ""
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr ""
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr ""
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr ""
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr ""
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr ""
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr ""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr ""
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr ""
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr ""
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr ""
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr ""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr ""
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr ""
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr ""
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr "Redirection konnte nicht geladen werden"
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr ""
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr ""
486
 
532
  msgid "All tables present"
533
  msgstr ""
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr ""
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr ""
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "Dein Server hat einen 403-Verboten Fehler zurückgegeben, der darauf hindeuten könnte, dass die Anfrage gesperrt wurde. Verwendest du eine Firewall oder ein Sicherheits-Plugin?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr ""
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr ""
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "Lädt, bitte warte..."
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  msgstr ""
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr ""
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  msgstr ""
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr ""
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr "E-Mail"
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "Wichtige Details"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "Hilfe benötigt?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  msgstr ""
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr ""
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 - Entfernt"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Position"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
  msgstr ""
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Apache Modul"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr ""
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Importiere in Gruppe"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Datei hinzufügen"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "Datei ausgewählt"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Importiere"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Importieren beendet"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "Umleitungen importiert:"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "OK"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Schließen"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Exportieren"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr ""
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Alles"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "WordPress Weiterleitungen"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Apache Weiterleitungen"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Nginx Weiterleitungen"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr "Apache .htaccess"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr ""
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr ""
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "Anzeigen"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "Import/Export"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "Protokolldateien"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "404 Fehler"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr ""
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr ""
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Unterstützen 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Umleitung gespeichert"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Log gelöscht"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Einstellungen gespeichert"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Gruppe gespeichert"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
771
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr ""
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "Alle Gruppen"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301- Dauerhaft verschoben"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 - Gefunden"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 - Zeitweise Umleitung"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 - Dauerhafte Umleitung"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 - Unautorisiert"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 - Nicht gefunden"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Titel"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr ""
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "mit HTTP Code"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Zeige erweiterte Optionen"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr "Passendes Ziel"
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr "Unpassendes Ziel"
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Speichern..."
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "Hinweis anzeigen"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr ""
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Etwas ist schiefgelaufen 🙁"
856
 
858
  msgid "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!"
859
  msgstr "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!"
860
 
861
+ #: redirection-admin.php:203
862
  msgid "Log entries (%d max)"
863
  msgstr "Log Einträge (%d max)"
864
 
865
+ #: redirection-strings.php:309
866
  msgid "Search by IP"
867
  msgstr "Suche nach IP"
868
 
869
+ #: redirection-strings.php:304
870
  msgid "Select bulk action"
871
  msgstr ""
872
 
873
+ #: redirection-strings.php:305
874
  msgid "Bulk Actions"
875
  msgstr ""
876
 
877
+ #: redirection-strings.php:306
878
  msgid "Apply"
879
  msgstr "Anwenden"
880
 
881
+ #: redirection-strings.php:297
882
  msgid "First page"
883
  msgstr "Erste Seite"
884
 
885
+ #: redirection-strings.php:298
886
  msgid "Prev page"
887
  msgstr "Vorige Seite"
888
 
889
+ #: redirection-strings.php:299
890
  msgid "Current Page"
891
  msgstr "Aktuelle Seite"
892
 
893
+ #: redirection-strings.php:300
894
  msgid "of %(page)s"
895
  msgstr "von %(Seite)n"
896
 
897
+ #: redirection-strings.php:301
898
  msgid "Next page"
899
  msgstr "Nächste Seite"
900
 
901
+ #: redirection-strings.php:302
902
  msgid "Last page"
903
  msgstr "Letzte Seite"
904
 
905
+ #: redirection-strings.php:303
906
  msgid "%s item"
907
  msgid_plural "%s items"
908
  msgstr[0] "%s Eintrag"
909
  msgstr[1] "%s Einträge"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "Alle auswählen"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "Keine Ergebnisse"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "Logs löschen - bist du sicher?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  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."
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "Ja! Lösche die Logs"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "Nein! Lösche die Logs nicht"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr ""
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "Newsletter"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr ""
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "Deine E-Mail Adresse:"
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "Dauerhaft"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  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}}."
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Unleitung Support"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
  msgstr "Support"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404s"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "Log"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "Umleitung löschen"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "Hochladen"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "Importieren"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "Aktualisieren"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
  msgstr "Selbsterstellte URL"
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "RSS Token"
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "404-Logs"
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(Dauer, für die die Logs behalten werden)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "Umleitungs-Logs"
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "Plugin Support"
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "Optionen"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "zwei Monate"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "ein Monat"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "eine Woche"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "einen Tag"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "Keine Logs"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "Alle löschen"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "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."
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "Gruppe hinzufügen"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "Suchen"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "Gruppen"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "Speichern"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "Gruppe"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "Passend"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "Eine neue Weiterleitung hinzufügen"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "Abbrechen"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "Download"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "Einstellungen"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "Mache nichts"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "Fehler (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "Durchreichen"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "Umleitung zu zufälligen Beitrag"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "Umleitung zur URL"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "URL-Quelle"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "Zeitpunkt"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "Umleitung hinzufügen"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "Alle Module"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "Weiterleitungen anschauen"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "Module"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "Umleitungen"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "Name"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "Filter"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "Treffer zurücksetzen"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "Aktivieren"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "Deaktivieren"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "Löschen"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "Bearbeiten"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "Letzter Zugriff"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "Treffer"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "Typ"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "Geänderte Beiträge"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
+ msgstr "Redirections"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "User Agent"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL und User-Agent"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "Ziel-URL"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "Nur URL"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "Regex"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "Vermittler"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL und Vermittler"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "Ausgeloggt"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "Eingeloggt"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  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-01-29 17:36:32+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,99 +11,123 @@ msgstr ""
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
  msgstr "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
  msgstr "Accept Language"
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
  msgstr "Header value"
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
  msgstr "Header name"
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
  msgstr "HTTP Header"
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
  msgstr "WordPress filter name"
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
  msgstr "Filter Name"
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
  msgstr "Cookie value"
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
  msgstr "Cookie name"
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
  msgstr "Cookie"
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
  msgstr "Optional description"
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
  msgstr "Target URL when not matched"
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
  msgstr "Target URL when matched"
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
  msgstr "clearing your cache."
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
  msgstr "URL and HTTP header"
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
  msgstr "URL and custom filter"
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
  msgstr "URL and cookie"
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr "404 deleted"
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr "Default /wp-json/ (preferred)"
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
  msgstr "Raw /index.php?rest_route=/"
97
 
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr "Proxy over Admin AJAX (deprecated)"
101
-
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr "REST API"
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
  msgstr "How Redirection uses the REST API - don't change unless necessary"
109
 
@@ -131,39 +155,39 @@ msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache t
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr "None of the suggestions helped"
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr "Unable to load Redirection ☹️"
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
  msgstr "WordPress REST API is working at %s"
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr "WordPress REST API"
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
  msgstr "REST API is not working so routes not checked"
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
  msgstr "Redirection routes are working"
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
  msgstr "Redirection routes"
169
 
@@ -175,116 +199,116 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
175
  msgid "https://johngodley.com"
176
  msgstr "https://johngodley.com"
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr "Useragent Error"
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr "Unknown Useragent"
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr "Device"
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr "Operating System"
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr "Browser"
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr "Engine"
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr "Useragent"
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr "Agent"
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr "No IP logging"
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr "Full IP logging"
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr "Anonymize IP (mask last part)"
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr "Monitor changes to %(type)s"
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr "IP Logging"
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr "(select IP logging level)"
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr "Geo Info"
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr "Agent Info"
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr "Filter by IP"
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr "Referrer / User Agent"
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr "Geo IP Error"
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr "Something went wrong obtaining this information"
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr "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."
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr "No details are known for this address."
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr "Geo IP"
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr "City"
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr "Area"
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr "Timezone"
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr "Geo Location"
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr "Powered by {{link}}redirect.li{{/link}}"
290
 
@@ -292,11 +316,11 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
292
  msgid "Trash"
293
  msgstr "Trash"
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  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"
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
302
 
@@ -304,63 +328,63 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
304
  msgid "https://redirection.me/"
305
  msgstr "https://redirection.me/"
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  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."
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  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!"
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr "Never cache"
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "An hour"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr "Redirect Cache"
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "Are you sure you want to import from %s?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr "Plugin Importers"
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr "The following redirect plugins were detected on your site and can be imported from."
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "total = "
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "Import from %s"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr "Redirection not installed properly"
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
366
 
@@ -368,71 +392,71 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr "Default WordPress \"old slugs\""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr "Create associated redirect (added to end of URL)"
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  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."
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr "⚡️ Magic fix ⚡️"
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr "Plugin Status"
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr "Custom"
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr "Mobile"
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr "Feed Readers"
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr "Libraries"
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr "URL Monitor Changes"
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr "Save changes to this group"
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr "For example \"/amp\""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr "URL Monitor"
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr "Delete 404s"
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr "Delete all logs for this 404"
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr "Delete all from IP %s"
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr "Delete all matching \"%s\""
438
 
@@ -440,23 +464,23 @@ msgstr "Delete all matching \"%s\""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr "Unable to load Redirection"
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr "Unable to create group"
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr "Failed to fix database tables"
462
 
@@ -508,11 +532,11 @@ msgstr "The following tables are missing:"
508
  msgid "All tables present"
509
  msgstr "All tables present"
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr "Cached Redirection detected"
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr "Please clear your browser cache and reload this page."
518
 
@@ -528,285 +552,285 @@ msgstr "WordPress did not return a response. This could mean an error occurred o
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr "If you think Redirection is at fault then create an issue."
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "Loading, please wait..."
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  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)."
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  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."
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr "Create Issue"
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr "Email"
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "Important details"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "Need help?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr "Pos"
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 - Gone"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Position"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
  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"
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Apache Module"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Import to group"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Import a CSV, .htaccess, or JSON file."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Click 'Add File' or drag and drop here."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Add File"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "File selected"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Importing"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Finished importing"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "Total redirects imported:"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "Double-check the file is the correct format!"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "OK"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Close"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "All imports will be appended to the current database."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Export"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Everything"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "WordPress redirects"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Apache redirects"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Nginx redirects"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr "Apache .htaccess"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr "Nginx rewrite rules"
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr "Redirection JSON"
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "View"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr "Log files can be exported from the log pages."
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "Import/Export"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "Logs"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "404 errors"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr "I'd like to support some more."
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Support 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Redirection saved"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Log deleted"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Settings saved"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Group saved"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "Are you sure you want to delete this item?"
747
  msgstr[1] "Are you sure you want to delete these items?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr "pass"
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "All groups"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301 - Moved Permanently"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 - Found"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 - Temporary Redirect"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 - Permanent Redirect"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 - Unauthorized"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 - Not Found"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Title"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr "When matched"
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "with HTTP code"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Show advanced options"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr "Matched Target"
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr "Unmatched Target"
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Saving..."
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "View notice"
812
 
@@ -826,7 +850,7 @@ msgstr "Invalid redirect matcher"
826
  msgid "Unable to add new redirect"
827
  msgstr "Unable to add new redirect"
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Something went wrong 🙁"
832
 
@@ -834,113 +858,113 @@ msgstr "Something went wrong 🙁"
834
  msgid "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!"
835
  msgstr "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!"
836
 
837
- #: redirection-admin.php:198
838
  msgid "Log entries (%d max)"
839
  msgstr "Log entries (%d max)"
840
 
841
- #: redirection-strings.php:305
842
  msgid "Search by IP"
843
  msgstr "Search by IP"
844
 
845
- #: redirection-strings.php:300
846
  msgid "Select bulk action"
847
  msgstr "Select bulk action"
848
 
849
- #: redirection-strings.php:301
850
  msgid "Bulk Actions"
851
  msgstr "Bulk Actions"
852
 
853
- #: redirection-strings.php:302
854
  msgid "Apply"
855
  msgstr "Apply"
856
 
857
- #: redirection-strings.php:293
858
  msgid "First page"
859
  msgstr "First page"
860
 
861
- #: redirection-strings.php:294
862
  msgid "Prev page"
863
  msgstr "Prev page"
864
 
865
- #: redirection-strings.php:295
866
  msgid "Current Page"
867
  msgstr "Current Page"
868
 
869
- #: redirection-strings.php:296
870
  msgid "of %(page)s"
871
  msgstr "of %(page)s"
872
 
873
- #: redirection-strings.php:297
874
  msgid "Next page"
875
  msgstr "Next page"
876
 
877
- #: redirection-strings.php:298
878
  msgid "Last page"
879
  msgstr "Last page"
880
 
881
- #: redirection-strings.php:299
882
  msgid "%s item"
883
  msgid_plural "%s items"
884
  msgstr[0] "%s item"
885
  msgstr[1] "%s items"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "Select All"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "Sorry, something went wrong loading the data - please try again"
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "No results"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "Delete the logs - are you sure?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  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."
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "Yes! Delete the logs"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "No! Don't delete the logs"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "Newsletter"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr "Want to keep up to date with changes to Redirection?"
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "Your email address:"
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "You've supported this plugin - thank you!"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "You get useful software and I get to carry on making it better."
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "Forever"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "Manage all your 301 redirects and monitor 404 errors."
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  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}}."
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Redirection Support"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
  msgstr "Support"
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404s"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "Log"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "Delete Redirection"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "Upload"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "Import"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "Update"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
  msgstr "Auto-generate URL"
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "RSS Token"
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "404 Logs"
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(time to keep logs for)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "Redirect Logs"
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "Plugin Support"
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "Options"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "Two months"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "A month"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "A week"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "A day"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "No logs"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "Delete All"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "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."
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "Add Group"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "Search"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "Groups"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "Save"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "Group"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "Match"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "Add new redirection"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "Cancel"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "Download"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "Download"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "Settings"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "Do nothing"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "Error (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "Pass-through"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "Redirect to random post"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "Redirect to URL"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "Redirect to URL"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "Invalid group when creating redirect"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "Source URL"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "Date"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "Add Redirect"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "All modules"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "View Redirects"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "Module"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "Redirects"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "Name"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "Filter"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "Reset hits"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "Enable"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "Disable"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "Delete"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "Edit"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "Last Access"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "Hits"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "Type"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "Type"
1230
  msgid "Modified Posts"
1231
  msgstr "Modified Posts"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
  msgstr "Redirections"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "User Agent"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL and user agent"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "Target URL"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "URL only"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "Regex"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "Referrer"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL and referrer"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "Logged Out"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "Logged In"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  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-02-19 17:35:21+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:175
15
+ msgid "Form request"
16
+ msgstr "Form request"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "Relative /wp-json/"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr "Proxy over Admin AJAX"
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "Default /wp-json/"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr "Site and home protocol"
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr "Site and home URL are inconsistent - please correct from your General settings"
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr "Site and home are consistent"
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
  msgstr "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
  msgstr "Accept Language"
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
  msgstr "Header value"
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
  msgstr "Header name"
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
  msgstr "HTTP Header"
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
  msgstr "WordPress filter name"
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
  msgstr "Filter Name"
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
  msgstr "Cookie value"
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
  msgstr "Cookie name"
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
  msgstr "Cookie"
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
  msgstr "Optional description"
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
  msgstr "Target URL when not matched"
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
  msgstr "Target URL when matched"
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
  msgstr "clearing your cache."
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
  msgstr "URL and HTTP header"
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
  msgstr "URL and custom filter"
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
  msgstr "URL and cookie"
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr "404 deleted"
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
  msgstr "Raw /index.php?rest_route=/"
125
 
126
+ #: redirection-strings.php:197
 
 
 
 
127
  msgid "REST API"
128
  msgstr "REST API"
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
  msgstr "How Redirection uses the REST API - don't change unless necessary"
133
 
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr "None of the suggestions helped"
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr "Unable to load Redirection ☹️"
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
  msgstr "WordPress REST API is working at %s"
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr "WordPress REST API"
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
  msgstr "REST API is not working so routes not checked"
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
  msgstr "Redirection routes are working"
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
  msgstr "Redirection routes"
193
 
199
  msgid "https://johngodley.com"
200
  msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr "Useragent Error"
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr "Unknown Useragent"
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr "Device"
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr "Operating System"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr "Browser"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr "Engine"
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr "Useragent"
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr "Agent"
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr "No IP logging"
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr "Full IP logging"
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr "Anonymize IP (mask last part)"
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr "Monitor changes to %(type)s"
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr "IP Logging"
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr "(select IP logging level)"
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr "Geo Info"
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr "Agent Info"
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr "Filter by IP"
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr "Referrer / User Agent"
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr "Geo IP Error"
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr "Something went wrong obtaining this information"
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr "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."
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr "No details are known for this address."
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr "Geo IP"
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr "City"
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr "Area"
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr "Timezone"
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr "Geo Location"
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr "Powered by {{link}}redirect.li{{/link}}"
314
 
316
  msgid "Trash"
317
  msgstr "Trash"
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  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"
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
326
 
328
  msgid "https://redirection.me/"
329
  msgstr "https://redirection.me/"
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  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."
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  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!"
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr "Never cache"
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "An hour"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr "Redirect Cache"
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "Are you sure you want to import from %s?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr "Plugin Importers"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr "The following redirect plugins were detected on your site and can be imported from."
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "total = "
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "Import from %s"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr "Redirection not installed properly"
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr "Default WordPress \"old slugs\""
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr "Create associated redirect (added to end of URL)"
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  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."
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr "⚡️ Magic fix ⚡️"
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr "Plugin Status"
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr "Custom"
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr "Mobile"
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr "Feed Readers"
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr "Libraries"
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr "URL Monitor Changes"
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr "Save changes to this group"
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr "For example \"/amp\""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr "URL Monitor"
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr "Delete 404s"
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr "Delete all logs for this 404"
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr "Delete all from IP %s"
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr "Delete all matching \"%s\""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr "Unable to load Redirection"
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr "Unable to create group"
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr "Failed to fix database tables"
486
 
532
  msgid "All tables present"
533
  msgstr "All tables present"
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr "Cached Redirection detected"
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr "Please clear your browser cache and reload this page."
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr "If you think Redirection is at fault then create an issue."
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "Loading, please wait..."
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  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)."
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  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."
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr "Create Issue"
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr "Email"
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "Important details"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "Need help?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr "Pos"
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 - Gone"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Position"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
  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"
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Apache Module"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Import to group"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Import a CSV, .htaccess, or JSON file."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Click 'Add File' or drag and drop here."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Add File"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "File selected"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Importing"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Finished importing"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "Total redirects imported:"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "Double-check the file is the correct format!"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "OK"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Close"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "All imports will be appended to the current database."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Export"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Everything"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "WordPress redirects"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Apache redirects"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Nginx redirects"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr "Apache .htaccess"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr "Nginx rewrite rules"
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr "Redirection JSON"
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "View"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr "Log files can be exported from the log pages."
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "Import/Export"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "Logs"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "404 errors"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr "I'd like to support some more."
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Support 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Redirection saved"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Log deleted"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Settings saved"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Group saved"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "Are you sure you want to delete this item?"
771
  msgstr[1] "Are you sure you want to delete these items?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr "pass"
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "All groups"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301 - Moved Permanently"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 - Found"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 - Temporary Redirect"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 - Permanent Redirect"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 - Unauthorized"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 - Not Found"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Title"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr "When matched"
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "with HTTP code"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Show advanced options"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr "Matched Target"
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr "Unmatched Target"
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Saving..."
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "View notice"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr "Unable to add new redirect"
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Something went wrong 🙁"
856
 
858
  msgid "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!"
859
  msgstr "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!"
860
 
861
+ #: redirection-admin.php:203
862
  msgid "Log entries (%d max)"
863
  msgstr "Log entries (%d max)"
864
 
865
+ #: redirection-strings.php:309
866
  msgid "Search by IP"
867
  msgstr "Search by IP"
868
 
869
+ #: redirection-strings.php:304
870
  msgid "Select bulk action"
871
  msgstr "Select bulk action"
872
 
873
+ #: redirection-strings.php:305
874
  msgid "Bulk Actions"
875
  msgstr "Bulk Actions"
876
 
877
+ #: redirection-strings.php:306
878
  msgid "Apply"
879
  msgstr "Apply"
880
 
881
+ #: redirection-strings.php:297
882
  msgid "First page"
883
  msgstr "First page"
884
 
885
+ #: redirection-strings.php:298
886
  msgid "Prev page"
887
  msgstr "Prev page"
888
 
889
+ #: redirection-strings.php:299
890
  msgid "Current Page"
891
  msgstr "Current Page"
892
 
893
+ #: redirection-strings.php:300
894
  msgid "of %(page)s"
895
  msgstr "of %(page)s"
896
 
897
+ #: redirection-strings.php:301
898
  msgid "Next page"
899
  msgstr "Next page"
900
 
901
+ #: redirection-strings.php:302
902
  msgid "Last page"
903
  msgstr "Last page"
904
 
905
+ #: redirection-strings.php:303
906
  msgid "%s item"
907
  msgid_plural "%s items"
908
  msgstr[0] "%s item"
909
  msgstr[1] "%s items"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "Select All"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "Sorry, something went wrong loading the data - please try again"
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "No results"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "Delete the logs - are you sure?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  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."
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "Yes! Delete the logs"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "No! Don't delete the logs"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "Newsletter"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr "Want to keep up to date with changes to Redirection?"
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "Your email address:"
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "You've supported this plugin - thank you!"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "You get useful software and I get to carry on making it better."
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "Forever"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "Manage all your 301 redirects and monitor 404 errors."
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  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}}."
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Redirection Support"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
  msgstr "Support"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404s"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "Log"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "Delete Redirection"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "Upload"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "Import"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "Update"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
  msgstr "Auto-generate URL"
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "RSS Token"
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "404 Logs"
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(time to keep logs for)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "Redirect Logs"
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "Plugin Support"
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "Options"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "Two months"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "A month"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "A week"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "A day"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "No logs"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "Delete All"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "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."
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "Add Group"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "Search"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "Groups"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "Save"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "Group"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "Match"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "Add new redirection"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "Cancel"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "Download"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "Settings"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "Do nothing"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "Error (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "Pass-through"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "Redirect to random post"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "Redirect to URL"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "Invalid group when creating redirect"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "Source URL"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "Date"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "Add Redirect"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "All modules"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "View Redirects"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "Module"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "Redirects"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "Name"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "Filter"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "Reset hits"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "Enable"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "Disable"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "Delete"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "Edit"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "Last Access"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "Hits"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "Type"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "Modified Posts"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
  msgstr "Redirections"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "User Agent"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL and user agent"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "Target URL"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "URL only"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "Regex"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "Referrer"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL and referrer"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "Logged Out"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "Logged In"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  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: 2017-11-20 12:09:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,356 +11,380 @@ msgstr ""
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
- msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
- msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
- msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
- msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
- msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
- msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
- msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
- msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
- msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
- msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
- msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
- msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
- msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
- msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
- msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
- msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
- msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
- msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
- msgstr ""
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
- msgstr ""
97
-
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
 
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
- msgstr ""
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
- msgstr ""
109
 
110
  #: redirection-strings.php:9
111
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
112
- msgstr ""
113
 
114
  #: redirection-strings.php:12
115
  msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
116
- msgstr ""
117
 
118
  #: redirection-strings.php:13
119
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
120
- msgstr ""
121
 
122
  #: redirection-strings.php:14
123
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
124
- msgstr ""
125
 
126
  #: redirection-strings.php:15
127
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
128
- msgstr ""
129
 
130
  #: redirection-strings.php:16
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
- msgstr ""
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
- msgstr ""
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
- msgstr ""
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
- msgstr ""
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
- msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
- msgstr ""
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
- msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
- msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
- msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
- msgstr ""
169
 
170
  #: redirection-strings.php:8
171
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
172
- msgstr ""
173
 
174
  #. Author URI of the plugin/theme
175
  msgid "https://johngodley.com"
176
- msgstr ""
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
- msgstr ""
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
- msgstr ""
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
- msgstr ""
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
- msgstr ""
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
- msgstr ""
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
- msgstr ""
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
- msgstr ""
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
- msgstr ""
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
- msgstr ""
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
- msgstr ""
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
- msgstr ""
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
- msgstr ""
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
- msgstr ""
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
- msgstr ""
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
- msgstr ""
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
- msgstr ""
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
- msgstr ""
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
- msgstr ""
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
- msgstr ""
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
- msgstr ""
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
- msgstr ""
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
- msgstr ""
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
- msgstr ""
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
- msgstr ""
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
- msgstr ""
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
- msgstr ""
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
- msgstr ""
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
- msgstr ""
290
 
291
  #: redirection-settings.php:12
292
  msgid "Trash"
293
- msgstr ""
294
 
295
- #: redirection-admin.php:384
296
  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"
297
- msgstr ""
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
- msgstr ""
302
 
303
  #. Plugin URI of the plugin/theme
304
  msgid "https://redirection.me/"
305
  msgstr "https://redirection.me/"
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  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."
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  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!"
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr "Never cache"
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "An hour"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr "Redirect Cache"
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "Are you sure you want to import from %s?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr "Plugin Importers"
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr "The following redirect plugins were detected on your site and can be imported from."
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "total = "
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "Import from %s"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr "Redirection not installed properly"
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
366
 
@@ -368,71 +392,71 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr "Default WordPress \"old slugs\""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr "Create associated redirect (added to end of URL)"
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  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."
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr "⚡️ Magic fix ⚡️"
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr "Plugin Status"
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr "Custom"
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr "Mobile"
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr "Feed Readers"
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr "Libraries"
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr "URL Monitor Changes"
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr "Save changes to this group"
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr "For example \"/amp\""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr "URL Monitor"
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr "Delete 404s"
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr "Delete all logs for this 404"
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr "Delete all from IP %s"
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr "Delete all matching \"%s\""
438
 
@@ -440,23 +464,23 @@ msgstr "Delete all matching \"%s\""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr "Unable to load Redirection"
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr "Unable to create group"
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr "Failed to fix database tables"
462
 
@@ -508,11 +532,11 @@ msgstr "The following tables are missing:"
508
  msgid "All tables present"
509
  msgstr "All tables present"
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr "Cached Redirection detected"
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr "Please clear your browser cache and reload this page."
518
 
@@ -528,285 +552,285 @@ msgstr "WordPress did not return a response. This could mean an error occurred o
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr "If you think Redirection is at fault then create an issue."
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "Loading, please wait..."
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  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)."
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  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."
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr "Create Issue"
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr "Email"
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "Important details"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "Need help?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr "Pos"
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 - Gone"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Position"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
- msgstr ""
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Apache Module"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Import to group"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Import a CSV, .htaccess, or JSON file."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Click 'Add File' or drag and drop here."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Add File"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "File selected"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Importing"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Finished importing"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "Total redirects imported:"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "Double-check the file is the correct format!"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "OK"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Close"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "All imports will be appended to the current database."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Export"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Everything"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "WordPress redirects"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Apache redirects"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Nginx redirects"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr "Apache .htaccess"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr "Nginx rewrite rules"
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr "Redirection JSON"
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "View"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr "Log files can be exported from the log pages."
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "Import/Export"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "Logs"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "404 errors"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr "I'd like to support some more."
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Support 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Redirection saved"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Log deleted"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Settings saved"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Group saved"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "Are you sure you want to delete this item?"
747
  msgstr[1] "Are you sure you want to delete these items?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr "pass"
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "All groups"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301 - Moved Permanently"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 - Found"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 - Temporary Redirect"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 - Permanent Redirect"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 - Unauthorized"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 - Not Found"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Title"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr "When matched"
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "with HTTP code"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Show advanced options"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr "Matched Target"
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr "Unmatched Target"
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Saving..."
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "View notice"
812
 
@@ -826,7 +850,7 @@ msgstr "Invalid redirect matcher"
826
  msgid "Unable to add new redirect"
827
  msgstr "Unable to add new redirect"
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Something went wrong 🙁"
832
 
@@ -834,113 +858,113 @@ msgstr "Something went wrong 🙁"
834
  msgid "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!"
835
  msgstr "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!"
836
 
837
- #: redirection-admin.php:198
838
  msgid "Log entries (%d max)"
839
  msgstr "Log entries (%d max)"
840
 
841
- #: redirection-strings.php:305
842
  msgid "Search by IP"
843
  msgstr "Search by IP"
844
 
845
- #: redirection-strings.php:300
846
  msgid "Select bulk action"
847
  msgstr "Select bulk action"
848
 
849
- #: redirection-strings.php:301
850
  msgid "Bulk Actions"
851
  msgstr "Bulk Actions"
852
 
853
- #: redirection-strings.php:302
854
  msgid "Apply"
855
  msgstr "Apply"
856
 
857
- #: redirection-strings.php:293
858
  msgid "First page"
859
  msgstr "First page"
860
 
861
- #: redirection-strings.php:294
862
  msgid "Prev page"
863
  msgstr "Prev page"
864
 
865
- #: redirection-strings.php:295
866
  msgid "Current Page"
867
  msgstr "Current Page"
868
 
869
- #: redirection-strings.php:296
870
  msgid "of %(page)s"
871
  msgstr "of %(page)s"
872
 
873
- #: redirection-strings.php:297
874
  msgid "Next page"
875
  msgstr "Next page"
876
 
877
- #: redirection-strings.php:298
878
  msgid "Last page"
879
  msgstr "Last page"
880
 
881
- #: redirection-strings.php:299
882
  msgid "%s item"
883
  msgid_plural "%s items"
884
  msgstr[0] "%s item"
885
  msgstr[1] "%s items"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "Select All"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "Sorry, something went wrong loading the data - please try again"
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "No results"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "Delete the logs - are you sure?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  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."
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "Yes! Delete the logs"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "No! Don't delete the logs"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "Newsletter"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr "Want to keep up to date with changes to Redirection?"
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "Your email address:"
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "You've supported this plugin - thank you!"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "You get useful software and I get to carry on making it better."
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "Forever"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "Manage all your 301 redirects and monitor 404 errors"
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  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}}."
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Redirection Support"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
  msgstr "Support"
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404s"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "Log"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "Delete Redirection"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "Upload"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "Import"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "Update"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
  msgstr "Auto-generate URL"
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "RSS Token"
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "404 Logs"
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(time to keep logs for)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "Redirect Logs"
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "Plugin Support"
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "Options"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "Two months"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "A month"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "A week"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "A day"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "No logs"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "Delete All"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "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."
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "Add Group"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "Search"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "Groups"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "Save"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "Group"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "Match"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "Add new redirection"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "Cancel"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "Download"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "Download"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "Settings"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "Do nothing"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "Error (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "Pass-through"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "Redirect to random post"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "Redirect to URL"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "Redirect to URL"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "Invalid group when creating redirect"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "Source URL"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "Date"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "Add Redirect"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "All modules"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "View Redirects"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "Module"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "Redirects"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "Name"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "Filter"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "Reset hits"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "Enable"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "Disable"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "Delete"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "Edit"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "Last Access"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "Hits"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "Type"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "Type"
1230
  msgid "Modified Posts"
1231
  msgstr "Modified Posts"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
  msgstr "Redirections"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "User Agent"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL and user agent"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "Target URL"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "URL only"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "Regex"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "Referrer"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL and referrer"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "Logged Out"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "Logged In"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  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-03-13 08:36:27+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:175
15
+ msgid "Form request"
16
+ msgstr "Form request"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "Relative /wp-json/"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr "Proxy over Admin Ajax"
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "Default /wp-json/"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr "Site and home protocol"
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr "Site and home URL are inconsistent - please correct from your General settings"
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr "Site and home are consistent"
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
+ msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
+ msgstr "Accept Language"
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
+ msgstr "Header value"
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
+ msgstr "Header name"
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
+ msgstr "HTTP Header"
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
+ msgstr "WordPress filter name"
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
+ msgstr "Filter Name"
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
+ msgstr "Cookie value"
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
+ msgstr "Cookie name"
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
+ msgstr "Cookie"
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
+ msgstr "Optional description"
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
+ msgstr "Target URL when not matched"
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
+ msgstr "Target URL when matched"
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
+ msgstr "clearing your cache."
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
+ msgstr "If you are using a caching system such as Cloudflare then please read this: "
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
+ msgstr "URL and HTTP header"
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
+ msgstr "URL and custom filter"
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
+ msgstr "URL and cookie"
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
+ msgstr "404 deleted"
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
+ msgstr "Raw /index.php?rest_route=/"
 
 
 
 
125
 
126
+ #: redirection-strings.php:197
127
  msgid "REST API"
128
+ msgstr "REST API"
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
+ msgstr "How Redirection uses the REST API - don't change unless necessary"
133
 
134
  #: redirection-strings.php:9
135
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
136
+ msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
137
 
138
  #: redirection-strings.php:12
139
  msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
140
+ msgstr "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
141
 
142
  #: redirection-strings.php:13
143
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
144
+ msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
145
 
146
  #: redirection-strings.php:14
147
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
148
+ msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
149
 
150
  #: redirection-strings.php:15
151
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
152
+ msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
153
 
154
  #: redirection-strings.php:16
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
+ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
+ msgstr "None of the suggestions helped"
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
+ msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
+ msgstr "Unable to load Redirection ☹️"
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
+ msgstr "WordPress REST API is working at %s"
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
+ msgstr "WordPress REST API"
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
+ msgstr "REST API is not working so routes not checked"
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
+ msgstr "Redirection routes are working"
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
+ msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
+ msgstr "Redirection routes"
193
 
194
  #: redirection-strings.php:8
195
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
196
+ msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
197
 
198
  #. Author URI of the plugin/theme
199
  msgid "https://johngodley.com"
200
+ msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
+ msgstr "User Agent Error"
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
+ msgstr "Unknown User Agent"
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
+ msgstr "Device"
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
+ msgstr "Operating System"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
+ msgstr "Browser"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
+ msgstr "Engine"
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
+ msgstr "User Agent"
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
+ msgstr "Agent"
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
+ msgstr "No IP logging"
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
+ msgstr "Full IP logging"
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
+ msgstr "Anonymise IP (mask last part)"
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
+ msgstr "Monitor changes to %(type)s"
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
+ msgstr "IP Logging"
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
+ msgstr "(select IP logging level)"
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
+ msgstr "Geo Info"
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
+ msgstr "Agent Info"
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
+ msgstr "Filter by IP"
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
+ msgstr "Referrer / User Agent"
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
+ msgstr "Geo IP Error"
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
+ msgstr "Something went wrong obtaining this information"
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
+ msgstr "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."
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
+ msgstr "No details are known for this address."
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
+ msgstr "Geo IP"
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
+ msgstr "City"
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
+ msgstr "Area"
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
+ msgstr "Timezone"
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
+ msgstr "Geo Location"
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
+ msgstr "Powered by {{link}}redirect.li{{/link}}"
314
 
315
  #: redirection-settings.php:12
316
  msgid "Trash"
317
+ msgstr "Bin"
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
+ 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"
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
+ msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
326
 
327
  #. Plugin URI of the plugin/theme
328
  msgid "https://redirection.me/"
329
  msgstr "https://redirection.me/"
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  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."
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  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!"
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr "Never cache"
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "An hour"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr "Redirect Cache"
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "Are you sure you want to import from %s?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr "Plugin Importers"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr "The following redirect plugins were detected on your site and can be imported from."
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "total = "
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "Import from %s"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr "Redirection not installed properly"
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr "Default WordPress \"old slugs\""
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr "Create associated redirect (added to end of URL)"
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  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."
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr "⚡️ Magic fix ⚡️"
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr "Plugin Status"
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr "Custom"
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr "Mobile"
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr "Feed Readers"
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr "Libraries"
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr "URL Monitor Changes"
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr "Save changes to this group"
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr "For example \"/amp\""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr "URL Monitor"
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr "Delete 404s"
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr "Delete all logs for this 404"
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr "Delete all from IP %s"
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr "Delete all matching \"%s\""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr "Unable to load Redirection"
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr "Unable to create group"
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr "Failed to fix database tables"
486
 
532
  msgid "All tables present"
533
  msgstr "All tables present"
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr "Cached Redirection detected"
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr "Please clear your browser cache and reload this page."
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr "If you think Redirection is at fault then create an issue."
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "Loading, please wait..."
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  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)."
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  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."
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr "Create Issue"
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr "Email"
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "Important details"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "Need help?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr "Pos"
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 - Gone"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Position"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
+ 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"
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Apache Module"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Import to group"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Import a CSV, .htaccess, or JSON file."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Click 'Add File' or drag and drop here."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Add File"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "File selected"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Importing"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Finished importing"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "Total redirects imported:"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "Double-check the file is the correct format!"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "OK"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Close"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "All imports will be appended to the current database."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Export"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Everything"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "WordPress redirects"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Apache redirects"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Nginx redirects"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr "Apache .htaccess"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr "Nginx rewrite rules"
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr "Redirection JSON"
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "View"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr "Log files can be exported from the log pages."
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "Import/Export"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "Logs"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "404 errors"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr "I'd like to support some more."
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Support 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Redirection saved"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Log deleted"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Settings saved"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Group saved"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "Are you sure you want to delete this item?"
771
  msgstr[1] "Are you sure you want to delete these items?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr "pass"
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "All groups"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301 - Moved Permanently"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 - Found"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 - Temporary Redirect"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 - Permanent Redirect"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 - Unauthorized"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 - Not Found"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Title"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr "When matched"
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "with HTTP code"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Show advanced options"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr "Matched Target"
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr "Unmatched Target"
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Saving..."
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "View notice"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr "Unable to add new redirect"
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Something went wrong 🙁"
856
 
858
  msgid "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!"
859
  msgstr "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!"
860
 
861
+ #: redirection-admin.php:203
862
  msgid "Log entries (%d max)"
863
  msgstr "Log entries (%d max)"
864
 
865
+ #: redirection-strings.php:309
866
  msgid "Search by IP"
867
  msgstr "Search by IP"
868
 
869
+ #: redirection-strings.php:304
870
  msgid "Select bulk action"
871
  msgstr "Select bulk action"
872
 
873
+ #: redirection-strings.php:305
874
  msgid "Bulk Actions"
875
  msgstr "Bulk Actions"
876
 
877
+ #: redirection-strings.php:306
878
  msgid "Apply"
879
  msgstr "Apply"
880
 
881
+ #: redirection-strings.php:297
882
  msgid "First page"
883
  msgstr "First page"
884
 
885
+ #: redirection-strings.php:298
886
  msgid "Prev page"
887
  msgstr "Prev page"
888
 
889
+ #: redirection-strings.php:299
890
  msgid "Current Page"
891
  msgstr "Current Page"
892
 
893
+ #: redirection-strings.php:300
894
  msgid "of %(page)s"
895
  msgstr "of %(page)s"
896
 
897
+ #: redirection-strings.php:301
898
  msgid "Next page"
899
  msgstr "Next page"
900
 
901
+ #: redirection-strings.php:302
902
  msgid "Last page"
903
  msgstr "Last page"
904
 
905
+ #: redirection-strings.php:303
906
  msgid "%s item"
907
  msgid_plural "%s items"
908
  msgstr[0] "%s item"
909
  msgstr[1] "%s items"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "Select All"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "Sorry, something went wrong loading the data - please try again"
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "No results"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "Delete the logs - are you sure?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  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."
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "Yes! Delete the logs"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "No! Don't delete the logs"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "Newsletter"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr "Want to keep up to date with changes to Redirection?"
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "Your email address:"
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "You've supported this plugin - thank you!"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "You get useful software and I get to carry on making it better."
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "Forever"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "Manage all your 301 redirects and monitor 404 errors"
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  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}}."
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Redirection Support"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
  msgstr "Support"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404s"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "Log"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "Delete Redirection"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "Upload"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "Import"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "Update"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
  msgstr "Auto-generate URL"
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "RSS Token"
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "404 Logs"
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(time to keep logs for)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "Redirect Logs"
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "Plugin Support"
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "Options"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "Two months"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "A month"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "A week"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "A day"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "No logs"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "Delete All"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "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."
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "Add Group"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "Search"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "Groups"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "Save"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "Group"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "Match"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "Add new redirection"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "Cancel"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "Download"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "Settings"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "Do nothing"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "Error (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "Pass-through"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "Redirect to random post"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "Redirect to URL"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "Invalid group when creating redirect"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "Source URL"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "Date"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "Add Redirect"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "All modules"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "View Redirects"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "Module"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "Redirects"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "Name"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "Filter"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "Reset hits"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "Enable"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "Disable"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "Delete"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "Edit"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "Last Access"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "Hits"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "Type"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "Modified Posts"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
  msgstr "Redirections"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "User Agent"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL and user agent"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "Target URL"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "URL only"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "Regex"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "Referrer"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL and referrer"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "Logged Out"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "Logged In"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  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-01-28 09:10: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,99 +11,123 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
  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."
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
  msgstr "Aceptar idioma"
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
  msgstr "Valor de cabecera"
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
  msgstr "Nombre de cabecera"
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
  msgstr "Cabecera HTTP"
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
  msgstr "Nombre del filtro WordPress"
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
  msgstr "Nombre del filtro"
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
  msgstr "Valor de la cookie"
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
  msgstr "Nombre de la cookie"
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
  msgstr "Cookie"
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
  msgstr "Descripción opcional"
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
  msgstr "URL de destino cuando no coincide"
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
  msgstr "URL de destino cuando coincide"
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
  msgstr "vaciando tu caché."
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
  msgstr "URL y cabecera HTTP"
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
  msgstr "URL y filtro personalizado"
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
  msgstr "URL y cookie"
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr "404 borrado"
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr "Por defecto /wp-json/ (preferido)"
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
  msgstr "Sin modificar /index.php?rest_route=/"
97
 
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr "Proxy sobre administración en AJAX (obsoleto)"
101
-
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr "REST API"
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
109
 
@@ -131,39 +155,39 @@ msgstr "{{link}}Un software de caché{{/link}}, en particular Cloudflare, podrí
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr "{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Esto arregla muchos problemas."
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr "Ninguna de las sugerencias ha ayudado"
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr "No se puede cargar Redirection ☹️"
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
  msgstr "La REST API de WordPress está funcionando en %s"
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr "REST API de WordPress"
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
  msgstr "La REST API no está funcionando, así que las rutas no se comprueban"
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
  msgstr "Las rutas de redirección están funcionando"
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
  msgstr "Redirection no aparece en las rutas de tu REST API. ¿La has desactivado con un plugin?"
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
  msgstr "Rutas de redirección"
169
 
@@ -175,116 +199,116 @@ msgstr "La REST API de tu WordPress está desactivada. Necesitarás activarla pa
175
  msgid "https://johngodley.com"
176
  msgstr "https://johngodley.com"
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr "Error de agente de usuario"
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr "Agente de usuario desconocido"
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr "Dispositivo"
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr "Sistema operativo"
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr "Navegador"
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr "Motor"
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr "Agente de usuario"
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr "Agente"
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr "Sin registro de IP"
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr "Registro completo de IP"
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr "Anonimizar IP (enmascarar la última parte)"
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr "Monitorizar cambios de %(type)s"
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr "Registro de IP"
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr "(seleccionar el nivel de registro de IP)"
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr "Información de geolocalización"
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr "Información de agente"
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr "Filtrar por IP"
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr "Procedencia / Agente de usuario"
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr "Error de geolocalización de IP"
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr "Algo ha ido mal obteniendo esta información"
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr "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."
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr "No se conoce ningún detalle para esta dirección."
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr "Geolocalización de IP"
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr "Ciudad"
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr "Área"
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr "Zona horaria"
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr "Geolocalización"
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
290
 
@@ -292,11 +316,11 @@ msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
292
  msgid "Trash"
293
  msgstr "Papelera"
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection en el sitio de soporte <a href=\"%s\" target=\"_blank\">redirection.me</a>."
302
 
@@ -304,63 +328,63 @@ msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection
304
  msgid "https://redirection.me/"
305
  msgstr "https://redirection.me/"
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  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}}."
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  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!"
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr "No cachear nunca"
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "Una hora"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr "Redireccionar caché"
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "¿Estás seguro de querer importar de %s?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr "Importadores de plugins"
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "total = "
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "Importar de %s"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  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."
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr "Redirection no está instalado correctamente"
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
366
 
@@ -368,71 +392,71 @@ msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, ac
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr "\"Viejos slugs\" por defecto de WordPress"
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  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."
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  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."
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr "⚡️ Arreglo mágico ⚡️"
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr "Estado del plugin"
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr "Personalizado"
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr "Móvil"
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr "Lectores de feeds"
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr "Bibliotecas"
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr "Monitorizar el cambio de URL"
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr "Guardar los cambios de este grupo"
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr "Por ejemplo \"/amp\""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr "Supervisar URL"
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr "Borrar 404s"
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr "Borra todos los registros de este 404"
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr "Borra todo de la IP %s"
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr "Borra todo lo que tenga \"%s\""
438
 
@@ -440,23 +464,23 @@ msgstr "Borra todo lo que tenga \"%s\""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  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é."
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr "No ha sido posible cargar Redirection"
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr "No fue posible crear el grupo"
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr "Fallo al reparar las tablas de la base de datos"
462
 
@@ -508,11 +532,11 @@ msgstr "Faltan las siguientes tablas:"
508
  msgid "All tables present"
509
  msgstr "Están presentes todas las tablas"
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr "Detectada caché de Redirection"
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
518
 
@@ -528,285 +552,285 @@ msgstr "WordPress no ha devuelto una respuesta. Esto podría significar que ocur
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "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?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "Cargando, por favor espera…"
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  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í)."
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr "Si eso no ayuda abre la consola de errores de tu navegador y crea un {{link}}aviso de problema nuevo{{/link}} con los detalles."
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  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."
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr "Crear aviso de problema"
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr "Correo electrónico"
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "Detalles importantes"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "¿Necesitas ayuda?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  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."
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr "Pos"
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 - Desaparecido"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Posición"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
  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"
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Módulo Apache"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Importar a un grupo"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Importa un archivo CSV, .htaccess o JSON."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Añadir archivo"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "Archivo seleccionado"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Importando"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Importación finalizada"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "Total de redirecciones importadas:"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "Aceptar"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Cerrar"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Exportar"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Todo"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "Redirecciones WordPress"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Redirecciones Apache"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Redirecciones Nginx"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr ".htaccess de Apache"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr "Reglas de rewrite de Nginx"
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr "JSON de Redirection"
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "Ver"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "Importar/Exportar"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "Registros"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "Errores 404"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr "Me gustaría dar algo más de apoyo."
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Apoyar 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Redirección guardada"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Registro borrado"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Ajustes guardados"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Grupo guardado"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
747
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr "pass"
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "Todos los grupos"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301 - Movido permanentemente"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 - Encontrado"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 - Redirección temporal"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 - Redirección permanente"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 - No autorizado"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 - No encontrado"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Título"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr "Cuando coincide"
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "con el código HTTP"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Mostrar opciones avanzadas"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr "Objetivo coincidente"
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr "Objetivo no coincidente"
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Guardando…"
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "Ver aviso"
812
 
@@ -826,7 +850,7 @@ msgstr "Coincidencia de redirección no válida"
826
  msgid "Unable to add new redirect"
827
  msgstr "No ha sido posible añadir la nueva redirección"
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Algo fue mal 🙁"
832
 
@@ -834,113 +858,113 @@ msgstr "Algo fue mal 🙁"
834
  msgid "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!"
835
  msgstr "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! "
836
 
837
- #: redirection-admin.php:198
838
  msgid "Log entries (%d max)"
839
  msgstr "Entradas del registro (máximo %d)"
840
 
841
- #: redirection-strings.php:305
842
  msgid "Search by IP"
843
  msgstr "Buscar por IP"
844
 
845
- #: redirection-strings.php:300
846
  msgid "Select bulk action"
847
  msgstr "Elegir acción en lote"
848
 
849
- #: redirection-strings.php:301
850
  msgid "Bulk Actions"
851
  msgstr "Acciones en lote"
852
 
853
- #: redirection-strings.php:302
854
  msgid "Apply"
855
  msgstr "Aplicar"
856
 
857
- #: redirection-strings.php:293
858
  msgid "First page"
859
  msgstr "Primera página"
860
 
861
- #: redirection-strings.php:294
862
  msgid "Prev page"
863
  msgstr "Página anterior"
864
 
865
- #: redirection-strings.php:295
866
  msgid "Current Page"
867
  msgstr "Página actual"
868
 
869
- #: redirection-strings.php:296
870
  msgid "of %(page)s"
871
  msgstr "de %(page)s"
872
 
873
- #: redirection-strings.php:297
874
  msgid "Next page"
875
  msgstr "Página siguiente"
876
 
877
- #: redirection-strings.php:298
878
  msgid "Last page"
879
  msgstr "Última página"
880
 
881
- #: redirection-strings.php:299
882
  msgid "%s item"
883
  msgid_plural "%s items"
884
  msgstr[0] "%s elemento"
885
  msgstr[1] "%s elementos"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "Elegir todos"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "No hay resultados"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "Borrar los registros - ¿estás seguro?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  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."
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "¡Sí! Borra los registros"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "¡No! No borres los registros"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "Boletín"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "Tu dirección de correo electrónico:"
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "Siempre"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  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}}. "
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Soporte de Redirection"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
  msgstr "Soporte"
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404s"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "Log"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "Borrar Redirection"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "Subir"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "Importar"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "Actualizar"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
  msgstr "Auto generar URL"
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  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)"
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "Token RSS"
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "Registros 404"
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(tiempo que se mantendrán los registros)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "Registros de redirecciones"
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
  msgstr "Soy una buena persona y ayude al autor de este plugin"
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "Soporte del plugin"
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "Opciones"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "Dos meses"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "Un mes"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "Una semana"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "Un dia"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "No hay logs"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "Borrar todo"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "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."
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "Añadir grupo"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "Buscar"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "Grupos"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "Guardar"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "Grupo"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "Coincidencia"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "Añadir nueva redirección"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "Cancelar"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "Descargar"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "Descargar"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "Ajustes"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "No hacer nada"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "Error (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "Pasar directo"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "Redirigir a entrada aleatoria"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "Redirigir a URL"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "Redirigir a URL"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "Grupo no válido a la hora de crear la redirección"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "URL origen"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "Fecha"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "Añadir redirección"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "Todos los módulos"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "Ver redirecciones"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "Módulo"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "Redirecciones"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "Nombre"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "Filtro"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "Restablecer aciertos"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "Habilitar"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "Desactivar"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "Eliminar"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "Editar"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "Último acceso"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "Hits"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "Tipo"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "Tipo"
1230
  msgid "Modified Posts"
1231
  msgstr "Entradas modificadas"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
  msgstr "Redirecciones"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "Agente usuario HTTP"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL y cliente de usuario (user agent)"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "URL destino"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "Sólo URL"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "Expresión regular"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "Referente"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL y referente"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "Desconectado"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "Conectado"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  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-02-20 21:17: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: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr "Petición de formulario"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "/wp-json/ relativo"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr "Proxy sobre Admin AJAX"
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "/wp-json/ por defecto"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr "Si no puedes hacer que funcione nada entonces Redirection puede tener dificultades para comunicarse con tu servidor. Puedes intentar cambiar manualmente este ajuste:"
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr "Protocolo de portada y el sitio"
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr "Las URLs del sitio y portada son inconsistentes - por favor, corrígelo en tus ajustes generales"
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr "Portada y sitio son consistentes"
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
  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."
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
  msgstr "Aceptar idioma"
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
  msgstr "Valor de cabecera"
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
  msgstr "Nombre de cabecera"
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
  msgstr "Cabecera HTTP"
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
  msgstr "Nombre del filtro WordPress"
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
  msgstr "Nombre del filtro"
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
  msgstr "Valor de la cookie"
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
  msgstr "Nombre de la cookie"
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
  msgstr "Cookie"
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
  msgstr "Descripción opcional"
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
  msgstr "URL de destino cuando no coincide"
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
  msgstr "URL de destino cuando coincide"
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
  msgstr "vaciando tu caché."
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
  msgstr "URL y cabecera HTTP"
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
  msgstr "URL y filtro personalizado"
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
  msgstr "URL y cookie"
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr "404 borrado"
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
  msgstr "Sin modificar /index.php?rest_route=/"
125
 
126
+ #: redirection-strings.php:197
 
 
 
 
127
  msgid "REST API"
128
  msgstr "REST API"
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
133
 
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr "{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Esto arregla muchos problemas."
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr "Ninguna de las sugerencias ha ayudado"
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr "No se puede cargar Redirection ☹️"
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
  msgstr "La REST API de WordPress está funcionando en %s"
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr "REST API de WordPress"
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
  msgstr "La REST API no está funcionando, así que las rutas no se comprueban"
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
  msgstr "Las rutas de redirección están funcionando"
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
  msgstr "Redirection no aparece en las rutas de tu REST API. ¿La has desactivado con un plugin?"
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
  msgstr "Rutas de redirección"
193
 
199
  msgid "https://johngodley.com"
200
  msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr "Error de agente de usuario"
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr "Agente de usuario desconocido"
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr "Dispositivo"
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr "Sistema operativo"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr "Navegador"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr "Motor"
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr "Agente de usuario"
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr "Agente"
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr "Sin registro de IP"
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr "Registro completo de IP"
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr "Anonimizar IP (enmascarar la última parte)"
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr "Monitorizar cambios de %(type)s"
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr "Registro de IP"
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr "(seleccionar el nivel de registro de IP)"
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr "Información de geolocalización"
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr "Información de agente"
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr "Filtrar por IP"
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr "Procedencia / Agente de usuario"
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr "Error de geolocalización de IP"
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr "Algo ha ido mal obteniendo esta información"
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr "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."
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr "No se conoce ningún detalle para esta dirección."
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr "Geolocalización de IP"
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr "Ciudad"
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr "Área"
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr "Zona horaria"
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr "Geolocalización"
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
314
 
316
  msgid "Trash"
317
  msgstr "Papelera"
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection en el sitio de soporte <a href=\"%s\" target=\"_blank\">redirection.me</a>."
326
 
328
  msgid "https://redirection.me/"
329
  msgstr "https://redirection.me/"
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  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}}."
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  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!"
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr "No cachear nunca"
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "Una hora"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr "Redireccionar caché"
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "¿Estás seguro de querer importar de %s?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr "Importadores de plugins"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "total = "
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "Importar de %s"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  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."
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr "Redirection no está instalado correctamente"
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr "\"Viejos slugs\" por defecto de WordPress"
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  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."
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  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."
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr "⚡️ Arreglo mágico ⚡️"
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr "Estado del plugin"
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr "Personalizado"
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr "Móvil"
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr "Lectores de feeds"
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr "Bibliotecas"
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr "Monitorizar el cambio de URL"
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr "Guardar los cambios de este grupo"
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr "Por ejemplo \"/amp\""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr "Supervisar URL"
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr "Borrar 404s"
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr "Borra todos los registros de este 404"
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr "Borra todo de la IP %s"
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr "Borra todo lo que tenga \"%s\""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  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é."
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr "No ha sido posible cargar Redirection"
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr "No fue posible crear el grupo"
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr "Fallo al reparar las tablas de la base de datos"
486
 
532
  msgid "All tables present"
533
  msgstr "Están presentes todas las tablas"
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr "Detectada caché de Redirection"
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "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?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "Cargando, por favor espera…"
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  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í)."
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr "Si eso no ayuda abre la consola de errores de tu navegador y crea un {{link}}aviso de problema nuevo{{/link}} con los detalles."
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  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."
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr "Crear aviso de problema"
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr "Correo electrónico"
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "Detalles importantes"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "¿Necesitas ayuda?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  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."
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr "Pos"
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 - Desaparecido"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Posición"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
  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"
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Módulo Apache"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Importar a un grupo"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Importa un archivo CSV, .htaccess o JSON."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Añadir archivo"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "Archivo seleccionado"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Importando"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Importación finalizada"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "Total de redirecciones importadas:"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "Aceptar"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Cerrar"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Exportar"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Todo"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "Redirecciones WordPress"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Redirecciones Apache"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Redirecciones Nginx"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr ".htaccess de Apache"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr "Reglas de rewrite de Nginx"
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr "JSON de Redirection"
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "Ver"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "Importar/Exportar"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "Registros"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "Errores 404"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr "Me gustaría dar algo más de apoyo."
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Apoyar 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Redirección guardada"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Registro borrado"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Ajustes guardados"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Grupo guardado"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
771
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr "pass"
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "Todos los grupos"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301 - Movido permanentemente"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 - Encontrado"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 - Redirección temporal"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 - Redirección permanente"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 - No autorizado"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 - No encontrado"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Título"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr "Cuando coincide"
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "con el código HTTP"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Mostrar opciones avanzadas"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr "Objetivo coincidente"
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr "Objetivo no coincidente"
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Guardando…"
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "Ver aviso"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr "No ha sido posible añadir la nueva redirección"
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Algo fue mal 🙁"
856
 
858
  msgid "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!"
859
  msgstr "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! "
860
 
861
+ #: redirection-admin.php:203
862
  msgid "Log entries (%d max)"
863
  msgstr "Entradas del registro (máximo %d)"
864
 
865
+ #: redirection-strings.php:309
866
  msgid "Search by IP"
867
  msgstr "Buscar por IP"
868
 
869
+ #: redirection-strings.php:304
870
  msgid "Select bulk action"
871
  msgstr "Elegir acción en lote"
872
 
873
+ #: redirection-strings.php:305
874
  msgid "Bulk Actions"
875
  msgstr "Acciones en lote"
876
 
877
+ #: redirection-strings.php:306
878
  msgid "Apply"
879
  msgstr "Aplicar"
880
 
881
+ #: redirection-strings.php:297
882
  msgid "First page"
883
  msgstr "Primera página"
884
 
885
+ #: redirection-strings.php:298
886
  msgid "Prev page"
887
  msgstr "Página anterior"
888
 
889
+ #: redirection-strings.php:299
890
  msgid "Current Page"
891
  msgstr "Página actual"
892
 
893
+ #: redirection-strings.php:300
894
  msgid "of %(page)s"
895
  msgstr "de %(page)s"
896
 
897
+ #: redirection-strings.php:301
898
  msgid "Next page"
899
  msgstr "Página siguiente"
900
 
901
+ #: redirection-strings.php:302
902
  msgid "Last page"
903
  msgstr "Última página"
904
 
905
+ #: redirection-strings.php:303
906
  msgid "%s item"
907
  msgid_plural "%s items"
908
  msgstr[0] "%s elemento"
909
  msgstr[1] "%s elementos"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "Elegir todos"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "No hay resultados"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "Borrar los registros - ¿estás seguro?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  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."
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "¡Sí! Borra los registros"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "¡No! No borres los registros"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "Boletín"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "Tu dirección de correo electrónico:"
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "Siempre"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  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}}. "
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Soporte de Redirection"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
  msgstr "Soporte"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404s"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "Log"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "Borrar Redirection"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "Subir"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "Importar"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "Actualizar"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
  msgstr "Auto generar URL"
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  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)"
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "Token RSS"
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "Registros 404"
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(tiempo que se mantendrán los registros)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "Registros de redirecciones"
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
  msgstr "Soy una buena persona y ayude al autor de este plugin"
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "Soporte del plugin"
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "Opciones"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "Dos meses"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "Un mes"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "Una semana"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "Un dia"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "No hay logs"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "Borrar todo"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "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."
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "Añadir grupo"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "Buscar"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "Grupos"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "Guardar"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "Grupo"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "Coincidencia"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "Añadir nueva redirección"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "Cancelar"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "Descargar"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "Ajustes"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "No hacer nada"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "Error (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "Pasar directo"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "Redirigir a entrada aleatoria"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "Redirigir a URL"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "Grupo no válido a la hora de crear la redirección"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "URL origen"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "Fecha"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "Añadir redirección"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "Todos los módulos"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "Ver redirecciones"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "Módulo"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "Redirecciones"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "Nombre"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "Filtro"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "Restablecer aciertos"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "Habilitar"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "Desactivar"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "Eliminar"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "Editar"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "Último acceso"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "Hits"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "Tipo"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "Entradas modificadas"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
  msgstr "Redirecciones"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "Agente usuario HTTP"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL y cliente de usuario (user agent)"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "URL destino"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "Sólo URL"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "Expresión regular"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "Referente"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL y referente"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "Desconectado"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "Conectado"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  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: 2017-12-01 09:40: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,466 +11,490 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
- msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
- msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
- msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
- msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
- msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
- msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
- msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
- msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
- msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
- msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
- msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
- msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
- msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
- msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
- msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
- msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
- msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
- msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
- msgstr ""
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
- msgstr ""
97
-
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
 
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
- msgstr ""
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
- msgstr ""
109
 
110
  #: redirection-strings.php:9
111
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
112
- msgstr ""
113
 
114
  #: redirection-strings.php:12
115
  msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
116
- msgstr ""
117
 
118
  #: redirection-strings.php:13
119
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
120
- msgstr ""
121
 
122
  #: redirection-strings.php:14
123
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
124
- msgstr ""
125
 
126
  #: redirection-strings.php:15
127
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
128
- msgstr ""
129
 
130
  #: redirection-strings.php:16
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
- msgstr ""
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
- msgstr ""
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
- msgstr ""
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
- msgstr ""
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
- msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
- msgstr ""
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
- msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
- msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
- msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
- msgstr ""
169
 
170
  #: redirection-strings.php:8
171
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
172
- msgstr ""
173
 
174
  #. Author URI of the plugin/theme
175
  msgid "https://johngodley.com"
176
- msgstr ""
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
- msgstr ""
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
- msgstr ""
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
- msgstr ""
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
- msgstr ""
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
- msgstr ""
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
- msgstr ""
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
- msgstr ""
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
- msgstr ""
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
- msgstr ""
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
- msgstr ""
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
- msgstr ""
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
- msgstr ""
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
- msgstr ""
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
- msgstr ""
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
- msgstr ""
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
- msgstr ""
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
- msgstr ""
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
- msgstr ""
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
- msgstr ""
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
- msgstr ""
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
- msgstr ""
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
- msgstr ""
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
- msgstr ""
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
- msgstr ""
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
- msgstr ""
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
- msgstr ""
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
- msgstr ""
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
- msgstr ""
290
 
291
  #: redirection-settings.php:12
292
  msgid "Trash"
293
- msgstr ""
294
 
295
- #: redirection-admin.php:384
296
  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"
297
- msgstr ""
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
- msgstr ""
302
 
303
  #. Plugin URI of the plugin/theme
304
  msgid "https://redirection.me/"
305
  msgstr "https://redirection.me/"
306
 
307
- #: redirection-strings.php:278
308
  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."
309
- msgstr ""
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
- msgstr ""
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
- msgstr ""
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr "Jamais de cache"
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "Une heure"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr "Cache de redirection"
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
- msgstr ""
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "Confirmez-vous l’importation depuis %s ?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
- msgstr ""
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "total = "
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "Importer depuis %s"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  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."
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr "Redirection n’est pas correctement installé"
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."
366
 
367
  #: models/importer.php:149
368
  msgid "Default WordPress \"old slugs\""
369
- msgstr ""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  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."
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  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."
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr "⚡️ Correction magique ⚡️"
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr "Statut de l’extension"
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr "Personnalisé"
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr "Mobile"
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr "Lecteurs de flux"
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr "Librairies"
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
- msgstr ""
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr "Enregistrer les modifications apportées à ce groupe"
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr "Par exemple « /amp »"
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr "URL à surveiller"
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr "Supprimer les pages 404"
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr "Supprimer tous les journaux pour cette page 404"
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr "Tout supprimer depuis l’IP %s"
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr "Supprimer toutes les correspondances « %s »"
438
 
439
  #: redirection-strings.php:7
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
- msgstr ""
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  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."
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr "Impossible de charger Redirection"
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr "Impossible de créer un groupe"
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr "La réparation des tables de la base de données a échoué."
462
 
463
  #: models/fixer.php:37
464
  msgid "Post monitor group is valid"
465
- msgstr ""
466
 
467
  #: models/fixer.php:37
468
  msgid "Post monitor group is invalid"
469
- msgstr ""
470
 
471
  #: models/fixer.php:35
472
  msgid "Post monitor group"
473
- msgstr ""
474
 
475
  #: models/fixer.php:31
476
  msgid "All redirects have a valid group"
@@ -508,11 +532,11 @@ msgstr "Les tables suivantes sont manquantes :"
508
  msgid "All tables present"
509
  msgstr "Toutes les tables présentes"
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr "Redirection en cache détectée"
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
518
 
@@ -528,285 +552,285 @@ msgstr "WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une e
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "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é ?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "Veuillez patienter pendant le chargement…"
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  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."
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  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."
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr "Créer un rapport"
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr "E-mail"
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "Informations importantes"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "Besoin d’aide ?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  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."
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr "Pos"
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 – Gone"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Position"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
- msgstr ""
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Module Apache"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Importer dans le groupe"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Ajouter un fichier"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "Fichier sélectionné"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Import"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Import terminé"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "Total des redirections importées :"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "OK"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Fermer"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Exporter"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Tout"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "Redirections WordPress"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Redirections Apache"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Redirections Nginx"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr ".htaccess Apache"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr "Règles de réécriture Nginx"
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr "Redirection JSON"
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "Visualiser"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "Import/export"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "Journaux"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "Erreurs 404"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr "Je voudrais soutenir un peu plus."
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Support 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Redirection sauvegardée"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Journal supprimé"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Réglages sauvegardés"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Groupe sauvegardé"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "Êtes-vous sûr•e de vouloir supprimer cet élément ?"
747
  msgstr[1] "Êtes-vous sûr•e de vouloir supprimer ces éléments ?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr "Passer"
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "Tous les groupes"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301 - déplacé de façon permanente"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 – trouvé"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 – Redirigé temporairement"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 – Redirigé de façon permanente"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 – Non-autorisé"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 – Introuvable"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Titre"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr "Quand cela correspond"
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "avec code HTTP"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Afficher les options avancées"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr "Cible correspondant"
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr "Cible ne correspondant pas"
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Sauvegarde…"
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "Voir la notification"
812
 
@@ -826,7 +850,7 @@ msgstr "Correspondance de redirection non-valide"
826
  msgid "Unable to add new redirect"
827
  msgstr "Incapable de créer une nouvelle redirection"
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Quelque chose s’est mal passé 🙁"
832
 
@@ -834,113 +858,113 @@ msgstr "Quelque chose s’est mal passé 🙁"
834
  msgid "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!"
835
  msgstr "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 !"
836
 
837
- #: redirection-admin.php:198
838
  msgid "Log entries (%d max)"
839
  msgstr "Entrées du journal (100 max.)"
840
 
841
- #: redirection-strings.php:305
842
  msgid "Search by IP"
843
  msgstr "Rechercher par IP"
844
 
845
- #: redirection-strings.php:300
846
  msgid "Select bulk action"
847
  msgstr "Sélectionner l’action groupée"
848
 
849
- #: redirection-strings.php:301
850
  msgid "Bulk Actions"
851
  msgstr "Actions groupées"
852
 
853
- #: redirection-strings.php:302
854
  msgid "Apply"
855
  msgstr "Appliquer"
856
 
857
- #: redirection-strings.php:293
858
  msgid "First page"
859
  msgstr "Première page"
860
 
861
- #: redirection-strings.php:294
862
  msgid "Prev page"
863
  msgstr "Page précédente"
864
 
865
- #: redirection-strings.php:295
866
  msgid "Current Page"
867
  msgstr "Page courante"
868
 
869
- #: redirection-strings.php:296
870
  msgid "of %(page)s"
871
  msgstr "de %(page)s"
872
 
873
- #: redirection-strings.php:297
874
  msgid "Next page"
875
  msgstr "Page suivante"
876
 
877
- #: redirection-strings.php:298
878
  msgid "Last page"
879
  msgstr "Dernière page"
880
 
881
- #: redirection-strings.php:299
882
  msgid "%s item"
883
  msgid_plural "%s items"
884
  msgstr[0] "%s élément"
885
  msgstr[1] "%s éléments"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "Tout sélectionner"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "Aucun résultat"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "Confirmez-vous la suppression des journaux ?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  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."
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "Oui ! Supprimer les journaux"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "Non ! Ne pas supprimer les journaux"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "Newsletter"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "Votre adresse de messagerie :"
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "Indéfiniment"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  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}}."
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Support de Redirection"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
  msgstr "Support"
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "Journaux"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "Supprimer la redirection"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "Mettre en ligne"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "Importer"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "Mettre à jour"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
- msgstr "URL auto-générée&nbsp;"
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  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)."
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "Jeton RSS "
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "Journaux des 404 "
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(durée de conservation des journaux)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "Journaux des redirections "
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
- msgstr "Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "Support de l’extension "
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "Options"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "Deux mois"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "Un mois"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "Une semaine"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "Un jour"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "Aucun journal"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "Tout supprimer"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "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."
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "Ajouter un groupe"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "Rechercher"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "Groupes"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "Enregistrer"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "Groupe"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "Correspondant"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "Ajouter une nouvelle redirection"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "Annuler"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "Télécharger"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "Télécharger"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "Réglages"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "Ne rien faire"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "Erreur (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "Outrepasser"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "Rediriger vers un article aléatoire"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "Redirection vers une URL"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "Redirection vers une URL"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "Groupe non valide à la création d’une redirection"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "URL source"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "Date"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "Ajouter une redirection"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "Tous les modules"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "Voir les redirections"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "Module"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "Redirections"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "Nom"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "Filtre"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "Réinitialiser les vues"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "Activer"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "Désactiver"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "Supprimer"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "Modifier"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "Dernier accès"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "Hits"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "Type"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "Type"
1230
  msgid "Modified Posts"
1231
  msgstr "Articles modifiés"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
  msgstr "Redirections"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "Agent utilisateur"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL et agent utilisateur"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "URL cible"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "URL uniquement"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "Regex"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "Référant"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL et référent"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "Déconnecté"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "Connecté"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  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-06-13 21:23:43+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:175
15
+ msgid "Form request"
16
+ msgstr "Formulaire de demande"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "/wp-json/ relatif"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr "Proxy sur Admin AJAX"
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "/wp-json/ par défaut"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr "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 :"
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr "Protocole du site et de l’accueil"
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr "Les URL du site et de l’accueil sont incohérentes. Veuillez les corriger dans vos réglages généraux."
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr "Le site et l’accueil sont cohérents"
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
+ 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."
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
+ msgstr "Accepter la langue"
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
+ msgstr "Valeur de l’en-tête"
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
+ msgstr "Nom de l’en-tête"
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
+ msgstr "En-tête HTTP"
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
+ msgstr "Nom de filtre WordPress"
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
+ msgstr "Nom du filtre"
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
+ msgstr "Valeur du cookie"
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
+ msgstr "Nom du cookie"
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
+ msgstr "Cookie"
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
+ msgstr "Description facultative"
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
+ msgstr "URL cible lorsque cela ne correspond pas"
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
+ msgstr "URL cible lorsque cela correspond"
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
+ msgstr "vider votre cache."
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
+ msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
+ msgstr "URL et en-tête HTTP"
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
+ msgstr "URL et filtre personnalisé"
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
+ msgstr "URL et cookie"
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
+ msgstr "404 supprimée"
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
+ msgstr "/index.php?rest_route=/ brut"
 
 
 
 
125
 
126
+ #: redirection-strings.php:197
127
  msgid "REST API"
128
+ msgstr "API REST"
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
+ msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
133
 
134
  #: redirection-strings.php:9
135
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
136
+ msgstr "WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."
137
 
138
  #: redirection-strings.php:12
139
  msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
140
+ msgstr "Veuillez jeter un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."
141
 
142
  #: redirection-strings.php:13
143
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
144
+ msgstr "{{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."
145
 
146
  #: redirection-strings.php:14
147
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
148
+ msgstr "{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."
149
 
150
  #: redirection-strings.php:15
151
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
152
+ msgstr "{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."
153
 
154
  #: redirection-strings.php:16
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
+ msgstr "{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
+ msgstr "Aucune de ces suggestions n’a aidé"
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
+ msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
+ msgstr "Impossible de charger Redirection ☹️"
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
+ msgstr "L’API REST WordPress fonctionne à %s"
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
+ msgstr "API REST WordPress"
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
+ msgstr "L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
+ msgstr "Les redirections fonctionnent"
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
+ msgstr "Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
+ msgstr "Routes de redirection"
193
 
194
  #: redirection-strings.php:8
195
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
196
+ msgstr "Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."
197
 
198
  #. Author URI of the plugin/theme
199
  msgid "https://johngodley.com"
200
+ msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
+ msgstr "Erreur de l’agent utilisateur"
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
+ msgstr "Agent utilisateur inconnu"
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
+ msgstr "Appareil"
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
+ msgstr "Système d’exploitation"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
+ msgstr "Navigateur"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
+ msgstr "Moteur"
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
+ msgstr "Agent utilisateur"
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
+ msgstr "Agent"
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
+ msgstr "Aucune IP journalisée"
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
+ msgstr "Connexion avec IP complète"
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
+ msgstr "Anonymiser l’IP (masquer la dernière partie)"
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
+ msgstr "Monitorer les modifications de %(type)s"
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
+ msgstr "Journalisation d’IP"
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
+ msgstr "(sélectionnez le niveau de journalisation des IP)"
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
+ msgstr "Informations géographiques"
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
+ msgstr "Informations sur l’agent"
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
+ msgstr "Filtrer par IP"
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
+ msgstr "Référent / Agent utilisateur"
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
+ msgstr "Erreur de l’IP géographique"
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
+ msgstr "Un problème est survenu lors de l’obtention de cette information"
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
+ msgstr "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."
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
+ msgstr "Aucun détail n’est connu pour cette adresse."
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
+ msgstr "IP géographique"
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
+ msgstr "Ville"
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
+ msgstr "Zone"
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
+ msgstr "Fuseau horaire"
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
+ msgstr "Emplacement géographique"
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
+ msgstr "Propulsé par {{link}}redirect.li{{/link}}"
314
 
315
  #: redirection-settings.php:12
316
  msgid "Trash"
317
+ msgstr "Corbeille"
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
+ 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."
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
+ msgstr "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>."
326
 
327
  #. Plugin URI of the plugin/theme
328
  msgid "https://redirection.me/"
329
  msgstr "https://redirection.me/"
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
+ 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}}."
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
+ msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
+ 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 !"
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr "Jamais de cache"
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "Une heure"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr "Cache de redirection"
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
+ msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "Confirmez-vous l’importation depuis %s ?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
+ msgstr "Importeurs d’extensions"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "total = "
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "Importer depuis %s"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  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."
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr "Redirection n’est pas correctement installé"
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."
390
 
391
  #: models/importer.php:149
392
  msgid "Default WordPress \"old slugs\""
393
+ msgstr "« Anciens slugs » de WordPress par défaut"
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  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."
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  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."
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr "⚡️ Correction magique ⚡️"
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr "Statut de l’extension"
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr "Personnalisé"
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr "Mobile"
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr "Lecteurs de flux"
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr "Librairies"
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
+ msgstr "Surveiller la modification des URL"
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr "Enregistrer les modifications apportées à ce groupe"
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr "Par exemple « /amp »"
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr "URL à surveiller"
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr "Supprimer les pages 404"
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr "Supprimer tous les journaux pour cette page 404"
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr "Tout supprimer depuis l’IP %s"
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr "Supprimer toutes les correspondances « %s »"
462
 
463
  #: redirection-strings.php:7
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
+ msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  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."
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr "Impossible de charger Redirection"
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr "Impossible de créer un groupe"
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr "La réparation des tables de la base de données a échoué."
486
 
487
  #: models/fixer.php:37
488
  msgid "Post monitor group is valid"
489
+ msgstr "Le groupe de surveillance d’articles est valide"
490
 
491
  #: models/fixer.php:37
492
  msgid "Post monitor group is invalid"
493
+ msgstr "Le groupe de surveillance d’articles est non valide"
494
 
495
  #: models/fixer.php:35
496
  msgid "Post monitor group"
497
+ msgstr "Groupe de surveillance d’article"
498
 
499
  #: models/fixer.php:31
500
  msgid "All redirects have a valid group"
532
  msgid "All tables present"
533
  msgstr "Toutes les tables présentes"
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr "Redirection en cache détectée"
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "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é ?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "Veuillez patienter pendant le chargement…"
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  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."
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  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."
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr "Créer un rapport"
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr "E-mail"
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "Informations importantes"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "Besoin d’aide ?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  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."
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr "Pos"
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 – Gone"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Position"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
+ 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é."
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Module Apache"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Importer dans le groupe"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Ajouter un fichier"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "Fichier sélectionné"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Import"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Import terminé"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "Total des redirections importées :"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "OK"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Fermer"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Exporter"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Tout"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "Redirections WordPress"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Redirections Apache"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Redirections Nginx"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr ".htaccess Apache"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr "Règles de réécriture Nginx"
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr "Redirection JSON"
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "Visualiser"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "Import/export"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "Journaux"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "Erreurs 404"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr "Je voudrais soutenir un peu plus."
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Support 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Redirection sauvegardée"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Journal supprimé"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Réglages sauvegardés"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Groupe sauvegardé"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "Êtes-vous sûr•e de vouloir supprimer cet élément ?"
771
  msgstr[1] "Êtes-vous sûr•e de vouloir supprimer ces éléments ?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr "Passer"
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "Tous les groupes"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301 - déplacé de façon permanente"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 – trouvé"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 – Redirigé temporairement"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 – Redirigé de façon permanente"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 – Non-autorisé"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 – Introuvable"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Titre"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr "Quand cela correspond"
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "avec code HTTP"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Afficher les options avancées"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr "Cible correspondant"
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr "Cible ne correspondant pas"
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Sauvegarde…"
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "Voir la notification"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr "Incapable de créer une nouvelle redirection"
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Quelque chose s’est mal passé 🙁"
856
 
858
  msgid "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!"
859
  msgstr "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 !"
860
 
861
+ #: redirection-admin.php:203
862
  msgid "Log entries (%d max)"
863
  msgstr "Entrées du journal (100 max.)"
864
 
865
+ #: redirection-strings.php:309
866
  msgid "Search by IP"
867
  msgstr "Rechercher par IP"
868
 
869
+ #: redirection-strings.php:304
870
  msgid "Select bulk action"
871
  msgstr "Sélectionner l’action groupée"
872
 
873
+ #: redirection-strings.php:305
874
  msgid "Bulk Actions"
875
  msgstr "Actions groupées"
876
 
877
+ #: redirection-strings.php:306
878
  msgid "Apply"
879
  msgstr "Appliquer"
880
 
881
+ #: redirection-strings.php:297
882
  msgid "First page"
883
  msgstr "Première page"
884
 
885
+ #: redirection-strings.php:298
886
  msgid "Prev page"
887
  msgstr "Page précédente"
888
 
889
+ #: redirection-strings.php:299
890
  msgid "Current Page"
891
  msgstr "Page courante"
892
 
893
+ #: redirection-strings.php:300
894
  msgid "of %(page)s"
895
  msgstr "de %(page)s"
896
 
897
+ #: redirection-strings.php:301
898
  msgid "Next page"
899
  msgstr "Page suivante"
900
 
901
+ #: redirection-strings.php:302
902
  msgid "Last page"
903
  msgstr "Dernière page"
904
 
905
+ #: redirection-strings.php:303
906
  msgid "%s item"
907
  msgid_plural "%s items"
908
  msgstr[0] "%s élément"
909
  msgstr[1] "%s éléments"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "Tout sélectionner"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "Aucun résultat"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "Confirmez-vous la suppression des journaux ?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  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."
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "Oui ! Supprimer les journaux"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "Non ! Ne pas supprimer les journaux"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "Newsletter"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "Votre adresse de messagerie :"
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "Indéfiniment"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  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}}."
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Support de Redirection"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
  msgstr "Support"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "Journaux"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "Supprimer la redirection"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "Mettre en ligne"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "Importer"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "Mettre à jour"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
+ msgstr "URL auto-générée "
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  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)."
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "Jeton RSS "
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "Journaux des 404 "
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(durée de conservation des journaux)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "Journaux des redirections "
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
+ msgstr "Je suis un type bien et jai aidé lauteur de cette extension."
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "Support de l’extension "
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "Options"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "Deux mois"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "Un mois"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "Une semaine"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "Un jour"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "Aucun journal"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "Tout supprimer"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "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."
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "Ajouter un groupe"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "Rechercher"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "Groupes"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "Enregistrer"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "Groupe"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "Correspondant"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "Ajouter une nouvelle redirection"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "Annuler"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "Télécharger"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "Réglages"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "Ne rien faire"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "Erreur (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "Outrepasser"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "Rediriger vers un article aléatoire"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "Redirection vers une URL"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "Groupe non valide à la création d’une redirection"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "URL source"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "Date"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "Ajouter une redirection"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "Tous les modules"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "Voir les redirections"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "Module"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "Redirections"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "Nom"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "Filtre"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "Réinitialiser les vues"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "Activer"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "Désactiver"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "Supprimer"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "Modifier"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "Dernier accès"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "Hits"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "Type"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "Articles modifiés"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
  msgstr "Redirections"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "Agent utilisateur"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL et agent utilisateur"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "URL cible"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "URL uniquement"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "Regex"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "Référant"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL et référent"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "Déconnecté"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "Connecté"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  msgstr "URL et état de connexion"
locale/redirection-it_IT.mo CHANGED
Binary file
locale/redirection-it_IT.po CHANGED
@@ -11,99 +11,123 @@ msgstr ""
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
  msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
  msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
  msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
  msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
  msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
-
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr ""
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
  msgstr ""
109
 
@@ -131,39 +155,39 @@ msgstr ""
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr ""
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr ""
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr ""
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr ""
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
  msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr ""
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
  msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
  msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
  msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
  msgstr ""
169
 
@@ -175,116 +199,116 @@ msgstr ""
175
  msgid "https://johngodley.com"
176
  msgstr ""
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr ""
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr ""
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr ""
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr ""
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr ""
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr ""
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr ""
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr ""
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr ""
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr ""
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr ""
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr ""
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr ""
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr ""
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr ""
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr ""
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr ""
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr ""
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr ""
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr ""
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr ""
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr ""
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr ""
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr ""
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr ""
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr ""
290
 
@@ -292,11 +316,11 @@ msgstr ""
292
  msgid "Trash"
293
  msgstr ""
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  msgstr ""
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr ""
302
 
@@ -304,63 +328,63 @@ msgstr ""
304
  msgid "https://redirection.me/"
305
  msgstr ""
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  msgstr ""
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr ""
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  msgstr ""
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr ""
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr ""
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr ""
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr ""
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr ""
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr ""
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr ""
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr ""
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr ""
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr ""
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr ""
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr ""
366
 
@@ -368,71 +392,71 @@ msgstr ""
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr ""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr ""
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr ""
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  msgstr ""
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr ""
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr ""
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr ""
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr ""
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr ""
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr ""
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr ""
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr ""
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr ""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr ""
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr ""
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr ""
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr ""
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr ""
438
 
@@ -440,23 +464,23 @@ msgstr ""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr ""
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr ""
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr ""
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr ""
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr ""
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr ""
462
 
@@ -508,11 +532,11 @@ msgstr ""
508
  msgid "All tables present"
509
  msgstr ""
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr ""
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr ""
518
 
@@ -528,285 +552,285 @@ msgstr ""
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr ""
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr ""
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr ""
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr ""
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr ""
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  msgstr ""
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr ""
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr ""
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  msgstr ""
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr ""
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr ""
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr ""
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "Hai bisogno di aiuto?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  msgstr ""
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr ""
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr ""
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Posizione"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
  msgstr ""
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Modulo Apache"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Importa nel gruppo"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Importa un file CSV, .htaccess o JSON."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Aggiungi File"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "File selezionato"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Importazione"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Importazione finita"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr ""
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "Controlla che il file sia nel formato corretto!"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "OK"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Chiudi"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Esporta"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Tutto"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "Redirezioni di WordPress"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Redirezioni Apache"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Redirezioni nginx"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr ".htaccess Apache"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr ""
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr ""
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr ""
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr ""
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr ""
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr ""
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "Errori 404"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr ""
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr ""
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Supporta 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Redirezione salvata"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Log eliminato"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Impostazioni salvate"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Gruppo salvato"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
747
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr ""
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "Tutti i gruppi"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301 - Spostato in maniera permanente"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 - Trovato"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 - Redirezione temporanea"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 - Redirezione permanente"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 - Non autorizzato"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 - Non trovato"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Titolo"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr "Quando corrisponde"
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "Con codice HTTP"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Mostra opzioni avanzate"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr ""
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr ""
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Salvataggio..."
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "Vedi la notifica"
812
 
@@ -826,7 +850,7 @@ msgstr ""
826
  msgid "Unable to add new redirect"
827
  msgstr "Impossibile aggiungere una nuova redirezione"
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Qualcosa è andato storto 🙁"
832
 
@@ -836,113 +860,113 @@ msgstr ""
836
  "Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\n"
837
  "I 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!"
838
 
839
- #: redirection-admin.php:198
840
  msgid "Log entries (%d max)"
841
  msgstr ""
842
 
843
- #: redirection-strings.php:305
844
  msgid "Search by IP"
845
  msgstr "Cerca per IP"
846
 
847
- #: redirection-strings.php:300
848
  msgid "Select bulk action"
849
  msgstr "Seleziona l'azione di massa"
850
 
851
- #: redirection-strings.php:301
852
  msgid "Bulk Actions"
853
  msgstr "Azioni di massa"
854
 
855
- #: redirection-strings.php:302
856
  msgid "Apply"
857
  msgstr "Applica"
858
 
859
- #: redirection-strings.php:293
860
  msgid "First page"
861
  msgstr "Prima pagina"
862
 
863
- #: redirection-strings.php:294
864
  msgid "Prev page"
865
  msgstr "Pagina precedente"
866
 
867
- #: redirection-strings.php:295
868
  msgid "Current Page"
869
  msgstr "Pagina corrente"
870
 
871
- #: redirection-strings.php:296
872
  msgid "of %(page)s"
873
  msgstr ""
874
 
875
- #: redirection-strings.php:297
876
  msgid "Next page"
877
  msgstr "Prossima pagina"
878
 
879
- #: redirection-strings.php:298
880
  msgid "Last page"
881
  msgstr "Ultima pagina"
882
 
883
- #: redirection-strings.php:299
884
  msgid "%s item"
885
  msgid_plural "%s items"
886
  msgstr[0] "%s oggetto"
887
  msgstr[1] "%s oggetti"
888
 
889
- #: redirection-strings.php:292
890
  msgid "Select All"
891
  msgstr "Seleziona tutto"
892
 
893
- #: redirection-strings.php:304
894
  msgid "Sorry, something went wrong loading the data - please try again"
895
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
896
 
897
- #: redirection-strings.php:303
898
  msgid "No results"
899
  msgstr "Nessun risultato"
900
 
901
- #: redirection-strings.php:107
902
  msgid "Delete the logs - are you sure?"
903
  msgstr "Cancella i log - sei sicuro?"
904
 
905
- #: redirection-strings.php:108
906
  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."
907
  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."
908
 
909
- #: redirection-strings.php:109
910
  msgid "Yes! Delete the logs"
911
  msgstr "Sì! Cancella i log"
912
 
913
- #: redirection-strings.php:110
914
  msgid "No! Don't delete the logs"
915
  msgstr "No! Non cancellare i log"
916
 
917
- #: redirection-strings.php:283
918
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
919
  msgstr ""
920
 
921
- #: redirection-strings.php:282 redirection-strings.php:284
922
  msgid "Newsletter"
923
  msgstr "Newsletter"
924
 
925
- #: redirection-strings.php:285
926
  msgid "Want to keep up to date with changes to Redirection?"
927
  msgstr ""
928
 
929
- #: redirection-strings.php:286
930
  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."
931
  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."
932
 
933
- #: redirection-strings.php:287
934
  msgid "Your email address:"
935
  msgstr "Il tuo indirizzo email:"
936
 
937
- #: redirection-strings.php:149
938
  msgid "You've supported this plugin - thank you!"
939
  msgstr "Hai già supportato questo plugin - grazie!"
940
 
941
- #: redirection-strings.php:152
942
  msgid "You get useful software and I get to carry on making it better."
943
  msgstr ""
944
 
945
- #: redirection-strings.php:160 redirection-strings.php:165
946
  msgid "Forever"
947
  msgstr "Per sempre"
948
 
@@ -974,140 +998,141 @@ msgstr "John Godley"
974
  msgid "Manage all your 301 redirects and monitor 404 errors"
975
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
976
 
977
- #: redirection-strings.php:151
978
  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}}."
979
  msgstr ""
980
 
981
- #: redirection-admin.php:278
982
  msgid "Redirection Support"
983
  msgstr "Forum di supporto Redirection"
984
 
985
- #: redirection-strings.php:60 redirection-strings.php:140
986
  msgid "Support"
987
  msgstr "Supporto"
988
 
989
- #: redirection-strings.php:137
990
  msgid "404s"
991
  msgstr "404"
992
 
993
- #: redirection-strings.php:136
994
  msgid "Log"
995
  msgstr "Log"
996
 
997
- #: redirection-strings.php:142
998
  msgid "Delete Redirection"
999
  msgstr "Rimuovi Redirection"
1000
 
1001
- #: redirection-strings.php:77
1002
  msgid "Upload"
1003
  msgstr "Carica"
1004
 
1005
- #: redirection-strings.php:88
1006
  msgid "Import"
1007
  msgstr "Importa"
1008
 
1009
- #: redirection-strings.php:195
1010
  msgid "Update"
1011
  msgstr "Aggiorna"
1012
 
1013
- #: redirection-strings.php:187
1014
  msgid "Auto-generate URL"
1015
  msgstr "Genera URL automaticamente"
1016
 
1017
- #: redirection-strings.php:186
1018
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1019
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
1020
 
1021
- #: redirection-strings.php:185
1022
  msgid "RSS Token"
1023
  msgstr "Token RSS"
1024
 
1025
- #: redirection-strings.php:180
1026
  msgid "404 Logs"
1027
  msgstr "Registro 404"
1028
 
1029
- #: redirection-strings.php:179 redirection-strings.php:181
1030
  msgid "(time to keep logs for)"
1031
  msgstr "(per quanto tempo conservare i log)"
1032
 
1033
- #: redirection-strings.php:178
1034
  msgid "Redirect Logs"
1035
  msgstr "Registro redirezioni"
1036
 
1037
- #: redirection-strings.php:177
1038
  msgid "I'm a nice person and I have helped support the author of this plugin"
1039
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
1040
 
1041
- #: redirection-strings.php:154
1042
  msgid "Plugin Support"
1043
  msgstr ""
1044
 
1045
- #: redirection-strings.php:59 redirection-strings.php:139
1046
  msgid "Options"
1047
  msgstr "Opzioni"
1048
 
1049
- #: redirection-strings.php:159
1050
  msgid "Two months"
1051
  msgstr "Due mesi"
1052
 
1053
- #: redirection-strings.php:158
1054
  msgid "A month"
1055
  msgstr "Un mese"
1056
 
1057
- #: redirection-strings.php:157 redirection-strings.php:164
1058
  msgid "A week"
1059
  msgstr "Una settimana"
1060
 
1061
- #: redirection-strings.php:156 redirection-strings.php:163
1062
  msgid "A day"
1063
  msgstr "Un giorno"
1064
 
1065
- #: redirection-strings.php:155
1066
  msgid "No logs"
1067
  msgstr "Nessun log"
1068
 
1069
- #: redirection-strings.php:106
1070
  msgid "Delete All"
1071
  msgstr "Elimina tutto"
1072
 
1073
- #: redirection-strings.php:43
1074
  msgid "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."
1075
  msgstr "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."
1076
 
1077
- #: redirection-strings.php:42
1078
  msgid "Add Group"
1079
  msgstr "Aggiungi gruppo"
1080
 
1081
- #: redirection-strings.php:306
1082
  msgid "Search"
1083
  msgstr "Cerca"
1084
 
1085
- #: redirection-strings.php:55 redirection-strings.php:135
1086
  msgid "Groups"
1087
  msgstr "Gruppi"
1088
 
1089
- #: redirection-strings.php:52 redirection-strings.php:233
 
1090
  msgid "Save"
1091
  msgstr "Salva"
1092
 
1093
- #: redirection-strings.php:231
1094
  msgid "Group"
1095
  msgstr "Gruppo"
1096
 
1097
- #: redirection-strings.php:228
1098
  msgid "Match"
1099
  msgstr "Match"
1100
 
1101
- #: redirection-strings.php:249
1102
  msgid "Add new redirection"
1103
  msgstr "Aggiungi un nuovo reindirizzamento"
1104
 
1105
- #: redirection-strings.php:53 redirection-strings.php:78
1106
- #: redirection-strings.php:236
1107
  msgid "Cancel"
1108
  msgstr "Annulla"
1109
 
1110
- #: redirection-strings.php:102
1111
  msgid "Download"
1112
  msgstr "Scaricare"
1113
 
@@ -1115,27 +1140,27 @@ msgstr "Scaricare"
1115
  msgid "Redirection"
1116
  msgstr "Redirection"
1117
 
1118
- #: redirection-admin.php:154
1119
  msgid "Settings"
1120
  msgstr "Impostazioni"
1121
 
1122
- #: redirection-strings.php:218
1123
  msgid "Do nothing"
1124
  msgstr "Non fare niente"
1125
 
1126
- #: redirection-strings.php:217
1127
  msgid "Error (404)"
1128
  msgstr "Errore (404)"
1129
 
1130
- #: redirection-strings.php:216
1131
  msgid "Pass-through"
1132
  msgstr "Pass-through"
1133
 
1134
- #: redirection-strings.php:215
1135
  msgid "Redirect to random post"
1136
  msgstr "Reindirizza a un post a caso"
1137
 
1138
- #: redirection-strings.php:214
1139
  msgid "Redirect to URL"
1140
  msgstr "Reindirizza a URL"
1141
 
@@ -1143,88 +1168,88 @@ msgstr "Reindirizza a URL"
1143
  msgid "Invalid group when creating redirect"
1144
  msgstr "Gruppo non valido nella creazione del redirect"
1145
 
1146
- #: redirection-strings.php:115 redirection-strings.php:124
1147
  msgid "IP"
1148
  msgstr "IP"
1149
 
1150
- #: redirection-strings.php:113 redirection-strings.php:122
1151
- #: redirection-strings.php:234
1152
  msgid "Source URL"
1153
  msgstr "URL di partenza"
1154
 
1155
- #: redirection-strings.php:112 redirection-strings.php:121
1156
  msgid "Date"
1157
  msgstr "Data"
1158
 
1159
- #: redirection-strings.php:126 redirection-strings.php:130
1160
- #: redirection-strings.php:250
1161
  msgid "Add Redirect"
1162
  msgstr ""
1163
 
1164
- #: redirection-strings.php:41
1165
  msgid "All modules"
1166
  msgstr "Tutti i moduli"
1167
 
1168
- #: redirection-strings.php:47
1169
  msgid "View Redirects"
1170
  msgstr "Mostra i redirect"
1171
 
1172
- #: redirection-strings.php:37 redirection-strings.php:51
1173
  msgid "Module"
1174
  msgstr "Modulo"
1175
 
1176
- #: redirection-strings.php:36 redirection-strings.php:134
1177
  msgid "Redirects"
1178
  msgstr "Reindirizzamenti"
1179
 
1180
- #: redirection-strings.php:35 redirection-strings.php:44
1181
- #: redirection-strings.php:50
1182
  msgid "Name"
1183
  msgstr "Nome"
1184
 
1185
- #: redirection-strings.php:291
1186
  msgid "Filter"
1187
  msgstr "Filtro"
1188
 
1189
- #: redirection-strings.php:247
1190
  msgid "Reset hits"
1191
  msgstr ""
1192
 
1193
- #: redirection-strings.php:39 redirection-strings.php:49
1194
- #: redirection-strings.php:245 redirection-strings.php:275
1195
  msgid "Enable"
1196
  msgstr "Attiva"
1197
 
1198
- #: redirection-strings.php:40 redirection-strings.php:48
1199
- #: redirection-strings.php:246 redirection-strings.php:274
1200
  msgid "Disable"
1201
  msgstr "Disattiva"
1202
 
1203
- #: redirection-strings.php:38 redirection-strings.php:46
1204
- #: redirection-strings.php:116 redirection-strings.php:117
1205
- #: redirection-strings.php:125 redirection-strings.php:129
1206
- #: redirection-strings.php:143 redirection-strings.php:244
1207
- #: redirection-strings.php:273
1208
  msgid "Delete"
1209
- msgstr "Rimuovi"
1210
 
1211
- #: redirection-strings.php:45 redirection-strings.php:272
1212
  msgid "Edit"
1213
  msgstr "Modifica"
1214
 
1215
- #: redirection-strings.php:243
1216
  msgid "Last Access"
1217
  msgstr "Ultimo accesso"
1218
 
1219
- #: redirection-strings.php:242
1220
  msgid "Hits"
1221
  msgstr "Visite"
1222
 
1223
- #: redirection-strings.php:240
1224
  msgid "URL"
1225
  msgstr "URL"
1226
 
1227
- #: redirection-strings.php:239
1228
  msgid "Type"
1229
  msgstr "Tipo"
1230
 
@@ -1232,48 +1257,48 @@ msgstr "Tipo"
1232
  msgid "Modified Posts"
1233
  msgstr "Post modificati"
1234
 
1235
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1236
  msgid "Redirections"
1237
  msgstr "Reindirizzamenti"
1238
 
1239
- #: redirection-strings.php:251
1240
  msgid "User Agent"
1241
  msgstr "User agent"
1242
 
1243
- #: matches/user-agent.php:10 redirection-strings.php:210
1244
  msgid "URL and user agent"
1245
  msgstr "URL e user agent"
1246
 
1247
- #: redirection-strings.php:206
1248
  msgid "Target URL"
1249
  msgstr "URL di arrivo"
1250
 
1251
- #: matches/url.php:7 redirection-strings.php:207
1252
  msgid "URL only"
1253
  msgstr "solo URL"
1254
 
1255
- #: redirection-strings.php:235 redirection-strings.php:256
1256
- #: redirection-strings.php:260 redirection-strings.php:268
1257
- #: redirection-strings.php:271
1258
  msgid "Regex"
1259
  msgstr "Regex"
1260
 
1261
- #: redirection-strings.php:270
1262
  msgid "Referrer"
1263
  msgstr "Referrer"
1264
 
1265
- #: matches/referrer.php:10 redirection-strings.php:209
1266
  msgid "URL and referrer"
1267
  msgstr "URL e referrer"
1268
 
1269
- #: redirection-strings.php:200
1270
  msgid "Logged Out"
1271
- msgstr "Logged out"
1272
 
1273
- #: redirection-strings.php:198
1274
  msgid "Logged In"
1275
- msgstr "Logged in"
1276
 
1277
- #: matches/login.php:8 redirection-strings.php:208
1278
  msgid "URL and login status"
1279
  msgstr "status URL e login"
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr ""
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr ""
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr ""
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
  msgstr ""
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
  msgstr ""
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
  msgstr ""
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:197
 
 
 
 
127
  msgid "REST API"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
  msgstr ""
133
 
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr ""
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr ""
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr ""
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr ""
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
  msgstr ""
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr ""
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
  msgstr ""
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
  msgstr ""
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
  msgstr ""
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
  msgstr ""
193
 
199
  msgid "https://johngodley.com"
200
  msgstr ""
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr ""
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr ""
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr ""
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr ""
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr ""
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr ""
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr ""
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr ""
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr ""
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr ""
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr ""
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr ""
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr ""
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr ""
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr ""
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr ""
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr ""
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr ""
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr ""
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr ""
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr ""
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr ""
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr ""
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr ""
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr ""
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr ""
314
 
316
  msgid "Trash"
317
  msgstr ""
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  msgstr ""
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr ""
326
 
328
  msgid "https://redirection.me/"
329
  msgstr ""
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  msgstr ""
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr ""
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  msgstr ""
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr ""
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr ""
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr ""
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr ""
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr ""
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr ""
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr ""
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr ""
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr ""
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr ""
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr ""
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr ""
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr ""
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr ""
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr ""
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr ""
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr ""
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr ""
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr ""
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr ""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr ""
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr ""
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr ""
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr ""
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr ""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr ""
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr ""
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr ""
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr ""
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr ""
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr ""
486
 
532
  msgid "All tables present"
533
  msgstr ""
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr ""
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr ""
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr ""
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr ""
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr ""
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr ""
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr ""
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  msgstr ""
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr ""
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr ""
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  msgstr ""
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr ""
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr ""
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr ""
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "Hai bisogno di aiuto?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  msgstr ""
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr ""
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr ""
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Posizione"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
  msgstr ""
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Modulo Apache"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Importa nel gruppo"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Importa un file CSV, .htaccess o JSON."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Aggiungi File"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "File selezionato"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Importazione"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Importazione finita"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr ""
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "Controlla che il file sia nel formato corretto!"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "OK"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Chiudi"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Esporta"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Tutto"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "Redirezioni di WordPress"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Redirezioni Apache"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Redirezioni nginx"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr ".htaccess Apache"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr ""
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr ""
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr ""
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr ""
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr ""
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr ""
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "Errori 404"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr ""
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr ""
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Supporta 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Redirezione salvata"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Log eliminato"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Impostazioni salvate"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Gruppo salvato"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
771
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr ""
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "Tutti i gruppi"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301 - Spostato in maniera permanente"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 - Trovato"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 - Redirezione temporanea"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 - Redirezione permanente"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 - Non autorizzato"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 - Non trovato"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Titolo"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr "Quando corrisponde"
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "Con codice HTTP"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Mostra opzioni avanzate"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr ""
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr ""
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Salvataggio..."
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "Vedi la notifica"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr "Impossibile aggiungere una nuova redirezione"
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Qualcosa è andato storto 🙁"
856
 
860
  "Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\n"
861
  "I 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!"
862
 
863
+ #: redirection-admin.php:203
864
  msgid "Log entries (%d max)"
865
  msgstr ""
866
 
867
+ #: redirection-strings.php:309
868
  msgid "Search by IP"
869
  msgstr "Cerca per IP"
870
 
871
+ #: redirection-strings.php:304
872
  msgid "Select bulk action"
873
  msgstr "Seleziona l'azione di massa"
874
 
875
+ #: redirection-strings.php:305
876
  msgid "Bulk Actions"
877
  msgstr "Azioni di massa"
878
 
879
+ #: redirection-strings.php:306
880
  msgid "Apply"
881
  msgstr "Applica"
882
 
883
+ #: redirection-strings.php:297
884
  msgid "First page"
885
  msgstr "Prima pagina"
886
 
887
+ #: redirection-strings.php:298
888
  msgid "Prev page"
889
  msgstr "Pagina precedente"
890
 
891
+ #: redirection-strings.php:299
892
  msgid "Current Page"
893
  msgstr "Pagina corrente"
894
 
895
+ #: redirection-strings.php:300
896
  msgid "of %(page)s"
897
  msgstr ""
898
 
899
+ #: redirection-strings.php:301
900
  msgid "Next page"
901
  msgstr "Prossima pagina"
902
 
903
+ #: redirection-strings.php:302
904
  msgid "Last page"
905
  msgstr "Ultima pagina"
906
 
907
+ #: redirection-strings.php:303
908
  msgid "%s item"
909
  msgid_plural "%s items"
910
  msgstr[0] "%s oggetto"
911
  msgstr[1] "%s oggetti"
912
 
913
+ #: redirection-strings.php:296
914
  msgid "Select All"
915
  msgstr "Seleziona tutto"
916
 
917
+ #: redirection-strings.php:308
918
  msgid "Sorry, something went wrong loading the data - please try again"
919
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
920
 
921
+ #: redirection-strings.php:307
922
  msgid "No results"
923
  msgstr "Nessun risultato"
924
 
925
+ #: redirection-strings.php:109
926
  msgid "Delete the logs - are you sure?"
927
  msgstr "Cancella i log - sei sicuro?"
928
 
929
+ #: redirection-strings.php:110
930
  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."
931
  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."
932
 
933
+ #: redirection-strings.php:111
934
  msgid "Yes! Delete the logs"
935
  msgstr "Sì! Cancella i log"
936
 
937
+ #: redirection-strings.php:112
938
  msgid "No! Don't delete the logs"
939
  msgstr "No! Non cancellare i log"
940
 
941
+ #: redirection-strings.php:287
942
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
943
  msgstr ""
944
 
945
+ #: redirection-strings.php:286 redirection-strings.php:288
946
  msgid "Newsletter"
947
  msgstr "Newsletter"
948
 
949
+ #: redirection-strings.php:289
950
  msgid "Want to keep up to date with changes to Redirection?"
951
  msgstr ""
952
 
953
+ #: redirection-strings.php:290
954
  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."
955
  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."
956
 
957
+ #: redirection-strings.php:291
958
  msgid "Your email address:"
959
  msgstr "Il tuo indirizzo email:"
960
 
961
+ #: redirection-strings.php:151
962
  msgid "You've supported this plugin - thank you!"
963
  msgstr "Hai già supportato questo plugin - grazie!"
964
 
965
+ #: redirection-strings.php:154
966
  msgid "You get useful software and I get to carry on making it better."
967
  msgstr ""
968
 
969
+ #: redirection-strings.php:162 redirection-strings.php:167
970
  msgid "Forever"
971
  msgstr "Per sempre"
972
 
998
  msgid "Manage all your 301 redirects and monitor 404 errors"
999
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
1000
 
1001
+ #: redirection-strings.php:153
1002
  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}}."
1003
  msgstr ""
1004
 
1005
+ #: redirection-admin.php:307
1006
  msgid "Redirection Support"
1007
  msgstr "Forum di supporto Redirection"
1008
 
1009
+ #: redirection-strings.php:62 redirection-strings.php:142
1010
  msgid "Support"
1011
  msgstr "Supporto"
1012
 
1013
+ #: redirection-strings.php:139
1014
  msgid "404s"
1015
  msgstr "404"
1016
 
1017
+ #: redirection-strings.php:138
1018
  msgid "Log"
1019
  msgstr "Log"
1020
 
1021
+ #: redirection-strings.php:149
1022
  msgid "Delete Redirection"
1023
  msgstr "Rimuovi Redirection"
1024
 
1025
+ #: redirection-strings.php:79
1026
  msgid "Upload"
1027
  msgstr "Carica"
1028
 
1029
+ #: redirection-strings.php:90
1030
  msgid "Import"
1031
  msgstr "Importa"
1032
 
1033
+ #: redirection-strings.php:199
1034
  msgid "Update"
1035
  msgstr "Aggiorna"
1036
 
1037
+ #: redirection-strings.php:191
1038
  msgid "Auto-generate URL"
1039
  msgstr "Genera URL automaticamente"
1040
 
1041
+ #: redirection-strings.php:190
1042
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1043
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
1044
 
1045
+ #: redirection-strings.php:189
1046
  msgid "RSS Token"
1047
  msgstr "Token RSS"
1048
 
1049
+ #: redirection-strings.php:184
1050
  msgid "404 Logs"
1051
  msgstr "Registro 404"
1052
 
1053
+ #: redirection-strings.php:183 redirection-strings.php:185
1054
  msgid "(time to keep logs for)"
1055
  msgstr "(per quanto tempo conservare i log)"
1056
 
1057
+ #: redirection-strings.php:182
1058
  msgid "Redirect Logs"
1059
  msgstr "Registro redirezioni"
1060
 
1061
+ #: redirection-strings.php:181
1062
  msgid "I'm a nice person and I have helped support the author of this plugin"
1063
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
1064
 
1065
+ #: redirection-strings.php:156
1066
  msgid "Plugin Support"
1067
  msgstr ""
1068
 
1069
+ #: redirection-strings.php:61 redirection-strings.php:141
1070
  msgid "Options"
1071
  msgstr "Opzioni"
1072
 
1073
+ #: redirection-strings.php:161
1074
  msgid "Two months"
1075
  msgstr "Due mesi"
1076
 
1077
+ #: redirection-strings.php:160
1078
  msgid "A month"
1079
  msgstr "Un mese"
1080
 
1081
+ #: redirection-strings.php:159 redirection-strings.php:166
1082
  msgid "A week"
1083
  msgstr "Una settimana"
1084
 
1085
+ #: redirection-strings.php:158 redirection-strings.php:165
1086
  msgid "A day"
1087
  msgstr "Un giorno"
1088
 
1089
+ #: redirection-strings.php:157
1090
  msgid "No logs"
1091
  msgstr "Nessun log"
1092
 
1093
+ #: redirection-strings.php:108
1094
  msgid "Delete All"
1095
  msgstr "Elimina tutto"
1096
 
1097
+ #: redirection-strings.php:45
1098
  msgid "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."
1099
  msgstr "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."
1100
 
1101
+ #: redirection-strings.php:44
1102
  msgid "Add Group"
1103
  msgstr "Aggiungi gruppo"
1104
 
1105
+ #: redirection-strings.php:310
1106
  msgid "Search"
1107
  msgstr "Cerca"
1108
 
1109
+ #: redirection-strings.php:57 redirection-strings.php:137
1110
  msgid "Groups"
1111
  msgstr "Gruppi"
1112
 
1113
+ #: redirection-strings.php:18 redirection-strings.php:54
1114
+ #: redirection-strings.php:237
1115
  msgid "Save"
1116
  msgstr "Salva"
1117
 
1118
+ #: redirection-strings.php:235
1119
  msgid "Group"
1120
  msgstr "Gruppo"
1121
 
1122
+ #: redirection-strings.php:232
1123
  msgid "Match"
1124
  msgstr "Match"
1125
 
1126
+ #: redirection-strings.php:253
1127
  msgid "Add new redirection"
1128
  msgstr "Aggiungi un nuovo reindirizzamento"
1129
 
1130
+ #: redirection-strings.php:55 redirection-strings.php:80
1131
+ #: redirection-strings.php:240
1132
  msgid "Cancel"
1133
  msgstr "Annulla"
1134
 
1135
+ #: redirection-strings.php:104
1136
  msgid "Download"
1137
  msgstr "Scaricare"
1138
 
1140
  msgid "Redirection"
1141
  msgstr "Redirection"
1142
 
1143
+ #: redirection-admin.php:159
1144
  msgid "Settings"
1145
  msgstr "Impostazioni"
1146
 
1147
+ #: redirection-strings.php:222
1148
  msgid "Do nothing"
1149
  msgstr "Non fare niente"
1150
 
1151
+ #: redirection-strings.php:221
1152
  msgid "Error (404)"
1153
  msgstr "Errore (404)"
1154
 
1155
+ #: redirection-strings.php:220
1156
  msgid "Pass-through"
1157
  msgstr "Pass-through"
1158
 
1159
+ #: redirection-strings.php:219
1160
  msgid "Redirect to random post"
1161
  msgstr "Reindirizza a un post a caso"
1162
 
1163
+ #: redirection-strings.php:218
1164
  msgid "Redirect to URL"
1165
  msgstr "Reindirizza a URL"
1166
 
1168
  msgid "Invalid group when creating redirect"
1169
  msgstr "Gruppo non valido nella creazione del redirect"
1170
 
1171
+ #: redirection-strings.php:117 redirection-strings.php:126
1172
  msgid "IP"
1173
  msgstr "IP"
1174
 
1175
+ #: redirection-strings.php:115 redirection-strings.php:124
1176
+ #: redirection-strings.php:238
1177
  msgid "Source URL"
1178
  msgstr "URL di partenza"
1179
 
1180
+ #: redirection-strings.php:114 redirection-strings.php:123
1181
  msgid "Date"
1182
  msgstr "Data"
1183
 
1184
+ #: redirection-strings.php:128 redirection-strings.php:132
1185
+ #: redirection-strings.php:254
1186
  msgid "Add Redirect"
1187
  msgstr ""
1188
 
1189
+ #: redirection-strings.php:43
1190
  msgid "All modules"
1191
  msgstr "Tutti i moduli"
1192
 
1193
+ #: redirection-strings.php:49
1194
  msgid "View Redirects"
1195
  msgstr "Mostra i redirect"
1196
 
1197
+ #: redirection-strings.php:39 redirection-strings.php:53
1198
  msgid "Module"
1199
  msgstr "Modulo"
1200
 
1201
+ #: redirection-strings.php:38 redirection-strings.php:136
1202
  msgid "Redirects"
1203
  msgstr "Reindirizzamenti"
1204
 
1205
+ #: redirection-strings.php:37 redirection-strings.php:46
1206
+ #: redirection-strings.php:52
1207
  msgid "Name"
1208
  msgstr "Nome"
1209
 
1210
+ #: redirection-strings.php:295
1211
  msgid "Filter"
1212
  msgstr "Filtro"
1213
 
1214
+ #: redirection-strings.php:251
1215
  msgid "Reset hits"
1216
  msgstr ""
1217
 
1218
+ #: redirection-strings.php:41 redirection-strings.php:51
1219
+ #: redirection-strings.php:249 redirection-strings.php:279
1220
  msgid "Enable"
1221
  msgstr "Attiva"
1222
 
1223
+ #: redirection-strings.php:42 redirection-strings.php:50
1224
+ #: redirection-strings.php:250 redirection-strings.php:278
1225
  msgid "Disable"
1226
  msgstr "Disattiva"
1227
 
1228
+ #: redirection-strings.php:40 redirection-strings.php:48
1229
+ #: redirection-strings.php:118 redirection-strings.php:119
1230
+ #: redirection-strings.php:127 redirection-strings.php:131
1231
+ #: redirection-strings.php:150 redirection-strings.php:248
1232
+ #: redirection-strings.php:277
1233
  msgid "Delete"
1234
+ msgstr ""
1235
 
1236
+ #: redirection-strings.php:47 redirection-strings.php:276
1237
  msgid "Edit"
1238
  msgstr "Modifica"
1239
 
1240
+ #: redirection-strings.php:247
1241
  msgid "Last Access"
1242
  msgstr "Ultimo accesso"
1243
 
1244
+ #: redirection-strings.php:246
1245
  msgid "Hits"
1246
  msgstr "Visite"
1247
 
1248
+ #: redirection-strings.php:244
1249
  msgid "URL"
1250
  msgstr "URL"
1251
 
1252
+ #: redirection-strings.php:243
1253
  msgid "Type"
1254
  msgstr "Tipo"
1255
 
1257
  msgid "Modified Posts"
1258
  msgstr "Post modificati"
1259
 
1260
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1261
  msgid "Redirections"
1262
  msgstr "Reindirizzamenti"
1263
 
1264
+ #: redirection-strings.php:255
1265
  msgid "User Agent"
1266
  msgstr "User agent"
1267
 
1268
+ #: matches/user-agent.php:10 redirection-strings.php:214
1269
  msgid "URL and user agent"
1270
  msgstr "URL e user agent"
1271
 
1272
+ #: redirection-strings.php:210
1273
  msgid "Target URL"
1274
  msgstr "URL di arrivo"
1275
 
1276
+ #: matches/url.php:7 redirection-strings.php:211
1277
  msgid "URL only"
1278
  msgstr "solo URL"
1279
 
1280
+ #: redirection-strings.php:239 redirection-strings.php:260
1281
+ #: redirection-strings.php:264 redirection-strings.php:272
1282
+ #: redirection-strings.php:275
1283
  msgid "Regex"
1284
  msgstr "Regex"
1285
 
1286
+ #: redirection-strings.php:274
1287
  msgid "Referrer"
1288
  msgstr "Referrer"
1289
 
1290
+ #: matches/referrer.php:10 redirection-strings.php:213
1291
  msgid "URL and referrer"
1292
  msgstr "URL e referrer"
1293
 
1294
+ #: redirection-strings.php:204
1295
  msgid "Logged Out"
1296
+ msgstr ""
1297
 
1298
+ #: redirection-strings.php:202
1299
  msgid "Logged In"
1300
+ msgstr ""
1301
 
1302
+ #: matches/login.php:8 redirection-strings.php:212
1303
  msgid "URL and login status"
1304
  msgstr "status URL e login"
locale/redirection-ja.mo CHANGED
Binary file
locale/redirection-ja.po CHANGED
@@ -11,99 +11,123 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
  msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
  msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
  msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
  msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
  msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
-
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr "REST API"
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
  msgstr ""
109
 
@@ -131,39 +155,39 @@ msgstr ""
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr ""
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr ""
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr ""
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr ""
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
  msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr ""
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
  msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
  msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
  msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
  msgstr ""
169
 
@@ -175,116 +199,116 @@ msgstr ""
175
  msgid "https://johngodley.com"
176
  msgstr "https://johngodley.com"
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr "ユーザーエージェントエラー"
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr "不明なユーザーエージェント"
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr "デバイス"
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr "オペレーティングシステム"
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr "ブラウザー"
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr "エンジン"
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr "ユーザーエージェント"
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr ""
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr ""
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr ""
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr ""
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr ""
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr ""
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr ""
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr ""
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr ""
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr ""
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr ""
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr ""
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr ""
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr ""
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr ""
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr ""
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr "タイムゾーン"
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr ""
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr ""
290
 
@@ -292,11 +316,11 @@ msgstr ""
292
  msgid "Trash"
293
  msgstr ""
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  msgstr ""
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr ""
302
 
@@ -304,63 +328,63 @@ msgstr ""
304
  msgid "https://redirection.me/"
305
  msgstr "https://redirection.me/"
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  msgstr ""
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  msgstr ""
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr "キャッシュしない"
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "1時間"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr "リダイレクトキャッシュ"
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr ""
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "本当に %s からインポートしますか ?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr "インポートプラグイン"
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr ""
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "全数 ="
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "%s からインポート"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr ""
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr ""
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr ""
366
 
@@ -368,71 +392,71 @@ msgstr ""
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr ""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr ""
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr ""
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr "⚡️マジック修正⚡️"
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr "プラグインステータス"
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr "カスタム"
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr "モバイル"
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr "フィード読者"
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr "ライブラリ"
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr ""
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr "このグループへの変更を保存"
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr "例: \"/amp\""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr "URL モニター"
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr "404を削除"
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr "この404エラーに対するすべてのログを削除"
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr "すべての IP %s からのものを削除"
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr "すべての \"%s\" に一致するものを削除"
438
 
@@ -440,23 +464,23 @@ msgstr "すべての \"%s\" に一致するものを削除"
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr ""
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr ""
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr ""
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr ""
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr "グループの作成に失敗しました"
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr "データベーステーブルの修正に失敗しました"
462
 
@@ -508,11 +532,11 @@ msgstr "次のテーブルが不足しています:"
508
  msgid "All tables present"
509
  msgstr ""
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr "キャッシュされた Redirection が検知されました"
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
518
 
@@ -528,286 +552,286 @@ msgstr "WordPress WordPress が応答しません。これはエラーが発生
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "サーバーが403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr ""
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "ロード中です。お待ち下さい…"
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr ""
558
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
559
  " issue{{/link}} を詳細とともに作成してください。"
560
 
561
- #: redirection-strings.php:18
562
  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."
563
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
564
 
565
- #: redirection-admin.php:390 redirection-strings.php:19
566
  msgid "Create Issue"
567
  msgstr "Issue を作成"
568
 
569
- #: redirection-strings.php:20
570
  msgid "Email"
571
  msgstr "メール"
572
 
573
- #: redirection-strings.php:21
574
  msgid "Important details"
575
  msgstr "重要な詳細"
576
 
577
- #: redirection-strings.php:277
578
  msgid "Need help?"
579
  msgstr "ヘルプが必要ですか?"
580
 
581
- #: redirection-strings.php:280
582
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
583
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
584
 
585
- #: redirection-strings.php:241
586
  msgid "Pos"
587
  msgstr "Pos"
588
 
589
- #: redirection-strings.php:225
590
  msgid "410 - Gone"
591
  msgstr "410 - 消滅"
592
 
593
- #: redirection-strings.php:232
594
  msgid "Position"
595
  msgstr "配置"
596
 
597
- #: redirection-strings.php:188
598
  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"
599
  msgstr ""
600
 
601
- #: redirection-strings.php:189
602
  msgid "Apache Module"
603
  msgstr "Apache モジュール"
604
 
605
- #: redirection-strings.php:190
606
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
607
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
608
 
609
- #: redirection-strings.php:72
610
  msgid "Import to group"
611
  msgstr "グループにインポート"
612
 
613
- #: redirection-strings.php:73
614
  msgid "Import a CSV, .htaccess, or JSON file."
615
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
616
 
617
- #: redirection-strings.php:74
618
  msgid "Click 'Add File' or drag and drop here."
619
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
620
 
621
- #: redirection-strings.php:75
622
  msgid "Add File"
623
  msgstr "ファイルを追加"
624
 
625
- #: redirection-strings.php:76
626
  msgid "File selected"
627
  msgstr "選択されたファイル"
628
 
629
- #: redirection-strings.php:79
630
  msgid "Importing"
631
  msgstr "インポート中"
632
 
633
- #: redirection-strings.php:80
634
  msgid "Finished importing"
635
  msgstr "インポートが完了しました"
636
 
637
- #: redirection-strings.php:81
638
  msgid "Total redirects imported:"
639
  msgstr "インポートされたリダイレクト数: "
640
 
641
- #: redirection-strings.php:82
642
  msgid "Double-check the file is the correct format!"
643
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
644
 
645
- #: redirection-strings.php:83
646
  msgid "OK"
647
  msgstr "OK"
648
 
649
- #: redirection-strings.php:84 redirection-strings.php:237
650
  msgid "Close"
651
  msgstr "閉じる"
652
 
653
- #: redirection-strings.php:89
654
  msgid "All imports will be appended to the current database."
655
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
656
 
657
- #: redirection-strings.php:91 redirection-strings.php:111
658
  msgid "Export"
659
  msgstr "エクスポート"
660
 
661
- #: redirection-strings.php:92
662
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
663
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
664
 
665
- #: redirection-strings.php:93
666
  msgid "Everything"
667
  msgstr "すべて"
668
 
669
- #: redirection-strings.php:94
670
  msgid "WordPress redirects"
671
  msgstr "WordPress リダイレクト"
672
 
673
- #: redirection-strings.php:95
674
  msgid "Apache redirects"
675
  msgstr "Apache リダイレクト"
676
 
677
- #: redirection-strings.php:96
678
  msgid "Nginx redirects"
679
  msgstr "Nginx リダイレクト"
680
 
681
- #: redirection-strings.php:97
682
  msgid "CSV"
683
  msgstr "CSV"
684
 
685
- #: redirection-strings.php:98
686
  msgid "Apache .htaccess"
687
  msgstr "Apache .htaccess"
688
 
689
- #: redirection-strings.php:99
690
  msgid "Nginx rewrite rules"
691
  msgstr "Nginx のリライトルール"
692
 
693
- #: redirection-strings.php:100
694
  msgid "Redirection JSON"
695
  msgstr "Redirection JSON"
696
 
697
- #: redirection-strings.php:101
698
  msgid "View"
699
  msgstr "表示"
700
 
701
- #: redirection-strings.php:103
702
  msgid "Log files can be exported from the log pages."
703
  msgstr "ログファイルはログページにてエクスポート出来ます。"
704
 
705
- #: redirection-strings.php:56 redirection-strings.php:138
706
  msgid "Import/Export"
707
  msgstr "インポート / エクスポート"
708
 
709
- #: redirection-strings.php:57
710
  msgid "Logs"
711
  msgstr "ログ"
712
 
713
- #: redirection-strings.php:58
714
  msgid "404 errors"
715
  msgstr "404 エラー"
716
 
717
- #: redirection-strings.php:69
718
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
719
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
720
 
721
- #: redirection-strings.php:150
722
  msgid "I'd like to support some more."
723
  msgstr "もっとサポートがしたいです。"
724
 
725
- #: redirection-strings.php:153
726
  msgid "Support 💰"
727
  msgstr "サポート💰"
728
 
729
- #: redirection-strings.php:318
730
  msgid "Redirection saved"
731
  msgstr "リダイレクトが保存されました"
732
 
733
- #: redirection-strings.php:319
734
  msgid "Log deleted"
735
  msgstr "ログが削除されました"
736
 
737
- #: redirection-strings.php:320
738
  msgid "Settings saved"
739
  msgstr "設定が保存されました"
740
 
741
- #: redirection-strings.php:321
742
  msgid "Group saved"
743
  msgstr "グループが保存されました"
744
 
745
- #: redirection-strings.php:317
746
  msgid "Are you sure you want to delete this item?"
747
  msgid_plural "Are you sure you want to delete these items?"
748
  msgstr[0] "本当に削除してもよろしいですか?"
749
 
750
- #: redirection-strings.php:276
751
  msgid "pass"
752
  msgstr "パス"
753
 
754
- #: redirection-strings.php:248
755
  msgid "All groups"
756
  msgstr "すべてのグループ"
757
 
758
- #: redirection-strings.php:219
759
  msgid "301 - Moved Permanently"
760
  msgstr "301 - 恒久的に移動"
761
 
762
- #: redirection-strings.php:220
763
  msgid "302 - Found"
764
  msgstr "302 - 発見"
765
 
766
- #: redirection-strings.php:221
767
  msgid "307 - Temporary Redirect"
768
  msgstr "307 - 一時リダイレクト"
769
 
770
- #: redirection-strings.php:222
771
  msgid "308 - Permanent Redirect"
772
  msgstr "308 - 恒久リダイレクト"
773
 
774
- #: redirection-strings.php:223
775
  msgid "401 - Unauthorized"
776
  msgstr "401 - 認証が必要"
777
 
778
- #: redirection-strings.php:224
779
  msgid "404 - Not Found"
780
  msgstr "404 - 未検出"
781
 
782
- #: redirection-strings.php:226
783
  msgid "Title"
784
  msgstr "タイトル"
785
 
786
- #: redirection-strings.php:229
787
  msgid "When matched"
788
  msgstr "マッチした時"
789
 
790
- #: redirection-strings.php:230
791
  msgid "with HTTP code"
792
  msgstr "次の HTTP コードと共に"
793
 
794
- #: redirection-strings.php:238
795
  msgid "Show advanced options"
796
  msgstr "高度な設定を表示"
797
 
798
- #: redirection-strings.php:202
799
  msgid "Matched Target"
800
  msgstr "見つかったターゲット"
801
 
802
- #: redirection-strings.php:204
803
  msgid "Unmatched Target"
804
  msgstr "ターゲットが見つかりません"
805
 
806
- #: redirection-strings.php:196 redirection-strings.php:197
807
  msgid "Saving..."
808
  msgstr "保存中…"
809
 
810
- #: redirection-strings.php:141
811
  msgid "View notice"
812
  msgstr "通知を見る"
813
 
@@ -827,7 +851,7 @@ msgstr "不正なリダイレクトマッチャー"
827
  msgid "Unable to add new redirect"
828
  msgstr "新しいリダイレクトの追加に失敗しました"
829
 
830
- #: redirection-strings.php:11 redirection-strings.php:65
831
  msgid "Something went wrong 🙁"
832
  msgstr "問題が発生しました"
833
 
@@ -835,112 +859,112 @@ msgstr "問題が発生しました"
835
  msgid "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!"
836
  msgstr "何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"
837
 
838
- #: redirection-admin.php:198
839
  msgid "Log entries (%d max)"
840
  msgstr "ログ (最大 %d)"
841
 
842
- #: redirection-strings.php:305
843
  msgid "Search by IP"
844
  msgstr "IP による検索"
845
 
846
- #: redirection-strings.php:300
847
  msgid "Select bulk action"
848
  msgstr "一括操作を選択"
849
 
850
- #: redirection-strings.php:301
851
  msgid "Bulk Actions"
852
  msgstr "一括操作"
853
 
854
- #: redirection-strings.php:302
855
  msgid "Apply"
856
  msgstr "適応"
857
 
858
- #: redirection-strings.php:293
859
  msgid "First page"
860
  msgstr "最初のページ"
861
 
862
- #: redirection-strings.php:294
863
  msgid "Prev page"
864
  msgstr "前のページ"
865
 
866
- #: redirection-strings.php:295
867
  msgid "Current Page"
868
  msgstr "現在のページ"
869
 
870
- #: redirection-strings.php:296
871
  msgid "of %(page)s"
872
  msgstr "%(page)s"
873
 
874
- #: redirection-strings.php:297
875
  msgid "Next page"
876
  msgstr "次のページ"
877
 
878
- #: redirection-strings.php:298
879
  msgid "Last page"
880
  msgstr "最後のページ"
881
 
882
- #: redirection-strings.php:299
883
  msgid "%s item"
884
  msgid_plural "%s items"
885
  msgstr[0] "%s 個のアイテム"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "すべて選択"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "結果なし"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "本当にログを消去しますか ?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "ログを消去する"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "ログを消去しない"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "ニュースレター"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "メールアドレス: "
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "永久に"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Redirection を応援する"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
- msgstr "作者を応援 "
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404 エラー"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "ログ"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "転送ルールを削除"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "アップロード"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "インポート"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "更新"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
  msgstr "URL を自動生成 "
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "RSS トークン"
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "404 ログ"
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(ログの保存期間)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "転送ログ"
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
  msgstr "このプラグインの作者に対する援助を行いました"
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "プラグインサポート"
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "設定"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "2ヶ月"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "1ヶ月"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "1週間"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "1日"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "ログなし"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "すべてを削除"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "グループを追加"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "検索"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "グループ"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "保存"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "グループ"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "一致条件"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "新しい転送ルールを追加"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "キャンセル"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "ダウンロード"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "ダウンロード"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "設定"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "何もしない"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "エラー (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "通過"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "ランダムな記事へ転送"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "URL へ転送"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "URL へ転送"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "ソース URL"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "日付"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "転送ルールを追加"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "すべてのモジュール"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "転送ルールを表示"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "モジュール"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "転送ルール"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "名称"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "フィルター"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "訪問数をリセット"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "有効化"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "無効化"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "削除"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "編集"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "前回のアクセス"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "ヒット数"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "タイプ"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "タイプ"
1230
  msgid "Modified Posts"
1231
  msgstr "編集済みの投稿"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
  msgstr "転送ルール"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "ユーザーエージェント"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL およびユーザーエージェント"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "ターゲット URL"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "URL のみ"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "正規表現"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "リファラー"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL およびリファラー"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "ログアウト中"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "ログイン中"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  msgstr "URL およびログイン状態"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr ""
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr ""
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr ""
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
  msgstr ""
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
  msgstr ""
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
  msgstr ""
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:197
 
 
 
 
127
  msgid "REST API"
128
  msgstr "REST API"
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
  msgstr ""
133
 
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr ""
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr ""
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr ""
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr ""
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
  msgstr ""
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr ""
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
  msgstr ""
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
  msgstr ""
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
  msgstr ""
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
  msgstr ""
193
 
199
  msgid "https://johngodley.com"
200
  msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr "ユーザーエージェントエラー"
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr "不明なユーザーエージェント"
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr "デバイス"
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr "オペレーティングシステム"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr "ブラウザー"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr "エンジン"
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr "ユーザーエージェント"
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr ""
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr ""
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr ""
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr ""
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr ""
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr ""
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr ""
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr ""
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr ""
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr ""
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr ""
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr ""
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr ""
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr ""
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr ""
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr ""
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr "タイムゾーン"
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr ""
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr ""
314
 
316
  msgid "Trash"
317
  msgstr ""
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  msgstr ""
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr ""
326
 
328
  msgid "https://redirection.me/"
329
  msgstr "https://redirection.me/"
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  msgstr ""
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  msgstr ""
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr "キャッシュしない"
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "1時間"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr "リダイレクトキャッシュ"
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "本当に %s からインポートしますか ?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr "インポートプラグイン"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "全数 ="
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "%s からインポート"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr ""
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr ""
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr ""
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr ""
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr ""
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr "⚡️マジック修正⚡️"
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr "プラグインステータス"
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr "カスタム"
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr "モバイル"
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr "フィード読者"
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr "ライブラリ"
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr ""
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr "このグループへの変更を保存"
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr "例: \"/amp\""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr "URL モニター"
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr "404を削除"
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr "この404エラーに対するすべてのログを削除"
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr "すべての IP %s からのものを削除"
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr "すべての \"%s\" に一致するものを削除"
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr ""
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr ""
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr ""
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr ""
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr "グループの作成に失敗しました"
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr "データベーステーブルの修正に失敗しました"
486
 
532
  msgid "All tables present"
533
  msgstr ""
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr "キャッシュされた Redirection が検知されました"
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "サーバーが403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr ""
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "ロード中です。お待ち下さい…"
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr ""
582
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
583
  " issue{{/link}} を詳細とともに作成してください。"
584
 
585
+ #: redirection-strings.php:20
586
  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."
587
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
588
 
589
+ #: redirection-admin.php:419 redirection-strings.php:21
590
  msgid "Create Issue"
591
  msgstr "Issue を作成"
592
 
593
+ #: redirection-strings.php:22
594
  msgid "Email"
595
  msgstr "メール"
596
 
597
+ #: redirection-strings.php:23
598
  msgid "Important details"
599
  msgstr "重要な詳細"
600
 
601
+ #: redirection-strings.php:281
602
  msgid "Need help?"
603
  msgstr "ヘルプが必要ですか?"
604
 
605
+ #: redirection-strings.php:284
606
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
607
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
608
 
609
+ #: redirection-strings.php:245
610
  msgid "Pos"
611
  msgstr "Pos"
612
 
613
+ #: redirection-strings.php:229
614
  msgid "410 - Gone"
615
  msgstr "410 - 消滅"
616
 
617
+ #: redirection-strings.php:236
618
  msgid "Position"
619
  msgstr "配置"
620
 
621
+ #: redirection-strings.php:192
622
  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"
623
  msgstr ""
624
 
625
+ #: redirection-strings.php:193
626
  msgid "Apache Module"
627
  msgstr "Apache モジュール"
628
 
629
+ #: redirection-strings.php:194
630
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
631
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
632
 
633
+ #: redirection-strings.php:74
634
  msgid "Import to group"
635
  msgstr "グループにインポート"
636
 
637
+ #: redirection-strings.php:75
638
  msgid "Import a CSV, .htaccess, or JSON file."
639
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
640
 
641
+ #: redirection-strings.php:76
642
  msgid "Click 'Add File' or drag and drop here."
643
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
644
 
645
+ #: redirection-strings.php:77
646
  msgid "Add File"
647
  msgstr "ファイルを追加"
648
 
649
+ #: redirection-strings.php:78
650
  msgid "File selected"
651
  msgstr "選択されたファイル"
652
 
653
+ #: redirection-strings.php:81
654
  msgid "Importing"
655
  msgstr "インポート中"
656
 
657
+ #: redirection-strings.php:82
658
  msgid "Finished importing"
659
  msgstr "インポートが完了しました"
660
 
661
+ #: redirection-strings.php:83
662
  msgid "Total redirects imported:"
663
  msgstr "インポートされたリダイレクト数: "
664
 
665
+ #: redirection-strings.php:84
666
  msgid "Double-check the file is the correct format!"
667
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
668
 
669
+ #: redirection-strings.php:85
670
  msgid "OK"
671
  msgstr "OK"
672
 
673
+ #: redirection-strings.php:86 redirection-strings.php:241
674
  msgid "Close"
675
  msgstr "閉じる"
676
 
677
+ #: redirection-strings.php:91
678
  msgid "All imports will be appended to the current database."
679
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
680
 
681
+ #: redirection-strings.php:93 redirection-strings.php:113
682
  msgid "Export"
683
  msgstr "エクスポート"
684
 
685
+ #: redirection-strings.php:94
686
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
687
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
688
 
689
+ #: redirection-strings.php:95
690
  msgid "Everything"
691
  msgstr "すべて"
692
 
693
+ #: redirection-strings.php:96
694
  msgid "WordPress redirects"
695
  msgstr "WordPress リダイレクト"
696
 
697
+ #: redirection-strings.php:97
698
  msgid "Apache redirects"
699
  msgstr "Apache リダイレクト"
700
 
701
+ #: redirection-strings.php:98
702
  msgid "Nginx redirects"
703
  msgstr "Nginx リダイレクト"
704
 
705
+ #: redirection-strings.php:99
706
  msgid "CSV"
707
  msgstr "CSV"
708
 
709
+ #: redirection-strings.php:100
710
  msgid "Apache .htaccess"
711
  msgstr "Apache .htaccess"
712
 
713
+ #: redirection-strings.php:101
714
  msgid "Nginx rewrite rules"
715
  msgstr "Nginx のリライトルール"
716
 
717
+ #: redirection-strings.php:102
718
  msgid "Redirection JSON"
719
  msgstr "Redirection JSON"
720
 
721
+ #: redirection-strings.php:103
722
  msgid "View"
723
  msgstr "表示"
724
 
725
+ #: redirection-strings.php:105
726
  msgid "Log files can be exported from the log pages."
727
  msgstr "ログファイルはログページにてエクスポート出来ます。"
728
 
729
+ #: redirection-strings.php:58 redirection-strings.php:140
730
  msgid "Import/Export"
731
  msgstr "インポート / エクスポート"
732
 
733
+ #: redirection-strings.php:59
734
  msgid "Logs"
735
  msgstr "ログ"
736
 
737
+ #: redirection-strings.php:60
738
  msgid "404 errors"
739
  msgstr "404 エラー"
740
 
741
+ #: redirection-strings.php:71
742
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
743
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
744
 
745
+ #: redirection-strings.php:152
746
  msgid "I'd like to support some more."
747
  msgstr "もっとサポートがしたいです。"
748
 
749
+ #: redirection-strings.php:155
750
  msgid "Support 💰"
751
  msgstr "サポート💰"
752
 
753
+ #: redirection-strings.php:322
754
  msgid "Redirection saved"
755
  msgstr "リダイレクトが保存されました"
756
 
757
+ #: redirection-strings.php:323
758
  msgid "Log deleted"
759
  msgstr "ログが削除されました"
760
 
761
+ #: redirection-strings.php:324
762
  msgid "Settings saved"
763
  msgstr "設定が保存されました"
764
 
765
+ #: redirection-strings.php:325
766
  msgid "Group saved"
767
  msgstr "グループが保存されました"
768
 
769
+ #: redirection-strings.php:321
770
  msgid "Are you sure you want to delete this item?"
771
  msgid_plural "Are you sure you want to delete these items?"
772
  msgstr[0] "本当に削除してもよろしいですか?"
773
 
774
+ #: redirection-strings.php:280
775
  msgid "pass"
776
  msgstr "パス"
777
 
778
+ #: redirection-strings.php:252
779
  msgid "All groups"
780
  msgstr "すべてのグループ"
781
 
782
+ #: redirection-strings.php:223
783
  msgid "301 - Moved Permanently"
784
  msgstr "301 - 恒久的に移動"
785
 
786
+ #: redirection-strings.php:224
787
  msgid "302 - Found"
788
  msgstr "302 - 発見"
789
 
790
+ #: redirection-strings.php:225
791
  msgid "307 - Temporary Redirect"
792
  msgstr "307 - 一時リダイレクト"
793
 
794
+ #: redirection-strings.php:226
795
  msgid "308 - Permanent Redirect"
796
  msgstr "308 - 恒久リダイレクト"
797
 
798
+ #: redirection-strings.php:227
799
  msgid "401 - Unauthorized"
800
  msgstr "401 - 認証が必要"
801
 
802
+ #: redirection-strings.php:228
803
  msgid "404 - Not Found"
804
  msgstr "404 - 未検出"
805
 
806
+ #: redirection-strings.php:230
807
  msgid "Title"
808
  msgstr "タイトル"
809
 
810
+ #: redirection-strings.php:233
811
  msgid "When matched"
812
  msgstr "マッチした時"
813
 
814
+ #: redirection-strings.php:234
815
  msgid "with HTTP code"
816
  msgstr "次の HTTP コードと共に"
817
 
818
+ #: redirection-strings.php:242
819
  msgid "Show advanced options"
820
  msgstr "高度な設定を表示"
821
 
822
+ #: redirection-strings.php:206
823
  msgid "Matched Target"
824
  msgstr "見つかったターゲット"
825
 
826
+ #: redirection-strings.php:208
827
  msgid "Unmatched Target"
828
  msgstr "ターゲットが見つかりません"
829
 
830
+ #: redirection-strings.php:200 redirection-strings.php:201
831
  msgid "Saving..."
832
  msgstr "保存中…"
833
 
834
+ #: redirection-strings.php:143
835
  msgid "View notice"
836
  msgstr "通知を見る"
837
 
851
  msgid "Unable to add new redirect"
852
  msgstr "新しいリダイレクトの追加に失敗しました"
853
 
854
+ #: redirection-strings.php:11 redirection-strings.php:67
855
  msgid "Something went wrong 🙁"
856
  msgstr "問題が発生しました"
857
 
859
  msgid "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!"
860
  msgstr "何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"
861
 
862
+ #: redirection-admin.php:203
863
  msgid "Log entries (%d max)"
864
  msgstr "ログ (最大 %d)"
865
 
866
+ #: redirection-strings.php:309
867
  msgid "Search by IP"
868
  msgstr "IP による検索"
869
 
870
+ #: redirection-strings.php:304
871
  msgid "Select bulk action"
872
  msgstr "一括操作を選択"
873
 
874
+ #: redirection-strings.php:305
875
  msgid "Bulk Actions"
876
  msgstr "一括操作"
877
 
878
+ #: redirection-strings.php:306
879
  msgid "Apply"
880
  msgstr "適応"
881
 
882
+ #: redirection-strings.php:297
883
  msgid "First page"
884
  msgstr "最初のページ"
885
 
886
+ #: redirection-strings.php:298
887
  msgid "Prev page"
888
  msgstr "前のページ"
889
 
890
+ #: redirection-strings.php:299
891
  msgid "Current Page"
892
  msgstr "現在のページ"
893
 
894
+ #: redirection-strings.php:300
895
  msgid "of %(page)s"
896
  msgstr "%(page)s"
897
 
898
+ #: redirection-strings.php:301
899
  msgid "Next page"
900
  msgstr "次のページ"
901
 
902
+ #: redirection-strings.php:302
903
  msgid "Last page"
904
  msgstr "最後のページ"
905
 
906
+ #: redirection-strings.php:303
907
  msgid "%s item"
908
  msgid_plural "%s items"
909
  msgstr[0] "%s 個のアイテム"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "すべて選択"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "結果なし"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "本当にログを消去しますか ?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "ログを消去する"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "ログを消去しない"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "ニュースレター"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "メールアドレス: "
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "永久に"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Redirection を応援する"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
+ msgstr "サポート"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404 エラー"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "ログ"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "転送ルールを削除"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "アップロード"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "インポート"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "更新"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
  msgstr "URL を自動生成 "
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "RSS トークン"
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "404 ログ"
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(ログの保存期間)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "転送ログ"
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
  msgstr "このプラグインの作者に対する援助を行いました"
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "プラグインサポート"
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "設定"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "2ヶ月"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "1ヶ月"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "1週間"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "1日"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "ログなし"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "すべてを削除"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "グループを追加"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "検索"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "グループ"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "保存"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "グループ"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "一致条件"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "新しい転送ルールを追加"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "キャンセル"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "ダウンロード"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "設定"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "何もしない"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "エラー (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "通過"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "ランダムな記事へ転送"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "URL へ転送"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "ソース URL"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "日付"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "転送ルールを追加"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "すべてのモジュール"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "転送ルールを表示"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "モジュール"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "転送ルール"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "名称"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "フィルター"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "訪問数をリセット"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "有効化"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "無効化"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "削除"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "編集"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "前回のアクセス"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "ヒット数"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "タイプ"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "編集済みの投稿"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
  msgstr "転送ルール"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "ユーザーエージェント"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL およびユーザーエージェント"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "ターゲット URL"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "URL のみ"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "正規表現"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "リファラー"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL およびリファラー"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "ログアウト中"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "ログイン中"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  msgstr "URL およびログイン状態"
locale/redirection-pt_BR.mo ADDED
Binary file
locale/redirection-pt_BR.po ADDED
@@ -0,0 +1,1302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Portuguese (Brazil)
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-04-27 15:07:38+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: pt_BR\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr "Pedido de formulário"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "Relativo /wp-json/"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr "Proxy sobre Admin AJAX"
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "Padrão /wp-json/"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr "Se nada funcionar, o redirecionamento pode ter dificuldade em se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr "Site e inicio do protocolo"
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr ""
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:273
47
+ msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:271
51
+ msgid "Accept Language"
52
+ msgstr "Aceitar Idioma"
53
+
54
+ #: redirection-strings.php:269
55
+ msgid "Header value"
56
+ msgstr "Valor cabeçalho"
57
+
58
+ #: redirection-strings.php:268
59
+ msgid "Header name"
60
+ msgstr "Nome cabeçalho"
61
+
62
+ #: redirection-strings.php:267
63
+ msgid "HTTP Header"
64
+ msgstr "Cabeçalho HTTP"
65
+
66
+ #: redirection-strings.php:266
67
+ msgid "WordPress filter name"
68
+ msgstr "Nome do filtro WordPress"
69
+
70
+ #: redirection-strings.php:265
71
+ msgid "Filter Name"
72
+ msgstr "Nome do filtro"
73
+
74
+ #: redirection-strings.php:263
75
+ msgid "Cookie value"
76
+ msgstr "Valor Cookie"
77
+
78
+ #: redirection-strings.php:262
79
+ msgid "Cookie name"
80
+ msgstr "Nome do cookie"
81
+
82
+ #: redirection-strings.php:261
83
+ msgid "Cookie"
84
+ msgstr "Cookie"
85
+
86
+ #: redirection-strings.php:231
87
+ msgid "Optional description"
88
+ msgstr "Descrição opcional"
89
+
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
+ msgid "Target URL when not matched"
92
+ msgstr "Destino da URL não corresponde"
93
+
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
+ msgid "Target URL when matched"
96
+ msgstr "Destino da URL é correspondente"
97
+
98
+ #: redirection-strings.php:66
99
+ msgid "clearing your cache."
100
+ msgstr "limpando seu cache."
101
+
102
+ #: redirection-strings.php:65
103
+ msgid "If you are using a caching system such as Cloudflare then please read this: "
104
+ msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
105
+
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
+ msgid "URL and HTTP header"
108
+ msgstr ""
109
+
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
+ msgid "URL and custom filter"
112
+ msgstr ""
113
+
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
+ msgid "URL and cookie"
116
+ msgstr ""
117
+
118
+ #: redirection-strings.php:326
119
+ msgid "404 deleted"
120
+ msgstr "404 excluído"
121
+
122
+ #: redirection-strings.php:172
123
+ msgid "Raw /index.php?rest_route=/"
124
+ msgstr "Raw /index.php?rest_route=/"
125
+
126
+ #: redirection-strings.php:197
127
+ msgid "REST API"
128
+ msgstr "API REST"
129
+
130
+ #: redirection-strings.php:198
131
+ msgid "How Redirection uses the REST API - don't change unless necessary"
132
+ msgstr "Como o Redirection usa a API REST - não mude a menos que seja necessário"
133
+
134
+ #: redirection-strings.php:9
135
+ msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
136
+ msgstr "WordPress retornou uma mensagem inesperada. Isso pode ser causado por sua API REST que não funciona, ou por outro plugin ou tema."
137
+
138
+ #: redirection-strings.php:12
139
+ msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
140
+ msgstr "Dê uma olhada no {{link}}plugin status{{/link}}. Pode ser capaz de identificar e \"corrigir a magia\" do problema."
141
+
142
+ #: redirection-strings.php:13
143
+ msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
144
+ msgstr ""
145
+
146
+ #: redirection-strings.php:14
147
+ msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
148
+ msgstr ""
149
+
150
+ #: redirection-strings.php:15
151
+ msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
152
+ msgstr ""
153
+
154
+ #: redirection-strings.php:16
155
+ msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
+ msgstr ""
157
+
158
+ #: redirection-strings.php:19
159
+ msgid "None of the suggestions helped"
160
+ msgstr ""
161
+
162
+ #: redirection-admin.php:414
163
+ msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
+ msgstr ""
165
+
166
+ #: redirection-admin.php:408
167
+ msgid "Unable to load Redirection ☹️"
168
+ msgstr "Não foi possível carregar Redirection ☹️"
169
+
170
+ #: models/fixer.php:96
171
+ msgid "WordPress REST API is working at %s"
172
+ msgstr "WordPress API REST está funcionando %s"
173
+
174
+ #: models/fixer.php:93
175
+ msgid "WordPress REST API"
176
+ msgstr "WordPress API REST"
177
+
178
+ #: models/fixer.php:85
179
+ msgid "REST API is not working so routes not checked"
180
+ msgstr ""
181
+
182
+ #: models/fixer.php:80
183
+ msgid "Redirection routes are working"
184
+ msgstr ""
185
+
186
+ #: models/fixer.php:74
187
+ msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
+ msgstr ""
189
+
190
+ #: models/fixer.php:66
191
+ msgid "Redirection routes"
192
+ msgstr ""
193
+
194
+ #: redirection-strings.php:8
195
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
196
+ msgstr ""
197
+
198
+ #. Author URI of the plugin/theme
199
+ msgid "https://johngodley.com"
200
+ msgstr "https://johngodley.com"
201
+
202
+ #: redirection-strings.php:311
203
+ msgid "Useragent Error"
204
+ msgstr ""
205
+
206
+ #: redirection-strings.php:313
207
+ msgid "Unknown Useragent"
208
+ msgstr ""
209
+
210
+ #: redirection-strings.php:314
211
+ msgid "Device"
212
+ msgstr ""
213
+
214
+ #: redirection-strings.php:315
215
+ msgid "Operating System"
216
+ msgstr "Sistema operacional"
217
+
218
+ #: redirection-strings.php:316
219
+ msgid "Browser"
220
+ msgstr ""
221
+
222
+ #: redirection-strings.php:317
223
+ msgid "Engine"
224
+ msgstr ""
225
+
226
+ #: redirection-strings.php:318
227
+ msgid "Useragent"
228
+ msgstr ""
229
+
230
+ #: redirection-strings.php:319
231
+ msgid "Agent"
232
+ msgstr ""
233
+
234
+ #: redirection-strings.php:168
235
+ msgid "No IP logging"
236
+ msgstr ""
237
+
238
+ #: redirection-strings.php:169
239
+ msgid "Full IP logging"
240
+ msgstr ""
241
+
242
+ #: redirection-strings.php:170
243
+ msgid "Anonymize IP (mask last part)"
244
+ msgstr ""
245
+
246
+ #: redirection-strings.php:180
247
+ msgid "Monitor changes to %(type)s"
248
+ msgstr ""
249
+
250
+ #: redirection-strings.php:186
251
+ msgid "IP Logging"
252
+ msgstr ""
253
+
254
+ #: redirection-strings.php:187
255
+ msgid "(select IP logging level)"
256
+ msgstr ""
257
+
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
+ msgid "Geo Info"
260
+ msgstr ""
261
+
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
+ msgid "Agent Info"
264
+ msgstr ""
265
+
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
+ msgid "Filter by IP"
268
+ msgstr ""
269
+
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
+ msgid "Referrer / User Agent"
272
+ msgstr ""
273
+
274
+ #: redirection-strings.php:25
275
+ msgid "Geo IP Error"
276
+ msgstr ""
277
+
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
+ msgid "Something went wrong obtaining this information"
280
+ msgstr ""
281
+
282
+ #: redirection-strings.php:28
283
+ msgid "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."
284
+ msgstr ""
285
+
286
+ #: redirection-strings.php:30
287
+ msgid "No details are known for this address."
288
+ msgstr ""
289
+
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
+ msgid "Geo IP"
293
+ msgstr ""
294
+
295
+ #: redirection-strings.php:32
296
+ msgid "City"
297
+ msgstr "Cidade"
298
+
299
+ #: redirection-strings.php:33
300
+ msgid "Area"
301
+ msgstr "Área"
302
+
303
+ #: redirection-strings.php:34
304
+ msgid "Timezone"
305
+ msgstr "Fuso horário"
306
+
307
+ #: redirection-strings.php:35
308
+ msgid "Geo Location"
309
+ msgstr ""
310
+
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
+ msgid "Powered by {{link}}redirect.li{{/link}}"
313
+ msgstr ""
314
+
315
+ #: redirection-settings.php:12
316
+ msgid "Trash"
317
+ msgstr "Lixeira"
318
+
319
+ #: redirection-admin.php:413
320
+ 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"
321
+ msgstr ""
322
+
323
+ #: redirection-admin.php:308
324
+ msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
+ msgstr ""
326
+
327
+ #. Plugin URI of the plugin/theme
328
+ msgid "https://redirection.me/"
329
+ msgstr "https://redirection.me/"
330
+
331
+ #: redirection-strings.php:282
332
+ 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."
333
+ msgstr ""
334
+
335
+ #: redirection-strings.php:283
336
+ msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
+ msgstr ""
338
+
339
+ #: redirection-strings.php:285
340
+ 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!"
341
+ msgstr ""
342
+
343
+ #: redirection-strings.php:163
344
+ msgid "Never cache"
345
+ msgstr ""
346
+
347
+ #: redirection-strings.php:164
348
+ msgid "An hour"
349
+ msgstr ""
350
+
351
+ #: redirection-strings.php:195
352
+ msgid "Redirect Cache"
353
+ msgstr ""
354
+
355
+ #: redirection-strings.php:196
356
+ msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
+ msgstr ""
358
+
359
+ #: redirection-strings.php:87
360
+ msgid "Are you sure you want to import from %s?"
361
+ msgstr ""
362
+
363
+ #: redirection-strings.php:88
364
+ msgid "Plugin Importers"
365
+ msgstr ""
366
+
367
+ #: redirection-strings.php:89
368
+ msgid "The following redirect plugins were detected on your site and can be imported from."
369
+ msgstr ""
370
+
371
+ #: redirection-strings.php:72
372
+ msgid "total = "
373
+ msgstr ""
374
+
375
+ #: redirection-strings.php:73
376
+ msgid "Import from %s"
377
+ msgstr ""
378
+
379
+ #: redirection-admin.php:370
380
+ msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
+ msgstr ""
382
+
383
+ #: redirection-admin.php:369
384
+ msgid "Redirection not installed properly"
385
+ msgstr ""
386
+
387
+ #: redirection-admin.php:351
388
+ msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
+ msgstr ""
390
+
391
+ #: models/importer.php:149
392
+ msgid "Default WordPress \"old slugs\""
393
+ msgstr ""
394
+
395
+ #: redirection-strings.php:179
396
+ msgid "Create associated redirect (added to end of URL)"
397
+ msgstr ""
398
+
399
+ #: redirection-admin.php:416
400
+ msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
+ msgstr ""
402
+
403
+ #: redirection-strings.php:292
404
+ 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."
405
+ msgstr "Se o botão mágico não funcionar, então você deve ler o erro e ver se você pode corrigi-lo manualmente, caso contrário siga a seção 'Precisa de ajuda' logo abaixo."
406
+
407
+ #: redirection-strings.php:293
408
+ msgid "⚡️ Magic fix ⚡️"
409
+ msgstr "⚡️ Correção mágica ⚡️"
410
+
411
+ #: redirection-strings.php:294
412
+ msgid "Plugin Status"
413
+ msgstr "Plugin Status"
414
+
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
+ msgid "Custom"
417
+ msgstr "Personalizado"
418
+
419
+ #: redirection-strings.php:257
420
+ msgid "Mobile"
421
+ msgstr "Móvel"
422
+
423
+ #: redirection-strings.php:258
424
+ msgid "Feed Readers"
425
+ msgstr ""
426
+
427
+ #: redirection-strings.php:259
428
+ msgid "Libraries"
429
+ msgstr ""
430
+
431
+ #: redirection-strings.php:176
432
+ msgid "URL Monitor Changes"
433
+ msgstr ""
434
+
435
+ #: redirection-strings.php:177
436
+ msgid "Save changes to this group"
437
+ msgstr ""
438
+
439
+ #: redirection-strings.php:178
440
+ msgid "For example \"/amp\""
441
+ msgstr ""
442
+
443
+ #: redirection-strings.php:188
444
+ msgid "URL Monitor"
445
+ msgstr ""
446
+
447
+ #: redirection-strings.php:129
448
+ msgid "Delete 404s"
449
+ msgstr "Excluir 404s"
450
+
451
+ #: redirection-strings.php:130
452
+ msgid "Delete all logs for this 404"
453
+ msgstr ""
454
+
455
+ #: redirection-strings.php:106
456
+ msgid "Delete all from IP %s"
457
+ msgstr ""
458
+
459
+ #: redirection-strings.php:107
460
+ msgid "Delete all matching \"%s\""
461
+ msgstr ""
462
+
463
+ #: redirection-strings.php:7
464
+ msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
+ msgstr ""
466
+
467
+ #: redirection-admin.php:411
468
+ msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
+ msgstr ""
470
+
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
+ msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
+ msgstr ""
474
+
475
+ #: redirection-admin.php:350
476
+ msgid "Unable to load Redirection"
477
+ msgstr ""
478
+
479
+ #: models/fixer.php:222
480
+ msgid "Unable to create group"
481
+ msgstr ""
482
+
483
+ #: models/fixer.php:214
484
+ msgid "Failed to fix database tables"
485
+ msgstr ""
486
+
487
+ #: models/fixer.php:37
488
+ msgid "Post monitor group is valid"
489
+ msgstr ""
490
+
491
+ #: models/fixer.php:37
492
+ msgid "Post monitor group is invalid"
493
+ msgstr ""
494
+
495
+ #: models/fixer.php:35
496
+ msgid "Post monitor group"
497
+ msgstr ""
498
+
499
+ #: models/fixer.php:31
500
+ msgid "All redirects have a valid group"
501
+ msgstr ""
502
+
503
+ #: models/fixer.php:31
504
+ msgid "Redirects with invalid groups detected"
505
+ msgstr ""
506
+
507
+ #: models/fixer.php:29
508
+ msgid "Valid redirect group"
509
+ msgstr ""
510
+
511
+ #: models/fixer.php:25
512
+ msgid "Valid groups detected"
513
+ msgstr ""
514
+
515
+ #: models/fixer.php:25
516
+ msgid "No valid groups, so you will not be able to create any redirects"
517
+ msgstr ""
518
+
519
+ #: models/fixer.php:23
520
+ msgid "Valid groups"
521
+ msgstr ""
522
+
523
+ #: models/fixer.php:21
524
+ msgid "Database tables"
525
+ msgstr ""
526
+
527
+ #: models/database.php:317
528
+ msgid "The following tables are missing:"
529
+ msgstr ""
530
+
531
+ #: models/database.php:317
532
+ msgid "All tables present"
533
+ msgstr ""
534
+
535
+ #: redirection-strings.php:63
536
+ msgid "Cached Redirection detected"
537
+ msgstr "Redirecionamento em cache detectado"
538
+
539
+ #: redirection-strings.php:64
540
+ msgid "Please clear your browser cache and reload this page."
541
+ msgstr "Limpe o cache do seu navegador e recarregue esta página."
542
+
543
+ #: redirection-strings.php:4
544
+ msgid "The data on this page has expired, please reload."
545
+ msgstr "Os dados nesta página expiraram, por favor recarregue."
546
+
547
+ #: redirection-strings.php:5
548
+ msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
549
+ msgstr "O WordPress não retornou uma resposta. Isso pode significar que um erro ocorreu ou que a requisição foi bloqueada. Confira o error_log de seu servidor."
550
+
551
+ #: redirection-strings.php:6
552
+ msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
+ msgstr "Seu servidor retornou um erro 403 Forbidden, que pode indicar que a requisição foi bloqueada. Você está usando um firewall ou um plugin de segurança?"
554
+
555
+ #: redirection-strings.php:24
556
+ msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
+ msgstr "Inclua esses detalhes em seu relatório {{strong}}além de descrever o que você estava fazendo{{/strong}}."
558
+
559
+ #: redirection-admin.php:415
560
+ msgid "If you think Redirection is at fault then create an issue."
561
+ msgstr "Se você acha que o erro é do Redirection, abra um chamado."
562
+
563
+ #: redirection-admin.php:409
564
+ msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
+ msgstr "Isso pode ser causado por outro plugin – olhe o console de erros do seu navegador para mais detalhes."
566
+
567
+ #: redirection-admin.php:401
568
+ msgid "Loading, please wait..."
569
+ msgstr "Carregando, aguarde..."
570
+
571
+ #: redirection-strings.php:92
572
+ 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)."
573
+ msgstr "{{strong}}Formato de arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} – e pode ser opcionalmente seguido de {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} – 0 para não, 1 para sim)."
574
+
575
+ #: redirection-strings.php:68
576
+ msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
+ msgstr "Redirection não está funcionando. Tente limpar o cache do seu navegador e recarregue esta página."
578
+
579
+ #: redirection-strings.php:70
580
+ msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
+ msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."
582
+
583
+ #: redirection-strings.php:20
584
+ 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."
585
+ 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."
586
+
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
+ msgid "Create Issue"
589
+ msgstr "Criar chamado"
590
+
591
+ #: redirection-strings.php:22
592
+ msgid "Email"
593
+ msgstr "E-mail"
594
+
595
+ #: redirection-strings.php:23
596
+ msgid "Important details"
597
+ msgstr "Detalhes importantes"
598
+
599
+ #: redirection-strings.php:281
600
+ msgid "Need help?"
601
+ msgstr "Precisa de ajuda?"
602
+
603
+ #: redirection-strings.php:284
604
+ msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
+ msgstr ""
606
+
607
+ #: redirection-strings.php:245
608
+ msgid "Pos"
609
+ msgstr "Pos"
610
+
611
+ #: redirection-strings.php:229
612
+ msgid "410 - Gone"
613
+ msgstr ""
614
+
615
+ #: redirection-strings.php:236
616
+ msgid "Position"
617
+ msgstr "Posição"
618
+
619
+ #: redirection-strings.php:192
620
+ 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"
621
+ msgstr ""
622
+
623
+ #: redirection-strings.php:193
624
+ msgid "Apache Module"
625
+ msgstr ""
626
+
627
+ #: redirection-strings.php:194
628
+ msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
+ msgstr ""
630
+
631
+ #: redirection-strings.php:74
632
+ msgid "Import to group"
633
+ msgstr ""
634
+
635
+ #: redirection-strings.php:75
636
+ msgid "Import a CSV, .htaccess, or JSON file."
637
+ msgstr ""
638
+
639
+ #: redirection-strings.php:76
640
+ msgid "Click 'Add File' or drag and drop here."
641
+ msgstr ""
642
+
643
+ #: redirection-strings.php:77
644
+ msgid "Add File"
645
+ msgstr "Adicionar arquivo"
646
+
647
+ #: redirection-strings.php:78
648
+ msgid "File selected"
649
+ msgstr ""
650
+
651
+ #: redirection-strings.php:81
652
+ msgid "Importing"
653
+ msgstr "Importando"
654
+
655
+ #: redirection-strings.php:82
656
+ msgid "Finished importing"
657
+ msgstr ""
658
+
659
+ #: redirection-strings.php:83
660
+ msgid "Total redirects imported:"
661
+ msgstr ""
662
+
663
+ #: redirection-strings.php:84
664
+ msgid "Double-check the file is the correct format!"
665
+ msgstr ""
666
+
667
+ #: redirection-strings.php:85
668
+ msgid "OK"
669
+ msgstr ""
670
+
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
+ msgid "Close"
673
+ msgstr "Fechar"
674
+
675
+ #: redirection-strings.php:91
676
+ msgid "All imports will be appended to the current database."
677
+ msgstr ""
678
+
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
+ msgid "Export"
681
+ msgstr "Exportar"
682
+
683
+ #: redirection-strings.php:94
684
+ msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
+ msgstr ""
686
+
687
+ #: redirection-strings.php:95
688
+ msgid "Everything"
689
+ msgstr "Tudo"
690
+
691
+ #: redirection-strings.php:96
692
+ msgid "WordPress redirects"
693
+ msgstr "Redirecionamentos WordPress"
694
+
695
+ #: redirection-strings.php:97
696
+ msgid "Apache redirects"
697
+ msgstr "Redirecionamentos Apache"
698
+
699
+ #: redirection-strings.php:98
700
+ msgid "Nginx redirects"
701
+ msgstr "Redirecionamentos Nginx"
702
+
703
+ #: redirection-strings.php:99
704
+ msgid "CSV"
705
+ msgstr "CSV"
706
+
707
+ #: redirection-strings.php:100
708
+ msgid "Apache .htaccess"
709
+ msgstr ""
710
+
711
+ #: redirection-strings.php:101
712
+ msgid "Nginx rewrite rules"
713
+ msgstr ""
714
+
715
+ #: redirection-strings.php:102
716
+ msgid "Redirection JSON"
717
+ msgstr ""
718
+
719
+ #: redirection-strings.php:103
720
+ msgid "View"
721
+ msgstr "Ver"
722
+
723
+ #: redirection-strings.php:105
724
+ msgid "Log files can be exported from the log pages."
725
+ msgstr ""
726
+
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
+ msgid "Import/Export"
729
+ msgstr "Importar/Exportar"
730
+
731
+ #: redirection-strings.php:59
732
+ msgid "Logs"
733
+ msgstr "Registros"
734
+
735
+ #: redirection-strings.php:60
736
+ msgid "404 errors"
737
+ msgstr ""
738
+
739
+ #: redirection-strings.php:71
740
+ msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
+ msgstr ""
742
+
743
+ #: redirection-strings.php:152
744
+ msgid "I'd like to support some more."
745
+ msgstr ""
746
+
747
+ #: redirection-strings.php:155
748
+ msgid "Support 💰"
749
+ msgstr ""
750
+
751
+ #: redirection-strings.php:322
752
+ msgid "Redirection saved"
753
+ msgstr ""
754
+
755
+ #: redirection-strings.php:323
756
+ msgid "Log deleted"
757
+ msgstr ""
758
+
759
+ #: redirection-strings.php:324
760
+ msgid "Settings saved"
761
+ msgstr ""
762
+
763
+ #: redirection-strings.php:325
764
+ msgid "Group saved"
765
+ msgstr ""
766
+
767
+ #: redirection-strings.php:321
768
+ msgid "Are you sure you want to delete this item?"
769
+ msgid_plural "Are you sure you want to delete these items?"
770
+ msgstr[0] ""
771
+ msgstr[1] ""
772
+
773
+ #: redirection-strings.php:280
774
+ msgid "pass"
775
+ msgstr ""
776
+
777
+ #: redirection-strings.php:252
778
+ msgid "All groups"
779
+ msgstr ""
780
+
781
+ #: redirection-strings.php:223
782
+ msgid "301 - Moved Permanently"
783
+ msgstr ""
784
+
785
+ #: redirection-strings.php:224
786
+ msgid "302 - Found"
787
+ msgstr ""
788
+
789
+ #: redirection-strings.php:225
790
+ msgid "307 - Temporary Redirect"
791
+ msgstr ""
792
+
793
+ #: redirection-strings.php:226
794
+ msgid "308 - Permanent Redirect"
795
+ msgstr ""
796
+
797
+ #: redirection-strings.php:227
798
+ msgid "401 - Unauthorized"
799
+ msgstr ""
800
+
801
+ #: redirection-strings.php:228
802
+ msgid "404 - Not Found"
803
+ msgstr ""
804
+
805
+ #: redirection-strings.php:230
806
+ msgid "Title"
807
+ msgstr "Título"
808
+
809
+ #: redirection-strings.php:233
810
+ msgid "When matched"
811
+ msgstr ""
812
+
813
+ #: redirection-strings.php:234
814
+ msgid "with HTTP code"
815
+ msgstr ""
816
+
817
+ #: redirection-strings.php:242
818
+ msgid "Show advanced options"
819
+ msgstr ""
820
+
821
+ #: redirection-strings.php:206
822
+ msgid "Matched Target"
823
+ msgstr ""
824
+
825
+ #: redirection-strings.php:208
826
+ msgid "Unmatched Target"
827
+ msgstr ""
828
+
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
+ msgid "Saving..."
831
+ msgstr "Salvando..."
832
+
833
+ #: redirection-strings.php:143
834
+ msgid "View notice"
835
+ msgstr ""
836
+
837
+ #: models/redirect.php:511
838
+ msgid "Invalid source URL"
839
+ msgstr ""
840
+
841
+ #: models/redirect.php:443
842
+ msgid "Invalid redirect action"
843
+ msgstr ""
844
+
845
+ #: models/redirect.php:437
846
+ msgid "Invalid redirect matcher"
847
+ msgstr ""
848
+
849
+ #: models/redirect.php:183
850
+ msgid "Unable to add new redirect"
851
+ msgstr ""
852
+
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
+ msgid "Something went wrong 🙁"
855
+ msgstr ""
856
+
857
+ #: redirection-strings.php:10
858
+ msgid "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!"
859
+ msgstr ""
860
+
861
+ #: redirection-admin.php:203
862
+ msgid "Log entries (%d max)"
863
+ msgstr ""
864
+
865
+ #: redirection-strings.php:309
866
+ msgid "Search by IP"
867
+ msgstr "Pesquisar por IP"
868
+
869
+ #: redirection-strings.php:304
870
+ msgid "Select bulk action"
871
+ msgstr "Selecione ação em massa"
872
+
873
+ #: redirection-strings.php:305
874
+ msgid "Bulk Actions"
875
+ msgstr "Ações em massa"
876
+
877
+ #: redirection-strings.php:306
878
+ msgid "Apply"
879
+ msgstr "Aplicar"
880
+
881
+ #: redirection-strings.php:297
882
+ msgid "First page"
883
+ msgstr "Primeira página"
884
+
885
+ #: redirection-strings.php:298
886
+ msgid "Prev page"
887
+ msgstr "Página anterior"
888
+
889
+ #: redirection-strings.php:299
890
+ msgid "Current Page"
891
+ msgstr "Página atual"
892
+
893
+ #: redirection-strings.php:300
894
+ msgid "of %(page)s"
895
+ msgstr "de %(página)s"
896
+
897
+ #: redirection-strings.php:301
898
+ msgid "Next page"
899
+ msgstr "Próxima página"
900
+
901
+ #: redirection-strings.php:302
902
+ msgid "Last page"
903
+ msgstr "Última página"
904
+
905
+ #: redirection-strings.php:303
906
+ msgid "%s item"
907
+ msgid_plural "%s items"
908
+ msgstr[0] "%s item"
909
+ msgstr[1] "%s items"
910
+
911
+ #: redirection-strings.php:296
912
+ msgid "Select All"
913
+ msgstr "Selecionar tudo"
914
+
915
+ #: redirection-strings.php:308
916
+ msgid "Sorry, something went wrong loading the data - please try again"
917
+ msgstr "Desculpe, mas algo deu errado ao carregar os dados - tente novamente"
918
+
919
+ #: redirection-strings.php:307
920
+ msgid "No results"
921
+ msgstr "Sem resultados"
922
+
923
+ #: redirection-strings.php:109
924
+ msgid "Delete the logs - are you sure?"
925
+ msgstr "Excluir os logs - você tem certeza?"
926
+
927
+ #: redirection-strings.php:110
928
+ 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."
929
+ msgstr "Uma vez excluídos, seus registros atuais não estará mais disponíveis. Você pode pré-programar exclusão automática na opções do plugin Redirecionamento. Se desejar fazer isso automaticamente."
930
+
931
+ #: redirection-strings.php:111
932
+ msgid "Yes! Delete the logs"
933
+ msgstr "Sim! Exclua os logs"
934
+
935
+ #: redirection-strings.php:112
936
+ msgid "No! Don't delete the logs"
937
+ msgstr "Não! Não exclua os registros"
938
+
939
+ #: redirection-strings.php:287
940
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
+ msgstr "Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."
942
+
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
+ msgid "Newsletter"
945
+ msgstr "Newsletter"
946
+
947
+ #: redirection-strings.php:289
948
+ msgid "Want to keep up to date with changes to Redirection?"
949
+ msgstr "Deseja manter-se atualizado com mudanças no Redirection?"
950
+
951
+ #: redirection-strings.php:290
952
+ 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."
953
+ msgstr "Inscreva-se para o pequeno boletim de informações sobre Redirection - um boletim informativo de baixo volume sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."
954
+
955
+ #: redirection-strings.php:291
956
+ msgid "Your email address:"
957
+ msgstr "Seu endereço de email:"
958
+
959
+ #: redirection-strings.php:151
960
+ msgid "You've supported this plugin - thank you!"
961
+ msgstr "Você apoiou este plugin - Obrigado!"
962
+
963
+ #: redirection-strings.php:154
964
+ msgid "You get useful software and I get to carry on making it better."
965
+ msgstr "Você adquire um software útil e eu tenho que me encarregar em torná-lo melhor."
966
+
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
+ msgid "Forever"
969
+ msgstr "Para sempre"
970
+
971
+ #: redirection-strings.php:144
972
+ msgid "Delete the plugin - are you sure?"
973
+ msgstr "Excluir o plugin - você tem certeza?"
974
+
975
+ #: redirection-strings.php:145
976
+ 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."
977
+ msgstr "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."
978
+
979
+ #: redirection-strings.php:146
980
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
981
+ msgstr "Uma vez excluídos, os redirecionamentos deixarão de funcionar. Se eles ainda continuam funcionando, limpe o cache do seu navegador."
982
+
983
+ #: redirection-strings.php:147
984
+ msgid "Yes! Delete the plugin"
985
+ msgstr "Sim! Exclua o plugin"
986
+
987
+ #: redirection-strings.php:148
988
+ msgid "No! Don't delete the plugin"
989
+ msgstr "Não! Não exclua o plugin"
990
+
991
+ #. Author of the plugin/theme
992
+ msgid "John Godley"
993
+ msgstr "John Godley"
994
+
995
+ #. Description of the plugin/theme
996
+ msgid "Manage all your 301 redirects and monitor 404 errors"
997
+ msgstr "Gerencie todos os seus redirecionamentos 301 e monitore erros 404"
998
+
999
+ #: redirection-strings.php:153
1000
+ 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}}."
1001
+ msgstr "Redirection é gratuito para uso - ah como a vida é bela! Entretanto, seu desenvolvimento requer tempo e esforço e, se ele lhe foi útil, você pode nos ajudar a manter o desenvolvimento através de uma {{strong}}pequena doação{{/strong}}."
1002
+
1003
+ #: redirection-admin.php:307
1004
+ msgid "Redirection Support"
1005
+ msgstr "Ajuda do Redirection"
1006
+
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
+ msgid "Support"
1009
+ msgstr "Ajuda"
1010
+
1011
+ #: redirection-strings.php:139
1012
+ msgid "404s"
1013
+ msgstr "404s"
1014
+
1015
+ #: redirection-strings.php:138
1016
+ msgid "Log"
1017
+ msgstr "Log"
1018
+
1019
+ #: redirection-strings.php:149
1020
+ msgid "Delete Redirection"
1021
+ msgstr "Remover Plugin Redirection"
1022
+
1023
+ #: redirection-strings.php:79
1024
+ msgid "Upload"
1025
+ msgstr "Upload"
1026
+
1027
+ #: redirection-strings.php:90
1028
+ msgid "Import"
1029
+ msgstr "Importar"
1030
+
1031
+ #: redirection-strings.php:199
1032
+ msgid "Update"
1033
+ msgstr "Atualizar"
1034
+
1035
+ #: redirection-strings.php:191
1036
+ msgid "Auto-generate URL"
1037
+ msgstr "Gerar URL automaticamente"
1038
+
1039
+ #: redirection-strings.php:190
1040
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
+ msgstr "Um token exclusivo permitindo que leitores de feeds acessem aos registros de redirecionamento em RSS (deixe em branco para auto-criação)"
1042
+
1043
+ #: redirection-strings.php:189
1044
+ msgid "RSS Token"
1045
+ msgstr "Token RSS"
1046
+
1047
+ #: redirection-strings.php:184
1048
+ msgid "404 Logs"
1049
+ msgstr "Registros 404"
1050
+
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
+ msgid "(time to keep logs for)"
1053
+ msgstr "(tempo para manter os registros)"
1054
+
1055
+ #: redirection-strings.php:182
1056
+ msgid "Redirect Logs"
1057
+ msgstr "Registros do Redirect"
1058
+
1059
+ #: redirection-strings.php:181
1060
+ msgid "I'm a nice person and I have helped support the author of this plugin"
1061
+ msgstr "Sou uma pessoa legal e já ajudei o autor deste plugin"
1062
+
1063
+ #: redirection-strings.php:156
1064
+ msgid "Plugin Support"
1065
+ msgstr "Suporte do plugin"
1066
+
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
+ msgid "Options"
1069
+ msgstr "Opções"
1070
+
1071
+ #: redirection-strings.php:161
1072
+ msgid "Two months"
1073
+ msgstr "Dois meses"
1074
+
1075
+ #: redirection-strings.php:160
1076
+ msgid "A month"
1077
+ msgstr "Um mês"
1078
+
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
+ msgid "A week"
1081
+ msgstr "Uma semana"
1082
+
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
+ msgid "A day"
1085
+ msgstr "Um dia"
1086
+
1087
+ #: redirection-strings.php:157
1088
+ msgid "No logs"
1089
+ msgstr "Nenhum registro"
1090
+
1091
+ #: redirection-strings.php:108
1092
+ msgid "Delete All"
1093
+ msgstr "Apagar Tudo"
1094
+
1095
+ #: redirection-strings.php:45
1096
+ msgid "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."
1097
+ msgstr "Use grupos para organizar seus redirecionamentos. Grupos são associados a um módulo, que afeta como os redirecionamentos daquele grupo trabalham. Se você está em dúvida, use o módulo WordPress."
1098
+
1099
+ #: redirection-strings.php:44
1100
+ msgid "Add Group"
1101
+ msgstr "Adicionar Grupo"
1102
+
1103
+ #: redirection-strings.php:310
1104
+ msgid "Search"
1105
+ msgstr "Buscar"
1106
+
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
+ msgid "Groups"
1109
+ msgstr "Grupos"
1110
+
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
+ msgid "Save"
1114
+ msgstr "Salvar"
1115
+
1116
+ #: redirection-strings.php:235
1117
+ msgid "Group"
1118
+ msgstr "Grupo"
1119
+
1120
+ #: redirection-strings.php:232
1121
+ msgid "Match"
1122
+ msgstr "Correspondente à"
1123
+
1124
+ #: redirection-strings.php:253
1125
+ msgid "Add new redirection"
1126
+ msgstr "Adicionar novo redirecionamento"
1127
+
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
+ msgid "Cancel"
1131
+ msgstr "Cancelar"
1132
+
1133
+ #: redirection-strings.php:104
1134
+ msgid "Download"
1135
+ msgstr "Baixar"
1136
+
1137
+ #. Plugin Name of the plugin/theme
1138
+ msgid "Redirection"
1139
+ msgstr "Redirection"
1140
+
1141
+ #: redirection-admin.php:159
1142
+ msgid "Settings"
1143
+ msgstr "Configurações"
1144
+
1145
+ #: redirection-strings.php:222
1146
+ msgid "Do nothing"
1147
+ msgstr "Não fazer nada"
1148
+
1149
+ #: redirection-strings.php:221
1150
+ msgid "Error (404)"
1151
+ msgstr "Página inexistente (Erro 404)"
1152
+
1153
+ #: redirection-strings.php:220
1154
+ msgid "Pass-through"
1155
+ msgstr "Pass-through"
1156
+
1157
+ #: redirection-strings.php:219
1158
+ msgid "Redirect to random post"
1159
+ msgstr "Redirecionar para um post aleatório"
1160
+
1161
+ #: redirection-strings.php:218
1162
+ msgid "Redirect to URL"
1163
+ msgstr "Redirecionar para URL"
1164
+
1165
+ #: models/redirect.php:501
1166
+ msgid "Invalid group when creating redirect"
1167
+ msgstr "Grupo inválido ao criar redirecionamento"
1168
+
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
+ msgid "IP"
1171
+ msgstr "IP"
1172
+
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
+ msgid "Source URL"
1176
+ msgstr "URL de origem"
1177
+
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
+ msgid "Date"
1180
+ msgstr "Data"
1181
+
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
+ msgid "Add Redirect"
1185
+ msgstr "Adicionar redirecionamento"
1186
+
1187
+ #: redirection-strings.php:43
1188
+ msgid "All modules"
1189
+ msgstr "Todos módulos"
1190
+
1191
+ #: redirection-strings.php:49
1192
+ msgid "View Redirects"
1193
+ msgstr "Ver redirecionamentos"
1194
+
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
+ msgid "Module"
1197
+ msgstr "Módulo"
1198
+
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
+ msgid "Redirects"
1201
+ msgstr "Redirecionamentos"
1202
+
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
+ msgid "Name"
1206
+ msgstr "Nome"
1207
+
1208
+ #: redirection-strings.php:295
1209
+ msgid "Filter"
1210
+ msgstr "Filtro"
1211
+
1212
+ #: redirection-strings.php:251
1213
+ msgid "Reset hits"
1214
+ msgstr "Reinicializar acessos"
1215
+
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
+ msgid "Enable"
1219
+ msgstr "Habilitar"
1220
+
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
+ msgid "Disable"
1224
+ msgstr "Desabilitar"
1225
+
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
+ msgid "Delete"
1232
+ msgstr "Remover"
1233
+
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
+ msgid "Edit"
1236
+ msgstr "Editar"
1237
+
1238
+ #: redirection-strings.php:247
1239
+ msgid "Last Access"
1240
+ msgstr "Último Acesso"
1241
+
1242
+ #: redirection-strings.php:246
1243
+ msgid "Hits"
1244
+ msgstr "Acessos"
1245
+
1246
+ #: redirection-strings.php:244
1247
+ msgid "URL"
1248
+ msgstr "URL"
1249
+
1250
+ #: redirection-strings.php:243
1251
+ msgid "Type"
1252
+ msgstr "Tipo"
1253
+
1254
+ #: models/database.php:139
1255
+ msgid "Modified Posts"
1256
+ msgstr "Posts modificados"
1257
+
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
+ msgid "Redirections"
1260
+ msgstr "Redirecionamentos"
1261
+
1262
+ #: redirection-strings.php:255
1263
+ msgid "User Agent"
1264
+ msgstr "User-Agent"
1265
+
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
+ msgid "URL and user agent"
1268
+ msgstr "URL e User-Agent"
1269
+
1270
+ #: redirection-strings.php:210
1271
+ msgid "Target URL"
1272
+ msgstr "URL de destino"
1273
+
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
+ msgid "URL only"
1276
+ msgstr "URL"
1277
+
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
+ msgid "Regex"
1282
+ msgstr "Expressão Regular"
1283
+
1284
+ #: redirection-strings.php:274
1285
+ msgid "Referrer"
1286
+ msgstr "Referrer"
1287
+
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
+ msgid "URL and referrer"
1290
+ msgstr "URL e referrer"
1291
+
1292
+ #: redirection-strings.php:204
1293
+ msgid "Logged Out"
1294
+ msgstr "Usuário fez logout"
1295
+
1296
+ #: redirection-strings.php:202
1297
+ msgid "Logged In"
1298
+ msgstr "Usuário fez login"
1299
+
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
+ msgid "URL and login status"
1302
+ msgstr "URL e status de login"
locale/redirection-sv_SE.mo CHANGED
Binary file
locale/redirection-sv_SE.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-02-03 20:22:36+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,101 +11,125 @@ msgstr ""
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
- msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
- msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
- msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
- msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
- msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
- msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
- msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
- msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
- msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
- msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
- msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
- msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
- msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
- msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
- msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
- msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
- msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
- msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr "404 borttagen"
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
- msgstr ""
97
-
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
 
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr "REST API"
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
- msgstr ""
109
 
110
  #: redirection-strings.php:9
111
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
@@ -113,59 +137,59 @@ msgstr "WordPress returnerade ett oväntat meddelande. Det här kan orsakas av a
113
 
114
  #: redirection-strings.php:12
115
  msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
116
- msgstr ""
117
 
118
  #: redirection-strings.php:13
119
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
120
- msgstr ""
121
 
122
  #: redirection-strings.php:14
123
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
124
- msgstr ""
125
 
126
  #: redirection-strings.php:15
127
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
128
- msgstr ""
129
 
130
  #: redirection-strings.php:16
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr "{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr "Inget av förslagen hjälpte"
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr "Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr "Kunde inte ladda Redirection ☹️"
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
- msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr "WordPress REST API"
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
- msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
- msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
- msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
- msgstr ""
169
 
170
  #: redirection-strings.php:8
171
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
@@ -175,116 +199,116 @@ msgstr "Ditt WordPress REST API har inaktiverats. Du måste aktivera det för at
175
  msgid "https://johngodley.com"
176
  msgstr "https://johngodley.com"
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr "Användaragentfel"
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr "Okänd användaragent"
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr "Enhet"
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr "Operativsystem"
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr "Webbläsare"
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr "Sökmotor"
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr "Useragent"
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr "Agent"
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr "Ingen loggning av IP-nummer"
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr "Fullständig loggning av IP-nummer"
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr "Anonymisera IP-nummer (maska sista delen)"
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr "Övervaka ändringar till %(type)s"
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr "Läggning av IP-nummer"
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr "(välj loggningsnivå för IP)"
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr "Geo-info"
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr "Agentinfo"
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr "Filtrera på IP-nummer"
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr "Hänvisare/Användaragent"
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr "Geo-IP-fel"
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr "Något gick fel när denna information skulle hämtas"
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr "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."
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr "Det finns inga kända detaljer för denna adress."
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr "Geo IP"
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr "Stad"
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr "Region"
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr "Tidszon"
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr "Geo-plats"
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr "Drivs av {{link}}redirect.li{{/link}}"
290
 
@@ -292,11 +316,11 @@ msgstr "Drivs av {{link}}redirect.li{{/link}}"
292
  msgid "Trash"
293
  msgstr "Släng"
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  msgstr "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"
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr "Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."
302
 
@@ -304,63 +328,63 @@ msgstr "Fullständig dokumentation för Redirection finns på support-sidan <a h
304
  msgid "https://redirection.me/"
305
  msgstr "https://redirection.me/"
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  msgstr "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."
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr "Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  msgstr "Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} &mdash; inkludera så mycket information som du kan!"
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr "Använd aldrig cache"
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr "En timma"
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr "Omdirigera cache"
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr "Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr "Är du säker på att du vill importera från %s?"
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr "Tilläggsimporterare"
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr "Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr "totalt ="
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr "Importera från %s"
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr "Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr "Redirection har inte installerats ordentligt"
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr "Redirection kräver WordPress version %1s, du använder version %2s &mdash; vänligen uppdatera WordPress"
366
 
@@ -368,71 +392,71 @@ msgstr "Redirection kräver WordPress version %1s, du använder version %2s &mda
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr "WordPress standard ”gamla permalänkar”"
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr "<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."
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  msgstr "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."
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr "⚡️ Magisk fix ⚡️"
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr "Tilläggsstatus"
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr "Anpassad"
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr "Mobil"
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr "Feedläsare"
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr "Bibliotek"
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr "Övervaka URL-ändringar"
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr "Spara ändringar till den här gruppen"
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr "Till exempel ”/amp”"
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr "URL-övervakning"
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr "Radera 404:or"
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr "Radera alla loggar för denna 404"
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr "Ta bort allt från IP-numret %s"
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr "Ta bort allt som matchar \"%s\""
438
 
@@ -440,23 +464,23 @@ msgstr "Ta bort allt som matchar \"%s\""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr "Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr "Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr "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."
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr "Det gick inte att ladda Redirection"
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr "Det gick inte att skapa grupp"
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr "Det gick inte att korrigera databastabellerna"
462
 
@@ -508,11 +532,11 @@ msgstr "Följande tabeller saknas:"
508
  msgid "All tables present"
509
  msgstr "Alla tabeller närvarande"
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr "En cachad version av Redirection upptäcktes"
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr "Vänligen rensa din webbläsares cache och ladda om denna sida."
518
 
@@ -528,285 +552,285 @@ msgstr "WordPress returnerade inte ett svar. Det kan innebära att ett fel intr
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr "Din server svarade med ett '403 Förbjudet'-fel som kan indikera att begäran blockerades. Använder du en brandvägg eller ett säkerhetsprogram?"
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr "Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr "Om du tror att Redirection orsakar felet, skapa en felrapport."
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr "Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr "Laddar, vänligen vänta..."
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  msgstr "{{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)."
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr "Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr "Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  msgstr "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. "
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr "Skapa felrapport"
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr "E-post"
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "Viktiga detaljer"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr "Behöver du hjälp?"
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  msgstr "Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr "Pos"
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 - Borttagen"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "Position"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
  msgstr "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"
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Apache-modul"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr "Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "Importera till grupp"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
  msgstr "Importera en CSV-fil, .htaccess-fil eller JSON-fil."
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr "Klicka på 'Lägg till fil' eller dra och släpp en fil här."
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "Lägg till fil"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "Fil vald"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "Importerar"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "Importering klar"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "Antal omdirigeringar importerade:"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr "Dubbelkolla att filen är i rätt format!"
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "OK"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "Stäng"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "All importerade omdirigeringar kommer infogas till den aktuella databasen."
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "Exportera"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr "Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "Allt"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "WordPress omdirigeringar"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Apache omdirigeringar"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Nginx omdirigeringar"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr "Apache .htaccess"
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr "Nginx omskrivningsregler"
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr "JSON omdirigeringar"
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "Visa"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr "Loggfiler kan exporteras från loggsidorna."
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "Importera/Exportera"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "Loggar"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "404-fel"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr "Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr "Jag skulle vilja stödja lite till."
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "Support 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "Omdirigering sparad"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr "Logginlägg raderades"
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "Inställning sparad"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "Grupp sparad"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] "Är du säker på att du vill radera detta objekt?"
747
  msgstr[1] "Är du säker på att du vill radera dessa objekt?"
748
 
749
- #: redirection-strings.php:276
750
  msgid "pass"
751
  msgstr "lösen"
752
 
753
- #: redirection-strings.php:248
754
  msgid "All groups"
755
  msgstr "Alla grupper"
756
 
757
- #: redirection-strings.php:219
758
  msgid "301 - Moved Permanently"
759
  msgstr "301 - Flyttad permanent"
760
 
761
- #: redirection-strings.php:220
762
  msgid "302 - Found"
763
  msgstr "302 - Hittad"
764
 
765
- #: redirection-strings.php:221
766
  msgid "307 - Temporary Redirect"
767
  msgstr "307 - Tillfällig omdirigering"
768
 
769
- #: redirection-strings.php:222
770
  msgid "308 - Permanent Redirect"
771
  msgstr "308 - Permanent omdirigering"
772
 
773
- #: redirection-strings.php:223
774
  msgid "401 - Unauthorized"
775
  msgstr "401 - Obehörig"
776
 
777
- #: redirection-strings.php:224
778
  msgid "404 - Not Found"
779
  msgstr "404 - Hittades inte"
780
 
781
- #: redirection-strings.php:226
782
  msgid "Title"
783
  msgstr "Titel"
784
 
785
- #: redirection-strings.php:229
786
  msgid "When matched"
787
  msgstr "När matchning sker"
788
 
789
- #: redirection-strings.php:230
790
  msgid "with HTTP code"
791
  msgstr "med HTTP-kod"
792
 
793
- #: redirection-strings.php:238
794
  msgid "Show advanced options"
795
  msgstr "Visa avancerande alternativ"
796
 
797
- #: redirection-strings.php:202
798
  msgid "Matched Target"
799
  msgstr "Matchande mål"
800
 
801
- #: redirection-strings.php:204
802
  msgid "Unmatched Target"
803
  msgstr "Ej matchande mål"
804
 
805
- #: redirection-strings.php:196 redirection-strings.php:197
806
  msgid "Saving..."
807
  msgstr "Sparar..."
808
 
809
- #: redirection-strings.php:141
810
  msgid "View notice"
811
  msgstr "Visa meddelande"
812
 
@@ -826,7 +850,7 @@ msgstr "Ogiltig omdirigeringsmatchning"
826
  msgid "Unable to add new redirect"
827
  msgstr "Det går inte att lägga till en ny omdirigering"
828
 
829
- #: redirection-strings.php:11 redirection-strings.php:65
830
  msgid "Something went wrong 🙁"
831
  msgstr "Något gick fel 🙁"
832
 
@@ -834,113 +858,113 @@ msgstr "Något gick fel 🙁"
834
  msgid "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!"
835
  msgstr "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."
836
 
837
- #: redirection-admin.php:198
838
  msgid "Log entries (%d max)"
839
  msgstr "Antal logginlägg per sida (max %d)"
840
 
841
- #: redirection-strings.php:305
842
  msgid "Search by IP"
843
  msgstr "Sök via IP"
844
 
845
- #: redirection-strings.php:300
846
  msgid "Select bulk action"
847
  msgstr "Välj massåtgärd"
848
 
849
- #: redirection-strings.php:301
850
  msgid "Bulk Actions"
851
  msgstr "Massåtgärd"
852
 
853
- #: redirection-strings.php:302
854
  msgid "Apply"
855
  msgstr "Tillämpa"
856
 
857
- #: redirection-strings.php:293
858
  msgid "First page"
859
  msgstr "Första sidan"
860
 
861
- #: redirection-strings.php:294
862
  msgid "Prev page"
863
  msgstr "Föregående sida"
864
 
865
- #: redirection-strings.php:295
866
  msgid "Current Page"
867
  msgstr "Aktuell sida"
868
 
869
- #: redirection-strings.php:296
870
  msgid "of %(page)s"
871
  msgstr "av %(sidor)"
872
 
873
- #: redirection-strings.php:297
874
  msgid "Next page"
875
  msgstr "Nästa sida"
876
 
877
- #: redirection-strings.php:298
878
  msgid "Last page"
879
  msgstr "Sista sidan"
880
 
881
- #: redirection-strings.php:299
882
  msgid "%s item"
883
  msgid_plural "%s items"
884
  msgstr[0] "%s objekt"
885
  msgstr[1] "%s objekt"
886
 
887
- #: redirection-strings.php:292
888
  msgid "Select All"
889
  msgstr "Välj allt"
890
 
891
- #: redirection-strings.php:304
892
  msgid "Sorry, something went wrong loading the data - please try again"
893
  msgstr "Något gick fel när data laddades - Vänligen försök igen"
894
 
895
- #: redirection-strings.php:303
896
  msgid "No results"
897
  msgstr "Inga resultat"
898
 
899
- #: redirection-strings.php:107
900
  msgid "Delete the logs - are you sure?"
901
  msgstr "Är du säker på att du vill radera loggarna?"
902
 
903
- #: redirection-strings.php:108
904
  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."
905
  msgstr "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."
906
 
907
- #: redirection-strings.php:109
908
  msgid "Yes! Delete the logs"
909
  msgstr "Ja! Radera loggarna"
910
 
911
- #: redirection-strings.php:110
912
  msgid "No! Don't delete the logs"
913
  msgstr "Nej! Radera inte loggarna"
914
 
915
- #: redirection-strings.php:283
916
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
917
  msgstr "Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."
918
 
919
- #: redirection-strings.php:282 redirection-strings.php:284
920
  msgid "Newsletter"
921
  msgstr "Nyhetsbrev"
922
 
923
- #: redirection-strings.php:285
924
  msgid "Want to keep up to date with changes to Redirection?"
925
  msgstr "Vill du bli uppdaterad om ändringar i Redirection?"
926
 
927
- #: redirection-strings.php:286
928
  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."
929
  msgstr "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."
930
 
931
- #: redirection-strings.php:287
932
  msgid "Your email address:"
933
  msgstr "Din e-postadress:"
934
 
935
- #: redirection-strings.php:149
936
  msgid "You've supported this plugin - thank you!"
937
  msgstr "Du har stöttat detta tillägg - tack!"
938
 
939
- #: redirection-strings.php:152
940
  msgid "You get useful software and I get to carry on making it better."
941
  msgstr "Du får en användbar mjukvara och jag kan fortsätta göra den bättre."
942
 
943
- #: redirection-strings.php:160 redirection-strings.php:165
944
  msgid "Forever"
945
  msgstr "För evigt"
946
 
@@ -972,140 +996,141 @@ msgstr "John Godley"
972
  msgid "Manage all your 301 redirects and monitor 404 errors"
973
  msgstr "Hantera alla dina 301-omdirigeringar och övervaka 404-fel"
974
 
975
- #: redirection-strings.php:151
976
  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}}."
977
  msgstr "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}}."
978
 
979
- #: redirection-admin.php:278
980
  msgid "Redirection Support"
981
  msgstr "Support för Redirection"
982
 
983
- #: redirection-strings.php:60 redirection-strings.php:140
984
  msgid "Support"
985
  msgstr "Support"
986
 
987
- #: redirection-strings.php:137
988
  msgid "404s"
989
  msgstr "404:or"
990
 
991
- #: redirection-strings.php:136
992
  msgid "Log"
993
  msgstr "Logg"
994
 
995
- #: redirection-strings.php:142
996
  msgid "Delete Redirection"
997
  msgstr "Ta bort Redirection"
998
 
999
- #: redirection-strings.php:77
1000
  msgid "Upload"
1001
  msgstr "Ladda upp"
1002
 
1003
- #: redirection-strings.php:88
1004
  msgid "Import"
1005
  msgstr "Importera"
1006
 
1007
- #: redirection-strings.php:195
1008
  msgid "Update"
1009
  msgstr "Uppdatera"
1010
 
1011
- #: redirection-strings.php:187
1012
  msgid "Auto-generate URL"
1013
  msgstr "Autogenerera URL"
1014
 
1015
- #: redirection-strings.php:186
1016
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1017
  msgstr "En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"
1018
 
1019
- #: redirection-strings.php:185
1020
  msgid "RSS Token"
1021
  msgstr "RSS-nyckel"
1022
 
1023
- #: redirection-strings.php:180
1024
  msgid "404 Logs"
1025
  msgstr "404-loggar"
1026
 
1027
- #: redirection-strings.php:179 redirection-strings.php:181
1028
  msgid "(time to keep logs for)"
1029
  msgstr "(hur länge loggar ska sparas)"
1030
 
1031
- #: redirection-strings.php:178
1032
  msgid "Redirect Logs"
1033
  msgstr "Redirection-loggar"
1034
 
1035
- #: redirection-strings.php:177
1036
  msgid "I'm a nice person and I have helped support the author of this plugin"
1037
  msgstr "Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"
1038
 
1039
- #: redirection-strings.php:154
1040
  msgid "Plugin Support"
1041
  msgstr "Support för tillägg"
1042
 
1043
- #: redirection-strings.php:59 redirection-strings.php:139
1044
  msgid "Options"
1045
  msgstr "Alternativ"
1046
 
1047
- #: redirection-strings.php:159
1048
  msgid "Two months"
1049
  msgstr "Två månader"
1050
 
1051
- #: redirection-strings.php:158
1052
  msgid "A month"
1053
  msgstr "En månad"
1054
 
1055
- #: redirection-strings.php:157 redirection-strings.php:164
1056
  msgid "A week"
1057
  msgstr "En vecka"
1058
 
1059
- #: redirection-strings.php:156 redirection-strings.php:163
1060
  msgid "A day"
1061
  msgstr "En dag"
1062
 
1063
- #: redirection-strings.php:155
1064
  msgid "No logs"
1065
  msgstr "Inga loggar"
1066
 
1067
- #: redirection-strings.php:106
1068
  msgid "Delete All"
1069
  msgstr "Radera alla"
1070
 
1071
- #: redirection-strings.php:43
1072
  msgid "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."
1073
  msgstr "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."
1074
 
1075
- #: redirection-strings.php:42
1076
  msgid "Add Group"
1077
  msgstr "Lägg till grupp"
1078
 
1079
- #: redirection-strings.php:306
1080
  msgid "Search"
1081
  msgstr "Sök"
1082
 
1083
- #: redirection-strings.php:55 redirection-strings.php:135
1084
  msgid "Groups"
1085
  msgstr "Grupper"
1086
 
1087
- #: redirection-strings.php:52 redirection-strings.php:233
 
1088
  msgid "Save"
1089
  msgstr "Spara"
1090
 
1091
- #: redirection-strings.php:231
1092
  msgid "Group"
1093
  msgstr "Grupp"
1094
 
1095
- #: redirection-strings.php:228
1096
  msgid "Match"
1097
  msgstr "Matcha"
1098
 
1099
- #: redirection-strings.php:249
1100
  msgid "Add new redirection"
1101
  msgstr "Lägg till ny omdirigering"
1102
 
1103
- #: redirection-strings.php:53 redirection-strings.php:78
1104
- #: redirection-strings.php:236
1105
  msgid "Cancel"
1106
  msgstr "Avbryt"
1107
 
1108
- #: redirection-strings.php:102
1109
  msgid "Download"
1110
  msgstr "Hämta"
1111
 
@@ -1113,27 +1138,27 @@ msgstr "Hämta"
1113
  msgid "Redirection"
1114
  msgstr "Redirection"
1115
 
1116
- #: redirection-admin.php:154
1117
  msgid "Settings"
1118
  msgstr "Inställningar"
1119
 
1120
- #: redirection-strings.php:218
1121
  msgid "Do nothing"
1122
  msgstr "Gör ingenting"
1123
 
1124
- #: redirection-strings.php:217
1125
  msgid "Error (404)"
1126
  msgstr "Fel (404)"
1127
 
1128
- #: redirection-strings.php:216
1129
  msgid "Pass-through"
1130
  msgstr "Passera"
1131
 
1132
- #: redirection-strings.php:215
1133
  msgid "Redirect to random post"
1134
  msgstr "Omdirigering till slumpmässigt inlägg"
1135
 
1136
- #: redirection-strings.php:214
1137
  msgid "Redirect to URL"
1138
  msgstr "Omdirigera till URL"
1139
 
@@ -1141,88 +1166,88 @@ msgstr "Omdirigera till URL"
1141
  msgid "Invalid group when creating redirect"
1142
  msgstr "Gruppen är ogiltig när omdirigering skapas"
1143
 
1144
- #: redirection-strings.php:115 redirection-strings.php:124
1145
  msgid "IP"
1146
  msgstr "IP"
1147
 
1148
- #: redirection-strings.php:113 redirection-strings.php:122
1149
- #: redirection-strings.php:234
1150
  msgid "Source URL"
1151
  msgstr "URL-källa"
1152
 
1153
- #: redirection-strings.php:112 redirection-strings.php:121
1154
  msgid "Date"
1155
  msgstr "Datum"
1156
 
1157
- #: redirection-strings.php:126 redirection-strings.php:130
1158
- #: redirection-strings.php:250
1159
  msgid "Add Redirect"
1160
  msgstr "Lägg till omdirigering"
1161
 
1162
- #: redirection-strings.php:41
1163
  msgid "All modules"
1164
  msgstr "Alla moduler"
1165
 
1166
- #: redirection-strings.php:47
1167
  msgid "View Redirects"
1168
  msgstr "Visa omdirigeringar"
1169
 
1170
- #: redirection-strings.php:37 redirection-strings.php:51
1171
  msgid "Module"
1172
  msgstr "Modul"
1173
 
1174
- #: redirection-strings.php:36 redirection-strings.php:134
1175
  msgid "Redirects"
1176
  msgstr "Omdirigering"
1177
 
1178
- #: redirection-strings.php:35 redirection-strings.php:44
1179
- #: redirection-strings.php:50
1180
  msgid "Name"
1181
  msgstr "Namn"
1182
 
1183
- #: redirection-strings.php:291
1184
  msgid "Filter"
1185
  msgstr "Filtrera"
1186
 
1187
- #: redirection-strings.php:247
1188
  msgid "Reset hits"
1189
  msgstr "Nollställ träffar"
1190
 
1191
- #: redirection-strings.php:39 redirection-strings.php:49
1192
- #: redirection-strings.php:245 redirection-strings.php:275
1193
  msgid "Enable"
1194
  msgstr "Aktivera"
1195
 
1196
- #: redirection-strings.php:40 redirection-strings.php:48
1197
- #: redirection-strings.php:246 redirection-strings.php:274
1198
  msgid "Disable"
1199
  msgstr "Inaktivera"
1200
 
1201
- #: redirection-strings.php:38 redirection-strings.php:46
1202
- #: redirection-strings.php:116 redirection-strings.php:117
1203
- #: redirection-strings.php:125 redirection-strings.php:129
1204
- #: redirection-strings.php:143 redirection-strings.php:244
1205
- #: redirection-strings.php:273
1206
  msgid "Delete"
1207
  msgstr "Radera"
1208
 
1209
- #: redirection-strings.php:45 redirection-strings.php:272
1210
  msgid "Edit"
1211
  msgstr "Redigera"
1212
 
1213
- #: redirection-strings.php:243
1214
  msgid "Last Access"
1215
  msgstr "Senast använd"
1216
 
1217
- #: redirection-strings.php:242
1218
  msgid "Hits"
1219
  msgstr "Träffar"
1220
 
1221
- #: redirection-strings.php:240
1222
  msgid "URL"
1223
  msgstr "URL"
1224
 
1225
- #: redirection-strings.php:239
1226
  msgid "Type"
1227
  msgstr "Typ"
1228
 
@@ -1230,48 +1255,48 @@ msgstr "Typ"
1230
  msgid "Modified Posts"
1231
  msgstr "Modifierade inlägg"
1232
 
1233
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1234
  msgid "Redirections"
1235
  msgstr "Omdirigeringar"
1236
 
1237
- #: redirection-strings.php:251
1238
  msgid "User Agent"
1239
  msgstr "Användaragent"
1240
 
1241
- #: matches/user-agent.php:10 redirection-strings.php:210
1242
  msgid "URL and user agent"
1243
  msgstr "URL och användaragent"
1244
 
1245
- #: redirection-strings.php:206
1246
  msgid "Target URL"
1247
  msgstr "Mål-URL"
1248
 
1249
- #: matches/url.php:7 redirection-strings.php:207
1250
  msgid "URL only"
1251
  msgstr "Endast URL"
1252
 
1253
- #: redirection-strings.php:235 redirection-strings.php:256
1254
- #: redirection-strings.php:260 redirection-strings.php:268
1255
- #: redirection-strings.php:271
1256
  msgid "Regex"
1257
  msgstr "Reguljärt uttryck"
1258
 
1259
- #: redirection-strings.php:270
1260
  msgid "Referrer"
1261
  msgstr "Hänvisningsadress"
1262
 
1263
- #: matches/referrer.php:10 redirection-strings.php:209
1264
  msgid "URL and referrer"
1265
  msgstr "URL och hänvisande webbplats"
1266
 
1267
- #: redirection-strings.php:200
1268
  msgid "Logged Out"
1269
  msgstr "Utloggad"
1270
 
1271
- #: redirection-strings.php:198
1272
  msgid "Logged In"
1273
  msgstr "Inloggad"
1274
 
1275
- #: matches/login.php:8 redirection-strings.php:208
1276
  msgid "URL and login status"
1277
  msgstr "URL och inloggnings-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-02-23 15:50: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: sv_SE\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr "Formulärbegäran"
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr "Relativ /wp-json/"
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr "Proxy över Admin AJAX"
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr "Standard /wp-json/"
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr "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:"
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr "Webbplats och hemprotokoll"
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr "URL för webbplats och hem är inkonsekvent. Korrigera från dina allmänna inställningar."
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr "Webbplats och hem är konsekventa"
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
+ msgstr "Observera att det är ditt ansvar att skicka HTTP-sidhuvuden till PHP. Vänligen kontakta din webbleverantör för support om detta."
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
+ msgstr "Acceptera språk"
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
+ msgstr "Värde för sidhuvud"
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
+ msgstr "Namn på sidhuvud"
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
+ msgstr "HTTP-sidhuvud"
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
+ msgstr "WordPress-filternamn"
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
+ msgstr "Filternamn"
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
+ msgstr "Cookie-värde"
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
+ msgstr "Cookie-namn"
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
+ msgstr "Cookie"
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
+ msgstr "Valfri beskrivning"
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
+ msgstr "Mål-URL när det inte matchas"
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
+ msgstr "Mål-URL när det matchas"
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
+ msgstr "rensa cacheminnet."
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
+ msgstr "Om du använder ett caching-system som Cloudflare, läs det här:"
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
+ msgstr "URL- och HTTP-sidhuvuden"
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
+ msgstr "URL och anpassat filter"
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
+ msgstr "URL och cookie"
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr "404 borttagen"
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
+ msgstr "Rå /index.php?rest_route=/"
 
 
 
 
125
 
126
+ #: redirection-strings.php:197
127
  msgid "REST API"
128
  msgstr "REST API"
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
+ msgstr "Hur Redirection använder REST API &ndash; ändra inte om inte nödvändigt"
133
 
134
  #: redirection-strings.php:9
135
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
137
 
138
  #: redirection-strings.php:12
139
  msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
140
+ msgstr "Kolla in {{link}}tilläggsstatusen{{/link}}. Den kanske kan fixa problemet ”automagiskt”."
141
 
142
  #: redirection-strings.php:13
143
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
144
+ msgstr "{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."
145
 
146
  #: redirection-strings.php:14
147
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
148
+ msgstr "{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."
149
 
150
  #: redirection-strings.php:15
151
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
152
+ msgstr "{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."
153
 
154
  #: redirection-strings.php:16
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr "{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr "Inget av förslagen hjälpte"
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr "Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr "Kunde inte ladda Redirection ☹️"
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
+ msgstr "WordPress REST API arbetar på %s"
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr "WordPress REST API"
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
+ msgstr "REST API fungerar inte så flödena kontrolleras inte"
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
+ msgstr "Omdirigeringsflödena fungerar"
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
+ msgstr "Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
+ msgstr "Omdirigeringsflöden"
193
 
194
  #: redirection-strings.php:8
195
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
199
  msgid "https://johngodley.com"
200
  msgstr "https://johngodley.com"
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr "Användaragentfel"
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr "Okänd användaragent"
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr "Enhet"
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr "Operativsystem"
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr "Webbläsare"
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr "Sökmotor"
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr "Useragent"
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr "Agent"
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr "Ingen loggning av IP-nummer"
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr "Fullständig loggning av IP-nummer"
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr "Anonymisera IP-nummer (maska sista delen)"
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr "Övervaka ändringar till %(type)s"
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr "Läggning av IP-nummer"
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr "(välj loggningsnivå för IP)"
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr "Geo-info"
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr "Agentinfo"
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr "Filtrera på IP-nummer"
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr "Hänvisare/Användaragent"
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr "Geo-IP-fel"
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr "Något gick fel när denna information skulle hämtas"
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr "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."
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr "Det finns inga kända detaljer för denna adress."
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr "Geo IP"
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr "Stad"
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr "Region"
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr "Tidszon"
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr "Geo-plats"
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr "Drivs av {{link}}redirect.li{{/link}}"
314
 
316
  msgid "Trash"
317
  msgstr "Släng"
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  msgstr "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"
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr "Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."
326
 
328
  msgid "https://redirection.me/"
329
  msgstr "https://redirection.me/"
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  msgstr "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."
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr "Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  msgstr "Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} &mdash; inkludera så mycket information som du kan!"
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr "Använd aldrig cache"
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr "En timma"
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr "Omdirigera cache"
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr "Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr "Är du säker på att du vill importera från %s?"
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr "Tilläggsimporterare"
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr "Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr "totalt ="
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr "Importera från %s"
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr "Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr "Redirection har inte installerats ordentligt"
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr "Redirection kräver WordPress version %1s, du använder version %2s &mdash; vänligen uppdatera WordPress"
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr "WordPress standard ”gamla permalänkar”"
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr "<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."
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  msgstr "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."
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr "⚡️ Magisk fix ⚡️"
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr "Tilläggsstatus"
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr "Anpassad"
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr "Mobil"
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr "Feedläsare"
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr "Bibliotek"
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr "Övervaka URL-ändringar"
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr "Spara ändringar till den här gruppen"
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr "Till exempel ”/amp”"
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr "URL-övervakning"
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr "Radera 404:or"
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr "Radera alla loggar för denna 404"
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr "Ta bort allt från IP-numret %s"
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr "Ta bort allt som matchar \"%s\""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr "Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr "Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr "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."
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr "Det gick inte att ladda Redirection"
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr "Det gick inte att skapa grupp"
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr "Det gick inte att korrigera databastabellerna"
486
 
532
  msgid "All tables present"
533
  msgstr "Alla tabeller närvarande"
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr "En cachad version av Redirection upptäcktes"
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr "Vänligen rensa din webbläsares cache och ladda om denna sida."
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr "Din server svarade med ett '403 Förbjudet'-fel som kan indikera att begäran blockerades. Använder du en brandvägg eller ett säkerhetsprogram?"
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr "Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr "Om du tror att Redirection orsakar felet, skapa en felrapport."
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr "Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr "Laddar, vänligen vänta..."
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  msgstr "{{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)."
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr "Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr "Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  msgstr "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. "
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr "Skapa felrapport"
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr "E-post"
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "Viktiga detaljer"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr "Behöver du hjälp?"
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  msgstr "Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr "Pos"
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 - Borttagen"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "Position"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
  msgstr "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"
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Apache-modul"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr "Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "Importera till grupp"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
  msgstr "Importera en CSV-fil, .htaccess-fil eller JSON-fil."
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr "Klicka på 'Lägg till fil' eller dra och släpp en fil här."
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "Lägg till fil"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "Fil vald"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "Importerar"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "Importering klar"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "Antal omdirigeringar importerade:"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr "Dubbelkolla att filen är i rätt format!"
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "OK"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "Stäng"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "All importerade omdirigeringar kommer infogas till den aktuella databasen."
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "Exportera"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr "Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "Allt"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "WordPress omdirigeringar"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Apache omdirigeringar"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Nginx omdirigeringar"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr "Apache .htaccess"
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr "Nginx omskrivningsregler"
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr "JSON omdirigeringar"
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "Visa"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr "Loggfiler kan exporteras från loggsidorna."
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "Importera/Exportera"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "Loggar"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "404-fel"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr "Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr "Jag skulle vilja stödja lite till."
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "Support 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "Omdirigering sparad"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr "Logginlägg raderades"
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "Inställning sparad"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "Grupp sparad"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] "Är du säker på att du vill radera detta objekt?"
771
  msgstr[1] "Är du säker på att du vill radera dessa objekt?"
772
 
773
+ #: redirection-strings.php:280
774
  msgid "pass"
775
  msgstr "lösen"
776
 
777
+ #: redirection-strings.php:252
778
  msgid "All groups"
779
  msgstr "Alla grupper"
780
 
781
+ #: redirection-strings.php:223
782
  msgid "301 - Moved Permanently"
783
  msgstr "301 - Flyttad permanent"
784
 
785
+ #: redirection-strings.php:224
786
  msgid "302 - Found"
787
  msgstr "302 - Hittad"
788
 
789
+ #: redirection-strings.php:225
790
  msgid "307 - Temporary Redirect"
791
  msgstr "307 - Tillfällig omdirigering"
792
 
793
+ #: redirection-strings.php:226
794
  msgid "308 - Permanent Redirect"
795
  msgstr "308 - Permanent omdirigering"
796
 
797
+ #: redirection-strings.php:227
798
  msgid "401 - Unauthorized"
799
  msgstr "401 - Obehörig"
800
 
801
+ #: redirection-strings.php:228
802
  msgid "404 - Not Found"
803
  msgstr "404 - Hittades inte"
804
 
805
+ #: redirection-strings.php:230
806
  msgid "Title"
807
  msgstr "Titel"
808
 
809
+ #: redirection-strings.php:233
810
  msgid "When matched"
811
  msgstr "När matchning sker"
812
 
813
+ #: redirection-strings.php:234
814
  msgid "with HTTP code"
815
  msgstr "med HTTP-kod"
816
 
817
+ #: redirection-strings.php:242
818
  msgid "Show advanced options"
819
  msgstr "Visa avancerande alternativ"
820
 
821
+ #: redirection-strings.php:206
822
  msgid "Matched Target"
823
  msgstr "Matchande mål"
824
 
825
+ #: redirection-strings.php:208
826
  msgid "Unmatched Target"
827
  msgstr "Ej matchande mål"
828
 
829
+ #: redirection-strings.php:200 redirection-strings.php:201
830
  msgid "Saving..."
831
  msgstr "Sparar..."
832
 
833
+ #: redirection-strings.php:143
834
  msgid "View notice"
835
  msgstr "Visa meddelande"
836
 
850
  msgid "Unable to add new redirect"
851
  msgstr "Det går inte att lägga till en ny omdirigering"
852
 
853
+ #: redirection-strings.php:11 redirection-strings.php:67
854
  msgid "Something went wrong 🙁"
855
  msgstr "Något gick fel 🙁"
856
 
858
  msgid "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!"
859
  msgstr "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."
860
 
861
+ #: redirection-admin.php:203
862
  msgid "Log entries (%d max)"
863
  msgstr "Antal logginlägg per sida (max %d)"
864
 
865
+ #: redirection-strings.php:309
866
  msgid "Search by IP"
867
  msgstr "Sök via IP"
868
 
869
+ #: redirection-strings.php:304
870
  msgid "Select bulk action"
871
  msgstr "Välj massåtgärd"
872
 
873
+ #: redirection-strings.php:305
874
  msgid "Bulk Actions"
875
  msgstr "Massåtgärd"
876
 
877
+ #: redirection-strings.php:306
878
  msgid "Apply"
879
  msgstr "Tillämpa"
880
 
881
+ #: redirection-strings.php:297
882
  msgid "First page"
883
  msgstr "Första sidan"
884
 
885
+ #: redirection-strings.php:298
886
  msgid "Prev page"
887
  msgstr "Föregående sida"
888
 
889
+ #: redirection-strings.php:299
890
  msgid "Current Page"
891
  msgstr "Aktuell sida"
892
 
893
+ #: redirection-strings.php:300
894
  msgid "of %(page)s"
895
  msgstr "av %(sidor)"
896
 
897
+ #: redirection-strings.php:301
898
  msgid "Next page"
899
  msgstr "Nästa sida"
900
 
901
+ #: redirection-strings.php:302
902
  msgid "Last page"
903
  msgstr "Sista sidan"
904
 
905
+ #: redirection-strings.php:303
906
  msgid "%s item"
907
  msgid_plural "%s items"
908
  msgstr[0] "%s objekt"
909
  msgstr[1] "%s objekt"
910
 
911
+ #: redirection-strings.php:296
912
  msgid "Select All"
913
  msgstr "Välj allt"
914
 
915
+ #: redirection-strings.php:308
916
  msgid "Sorry, something went wrong loading the data - please try again"
917
  msgstr "Något gick fel när data laddades - Vänligen försök igen"
918
 
919
+ #: redirection-strings.php:307
920
  msgid "No results"
921
  msgstr "Inga resultat"
922
 
923
+ #: redirection-strings.php:109
924
  msgid "Delete the logs - are you sure?"
925
  msgstr "Är du säker på att du vill radera loggarna?"
926
 
927
+ #: redirection-strings.php:110
928
  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."
929
  msgstr "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."
930
 
931
+ #: redirection-strings.php:111
932
  msgid "Yes! Delete the logs"
933
  msgstr "Ja! Radera loggarna"
934
 
935
+ #: redirection-strings.php:112
936
  msgid "No! Don't delete the logs"
937
  msgstr "Nej! Radera inte loggarna"
938
 
939
+ #: redirection-strings.php:287
940
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
941
  msgstr "Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."
942
 
943
+ #: redirection-strings.php:286 redirection-strings.php:288
944
  msgid "Newsletter"
945
  msgstr "Nyhetsbrev"
946
 
947
+ #: redirection-strings.php:289
948
  msgid "Want to keep up to date with changes to Redirection?"
949
  msgstr "Vill du bli uppdaterad om ändringar i Redirection?"
950
 
951
+ #: redirection-strings.php:290
952
  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."
953
  msgstr "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."
954
 
955
+ #: redirection-strings.php:291
956
  msgid "Your email address:"
957
  msgstr "Din e-postadress:"
958
 
959
+ #: redirection-strings.php:151
960
  msgid "You've supported this plugin - thank you!"
961
  msgstr "Du har stöttat detta tillägg - tack!"
962
 
963
+ #: redirection-strings.php:154
964
  msgid "You get useful software and I get to carry on making it better."
965
  msgstr "Du får en användbar mjukvara och jag kan fortsätta göra den bättre."
966
 
967
+ #: redirection-strings.php:162 redirection-strings.php:167
968
  msgid "Forever"
969
  msgstr "För evigt"
970
 
996
  msgid "Manage all your 301 redirects and monitor 404 errors"
997
  msgstr "Hantera alla dina 301-omdirigeringar och övervaka 404-fel"
998
 
999
+ #: redirection-strings.php:153
1000
  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}}."
1001
  msgstr "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}}."
1002
 
1003
+ #: redirection-admin.php:307
1004
  msgid "Redirection Support"
1005
  msgstr "Support för Redirection"
1006
 
1007
+ #: redirection-strings.php:62 redirection-strings.php:142
1008
  msgid "Support"
1009
  msgstr "Support"
1010
 
1011
+ #: redirection-strings.php:139
1012
  msgid "404s"
1013
  msgstr "404:or"
1014
 
1015
+ #: redirection-strings.php:138
1016
  msgid "Log"
1017
  msgstr "Logg"
1018
 
1019
+ #: redirection-strings.php:149
1020
  msgid "Delete Redirection"
1021
  msgstr "Ta bort Redirection"
1022
 
1023
+ #: redirection-strings.php:79
1024
  msgid "Upload"
1025
  msgstr "Ladda upp"
1026
 
1027
+ #: redirection-strings.php:90
1028
  msgid "Import"
1029
  msgstr "Importera"
1030
 
1031
+ #: redirection-strings.php:199
1032
  msgid "Update"
1033
  msgstr "Uppdatera"
1034
 
1035
+ #: redirection-strings.php:191
1036
  msgid "Auto-generate URL"
1037
  msgstr "Autogenerera URL"
1038
 
1039
+ #: redirection-strings.php:190
1040
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1041
  msgstr "En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"
1042
 
1043
+ #: redirection-strings.php:189
1044
  msgid "RSS Token"
1045
  msgstr "RSS-nyckel"
1046
 
1047
+ #: redirection-strings.php:184
1048
  msgid "404 Logs"
1049
  msgstr "404-loggar"
1050
 
1051
+ #: redirection-strings.php:183 redirection-strings.php:185
1052
  msgid "(time to keep logs for)"
1053
  msgstr "(hur länge loggar ska sparas)"
1054
 
1055
+ #: redirection-strings.php:182
1056
  msgid "Redirect Logs"
1057
  msgstr "Redirection-loggar"
1058
 
1059
+ #: redirection-strings.php:181
1060
  msgid "I'm a nice person and I have helped support the author of this plugin"
1061
  msgstr "Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"
1062
 
1063
+ #: redirection-strings.php:156
1064
  msgid "Plugin Support"
1065
  msgstr "Support för tillägg"
1066
 
1067
+ #: redirection-strings.php:61 redirection-strings.php:141
1068
  msgid "Options"
1069
  msgstr "Alternativ"
1070
 
1071
+ #: redirection-strings.php:161
1072
  msgid "Two months"
1073
  msgstr "Två månader"
1074
 
1075
+ #: redirection-strings.php:160
1076
  msgid "A month"
1077
  msgstr "En månad"
1078
 
1079
+ #: redirection-strings.php:159 redirection-strings.php:166
1080
  msgid "A week"
1081
  msgstr "En vecka"
1082
 
1083
+ #: redirection-strings.php:158 redirection-strings.php:165
1084
  msgid "A day"
1085
  msgstr "En dag"
1086
 
1087
+ #: redirection-strings.php:157
1088
  msgid "No logs"
1089
  msgstr "Inga loggar"
1090
 
1091
+ #: redirection-strings.php:108
1092
  msgid "Delete All"
1093
  msgstr "Radera alla"
1094
 
1095
+ #: redirection-strings.php:45
1096
  msgid "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."
1097
  msgstr "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."
1098
 
1099
+ #: redirection-strings.php:44
1100
  msgid "Add Group"
1101
  msgstr "Lägg till grupp"
1102
 
1103
+ #: redirection-strings.php:310
1104
  msgid "Search"
1105
  msgstr "Sök"
1106
 
1107
+ #: redirection-strings.php:57 redirection-strings.php:137
1108
  msgid "Groups"
1109
  msgstr "Grupper"
1110
 
1111
+ #: redirection-strings.php:18 redirection-strings.php:54
1112
+ #: redirection-strings.php:237
1113
  msgid "Save"
1114
  msgstr "Spara"
1115
 
1116
+ #: redirection-strings.php:235
1117
  msgid "Group"
1118
  msgstr "Grupp"
1119
 
1120
+ #: redirection-strings.php:232
1121
  msgid "Match"
1122
  msgstr "Matcha"
1123
 
1124
+ #: redirection-strings.php:253
1125
  msgid "Add new redirection"
1126
  msgstr "Lägg till ny omdirigering"
1127
 
1128
+ #: redirection-strings.php:55 redirection-strings.php:80
1129
+ #: redirection-strings.php:240
1130
  msgid "Cancel"
1131
  msgstr "Avbryt"
1132
 
1133
+ #: redirection-strings.php:104
1134
  msgid "Download"
1135
  msgstr "Hämta"
1136
 
1138
  msgid "Redirection"
1139
  msgstr "Redirection"
1140
 
1141
+ #: redirection-admin.php:159
1142
  msgid "Settings"
1143
  msgstr "Inställningar"
1144
 
1145
+ #: redirection-strings.php:222
1146
  msgid "Do nothing"
1147
  msgstr "Gör ingenting"
1148
 
1149
+ #: redirection-strings.php:221
1150
  msgid "Error (404)"
1151
  msgstr "Fel (404)"
1152
 
1153
+ #: redirection-strings.php:220
1154
  msgid "Pass-through"
1155
  msgstr "Passera"
1156
 
1157
+ #: redirection-strings.php:219
1158
  msgid "Redirect to random post"
1159
  msgstr "Omdirigering till slumpmässigt inlägg"
1160
 
1161
+ #: redirection-strings.php:218
1162
  msgid "Redirect to URL"
1163
  msgstr "Omdirigera till URL"
1164
 
1166
  msgid "Invalid group when creating redirect"
1167
  msgstr "Gruppen är ogiltig när omdirigering skapas"
1168
 
1169
+ #: redirection-strings.php:117 redirection-strings.php:126
1170
  msgid "IP"
1171
  msgstr "IP"
1172
 
1173
+ #: redirection-strings.php:115 redirection-strings.php:124
1174
+ #: redirection-strings.php:238
1175
  msgid "Source URL"
1176
  msgstr "URL-källa"
1177
 
1178
+ #: redirection-strings.php:114 redirection-strings.php:123
1179
  msgid "Date"
1180
  msgstr "Datum"
1181
 
1182
+ #: redirection-strings.php:128 redirection-strings.php:132
1183
+ #: redirection-strings.php:254
1184
  msgid "Add Redirect"
1185
  msgstr "Lägg till omdirigering"
1186
 
1187
+ #: redirection-strings.php:43
1188
  msgid "All modules"
1189
  msgstr "Alla moduler"
1190
 
1191
+ #: redirection-strings.php:49
1192
  msgid "View Redirects"
1193
  msgstr "Visa omdirigeringar"
1194
 
1195
+ #: redirection-strings.php:39 redirection-strings.php:53
1196
  msgid "Module"
1197
  msgstr "Modul"
1198
 
1199
+ #: redirection-strings.php:38 redirection-strings.php:136
1200
  msgid "Redirects"
1201
  msgstr "Omdirigering"
1202
 
1203
+ #: redirection-strings.php:37 redirection-strings.php:46
1204
+ #: redirection-strings.php:52
1205
  msgid "Name"
1206
  msgstr "Namn"
1207
 
1208
+ #: redirection-strings.php:295
1209
  msgid "Filter"
1210
  msgstr "Filtrera"
1211
 
1212
+ #: redirection-strings.php:251
1213
  msgid "Reset hits"
1214
  msgstr "Nollställ träffar"
1215
 
1216
+ #: redirection-strings.php:41 redirection-strings.php:51
1217
+ #: redirection-strings.php:249 redirection-strings.php:279
1218
  msgid "Enable"
1219
  msgstr "Aktivera"
1220
 
1221
+ #: redirection-strings.php:42 redirection-strings.php:50
1222
+ #: redirection-strings.php:250 redirection-strings.php:278
1223
  msgid "Disable"
1224
  msgstr "Inaktivera"
1225
 
1226
+ #: redirection-strings.php:40 redirection-strings.php:48
1227
+ #: redirection-strings.php:118 redirection-strings.php:119
1228
+ #: redirection-strings.php:127 redirection-strings.php:131
1229
+ #: redirection-strings.php:150 redirection-strings.php:248
1230
+ #: redirection-strings.php:277
1231
  msgid "Delete"
1232
  msgstr "Radera"
1233
 
1234
+ #: redirection-strings.php:47 redirection-strings.php:276
1235
  msgid "Edit"
1236
  msgstr "Redigera"
1237
 
1238
+ #: redirection-strings.php:247
1239
  msgid "Last Access"
1240
  msgstr "Senast använd"
1241
 
1242
+ #: redirection-strings.php:246
1243
  msgid "Hits"
1244
  msgstr "Träffar"
1245
 
1246
+ #: redirection-strings.php:244
1247
  msgid "URL"
1248
  msgstr "URL"
1249
 
1250
+ #: redirection-strings.php:243
1251
  msgid "Type"
1252
  msgstr "Typ"
1253
 
1255
  msgid "Modified Posts"
1256
  msgstr "Modifierade inlägg"
1257
 
1258
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1259
  msgid "Redirections"
1260
  msgstr "Omdirigeringar"
1261
 
1262
+ #: redirection-strings.php:255
1263
  msgid "User Agent"
1264
  msgstr "Användaragent"
1265
 
1266
+ #: matches/user-agent.php:10 redirection-strings.php:214
1267
  msgid "URL and user agent"
1268
  msgstr "URL och användaragent"
1269
 
1270
+ #: redirection-strings.php:210
1271
  msgid "Target URL"
1272
  msgstr "Mål-URL"
1273
 
1274
+ #: matches/url.php:7 redirection-strings.php:211
1275
  msgid "URL only"
1276
  msgstr "Endast URL"
1277
 
1278
+ #: redirection-strings.php:239 redirection-strings.php:260
1279
+ #: redirection-strings.php:264 redirection-strings.php:272
1280
+ #: redirection-strings.php:275
1281
  msgid "Regex"
1282
  msgstr "Reguljärt uttryck"
1283
 
1284
+ #: redirection-strings.php:274
1285
  msgid "Referrer"
1286
  msgstr "Hänvisningsadress"
1287
 
1288
+ #: matches/referrer.php:10 redirection-strings.php:213
1289
  msgid "URL and referrer"
1290
  msgstr "URL och hänvisande webbplats"
1291
 
1292
+ #: redirection-strings.php:204
1293
  msgid "Logged Out"
1294
  msgstr "Utloggad"
1295
 
1296
+ #: redirection-strings.php:202
1297
  msgid "Logged In"
1298
  msgstr "Inloggad"
1299
 
1300
+ #: matches/login.php:8 redirection-strings.php:212
1301
  msgid "URL and login status"
1302
  msgstr "URL och inloggnings-status"
locale/redirection-zh_TW.mo CHANGED
Binary file
locale/redirection-zh_TW.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: 2017-09-14 17:14:20+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,99 +11,123 @@ msgstr ""
11
  "Language: zh_TW\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
16
  msgstr ""
17
 
18
- #: redirection-strings.php:267
19
  msgid "Accept Language"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:265
23
  msgid "Header value"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:264
27
  msgid "Header name"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:263
31
  msgid "HTTP Header"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:262
35
  msgid "WordPress filter name"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:261
39
  msgid "Filter Name"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Cookie value"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:258
47
  msgid "Cookie name"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:257
51
  msgid "Cookie"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:227
55
  msgid "Optional description"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:201 redirection-strings.php:205
59
  msgid "Target URL when not matched"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:199 redirection-strings.php:203
63
  msgid "Target URL when matched"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:64
67
  msgid "clearing your cache."
68
  msgstr ""
69
 
70
- #: redirection-strings.php:63
71
  msgid "If you are using a caching system such as Cloudflare then please read this: "
72
  msgstr ""
73
 
74
- #: matches/http-header.php:11 redirection-strings.php:212
75
  msgid "URL and HTTP header"
76
  msgstr ""
77
 
78
- #: matches/custom-filter.php:9 redirection-strings.php:213
79
  msgid "URL and custom filter"
80
  msgstr ""
81
 
82
- #: matches/cookie.php:7 redirection-strings.php:211
83
  msgid "URL and cookie"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:322
87
  msgid "404 deleted"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:169
91
- msgid "Default /wp-json/ (preferred)"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:170
95
  msgid "Raw /index.php?rest_route=/"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:171
99
- msgid "Proxy over Admin AJAX (deprecated)"
100
- msgstr ""
101
-
102
- #: redirection-strings.php:193
103
  msgid "REST API"
104
  msgstr ""
105
 
106
- #: redirection-strings.php:194
107
  msgid "How Redirection uses the REST API - don't change unless necessary"
108
  msgstr ""
109
 
@@ -131,39 +155,39 @@ msgstr ""
131
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
132
  msgstr ""
133
 
134
- #: redirection-strings.php:17
135
  msgid "None of the suggestions helped"
136
  msgstr ""
137
 
138
- #: redirection-admin.php:385
139
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
140
  msgstr ""
141
 
142
- #: redirection-admin.php:379
143
  msgid "Unable to load Redirection ☹️"
144
  msgstr ""
145
 
146
- #: models/fixer.php:85
147
  msgid "WordPress REST API is working at %s"
148
  msgstr ""
149
 
150
- #: models/fixer.php:82
151
  msgid "WordPress REST API"
152
  msgstr ""
153
 
154
- #: models/fixer.php:74
155
  msgid "REST API is not working so routes not checked"
156
  msgstr ""
157
 
158
- #: models/fixer.php:59 models/fixer.php:68
159
  msgid "Redirection routes are working"
160
  msgstr ""
161
 
162
- #: models/fixer.php:56
163
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
164
  msgstr ""
165
 
166
- #: models/fixer.php:47
167
  msgid "Redirection routes"
168
  msgstr ""
169
 
@@ -175,116 +199,116 @@ msgstr ""
175
  msgid "https://johngodley.com"
176
  msgstr ""
177
 
178
- #: redirection-strings.php:307
179
  msgid "Useragent Error"
180
  msgstr ""
181
 
182
- #: redirection-strings.php:309
183
  msgid "Unknown Useragent"
184
  msgstr ""
185
 
186
- #: redirection-strings.php:310
187
  msgid "Device"
188
  msgstr ""
189
 
190
- #: redirection-strings.php:311
191
  msgid "Operating System"
192
  msgstr ""
193
 
194
- #: redirection-strings.php:312
195
  msgid "Browser"
196
  msgstr ""
197
 
198
- #: redirection-strings.php:313
199
  msgid "Engine"
200
  msgstr ""
201
 
202
- #: redirection-strings.php:314
203
  msgid "Useragent"
204
  msgstr ""
205
 
206
- #: redirection-strings.php:315
207
  msgid "Agent"
208
  msgstr ""
209
 
210
- #: redirection-strings.php:166
211
  msgid "No IP logging"
212
  msgstr ""
213
 
214
- #: redirection-strings.php:167
215
  msgid "Full IP logging"
216
  msgstr ""
217
 
218
- #: redirection-strings.php:168
219
  msgid "Anonymize IP (mask last part)"
220
  msgstr ""
221
 
222
- #: redirection-strings.php:176
223
  msgid "Monitor changes to %(type)s"
224
  msgstr ""
225
 
226
- #: redirection-strings.php:182
227
  msgid "IP Logging"
228
  msgstr ""
229
 
230
- #: redirection-strings.php:183
231
  msgid "(select IP logging level)"
232
  msgstr ""
233
 
234
- #: redirection-strings.php:118 redirection-strings.php:131
235
  msgid "Geo Info"
236
  msgstr ""
237
 
238
- #: redirection-strings.php:119 redirection-strings.php:132
239
  msgid "Agent Info"
240
  msgstr ""
241
 
242
- #: redirection-strings.php:120 redirection-strings.php:133
243
  msgid "Filter by IP"
244
  msgstr ""
245
 
246
- #: redirection-strings.php:114 redirection-strings.php:123
247
  msgid "Referrer / User Agent"
248
  msgstr ""
249
 
250
- #: redirection-strings.php:23
251
  msgid "Geo IP Error"
252
  msgstr ""
253
 
254
- #: redirection-strings.php:24 redirection-strings.php:308
255
  msgid "Something went wrong obtaining this information"
256
  msgstr ""
257
 
258
- #: redirection-strings.php:26
259
  msgid "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."
260
  msgstr ""
261
 
262
- #: redirection-strings.php:28
263
  msgid "No details are known for this address."
264
  msgstr ""
265
 
266
- #: redirection-strings.php:25 redirection-strings.php:27
267
- #: redirection-strings.php:29
268
  msgid "Geo IP"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:30
272
  msgid "City"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:31
276
  msgid "Area"
277
  msgstr ""
278
 
279
- #: redirection-strings.php:32
280
  msgid "Timezone"
281
  msgstr ""
282
 
283
- #: redirection-strings.php:33
284
  msgid "Geo Location"
285
  msgstr ""
286
 
287
- #: redirection-strings.php:34 redirection-strings.php:316
288
  msgid "Powered by {{link}}redirect.li{{/link}}"
289
  msgstr ""
290
 
@@ -292,11 +316,11 @@ msgstr ""
292
  msgid "Trash"
293
  msgstr ""
294
 
295
- #: redirection-admin.php:384
296
  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"
297
  msgstr ""
298
 
299
- #: redirection-admin.php:279
300
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
301
  msgstr ""
302
 
@@ -304,63 +328,63 @@ msgstr ""
304
  msgid "https://redirection.me/"
305
  msgstr ""
306
 
307
- #: redirection-strings.php:278
308
  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."
309
  msgstr ""
310
 
311
- #: redirection-strings.php:279
312
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
313
  msgstr ""
314
 
315
- #: redirection-strings.php:281
316
  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!"
317
  msgstr ""
318
 
319
- #: redirection-strings.php:161
320
  msgid "Never cache"
321
  msgstr ""
322
 
323
- #: redirection-strings.php:162
324
  msgid "An hour"
325
  msgstr ""
326
 
327
- #: redirection-strings.php:191
328
  msgid "Redirect Cache"
329
  msgstr ""
330
 
331
- #: redirection-strings.php:192
332
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
333
  msgstr ""
334
 
335
- #: redirection-strings.php:85
336
  msgid "Are you sure you want to import from %s?"
337
  msgstr ""
338
 
339
- #: redirection-strings.php:86
340
  msgid "Plugin Importers"
341
  msgstr ""
342
 
343
- #: redirection-strings.php:87
344
  msgid "The following redirect plugins were detected on your site and can be imported from."
345
  msgstr ""
346
 
347
- #: redirection-strings.php:70
348
  msgid "total = "
349
  msgstr ""
350
 
351
- #: redirection-strings.php:71
352
  msgid "Import from %s"
353
  msgstr ""
354
 
355
- #: redirection-admin.php:341
356
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
357
  msgstr ""
358
 
359
- #: redirection-admin.php:340
360
  msgid "Redirection not installed properly"
361
  msgstr ""
362
 
363
- #: redirection-admin.php:322
364
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
365
  msgstr ""
366
 
@@ -368,71 +392,71 @@ msgstr ""
368
  msgid "Default WordPress \"old slugs\""
369
  msgstr ""
370
 
371
- #: redirection-strings.php:175
372
  msgid "Create associated redirect (added to end of URL)"
373
  msgstr ""
374
 
375
- #: redirection-admin.php:387
376
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
377
  msgstr ""
378
 
379
- #: redirection-strings.php:288
380
  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."
381
  msgstr ""
382
 
383
- #: redirection-strings.php:289
384
  msgid "⚡️ Magic fix ⚡️"
385
  msgstr ""
386
 
387
- #: redirection-strings.php:290
388
  msgid "Plugin Status"
389
  msgstr ""
390
 
391
- #: redirection-strings.php:252 redirection-strings.php:266
392
  msgid "Custom"
393
  msgstr ""
394
 
395
- #: redirection-strings.php:253
396
  msgid "Mobile"
397
  msgstr ""
398
 
399
- #: redirection-strings.php:254
400
  msgid "Feed Readers"
401
  msgstr ""
402
 
403
- #: redirection-strings.php:255
404
  msgid "Libraries"
405
  msgstr ""
406
 
407
- #: redirection-strings.php:172
408
  msgid "URL Monitor Changes"
409
  msgstr ""
410
 
411
- #: redirection-strings.php:173
412
  msgid "Save changes to this group"
413
  msgstr ""
414
 
415
- #: redirection-strings.php:174
416
  msgid "For example \"/amp\""
417
  msgstr ""
418
 
419
- #: redirection-strings.php:184
420
  msgid "URL Monitor"
421
  msgstr ""
422
 
423
- #: redirection-strings.php:127
424
  msgid "Delete 404s"
425
  msgstr ""
426
 
427
- #: redirection-strings.php:128
428
  msgid "Delete all logs for this 404"
429
  msgstr ""
430
 
431
- #: redirection-strings.php:104
432
  msgid "Delete all from IP %s"
433
  msgstr ""
434
 
435
- #: redirection-strings.php:105
436
  msgid "Delete all matching \"%s\""
437
  msgstr ""
438
 
@@ -440,23 +464,23 @@ msgstr ""
440
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
441
  msgstr ""
442
 
443
- #: redirection-admin.php:382
444
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
445
  msgstr ""
446
 
447
- #: redirection-admin.php:381 redirection-strings.php:67
448
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
449
  msgstr ""
450
 
451
- #: redirection-admin.php:321
452
  msgid "Unable to load Redirection"
453
  msgstr ""
454
 
455
- #: models/fixer.php:202
456
  msgid "Unable to create group"
457
  msgstr ""
458
 
459
- #: models/fixer.php:194
460
  msgid "Failed to fix database tables"
461
  msgstr ""
462
 
@@ -508,11 +532,11 @@ msgstr ""
508
  msgid "All tables present"
509
  msgstr ""
510
 
511
- #: redirection-strings.php:61
512
  msgid "Cached Redirection detected"
513
  msgstr ""
514
 
515
- #: redirection-strings.php:62
516
  msgid "Please clear your browser cache and reload this page."
517
  msgstr ""
518
 
@@ -528,284 +552,284 @@ msgstr ""
528
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
529
  msgstr ""
530
 
531
- #: redirection-strings.php:22
532
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
533
  msgstr ""
534
 
535
- #: redirection-admin.php:386
536
  msgid "If you think Redirection is at fault then create an issue."
537
  msgstr ""
538
 
539
- #: redirection-admin.php:380
540
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
541
  msgstr ""
542
 
543
- #: redirection-admin.php:372
544
  msgid "Loading, please wait..."
545
  msgstr ""
546
 
547
- #: redirection-strings.php:90
548
  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)."
549
  msgstr ""
550
 
551
- #: redirection-strings.php:66
552
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
553
  msgstr ""
554
 
555
- #: redirection-strings.php:68
556
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
557
  msgstr ""
558
 
559
- #: redirection-strings.php:18
560
  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."
561
  msgstr ""
562
 
563
- #: redirection-admin.php:390 redirection-strings.php:19
564
  msgid "Create Issue"
565
  msgstr ""
566
 
567
- #: redirection-strings.php:20
568
  msgid "Email"
569
  msgstr ""
570
 
571
- #: redirection-strings.php:21
572
  msgid "Important details"
573
  msgstr "重要詳細資料"
574
 
575
- #: redirection-strings.php:277
576
  msgid "Need help?"
577
  msgstr ""
578
 
579
- #: redirection-strings.php:280
580
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
581
  msgstr ""
582
 
583
- #: redirection-strings.php:241
584
  msgid "Pos"
585
  msgstr "排序"
586
 
587
- #: redirection-strings.php:225
588
  msgid "410 - Gone"
589
  msgstr "410 - 已移走"
590
 
591
- #: redirection-strings.php:232
592
  msgid "Position"
593
  msgstr "排序"
594
 
595
- #: redirection-strings.php:188
596
  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"
597
  msgstr ""
598
 
599
- #: redirection-strings.php:189
600
  msgid "Apache Module"
601
  msgstr "Apache 模組"
602
 
603
- #: redirection-strings.php:190
604
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
605
  msgstr ""
606
 
607
- #: redirection-strings.php:72
608
  msgid "Import to group"
609
  msgstr "匯入至群組"
610
 
611
- #: redirection-strings.php:73
612
  msgid "Import a CSV, .htaccess, or JSON file."
613
- msgstr "匯入 CSV 、 .htaccess 或 JSON 檔案。"
614
 
615
- #: redirection-strings.php:74
616
  msgid "Click 'Add File' or drag and drop here."
617
  msgstr ""
618
 
619
- #: redirection-strings.php:75
620
  msgid "Add File"
621
  msgstr "新增檔案"
622
 
623
- #: redirection-strings.php:76
624
  msgid "File selected"
625
  msgstr "檔案已選擇"
626
 
627
- #: redirection-strings.php:79
628
  msgid "Importing"
629
  msgstr "匯入"
630
 
631
- #: redirection-strings.php:80
632
  msgid "Finished importing"
633
  msgstr "已完成匯入"
634
 
635
- #: redirection-strings.php:81
636
  msgid "Total redirects imported:"
637
  msgstr "總共匯入的重新導向:"
638
 
639
- #: redirection-strings.php:82
640
  msgid "Double-check the file is the correct format!"
641
  msgstr ""
642
 
643
- #: redirection-strings.php:83
644
  msgid "OK"
645
  msgstr "確定"
646
 
647
- #: redirection-strings.php:84 redirection-strings.php:237
648
  msgid "Close"
649
  msgstr "關閉"
650
 
651
- #: redirection-strings.php:89
652
  msgid "All imports will be appended to the current database."
653
  msgstr "所有的匯入將會顯示在目前的資料庫。"
654
 
655
- #: redirection-strings.php:91 redirection-strings.php:111
656
  msgid "Export"
657
  msgstr "匯出"
658
 
659
- #: redirection-strings.php:92
660
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
661
  msgstr ""
662
 
663
- #: redirection-strings.php:93
664
  msgid "Everything"
665
  msgstr "全部"
666
 
667
- #: redirection-strings.php:94
668
  msgid "WordPress redirects"
669
  msgstr "WordPress 的重新導向"
670
 
671
- #: redirection-strings.php:95
672
  msgid "Apache redirects"
673
  msgstr "Apache 的重新導向"
674
 
675
- #: redirection-strings.php:96
676
  msgid "Nginx redirects"
677
  msgstr "Nginx 的重新導向"
678
 
679
- #: redirection-strings.php:97
680
  msgid "CSV"
681
  msgstr "CSV"
682
 
683
- #: redirection-strings.php:98
684
  msgid "Apache .htaccess"
685
  msgstr ""
686
 
687
- #: redirection-strings.php:99
688
  msgid "Nginx rewrite rules"
689
  msgstr ""
690
 
691
- #: redirection-strings.php:100
692
  msgid "Redirection JSON"
693
  msgstr ""
694
 
695
- #: redirection-strings.php:101
696
  msgid "View"
697
  msgstr "檢視"
698
 
699
- #: redirection-strings.php:103
700
  msgid "Log files can be exported from the log pages."
701
  msgstr ""
702
 
703
- #: redirection-strings.php:56 redirection-strings.php:138
704
  msgid "Import/Export"
705
  msgstr "匯入匯出"
706
 
707
- #: redirection-strings.php:57
708
  msgid "Logs"
709
  msgstr "記錄"
710
 
711
- #: redirection-strings.php:58
712
  msgid "404 errors"
713
  msgstr "404 錯誤"
714
 
715
- #: redirection-strings.php:69
716
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
717
  msgstr ""
718
 
719
- #: redirection-strings.php:150
720
  msgid "I'd like to support some more."
721
  msgstr ""
722
 
723
- #: redirection-strings.php:153
724
  msgid "Support 💰"
725
  msgstr "支援 💰"
726
 
727
- #: redirection-strings.php:318
728
  msgid "Redirection saved"
729
  msgstr "重新導向已儲存"
730
 
731
- #: redirection-strings.php:319
732
  msgid "Log deleted"
733
  msgstr ""
734
 
735
- #: redirection-strings.php:320
736
  msgid "Settings saved"
737
  msgstr "設定已儲存"
738
 
739
- #: redirection-strings.php:321
740
  msgid "Group saved"
741
  msgstr "群組已儲存"
742
 
743
- #: redirection-strings.php:317
744
  msgid "Are you sure you want to delete this item?"
745
  msgid_plural "Are you sure you want to delete these items?"
746
  msgstr[0] ""
747
 
748
- #: redirection-strings.php:276
749
  msgid "pass"
750
  msgstr "經由"
751
 
752
- #: redirection-strings.php:248
753
  msgid "All groups"
754
  msgstr "所有群組"
755
 
756
- #: redirection-strings.php:219
757
  msgid "301 - Moved Permanently"
758
  msgstr "301 - 已永久移動"
759
 
760
- #: redirection-strings.php:220
761
  msgid "302 - Found"
762
  msgstr "302 - 找到"
763
 
764
- #: redirection-strings.php:221
765
  msgid "307 - Temporary Redirect"
766
  msgstr "307 - 暫時重新導向"
767
 
768
- #: redirection-strings.php:222
769
  msgid "308 - Permanent Redirect"
770
  msgstr "308 - 永久重新導向"
771
 
772
- #: redirection-strings.php:223
773
  msgid "401 - Unauthorized"
774
  msgstr "401 - 未授權"
775
 
776
- #: redirection-strings.php:224
777
  msgid "404 - Not Found"
778
  msgstr "404 - 找不到頁面"
779
 
780
- #: redirection-strings.php:226
781
  msgid "Title"
782
  msgstr "標題"
783
 
784
- #: redirection-strings.php:229
785
  msgid "When matched"
786
  msgstr "當符合"
787
 
788
- #: redirection-strings.php:230
789
  msgid "with HTTP code"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:238
793
  msgid "Show advanced options"
794
  msgstr "顯示進階選項"
795
 
796
- #: redirection-strings.php:202
797
  msgid "Matched Target"
798
  msgstr "有符合目標"
799
 
800
- #: redirection-strings.php:204
801
  msgid "Unmatched Target"
802
  msgstr "無符合目標"
803
 
804
- #: redirection-strings.php:196 redirection-strings.php:197
805
  msgid "Saving..."
806
  msgstr "儲存…"
807
 
808
- #: redirection-strings.php:141
809
  msgid "View notice"
810
  msgstr "檢視注意事項"
811
 
@@ -825,7 +849,7 @@ msgstr "無效的重新導向比對器"
825
  msgid "Unable to add new redirect"
826
  msgstr ""
827
 
828
- #: redirection-strings.php:11 redirection-strings.php:65
829
  msgid "Something went wrong 🙁"
830
  msgstr ""
831
 
@@ -833,112 +857,112 @@ msgstr ""
833
  msgid "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!"
834
  msgstr ""
835
 
836
- #: redirection-admin.php:198
837
  msgid "Log entries (%d max)"
838
  msgstr ""
839
 
840
- #: redirection-strings.php:305
841
  msgid "Search by IP"
842
  msgstr "依 IP 搜尋"
843
 
844
- #: redirection-strings.php:300
845
  msgid "Select bulk action"
846
  msgstr "選擇批量操作"
847
 
848
- #: redirection-strings.php:301
849
  msgid "Bulk Actions"
850
  msgstr "批量操作"
851
 
852
- #: redirection-strings.php:302
853
  msgid "Apply"
854
  msgstr "套用"
855
 
856
- #: redirection-strings.php:293
857
  msgid "First page"
858
  msgstr "第一頁"
859
 
860
- #: redirection-strings.php:294
861
  msgid "Prev page"
862
  msgstr "前一頁"
863
 
864
- #: redirection-strings.php:295
865
  msgid "Current Page"
866
  msgstr "目前頁數"
867
 
868
- #: redirection-strings.php:296
869
  msgid "of %(page)s"
870
  msgstr "之 %(頁)s"
871
 
872
- #: redirection-strings.php:297
873
  msgid "Next page"
874
  msgstr "下一頁"
875
 
876
- #: redirection-strings.php:298
877
  msgid "Last page"
878
  msgstr "最後頁"
879
 
880
- #: redirection-strings.php:299
881
  msgid "%s item"
882
  msgid_plural "%s items"
883
  msgstr[0] ""
884
 
885
- #: redirection-strings.php:292
886
  msgid "Select All"
887
  msgstr "全選"
888
 
889
- #: redirection-strings.php:304
890
  msgid "Sorry, something went wrong loading the data - please try again"
891
  msgstr ""
892
 
893
- #: redirection-strings.php:303
894
  msgid "No results"
895
  msgstr "無結果"
896
 
897
- #: redirection-strings.php:107
898
  msgid "Delete the logs - are you sure?"
899
  msgstr "刪除記錄 - 您確定嗎?"
900
 
901
- #: redirection-strings.php:108
902
  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."
903
  msgstr ""
904
 
905
- #: redirection-strings.php:109
906
  msgid "Yes! Delete the logs"
907
  msgstr "是!刪除記錄"
908
 
909
- #: redirection-strings.php:110
910
  msgid "No! Don't delete the logs"
911
  msgstr "否!不要刪除記錄"
912
 
913
- #: redirection-strings.php:283
914
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
915
  msgstr ""
916
 
917
- #: redirection-strings.php:282 redirection-strings.php:284
918
  msgid "Newsletter"
919
  msgstr ""
920
 
921
- #: redirection-strings.php:285
922
  msgid "Want to keep up to date with changes to Redirection?"
923
  msgstr ""
924
 
925
- #: redirection-strings.php:286
926
  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."
927
  msgstr ""
928
 
929
- #: redirection-strings.php:287
930
  msgid "Your email address:"
931
  msgstr ""
932
 
933
- #: redirection-strings.php:149
934
  msgid "You've supported this plugin - thank you!"
935
  msgstr ""
936
 
937
- #: redirection-strings.php:152
938
  msgid "You get useful software and I get to carry on making it better."
939
  msgstr ""
940
 
941
- #: redirection-strings.php:160 redirection-strings.php:165
942
  msgid "Forever"
943
  msgstr "永遠"
944
 
@@ -970,140 +994,141 @@ msgstr ""
970
  msgid "Manage all your 301 redirects and monitor 404 errors"
971
  msgstr ""
972
 
973
- #: redirection-strings.php:151
974
  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}}."
975
  msgstr ""
976
 
977
- #: redirection-admin.php:278
978
  msgid "Redirection Support"
979
  msgstr ""
980
 
981
- #: redirection-strings.php:60 redirection-strings.php:140
982
  msgid "Support"
983
  msgstr "支援"
984
 
985
- #: redirection-strings.php:137
986
  msgid "404s"
987
  msgstr "404 錯誤"
988
 
989
- #: redirection-strings.php:136
990
  msgid "Log"
991
  msgstr "記錄"
992
 
993
- #: redirection-strings.php:142
994
  msgid "Delete Redirection"
995
  msgstr "刪除重新導向"
996
 
997
- #: redirection-strings.php:77
998
  msgid "Upload"
999
  msgstr "上傳"
1000
 
1001
- #: redirection-strings.php:88
1002
  msgid "Import"
1003
  msgstr "匯入"
1004
 
1005
- #: redirection-strings.php:195
1006
  msgid "Update"
1007
  msgstr "更新"
1008
 
1009
- #: redirection-strings.php:187
1010
  msgid "Auto-generate URL"
1011
  msgstr "自動產生網址"
1012
 
1013
- #: redirection-strings.php:186
1014
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1015
  msgstr ""
1016
 
1017
- #: redirection-strings.php:185
1018
  msgid "RSS Token"
1019
  msgstr "RSS 動態金鑰"
1020
 
1021
- #: redirection-strings.php:180
1022
  msgid "404 Logs"
1023
  msgstr "404 記錄"
1024
 
1025
- #: redirection-strings.php:179 redirection-strings.php:181
1026
  msgid "(time to keep logs for)"
1027
  msgstr "(保留記錄時間)"
1028
 
1029
- #: redirection-strings.php:178
1030
  msgid "Redirect Logs"
1031
  msgstr "重新導向記錄"
1032
 
1033
- #: redirection-strings.php:177
1034
  msgid "I'm a nice person and I have helped support the author of this plugin"
1035
  msgstr "我是個熱心人,我已經贊助或支援外掛作者"
1036
 
1037
- #: redirection-strings.php:154
1038
  msgid "Plugin Support"
1039
  msgstr "外掛支援"
1040
 
1041
- #: redirection-strings.php:59 redirection-strings.php:139
1042
  msgid "Options"
1043
  msgstr "選項"
1044
 
1045
- #: redirection-strings.php:159
1046
  msgid "Two months"
1047
  msgstr "兩個月"
1048
 
1049
- #: redirection-strings.php:158
1050
  msgid "A month"
1051
  msgstr "一個月"
1052
 
1053
- #: redirection-strings.php:157 redirection-strings.php:164
1054
  msgid "A week"
1055
  msgstr "一週"
1056
 
1057
- #: redirection-strings.php:156 redirection-strings.php:163
1058
  msgid "A day"
1059
  msgstr "一天"
1060
 
1061
- #: redirection-strings.php:155
1062
  msgid "No logs"
1063
  msgstr "不記錄"
1064
 
1065
- #: redirection-strings.php:106
1066
  msgid "Delete All"
1067
  msgstr "全部刪除"
1068
 
1069
- #: redirection-strings.php:43
1070
  msgid "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."
1071
  msgstr ""
1072
 
1073
- #: redirection-strings.php:42
1074
  msgid "Add Group"
1075
  msgstr "新增群組"
1076
 
1077
- #: redirection-strings.php:306
1078
  msgid "Search"
1079
  msgstr "搜尋"
1080
 
1081
- #: redirection-strings.php:55 redirection-strings.php:135
1082
  msgid "Groups"
1083
  msgstr "群組"
1084
 
1085
- #: redirection-strings.php:52 redirection-strings.php:233
 
1086
  msgid "Save"
1087
  msgstr "儲存"
1088
 
1089
- #: redirection-strings.php:231
1090
  msgid "Group"
1091
  msgstr "群組"
1092
 
1093
- #: redirection-strings.php:228
1094
  msgid "Match"
1095
  msgstr "符合"
1096
 
1097
- #: redirection-strings.php:249
1098
  msgid "Add new redirection"
1099
  msgstr "新增重新導向"
1100
 
1101
- #: redirection-strings.php:53 redirection-strings.php:78
1102
- #: redirection-strings.php:236
1103
  msgid "Cancel"
1104
  msgstr "取消"
1105
 
1106
- #: redirection-strings.php:102
1107
  msgid "Download"
1108
  msgstr "下載"
1109
 
@@ -1111,27 +1136,27 @@ msgstr "下載"
1111
  msgid "Redirection"
1112
  msgstr "重新導向"
1113
 
1114
- #: redirection-admin.php:154
1115
  msgid "Settings"
1116
  msgstr "設定"
1117
 
1118
- #: redirection-strings.php:218
1119
  msgid "Do nothing"
1120
  msgstr "什麼也不做"
1121
 
1122
- #: redirection-strings.php:217
1123
  msgid "Error (404)"
1124
  msgstr "錯誤 (404)"
1125
 
1126
- #: redirection-strings.php:216
1127
  msgid "Pass-through"
1128
  msgstr "直接經由"
1129
 
1130
- #: redirection-strings.php:215
1131
  msgid "Redirect to random post"
1132
  msgstr "重新導向隨機發表"
1133
 
1134
- #: redirection-strings.php:214
1135
  msgid "Redirect to URL"
1136
  msgstr "重新導向至網址"
1137
 
@@ -1139,88 +1164,88 @@ msgstr "重新導向至網址"
1139
  msgid "Invalid group when creating redirect"
1140
  msgstr ""
1141
 
1142
- #: redirection-strings.php:115 redirection-strings.php:124
1143
  msgid "IP"
1144
  msgstr "IP"
1145
 
1146
- #: redirection-strings.php:113 redirection-strings.php:122
1147
- #: redirection-strings.php:234
1148
  msgid "Source URL"
1149
  msgstr "來源網址"
1150
 
1151
- #: redirection-strings.php:112 redirection-strings.php:121
1152
  msgid "Date"
1153
  msgstr "日期"
1154
 
1155
- #: redirection-strings.php:126 redirection-strings.php:130
1156
- #: redirection-strings.php:250
1157
  msgid "Add Redirect"
1158
  msgstr "新增重新導向"
1159
 
1160
- #: redirection-strings.php:41
1161
  msgid "All modules"
1162
  msgstr "所有模組"
1163
 
1164
- #: redirection-strings.php:47
1165
  msgid "View Redirects"
1166
  msgstr "檢視重新導向"
1167
 
1168
- #: redirection-strings.php:37 redirection-strings.php:51
1169
  msgid "Module"
1170
  msgstr "模組"
1171
 
1172
- #: redirection-strings.php:36 redirection-strings.php:134
1173
  msgid "Redirects"
1174
  msgstr "重新導向"
1175
 
1176
- #: redirection-strings.php:35 redirection-strings.php:44
1177
- #: redirection-strings.php:50
1178
  msgid "Name"
1179
  msgstr "名稱"
1180
 
1181
- #: redirection-strings.php:291
1182
  msgid "Filter"
1183
  msgstr "篩選"
1184
 
1185
- #: redirection-strings.php:247
1186
  msgid "Reset hits"
1187
  msgstr "重設點擊"
1188
 
1189
- #: redirection-strings.php:39 redirection-strings.php:49
1190
- #: redirection-strings.php:245 redirection-strings.php:275
1191
  msgid "Enable"
1192
  msgstr "啟用"
1193
 
1194
- #: redirection-strings.php:40 redirection-strings.php:48
1195
- #: redirection-strings.php:246 redirection-strings.php:274
1196
  msgid "Disable"
1197
  msgstr "停用"
1198
 
1199
- #: redirection-strings.php:38 redirection-strings.php:46
1200
- #: redirection-strings.php:116 redirection-strings.php:117
1201
- #: redirection-strings.php:125 redirection-strings.php:129
1202
- #: redirection-strings.php:143 redirection-strings.php:244
1203
- #: redirection-strings.php:273
1204
  msgid "Delete"
1205
  msgstr "刪除"
1206
 
1207
- #: redirection-strings.php:45 redirection-strings.php:272
1208
  msgid "Edit"
1209
  msgstr "編輯"
1210
 
1211
- #: redirection-strings.php:243
1212
  msgid "Last Access"
1213
  msgstr "最後存取"
1214
 
1215
- #: redirection-strings.php:242
1216
  msgid "Hits"
1217
  msgstr "點擊"
1218
 
1219
- #: redirection-strings.php:240
1220
  msgid "URL"
1221
  msgstr "網址"
1222
 
1223
- #: redirection-strings.php:239
1224
  msgid "Type"
1225
  msgstr "類型"
1226
 
@@ -1228,48 +1253,48 @@ msgstr "類型"
1228
  msgid "Modified Posts"
1229
  msgstr "特定發表"
1230
 
1231
- #: models/database.php:138 models/group.php:150 redirection-strings.php:54
1232
  msgid "Redirections"
1233
  msgstr "重新導向"
1234
 
1235
- #: redirection-strings.php:251
1236
  msgid "User Agent"
1237
  msgstr "使用者代理程式"
1238
 
1239
- #: matches/user-agent.php:10 redirection-strings.php:210
1240
  msgid "URL and user agent"
1241
  msgstr "網址與使用者代理程式"
1242
 
1243
- #: redirection-strings.php:206
1244
  msgid "Target URL"
1245
  msgstr "目標網址"
1246
 
1247
- #: matches/url.php:7 redirection-strings.php:207
1248
  msgid "URL only"
1249
  msgstr "僅限網址"
1250
 
1251
- #: redirection-strings.php:235 redirection-strings.php:256
1252
- #: redirection-strings.php:260 redirection-strings.php:268
1253
- #: redirection-strings.php:271
1254
  msgid "Regex"
1255
  msgstr "正則表達式"
1256
 
1257
- #: redirection-strings.php:270
1258
  msgid "Referrer"
1259
  msgstr "引用頁"
1260
 
1261
- #: matches/referrer.php:10 redirection-strings.php:209
1262
  msgid "URL and referrer"
1263
  msgstr "網址與引用頁"
1264
 
1265
- #: redirection-strings.php:200
1266
  msgid "Logged Out"
1267
  msgstr "已登出"
1268
 
1269
- #: redirection-strings.php:198
1270
  msgid "Logged In"
1271
  msgstr "已登入"
1272
 
1273
- #: matches/login.php:8 redirection-strings.php:208
1274
  msgid "URL and login status"
1275
  msgstr "網址與登入狀態"
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-04-25 08:34:25+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: zh_TW\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:175
15
+ msgid "Form request"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:174
19
+ msgid "Relative /wp-json/"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:173
23
+ msgid "Proxy over Admin AJAX"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:171
27
+ msgid "Default /wp-json/"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:17
31
+ msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
32
+ msgstr ""
33
+
34
+ #: models/fixer.php:57
35
+ msgid "Site and home protocol"
36
+ msgstr ""
37
+
38
+ #: models/fixer.php:52
39
+ msgid "Site and home URL are inconsistent - please correct from your General settings"
40
+ msgstr ""
41
+
42
+ #: models/fixer.php:50
43
+ msgid "Site and home are consistent"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:273
47
  msgid "Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:271
51
  msgid "Accept Language"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:269
55
  msgid "Header value"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:268
59
  msgid "Header name"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:267
63
  msgid "HTTP Header"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:266
67
  msgid "WordPress filter name"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:265
71
  msgid "Filter Name"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:263
75
  msgid "Cookie value"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:262
79
  msgid "Cookie name"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:261
83
  msgid "Cookie"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:231
87
  msgid "Optional description"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:205 redirection-strings.php:209
91
  msgid "Target URL when not matched"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:203 redirection-strings.php:207
95
  msgid "Target URL when matched"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:66
99
  msgid "clearing your cache."
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:65
103
  msgid "If you are using a caching system such as Cloudflare then please read this: "
104
  msgstr ""
105
 
106
+ #: matches/http-header.php:11 redirection-strings.php:216
107
  msgid "URL and HTTP header"
108
  msgstr ""
109
 
110
+ #: matches/custom-filter.php:9 redirection-strings.php:217
111
  msgid "URL and custom filter"
112
  msgstr ""
113
 
114
+ #: matches/cookie.php:7 redirection-strings.php:215
115
  msgid "URL and cookie"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:326
119
  msgid "404 deleted"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:172
 
 
 
 
123
  msgid "Raw /index.php?rest_route=/"
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:197
 
 
 
 
127
  msgid "REST API"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:198
131
  msgid "How Redirection uses the REST API - don't change unless necessary"
132
  msgstr ""
133
 
155
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
156
  msgstr ""
157
 
158
+ #: redirection-strings.php:19
159
  msgid "None of the suggestions helped"
160
  msgstr ""
161
 
162
+ #: redirection-admin.php:414
163
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
164
  msgstr ""
165
 
166
+ #: redirection-admin.php:408
167
  msgid "Unable to load Redirection ☹️"
168
  msgstr ""
169
 
170
+ #: models/fixer.php:96
171
  msgid "WordPress REST API is working at %s"
172
  msgstr ""
173
 
174
+ #: models/fixer.php:93
175
  msgid "WordPress REST API"
176
  msgstr ""
177
 
178
+ #: models/fixer.php:85
179
  msgid "REST API is not working so routes not checked"
180
  msgstr ""
181
 
182
+ #: models/fixer.php:80
183
  msgid "Redirection routes are working"
184
  msgstr ""
185
 
186
+ #: models/fixer.php:74
187
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
188
  msgstr ""
189
 
190
+ #: models/fixer.php:66
191
  msgid "Redirection routes"
192
  msgstr ""
193
 
199
  msgid "https://johngodley.com"
200
  msgstr ""
201
 
202
+ #: redirection-strings.php:311
203
  msgid "Useragent Error"
204
  msgstr ""
205
 
206
+ #: redirection-strings.php:313
207
  msgid "Unknown Useragent"
208
  msgstr ""
209
 
210
+ #: redirection-strings.php:314
211
  msgid "Device"
212
  msgstr ""
213
 
214
+ #: redirection-strings.php:315
215
  msgid "Operating System"
216
  msgstr ""
217
 
218
+ #: redirection-strings.php:316
219
  msgid "Browser"
220
  msgstr ""
221
 
222
+ #: redirection-strings.php:317
223
  msgid "Engine"
224
  msgstr ""
225
 
226
+ #: redirection-strings.php:318
227
  msgid "Useragent"
228
  msgstr ""
229
 
230
+ #: redirection-strings.php:319
231
  msgid "Agent"
232
  msgstr ""
233
 
234
+ #: redirection-strings.php:168
235
  msgid "No IP logging"
236
  msgstr ""
237
 
238
+ #: redirection-strings.php:169
239
  msgid "Full IP logging"
240
  msgstr ""
241
 
242
+ #: redirection-strings.php:170
243
  msgid "Anonymize IP (mask last part)"
244
  msgstr ""
245
 
246
+ #: redirection-strings.php:180
247
  msgid "Monitor changes to %(type)s"
248
  msgstr ""
249
 
250
+ #: redirection-strings.php:186
251
  msgid "IP Logging"
252
  msgstr ""
253
 
254
+ #: redirection-strings.php:187
255
  msgid "(select IP logging level)"
256
  msgstr ""
257
 
258
+ #: redirection-strings.php:120 redirection-strings.php:133
259
  msgid "Geo Info"
260
  msgstr ""
261
 
262
+ #: redirection-strings.php:121 redirection-strings.php:134
263
  msgid "Agent Info"
264
  msgstr ""
265
 
266
+ #: redirection-strings.php:122 redirection-strings.php:135
267
  msgid "Filter by IP"
268
  msgstr ""
269
 
270
+ #: redirection-strings.php:116 redirection-strings.php:125
271
  msgid "Referrer / User Agent"
272
  msgstr ""
273
 
274
+ #: redirection-strings.php:25
275
  msgid "Geo IP Error"
276
  msgstr ""
277
 
278
+ #: redirection-strings.php:26 redirection-strings.php:312
279
  msgid "Something went wrong obtaining this information"
280
  msgstr ""
281
 
282
+ #: redirection-strings.php:28
283
  msgid "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."
284
  msgstr ""
285
 
286
+ #: redirection-strings.php:30
287
  msgid "No details are known for this address."
288
  msgstr ""
289
 
290
+ #: redirection-strings.php:27 redirection-strings.php:29
291
+ #: redirection-strings.php:31
292
  msgid "Geo IP"
293
  msgstr ""
294
 
295
+ #: redirection-strings.php:32
296
  msgid "City"
297
  msgstr ""
298
 
299
+ #: redirection-strings.php:33
300
  msgid "Area"
301
  msgstr ""
302
 
303
+ #: redirection-strings.php:34
304
  msgid "Timezone"
305
  msgstr ""
306
 
307
+ #: redirection-strings.php:35
308
  msgid "Geo Location"
309
  msgstr ""
310
 
311
+ #: redirection-strings.php:36 redirection-strings.php:320
312
  msgid "Powered by {{link}}redirect.li{{/link}}"
313
  msgstr ""
314
 
316
  msgid "Trash"
317
  msgstr ""
318
 
319
+ #: redirection-admin.php:413
320
  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"
321
  msgstr ""
322
 
323
+ #: redirection-admin.php:308
324
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
325
  msgstr ""
326
 
328
  msgid "https://redirection.me/"
329
  msgstr ""
330
 
331
+ #: redirection-strings.php:282
332
  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."
333
  msgstr ""
334
 
335
+ #: redirection-strings.php:283
336
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
337
  msgstr ""
338
 
339
+ #: redirection-strings.php:285
340
  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!"
341
  msgstr ""
342
 
343
+ #: redirection-strings.php:163
344
  msgid "Never cache"
345
  msgstr ""
346
 
347
+ #: redirection-strings.php:164
348
  msgid "An hour"
349
  msgstr ""
350
 
351
+ #: redirection-strings.php:195
352
  msgid "Redirect Cache"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:196
356
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:87
360
  msgid "Are you sure you want to import from %s?"
361
  msgstr ""
362
 
363
+ #: redirection-strings.php:88
364
  msgid "Plugin Importers"
365
  msgstr ""
366
 
367
+ #: redirection-strings.php:89
368
  msgid "The following redirect plugins were detected on your site and can be imported from."
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:72
372
  msgid "total = "
373
  msgstr ""
374
 
375
+ #: redirection-strings.php:73
376
  msgid "Import from %s"
377
  msgstr ""
378
 
379
+ #: redirection-admin.php:370
380
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
381
  msgstr ""
382
 
383
+ #: redirection-admin.php:369
384
  msgid "Redirection not installed properly"
385
  msgstr ""
386
 
387
+ #: redirection-admin.php:351
388
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
389
  msgstr ""
390
 
392
  msgid "Default WordPress \"old slugs\""
393
  msgstr ""
394
 
395
+ #: redirection-strings.php:179
396
  msgid "Create associated redirect (added to end of URL)"
397
  msgstr ""
398
 
399
+ #: redirection-admin.php:416
400
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:292
404
  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."
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:293
408
  msgid "⚡️ Magic fix ⚡️"
409
  msgstr ""
410
 
411
+ #: redirection-strings.php:294
412
  msgid "Plugin Status"
413
  msgstr ""
414
 
415
+ #: redirection-strings.php:256 redirection-strings.php:270
416
  msgid "Custom"
417
  msgstr ""
418
 
419
+ #: redirection-strings.php:257
420
  msgid "Mobile"
421
  msgstr ""
422
 
423
+ #: redirection-strings.php:258
424
  msgid "Feed Readers"
425
  msgstr ""
426
 
427
+ #: redirection-strings.php:259
428
  msgid "Libraries"
429
  msgstr ""
430
 
431
+ #: redirection-strings.php:176
432
  msgid "URL Monitor Changes"
433
  msgstr ""
434
 
435
+ #: redirection-strings.php:177
436
  msgid "Save changes to this group"
437
  msgstr ""
438
 
439
+ #: redirection-strings.php:178
440
  msgid "For example \"/amp\""
441
  msgstr ""
442
 
443
+ #: redirection-strings.php:188
444
  msgid "URL Monitor"
445
  msgstr ""
446
 
447
+ #: redirection-strings.php:129
448
  msgid "Delete 404s"
449
  msgstr ""
450
 
451
+ #: redirection-strings.php:130
452
  msgid "Delete all logs for this 404"
453
  msgstr ""
454
 
455
+ #: redirection-strings.php:106
456
  msgid "Delete all from IP %s"
457
  msgstr ""
458
 
459
+ #: redirection-strings.php:107
460
  msgid "Delete all matching \"%s\""
461
  msgstr ""
462
 
464
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
465
  msgstr ""
466
 
467
+ #: redirection-admin.php:411
468
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
469
  msgstr ""
470
 
471
+ #: redirection-admin.php:410 redirection-strings.php:69
472
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
473
  msgstr ""
474
 
475
+ #: redirection-admin.php:350
476
  msgid "Unable to load Redirection"
477
  msgstr ""
478
 
479
+ #: models/fixer.php:222
480
  msgid "Unable to create group"
481
  msgstr ""
482
 
483
+ #: models/fixer.php:214
484
  msgid "Failed to fix database tables"
485
  msgstr ""
486
 
532
  msgid "All tables present"
533
  msgstr ""
534
 
535
+ #: redirection-strings.php:63
536
  msgid "Cached Redirection detected"
537
  msgstr ""
538
 
539
+ #: redirection-strings.php:64
540
  msgid "Please clear your browser cache and reload this page."
541
  msgstr ""
542
 
552
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
553
  msgstr ""
554
 
555
+ #: redirection-strings.php:24
556
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
557
  msgstr ""
558
 
559
+ #: redirection-admin.php:415
560
  msgid "If you think Redirection is at fault then create an issue."
561
  msgstr ""
562
 
563
+ #: redirection-admin.php:409
564
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
565
  msgstr ""
566
 
567
+ #: redirection-admin.php:401
568
  msgid "Loading, please wait..."
569
  msgstr ""
570
 
571
+ #: redirection-strings.php:92
572
  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)."
573
  msgstr ""
574
 
575
+ #: redirection-strings.php:68
576
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
577
  msgstr ""
578
 
579
+ #: redirection-strings.php:70
580
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
581
  msgstr ""
582
 
583
+ #: redirection-strings.php:20
584
  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."
585
  msgstr ""
586
 
587
+ #: redirection-admin.php:419 redirection-strings.php:21
588
  msgid "Create Issue"
589
  msgstr ""
590
 
591
+ #: redirection-strings.php:22
592
  msgid "Email"
593
  msgstr ""
594
 
595
+ #: redirection-strings.php:23
596
  msgid "Important details"
597
  msgstr "重要詳細資料"
598
 
599
+ #: redirection-strings.php:281
600
  msgid "Need help?"
601
  msgstr ""
602
 
603
+ #: redirection-strings.php:284
604
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
605
  msgstr ""
606
 
607
+ #: redirection-strings.php:245
608
  msgid "Pos"
609
  msgstr "排序"
610
 
611
+ #: redirection-strings.php:229
612
  msgid "410 - Gone"
613
  msgstr "410 - 已移走"
614
 
615
+ #: redirection-strings.php:236
616
  msgid "Position"
617
  msgstr "排序"
618
 
619
+ #: redirection-strings.php:192
620
  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"
621
  msgstr ""
622
 
623
+ #: redirection-strings.php:193
624
  msgid "Apache Module"
625
  msgstr "Apache 模組"
626
 
627
+ #: redirection-strings.php:194
628
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
629
  msgstr ""
630
 
631
+ #: redirection-strings.php:74
632
  msgid "Import to group"
633
  msgstr "匯入至群組"
634
 
635
+ #: redirection-strings.php:75
636
  msgid "Import a CSV, .htaccess, or JSON file."
637
+ msgstr "匯入 CSV、 .htaccess 或 JSON 檔案。"
638
 
639
+ #: redirection-strings.php:76
640
  msgid "Click 'Add File' or drag and drop here."
641
  msgstr ""
642
 
643
+ #: redirection-strings.php:77
644
  msgid "Add File"
645
  msgstr "新增檔案"
646
 
647
+ #: redirection-strings.php:78
648
  msgid "File selected"
649
  msgstr "檔案已選擇"
650
 
651
+ #: redirection-strings.php:81
652
  msgid "Importing"
653
  msgstr "匯入"
654
 
655
+ #: redirection-strings.php:82
656
  msgid "Finished importing"
657
  msgstr "已完成匯入"
658
 
659
+ #: redirection-strings.php:83
660
  msgid "Total redirects imported:"
661
  msgstr "總共匯入的重新導向:"
662
 
663
+ #: redirection-strings.php:84
664
  msgid "Double-check the file is the correct format!"
665
  msgstr ""
666
 
667
+ #: redirection-strings.php:85
668
  msgid "OK"
669
  msgstr "確定"
670
 
671
+ #: redirection-strings.php:86 redirection-strings.php:241
672
  msgid "Close"
673
  msgstr "關閉"
674
 
675
+ #: redirection-strings.php:91
676
  msgid "All imports will be appended to the current database."
677
  msgstr "所有的匯入將會顯示在目前的資料庫。"
678
 
679
+ #: redirection-strings.php:93 redirection-strings.php:113
680
  msgid "Export"
681
  msgstr "匯出"
682
 
683
+ #: redirection-strings.php:94
684
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
685
  msgstr ""
686
 
687
+ #: redirection-strings.php:95
688
  msgid "Everything"
689
  msgstr "全部"
690
 
691
+ #: redirection-strings.php:96
692
  msgid "WordPress redirects"
693
  msgstr "WordPress 的重新導向"
694
 
695
+ #: redirection-strings.php:97
696
  msgid "Apache redirects"
697
  msgstr "Apache 的重新導向"
698
 
699
+ #: redirection-strings.php:98
700
  msgid "Nginx redirects"
701
  msgstr "Nginx 的重新導向"
702
 
703
+ #: redirection-strings.php:99
704
  msgid "CSV"
705
  msgstr "CSV"
706
 
707
+ #: redirection-strings.php:100
708
  msgid "Apache .htaccess"
709
  msgstr ""
710
 
711
+ #: redirection-strings.php:101
712
  msgid "Nginx rewrite rules"
713
  msgstr ""
714
 
715
+ #: redirection-strings.php:102
716
  msgid "Redirection JSON"
717
  msgstr ""
718
 
719
+ #: redirection-strings.php:103
720
  msgid "View"
721
  msgstr "檢視"
722
 
723
+ #: redirection-strings.php:105
724
  msgid "Log files can be exported from the log pages."
725
  msgstr ""
726
 
727
+ #: redirection-strings.php:58 redirection-strings.php:140
728
  msgid "Import/Export"
729
  msgstr "匯入匯出"
730
 
731
+ #: redirection-strings.php:59
732
  msgid "Logs"
733
  msgstr "記錄"
734
 
735
+ #: redirection-strings.php:60
736
  msgid "404 errors"
737
  msgstr "404 錯誤"
738
 
739
+ #: redirection-strings.php:71
740
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
741
  msgstr ""
742
 
743
+ #: redirection-strings.php:152
744
  msgid "I'd like to support some more."
745
  msgstr ""
746
 
747
+ #: redirection-strings.php:155
748
  msgid "Support 💰"
749
  msgstr "支援 💰"
750
 
751
+ #: redirection-strings.php:322
752
  msgid "Redirection saved"
753
  msgstr "重新導向已儲存"
754
 
755
+ #: redirection-strings.php:323
756
  msgid "Log deleted"
757
  msgstr ""
758
 
759
+ #: redirection-strings.php:324
760
  msgid "Settings saved"
761
  msgstr "設定已儲存"
762
 
763
+ #: redirection-strings.php:325
764
  msgid "Group saved"
765
  msgstr "群組已儲存"
766
 
767
+ #: redirection-strings.php:321
768
  msgid "Are you sure you want to delete this item?"
769
  msgid_plural "Are you sure you want to delete these items?"
770
  msgstr[0] ""
771
 
772
+ #: redirection-strings.php:280
773
  msgid "pass"
774
  msgstr "經由"
775
 
776
+ #: redirection-strings.php:252
777
  msgid "All groups"
778
  msgstr "所有群組"
779
 
780
+ #: redirection-strings.php:223
781
  msgid "301 - Moved Permanently"
782
  msgstr "301 - 已永久移動"
783
 
784
+ #: redirection-strings.php:224
785
  msgid "302 - Found"
786
  msgstr "302 - 找到"
787
 
788
+ #: redirection-strings.php:225
789
  msgid "307 - Temporary Redirect"
790
  msgstr "307 - 暫時重新導向"
791
 
792
+ #: redirection-strings.php:226
793
  msgid "308 - Permanent Redirect"
794
  msgstr "308 - 永久重新導向"
795
 
796
+ #: redirection-strings.php:227
797
  msgid "401 - Unauthorized"
798
  msgstr "401 - 未授權"
799
 
800
+ #: redirection-strings.php:228
801
  msgid "404 - Not Found"
802
  msgstr "404 - 找不到頁面"
803
 
804
+ #: redirection-strings.php:230
805
  msgid "Title"
806
  msgstr "標題"
807
 
808
+ #: redirection-strings.php:233
809
  msgid "When matched"
810
  msgstr "當符合"
811
 
812
+ #: redirection-strings.php:234
813
  msgid "with HTTP code"
814
  msgstr ""
815
 
816
+ #: redirection-strings.php:242
817
  msgid "Show advanced options"
818
  msgstr "顯示進階選項"
819
 
820
+ #: redirection-strings.php:206
821
  msgid "Matched Target"
822
  msgstr "有符合目標"
823
 
824
+ #: redirection-strings.php:208
825
  msgid "Unmatched Target"
826
  msgstr "無符合目標"
827
 
828
+ #: redirection-strings.php:200 redirection-strings.php:201
829
  msgid "Saving..."
830
  msgstr "儲存…"
831
 
832
+ #: redirection-strings.php:143
833
  msgid "View notice"
834
  msgstr "檢視注意事項"
835
 
849
  msgid "Unable to add new redirect"
850
  msgstr ""
851
 
852
+ #: redirection-strings.php:11 redirection-strings.php:67
853
  msgid "Something went wrong 🙁"
854
  msgstr ""
855
 
857
  msgid "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!"
858
  msgstr ""
859
 
860
+ #: redirection-admin.php:203
861
  msgid "Log entries (%d max)"
862
  msgstr ""
863
 
864
+ #: redirection-strings.php:309
865
  msgid "Search by IP"
866
  msgstr "依 IP 搜尋"
867
 
868
+ #: redirection-strings.php:304
869
  msgid "Select bulk action"
870
  msgstr "選擇批量操作"
871
 
872
+ #: redirection-strings.php:305
873
  msgid "Bulk Actions"
874
  msgstr "批量操作"
875
 
876
+ #: redirection-strings.php:306
877
  msgid "Apply"
878
  msgstr "套用"
879
 
880
+ #: redirection-strings.php:297
881
  msgid "First page"
882
  msgstr "第一頁"
883
 
884
+ #: redirection-strings.php:298
885
  msgid "Prev page"
886
  msgstr "前一頁"
887
 
888
+ #: redirection-strings.php:299
889
  msgid "Current Page"
890
  msgstr "目前頁數"
891
 
892
+ #: redirection-strings.php:300
893
  msgid "of %(page)s"
894
  msgstr "之 %(頁)s"
895
 
896
+ #: redirection-strings.php:301
897
  msgid "Next page"
898
  msgstr "下一頁"
899
 
900
+ #: redirection-strings.php:302
901
  msgid "Last page"
902
  msgstr "最後頁"
903
 
904
+ #: redirection-strings.php:303
905
  msgid "%s item"
906
  msgid_plural "%s items"
907
  msgstr[0] ""
908
 
909
+ #: redirection-strings.php:296
910
  msgid "Select All"
911
  msgstr "全選"
912
 
913
+ #: redirection-strings.php:308
914
  msgid "Sorry, something went wrong loading the data - please try again"
915
  msgstr ""
916
 
917
+ #: redirection-strings.php:307
918
  msgid "No results"
919
  msgstr "無結果"
920
 
921
+ #: redirection-strings.php:109
922
  msgid "Delete the logs - are you sure?"
923
  msgstr "刪除記錄 - 您確定嗎?"
924
 
925
+ #: redirection-strings.php:110
926
  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."
927
  msgstr ""
928
 
929
+ #: redirection-strings.php:111
930
  msgid "Yes! Delete the logs"
931
  msgstr "是!刪除記錄"
932
 
933
+ #: redirection-strings.php:112
934
  msgid "No! Don't delete the logs"
935
  msgstr "否!不要刪除記錄"
936
 
937
+ #: redirection-strings.php:287
938
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
939
  msgstr ""
940
 
941
+ #: redirection-strings.php:286 redirection-strings.php:288
942
  msgid "Newsletter"
943
  msgstr ""
944
 
945
+ #: redirection-strings.php:289
946
  msgid "Want to keep up to date with changes to Redirection?"
947
  msgstr ""
948
 
949
+ #: redirection-strings.php:290
950
  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."
951
  msgstr ""
952
 
953
+ #: redirection-strings.php:291
954
  msgid "Your email address:"
955
  msgstr ""
956
 
957
+ #: redirection-strings.php:151
958
  msgid "You've supported this plugin - thank you!"
959
  msgstr ""
960
 
961
+ #: redirection-strings.php:154
962
  msgid "You get useful software and I get to carry on making it better."
963
  msgstr ""
964
 
965
+ #: redirection-strings.php:162 redirection-strings.php:167
966
  msgid "Forever"
967
  msgstr "永遠"
968
 
994
  msgid "Manage all your 301 redirects and monitor 404 errors"
995
  msgstr ""
996
 
997
+ #: redirection-strings.php:153
998
  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}}."
999
  msgstr ""
1000
 
1001
+ #: redirection-admin.php:307
1002
  msgid "Redirection Support"
1003
  msgstr ""
1004
 
1005
+ #: redirection-strings.php:62 redirection-strings.php:142
1006
  msgid "Support"
1007
  msgstr "支援"
1008
 
1009
+ #: redirection-strings.php:139
1010
  msgid "404s"
1011
  msgstr "404 錯誤"
1012
 
1013
+ #: redirection-strings.php:138
1014
  msgid "Log"
1015
  msgstr "記錄"
1016
 
1017
+ #: redirection-strings.php:149
1018
  msgid "Delete Redirection"
1019
  msgstr "刪除重新導向"
1020
 
1021
+ #: redirection-strings.php:79
1022
  msgid "Upload"
1023
  msgstr "上傳"
1024
 
1025
+ #: redirection-strings.php:90
1026
  msgid "Import"
1027
  msgstr "匯入"
1028
 
1029
+ #: redirection-strings.php:199
1030
  msgid "Update"
1031
  msgstr "更新"
1032
 
1033
+ #: redirection-strings.php:191
1034
  msgid "Auto-generate URL"
1035
  msgstr "自動產生網址"
1036
 
1037
+ #: redirection-strings.php:190
1038
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1039
  msgstr ""
1040
 
1041
+ #: redirection-strings.php:189
1042
  msgid "RSS Token"
1043
  msgstr "RSS 動態金鑰"
1044
 
1045
+ #: redirection-strings.php:184
1046
  msgid "404 Logs"
1047
  msgstr "404 記錄"
1048
 
1049
+ #: redirection-strings.php:183 redirection-strings.php:185
1050
  msgid "(time to keep logs for)"
1051
  msgstr "(保留記錄時間)"
1052
 
1053
+ #: redirection-strings.php:182
1054
  msgid "Redirect Logs"
1055
  msgstr "重新導向記錄"
1056
 
1057
+ #: redirection-strings.php:181
1058
  msgid "I'm a nice person and I have helped support the author of this plugin"
1059
  msgstr "我是個熱心人,我已經贊助或支援外掛作者"
1060
 
1061
+ #: redirection-strings.php:156
1062
  msgid "Plugin Support"
1063
  msgstr "外掛支援"
1064
 
1065
+ #: redirection-strings.php:61 redirection-strings.php:141
1066
  msgid "Options"
1067
  msgstr "選項"
1068
 
1069
+ #: redirection-strings.php:161
1070
  msgid "Two months"
1071
  msgstr "兩個月"
1072
 
1073
+ #: redirection-strings.php:160
1074
  msgid "A month"
1075
  msgstr "一個月"
1076
 
1077
+ #: redirection-strings.php:159 redirection-strings.php:166
1078
  msgid "A week"
1079
  msgstr "一週"
1080
 
1081
+ #: redirection-strings.php:158 redirection-strings.php:165
1082
  msgid "A day"
1083
  msgstr "一天"
1084
 
1085
+ #: redirection-strings.php:157
1086
  msgid "No logs"
1087
  msgstr "不記錄"
1088
 
1089
+ #: redirection-strings.php:108
1090
  msgid "Delete All"
1091
  msgstr "全部刪除"
1092
 
1093
+ #: redirection-strings.php:45
1094
  msgid "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."
1095
  msgstr ""
1096
 
1097
+ #: redirection-strings.php:44
1098
  msgid "Add Group"
1099
  msgstr "新增群組"
1100
 
1101
+ #: redirection-strings.php:310
1102
  msgid "Search"
1103
  msgstr "搜尋"
1104
 
1105
+ #: redirection-strings.php:57 redirection-strings.php:137
1106
  msgid "Groups"
1107
  msgstr "群組"
1108
 
1109
+ #: redirection-strings.php:18 redirection-strings.php:54
1110
+ #: redirection-strings.php:237
1111
  msgid "Save"
1112
  msgstr "儲存"
1113
 
1114
+ #: redirection-strings.php:235
1115
  msgid "Group"
1116
  msgstr "群組"
1117
 
1118
+ #: redirection-strings.php:232
1119
  msgid "Match"
1120
  msgstr "符合"
1121
 
1122
+ #: redirection-strings.php:253
1123
  msgid "Add new redirection"
1124
  msgstr "新增重新導向"
1125
 
1126
+ #: redirection-strings.php:55 redirection-strings.php:80
1127
+ #: redirection-strings.php:240
1128
  msgid "Cancel"
1129
  msgstr "取消"
1130
 
1131
+ #: redirection-strings.php:104
1132
  msgid "Download"
1133
  msgstr "下載"
1134
 
1136
  msgid "Redirection"
1137
  msgstr "重新導向"
1138
 
1139
+ #: redirection-admin.php:159
1140
  msgid "Settings"
1141
  msgstr "設定"
1142
 
1143
+ #: redirection-strings.php:222
1144
  msgid "Do nothing"
1145
  msgstr "什麼也不做"
1146
 
1147
+ #: redirection-strings.php:221
1148
  msgid "Error (404)"
1149
  msgstr "錯誤 (404)"
1150
 
1151
+ #: redirection-strings.php:220
1152
  msgid "Pass-through"
1153
  msgstr "直接經由"
1154
 
1155
+ #: redirection-strings.php:219
1156
  msgid "Redirect to random post"
1157
  msgstr "重新導向隨機發表"
1158
 
1159
+ #: redirection-strings.php:218
1160
  msgid "Redirect to URL"
1161
  msgstr "重新導向至網址"
1162
 
1164
  msgid "Invalid group when creating redirect"
1165
  msgstr ""
1166
 
1167
+ #: redirection-strings.php:117 redirection-strings.php:126
1168
  msgid "IP"
1169
  msgstr "IP"
1170
 
1171
+ #: redirection-strings.php:115 redirection-strings.php:124
1172
+ #: redirection-strings.php:238
1173
  msgid "Source URL"
1174
  msgstr "來源網址"
1175
 
1176
+ #: redirection-strings.php:114 redirection-strings.php:123
1177
  msgid "Date"
1178
  msgstr "日期"
1179
 
1180
+ #: redirection-strings.php:128 redirection-strings.php:132
1181
+ #: redirection-strings.php:254
1182
  msgid "Add Redirect"
1183
  msgstr "新增重新導向"
1184
 
1185
+ #: redirection-strings.php:43
1186
  msgid "All modules"
1187
  msgstr "所有模組"
1188
 
1189
+ #: redirection-strings.php:49
1190
  msgid "View Redirects"
1191
  msgstr "檢視重新導向"
1192
 
1193
+ #: redirection-strings.php:39 redirection-strings.php:53
1194
  msgid "Module"
1195
  msgstr "模組"
1196
 
1197
+ #: redirection-strings.php:38 redirection-strings.php:136
1198
  msgid "Redirects"
1199
  msgstr "重新導向"
1200
 
1201
+ #: redirection-strings.php:37 redirection-strings.php:46
1202
+ #: redirection-strings.php:52
1203
  msgid "Name"
1204
  msgstr "名稱"
1205
 
1206
+ #: redirection-strings.php:295
1207
  msgid "Filter"
1208
  msgstr "篩選"
1209
 
1210
+ #: redirection-strings.php:251
1211
  msgid "Reset hits"
1212
  msgstr "重設點擊"
1213
 
1214
+ #: redirection-strings.php:41 redirection-strings.php:51
1215
+ #: redirection-strings.php:249 redirection-strings.php:279
1216
  msgid "Enable"
1217
  msgstr "啟用"
1218
 
1219
+ #: redirection-strings.php:42 redirection-strings.php:50
1220
+ #: redirection-strings.php:250 redirection-strings.php:278
1221
  msgid "Disable"
1222
  msgstr "停用"
1223
 
1224
+ #: redirection-strings.php:40 redirection-strings.php:48
1225
+ #: redirection-strings.php:118 redirection-strings.php:119
1226
+ #: redirection-strings.php:127 redirection-strings.php:131
1227
+ #: redirection-strings.php:150 redirection-strings.php:248
1228
+ #: redirection-strings.php:277
1229
  msgid "Delete"
1230
  msgstr "刪除"
1231
 
1232
+ #: redirection-strings.php:47 redirection-strings.php:276
1233
  msgid "Edit"
1234
  msgstr "編輯"
1235
 
1236
+ #: redirection-strings.php:247
1237
  msgid "Last Access"
1238
  msgstr "最後存取"
1239
 
1240
+ #: redirection-strings.php:246
1241
  msgid "Hits"
1242
  msgstr "點擊"
1243
 
1244
+ #: redirection-strings.php:244
1245
  msgid "URL"
1246
  msgstr "網址"
1247
 
1248
+ #: redirection-strings.php:243
1249
  msgid "Type"
1250
  msgstr "類型"
1251
 
1253
  msgid "Modified Posts"
1254
  msgstr "特定發表"
1255
 
1256
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:56
1257
  msgid "Redirections"
1258
  msgstr "重新導向"
1259
 
1260
+ #: redirection-strings.php:255
1261
  msgid "User Agent"
1262
  msgstr "使用者代理程式"
1263
 
1264
+ #: matches/user-agent.php:10 redirection-strings.php:214
1265
  msgid "URL and user agent"
1266
  msgstr "網址與使用者代理程式"
1267
 
1268
+ #: redirection-strings.php:210
1269
  msgid "Target URL"
1270
  msgstr "目標網址"
1271
 
1272
+ #: matches/url.php:7 redirection-strings.php:211
1273
  msgid "URL only"
1274
  msgstr "僅限網址"
1275
 
1276
+ #: redirection-strings.php:239 redirection-strings.php:260
1277
+ #: redirection-strings.php:264 redirection-strings.php:272
1278
+ #: redirection-strings.php:275
1279
  msgid "Regex"
1280
  msgstr "正則表達式"
1281
 
1282
+ #: redirection-strings.php:274
1283
  msgid "Referrer"
1284
  msgstr "引用頁"
1285
 
1286
+ #: matches/referrer.php:10 redirection-strings.php:213
1287
  msgid "URL and referrer"
1288
  msgstr "網址與引用頁"
1289
 
1290
+ #: redirection-strings.php:204
1291
  msgid "Logged Out"
1292
  msgstr "已登出"
1293
 
1294
+ #: redirection-strings.php:202
1295
  msgid "Logged In"
1296
  msgstr "已登入"
1297
 
1298
+ #: matches/login.php:8 redirection-strings.php:212
1299
  msgid "URL and login status"
1300
  msgstr "網址與登入狀態"
locale/redirection.pot CHANGED
@@ -14,75 +14,75 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
- #: redirection-admin.php:159
18
  msgid "Settings"
19
  msgstr ""
20
 
21
- #: redirection-admin.php:203
22
  msgid "Log entries (%d max)"
23
  msgstr ""
24
 
25
- #: redirection-admin.php:307
26
  msgid "Redirection Support"
27
  msgstr ""
28
 
29
- #: redirection-admin.php:308
30
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
31
  msgstr ""
32
 
33
- #: redirection-admin.php:350
34
  msgid "Unable to load Redirection"
35
  msgstr ""
36
 
37
- #: redirection-admin.php:351
38
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
39
  msgstr ""
40
 
41
- #: redirection-admin.php:369
42
  msgid "Redirection not installed properly"
43
  msgstr ""
44
 
45
- #: redirection-admin.php:370
46
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
47
  msgstr ""
48
 
49
- #: redirection-admin.php:401
50
  msgid "Loading, please wait..."
51
  msgstr ""
52
 
53
- #: redirection-admin.php:408
54
  msgid "Unable to load Redirection ☹️"
55
  msgstr ""
56
 
57
- #: redirection-admin.php:409
58
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
59
  msgstr ""
60
 
61
- #: redirection-admin.php:410, redirection-strings.php:69
62
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
63
  msgstr ""
64
 
65
- #: redirection-admin.php:411
66
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
67
  msgstr ""
68
 
69
- #: redirection-admin.php:413
70
  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"
71
  msgstr ""
72
 
73
- #: redirection-admin.php:414
74
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
75
  msgstr ""
76
 
77
- #: redirection-admin.php:415
78
  msgid "If you think Redirection is at fault then create an issue."
79
  msgstr ""
80
 
81
- #: redirection-admin.php:416
82
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
83
  msgstr ""
84
 
85
- #: redirection-admin.php:419, redirection-strings.php:21
86
  msgid "Create Issue"
87
  msgstr ""
88
 
@@ -1158,83 +1158,84 @@ msgstr ""
1158
  msgid "The following tables are missing:"
1159
  msgstr ""
1160
 
1161
- #: models/fixer.php:21
1162
  msgid "Database tables"
1163
  msgstr ""
1164
 
1165
- #: models/fixer.php:23
1166
  msgid "Valid groups"
1167
  msgstr ""
1168
 
1169
- #: models/fixer.php:25
1170
  msgid "No valid groups, so you will not be able to create any redirects"
1171
  msgstr ""
1172
 
1173
- #: models/fixer.php:25
1174
  msgid "Valid groups detected"
1175
  msgstr ""
1176
 
1177
- #: models/fixer.php:29
1178
  msgid "Valid redirect group"
1179
  msgstr ""
1180
 
1181
- #: models/fixer.php:31
1182
  msgid "Redirects with invalid groups detected"
1183
  msgstr ""
1184
 
1185
- #: models/fixer.php:31
1186
  msgid "All redirects have a valid group"
1187
  msgstr ""
1188
 
1189
- #: models/fixer.php:35
1190
  msgid "Post monitor group"
1191
  msgstr ""
1192
 
1193
- #: models/fixer.php:37
1194
  msgid "Post monitor group is invalid"
1195
  msgstr ""
1196
 
1197
- #: models/fixer.php:50
1198
  msgid "Site and home are consistent"
1199
  msgstr ""
1200
 
1201
- #: models/fixer.php:52
1202
  msgid "Site and home URL are inconsistent - please correct from your General settings"
1203
  msgstr ""
1204
 
1205
- #: models/fixer.php:57
1206
  msgid "Site and home protocol"
1207
  msgstr ""
1208
 
1209
- #: models/fixer.php:66
1210
  msgid "Redirection routes"
1211
  msgstr ""
1212
 
1213
- #: models/fixer.php:74
1214
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
1215
  msgstr ""
1216
 
1217
- #: models/fixer.php:80
1218
  msgid "Redirection routes are working"
1219
  msgstr ""
1220
 
1221
- #: models/fixer.php:85
1222
  msgid "REST API is not working so routes not checked"
1223
  msgstr ""
1224
 
1225
- #: models/fixer.php:93
1226
  msgid "WordPress REST API"
1227
  msgstr ""
1228
 
1229
- #: models/fixer.php:96
 
1230
  msgid "WordPress REST API is working at %s"
1231
  msgstr ""
1232
 
1233
- #: models/fixer.php:214
1234
  msgid "Failed to fix database tables"
1235
  msgstr ""
1236
 
1237
- #: models/fixer.php:222
1238
  msgid "Unable to create group"
1239
  msgstr ""
1240
 
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
+ #: redirection-admin.php:160
18
  msgid "Settings"
19
  msgstr ""
20
 
21
+ #: redirection-admin.php:204
22
  msgid "Log entries (%d max)"
23
  msgstr ""
24
 
25
+ #: redirection-admin.php:310
26
  msgid "Redirection Support"
27
  msgstr ""
28
 
29
+ #: redirection-admin.php:311
30
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
31
  msgstr ""
32
 
33
+ #: redirection-admin.php:353
34
  msgid "Unable to load Redirection"
35
  msgstr ""
36
 
37
+ #: redirection-admin.php:354
38
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
39
  msgstr ""
40
 
41
+ #: redirection-admin.php:372
42
  msgid "Redirection not installed properly"
43
  msgstr ""
44
 
45
+ #: redirection-admin.php:373
46
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
47
  msgstr ""
48
 
49
+ #: redirection-admin.php:404
50
  msgid "Loading, please wait..."
51
  msgstr ""
52
 
53
+ #: redirection-admin.php:411
54
  msgid "Unable to load Redirection ☹️"
55
  msgstr ""
56
 
57
+ #: redirection-admin.php:412
58
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
59
  msgstr ""
60
 
61
+ #: redirection-admin.php:413, redirection-strings.php:69
62
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
63
  msgstr ""
64
 
65
+ #: redirection-admin.php:414
66
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
67
  msgstr ""
68
 
69
+ #: redirection-admin.php:416
70
  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"
71
  msgstr ""
72
 
73
+ #: redirection-admin.php:417
74
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
75
  msgstr ""
76
 
77
+ #: redirection-admin.php:418
78
  msgid "If you think Redirection is at fault then create an issue."
79
  msgstr ""
80
 
81
+ #: redirection-admin.php:419
82
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
83
  msgstr ""
84
 
85
+ #: redirection-admin.php:422, redirection-strings.php:21
86
  msgid "Create Issue"
87
  msgstr ""
88
 
1158
  msgid "The following tables are missing:"
1159
  msgstr ""
1160
 
1161
+ #: models/fixer.php:23
1162
  msgid "Database tables"
1163
  msgstr ""
1164
 
1165
+ #: models/fixer.php:26
1166
  msgid "Valid groups"
1167
  msgstr ""
1168
 
1169
+ #: models/fixer.php:28
1170
  msgid "No valid groups, so you will not be able to create any redirects"
1171
  msgstr ""
1172
 
1173
+ #: models/fixer.php:28
1174
  msgid "Valid groups detected"
1175
  msgstr ""
1176
 
1177
+ #: models/fixer.php:32
1178
  msgid "Valid redirect group"
1179
  msgstr ""
1180
 
1181
+ #: models/fixer.php:34
1182
  msgid "Redirects with invalid groups detected"
1183
  msgstr ""
1184
 
1185
+ #: models/fixer.php:34
1186
  msgid "All redirects have a valid group"
1187
  msgstr ""
1188
 
1189
+ #: models/fixer.php:38
1190
  msgid "Post monitor group"
1191
  msgstr ""
1192
 
1193
+ #: models/fixer.php:40
1194
  msgid "Post monitor group is invalid"
1195
  msgstr ""
1196
 
1197
+ #: models/fixer.php:53
1198
  msgid "Site and home are consistent"
1199
  msgstr ""
1200
 
1201
+ #: models/fixer.php:55
1202
  msgid "Site and home URL are inconsistent - please correct from your General settings"
1203
  msgstr ""
1204
 
1205
+ #: models/fixer.php:60
1206
  msgid "Site and home protocol"
1207
  msgstr ""
1208
 
1209
+ #: models/fixer.php:69
1210
  msgid "Redirection routes"
1211
  msgstr ""
1212
 
1213
+ #: models/fixer.php:77
1214
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
1215
  msgstr ""
1216
 
1217
+ #: models/fixer.php:83
1218
  msgid "Redirection routes are working"
1219
  msgstr ""
1220
 
1221
+ #: models/fixer.php:88
1222
  msgid "REST API is not working so routes not checked"
1223
  msgstr ""
1224
 
1225
+ #: models/fixer.php:96
1226
  msgid "WordPress REST API"
1227
  msgstr ""
1228
 
1229
+ #. translators: %s: URL of REST API
1230
+ #: models/fixer.php:100
1231
  msgid "WordPress REST API is working at %s"
1232
  msgstr ""
1233
 
1234
+ #: models/fixer.php:238
1235
  msgid "Failed to fix database tables"
1236
  msgstr ""
1237
 
1238
+ #: models/fixer.php:246
1239
  msgid "Unable to create group"
1240
  msgstr ""
1241
 
matches/http-header.php CHANGED
@@ -43,7 +43,7 @@ class Header_Match extends Red_Match {
43
  $matched = Redirection_Request::get_header( $this->name ) === $this->value;
44
 
45
  if ( $this->regex ) {
46
- $matched = preg_match( '@'.str_replace( '@', '\\@', $this->value ).'@', Redirection_Request::get_header( $this->name ), $matches ) > 0;
47
  }
48
 
49
  // Check if referrer matches
43
  $matched = Redirection_Request::get_header( $this->name ) === $this->value;
44
 
45
  if ( $this->regex ) {
46
+ $matched = preg_match( '@' . str_replace( '@', '\\@', $this->value ) . '@', Redirection_Request::get_header( $this->name ), $matches ) > 0;
47
  }
48
 
49
  // Check if referrer matches
matches/server.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Server_Match extends Red_Match {
4
+ use FromNotFrom_Match;
5
+
6
+ public $server;
7
+
8
+ function name() {
9
+ return __( 'URL and server', 'redirection' );
10
+ }
11
+
12
+ public function save( array $details, $no_target_url = false ) {
13
+ $data = array( 'server' => isset( $details['server'] ) ? $this->sanitize_server( $details['server'] ) : '' );
14
+
15
+ return $this->save_data( $details, $no_target_url, $data );
16
+ }
17
+
18
+ private function sanitize_server( $server ) {
19
+ if ( strpos( $server, 'http' ) === false ) {
20
+ $server = ( is_ssl() ? 'https://' : 'http://' ) . $server;
21
+ }
22
+
23
+ $parts = parse_url( $server );
24
+
25
+ if ( isset( $parts['host'] ) ) {
26
+ return $parts['host'];
27
+ }
28
+
29
+ return '';
30
+ }
31
+
32
+ function get_target( $url, $matched_url, $regex ) {
33
+ $server = parse_url( $this->server, PHP_URL_HOST );
34
+
35
+ $matched = false;
36
+ if ( $server === Redirection_Request::get_server_name() ) {
37
+ $matched = true;
38
+ }
39
+
40
+ return $this->get_matched_target( $matched );
41
+ }
42
+
43
+ public function get_data() {
44
+ return array_merge( array(
45
+ 'server' => $this->server,
46
+ ), $this->get_from_data() );
47
+ }
48
+
49
+ public function load( $values ) {
50
+ $values = $this->load_data( $values );
51
+ $this->server = $values['server'];
52
+ }
53
+ }
matches/user-role.php ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Role_Match extends Red_Match {
4
+ public $role;
5
+ public $url_from;
6
+ public $url_notfrom;
7
+
8
+ function name() {
9
+ return __( 'URL and role/capability role', 'redirection' );
10
+ }
11
+
12
+ public function save( array $details, $no_target_url = false ) {
13
+ $data = array( 'role' => isset( $details['role'] ) ? $details['role'] : '' );
14
+
15
+ if ( $no_target_url === false ) {
16
+ $data['url_from'] = isset( $details['url_from'] ) ? $this->sanitize_url( $details['url_from'] ) : '';
17
+ $data['url_notfrom'] = isset( $details['url_notfrom'] ) ? $this->sanitize_url( $details['url_notfrom'] ) : '';
18
+ }
19
+
20
+ return $data;
21
+ }
22
+
23
+ function get_target( $url, $matched_url, $regex ) {
24
+ // Check if referrer matches
25
+ $matched = current_user_can( $this->role );
26
+
27
+ $target = false;
28
+ if ( $this->url_from !== '' && $matched ) {
29
+ $target = $this->url_from;
30
+ } elseif ( $this->url_notfrom !== '' && ! $matched ) {
31
+ $target = $this->url_notfrom;
32
+ }
33
+
34
+ return $target;
35
+ }
36
+
37
+ public function get_data() {
38
+ return array(
39
+ 'url_from' => $this->url_from,
40
+ 'url_notfrom' => $this->url_notfrom,
41
+ 'role' => $this->role,
42
+ );
43
+ }
44
+
45
+ public function load( $values ) {
46
+ $values = unserialize( $values );
47
+
48
+ if ( isset( $values['url_from'] ) ) {
49
+ $this->url_from = $values['url_from'];
50
+ $this->url_notfrom = $values['url_notfrom'];
51
+ }
52
+
53
+ $this->role = $values['role'];
54
+ }
55
+ }
models/fixer.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- include_once dirname( REDIRECTION_FILE ).'/models/database.php';
4
 
5
  class Red_Fixer {
6
  public function get_status() {
@@ -8,7 +8,7 @@ class Red_Fixer {
8
 
9
  $options = red_get_options();
10
 
11
- $db = new RE_Database();
12
  $groups = intval( $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}redirection_groups" ), 10 );
13
  $bad_group = $this->get_missing();
14
  $monitor_group = $options['monitor_post'];
@@ -18,7 +18,10 @@ class Red_Fixer {
18
  $result = array(
19
  $rest_status,
20
  $this->get_rest_route_status( $rest_status ),
21
- array_merge( array( 'id' => 'db', 'name' => __( 'Database tables', 'redirection' ) ), $db->get_status() ),
 
 
 
22
  array(
23
  'name' => __( 'Valid groups', 'redirection' ),
24
  'id' => 'groups',
@@ -50,7 +53,7 @@ class Red_Fixer {
50
  $message = __( 'Site and home are consistent', 'redirection' );
51
  if ( $site !== $home ) {
52
  $message = __( 'Site and home URL are inconsistent - please correct from your General settings', 'redirection' );
53
- $message .= ' - '.get_site_url().' !== '.get_home_url();
54
  }
55
 
56
  return array(
@@ -74,9 +77,9 @@ class Red_Fixer {
74
  $result['message'] = __( 'Redirection does not appear in your REST API routes. Have you disabled it with a plugin?', 'redirection' );
75
 
76
  if ( $response && is_array( $response ) && isset( $response['body'] ) ) {
77
- $json = @json_decode( $response['body'], true );
78
 
79
- if ( isset( $json['routes']['/redirection/v1'] ) ) {
80
  $result['message'] = __( 'Redirection routes are working', 'redirection' );
81
  $result['status'] = 'good';
82
  }
@@ -93,9 +96,16 @@ class Red_Fixer {
93
  'name' => __( 'WordPress REST API', 'redirection' ),
94
  'id' => 'rest',
95
  'status' => 'good',
 
96
  'message' => sprintf( __( 'WordPress REST API is working at %s', 'redirection' ), red_get_rest_api() ),
97
  );
98
 
 
 
 
 
 
 
99
  $result = $this->check_api( red_get_rest_api() );
100
 
101
  if ( is_wp_error( $result ) ) {
@@ -109,8 +119,11 @@ class Red_Fixer {
109
  public function fix( $status ) {
110
  foreach ( $status as $item ) {
111
  if ( $item['status'] !== 'good' ) {
112
- $fixer = 'fix_'.$item['id'];
113
- $result = $this->$fixer();
 
 
 
114
 
115
  if ( is_wp_error( $result ) ) {
116
  return $result;
@@ -127,20 +140,23 @@ class Red_Fixer {
127
  return $wpdb->get_results( "SELECT {$wpdb->prefix}redirection_items.id FROM {$wpdb->prefix}redirection_items LEFT JOIN {$wpdb->prefix}redirection_groups ON {$wpdb->prefix}redirection_items.group_id = {$wpdb->prefix}redirection_groups.id WHERE {$wpdb->prefix}redirection_groups.id IS NULL" );
128
  }
129
 
130
- public function fix_routes() {
131
- }
132
-
133
  public function fix_rest() {
134
  // First check the default REST API
135
  $result = $this->check_api( get_rest_url() );
136
 
137
  if ( is_wp_error( $result ) ) {
 
 
 
 
 
 
138
  // Try directly at index.php?rest_route
139
- $rest_api = home_url( '/index.php?rest_route=/' );
140
  $result = $this->check_api( $rest_api );
141
 
142
  if ( is_wp_error( $result ) ) {
143
- $rest_api = admin_url( 'admin-ajax.php' );
144
  $response = $this->request_from_api( $rest_api );
145
 
146
  if ( is_array( $response ) && isset( $response['body'] ) && $response['body'] === '0' ) {
@@ -165,22 +181,34 @@ class Red_Fixer {
165
  private function normalize_url( $url ) {
166
  if ( substr( $url, 0, 4 ) !== 'http' ) {
167
  $parts = parse_url( get_site_url() );
168
- $url = ( isset( $parts['scheme'] ) ? $parts['scheme'] : 'http' ).'://'.$parts['host'].$url;
169
  }
170
 
171
  return $url;
172
  }
173
 
174
  private function request_from_api( $url ) {
175
- $url = $this->normalize_url( $url.'redirection/v1/' );
176
  $url = add_query_arg( '_wpnonce', wp_create_nonce( 'wp_rest' ), $url );
177
- $options = array( 'cookies' => $_COOKIE, 'redirection' => 0 );
 
 
 
 
 
 
 
 
 
 
 
178
 
 
179
  if ( Redirection_Request::get_user_agent() ) {
180
  $options['user-agent'] = Redirection_Request::get_user_agent();
181
  }
182
 
183
- return wp_remote_get( $url, $options );
184
  }
185
 
186
  private function check_api( $url ) {
@@ -189,12 +217,13 @@ class Red_Fixer {
189
 
190
  $specific = 'REST API returns an error code';
191
  if ( $http_code === 200 ) {
192
- $json = @json_decode( $response['body'], true );
193
 
194
  if ( $json || $response['body'] === '0' ) {
195
  return true;
196
  } else {
197
  $specific = 'REST API returned invalid JSON data. This is probably an error page of some kind and indicates it has been disabled';
 
198
  }
199
  } elseif ( $http_code === 301 || $http_code === 302 ) {
200
  $specific = 'REST API is being redirected. This indicates it has been disabled or you have a trailing slash redirect.';
@@ -202,14 +231,22 @@ class Red_Fixer {
202
  $specific = 'REST API is returning 404 error. This indicates it has been disabled.';
203
  }
204
 
205
- return new WP_Error( 'redirection', $specific.' ('.( $http_code ? $http_code : '40x' ) .' - '.$url.')' );
 
 
 
 
 
 
 
 
206
  }
207
 
208
  private function fix_db() {
209
- $db = new RE_Database();
210
 
211
  try {
212
- $db->create_tables();
213
  } catch ( Exception $e ) {
214
  return new WP_Error( __( 'Failed to fix database tables', 'redirection' ) );
215
  }
@@ -231,7 +268,7 @@ class Red_Fixer {
231
  $missing = $this->get_missing();
232
 
233
  foreach ( $missing as $row ) {
234
- $wpdb->update( $wpdb->prefix.'redirection_items', array( 'group_id' => $this->get_valid_group() ), array( 'id' => $row->id ) );
235
  }
236
  }
237
 
@@ -242,6 +279,6 @@ class Red_Fixer {
242
  private function get_valid_group() {
243
  $groups = Red_Group::get_all();
244
 
245
- return $groups[ 0 ]['id'];
246
  }
247
  }
1
  <?php
2
 
3
+ include_once dirname( REDIRECTION_FILE ) . '/models/database.php';
4
 
5
  class Red_Fixer {
6
  public function get_status() {
8
 
9
  $options = red_get_options();
10
 
11
+ $database = new RE_Database();
12
  $groups = intval( $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}redirection_groups" ), 10 );
13
  $bad_group = $this->get_missing();
14
  $monitor_group = $options['monitor_post'];
18
  $result = array(
19
  $rest_status,
20
  $this->get_rest_route_status( $rest_status ),
21
+ array_merge( array(
22
+ 'id' => 'db',
23
+ 'name' => __( 'Database tables', 'redirection' ),
24
+ ), $database->get_status() ),
25
  array(
26
  'name' => __( 'Valid groups', 'redirection' ),
27
  'id' => 'groups',
53
  $message = __( 'Site and home are consistent', 'redirection' );
54
  if ( $site !== $home ) {
55
  $message = __( 'Site and home URL are inconsistent - please correct from your General settings', 'redirection' );
56
+ $message .= ' - ' . get_site_url() . ' !== ' . get_home_url();
57
  }
58
 
59
  return array(
77
  $result['message'] = __( 'Redirection does not appear in your REST API routes. Have you disabled it with a plugin?', 'redirection' );
78
 
79
  if ( $response && is_array( $response ) && isset( $response['body'] ) ) {
80
+ $json = $this->get_json( $response['body'] );
81
 
82
+ if ( isset( $json['success'] ) ) {
83
  $result['message'] = __( 'Redirection routes are working', 'redirection' );
84
  $result['status'] = 'good';
85
  }
96
  'name' => __( 'WordPress REST API', 'redirection' ),
97
  'id' => 'rest',
98
  'status' => 'good',
99
+ /* translators: %s: URL of REST API */
100
  'message' => sprintf( __( 'WordPress REST API is working at %s', 'redirection' ), red_get_rest_api() ),
101
  );
102
 
103
+ // Special case for OVH servers - this is as close as I can get to detecting mod_security
104
+ $options = red_get_options();
105
+ if ( $options['rest_api'] === 0 && strpos( php_uname( 'a' ), 'ovh' ) !== false ) {
106
+ red_set_options( array( 'rest_api' => 2 ) );
107
+ }
108
+
109
  $result = $this->check_api( red_get_rest_api() );
110
 
111
  if ( is_wp_error( $result ) ) {
119
  public function fix( $status ) {
120
  foreach ( $status as $item ) {
121
  if ( $item['status'] !== 'good' ) {
122
+ $fixer = 'fix_' . $item['id'];
123
+
124
+ if ( method_exists( $this, $fixer ) ) {
125
+ $result = $this->$fixer();
126
+ }
127
 
128
  if ( is_wp_error( $result ) ) {
129
  return $result;
140
  return $wpdb->get_results( "SELECT {$wpdb->prefix}redirection_items.id FROM {$wpdb->prefix}redirection_items LEFT JOIN {$wpdb->prefix}redirection_groups ON {$wpdb->prefix}redirection_items.group_id = {$wpdb->prefix}redirection_groups.id WHERE {$wpdb->prefix}redirection_groups.id IS NULL" );
141
  }
142
 
 
 
 
143
  public function fix_rest() {
144
  // First check the default REST API
145
  $result = $this->check_api( get_rest_url() );
146
 
147
  if ( is_wp_error( $result ) ) {
148
+ $options = red_get_options();
149
+ if ( $options['https'] ) {
150
+ // Disable this just be to safe
151
+ red_set_options( array( 'https' => false ) );
152
+ }
153
+
154
  // Try directly at index.php?rest_route
155
+ $rest_api = red_get_rest_api( REDIRECTION_API_JSON_INDEX );
156
  $result = $this->check_api( $rest_api );
157
 
158
  if ( is_wp_error( $result ) ) {
159
+ $rest_api = red_get_rest_api( REDIRECTION_API_ADMIN );
160
  $response = $this->request_from_api( $rest_api );
161
 
162
  if ( is_array( $response ) && isset( $response['body'] ) && $response['body'] === '0' ) {
181
  private function normalize_url( $url ) {
182
  if ( substr( $url, 0, 4 ) !== 'http' ) {
183
  $parts = parse_url( get_site_url() );
184
+ $url = ( isset( $parts['scheme'] ) ? $parts['scheme'] : 'http' ) . '://' . $parts['host'] . $url;
185
  }
186
 
187
  return $url;
188
  }
189
 
190
  private function request_from_api( $url ) {
191
+ $url = $this->normalize_url( $url . 'redirection/v1/plugin/test' );
192
  $url = add_query_arg( '_wpnonce', wp_create_nonce( 'wp_rest' ), $url );
193
+ $options = array(
194
+ 'cookies' => $_COOKIE,
195
+ 'redirection' => 0,
196
+ 'body' => '{}',
197
+ );
198
+
199
+ // For REST API calls set the content-type - some servers get tripped up on this
200
+ if ( strpos( $url, '/wp-json/' ) !== false || strpos( $url, 'rest_route' ) !== false ) {
201
+ $options['headers'] = array(
202
+ 'content-type: application/json; charset=utf-8',
203
+ );
204
+ }
205
 
206
+ // Match our user agent
207
  if ( Redirection_Request::get_user_agent() ) {
208
  $options['user-agent'] = Redirection_Request::get_user_agent();
209
  }
210
 
211
+ return wp_remote_post( $url, $options );
212
  }
213
 
214
  private function check_api( $url ) {
217
 
218
  $specific = 'REST API returns an error code';
219
  if ( $http_code === 200 ) {
220
+ $json = $this->get_json( $response['body'] );
221
 
222
  if ( $json || $response['body'] === '0' ) {
223
  return true;
224
  } else {
225
  $specific = 'REST API returned invalid JSON data. This is probably an error page of some kind and indicates it has been disabled';
226
+ $specific .= ' - ' . json_last_error_msg();
227
  }
228
  } elseif ( $http_code === 301 || $http_code === 302 ) {
229
  $specific = 'REST API is being redirected. This indicates it has been disabled or you have a trailing slash redirect.';
231
  $specific = 'REST API is returning 404 error. This indicates it has been disabled.';
232
  }
233
 
234
+ return new WP_Error( 'redirection', $specific . ' (' . ( $http_code ? $http_code : '40x' ) . ' - ' . $url . ')' );
235
+ }
236
+
237
+ private function get_json( $body ) {
238
+ if ( strpos( bin2hex( $body ), 'efbbbf' ) !== false ) {
239
+ $body = substr( $body, 3 );
240
+ }
241
+
242
+ return @json_decode( $body, true );
243
  }
244
 
245
  private function fix_db() {
246
+ $database = new RE_Database();
247
 
248
  try {
249
+ $database->create_tables();
250
  } catch ( Exception $e ) {
251
  return new WP_Error( __( 'Failed to fix database tables', 'redirection' ) );
252
  }
268
  $missing = $this->get_missing();
269
 
270
  foreach ( $missing as $row ) {
271
+ $wpdb->update( $wpdb->prefix . 'redirection_items', array( 'group_id' => $this->get_valid_group() ), array( 'id' => $row->id ) );
272
  }
273
  }
274
 
279
  private function get_valid_group() {
280
  $groups = Red_Group::get_all();
281
 
282
+ return $groups[0]['id'];
283
  }
284
  }
models/htaccess.php CHANGED
@@ -11,7 +11,7 @@ class Red_Htaccess {
11
  $url = ltrim( $url, '/' );
12
 
13
  // Exactly match the URL
14
- return '^'.$url.'$';
15
  }
16
 
17
  private function encode2nd( $url ) {
@@ -79,13 +79,14 @@ class Red_Htaccess {
79
 
80
  private function add_agent( $item, $match ) {
81
  $from = $this->encode( ltrim( $item->get_url(), '/' ) );
82
- if ( $item->is_regex() )
83
  $from = $this->encode_regex( ltrim( $item->get_url(), '/' ) );
 
84
 
85
  if ( ( $match->url_from || $match->url_notfrom ) && $match->user_agent ) {
86
  $this->items[] = sprintf( 'RewriteCond %%{HTTP_USER_AGENT} %s [NC]', ( $match->regex ? $this->encode_regex( $match->user_agent ) : $this->encode2nd( $match->user_agent ) ) );
87
 
88
- if ( $match->url_from ) {
89
  $to = $this->target( $item->get_action_type(), $match->url_from, $item->get_action_code(), $item->is_regex() );
90
  $this->items[] = sprintf( 'RewriteRule %s %s', $from, $to );
91
  }
@@ -97,13 +98,20 @@ class Red_Htaccess {
97
  }
98
  }
99
 
 
 
 
 
 
 
100
  private function add_url( $item, $match ) {
101
  $url = $item->get_url();
102
 
103
  if ( $item->is_regex() === false && strpos( $url, '?' ) !== false || strpos( $url, '&' ) !== false ) {
104
  $url_parts = parse_url( $url );
105
  $url = $url_parts['path'];
106
- $this->items[] = sprintf( 'RewriteCond %%{QUERY_STRING} ^%s$', $url_parts['query'] );
 
107
  }
108
 
109
  $to = $this->target( $item->get_action_type(), $match->url, $item->get_action_code(), $item->is_regex() );
@@ -150,7 +158,7 @@ class Red_Htaccess {
150
  }
151
 
152
  private function target( $action, $data, $code, $regex ) {
153
- $target = 'action_'.$action;
154
 
155
  if ( method_exists( $this, $target ) ) {
156
  return $this->$target( $data, $code, $regex );
@@ -159,22 +167,29 @@ class Red_Htaccess {
159
  }
160
 
161
  private function generate() {
162
- $version = get_plugin_data( dirname( dirname( __FILE__ ) ).'/redirection.php' );
163
 
164
  if ( count( $this->items ) === 0 ) {
165
  return '';
166
  }
167
 
168
  $text[] = '# Created by Redirection';
169
- $text[] = '# '.date( 'r' );
170
- $text[] = '# Redirection '.trim( $version['Version'] ).' - https://redirection.me';
171
  $text[] = '';
172
 
173
  // mod_rewrite section
174
  $text[] = '<IfModule mod_rewrite.c>';
175
 
 
 
 
 
 
 
 
176
  // Add redirects
177
- $text = array_merge( $text, $this->items );
178
 
179
  // End of mod_rewrite
180
  $text[] = '</IfModule>';
@@ -183,15 +198,16 @@ class Red_Htaccess {
183
  // End of redirection section
184
  $text[] = '# End of Redirection';
185
 
186
- $text = implode( "\r\n", $text );
187
- return "\n".$text."\n";
188
  }
189
 
190
  public function add( $item ) {
191
- $target = 'add_'.$item->get_match_type();
192
 
193
- if ( method_exists( $this, $target ) )
194
  $this->$target( $item, $item->match );
 
195
  }
196
 
197
  public function get( $existing = false ) {
@@ -201,7 +217,7 @@ class Red_Htaccess {
201
  if ( preg_match( self::INSERT_REGEX, $existing ) > 0 ) {
202
  $text = preg_replace( self::INSERT_REGEX, str_replace( '$', '\\$', $text ), $existing );
203
  } else {
204
- $text = trim( $existing )."\n".$text;
205
  }
206
  }
207
 
11
  $url = ltrim( $url, '/' );
12
 
13
  // Exactly match the URL
14
+ return '^' . $url . '$';
15
  }
16
 
17
  private function encode2nd( $url ) {
79
 
80
  private function add_agent( $item, $match ) {
81
  $from = $this->encode( ltrim( $item->get_url(), '/' ) );
82
+ if ( $item->is_regex() ) {
83
  $from = $this->encode_regex( ltrim( $item->get_url(), '/' ) );
84
+ }
85
 
86
  if ( ( $match->url_from || $match->url_notfrom ) && $match->user_agent ) {
87
  $this->items[] = sprintf( 'RewriteCond %%{HTTP_USER_AGENT} %s [NC]', ( $match->regex ? $this->encode_regex( $match->user_agent ) : $this->encode2nd( $match->user_agent ) ) );
88
 
89
+ if ( $match->url_from ) {
90
  $to = $this->target( $item->get_action_type(), $match->url_from, $item->get_action_code(), $item->is_regex() );
91
  $this->items[] = sprintf( 'RewriteRule %s %s', $from, $to );
92
  }
98
  }
99
  }
100
 
101
+ private function add_server( $item, $match ) {
102
+ $match->url = $match->url_from;
103
+ $this->items[] = sprintf( 'RewriteCond %%{HTTP_HOST} ^%s$ [NC]', preg_quote( $match->server ) );
104
+ $this->add_url( $item, $match );
105
+ }
106
+
107
  private function add_url( $item, $match ) {
108
  $url = $item->get_url();
109
 
110
  if ( $item->is_regex() === false && strpos( $url, '?' ) !== false || strpos( $url, '&' ) !== false ) {
111
  $url_parts = parse_url( $url );
112
  $url = $url_parts['path'];
113
+ $query = isset( $url_parts['query'] ) ? $url_parts['query'] : '';
114
+ $this->items[] = sprintf( 'RewriteCond %%{QUERY_STRING} ^%s$', $query );
115
  }
116
 
117
  $to = $this->target( $item->get_action_type(), $match->url, $item->get_action_code(), $item->is_regex() );
158
  }
159
 
160
  private function target( $action, $data, $code, $regex ) {
161
+ $target = 'action_' . $action;
162
 
163
  if ( method_exists( $this, $target ) ) {
164
  return $this->$target( $data, $code, $regex );
167
  }
168
 
169
  private function generate() {
170
+ $version = red_get_plugin_data( dirname( dirname( __FILE__ ) ) . '/redirection.php' );
171
 
172
  if ( count( $this->items ) === 0 ) {
173
  return '';
174
  }
175
 
176
  $text[] = '# Created by Redirection';
177
+ $text[] = '# ' . date( 'r' );
178
+ $text[] = '# Redirection ' . trim( $version['Version'] ) . ' - https://redirection.me';
179
  $text[] = '';
180
 
181
  // mod_rewrite section
182
  $text[] = '<IfModule mod_rewrite.c>';
183
 
184
+ // Add http => https option
185
+ $options = red_get_options();
186
+ if ( $options['https'] ) {
187
+ $text[] = 'RewriteCond %{HTTPS} off';
188
+ $text[] = 'RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}';
189
+ }
190
+
191
  // Add redirects
192
+ $text = array_merge( $text, array_filter( $this->items ) );
193
 
194
  // End of mod_rewrite
195
  $text[] = '</IfModule>';
198
  // End of redirection section
199
  $text[] = '# End of Redirection';
200
 
201
+ $text = implode( "\n", $text );
202
+ return "\n" . $text . "\n";
203
  }
204
 
205
  public function add( $item ) {
206
+ $target = 'add_' . $item->get_match_type();
207
 
208
+ if ( method_exists( $this, $target ) ) {
209
  $this->$target( $item, $item->match );
210
+ }
211
  }
212
 
213
  public function get( $existing = false ) {
217
  if ( preg_match( self::INSERT_REGEX, $existing ) > 0 ) {
218
  $text = preg_replace( self::INSERT_REGEX, str_replace( '$', '\\$', $text ), $existing );
219
  } else {
220
+ $text = $text . "\n" . trim( $existing );
221
  }
222
  }
223
 
models/log.php CHANGED
@@ -11,7 +11,7 @@ class RE_Log {
11
 
12
  function __construct( $values ) {
13
  foreach ( $values as $key => $value ) {
14
- $this->$key = $value;
15
  }
16
 
17
  $this->created = mysql2date( 'U', $this->created );
@@ -54,7 +54,7 @@ class RE_Log {
54
  if ( $insert ) {
55
  do_action( 'redirection_log', $insert );
56
 
57
- $wpdb->insert( $wpdb->prefix.'redirection_logs', $insert );
58
  }
59
 
60
  return $wpdb->insert_id;
@@ -135,8 +135,9 @@ class RE_Log {
135
  fputcsv( $stdout, $csv );
136
  }
137
 
138
- if ( count( $rows ) < 100 )
139
  break;
 
140
  }
141
  }
142
 
@@ -158,7 +159,7 @@ class RE_404 {
158
 
159
  function __construct( $values ) {
160
  foreach ( $values as $key => $value ) {
161
- $this->$key = $value;
162
  }
163
 
164
  $this->created = mysql2date( 'U', $this->created );
@@ -300,7 +301,7 @@ class RE_Filter_Log {
300
  if ( isset( $params['filterBy'] ) && $params['filterBy'] === 'ip' ) {
301
  $where = $wpdb->prepare( "WHERE ip=%s", $params['filter'] );
302
  } else {
303
- $where = $wpdb->prepare( 'WHERE url LIKE %s', '%'.$wpdb->esc_like( trim( $params['filter'] ) ).'%' );
304
  }
305
  }
306
 
@@ -319,7 +320,7 @@ class RE_Filter_Log {
319
  $table = $wpdb->prefix.$table;
320
  $sql = trim( "SELECT * FROM {$table} $where " ).$wpdb->prepare( " ORDER BY $orderby $direction LIMIT %d,%d", $offset, $limit );
321
 
322
- $rows = $wpdb->get_results( $sql );
323
  $total_items = $wpdb->get_var( "SELECT COUNT(*) FROM {$table} ".$where );
324
  $items = array();
325
 
11
 
12
  function __construct( $values ) {
13
  foreach ( $values as $key => $value ) {
14
+ $this->$key = $value;
15
  }
16
 
17
  $this->created = mysql2date( 'U', $this->created );
54
  if ( $insert ) {
55
  do_action( 'redirection_log', $insert );
56
 
57
+ $wpdb->insert( $wpdb->prefix . 'redirection_logs', $insert );
58
  }
59
 
60
  return $wpdb->insert_id;
135
  fputcsv( $stdout, $csv );
136
  }
137
 
138
+ if ( count( $rows ) < 100 ) {
139
  break;
140
+ }
141
  }
142
  }
143
 
159
 
160
  function __construct( $values ) {
161
  foreach ( $values as $key => $value ) {
162
+ $this->$key = $value;
163
  }
164
 
165
  $this->created = mysql2date( 'U', $this->created );
301
  if ( isset( $params['filterBy'] ) && $params['filterBy'] === 'ip' ) {
302
  $where = $wpdb->prepare( "WHERE ip=%s", $params['filter'] );
303
  } else {
304
+ $where = $wpdb->prepare( 'WHERE url LIKE %s', '%' . $wpdb->esc_like( trim( $params['filter'] ) ) . '%' );
305
  }
306
  }
307
 
320
  $table = $wpdb->prefix.$table;
321
  $sql = trim( "SELECT * FROM {$table} $where " ).$wpdb->prepare( " ORDER BY $orderby $direction LIMIT %d,%d", $offset, $limit );
322
 
323
+ $rows = $wpdb->get_results( $sql );
324
  $total_items = $wpdb->get_var( "SELECT COUNT(*) FROM {$table} ".$where );
325
  $items = array();
326
 
models/match.php CHANGED
@@ -24,16 +24,16 @@ abstract class Red_Match {
24
  }
25
 
26
  protected function get_target_regex_url( $matched_url, $target, $url ) {
27
- return preg_replace( '@'.str_replace( '@', '\\@', $matched_url ).'@', $target, $url );
28
  }
29
 
30
  static function create( $name, $data = '' ) {
31
  $avail = self::available();
32
  if ( isset( $avail[ strtolower( $name ) ] ) ) {
33
- $classname = $name.'_match';
34
 
35
  if ( ! class_exists( strtolower( $classname ) ) ) {
36
- include( dirname( __FILE__ ).'/../matches/'.$avail[ strtolower( $name ) ] );
37
  }
38
 
39
  return new $classname( $data );
@@ -55,7 +55,7 @@ abstract class Red_Match {
55
  }
56
 
57
  static function available() {
58
- return array(
59
  'url' => 'url.php',
60
  'referrer' => 'referrer.php',
61
  'agent' => 'user-agent.php',
@@ -63,6 +63,57 @@ abstract class Red_Match {
63
  'header' => 'http-header.php',
64
  'custom' => 'custom-filter.php',
65
  'cookie' => 'cookie.php',
66
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  }
68
  }
24
  }
25
 
26
  protected function get_target_regex_url( $matched_url, $target, $url ) {
27
+ return preg_replace( '@' . str_replace( '@', '\\@', $matched_url ) . '@', $target, $url );
28
  }
29
 
30
  static function create( $name, $data = '' ) {
31
  $avail = self::available();
32
  if ( isset( $avail[ strtolower( $name ) ] ) ) {
33
+ $classname = $name . '_match';
34
 
35
  if ( ! class_exists( strtolower( $classname ) ) ) {
36
+ include( dirname( __FILE__ ) . '/../matches/' . $avail[ strtolower( $name ) ] );
37
  }
38
 
39
  return new $classname( $data );
55
  }
56
 
57
  static function available() {
58
+ return array(
59
  'url' => 'url.php',
60
  'referrer' => 'referrer.php',
61
  'agent' => 'user-agent.php',
63
  'header' => 'http-header.php',
64
  'custom' => 'custom-filter.php',
65
  'cookie' => 'cookie.php',
66
+ 'role' => 'user-role.php',
67
+ 'server' => 'server.php',
68
+ );
69
+ }
70
+ }
71
+
72
+ trait FromNotFrom_Match {
73
+ public $url_from;
74
+ public $url_notfrom;
75
+
76
+ private function save_data( array $details, $no_target_url, array $data ) {
77
+ if ( $no_target_url === false ) {
78
+ return array_merge( array(
79
+ 'url_from' => isset( $details['url_from'] ) ? $this->sanitize_url( $details['url_from'] ) : '',
80
+ 'url_notfrom' => isset( $details['url_notfrom'] ) ? $this->sanitize_url( $details['url_notfrom'] ) : '',
81
+ ), $data );
82
+ }
83
+
84
+ return $data;
85
+ }
86
+
87
+ private function get_matched_target( $matched ) {
88
+ if ( $this->url_from !== '' && $matched ) {
89
+ return $this->url_from;
90
+ }
91
+
92
+ if ( $this->url_notfrom !== '' && ! $matched ) {
93
+ return $this->url_notfrom;
94
+ }
95
+
96
+ return false;
97
+ }
98
+
99
+ private function load_data( $values ) {
100
+ $values = unserialize( $values );
101
+
102
+ if ( isset( $values['url_from'] ) ) {
103
+ $this->url_from = $values['url_from'];
104
+ }
105
+
106
+ if ( isset( $values['url_notfrom'] ) ) {
107
+ $this->url_notfrom = $values['url_notfrom'];
108
+ }
109
+
110
+ return $values;
111
+ }
112
+
113
+ private function get_from_data() {
114
+ return array(
115
+ 'url_from' => $this->url_from,
116
+ 'url_notfrom' => $this->url_notfrom,
117
+ );
118
  }
119
  }
models/redirect.php CHANGED
@@ -119,7 +119,7 @@ class Red_Item {
119
  return 0;
120
  }
121
 
122
- return ($first['position'] < $second['position']) ? -1 : 1;
123
  }
124
 
125
  static function reduce_sorted_items( $item ) {
@@ -130,15 +130,17 @@ class Red_Item {
130
  global $wpdb;
131
 
132
  $row = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}redirection_items WHERE id=%d", $id ) );
133
- if ( $row )
134
  return new Red_Item( $row );
 
 
135
  return false;
136
  }
137
 
138
  public static function disable_where_matches( $url ) {
139
  global $wpdb;
140
 
141
- $wpdb->update( $wpdb->prefix.'redirection_items', array( 'status' => 'disabled' ), array( 'url' => $url ) );
142
  }
143
 
144
  public function delete() {
@@ -171,7 +173,7 @@ class Red_Item {
171
  $data = apply_filters( 'redirection_create_redirect', $data );
172
 
173
  // Create
174
- if ( $wpdb->insert( $wpdb->prefix.'redirection_items', $data ) !== false ) {
175
  Red_Module::flush( $data['group_id'] );
176
 
177
  $redirect = self::get_by_id( $wpdb->insert_id );
@@ -201,8 +203,8 @@ class Red_Item {
201
  // Save this
202
  $data = apply_filters( 'redirection_update_redirect', $data );
203
 
204
- $wpdb->update( $wpdb->prefix.'redirection_items', $data, array( 'id' => $this->id ) );
205
- do_action( 'redirection_redirect_updated', $this, self::get_by_id( $this->id) );
206
 
207
  $this->load_from_data( (object) $data );
208
 
@@ -234,8 +236,6 @@ class Red_Item {
234
  do_action( 'redirection_visit', $this, $url, $target );
235
  return $this->action->process_after( $this->action_code, $target );
236
  }
237
-
238
- return true;
239
  }
240
 
241
  return false;
@@ -423,8 +423,21 @@ class Red_Item_Sanitize {
423
  $details = $this->clean_array( $details );
424
 
425
  $data['regex'] = isset( $details['regex'] ) && intval( $details['regex'], 10 ) === 1 ? 1 : 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  $data['title'] = isset( $details['title'] ) ? $details['title'] : null;
427
- $data['url'] = $this->get_url( empty( $details['url'] ) ? $this->auto_generate() : $details['url'], $data['regex'] );
428
  $data['group_id'] = $this->get_group( isset( $details['group_id'] ) ? $details['group_id'] : 0 );
429
  $data['position'] = $this->get_position( $details );
430
 
@@ -540,7 +553,7 @@ class Red_Item_Sanitize {
540
 
541
  // Ensure a slash at start
542
  if ( substr( $url, 0, 1 ) !== '/' && $regex === false ) {
543
- $url = '/'.$url;
544
  }
545
 
546
  return $url;
119
  return 0;
120
  }
121
 
122
+ return ( $first['position'] < $second['position'] ) ? -1 : 1;
123
  }
124
 
125
  static function reduce_sorted_items( $item ) {
130
  global $wpdb;
131
 
132
  $row = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}redirection_items WHERE id=%d", $id ) );
133
+ if ( $row ) {
134
  return new Red_Item( $row );
135
+ }
136
+
137
  return false;
138
  }
139
 
140
  public static function disable_where_matches( $url ) {
141
  global $wpdb;
142
 
143
+ $wpdb->update( $wpdb->prefix . 'redirection_items', array( 'status' => 'disabled' ), array( 'url' => $url ) );
144
  }
145
 
146
  public function delete() {
173
  $data = apply_filters( 'redirection_create_redirect', $data );
174
 
175
  // Create
176
+ if ( $wpdb->insert( $wpdb->prefix . 'redirection_items', $data ) !== false ) {
177
  Red_Module::flush( $data['group_id'] );
178
 
179
  $redirect = self::get_by_id( $wpdb->insert_id );
203
  // Save this
204
  $data = apply_filters( 'redirection_update_redirect', $data );
205
 
206
+ $wpdb->update( $wpdb->prefix . 'redirection_items', $data, array( 'id' => $this->id ) );
207
+ do_action( 'redirection_redirect_updated', $this, self::get_by_id( $this->id ) );
208
 
209
  $this->load_from_data( (object) $data );
210
 
236
  do_action( 'redirection_visit', $this, $url, $target );
237
  return $this->action->process_after( $this->action_code, $target );
238
  }
 
 
239
  }
240
 
241
  return false;
423
  $details = $this->clean_array( $details );
424
 
425
  $data['regex'] = isset( $details['regex'] ) && intval( $details['regex'], 10 ) === 1 ? 1 : 0;
426
+
427
+ $url = empty( $details['url'] ) ? $this->auto_generate() : $details['url'];
428
+ if ( strpos( $url, 'http' ) !== false ) {
429
+ $domain = parse_url( $url, PHP_URL_HOST );
430
+
431
+ // Auto-convert an absolute URL to relative + server match
432
+ if ( $domain !== Redirection_Request::get_server_name() ) {
433
+ $details['match_type'] = 'server';
434
+ $details['action_data'] = array( 'server' => $domain );
435
+ $url = parse_url( $url, PHP_URL_PATH );
436
+ }
437
+ }
438
+
439
+ $data['url'] = $this->get_url( $url, $data['regex'] );
440
  $data['title'] = isset( $details['title'] ) ? $details['title'] : null;
 
441
  $data['group_id'] = $this->get_group( isset( $details['group_id'] ) ? $details['group_id'] : 0 );
442
  $data['position'] = $this->get_position( $details );
443
 
553
 
554
  // Ensure a slash at start
555
  if ( substr( $url, 0, 1 ) !== '/' && $regex === false ) {
556
+ $url = '/' . $url;
557
  }
558
 
559
  return $url;
models/request.php CHANGED
@@ -1,6 +1,20 @@
1
  <?php
2
 
3
  class Redirection_Request {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  public static function get_request_url() {
5
  $url = '';
6
 
@@ -61,7 +75,7 @@ class Redirection_Request {
61
  }
62
 
63
  public static function get_header( $name ) {
64
- $name = 'HTTP_'.strtoupper( $name );
65
  $name = str_replace( '-', '_', $name );
66
 
67
  if ( isset( $_SERVER[ $name ] ) ) {
1
  <?php
2
 
3
  class Redirection_Request {
4
+ public static function get_server_name() {
5
+ $host = '';
6
+
7
+ if ( isset( $_SERVER['HTTP_HOST'] ) ) {
8
+ $host = $_SERVER['HTTP_HOST'];
9
+ }
10
+
11
+ if ( isset( $_SERVER['SERVER_NAME'] ) ) {
12
+ $host = $_SERVER['SERVER_NAME'];
13
+ }
14
+
15
+ return apply_filters( 'redirection_request_server', $host );
16
+ }
17
+
18
  public static function get_request_url() {
19
  $url = '';
20
 
75
  }
76
 
77
  public static function get_header( $name ) {
78
+ $name = 'HTTP_' . strtoupper( $name );
79
  $name = str_replace( '-', '_', $name );
80
 
81
  if ( isset( $_SERVER[ $name ] ) ) {
modules/apache.php CHANGED
@@ -28,7 +28,7 @@ class Apache_Module extends Red_Module {
28
  }
29
 
30
  protected function flush_module() {
31
- include_once dirname( dirname( __FILE__ ) ).'/models/htaccess.php';
32
 
33
  if ( empty( $this->location ) ) {
34
  return;
28
  }
29
 
30
  protected function flush_module() {
31
+ include_once dirname( dirname( __FILE__ ) ) . '/models/htaccess.php';
32
 
33
  if ( empty( $this->location ) ) {
34
  return;
modules/nginx.php CHANGED
@@ -17,8 +17,9 @@ class Nginx_Module extends Red_Module {
17
  $mine = array( 'location' );
18
 
19
  foreach ( $mine as $key ) {
20
- if ( isset( $data[ $key ] ) )
21
  $this->$key = $data[ $key ];
 
22
  }
23
  }
24
 
17
  $mine = array( 'location' );
18
 
19
  foreach ( $mine as $key ) {
20
+ if ( isset( $data[ $key ] ) ) {
21
  $this->$key = $data[ $key ];
22
+ }
23
  }
24
  }
25
 
modules/wordpress.php CHANGED
@@ -16,14 +16,14 @@ class WordPress_Module extends Red_Module {
16
 
17
  public function start() {
18
  // Setup the various filters and actions that allow Redirection to happen
19
- add_action( 'init', array( $this, 'init' ) );
20
- add_action( 'send_headers', array( $this, 'send_headers' ) );
21
- add_filter( 'permalink_redirect_skip', array( $this, 'permalink_redirect_skip' ) );
22
- add_filter( 'wp_redirect', array( $this, 'wp_redirect' ), 1, 2 );
23
- add_filter( 'status_header', array( $this, 'status_header_404' ), 10, 4 );
24
- add_action( 'redirection_visit', array( $this, 'redirection_visit' ), 10, 3 );
25
- add_action( 'redirection_do_nothing', array( $this, 'redirection_do_nothing' ) );
26
- add_filter( 'redirect_canonical', array( $this, 'redirect_canonical' ), 10, 2 );
27
 
28
  // Remove WordPress 2.3 redirection
29
  remove_action( 'template_redirect', 'wp_old_slug_redirect' );
@@ -41,16 +41,14 @@ class WordPress_Module extends Red_Module {
41
  return $redirect_url;
42
  }
43
 
44
- public function status_header_404( $status_header, $code, $description, $protocol ) {
45
- if ( $code === 404 ) {
46
  $options = red_get_options();
47
 
48
  if ( isset( $options['expire_404'] ) && $options['expire_404'] >= 0 && apply_filters( 'redirection_log_404', $this->can_log ) ) {
49
  RE_404::create( Redirection_Request::get_request_url(), Redirection_Request::get_user_agent(), Redirection_Request::get_ip(), Redirection_Request::get_referrer() );
50
  }
51
  }
52
-
53
- return $status_header;
54
  }
55
 
56
  public function redirection_do_nothing() {
@@ -62,6 +60,15 @@ class WordPress_Module extends Red_Module {
62
  $redirect->visit( $url, $target );
63
  }
64
 
 
 
 
 
 
 
 
 
 
65
  public function init() {
66
  $url = apply_filters( 'redirection_url_source', Redirection_Request::get_request_url() );
67
 
@@ -87,7 +94,7 @@ class WordPress_Module extends Red_Module {
87
  */
88
  private function protected_url( $url ) {
89
  $rest = parse_url( red_get_rest_api() );
90
- $rest_api = $rest['path'].( isset( $rest['query'] ) ? '?'.$rest['query'] : '' );
91
 
92
  if ( substr( $url, 0, strlen( $rest_api ) ) === $rest_api ) {
93
  // Never redirect the REST API
@@ -170,15 +177,6 @@ class WordPress_Module extends Red_Module {
170
  protected function flush_module() {
171
  }
172
 
173
- public function permalink_redirect_skip( $skip ) {
174
- // only want this if we've matched using redirection
175
- if ( $this->matched ) {
176
- $skip[] = $_SERVER['REQUEST_URI'];
177
- }
178
-
179
- return $skip;
180
- }
181
-
182
  public function reset() {
183
  $this->can_log = true;
184
  }
16
 
17
  public function start() {
18
  // Setup the various filters and actions that allow Redirection to happen
19
+ add_action( 'init', array( $this, 'init' ) );
20
+ add_action( 'init', array( $this, 'force_https' ) );
21
+ add_action( 'send_headers', array( $this, 'send_headers' ) );
22
+ add_filter( 'wp_redirect', array( $this, 'wp_redirect' ), 1, 2 );
23
+ add_action( 'redirection_visit', array( $this, 'redirection_visit' ), 10, 3 );
24
+ add_action( 'redirection_do_nothing', array( $this, 'redirection_do_nothing' ) );
25
+ add_filter( 'redirect_canonical', array( $this, 'redirect_canonical' ), 10, 2 );
26
+ add_action( 'template_redirect', array( $this, 'template_redirect' ) );
27
 
28
  // Remove WordPress 2.3 redirection
29
  remove_action( 'template_redirect', 'wp_old_slug_redirect' );
41
  return $redirect_url;
42
  }
43
 
44
+ public function template_redirect() {
45
+ if ( is_404() ) {
46
  $options = red_get_options();
47
 
48
  if ( isset( $options['expire_404'] ) && $options['expire_404'] >= 0 && apply_filters( 'redirection_log_404', $this->can_log ) ) {
49
  RE_404::create( Redirection_Request::get_request_url(), Redirection_Request::get_user_agent(), Redirection_Request::get_ip(), Redirection_Request::get_referrer() );
50
  }
51
  }
 
 
52
  }
53
 
54
  public function redirection_do_nothing() {
60
  $redirect->visit( $url, $target );
61
  }
62
 
63
+ public function force_https() {
64
+ $options = red_get_options();
65
+
66
+ if ( $options['https'] && ! is_ssl() ) {
67
+ wp_safe_redirect( 'https://' . Redirection_Request::get_server_name(), 301 );
68
+ die();
69
+ }
70
+ }
71
+
72
  public function init() {
73
  $url = apply_filters( 'redirection_url_source', Redirection_Request::get_request_url() );
74
 
94
  */
95
  private function protected_url( $url ) {
96
  $rest = parse_url( red_get_rest_api() );
97
+ $rest_api = $rest['path'] . ( isset( $rest['query'] ) ? '?' . $rest['query'] : '' );
98
 
99
  if ( substr( $url, 0, strlen( $rest_api ) ) === $rest_api ) {
100
  // Never redirect the REST API
177
  protected function flush_module() {
178
  }
179
 
 
 
 
 
 
 
 
 
 
180
  public function reset() {
181
  $this->can_log = true;
182
  }
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: johnny5
3
  Donate link: https://redirection.me/donation/
4
  Tags: redirect, htaccess, 301, 404, seo, permalink, apache, nginx, post, admin
5
  Requires at least: 4.5
6
- Tested up to: 4.9.4
7
- Stable tag: 3.2.1
8
  Requires PHP: 5.4
9
  License: GPLv3
10
 
@@ -136,11 +136,23 @@ The plugin works in a similar manner to how WordPress handles permalinks and sho
136
 
137
  == Changelog ==
138
 
139
- = 3.2.1 - 18th February 2018 =
 
140
  * Add fix for IP blocking plugins
 
 
 
141
  * Check for mismatched site/home URLs
142
  * Fix WP CLI not clearing logs
143
  * Fix old capability check
 
 
 
 
 
 
 
 
144
 
145
  = 3.2 - 11th February 2018 =
146
  * Add cookie match - redirect based on a cookie
3
  Donate link: https://redirection.me/donation/
4
  Tags: redirect, htaccess, 301, 404, seo, permalink, apache, nginx, post, admin
5
  Requires at least: 4.5
6
+ Tested up to: 4.9.6
7
+ Stable tag: 3.3
8
  Requires PHP: 5.4
9
  License: GPLv3
10
 
136
 
137
  == Changelog ==
138
 
139
+ = 3.3 - 24th June 2018 =
140
+ * Add user role/capability match
141
  * Add fix for IP blocking plugins
142
+ * Add server match to redirect other domains (beta)
143
+ * Add a force http to https option (beta)
144
+ * Use users locale setting, not site
145
  * Check for mismatched site/home URLs
146
  * Fix WP CLI not clearing logs
147
  * Fix old capability check
148
+ * Detect BOM marker in response
149
+ * Improve detection of servers that block content-type json
150
+ * Fix incorrect encoding of entities in some locale files
151
+ * Fix table navigation parameters not affecting subsequent pages
152
+ * Fix .htaccess saving after WordPress redirects
153
+ * Fix get_plugin_data error
154
+ * Fix canonical redirect problem caused by change in WordPress
155
+ * Fix situation that prevented rules cascading
156
 
157
  = 3.2 - 11th February 2018 =
158
  * Add cookie match - redirect based on a cookie
redirection-admin.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
 
3
- include dirname( __FILE__ ).'/models/group.php';
4
- include dirname( __FILE__ ).'/models/monitor.php';
5
- include dirname( __FILE__ ).'/models/file-io.php';
6
 
7
  define( 'RED_DEFAULT_PER_PAGE', 25 );
8
  define( 'RED_MAX_PER_PAGE', 200 );
@@ -15,7 +15,7 @@ class Redirection_Admin {
15
  if ( is_null( self::$instance ) ) {
16
  self::$instance = new Redirection_Admin();
17
 
18
- load_plugin_textdomain( 'redirection', false, dirname( plugin_basename( REDIRECTION_FILE ) ).'/locale/' );
19
  }
20
 
21
  return self::$instance;
@@ -23,7 +23,7 @@ class Redirection_Admin {
23
 
24
  function __construct() {
25
  add_action( 'admin_menu', array( $this, 'admin_menu' ) );
26
- add_action( 'plugin_action_links_'.basename( dirname( REDIRECTION_FILE ) ).'/'.basename( REDIRECTION_FILE ), array( $this, 'plugin_settings' ), 10, 4 );
27
  add_filter( 'redirection_save_options', array( $this, 'flush_schedule' ) );
28
  add_filter( 'set-screen-option', array( $this, 'set_per_page' ), 10, 3 );
29
  add_action( 'redirection_redirect_updated', array( $this, 'set_default_group' ), 10, 2 );
@@ -76,20 +76,20 @@ class Redirection_Admin {
76
 
77
  // These are only called on the single standard site, or in the network admin of the multisite - they run across all available sites
78
  public static function plugin_uninstall() {
79
- include_once dirname( REDIRECTION_FILE ).'/models/database.php';
80
 
81
- $db = new RE_Database();
82
 
83
  if ( is_network_admin() ) {
84
  foreach ( get_sites() as $site ) {
85
  switch_to_blog( $site->blog_id );
86
 
87
- $db->remove( REDIRECTION_FILE );
88
 
89
  restore_current_blog();
90
  }
91
  } else {
92
- $db->remove( REDIRECTION_FILE );
93
  }
94
  }
95
 
@@ -99,7 +99,7 @@ class Redirection_Admin {
99
  Red_Flusher::schedule();
100
 
101
  if ( $version !== REDIRECTION_DB_VERSION || ( defined( 'REDIRECTION_FORCE_UPDATE' ) && REDIRECTION_FORCE_UPDATE ) ) {
102
- include_once dirname( REDIRECTION_FILE ).'/models/database.php';
103
 
104
  $database = new RE_Database();
105
 
@@ -131,6 +131,7 @@ class Redirection_Admin {
131
  'mootools',
132
  'wp-seo-',
133
  'authenticate',
 
134
  );
135
 
136
  foreach ( $ignore as $text ) {
@@ -156,7 +157,7 @@ class Redirection_Admin {
156
  }
157
 
158
  function plugin_settings( $links ) {
159
- $settings_link = '<a href="tools.php?page='.basename( REDIRECTION_FILE ).'&amp;sub=options">'.__( 'Settings', 'redirection' ).'</a>';
160
  array_unshift( $links, $settings_link );
161
  return $links;
162
  }
@@ -185,16 +186,16 @@ class Redirection_Admin {
185
  }
186
  }
187
 
188
- $build = REDIRECTION_VERSION.'-'.REDIRECTION_BUILD;
189
  $preload = $this->get_preload_data();
190
  $options = red_get_options();
191
  $versions = array(
192
- 'Plugin: '.REDIRECTION_VERSION,
193
- 'WordPress: '.$wp_version.' ('.( is_multisite() ? 'multi' : 'single' ).')',
194
- 'PHP: '.phpversion(),
195
- 'Browser: '.Redirection_Request::get_user_agent(),
196
- 'JavaScript: '.plugin_dir_url( REDIRECTION_FILE ).'redirection.js',
197
- 'REST API: '.red_get_rest_api(),
198
  );
199
 
200
  $this->inject();
@@ -206,10 +207,10 @@ class Redirection_Admin {
206
  if ( defined( 'REDIRECTION_DEV_MODE' ) && REDIRECTION_DEV_MODE ) {
207
  wp_enqueue_script( 'redirection', 'http://localhost:3312/redirection.js', array(), $build, true );
208
  } else {
209
- wp_enqueue_script( 'redirection', plugin_dir_url( REDIRECTION_FILE ).'redirection.js', array(), $build, true );
210
  }
211
 
212
- wp_enqueue_style( 'redirection', plugin_dir_url( REDIRECTION_FILE ).'redirection.css', array(), $build );
213
 
214
  wp_localize_script( 'redirection', 'Redirectioni10n', array(
215
  'WP_API_root' => esc_url_raw( red_get_rest_api() ),
@@ -258,7 +259,7 @@ class Redirection_Admin {
258
  $options = red_get_options();
259
 
260
  if ( $options['version'] !== REDIRECTION_VERSION || $options['rest_api'] === false || ( defined( 'REDIRECTION_FORCE_UPDATE' ) && REDIRECTION_FORCE_UPDATE ) ) {
261
- include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
262
 
263
  $fixer = new Red_Fixer();
264
  $status = $fixer->get_rest_status();
@@ -268,12 +269,14 @@ class Redirection_Admin {
268
  } elseif ( $options['rest_api'] === false ) {
269
  red_set_options( array( 'rest_api' => 0 ) );
270
  }
 
 
271
  }
272
  }
273
 
274
  private function run_fixit() {
275
  if ( current_user_can( apply_filters( 'redirection_role', 'manage_options' ) ) ) {
276
- include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
277
 
278
  $fixer = new Red_Fixer();
279
  $fixer->fix( $fixer->get_status() );
@@ -296,7 +299,7 @@ class Redirection_Admin {
296
  $api = new Redirection_Api_Plugin( REDIRECTION_API_NAMESPACE );
297
 
298
  return array(
299
- 'pluginStatus' => $api->route_status( new WP_REST_Request() )
300
  );
301
  }
302
 
@@ -322,7 +325,7 @@ class Redirection_Admin {
322
  }
323
 
324
  private function get_i18n_data() {
325
- $i18n_json = dirname( REDIRECTION_FILE ) . '/locale/json/redirection-' . get_locale() . '.json';
326
 
327
  if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) {
328
  $locale_data = @file_get_contents( $i18n_json );
@@ -338,7 +341,7 @@ class Redirection_Admin {
338
 
339
  function admin_menu() {
340
  $hook = add_management_page( 'Redirection', 'Redirection', apply_filters( 'redirection_role', 'manage_options' ), basename( REDIRECTION_FILE ), array( &$this, 'admin_screen' ) );
341
- add_action( 'load-'.$hook, array( $this, 'redirection_head' ) );
342
  }
343
 
344
  private function check_minimum_wp() {
@@ -358,7 +361,7 @@ class Redirection_Admin {
358
  }
359
 
360
  private function check_tables_exist() {
361
- include_once dirname( REDIRECTION_FILE ).'/models/database.php';
362
 
363
  $database = new RE_Database();
364
  $status = $database->get_status();
@@ -382,10 +385,10 @@ class Redirection_Admin {
382
  }
383
 
384
  function admin_screen() {
385
- $version = get_plugin_data( REDIRECTION_FILE );
386
  $version = $version['Version'];
387
 
388
- Redirection_Admin::update();
389
 
390
  if ( $this->check_minimum_wp() === false ) {
391
  return;
@@ -409,13 +412,13 @@ class Redirection_Admin {
409
  <p><?php _e( "This may be caused by another plugin - look at your browser's error console for more details.", 'redirection' ); ?></p>
410
  <p><?php _e( 'If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.', 'redirection' ); ?></p>
411
  <p><?php _e( 'Also check if your browser is able to load <code>redirection.js</code>:', 'redirection' ); ?></p>
412
- <p><code><?php echo esc_html( plugin_dir_url( REDIRECTION_FILE ).'redirection.js?ver='.urlencode( REDIRECTION_VERSION ).'-'.urlencode( REDIRECTION_BUILD ) ); ?></code></p>
413
  <p><?php _e( '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' ); ?></p>
414
  <p><?php _e( 'Please see the <a href="https://redirection.me/support/problems/">list of common problems</a>.', 'redirection' ); ?></p>
415
- <p><?php _e( "If you think Redirection is at fault then create an issue.", 'redirection' ); ?></p>
416
  <p class="versions"><?php _e( '<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.', 'redirection' ); ?></p>
417
  <p>
418
- <a class="button-primary" target="_blank" href="https://github.com/johngodley/redirection/issues/new?title=Problem%20starting%20Redirection%20<?php echo esc_attr( $version ) ?>">
419
  <?php _e( 'Create Issue', 'redirection' ); ?>
420
  </a>
421
  </p>
@@ -474,8 +477,10 @@ class Redirection_Admin {
474
  */
475
  public function red_proxy() {
476
  if ( $this->user_has_access() && isset( $_GET['rest_path'] ) && substr( $_GET['rest_path'], 0, 15 ) === 'redirection/v1/' ) {
 
 
477
  $server = rest_get_server();
478
- $server->serve_request( rtrim( '/'.$_GET['rest_path'], '/' ) );
479
  die();
480
  }
481
  }
@@ -496,7 +501,7 @@ class Redirection_Admin {
496
  if ( isset( $_GET['token'] ) && $_GET['sub'] === 'rss' ) {
497
  $options = red_get_options();
498
 
499
- if ( $_GET['token'] === $options['token'] && !empty( $options['token'] ) ) {
500
  $items = Red_Item::get_all_for_module( intval( $_GET['module'] ) );
501
 
502
  $exporter = Red_FileIO::create( 'rss' );
1
  <?php
2
 
3
+ include dirname( __FILE__ ) . '/models/group.php';
4
+ include dirname( __FILE__ ) . '/models/monitor.php';
5
+ include dirname( __FILE__ ) . '/models/file-io.php';
6
 
7
  define( 'RED_DEFAULT_PER_PAGE', 25 );
8
  define( 'RED_MAX_PER_PAGE', 200 );
15
  if ( is_null( self::$instance ) ) {
16
  self::$instance = new Redirection_Admin();
17
 
18
+ load_plugin_textdomain( 'redirection', false, dirname( plugin_basename( REDIRECTION_FILE ) ) . '/locale/' );
19
  }
20
 
21
  return self::$instance;
23
 
24
  function __construct() {
25
  add_action( 'admin_menu', array( $this, 'admin_menu' ) );
26
+ add_action( 'plugin_action_links_' . basename( dirname( REDIRECTION_FILE ) ) . '/' . basename( REDIRECTION_FILE ), array( $this, 'plugin_settings' ), 10, 4 );
27
  add_filter( 'redirection_save_options', array( $this, 'flush_schedule' ) );
28
  add_filter( 'set-screen-option', array( $this, 'set_per_page' ), 10, 3 );
29
  add_action( 'redirection_redirect_updated', array( $this, 'set_default_group' ), 10, 2 );
76
 
77
  // These are only called on the single standard site, or in the network admin of the multisite - they run across all available sites
78
  public static function plugin_uninstall() {
79
+ include_once dirname( REDIRECTION_FILE ) . '/models/database.php';
80
 
81
+ $database = new RE_Database();
82
 
83
  if ( is_network_admin() ) {
84
  foreach ( get_sites() as $site ) {
85
  switch_to_blog( $site->blog_id );
86
 
87
+ $database->remove( REDIRECTION_FILE );
88
 
89
  restore_current_blog();
90
  }
91
  } else {
92
+ $database->remove( REDIRECTION_FILE );
93
  }
94
  }
95
 
99
  Red_Flusher::schedule();
100
 
101
  if ( $version !== REDIRECTION_DB_VERSION || ( defined( 'REDIRECTION_FORCE_UPDATE' ) && REDIRECTION_FORCE_UPDATE ) ) {
102
+ include_once dirname( REDIRECTION_FILE ) . '/models/database.php';
103
 
104
  $database = new RE_Database();
105
 
131
  'mootools',
132
  'wp-seo-',
133
  'authenticate',
134
+ 'yikes',
135
  );
136
 
137
  foreach ( $ignore as $text ) {
157
  }
158
 
159
  function plugin_settings( $links ) {
160
+ $settings_link = '<a href="tools.php?page=' . basename( REDIRECTION_FILE ) . '&amp;sub=options">' . __( 'Settings', 'redirection' ) . '</a>';
161
  array_unshift( $links, $settings_link );
162
  return $links;
163
  }
186
  }
187
  }
188
 
189
+ $build = REDIRECTION_VERSION . '-' . REDIRECTION_BUILD;
190
  $preload = $this->get_preload_data();
191
  $options = red_get_options();
192
  $versions = array(
193
+ 'Plugin: ' . REDIRECTION_VERSION,
194
+ 'WordPress: ' . $wp_version . ' (' . ( is_multisite() ? 'multi' : 'single' ) . ')',
195
+ 'PHP: ' . phpversion(),
196
+ 'Browser: ' . Redirection_Request::get_user_agent(),
197
+ 'JavaScript: ' . plugin_dir_url( REDIRECTION_FILE ) . 'redirection.js',
198
+ 'REST API: ' . red_get_rest_api(),
199
  );
200
 
201
  $this->inject();
207
  if ( defined( 'REDIRECTION_DEV_MODE' ) && REDIRECTION_DEV_MODE ) {
208
  wp_enqueue_script( 'redirection', 'http://localhost:3312/redirection.js', array(), $build, true );
209
  } else {
210
+ wp_enqueue_script( 'redirection', plugin_dir_url( REDIRECTION_FILE ) . 'redirection.js', array(), $build, true );
211
  }
212
 
213
+ wp_enqueue_style( 'redirection', plugin_dir_url( REDIRECTION_FILE ) . 'redirection.css', array(), $build );
214
 
215
  wp_localize_script( 'redirection', 'Redirectioni10n', array(
216
  'WP_API_root' => esc_url_raw( red_get_rest_api() ),
259
  $options = red_get_options();
260
 
261
  if ( $options['version'] !== REDIRECTION_VERSION || $options['rest_api'] === false || ( defined( 'REDIRECTION_FORCE_UPDATE' ) && REDIRECTION_FORCE_UPDATE ) ) {
262
+ include_once dirname( REDIRECTION_FILE ) . '/models/fixer.php';
263
 
264
  $fixer = new Red_Fixer();
265
  $status = $fixer->get_rest_status();
269
  } elseif ( $options['rest_api'] === false ) {
270
  red_set_options( array( 'rest_api' => 0 ) );
271
  }
272
+
273
+ red_set_options( array( 'version' => REDIRECTION_VERSION ) );
274
  }
275
  }
276
 
277
  private function run_fixit() {
278
  if ( current_user_can( apply_filters( 'redirection_role', 'manage_options' ) ) ) {
279
+ include_once dirname( REDIRECTION_FILE ) . '/models/fixer.php';
280
 
281
  $fixer = new Red_Fixer();
282
  $fixer->fix( $fixer->get_status() );
299
  $api = new Redirection_Api_Plugin( REDIRECTION_API_NAMESPACE );
300
 
301
  return array(
302
+ 'pluginStatus' => $api->route_status( new WP_REST_Request() ),
303
  );
304
  }
305
 
325
  }
326
 
327
  private function get_i18n_data() {
328
+ $i18n_json = dirname( REDIRECTION_FILE ) . '/locale/json/redirection-' . get_user_locale() . '.json';
329
 
330
  if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) {
331
  $locale_data = @file_get_contents( $i18n_json );
341
 
342
  function admin_menu() {
343
  $hook = add_management_page( 'Redirection', 'Redirection', apply_filters( 'redirection_role', 'manage_options' ), basename( REDIRECTION_FILE ), array( &$this, 'admin_screen' ) );
344
+ add_action( 'load-' . $hook, array( $this, 'redirection_head' ) );
345
  }
346
 
347
  private function check_minimum_wp() {
361
  }
362
 
363
  private function check_tables_exist() {
364
+ include_once dirname( REDIRECTION_FILE ) . '/models/database.php';
365
 
366
  $database = new RE_Database();
367
  $status = $database->get_status();
385
  }
386
 
387
  function admin_screen() {
388
+ $version = red_get_plugin_data( REDIRECTION_FILE );
389
  $version = $version['Version'];
390
 
391
+ Redirection_Admin::update();
392
 
393
  if ( $this->check_minimum_wp() === false ) {
394
  return;
412
  <p><?php _e( "This may be caused by another plugin - look at your browser's error console for more details.", 'redirection' ); ?></p>
413
  <p><?php _e( 'If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.', 'redirection' ); ?></p>
414
  <p><?php _e( 'Also check if your browser is able to load <code>redirection.js</code>:', 'redirection' ); ?></p>
415
+ <p><code><?php echo esc_html( plugin_dir_url( REDIRECTION_FILE ) . 'redirection.js?ver=' . urlencode( REDIRECTION_VERSION ) . '-' . urlencode( REDIRECTION_BUILD ) ); ?></code></p>
416
  <p><?php _e( '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' ); ?></p>
417
  <p><?php _e( 'Please see the <a href="https://redirection.me/support/problems/">list of common problems</a>.', 'redirection' ); ?></p>
418
+ <p><?php _e( 'If you think Redirection is at fault then create an issue.', 'redirection' ); ?></p>
419
  <p class="versions"><?php _e( '<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.', 'redirection' ); ?></p>
420
  <p>
421
+ <a class="button-primary" target="_blank" href="https://github.com/johngodley/redirection/issues/new?title=Problem%20starting%20Redirection%20<?php echo esc_attr( $version ); ?>">
422
  <?php _e( 'Create Issue', 'redirection' ); ?>
423
  </a>
424
  </p>
477
  */
478
  public function red_proxy() {
479
  if ( $this->user_has_access() && isset( $_GET['rest_path'] ) && substr( $_GET['rest_path'], 0, 15 ) === 'redirection/v1/' ) {
480
+ $_SERVER['HTTP_CONTENT_TYPE'] = 'application/json; charset=utf-8';
481
+ $_SERVER['CONTENT_TYPE'] = $_SERVER['HTTP_CONTENT_TYPE'];
482
  $server = rest_get_server();
483
+ $server->serve_request( rtrim( '/' . $_GET['rest_path'], '/' ) );
484
  die();
485
  }
486
  }
501
  if ( isset( $_GET['token'] ) && $_GET['sub'] === 'rss' ) {
502
  $options = red_get_options();
503
 
504
+ if ( $_GET['token'] === $options['token'] && ! empty( $options['token'] ) ) {
505
  $items = Red_Item::get_all_for_module( intval( $_GET['module'] ) );
506
 
507
  $exporter = Red_FileIO::create( 'rss' );
redirection-api.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
 
3
- include_once dirname( __FILE__ ).'/api/api-group.php';
4
- include_once dirname( __FILE__ ).'/api/api-redirect.php';
5
- include_once dirname( __FILE__ ).'/api/api-log.php';
6
- include_once dirname( __FILE__ ).'/api/api-404.php';
7
- include_once dirname( __FILE__ ).'/api/api-settings.php';
8
- include_once dirname( __FILE__ ).'/api/api-plugin.php';
9
- include_once dirname( __FILE__ ).'/api/api-import.php';
10
- include_once dirname( __FILE__ ).'/api/api-export.php';
11
 
12
  define( 'REDIRECTION_API_NAMESPACE', 'redirection/v1' );
13
 
@@ -102,7 +102,7 @@ class Redirection_Api {
102
  if ( is_null( self::$instance ) ) {
103
  self::$instance = new Redirection_Api();
104
 
105
- load_plugin_textdomain( 'redirection', false, dirname( plugin_basename( REDIRECTION_FILE ) ).'/locale/' );
106
  }
107
 
108
  return self::$instance;
1
  <?php
2
 
3
+ include_once dirname( __FILE__ ) . '/api/api-group.php';
4
+ include_once dirname( __FILE__ ) . '/api/api-redirect.php';
5
+ include_once dirname( __FILE__ ) . '/api/api-log.php';
6
+ include_once dirname( __FILE__ ) . '/api/api-404.php';
7
+ include_once dirname( __FILE__ ) . '/api/api-settings.php';
8
+ include_once dirname( __FILE__ ) . '/api/api-plugin.php';
9
+ include_once dirname( __FILE__ ) . '/api/api-import.php';
10
+ include_once dirname( __FILE__ ) . '/api/api-export.php';
11
 
12
  define( 'REDIRECTION_API_NAMESPACE', 'redirection/v1' );
13
 
102
  if ( is_null( self::$instance ) ) {
103
  self::$instance = new Redirection_Api();
104
 
105
+ load_plugin_textdomain( 'redirection', false, dirname( plugin_basename( REDIRECTION_FILE ) ) . '/locale/' );
106
  }
107
 
108
  return self::$instance;
redirection-front.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- include_once dirname( __FILE__ ).'/modules/wordpress.php';
4
 
5
  class Redirection {
6
  private static $instance = null;
1
  <?php
2
 
3
+ include_once dirname( __FILE__ ) . '/modules/wordpress.php';
4
 
5
  class Redirection {
6
  private static $instance = null;
redirection-settings.php CHANGED
@@ -7,9 +7,17 @@ define( 'REDIRECTION_API_ADMIN', 2 );
7
  define( 'REDIRECTION_API_JSON_RELATIVE', 3 );
8
  define( 'REDIRECTION_API_POST', 4 );
9
 
 
 
 
 
 
 
 
 
10
  function red_get_post_types( $full = true ) {
11
  $types = get_post_types( array( 'public' => true ), 'objects' );
12
- $types[] = (object)array( 'name' => 'trash', 'label' => __( 'Trash' ) );
13
 
14
  $post_types = array();
15
  foreach ( $types as $type ) {
@@ -31,6 +39,10 @@ function red_set_options( array $settings = array() ) {
31
  $options = red_get_options();
32
  $monitor_types = array();
33
 
 
 
 
 
34
  if ( isset( $settings['rest_api'] ) && in_array( intval( $settings['rest_api'], 10 ), array( 0, 1, 2, 3, 4 ) ) ) {
35
  $options['rest_api'] = intval( $settings['rest_api'] );
36
  }
@@ -64,7 +76,7 @@ function red_set_options( array $settings = array() ) {
64
 
65
  if ( ! Red_Group::get( $options['monitor_post'] ) && $options['monitor_post'] !== 0 ) {
66
  $groups = Red_Group::get_all();
67
- $options['monitor_post'] = $groups[ 0 ]['id'];
68
  }
69
  }
70
 
@@ -77,7 +89,7 @@ function red_set_options( array $settings = array() ) {
77
 
78
  if ( ! Red_Group::get( $options['last_group_id'] ) ) {
79
  $groups = Red_Group::get_all();
80
- $options['last_group_id'] = $groups[ 0 ]['id'];
81
  }
82
  }
83
 
@@ -89,7 +101,11 @@ function red_set_options( array $settings = array() ) {
89
  $options['token'] = $settings['token'];
90
  }
91
 
92
- if ( !isset( $settings['token'] ) || trim( $options['token'] ) === '' ) {
 
 
 
 
93
  $options['token'] = md5( uniqid() );
94
  }
95
 
@@ -122,7 +138,7 @@ function red_set_options( array $settings = array() ) {
122
  $options['modules'][2] = $module->update( $settings );
123
  }
124
 
125
- if ( !empty( $options['monitor_post'] ) && count( $options['monitor_types'] ) === 0 ) {
126
  // If we have a monitor_post set, but no types, then blank everything
127
  $options['monitor_post'] = 0;
128
  $options['associated_redirect'] = '';
@@ -153,6 +169,7 @@ function red_get_options() {
153
  'ip_logging' => 1, // Full IP logging
154
  'last_group_id' => 0,
155
  'rest_api' => false,
 
156
  'version' => REDIRECTION_VERSION,
157
  ) );
158
 
7
  define( 'REDIRECTION_API_JSON_RELATIVE', 3 );
8
  define( 'REDIRECTION_API_POST', 4 );
9
 
10
+ function red_get_plugin_data( $plugin ) {
11
+ if ( ! function_exists( 'get_plugin_data' ) ) {
12
+ include_once ABSPATH . '/wp-admin/includes/plugin.php';
13
+ }
14
+
15
+ return get_plugin_data( $plugin );
16
+ }
17
+
18
  function red_get_post_types( $full = true ) {
19
  $types = get_post_types( array( 'public' => true ), 'objects' );
20
+ $types[] = ( object )array( 'name' => 'trash', 'label' => __( 'Trash' ) );
21
 
22
  $post_types = array();
23
  foreach ( $types as $type ) {
39
  $options = red_get_options();
40
  $monitor_types = array();
41
 
42
+ if ( isset( $settings['version'] ) ) {
43
+ $options['version'] = $settings['version'];
44
+ }
45
+
46
  if ( isset( $settings['rest_api'] ) && in_array( intval( $settings['rest_api'], 10 ), array( 0, 1, 2, 3, 4 ) ) ) {
47
  $options['rest_api'] = intval( $settings['rest_api'] );
48
  }
76
 
77
  if ( ! Red_Group::get( $options['monitor_post'] ) && $options['monitor_post'] !== 0 ) {
78
  $groups = Red_Group::get_all();
79
+ $options['monitor_post'] = $groups[0]['id'];
80
  }
81
  }
82
 
89
 
90
  if ( ! Red_Group::get( $options['last_group_id'] ) ) {
91
  $groups = Red_Group::get_all();
92
+ $options['last_group_id'] = $groups[0]['id'];
93
  }
94
  }
95
 
101
  $options['token'] = $settings['token'];
102
  }
103
 
104
+ if ( isset( $settings['https'] ) ) {
105
+ $options['https'] = $settings['https'] ? true : false;
106
+ }
107
+
108
+ if ( ! isset( $settings['token'] ) || trim( $options['token'] ) === '' ) {
109
  $options['token'] = md5( uniqid() );
110
  }
111
 
138
  $options['modules'][2] = $module->update( $settings );
139
  }
140
 
141
+ if ( ! empty( $options['monitor_post'] ) && count( $options['monitor_types'] ) === 0 ) {
142
  // If we have a monitor_post set, but no types, then blank everything
143
  $options['monitor_post'] = 0;
144
  $options['associated_redirect'] = '';
169
  'ip_logging' => 1, // Full IP logging
170
  'last_group_id' => 0,
171
  'rest_api' => false,
172
+ 'https' => false,
173
  'version' => REDIRECTION_VERSION,
174
  ) );
175
 
redirection-version.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
 
3
- define( 'REDIRECTION_VERSION', '3.2.1' );
4
- define( 'REDIRECTION_BUILD', '8aeb4c35e5dc36090828eb7cbb6a7d14' );
5
  define( 'REDIRECTION_MIN_WP', '4.5' );
1
  <?php
2
 
3
+ define( 'REDIRECTION_VERSION', '3.3' );
4
+ define( 'REDIRECTION_BUILD', '5e2fd33ef11a377ea0813370ddb5fd1d' );
5
  define( 'REDIRECTION_MIN_WP', '4.5' );
redirection.js CHANGED
@@ -1,41 +1,45 @@
1
- /*! Redirection v3.2.1 */
2
- !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=14)}([function(e,t,n){"use strict";e.exports=n(18)},function(e,t,n){var r=n(34),o=new r;e.exports={numberFormat:o.numberFormat.bind(o),translate:o.translate.bind(o),configure:o.configure.bind(o),setLocale:o.setLocale.bind(o),getLocale:o.getLocale.bind(o),getLocaleSlug:o.getLocaleSlug.bind(o),addTranslations:o.addTranslations.bind(o),reRenderTranslations:o.reRenderTranslations.bind(o),registerComponentUpdateHook:o.registerComponentUpdateHook.bind(o),registerTranslateHook:o.registerTranslateHook.bind(o),state:o.state,stateObserver:o.stateObserver,on:o.stateObserver.on.bind(o.stateObserver),off:o.stateObserver.removeListener.bind(o.stateObserver),emit:o.stateObserver.emit.bind(o.stateObserver),$this:o,I18N:r}},function(e,t,n){e.exports=n(43)()},function(e,t,n){var r,o;/*!
3
- Copyright (c) 2016 Jed Watson.
4
  Licensed under the MIT License (MIT), see
5
  http://jedwatson.github.io/classnames
6
  */
7
- !function(){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r))e.push(n.apply(null,r));else if("object"===o)for(var i in r)a.call(r,i)&&r[i]&&e.push(i)}}return e.join(" ")}var a={}.hasOwnProperty;void 0!==e&&e.exports?e.exports=n:(r=[],void 0!==(o=function(){return n}.apply(t,r))&&(e.exports=o))}()},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";function r(e,t,n){function o(){b===g&&(b=g.slice())}function a(){return m}function i(e){if("function"!=typeof e)throw new Error("Expected listener to be a function.");var t=!0;return o(),b.push(e),function(){if(t){t=!1,o();var n=b.indexOf(e);b.splice(n,1)}}}function l(e){if(!Object(p.a)(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(y)throw new Error("Reducers may not dispatch actions.");try{y=!0,m=h(m,e)}finally{y=!1}for(var t=g=b,n=0;n<t.length;n++){(0,t[n])()}return e}function s(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");h=e,l({type:d.INIT})}function u(){var e,t=i;return e={subscribe:function(e){function n(){e.next&&e.next(a())}if("object"!=typeof e)throw new TypeError("Expected the observer to be an object.");return n(),{unsubscribe:t(n)}}},e[f.a]=function(){return this},e}var c;if("function"==typeof t&&void 0===n&&(n=t,t=void 0),void 0!==n){if("function"!=typeof n)throw new Error("Expected the enhancer to be a function.");return n(r)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var h=e,m=t,g=[],b=g,y=!1;return l({type:d.INIT}),c={dispatch:l,subscribe:i,getState:a,replaceReducer:s},c[f.a]=u,c}function o(e,t){var n=t&&t.type;return"Given action "+(n&&'"'+n.toString()+'"'||"an action")+', reducer "'+e+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.'}function a(e){Object.keys(e).forEach(function(t){var n=e[t];if(void 0===n(void 0,{type:d.INIT}))throw new Error('Reducer "'+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.");if(void 0===n(void 0,{type:"@@redux/PROBE_UNKNOWN_ACTION_"+Math.random().toString(36).substring(7).split("").join(".")}))throw new Error('Reducer "'+t+"\" returned undefined when probed with a random type. Don't try to handle "+d.INIT+' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.')})}function i(e){for(var t=Object.keys(e),n={},r=0;r<t.length;r++){var i=t[r];"function"==typeof e[i]&&(n[i]=e[i])}var l=Object.keys(n),s=void 0;try{a(n)}catch(e){s=e}return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];if(s)throw s;for(var r=!1,a={},i=0;i<l.length;i++){var u=l[i],c=n[u],p=e[u],f=c(p,t);if(void 0===f){var d=o(u,t);throw new Error(d)}a[u]=f,r=r||f!==p}return r?a:e}}function l(e,t){return function(){return t(e.apply(void 0,arguments))}}function s(e,t){if("function"==typeof e)return l(e,t);if("object"!=typeof e||null===e)throw new Error("bindActionCreators expected an object or a function, instead received "+(null===e?"null":typeof e)+'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?');for(var n=Object.keys(e),r={},o=0;o<n.length;o++){var a=n[o],i=e[a];"function"==typeof i&&(r[a]=l(i,t))}return r}function u(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce(function(e,t){return function(){return e(t.apply(void 0,arguments))}})}function c(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){return function(n,r,o){var a=e(n,r,o),i=a.dispatch,l=[],s={getState:a.getState,dispatch:function(e){return i(e)}};return l=t.map(function(e){return e(s)}),i=u.apply(void 0,l)(a.dispatch),h({},a,{dispatch:i})}}}Object.defineProperty(t,"__esModule",{value:!0});var p=n(6),f=n(48),d={INIT:"@@redux/INIT"},h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};n.d(t,"createStore",function(){return r}),n.d(t,"combineReducers",function(){return i}),n.d(t,"bindActionCreators",function(){return s}),n.d(t,"applyMiddleware",function(){return c}),n.d(t,"compose",function(){return u})},function(e,t,n){"use strict";function r(e){var t=g.call(e,y),n=e[y];try{e[y]=void 0;var r=!0}catch(e){}var o=b.call(e);return r&&(t?e[y]=n:delete e[y]),o}function o(e){return w.call(e)}function a(e){return null==e?void 0===e?k:_:x&&x in Object(e)?v(e):O(e)}function i(e,t){return function(n){return e(t(n))}}function l(e){return null!=e&&"object"==typeof e}function s(e){if(!T(e)||C(e)!=N)return!1;var t=P(e);if(null===t)return!0;var n=A.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&I.call(n)==L}var u=n(47),c="object"==typeof self&&self&&self.Object===Object&&self,p=u.a||c||Function("return this")(),f=p,d=f.Symbol,h=d,m=Object.prototype,g=m.hasOwnProperty,b=m.toString,y=h?h.toStringTag:void 0,v=r,E=Object.prototype,w=E.toString,O=o,_="[object Null]",k="[object Undefined]",x=h?h.toStringTag:void 0,C=a,S=i,j=S(Object.getPrototypeOf,Object),P=j,T=l,N="[object Object]",R=Function.prototype,D=Object.prototype,I=R.toString,A=D.hasOwnProperty,L=I.call(Object);t.a=s},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";t.decode=t.parse=n(53),t.encode=t.stringify=n(54)},function(e,t,n){"use strict";function r(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}/*
 
 
 
 
 
 
8
  object-assign
9
  (c) Sindre Sorhus
10
  @license MIT
11
- */
12
- var o=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,l,s=r(e),u=1;u<arguments.length;u++){n=Object(arguments[u]);for(var c in n)a.call(n,c)&&(s[c]=n[c]);if(o){l=o(n);for(var p=0;p<l.length;p++)i.call(n,l[p])&&(s[l[p]]=n[l[p]])}}return s}},function(e,t,n){"use strict";var r={};e.exports=r},function(e,t){function n(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function r(e){return"function"==typeof e}function o(e){return"number"==typeof e}function a(e){return"object"==typeof e&&null!==e}function i(e){return void 0===e}e.exports=n,n.EventEmitter=n,n.prototype._events=void 0,n.prototype._maxListeners=void 0,n.defaultMaxListeners=10,n.prototype.setMaxListeners=function(e){if(!o(e)||e<0||isNaN(e))throw TypeError("n must be a positive number");return this._maxListeners=e,this},n.prototype.emit=function(e){var t,n,o,l,s,u;if(this._events||(this._events={}),"error"===e&&(!this._events.error||a(this._events.error)&&!this._events.error.length)){if((t=arguments[1])instanceof Error)throw t;var c=new Error('Uncaught, unspecified "error" event. ('+t+")");throw c.context=t,c}if(n=this._events[e],i(n))return!1;if(r(n))switch(arguments.length){case 1:n.call(this);break;case 2:n.call(this,arguments[1]);break;case 3:n.call(this,arguments[1],arguments[2]);break;default:l=Array.prototype.slice.call(arguments,1),n.apply(this,l)}else if(a(n))for(l=Array.prototype.slice.call(arguments,1),u=n.slice(),o=u.length,s=0;s<o;s++)u[s].apply(this,l);return!0},n.prototype.addListener=function(e,t){var o;if(!r(t))throw TypeError("listener must be a function");return this._events||(this._events={}),this._events.newListener&&this.emit("newListener",e,r(t.listener)?t.listener:t),this._events[e]?a(this._events[e])?this._events[e].push(t):this._events[e]=[this._events[e],t]:this._events[e]=t,a(this._events[e])&&!this._events[e].warned&&(o=i(this._maxListeners)?n.defaultMaxListeners:this._maxListeners)&&o>0&&this._events[e].length>o&&(this._events[e].warned=!0,console.trace),this},n.prototype.on=n.prototype.addListener,n.prototype.once=function(e,t){function n(){this.removeListener(e,n),o||(o=!0,t.apply(this,arguments))}if(!r(t))throw TypeError("listener must be a function");var o=!1;return n.listener=t,this.on(e,n),this},n.prototype.removeListener=function(e,t){var n,o,i,l;if(!r(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(n=this._events[e],i=n.length,o=-1,n===t||r(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(a(n)){for(l=i;l-- >0;)if(n[l]===t||n[l].listener&&n[l].listener===t){o=l;break}if(o<0)return this;1===n.length?(n.length=0,delete this._events[e]):n.splice(o,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},n.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(n=this._events[e],r(n))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},n.prototype.listeners=function(e){return this._events&&this._events[e]?r(this._events[e])?[this._events[e]]:this._events[e].slice():[]},n.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(r(t))return 1;if(t)return t.length}return 0},n.listenerCount=function(e,t){return e.listenerCount(t)}},function(e,t,n){"use strict";function r(e,t,n,r,a,i,l,s){if(o(t),!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,a,i,l,s],p=0;u=new Error(t.replace(/%s/g,function(){return c[p++]})),u.name="Invariant Violation"}throw u.framesToPop=1,u}}var o=function(e){};e.exports=r},function(e,t,n){"use strict";function r(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}function o(e,t,n){if(e&&u.isObject(e)&&e instanceof r)return e;var o=new r;return o.parse(e,t,n),o}function a(e){return u.isString(e)&&(e=o(e)),e instanceof r?e.format():r.prototype.format.call(e)}function i(e,t){return o(e,!1,!0).resolve(t)}function l(e,t){return e?o(e,!1,!0).resolveObject(t):t}var s=n(60),u=n(62);t.parse=o,t.resolve=i,t.resolveObject=l,t.format=a,t.Url=r;var c=/^([a-z0-9.+-]+:)/i,p=/:[0-9]*$/,f=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,d=["<",">",'"',"`"," ","\r","\n","\t"],h=["{","}","|","\\","^","`"].concat(d),m=["'"].concat(h),g=["%","/","?",";","#"].concat(m),b=["/","?","#"],y=/^[+a-z0-9A-Z_-]{0,63}$/,v=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,E={javascript:!0,"javascript:":!0},w={javascript:!0,"javascript:":!0},O={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},_=n(8);r.prototype.parse=function(e,t,n){if(!u.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var r=e.indexOf("?"),o=-1!==r&&r<e.indexOf("#")?"?":"#",a=e.split(o),i=/\\/g;a[0]=a[0].replace(i,"/"),e=a.join(o);var l=e;if(l=l.trim(),!n&&1===e.split("#").length){var p=f.exec(l);if(p)return this.path=l,this.href=l,this.pathname=p[1],p[2]?(this.search=p[2],this.query=t?_.parse(this.search.substr(1)):this.search.substr(1)):t&&(this.search="",this.query={}),this}var d=c.exec(l);if(d){d=d[0];var h=d.toLowerCase();this.protocol=h,l=l.substr(d.length)}if(n||d||l.match(/^\/\/[^@\/]+@[^@\/]+/)){var k="//"===l.substr(0,2);!k||d&&w[d]||(l=l.substr(2),this.slashes=!0)}if(!w[d]&&(k||d&&!O[d])){for(var x=-1,C=0;C<b.length;C++){var S=l.indexOf(b[C]);-1!==S&&(-1===x||S<x)&&(x=S)}var j,P;P=-1===x?l.lastIndexOf("@"):l.lastIndexOf("@",x),-1!==P&&(j=l.slice(0,P),l=l.slice(P+1),this.auth=decodeURIComponent(j)),x=-1;for(var C=0;C<g.length;C++){var S=l.indexOf(g[C]);-1!==S&&(-1===x||S<x)&&(x=S)}-1===x&&(x=l.length),this.host=l.slice(0,x),l=l.slice(x),this.parseHost(),this.hostname=this.hostname||"";var T="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!T)for(var N=this.hostname.split(/\./),C=0,R=N.length;C<R;C++){var D=N[C];if(D&&!D.match(y)){for(var I="",A=0,L=D.length;A<L;A++)D.charCodeAt(A)>127?I+="x":I+=D[A];if(!I.match(y)){var F=N.slice(0,C),U=N.slice(C+1),M=D.match(v);M&&(F.push(M[1]),U.unshift(M[2])),U.length&&(l="/"+U.join(".")+l),this.hostname=F.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),T||(this.hostname=s.toASCII(this.hostname));var B=this.port?":"+this.port:"",H=this.hostname||"";this.host=H+B,this.href+=this.host,T&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==l[0]&&(l="/"+l))}if(!E[h])for(var C=0,R=m.length;C<R;C++){var z=m[C];if(-1!==l.indexOf(z)){var V=encodeURIComponent(z);V===z&&(V=escape(z)),l=l.split(z).join(V)}}var G=l.indexOf("#");-1!==G&&(this.hash=l.substr(G),l=l.slice(0,G));var q=l.indexOf("?");if(-1!==q?(this.search=l.substr(q),this.query=l.substr(q+1),t&&(this.query=_.parse(this.query)),l=l.slice(0,q)):t&&(this.search="",this.query={}),l&&(this.pathname=l),O[h]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){var B=this.pathname||"",W=this.search||"";this.path=B+W}return this.href=this.format(),this},r.prototype.format=function(){var e=this.auth||"";e&&(e=encodeURIComponent(e),e=e.replace(/%3A/i,":"),e+="@");var t=this.protocol||"",n=this.pathname||"",r=this.hash||"",o=!1,a="";this.host?o=e+this.host:this.hostname&&(o=e+(-1===this.hostname.indexOf(":")?this.hostname:"["+this.hostname+"]"),this.port&&(o+=":"+this.port)),this.query&&u.isObject(this.query)&&Object.keys(this.query).length&&(a=_.stringify(this.query));var i=this.search||a&&"?"+a||"";return t&&":"!==t.substr(-1)&&(t+=":"),this.slashes||(!t||O[t])&&!1!==o?(o="//"+(o||""),n&&"/"!==n.charAt(0)&&(n="/"+n)):o||(o=""),r&&"#"!==r.charAt(0)&&(r="#"+r),i&&"?"!==i.charAt(0)&&(i="?"+i),n=n.replace(/[?#]/g,function(e){return encodeURIComponent(e)}),i=i.replace("#","%23"),t+o+n+i+r},r.prototype.resolve=function(e){return this.resolveObject(o(e,!1,!0)).format()},r.prototype.resolveObject=function(e){if(u.isString(e)){var t=new r;t.parse(e,!1,!0),e=t}for(var n=new r,o=Object.keys(this),a=0;a<o.length;a++){var i=o[a];n[i]=this[i]}if(n.hash=e.hash,""===e.href)return n.href=n.format(),n;if(e.slashes&&!e.protocol){for(var l=Object.keys(e),s=0;s<l.length;s++){var c=l[s];"protocol"!==c&&(n[c]=e[c])}return O[n.protocol]&&n.hostname&&!n.pathname&&(n.path=n.pathname="/"),n.href=n.format(),n}if(e.protocol&&e.protocol!==n.protocol){if(!O[e.protocol]){for(var p=Object.keys(e),f=0;f<p.length;f++){var d=p[f];n[d]=e[d]}return n.href=n.format(),n}if(n.protocol=e.protocol,e.host||w[e.protocol])n.pathname=e.pathname;else{for(var h=(e.pathname||"").split("/");h.length&&!(e.host=h.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),""!==h[0]&&h.unshift(""),h.length<2&&h.unshift(""),n.pathname=h.join("/")}if(n.search=e.search,n.query=e.query,n.host=e.host||"",n.auth=e.auth,n.hostname=e.hostname||e.host,n.port=e.port,n.pathname||n.search){var m=n.pathname||"",g=n.search||"";n.path=m+g}return n.slashes=n.slashes||e.slashes,n.href=n.format(),n}var b=n.pathname&&"/"===n.pathname.charAt(0),y=e.host||e.pathname&&"/"===e.pathname.charAt(0),v=y||b||n.host&&e.pathname,E=v,_=n.pathname&&n.pathname.split("/")||[],h=e.pathname&&e.pathname.split("/")||[],k=n.protocol&&!O[n.protocol];if(k&&(n.hostname="",n.port=null,n.host&&(""===_[0]?_[0]=n.host:_.unshift(n.host)),n.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(""===h[0]?h[0]=e.host:h.unshift(e.host)),e.host=null),v=v&&(""===h[0]||""===_[0])),y)n.host=e.host||""===e.host?e.host:n.host,n.hostname=e.hostname||""===e.hostname?e.hostname:n.hostname,n.search=e.search,n.query=e.query,_=h;else if(h.length)_||(_=[]),_.pop(),_=_.concat(h),n.search=e.search,n.query=e.query;else if(!u.isNullOrUndefined(e.search)){if(k){n.hostname=n.host=_.shift();var x=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@");x&&(n.auth=x.shift(),n.host=n.hostname=x.shift())}return n.search=e.search,n.query=e.query,u.isNull(n.pathname)&&u.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!_.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var C=_.slice(-1)[0],S=(n.host||e.host||_.length>1)&&("."===C||".."===C)||""===C,j=0,P=_.length;P>=0;P--)C=_[P],"."===C?_.splice(P,1):".."===C?(_.splice(P,1),j++):j&&(_.splice(P,1),j--);if(!v&&!E)for(;j--;j)_.unshift("..");!v||""===_[0]||_[0]&&"/"===_[0].charAt(0)||_.unshift(""),S&&"/"!==_.join("/").substr(-1)&&_.push("");var T=""===_[0]||_[0]&&"/"===_[0].charAt(0);if(k){n.hostname=n.host=T?"":_.length?_.shift():"";var x=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@");x&&(n.auth=x.shift(),n.host=n.hostname=x.shift())}return v=v||n.host&&_.length,v&&!T&&_.unshift(""),_.length?n.pathname=_.join("/"):(n.pathname=null,n.path=null),u.isNull(n.pathname)&&u.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},r.prototype.parseHost=function(){var e=this.host,t=p.exec(e);t&&(t=t[0],":"!==t&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},function(e,t,n){e.exports=n(15)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(){var e=[],t=[];return{clear:function(){t=xr,e=xr},notify:function(){for(var n=e=t,r=0;r<n.length;r++)n[r]()},get:function(){return t},subscribe:function(n){var r=!0;return t===e&&(t=e.slice()),t.push(n),function(){r&&e!==xr&&(r=!1,t===e&&(t=e.slice()),t.splice(t.indexOf(n),1))}}}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function p(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function f(){}function d(e,t){var n={run:function(r){try{var o=e(t.getState(),r);(o!==n.props||n.error)&&(n.shouldComponentUpdate=!0,n.props=o,n.error=null)}catch(e){n.shouldComponentUpdate=!0,n.error=e}}};return n}function h(e){var t,n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.getDisplayName,a=void 0===o?function(e){return"ConnectAdvanced("+e+")"}:o,i=r.methodName,l=void 0===i?"connectAdvanced":i,h=r.renderCountProp,m=void 0===h?void 0:h,g=r.shouldHandleStateChanges,b=void 0===g||g,y=r.storeKey,v=void 0===y?"store":y,E=r.withRef,w=void 0!==E&&E,O=p(r,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef"]),_=v+"Subscription",k=Pr++,x=(t={},t[v]=vr,t[_]=yr,t),C=(n={},n[_]=yr,n);return function(t){kr()("function"==typeof t,"You must pass a component to the function returned by connect. Instead received "+JSON.stringify(t));var n=t.displayName||t.name||"Component",r=a(n),o=jr({},O,{getDisplayName:a,methodName:l,renderCountProp:m,shouldHandleStateChanges:b,storeKey:v,withRef:w,displayName:r,wrappedComponentName:n,WrappedComponent:t}),i=function(n){function a(e,t){s(this,a);var o=u(this,n.call(this,e,t));return o.version=k,o.state={},o.renderCount=0,o.store=e[v]||t[v],o.propsMode=Boolean(e[v]),o.setWrappedInstance=o.setWrappedInstance.bind(o),kr()(o.store,'Could not find "'+v+'" in either the context or props of "'+r+'". Either wrap the root component in a <Provider>, or explicitly pass "'+v+'" as a prop to "'+r+'".'),o.initSelector(),o.initSubscription(),o}return c(a,n),a.prototype.getChildContext=function(){var e,t=this.propsMode?null:this.subscription;return e={},e[_]=t||this.context[_],e},a.prototype.componentDidMount=function(){b&&(this.subscription.trySubscribe(),this.selector.run(this.props),this.selector.shouldComponentUpdate&&this.forceUpdate())},a.prototype.componentWillReceiveProps=function(e){this.selector.run(e)},a.prototype.shouldComponentUpdate=function(){return this.selector.shouldComponentUpdate},a.prototype.componentWillUnmount=function(){this.subscription&&this.subscription.tryUnsubscribe(),this.subscription=null,this.notifyNestedSubs=f,this.store=null,this.selector.run=f,this.selector.shouldComponentUpdate=!1},a.prototype.getWrappedInstance=function(){return kr()(w,"To access the wrapped instance, you need to specify { withRef: true } in the options argument of the "+l+"() call."),this.wrappedInstance},a.prototype.setWrappedInstance=function(e){this.wrappedInstance=e},a.prototype.initSelector=function(){var t=e(this.store.dispatch,o);this.selector=d(t,this.store),this.selector.run(this.props)},a.prototype.initSubscription=function(){if(b){var e=(this.propsMode?this.props:this.context)[_];this.subscription=new Sr(this.store,e,this.onStateChange.bind(this)),this.notifyNestedSubs=this.subscription.notifyNestedSubs.bind(this.subscription)}},a.prototype.onStateChange=function(){this.selector.run(this.props),this.selector.shouldComponentUpdate?(this.componentDidUpdate=this.notifyNestedSubsOnComponentDidUpdate,this.setState(Tr)):this.notifyNestedSubs()},a.prototype.notifyNestedSubsOnComponentDidUpdate=function(){this.componentDidUpdate=void 0,this.notifyNestedSubs()},a.prototype.isSubscribed=function(){return Boolean(this.subscription)&&this.subscription.isSubscribed()},a.prototype.addExtraProps=function(e){if(!(w||m||this.propsMode&&this.subscription))return e;var t=jr({},e);return w&&(t.ref=this.setWrappedInstance),m&&(t[m]=this.renderCount++),this.propsMode&&this.subscription&&(t[_]=this.subscription),t},a.prototype.render=function(){var e=this.selector;if(e.shouldComponentUpdate=!1,e.error)throw e.error;return Object(ur.createElement)(t,this.addExtraProps(e.props))},a}(ur.Component);return i.WrappedComponent=t,i.displayName=r,i.childContextTypes=C,i.contextTypes=x,i.propTypes=x,Or()(i,t)}}function m(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!==e&&t!==t}function g(e,t){if(m(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(var o=0;o<n.length;o++)if(!Nr.call(t,n[o])||!m(e[n[o]],t[n[o]]))return!1;return!0}function b(e){return function(t,n){function r(){return o}var o=e(t,n);return r.dependsOnOwnProps=!1,r}}function y(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function v(e,t){return function(t,n){var r=(n.displayName,function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)});return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=y(e);var o=r(t,n);return"function"==typeof o&&(r.mapToProps=o,r.dependsOnOwnProps=y(o),o=r(t,n)),o},r}}function E(e){return"function"==typeof e?v(e,"mapDispatchToProps"):void 0}function w(e){return e?void 0:b(function(e){return{dispatch:e}})}function O(e){return e&&"object"==typeof e?b(function(t){return Object(Rr.bindActionCreators)(e,t)}):void 0}function _(e){return"function"==typeof e?v(e,"mapStateToProps"):void 0}function k(e){return e?void 0:b(function(){return{}})}function x(e,t,n){return Ar({},n,e,t)}function C(e){return function(t,n){var r=(n.displayName,n.pure),o=n.areMergedPropsEqual,a=!1,i=void 0;return function(t,n,l){var s=e(t,n,l);return a?r&&o(s,i)||(i=s):(a=!0,i=s),i}}}function S(e){return"function"==typeof e?C(e):void 0}function j(e){return e?void 0:function(){return x}}function P(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function T(e,t,n,r){return function(o,a){return n(e(o,a),t(r,a),a)}}function N(e,t,n,r,o){function a(o,a){return h=o,m=a,g=e(h,m),b=t(r,m),y=n(g,b,m),d=!0,y}function i(){return g=e(h,m),t.dependsOnOwnProps&&(b=t(r,m)),y=n(g,b,m)}function l(){return e.dependsOnOwnProps&&(g=e(h,m)),t.dependsOnOwnProps&&(b=t(r,m)),y=n(g,b,m)}function s(){var t=e(h,m),r=!f(t,g);return g=t,r&&(y=n(g,b,m)),y}function u(e,t){var n=!p(t,m),r=!c(e,h);return h=e,m=t,n&&r?i():n?l():r?s():y}var c=o.areStatesEqual,p=o.areOwnPropsEqual,f=o.areStatePropsEqual,d=!1,h=void 0,m=void 0,g=void 0,b=void 0,y=void 0;return function(e,t){return d?u(e,t):a(e,t)}}function R(e,t){var n=t.initMapStateToProps,r=t.initMapDispatchToProps,o=t.initMergeProps,a=P(t,["initMapStateToProps","initMapDispatchToProps","initMergeProps"]),i=n(e,a),l=r(e,a),s=o(e,a);return(a.pure?N:T)(i,l,s,e,a)}function D(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function I(e,t,n){for(var r=t.length-1;r>=0;r--){var o=t[r](e);if(o)return o}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function A(e,t){return e===t}function L(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case zr:return Xr({},e,{loadStatus:Qr});case Vr:return Xr({},e,{loadStatus:Jr,values:t.values,groups:t.groups,postTypes:t.postTypes,installed:t.installed,canDelete:t.canDelete});case Gr:return Xr({},e,{loadStatus:Yr,error:t.error});case Wr:return Xr({},e,{saveStatus:Qr});case $r:return Xr({},e,{saveStatus:Jr,values:t.values,groups:t.groups,installed:t.installed});case Kr:return Xr({},e,{saveStatus:Yr,error:t.error});case qr:return Xr({},e,{pluginStatus:t.pluginStatus})}return e}function F(e,t){history.pushState({},null,M(e,t))}function U(e){return so.parse(e?e.slice(1):document.location.search.slice(1))}function M(e,t,n){var r=U(n);for(var o in e)e[o]&&t[o]!==e[o]?r[o.toLowerCase()]=e[o]:t[o]===e[o]&&delete r[o.toLowerCase()];return r.filterby&&!r.filter&&delete r.filterby,"?"+so.stringify(r)}function B(e){var t=U(e);return-1!==co.indexOf(t.sub)?t.sub:"redirect"}function H(){return Redirectioni10n.pluginRoot+"&sub=rss&module=1&token="+Redirectioni10n.token}function z(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function V(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function G(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case ro:return Zo({},e,{table:Eo(e.table,e.rows,t.onoff)});case no:return Zo({},e,{table:vo(e.table,t.items)});case oo:return Zo({},e,{table:yo(Qo(e,t)),saving:Jo(e,t),rows:Wo(e,t)});case ao:return Zo({},e,{rows:Ko(e,t),total:Yo(e,t),saving:Xo(e,t)});case Zr:return Zo({},e,{table:Qo(e,t),status:Qr,saving:[],logType:t.logType,requestCount:e.requestCount+1});case to:return Zo({},e,{status:Yr,saving:[]});case eo:return Zo({},e,{rows:Ko(e,t),status:Jr,total:Yo(e,t),table:yo(e.table)});case io:return Zo({},e,{saving:Xo(e,t),rows:$o(e,t)})}return e}function q(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case oa:return sa({},e,{table:Eo(e.table,e.rows,t.onoff)});case ra:return sa({},e,{table:vo(e.table,t.items)});case aa:return sa({},e,{table:yo(Qo(e,t)),saving:Jo(e,t),rows:Wo(e,t)});case ia:return sa({},e,{rows:Ko(e,t),total:Yo(e,t),saving:Xo(e,t)});case ea:return sa({},e,{table:Qo(e,t),status:Qr,saving:[],logType:t.logType,requestCount:e.requestCount+1});case na:return sa({},e,{status:Yr,saving:[]});case ta:return sa({},e,{rows:Ko(e,t),status:Jr,total:Yo(e,t),table:yo(e.table)});case la:return sa({},e,{saving:Xo(e,t),rows:$o(e,t)})}return e}function W(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case ca:return ba({},e,{exportStatus:Qr});case ua:return ba({},e,{exportStatus:Jr,exportData:t.data});case ma:return ba({},e,{file:t.file});case ha:return ba({},e,{file:!1,lastImport:!1,exportData:!1});case da:return ba({},e,{importingStatus:Yr,exportStatus:Yr,lastImport:!1,file:!1,exportData:!1});case pa:return ba({},e,{importingStatus:Qr,lastImport:!1,file:!!t.file&&t.file});case fa:return ba({},e,{lastImport:t.total,importingStatus:Jr,file:!1});case ga:return ba({},e,{importers:t.importers})}return e}function $(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case ya:return Ca({},e,{table:Qo(e,t),status:Qr,saving:[]});case va:return Ca({},e,{rows:Ko(e,t),status:Jr,total:Yo(e,t),table:yo(e.table)});case _a:return Ca({},e,{table:yo(Qo(e,t)),saving:Jo(e,t),rows:Wo(e,t)});case xa:return Ca({},e,{rows:Ko(e,t),total:Yo(e,t),saving:Xo(e,t)});case Oa:return Ca({},e,{table:Eo(e.table,e.rows,t.onoff)});case wa:return Ca({},e,{table:vo(e.table,t.items)});case Ea:return Ca({},e,{status:Yr,saving:[]});case ka:return Ca({},e,{saving:Xo(e,t),rows:$o(e,t)})}return e}function K(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case Aa:return La({},e,{addTop:t.onoff});case Sa:return La({},e,{table:Qo(e,t),status:Qr,saving:[]});case ja:return La({},e,{rows:Ko(e,t),status:Jr,total:Yo(e,t),table:yo(e.table)});case Ra:return La({},e,{table:yo(Qo(e,t)),saving:Jo(e,t),rows:Wo(e,t)});case Ia:return La({},e,{rows:Ko(e,t),total:Yo(e,t),saving:Xo(e,t)});case Na:return La({},e,{table:Eo(e.table,e.rows,t.onoff)});case Ta:return La({},e,{table:vo(e.table,t.items)});case Pa:return La({},e,{status:Yr,saving:[]});case Da:return La({},e,{saving:Xo(e,t),rows:$o(e,t)})}return e}function Q(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case da:case Ea:case Da:case ka:case to:case io:case Gr:case Kr:case la:case na:case Pa:var n=Ba(e.errors,t.error);return Ma({},e,{errors:n,inProgress:za(e)});case oo:case Ra:case Wr:case aa:case _a:return Ma({},e,{inProgress:e.inProgress+1});case ao:case Ia:case $r:case xa:case ia:return Ma({},e,{notices:Ha(e.notices,Va[t.type]),inProgress:za(e)});case Ua:return Ma({},e,{notices:[]});case Fa:return Ma({},e,{errors:[]})}return e}function Y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function J(e,t,n){return Ka({},e,Y({},t[n],t))}function X(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case Ga:return Ka({},e,{status:Qr});case qa:return Ka({},e,{status:Jr,maps:J(e.maps,t.map,"ip")});case Wa:return Ka({},e,{status:Jr,agents:J(e.agents,t.agent,"agent")});case $a:return Ka({},e,{status:Yr,error:t.error})}return e}function Z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=Object(Rr.createStore)(Ya,e,Za(Rr.applyMiddleware.apply(void 0,ei)));return t}function ee(){return Redirectioni10n&&Redirectioni10n.preload&&Redirectioni10n.preload.pluginStatus?Redirectioni10n.preload.pluginStatus:[]}function te(){var e=ee();return{loadStatus:Qr,saveStatus:!1,error:!1,installed:"",settings:{},postTypes:[],pluginStatus:e,canDelete:!1}}function ne(){return{rows:[],saving:[],logType:lo,total:0,status:Qr,table:mo(["ip","url"],["ip"],"date",["log"]),requestCount:0}}function re(){return{rows:[],saving:[],logType:lo,total:0,status:Qr,table:mo(["ip","url"],["ip"],"date",["404s"]),requestCount:0}}function oe(){return{status:Qr,file:!1,lastImport:!1,exportData:!1,importingStatus:!1,exportStatus:!1,importers:[]}}function ae(){return{rows:[],saving:[],total:0,status:Qr,table:mo(["name"],["name","module"],"name",["groups"])}}function ie(){return{rows:[],saving:[],total:0,addTop:!1,status:Qr,table:mo(["url","position","last_count","id","last_access"],["group"],"id",[""])}}function le(){return{errors:[],notices:[],inProgress:0,saving:[]}}function se(){return{status:Qr,maps:{},agents:{},error:""}}function ue(){return{settings:te(),log:ne(),error:re(),io:oe(),group:ae(),redirect:ie(),message:le(),info:se()}}function ce(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function pe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fe(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function de(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function he(e){return{onSaveSettings:function(t){e(ni(t))}}}function me(e){var t=e.settings;return{groups:t.groups,values:t.values,saveStatus:t.saveStatus,installed:t.installed,postTypes:t.postTypes}}function ge(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function be(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function ye(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function ve(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ee(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function we(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ke(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function xe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Ce(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Se(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function je(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Pe(e){return{onLoadSettings:function(){e(ti())},onDeletePlugin:function(){e(ri())}}}function Te(e){var t=e.settings;return{loadStatus:t.loadStatus,values:t.values,canDelete:t.canDelete}}function Ne(e){return{onSubscribe:function(){e(ni({newsletter:!0}))}}}function Re(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function De(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Ie(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Ae(e){return{onLoadStatus:function(){e(oi())},onFix:function(){e(ai())}}}function Le(e){return{pluginStatus:e.settings.pluginStatus}}function Fe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ue(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Me(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Be(e){return{onLoadSettings:function(){e(ti())}}}function He(e){return{values:e.settings.values}}function ze(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ve(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ge(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function We(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function $e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ke(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Qe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Ye(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Je(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Xe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Ze(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function et(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function tt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function nt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function ot(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function at(e){return{onGet:function(t){e(Xl(t))}}}function it(e){var t=e.info;return{status:t.status,error:t.error,maps:t.maps}}function lt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function st(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function ut(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function ct(e){return{onGet:function(t){e(Zl(t))}}}function pt(e){var t=e.info;return{status:t.status,error:t.error,agents:t.agents}}function ft(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function ht(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function mt(e){return{onShowIP:function(t){e($l("ip",t))},onSetSelected:function(t){e(Kl(t))},onDelete:function(t){e(Hl("delete",t))}}}function gt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function bt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function yt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function vt(e){return{log:e.log}}function Et(e){return{onLoad:function(t){e(Vl(t))},onDeleteAll:function(t,n){e(Bl(t,n))},onSearch:function(t,n){e(Wl(t,n))},onChangePage:function(t){e(ql(t))},onTableAction:function(t){e(Hl(t))},onSetAllSelected:function(t){e(Ql(t))},onSetOrderBy:function(t,n){e(Gl(t,n))}}}function wt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ot(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function _t(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function kt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Ct(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function St(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Pt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Tt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Rt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Dt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function It(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function At(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Lt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ft(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Ut(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Mt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Bt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Ht(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function zt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Gt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function qt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Wt(e){var t=e.group,n=e.redirect;return{group:t,addTop:n.addTop,table:n.table}}function $t(e){return{onSave:function(t,n){e(iu(t,n))},onCreate:function(t){e(au(t))},onClose:function(t){t.preventDefault(),e(mu(!1))}}}function Kt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Qt(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Yt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Jt(e){return{onShowIP:function(t){e(js("ip",t))},onSetSelected:function(t){e(Ps(t))},onDelete:function(t){e(Os("delete",t))},onDeleteFilter:function(t){e(Es("url-exact",t))}}}function Xt(e){return{infoStatus:e.info.status}}function Zt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function en(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function tn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function nn(e){return{error:e.error}}function rn(e){return{onLoad:function(t){e(ks(t))},onLoadGroups:function(){e(Lu())},onDeleteAll:function(t,n){e(ws(t,n))},onSearch:function(t,n){e(Ss(t,n))},onChangePage:function(t){e(Cs(t))},onTableAction:function(t){e(Os(t,null))},onSetAllSelected:function(t){e(Ts(t))},onSetOrderBy:function(t,n){e(xs(t,n))}}}function on(e){var t=[];if(e.dataTransfer){var n=e.dataTransfer;n.files&&n.files.length?t=n.files:n.items&&n.items.length&&(t=n.items)}else e.target&&e.target.files&&(t=e.target.files);return Array.prototype.slice.call(t)}function an(e,t){return"application/x-moz-file"===e.type||Qu()(e,t)}function ln(e,t,n){return e.size<=t&&e.size>=n}function sn(e,t){return e.every(function(e){return an(e,t)})}function un(e){e.preventDefault()}function cn(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function pn(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function fn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function hn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function mn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function gn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function bn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function yn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function vn(e){return{group:e.group,io:e.io}}function En(e){return{onLoadGroups:function(){e(Lu())},onImport:function(t,n){e(oc(t,n))},onAddFile:function(t){e(ic(t))},onClearFile:function(){e(ac())},onExport:function(t,n){e(nc(t,n))},onDownloadFile:function(t){e(rc(t))},onLoadImport:function(){e(lc())},pluginImport:function(t){e(sc(t))}}}function wn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function On(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function _n(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function kn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Cn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Sn(e){return{onSetSelected:function(t){e(Hu(t))},onSaveGroup:function(t,n){e(Iu(t,n))},onTableAction:function(t,n){e(Au(t,n))}}}function jn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Tn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Nn(e){return{group:e.group}}function Rn(e){return{onLoadGroups:function(){e(Lu({page:0,filter:"",filterBy:"",orderby:""}))},onSearch:function(t){e(Mu(t))},onChangePage:function(t){e(Uu(t))},onAction:function(t){e(Au(t))},onSetAllSelected:function(t){e(zu(t))},onSetOrderBy:function(t,n){e(Fu(t,n))},onFilter:function(t){e(Bu("module",t))},onCreate:function(t){e(Du(t))}}}function Dn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function In(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function An(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Ln(e){return{onSetSelected:function(t){e(du(t))},onTableAction:function(t,n){e(lu(t,n))}}}function Fn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Un(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Mn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Bn(e){return{redirect:e.redirect,group:e.group}}function Hn(e){return{onLoadGroups:function(){e(Lu())},onLoadRedirects:function(t){e(su(t))},onSearch:function(t){e(pu(t))},onChangePage:function(t){e(cu(t))},onAction:function(t){e(lu(t))},onSetAllSelected:function(t){e(hu(t))},onSetOrderBy:function(t,n){e(uu(t,n))},onFilter:function(t){e(fu("group",t))}}}function zn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Gn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function qn(e){return{errors:e.message.errors}}function Wn(e){return{onClear:function(){e(Lc())}}}function $n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function Qn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function Yn(e){return{notices:e.message.notices}}function Jn(e){return{onClear:function(){e(Fc())}}}function Xn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Zn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function er(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function tr(e){return{inProgress:e.message.inProgress}}function nr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rr(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function or(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function ar(e){return{onClear:function(){e(Lc())},onAdd:function(){e(mu(!0))}}}function ir(e){return{errors:e.message.errors}}Object.defineProperty(t,"__esModule",{value:!0});var lr=n(16),sr=n.n(lr);n(17);!window.Promise&&(window.Promise=sr.a),Array.from||(Array.from=function(e){return[].slice.call(e)}),"function"!=typeof Object.assign&&function(){Object.assign=function(e){if(void 0===e||null===e)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),n=1;n<arguments.length;n++){var r=arguments[n];if(void 0!==r&&null!==r)for(var o in r)r.hasOwnProperty(o)&&(t[o]=r[o])}return t}}(),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),n=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var r=arguments[1],o=0;o<n;){var a=t[o];if(e.call(r,a,o,t))return a;o++}}});var ur=n(0),cr=n.n(ur),pr=n(19),fr=n.n(pr),dr=n(29),hr=n(1),mr=n.n(hr),gr=n(2),br=n.n(gr),yr=br.a.shape({trySubscribe:br.a.func.isRequired,tryUnsubscribe:br.a.func.isRequired,notifyNestedSubs:br.a.func.isRequired,isSubscribed:br.a.func.isRequired}),vr=br.a.shape({subscribe:br.a.func.isRequired,dispatch:br.a.func.isRequired,getState:br.a.func.isRequired}),Er=function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"store",n=arguments[1],i=n||t+"Subscription",l=function(e){function n(a,i){r(this,n);var l=o(this,e.call(this,a,i));return l[t]=a.store,l}return a(n,e),n.prototype.getChildContext=function(){var e;return e={},e[t]=this[t],e[i]=null,e},n.prototype.render=function(){return ur.Children.only(this.props.children)},n}(ur.Component);return l.propTypes={store:vr.isRequired,children:br.a.element.isRequired},l.childContextTypes=(e={},e[t]=vr.isRequired,e[i]=yr,e),l}(),wr=n(45),Or=n.n(wr),_r=n(46),kr=n.n(_r),xr=null,Cr={notify:function(){}},Sr=function(){function e(t,n,r){i(this,e),this.store=t,this.parentSub=n,this.onStateChange=r,this.unsubscribe=null,this.listeners=Cr}return e.prototype.addNestedSub=function(e){return this.trySubscribe(),this.listeners.subscribe(e)},e.prototype.notifyNestedSubs=function(){this.listeners.notify()},e.prototype.isSubscribed=function(){return Boolean(this.unsubscribe)},e.prototype.trySubscribe=function(){this.unsubscribe||(this.unsubscribe=this.parentSub?this.parentSub.addNestedSub(this.onStateChange):this.store.subscribe(this.onStateChange),this.listeners=l())},e.prototype.tryUnsubscribe=function(){this.unsubscribe&&(this.unsubscribe(),this.unsubscribe=null,this.listeners.clear(),this.listeners=Cr)},e}(),jr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Pr=0,Tr={},Nr=Object.prototype.hasOwnProperty,Rr=n(5),Dr=(n(6),[E,w,O]),Ir=[_,k],Ar=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Lr=[S,j],Fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ur=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.connectHOC,n=void 0===t?h:t,r=e.mapStateToPropsFactories,o=void 0===r?Ir:r,a=e.mapDispatchToPropsFactories,i=void 0===a?Dr:a,l=e.mergePropsFactories,s=void 0===l?Lr:l,u=e.selectorFactory,c=void 0===u?R:u;return function(e,t,r){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},l=a.pure,u=void 0===l||l,p=a.areStatesEqual,f=void 0===p?A:p,d=a.areOwnPropsEqual,h=void 0===d?g:d,m=a.areStatePropsEqual,b=void 0===m?g:m,y=a.areMergedPropsEqual,v=void 0===y?g:y,E=D(a,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),w=I(e,o,"mapStateToProps"),O=I(t,i,"mapDispatchToProps"),_=I(r,s,"mergeProps");return n(c,Fr({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:w,initMapDispatchToProps:O,initMergeProps:_,pure:u,areStatesEqual:f,areOwnPropsEqual:h,areStatePropsEqual:b,areMergedPropsEqual:v},E))}}(),Mr=n(51),Br=n(52),Hr=n.n(Br),zr="SETTING_LOAD_START",Vr="SETTING_LOAD_SUCCESS",Gr="SETTING_LOAD_FAILED",qr="SETTING_LOAD_STATUS",Wr="SETTING_SAVING",$r="SETTING_SAVED",Kr="SETTING_SAVE_FAILED",Qr="STATUS_IN_PROGRESS",Yr="STATUS_FAILED",Jr="STATUS_COMPLETE",Xr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Zr="LOG_LOADING",eo="LOG_LOADED",to="LOG_FAILED",no="LOG_SET_SELECTED",ro="LOG_SET_ALL_SELECTED",oo="LOG_ITEM_SAVING",ao="LOG_ITEM_SAVED",io="LOG_ITEM_FAILED",lo="log",so=n(8),uo=n.n(so),co=["groups","404s","log","io","options","support"],po=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},fo=["orderby","direction","page","per_page","filter","filterBy"],ho=function(e,t){for(var n=[],r=0;r<e.length;r++)-1===t.indexOf(e[r])&&n.push(e[r]);return n},mo=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[],o=U(),a={orderby:n,direction:"desc",page:0,per_page:parseInt(Redirectioni10n.per_page,10),selected:[],filterBy:"",filter:""},i=void 0===o.sub?"":o.sub;return-1===r.indexOf(i)?a:po({},a,{orderby:o.orderby&&-1!==e.indexOf(o.orderby)?o.orderby:a.orderby,direction:o.direction&&"asc"===o.direction?"asc":a.direction,page:o.offset&&parseInt(o.offset,10)>0?parseInt(o.offset,10):a.page,per_page:Redirectioni10n.per_page?parseInt(Redirectioni10n.per_page,10):a.per_page,filterBy:o.filterby&&-1!==t.indexOf(o.filterby)?o.filterby:a.filterBy,filter:o.filter?o.filter:a.filter})},go=function(e,t){for(var n=Object.assign({},e),r=0;r<fo.length;r++)void 0!==t[fo[r]]&&(n[fo[r]]=t[fo[r]]);return n},bo=function(e,t){return"desc"===e.direction&&delete e.direction,e.orderby===t&&delete e.orderby,0===e.page&&delete e.page,e.per_page===parseInt(Redirectioni10n.per_page,10)&&delete e.per_page,""===e.filterBy&&""===e.filter&&(delete e.filterBy,delete e.filter),25!==parseInt(Redirectioni10n.per_page,10)&&(e.per_page=parseInt(Redirectioni10n.per_page,10)),delete e.selected,e},yo=function(e){return Object.assign({},e,{selected:[]})},vo=function(e,t){return po({},e,{selected:ho(e.selected,t).concat(ho(t,e.selected))})},Eo=function(e,t,n){return po({},e,{selected:n?t.map(function(e){return e.id}):[]})},wo=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Oo=function(e){return Object.keys(e).filter(function(t){return e[t]}).reduce(function(t,n){return t[n]=e[n],t},{})},_o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Redirectioni10n.WP_API_root+"redirection/v1/"+e+"/";if(t._wpnonce=Redirectioni10n.WP_API_nonce,t&&Object.keys(t).length>0&&(t=Oo(t),Object.keys(t).length>0)){var r=n+(-1===Redirectioni10n.WP_API_root.indexOf("?")?"?":"&")+uo.a.stringify(t);return-1!==Redirectioni10n.WP_API_root.indexOf("page=redirection.php")?r.replace(/page=(\d+)/,"ppage=$1"):r}return n},ko=function(e){return{url:e,headers:new Headers({"Content-Type":"application/json; charset=utf-8"}),credentials:"same-origin"}},xo=function(e,t){return wo({},ko(_o(e,t)),{method:"post"})},Co=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return wo({},ko(_o(e,t)),{method:"get"})},So=function(e,t){var n=wo({},ko(_o(e)),{method:"post"});return n.headers.delete("Content-Type"),n.body=new FormData,n.body.append("file",t),n},jo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=wo({},ko(_o(e,n)),{method:"post",params:t});return Object.keys(t).length>0&&(r.body=JSON.stringify(t)),r},Po={setting:{get:function(){return Co("setting")},update:function(e){return jo("setting",e)}},redirect:{list:function(e){return Co("redirect",e)},update:function(e,t){return jo("redirect/"+e,t)},create:function(e){return jo("redirect",e)}},group:{list:function(e){return Co("group",e)},update:function(e,t){return jo("group/"+e,t)},create:function(e){return jo("group",e)}},log:{list:function(e){return Co("log",e)},deleteAll:function(e){return xo("log",e)}},error:{list:function(e){return Co("404",e)},deleteAll:function(e){return xo("404",e)}},import:{get:function(){return Co("import")},upload:function(e,t){return So("import/file/"+e,t)},pluginList:function(){return Co("import/plugin")},pluginImport:function(e){return jo("import/plugin/"+e)}},export:{file:function(e,t){return Co("export/"+e+"/"+t)}},plugin:{status:function(){return Co("plugin")},fix:function(){return jo("plugin")},delete:function(){return xo("plugin/delete")}},bulk:{redirect:function(e,t,n){return jo("bulk/redirect/"+e,t,n)},group:function(e,t,n){return jo("bulk/group/"+e,t,n)},log:function(e,t,n){return jo("bulk/log/"+e,t,n)},error:function(e,t,n){return jo("bulk/404/"+e,t,n)}}},To=function(e){return"https://api.redirect.li/v1/"+e+(-1===e.indexOf("?")?"?":"&")+"ref=redirection"},No={ip:{getGeo:function(e){return{url:To("ip/"+e+"?locale="+Redirectioni10n.localeSlug.substr(0,2)),method:"get"}}},agent:{get:function(e){return{url:To("useragent/"+encodeURIComponent(e)),method:"get"}}}},Ro=function(e){return e.url.replace(Redirectioni10n.WP_API_root,"").replace(/[\?&]_wpnonce=[a-f0-9]*/,"")+" "+e.method.toUpperCase()},Do=function(e){return 0===e?"Admin AJAX returned 0":e.message?e.message:"Unknown error "+e},Io=function(e){return e.error_code?e.error_code:e.data&&e.data.error_code?e.data.error_code:0===e?"admin-ajax":"unknown"},Ao=function(e){return e.action=Ro(e),fetch(e.url,e).then(function(t){if(!t||!t.status)throw{message:"No data or status object returned in request",code:0};return t.status&&void 0!==t.statusText&&(e.status=t.status,e.statusText=t.statusText),t.headers.get("x-wp-nonce")&&(Redirectioni10n.WP_API_nonce=t.headers.get("x-wp-nonce")),t.text()}).then(function(t){e.raw=t;try{var n=JSON.parse(t);if(e.status&&200!==e.status)throw{message:Do(n),code:Io(n),request:e,data:n.data?n.data:null};if(0===n)throw{message:"Failed to get data",code:"json-zero"};return n}catch(t){throw t.request=e,t}})},Lo=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Fo=function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return function(a,i){var l=i()[r.store],s=l.table,u=l.total,c={items:n?[n]:s.selected,bulk:t};if("delete"===t&&s.page>0&&s.per_page*s.page==u-1&&(s.page-=1),"delete"!==t||confirm(Object(hr.translate)("Are you sure you want to delete this item?","Are you sure you want to delete these items?",{count:c.items.length}))){var p=go(s,c),f=Lo({items:c.items.join(",")},o);return Ao(e(t,f,bo(s,r.order))).then(function(e){a(Lo({type:r.saved},e,{saving:c.items}))}).catch(function(e){a({type:r.failed,error:e,saving:c.items})}),a({type:r.saving,table:p,saving:c.items})}}},Uo=function(e,t,n,r,o){return Ao(e).then(function(e){o({type:r.saved,item:e.item,items:e.items,total:e.total,saving:[n.id]})}).catch(function(e){o({type:r.failed,error:e,item:n,saving:[n.id]})}),o({type:r.saving,table:t,item:n,saving:[n.id]})},Mo=function(e,t,n){return function(r,o){var a=V(o()[n.store],[]);return a.page=0,a.orderby="id",a.direction="desc",Uo(e(t),a,t,n,r)}},Bo=function(e,t,n,r){return function(o,a){var i=a()[r.store].table;return Uo(e(t,n),i,n,r,o)}},Ho=function(e,t){var n={};for(var r in t)void 0===e[r]&&(n[r]=t[r]);return n},zo=function(e,t){for(var n in e)if(e[n]!==t[n])return!1;return!0},Vo=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:function(e){return e},i=o.table,l=void 0===i?{}:i,s=o.rows,u=a(go(l,r)),c=bo(Lo({},l,r),n.order);if(!(zo(u,l)&&s.length>0&&zo(r,{})))return Ao(e(c)).then(function(e){t(Lo({type:n.saved},e))}).catch(function(e){t({type:n.failed,error:e})}),t(Lo({table:u,type:n.saving},Ho(u,r)))},Go=function(e,t,n,r,o){var a=o.table,i=bo(Lo({},a,r),n.order);Ao(e(i)).then(function(e){t(Lo({type:n.saved},e))}).catch(function(e){t({type:n.failed,error:e})})},qo=function(e,t,n){for(var r=e.slice(0),o=0;o<e.length;o++)parseInt(e[o].id,10)===t.id&&(r[o]=n(e[o]));return r},Wo=function(e,t){return t.item?qo(e.rows,t.item,function(e){return Lo({},e,t.item,{original:e})}):e.rows},$o=function(e,t){return t.item?qo(e.rows,t.item,function(e){return e.original}):e.rows},Ko=function(e,t){return t.item?Wo(e,t):t.items?t.items:e.rows},Qo=function(e,t){return t.table?Lo({},e.table,t.table):e.table},Yo=function(e,t){return void 0!==t.total?t.total:e.total},Jo=function(e,t){return[].concat(z(e.saving),z(t.saving))},Xo=function(e,t){return e.saving.filter(function(e){return-1===t.saving.indexOf(e)})},Zo=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ea="ERROR_LOADING",ta="ERROR_LOADED",na="ERROR_FAILED",ra="ERROR_SET_SELECTED",oa="ERROR_SET_ALL_SELECTED",aa="ERROR_ITEM_SAVING",ia="ERROR_ITEM_SAVED",la="ERROR_ITEM_FAILED",sa=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ua="IO_EXPORTED",ca="IO_EXPORTING",pa="IO_IMPORTING",fa="IO_IMPORTED",da="IO_FAILED",ha="IO_CLEAR",ma="IO_ADD_FILE",ga="IO_IMPORTERS",ba=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ya="GROUP_LOADING",va="GROUP_LOADED",Ea="GROUP_FAILED",wa="GROUP_SET_SELECTED",Oa="GROUP_SET_ALL_SELECTED",_a="GROUP_ITEM_SAVING",ka="GROUP_ITEM_FAILED",xa="GROUP_ITEM_SAVED",Ca=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Sa="REDIRECT_LOADING",ja="REDIRECT_LOADED",Pa="REDIRECT_FAILED",Ta="REDIRECT_SET_SELECTED",Na="REDIRECT_SET_ALL_SELECTED",Ra="REDIRECT_ITEM_SAVING",Da="REDIRECT_ITEM_FAILED",Ia="REDIRECT_ITEM_SAVED",Aa="REDIRECT_ADD_TOP",La=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Fa="MESSAGE_CLEAR_ERRORS",Ua="MESSAGE_CLEAR_NOTICES",Ma=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ba=function(e,t){return e.slice(0).concat([t])},Ha=function(e,t){return e.slice(0).concat([t])},za=function(e){return Math.max(0,e.inProgress-1)},Va={REDIRECT_ITEM_SAVED:Object(hr.translate)("Redirection saved"),LOG_ITEM_SAVED:Object(hr.translate)("Log deleted"),SETTING_SAVED:Object(hr.translate)("Settings saved"),GROUP_ITEM_SAVED:Object(hr.translate)("Group saved"),ERROR_ITEM_SAVED:Object(hr.translate)("404 deleted")},Ga="INFO_LOADING",qa="INFO_LOADED_GEO",Wa="INFO_LOADED_AGENT",$a="INFO_FAILED",Ka=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Qa=Object(Rr.combineReducers)({settings:L,log:G,error:q,io:W,group:$,redirect:K,message:Q,info:X}),Ya=Qa,Ja=function(e,t){var n=B(),r={redirect:[[Sa,Ra],"id"],groups:[[ya,_a],"name"],log:[[Zr],"date"],"404s":[[ea],"date"]};if(r[n]&&e===r[n][0].find(function(t){return t===e})){F({orderby:t.orderby,direction:t.direction,offset:t.page,per_page:t.per_page,filter:t.filter,filterBy:t.filterBy},{orderby:r[n][1],direction:"desc",offset:0,filter:"",filterBy:"",per_page:parseInt(Redirectioni10n.per_page,10)})}},Xa=function(){return function(e){return function(t){switch(t.type){case Ra:case _a:case Sa:case ya:case Zr:case ea:Ja(t.type,t.table?t.table:t)}return e(t)}}},Za=Object(Mr.composeWithDevTools)({name:"Redirection"}),ei=[Hr.a,Xa],ti=(n(55),function(){return function(e,t){return t().settings.loadStatus===Jr?null:(Ao(Po.setting.get()).then(function(t){e({type:Vr,values:t.settings,groups:t.groups,postTypes:t.post_types,installed:t.installed,canDelete:t.canDelete})}).catch(function(t){e({type:Gr,error:t})}),e({type:zr}))}}),ni=function(e){return function(t){return Ao(Po.setting.update(e)).then(function(e){t({type:$r,values:e.settings,groups:e.groups,installed:e.installed})}).catch(function(e){t({type:Kr,error:e})}),t({type:Wr})}},ri=function(){return function(e){return Ao(Po.plugin.delete()).then(function(e){document.location.href=e.location}).catch(function(t){e({type:Kr,error:t})}),e({type:Wr})}},oi=function(){return function(e){return Ao(Po.plugin.status()).then(function(t){e({type:qr,pluginStatus:t})}).catch(function(t){e({type:Gr,error:t})}),e({type:zr})}},ai=function(){return function(e){return Ao(Po.plugin.fix()).then(function(t){e({type:qr,pluginStatus:t})}).catch(function(t){e({type:Gr,error:t})}),e({type:zr})}},ii=function(e){var t=e.title,n=e.url,r=void 0!==n&&n;return cr.a.createElement("tr",null,cr.a.createElement("th",null,!r&&t,r&&cr.a.createElement("a",{href:r,target:"_blank"},t)),cr.a.createElement("td",null,e.children))},li=function(e){return cr.a.createElement("table",{className:"form-table"},cr.a.createElement("tbody",null,e.children))},si="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ui=function e(t){var n=t.value,r=t.text;return"object"===(void 0===n?"undefined":si(n))?cr.a.createElement("optgroup",{label:r},n.map(function(t,n){return cr.a.createElement(e,{text:t.text,value:t.value,key:n})})):cr.a.createElement("option",{value:n},r)},ci=function(e){var t=e.items,n=e.value,r=e.name,o=e.onChange,a=e.isEnabled,i=void 0===a||a;return cr.a.createElement("select",{name:r,value:n,onChange:o,disabled:!i},t.map(function(e,t){return cr.a.createElement(ui,{value:e.value,text:e.text,key:t})}))},pi=ci,fi=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),di=[{value:-1,text:Object(hr.translate)("No logs")},{value:1,text:Object(hr.translate)("A day")},{value:7,text:Object(hr.translate)("A week")},{value:30,text:Object(hr.translate)("A month")},{value:60,text:Object(hr.translate)("Two months")},{value:0,text:Object(hr.translate)("Forever")}],hi=[{value:-1,text:Object(hr.translate)("Never cache")},{value:1,text:Object(hr.translate)("An hour")},{value:24,text:Object(hr.translate)("A day")},{value:168,text:Object(hr.translate)("A week")},{value:0,text:Object(hr.translate)("Forever")}],mi=[{value:0,text:Object(hr.translate)("No IP logging")},{value:1,text:Object(hr.translate)("Full IP logging")},{value:2,text:Object(hr.translate)("Anonymize IP (mask last part)")}],gi=[{value:0,text:Object(hr.translate)("Default /wp-json/")},{value:1,text:Object(hr.translate)("Raw /index.php?rest_route=/")},{value:2,text:Object(hr.translate)("Proxy over Admin AJAX")},{value:3,text:Object(hr.translate)("Relative /wp-json/")},{value:4,text:Object(hr.translate)("Form request")}],bi=function(e){function t(e){pe(this,t);var n=fe(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));n.onChange=function(e){var t=e.target,r="checkbox"===t.type?t.checked:t.value;n.setState(ce({},t.name,r))},n.onSubmit=function(e){e.preventDefault(),n.props.onSaveSettings(n.state)},n.onMonitor=function(e){var t=e.target.name.replace("monitor_type_",""),r=n.state,o=r.monitor_post,a=r.associated_redirect,i=n.state.monitor_types.filter(function(e){return e!==t});e.target.checked&&i.push(t),n.setState({monitor_types:i,monitor_post:i.length>0?o:0,associated_redirect:i.length>0?a:""})};var r=e.values.modules;return n.state=e.values,n.state.location=r[2]?r[2].location:"",n}return de(t,e),fi(t,[{key:"componentWillUpdate",value:function(e){e.values.token!==this.props.values.token&&this.setState({token:e.values.token}),e.values.auto_target!==this.props.values.auto_target&&this.setState({auto_target:e.values.auto_target})}},{key:"renderMonitor",value:function(e){return cr.a.createElement(ii,{title:Object(hr.translate)("URL Monitor Changes")+":",url:this.supportLink("options","monitor")},cr.a.createElement(pi,{items:e,name:"monitor_post",value:parseInt(this.state.monitor_post,10),onChange:this.onChange})," ",Object(hr.translate)("Save changes to this group"),cr.a.createElement("p",null,cr.a.createElement("input",{type:"text",className:"regular-text",name:"associated_redirect",onChange:this.onChange,placeholder:Object(hr.translate)('For example "/amp"'),value:this.state.associated_redirect})," ",Object(hr.translate)("Create associated redirect (added to end of URL)")))}},{key:"renderPostTypes",value:function(){var e=this,t=this.props.postTypes,n=this.state.monitor_types,r=[];for(var o in t)!function(o){var a=t[o],i=n.find(function(e){return e===o}),l=!!i;r.push(cr.a.createElement("p",{key:o},cr.a.createElement("label",null,cr.a.createElement("input",{type:"checkbox",name:"monitor_type_"+o,onChange:e.onMonitor,checked:l}),Object(hr.translate)("Monitor changes to %(type)s",{args:{type:a.toLowerCase()}}))))}(o);return r}},{key:"supportLink",value:function(e,t){return"https://redirection.me/support/"+e+"/?utm_source=redirection&utm_medium=plugin&utm_campaign=support"+(t?"&utm_term="+t+"#"+t:"")}},{key:"render",value:function(){var e=this.props,t=e.groups,n=e.saveStatus,r=e.installed,o=this.state.monitor_types.length>0;return cr.a.createElement("form",{onSubmit:this.onSubmit},cr.a.createElement(li,null,cr.a.createElement(ii,{title:""},cr.a.createElement("label",null,cr.a.createElement("input",{type:"checkbox",checked:this.state.support,name:"support",onChange:this.onChange}),cr.a.createElement("span",{className:"sub"},Object(hr.translate)("I'm a nice person and I have helped support the author of this plugin")))),cr.a.createElement(ii,{title:Object(hr.translate)("Redirect Logs")+":",url:this.supportLink("logs")},cr.a.createElement(pi,{items:di,name:"expire_redirect",value:parseInt(this.state.expire_redirect,10),onChange:this.onChange})," ",Object(hr.translate)("(time to keep logs for)")),cr.a.createElement(ii,{title:Object(hr.translate)("404 Logs")+":",url:this.supportLink("tracking-404-errors")},cr.a.createElement(pi,{items:di,name:"expire_404",value:parseInt(this.state.expire_404,10),onChange:this.onChange})," ",Object(hr.translate)("(time to keep logs for)")),cr.a.createElement(ii,{title:Object(hr.translate)("IP Logging")+":",url:this.supportLink("options","iplogging")},cr.a.createElement(pi,{items:mi,name:"ip_logging",value:parseInt(this.state.ip_logging,10),onChange:this.onChange})," ",Object(hr.translate)("(select IP logging level)")),cr.a.createElement(ii,{title:Object(hr.translate)("URL Monitor")+":",url:this.supportLink("options","monitor")},this.renderPostTypes()),o&&this.renderMonitor(t),cr.a.createElement(ii,{title:Object(hr.translate)("RSS Token")+":",url:this.supportLink("options","rsstoken")},cr.a.createElement("input",{className:"regular-text",type:"text",value:this.state.token,name:"token",onChange:this.onChange}),cr.a.createElement("br",null),cr.a.createElement("span",{className:"sub"},Object(hr.translate)("A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"))),cr.a.createElement(ii,{title:Object(hr.translate)("Auto-generate URL")+":",url:this.supportLink("options","autogenerate")},cr.a.createElement("input",{className:"regular-text",type:"text",value:this.state.auto_target,name:"auto_target",onChange:this.onChange}),cr.a.createElement("br",null),cr.a.createElement("span",{className:"sub"},Object(hr.translate)("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",{components:{code:cr.a.createElement("code",null)}}))),cr.a.createElement(ii,{title:Object(hr.translate)("Apache Module"),url:this.supportLink("options","apache")},cr.a.createElement("label",null,cr.a.createElement("p",null,cr.a.createElement("input",{type:"text",className:"regular-text",name:"location",value:this.state.location,onChange:this.onChange,placeholder:r})),cr.a.createElement("p",{className:"sub"},Object(hr.translate)("Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.",{components:{code:cr.a.createElement("code",null)}})))),cr.a.createElement(ii,{title:Object(hr.translate)("Redirect Cache"),url:this.supportLink("options","cache")},cr.a.createElement(pi,{items:hi,name:"redirect_cache",value:parseInt(this.state.redirect_cache,10),onChange:this.onChange}),"  ",cr.a.createElement("span",{className:"sub"},Object(hr.translate)('How long to cache redirected 301 URLs (via "Expires" HTTP header)'))),cr.a.createElement(ii,{title:Object(hr.translate)("REST API"),url:this.supportLink("options","restapi")},cr.a.createElement(pi,{items:gi,name:"rest_api",value:parseInt(this.state.rest_api,10),onChange:this.onChange}),"  ",cr.a.createElement("span",{className:"sub"},Object(hr.translate)("How Redirection uses the REST API - don't change unless necessary")))),cr.a.createElement("input",{className:"button-primary",type:"submit",name:"update",value:Object(hr.translate)("Update"),disabled:n===Qr}))}}]),t}(cr.a.Component),yi=Ur(me,he)(bi),vi=n(3),Ei=n.n(vi),wi=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Oi=function(e){function t(e){ge(this,t);var n=be(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.nodeRef=function(e){n.ref=e},n.handleClick=n.onBackground.bind(n),n.ref=null,n.height=0,n}return ye(t,e),wi(t,[{key:"componentDidMount",value:function(){this.height=0,this.resize(),document.body.classList.add("redirection-modal")}},{key:"componentWillUnmount",value:function(){document.body.classList.remove("redirection-modal")}},{key:"componentWillReceiveProps",value:function(){this.resize()}},{key:"componentDidUpdate",value:function(){this.resize()}},{key:"resize",value:function(){for(var e=0,t=0;t<this.ref.children.length;t++)e+=this.ref.children[t].clientHeight;this.ref.style.height=e+"px"}},{key:"onBackground",value:function(e){"modal"===e.target.className&&this.props.onClose()}},{key:"render",value:function(){var e=this.props.onClose,t=Ei()({"modal-wrapper":!0,"modal-wrapper-padding":this.props.padding}),n={};return this.height&&(n.height=this.height+"px"),cr.a.createElement("div",{className:t,onClick:this.handleClick},cr.a.createElement("div",{className:"modal-backdrop"}),cr.a.createElement("div",{className:"modal"},cr.a.createElement("div",{className:"modal-content",ref:this.nodeRef,style:n},cr.a.createElement("div",{className:"modal-close"},cr.a.createElement("button",{onClick:e},"✖")),cr.a.cloneElement(this.props.children,{parent:this}))))}}]),t}(cr.a.Component);Oi.defaultProps={padding:!0};var _i=Oi,ki=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),xi=function(e){function t(e){ve(this,t);var n=Ee(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={isModal:!1},n.onSubmit=n.handleSubmit.bind(n),n.onClose=n.closeModal.bind(n),n.onDelete=n.handleDelete.bind(n),n}return we(t,e),ki(t,[{key:"handleSubmit",value:function(e){this.setState({isModal:!0}),e.preventDefault()}},{key:"closeModal",value:function(){this.setState({isModal:!1})}},{key:"handleDelete",value:function(){this.props.onDelete(),this.closeModal()}},{key:"showModal",value:function(){return cr.a.createElement(_i,{onClose:this.onClose},cr.a.createElement("div",null,cr.a.createElement("h1",null,Object(hr.translate)("Delete the plugin - are you sure?")),cr.a.createElement("p",null,Object(hr.translate)("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.")),cr.a.createElement("p",null,Object(hr.translate)("Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.")),cr.a.createElement("p",null,cr.a.createElement("button",{className:"button-primary button-delete",onClick:this.onDelete},Object(hr.translate)("Yes! Delete the plugin"))," ",cr.a.createElement("button",{className:"button-secondary",onClick:this.onClose},Object(hr.translate)("No! Don't delete the plugin")))))}},{key:"render",value:function(){return cr.a.createElement("div",{className:"wrap"},cr.a.createElement("form",{action:"",method:"post",onSubmit:this.onSubmit},cr.a.createElement("h2",null,Object(hr.translate)("Delete Redirection")),cr.a.createElement("p",null,"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do."),cr.a.createElement("input",{className:"button-primary button-delete",type:"submit",name:"delete",value:Object(hr.translate)("Delete")})),this.state.isModal&&this.showModal())}}]),t}(cr.a.Component),Ci=xi,Si=function(){return cr.a.createElement("div",{className:"placeholder-container"},cr.a.createElement("div",{className:"placeholder-loading"}))},ji=Si,Pi=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Ti=function(e){function t(e){_e(this,t);var n=ke(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onDonate=n.handleDonation.bind(n),n.onChange=n.handleChange.bind(n),n.onBlur=n.handleBlur.bind(n),n.onInput=n.handleInput.bind(n),n.state={support:e.support,amount:20},n}return xe(t,e),Pi(t,[{key:"handleBlur",value:function(){this.setState({amount:Math.max(16,this.state.amount)})}},{key:"handleDonation",value:function(){this.setState({support:!1})}},{key:"getReturnUrl",value:function(){return document.location.href+"#thanks"}},{key:"handleChange",value:function(e){this.state.amount!==e.value&&this.setState({amount:parseInt(e.value,10)})}},{key:"handleInput",value:function(e){var t=e.target.value?parseInt(e.target.value,10):16;this.setState({amount:t})}},{key:"getAmountoji",value:function(e){for(var t=[[100,"😍"],[80,"😎"],[60,"😊"],[40,"😃"],[20,"😀"],[10,"🙂"]],n=0;n<t.length;n++)if(e>=t[n][0])return t[n][1];return t[t.length-1][1]}},{key:"renderSupported",value:function(){return cr.a.createElement("div",null,Object(hr.translate)("You've supported this plugin - thank you!"),"  ",cr.a.createElement("a",{href:"#",onClick:this.onDonate},Object(hr.translate)("I'd like to support some more.")))}},{key:"renderUnsupported",value:function(){for(var e=Oe({},16,""),t=20;t<=100;t+=20)e[t]="";return cr.a.createElement("div",null,cr.a.createElement("label",null,cr.a.createElement("p",null,Object(hr.translate)("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}}.",{components:{strong:cr.a.createElement("strong",null)}})," ",Object(hr.translate)("You get useful software and I get to carry on making it better."))),cr.a.createElement("input",{type:"hidden",name:"cmd",value:"_xclick"}),cr.a.createElement("input",{type:"hidden",name:"business",value:"admin@urbangiraffe.com"}),cr.a.createElement("input",{type:"hidden",name:"item_name",value:"Redirection"}),cr.a.createElement("input",{type:"hidden",name:"buyer_credit_promo_code",value:""}),cr.a.createElement("input",{type:"hidden",name:"buyer_credit_product_category",value:""}),cr.a.createElement("input",{type:"hidden",name:"buyer_credit_shipping_method",value:""}),cr.a.createElement("input",{type:"hidden",name:"buyer_credit_user_address_change",value:""}),cr.a.createElement("input",{type:"hidden",name:"no_shipping",value:"1"}),cr.a.createElement("input",{type:"hidden",name:"return",value:this.getReturnUrl()}),cr.a.createElement("input",{type:"hidden",name:"no_note",value:"1"}),cr.a.createElement("input",{type:"hidden",name:"currency_code",value:"USD"}),cr.a.createElement("input",{type:"hidden",name:"tax",value:"0"}),cr.a.createElement("input",{type:"hidden",name:"lc",value:"US"}),cr.a.createElement("input",{type:"hidden",name:"bn",value:"PP-DonationsBF"}),cr.a.createElement("div",{className:"donation-amount"},"$",cr.a.createElement("input",{type:"number",name:"amount",min:16,value:this.state.amount,onChange:this.onInput,onBlur:this.onBlur}),cr.a.createElement("span",null,this.getAmountoji(this.state.amount)),cr.a.createElement("input",{type:"submit",className:"button-primary",value:Object(hr.translate)("Support 💰")})))}},{key:"render",value:function(){var e=this.state.support;return cr.a.createElement("form",{action:"https://www.paypal.com/cgi-bin/webscr",method:"post",className:"donation"},cr.a.createElement(li,null,cr.a.createElement(ii,{title:Object(hr.translate)("Plugin Support")+":"},e?this.renderSupported():this.renderUnsupported())))}}]),t}(cr.a.Component),Ni=Ti,Ri=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Di=function(e){function t(e){Ce(this,t);var n=Se(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoadSettings(),n}return je(t,e),Ri(t,[{key:"render",value:function(){var e=this.props,t=e.loadStatus,n=e.values,r=e.canDelete,o=void 0!==r&&r;return t!==Qr&&n?cr.a.createElement("div",null,t===Jr&&cr.a.createElement(Ni,{support:n.support}),t===Jr&&cr.a.createElement(yi,null),cr.a.createElement("br",null),cr.a.createElement("br",null),cr.a.createElement("hr",null),o&&cr.a.createElement(Ci,{onDelete:this.props.onDeletePlugin})):cr.a.createElement(ji,null)}}]),t}(cr.a.Component),Ii=Ur(Te,Pe)(Di),Ai=function(e){return e.newsletter?cr.a.createElement("div",{className:"newsletter"},cr.a.createElement("h3",null,Object(hr.translate)("Newsletter")),cr.a.createElement("p",null,Object(hr.translate)("Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.",{components:{a:cr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://tinyletter.com/redirection"})}}))):cr.a.createElement("div",{className:"newsletter"},cr.a.createElement("h3",null,Object(hr.translate)("Newsletter")),cr.a.createElement("p",null,Object(hr.translate)("Want to keep up to date with changes to Redirection?")),cr.a.createElement("p",null,Object(hr.translate)("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.")),cr.a.createElement("form",{action:"https://tinyletter.com/redirection",method:"post",onSubmit:e.onSubscribe},cr.a.createElement("p",null,cr.a.createElement("label",null,Object(hr.translate)("Your email address:")," ",cr.a.createElement("input",{type:"email",name:"email",id:"tlemail"})," ",cr.a.createElement("input",{type:"submit",value:"Subscribe",className:"button-secondary"})),cr.a.createElement("input",{type:"hidden",value:"1",name:"embed"})," ",cr.a.createElement("span",null,cr.a.createElement("a",{href:"https://tinyletter.com/redirection",target:"_blank",rel:"noreferrer noopener"},"Powered by TinyLetter")))))},Li=Ur(null,Ne)(Ai),Fi=function(){return cr.a.createElement("div",null,cr.a.createElement("h2",null,Object(hr.translate)("Need help?")),cr.a.createElement("p",null,Object(hr.translate)("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.",{components:{site:cr.a.createElement("a",{href:"https://redirection.me",target:"_blank",rel:"noopener noreferrer"}),faq:cr.a.createElement("a",{href:"https://redirection.me/support/faq/",target:"_blank",rel:"noopener noreferrer"})}})),cr.a.createElement("p",null,cr.a.createElement("strong",null,Object(hr.translate)("If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.",{components:{report:cr.a.createElement("a",{href:"https://redirection.me/support/reporting-bugs/",target:"_blank",rel:"noopener noreferrer"})}}))),cr.a.createElement("div",{className:"inline-notice inline-general"},cr.a.createElement("p",{className:"github"},cr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"},cr.a.createElement("img",{src:Redirectioni10n.pluginBaseUrl+"/images/GitHub-Mark-64px.png",width:"32",height:"32"})),cr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"},"https://github.com/johngodley/redirection/"))),cr.a.createElement("p",null,Object(hr.translate)("Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.")),cr.a.createElement("p",null,Object(hr.translate)("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!",{components:{email:cr.a.createElement("a",{href:"mailto:john@redirection.me?subject=Redirection%20Issue&body="+encodeURIComponent("Redirection: "+Redirectioni10n.versions)})}})))},Ui=Fi,Mi=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Bi=function(){return cr.a.createElement("div",null,cr.a.createElement("form",{action:Redirectioni10n.pluginRoot+"&sub=support",method:"POST"},cr.a.createElement("input",{type:"hidden",name:"_wpnonce",value:Redirectioni10n.WP_API_nonce}),cr.a.createElement("input",{type:"hidden",name:"action",value:"fixit"}),cr.a.createElement("p",null,Object(hr.translate)("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.")),cr.a.createElement("p",null,cr.a.createElement("input",{type:"submit",className:"button-primary",value:Object(hr.translate)("⚡️ Magic fix ⚡️")}))))},Hi=function(e){var t=e.item;return cr.a.createElement("tr",null,cr.a.createElement("th",null,t.name),cr.a.createElement("td",null,cr.a.createElement("span",{className:"plugin-status-"+t.status},t.status.charAt(0).toUpperCase()+t.status.slice(1))," ",t.message))},zi=function(e){var t=e.status,n=t.filter(function(e){return"good"!==e.status});return cr.a.createElement("div",null,cr.a.createElement("table",{className:"plugin-status"},cr.a.createElement("tbody",null,t.map(function(e,t){return cr.a.createElement(Hi,{item:e,key:t})}))),n.length>0&&cr.a.createElement(Bi,null))},Vi=function(e){function t(e){Re(this,t);var n=De(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onLoadStatus(),n}return Ie(t,e),Mi(t,[{key:"render",value:function(){var e=this.props.pluginStatus;return cr.a.createElement("div",null,cr.a.createElement("h2",null,Object(hr.translate)("Plugin Status")),e.length>0&&cr.a.createElement(zi,{status:e}),0===e.length&&cr.a.createElement("div",{className:"placeholder-inline"},cr.a.createElement("div",{className:"placeholder-loading"})))}}]),t}(cr.a.Component),Gi=Ur(Le,Ae)(Vi),qi=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Wi=function(e){function t(e){Fe(this,t);var n=Ue(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoadSettings(),n}return Me(t,e),qi(t,[{key:"render",value:function(){var e=this.props.values?this.props.values:{},t=e.newsletter,n=void 0!==t&&t;return cr.a.createElement("div",null,cr.a.createElement(Gi,null),cr.a.createElement(Ui,null),cr.a.createElement(Li,{newsletter:n}))}}]),t}(cr.a.Component),$i=Ur(He,Be)(Wi),Ki=function(e){var t=e.name,n=e.text,r=e.table,o=e.primary,a=r.direction,i=r.orderby,l=function(n){n.preventDefault(),e.onSetOrderBy(t,i===t&&"desc"===a?"asc":"desc")},s=Ei()(ze({"manage-column":!0,sortable:!0,asc:i===t&&"asc"===a,desc:i===t&&"desc"===a||i!==t,"column-primary":o},"column-"+t,!0));return cr.a.createElement("th",{scope:"col",className:s,onClick:l},cr.a.createElement("a",{href:"#"},cr.a.createElement("span",null,n),cr.a.createElement("span",{className:"sorting-indicator"})))},Qi=Ki,Yi=function(e){var t=e.name,n=e.text,r=e.primary,o=Ei()(Ve({"manage-column":!0,"column-primary":r},"column-"+t,!0));return cr.a.createElement("th",{scope:"col",className:o},cr.a.createElement("span",null,n))},Ji=Yi,Xi=function(e){var t=e.onSetAllSelected,n=e.isDisabled,r=e.isSelected;return cr.a.createElement("td",{className:"manage-column column-cb check-column",onClick:t},cr.a.createElement("label",{className:"screen-reader-text"},Object(hr.translate)("Select All")),cr.a.createElement("input",{type:"checkbox",disabled:n,checked:r}))},Zi=Xi,el=function(e){var t=e.isDisabled,n=e.onSetAllSelected,r=e.onSetOrderBy,o=e.isSelected,a=e.headers,i=e.table,l=function(e){n(e.target.checked)};return cr.a.createElement("tr",null,a.map(function(e){var n=e.primary,a=void 0!==n&&n,s=e.check,u=void 0!==s&&s,c=e.sortable,p=void 0===c||c;return!0===u?cr.a.createElement(Zi,{onSetAllSelected:l,isDisabled:t,isSelected:o,key:e.name}):!1===p?cr.a.createElement(Ji,{name:e.name,text:e.title,key:e.name,primary:a}):cr.a.createElement(Qi,{table:i,name:e.name,text:e.title,key:e.name,onSetOrderBy:r,primary:a})}))},tl=el,nl=function(e,t){return-1!==e.indexOf(t)},rl=function(e,t,n){return{isLoading:e===Qr,isSelected:nl(t,n.id)}},ol=function(e){var t=e.rows,n=e.status,r=e.selected,o=e.row;return cr.a.createElement("tbody",null,t.map(function(e,t){return o(e,t,rl(n,r,e))}))},al=ol,il=function(e){var t=e.columns;return cr.a.createElement("tr",{className:"is-placeholder"},t.map(function(e,t){return cr.a.createElement("td",{key:t},cr.a.createElement("div",{className:"placeholder-loading"}))}))},ll=function(e){var t=e.headers,n=e.rows;return cr.a.createElement("tbody",null,cr.a.createElement(il,{columns:t}),n.slice(0,-1).map(function(e,n){return cr.a.createElement(il,{columns:t,key:n})}))},sl=ll,ul=function(e){var t=e.headers;return cr.a.createElement("tbody",null,cr.a.createElement("tr",null,cr.a.createElement("td",null),cr.a.createElement("td",{colSpan:t.length-1},Object(hr.translate)("No results"))))},cl=ul,pl=function(e){var t=e.headers;return cr.a.createElement("tbody",null,cr.a.createElement("tr",null,cr.a.createElement("td",{colSpan:t.length},cr.a.createElement("p",null,Object(hr.translate)("Sorry, something went wrong loading the data - please try again")))))},fl=pl,dl=function(e,t){return e!==Jr||0===t.length},hl=function(e,t){return e.length===t.length&&0!==t.length},ml=function(e){var t=e.headers,n=e.row,r=e.rows,o=e.total,a=e.table,i=e.status,l=e.onSetAllSelected,s=e.onSetOrderBy,u=dl(i,r),c=hl(a.selected,r),p=null;return i===Qr&&0===r.length?p=cr.a.createElement(sl,{headers:t,rows:r}):0===r.length&&i===Jr?p=cr.a.createElement(cl,{headers:t}):i===Yr?p=cr.a.createElement(fl,{headers:t}):r.length>0&&(p=cr.a.createElement(al,{rows:r,status:i,selected:a.selected,row:n})),cr.a.createElement("table",{className:"wp-list-table widefat fixed striped items"},cr.a.createElement("thead",null,cr.a.createElement(tl,{table:a,isDisabled:u,isSelected:c,headers:t,rows:r,total:o,onSetOrderBy:s,onSetAllSelected:l})),p,cr.a.createElement("tfoot",null,cr.a.createElement(tl,{table:a,isDisabled:u,isSelected:c,headers:t,rows:r,total:o,onSetOrderBy:s,onSetAllSelected:l})))},gl=ml,bl=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),yl=function(e){var t=e.title,n=e.button,r=e.className,o=e.enabled,a=e.onClick;return o?cr.a.createElement("a",{className:r,href:"#",onClick:a},cr.a.createElement("span",{className:"screen-reader-text"},t),cr.a.createElement("span",{"aria-hidden":"true"},n)):cr.a.createElement("span",{className:"tablenav-pages-navspan","aria-hidden":"true"},n)},vl=function(e){function t(e){Ge(this,t);var n=qe(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onChange=n.handleChange.bind(n),n.onSetPage=n.handleSetPage.bind(n),n.setClickers(e),n.state={currentPage:e.page},n}return We(t,e),bl(t,[{key:"componentWillUpdate",value:function(e){this.setClickers(e),e.page!==this.props.page&&this.setState({currentPage:e.page})}},{key:"setClickers",value:function(e){this.onFirst=this.handleClick.bind(this,0),this.onLast=this.handleClick.bind(this,this.getTotalPages(e)-1),this.onNext=this.handleClick.bind(this,e.page+1),this.onPrev=this.handleClick.bind(this,e.page-1)}},{key:"handleClick",value:function(e,t){t.preventDefault(),this.setState({currentPage:e}),this.props.onChangePage(e)}},{key:"handleChange",value:function(e){var t=parseInt(e.target.value,10);t!==this.state.currentPage&&this.setState({currentPage:t-1})}},{key:"handleSetPage",value:function(){this.props.onChangePage(this.state.currentPage)}},{key:"getTotalPages",value:function(e){var t=e.total,n=e.per_page;return Math.ceil(t/n)}},{key:"render",value:function(){var e=this.props.page,t=this.getTotalPages(this.props);return cr.a.createElement("span",{className:"pagination-links"},cr.a.createElement(yl,{title:Object(hr.translate)("First page"),button:"«",className:"first-page",enabled:e>0,onClick:this.onFirst})," ",cr.a.createElement(yl,{title:Object(hr.translate)("Prev page"),button:"‹",className:"prev-page",enabled:e>0,onClick:this.onPrev}),cr.a.createElement("span",{className:"paging-input"},cr.a.createElement("label",{htmlFor:"current-page-selector",className:"screen-reader-text"},Object(hr.translate)("Current Page"))," ",cr.a.createElement("input",{className:"current-page",type:"number",min:"1",max:t,name:"paged",value:this.state.currentPage+1,size:"2","aria-describedby":"table-paging",onBlur:this.onSetPage,onChange:this.onChange}),cr.a.createElement("span",{className:"tablenav-paging-text"},Object(hr.translate)("of %(page)s",{components:{total:cr.a.createElement("span",{className:"total-pages"})},args:{page:Object(hr.numberFormat)(t)}})))," ",cr.a.createElement(yl,{title:Object(hr.translate)("Next page"),button:"›",className:"next-page",enabled:e<t-1,onClick:this.onNext})," ",cr.a.createElement(yl,{title:Object(hr.translate)("Last page"),button:"»",className:"last-page",enabled:e<t-1,onClick:this.onLast}))}}]),t}(cr.a.Component),El=function(e){function t(){return Ge(this,t),qe(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return We(t,e),bl(t,[{key:"render",value:function(){var e=this.props,t=e.total,n=e.per_page,r=e.page,o=e.onChangePage,a=e.inProgress,i=t<=n,l=Ei()({"tablenav-pages":!0,"one-page":i});return cr.a.createElement("div",{className:l},cr.a.createElement("span",{className:"displaying-num"},Object(hr.translate)("%s item","%s items",{count:t,args:Object(hr.numberFormat)(t)})),!i&&cr.a.createElement(vl,{onChangePage:o,total:t,per_page:n,page:r,inProgress:a}))}}]),t}(cr.a.Component),wl=El,Ol=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),_l=function(e){function t(e){$e(this,t);var n=Ke(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleClick=n.onClick.bind(n),n.handleChange=n.onChange.bind(n),n.state={action:-1},n}return Qe(t,e),Ol(t,[{key:"onChange",value:function(e){this.setState({action:e.target.value})}},{key:"onClick",value:function(e){e.preventDefault(),-1!==parseInt(this.state.action,10)&&(this.props.onAction(this.state.action),this.setState({action:-1}))}},{key:"getBulk",value:function(e){var t=this.props.selected;return cr.a.createElement("div",{className:"alignleft actions bulkactions"},cr.a.createElement("label",{htmlFor:"bulk-action-selector-top",className:"screen-reader-text"},Object(hr.translate)("Select bulk action")),cr.a.createElement("select",{name:"action",id:"bulk-action-selector-top",value:this.state.action,disabled:0===t.length,onChange:this.handleChange},cr.a.createElement("option",{value:"-1"},Object(hr.translate)("Bulk Actions")),e.map(function(e){return cr.a.createElement("option",{key:e.id,value:e.id},e.name)})),cr.a.createElement("input",{type:"submit",id:"doaction",className:"button action",value:Object(hr.translate)("Apply"),disabled:0===t.length||-1===parseInt(this.state.action,10),onClick:this.handleClick}))}},{key:"render",value:function(){var e=this.props,t=e.total,n=e.table,r=e.bulk,o=e.status;return cr.a.createElement("div",{className:"tablenav top"},r&&this.getBulk(r),this.props.children?this.props.children:null,t>0&&cr.a.createElement(wl,{per_page:n.per_page,page:n.page,total:t,onChangePage:this.props.onChangePage,inProgress:o===Qr}))}}]),t}(cr.a.Component),kl=_l,xl=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Cl=function(e){function t(e){Ye(this,t);var n=Je(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={search:n.getDefaultSearch(e.table,e.ignoreFilter)},n.handleChange=n.onChange.bind(n),n.handleSubmit=n.onSubmit.bind(n),n}return Xe(t,e),xl(t,[{key:"getDefaultSearch",value:function(e,t){return t&&t.find(function(t){return t===e.filterBy})?"":e.filter}},{key:"componentWillReceiveProps",value:function(e){e.table.filterBy===this.props.table.filterBy&&e.table.filter===this.props.table.filter||this.setState({search:this.getDefaultSearch(e.table,e.ignoreFilter)})}},{key:"onChange",value:function(e){this.setState({search:e.target.value})}},{key:"onSubmit",value:function(e){e.preventDefault(),this.props.onSearch(this.state.search,this.props.table.filterBy)}},{key:"render",value:function(){var e=this.props.status,t=e===Qr||""===this.state.search&&""===this.props.table.filter,n="ip"===this.props.table.filterBy?Object(hr.translate)("Search by IP"):Object(hr.translate)("Search");return cr.a.createElement("form",{onSubmit:this.handleSubmit},cr.a.createElement("p",{className:"search-box"},cr.a.createElement("input",{type:"search",name:"s",value:this.state.search,onChange:this.handleChange}),cr.a.createElement("input",{type:"submit",className:"button",value:n,disabled:t})))}}]),t}(cr.a.Component),Sl=Cl,jl=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Pl=function(e){function t(e){Ze(this,t);var n=et(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={isModal:!1},n.onShow=n.showDelete.bind(n),n.onClose=n.closeModal.bind(n),n.onDelete=n.handleDelete.bind(n),n}return tt(t,e),jl(t,[{key:"showDelete",value:function(e){this.setState({isModal:!0}),e.preventDefault()}},{key:"closeModal",value:function(){this.setState({isModal:!1})}},{key:"handleDelete",value:function(){var e=this.props.table;this.setState({isModal:!1}),this.props.onDelete(this.getFilterBy(e.filterBy,e.filter),e.filter)}},{key:"getFilterBy",value:function(e,t){return t?e||"url":""}},{key:"getTitle",value:function(e,t){return"ip"===e?Object(hr.translate)("Delete all from IP %s",{args:t}):t?Object(hr.translate)('Delete all matching "%s"',{args:t.substring(0,15)}):Object(hr.translate)("Delete All")}},{key:"render",value:function(){var e=this.props.table,t=this.getTitle(e.filterBy,e.filter);return cr.a.createElement("div",{className:"table-button-item"},cr.a.createElement("input",{className:"button",type:"submit",name:"",value:t,onClick:this.onShow}),this.state.isModal&&cr.a.createElement(_i,{onClose:this.onClose},cr.a.createElement("div",null,cr.a.createElement("h1",null,Object(hr.translate)("Delete the logs - are you sure?")),cr.a.createElement("p",null,Object(hr.translate)("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.")),cr.a.createElement("p",null,cr.a.createElement("button",{className:"button-primary",onClick:this.onDelete},Object(hr.translate)("Yes! Delete the logs"))," ",cr.a.createElement("button",{className:"button-secondary",onClick:this.onClose},Object(hr.translate)("No! Don't delete the logs"))))))}}]),t}(cr.a.Component),Tl=Pl,Nl=this,Rl=function(e){var t=e.logType;return cr.a.createElement("form",{method:"post",action:Redirectioni10n.pluginRoot+"&sub="+t},cr.a.createElement("input",{type:"hidden",name:"_wpnonce",value:Redirectioni10n.WP_API_nonce}),cr.a.createElement("input",{type:"hidden",name:"export-csv",value:""}),cr.a.createElement("input",{className:"button",type:"submit",name:"",value:Object(hr.translate)("Export"),onClick:Nl.onShow}))},Dl=Rl,Il=n(13),Al=function(e){var t=e.children,n=e.disabled,r=void 0!==n&&n;return cr.a.createElement("div",{className:"row-actions"},r?cr.a.createElement("span",null," "):t)},Ll=Al,Fl=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ul={saving:oo,saved:ao,failed:io,order:"date",store:"log"},Ml={saving:Zr,saved:eo,failed:to,order:"date",store:"log"},Bl=function(e,t){return function(n,r){return Vo(Po.log.deleteAll,n,Ml,{page:0,filter:t,filterBy:e},r().log,function(e){return Fl({},e,{filter:"",filterBy:""})})}},Hl=function(e,t,n){return Fo(Po.bulk.log,e,t,Ul,n)},zl=function(e){return function(t){return Vo(Po.log.list,t,Ml,e)}},Vl=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{filter:"",filterBy:"",page:0,orderby:""};return zl(e)},Gl=function(e,t){return zl({orderby:e,direction:t})},ql=function(e){return zl({page:e})},Wl=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return zl({filter:e,filterBy:""===e?"":t,page:0,orderby:""})},$l=function(e,t){return zl({filterBy:e,filter:t,orderby:"",page:0})},Kl=function(e){return{type:no,items:e.map(parseInt)}},Ql=function(e){return{type:ro,onoff:e}},Yl=function(e){var t=e.size,n=void 0===t?"":t,r="spinner-container"+(n?" spinner-"+n:"");return cr.a.createElement("div",{className:r},cr.a.createElement("span",{className:"css-spinner"}))},Jl=Yl,Xl=function(e){return function(t,n){if(!n().info.maps[e])return Ao(No.ip.getGeo(e)).then(function(e){t({type:qa,map:e})}).catch(function(e){t({type:$a,error:e})}),t({type:Ga})}},Zl=function(e){return function(t,n){if(!n().info.agents[e])return Ao(No.agent.get(e)).then(function(e){t({type:Wa,agent:e})}).catch(function(e){t({type:$a,error:e})}),t({type:Ga})}},es=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),ts=function(e){function t(e){nt(this,t);var n=rt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onGet(e.ip),n}return ot(t,e),es(t,[{key:"renderError",value:function(){var e=this.props.error;return cr.a.createElement("div",{className:"modal-error"},cr.a.createElement("h2",null,Object(hr.translate)("Geo IP Error")),cr.a.createElement("p",null,Object(hr.translate)("Something went wrong obtaining this information")),cr.a.createElement("p",null,cr.a.createElement("code",null,e.message)))}},{key:"showPrivate",value:function(e){var t=e.ip,n=e.ipType;return cr.a.createElement("div",{className:"geo-simple"},cr.a.createElement("h2",null,Object(hr.translate)("Geo IP"),": ",t," - IPv",n),cr.a.createElement("p",null,Object(hr.translate)("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.")))}},{key:"showUnknown",value:function(e){var t=e.ip,n=e.ipType;return cr.a.createElement("div",{className:"geo-simple"},cr.a.createElement("h2",null,Object(hr.translate)("Geo IP"),": ",t," - IPv",n),cr.a.createElement("p",null,Object(hr.translate)("No details are known for this address.")))}},{key:"showMap",value:function(e){var t=e.countryName,n=e.regionName,r=e.city,o=e.postCode,a=e.timeZone,i=e.accuracyRadius,l=e.latitude,s=e.longitude,u=e.ip,c=e.ipType,p="https://www.google.com/maps/embed/v1/place?key=AIzaSyDPHZn9iAyI6l-2Qv5-1IPXsLUENVtQc3A&q="+encodeURIComponent(l+","+s),f=[n,t,o].filter(function(e){return e});return cr.a.createElement("div",{className:"geo-full"},cr.a.createElement("table",null,cr.a.createElement("tbody",null,cr.a.createElement("tr",null,cr.a.createElement("th",{colSpan:"2"},cr.a.createElement("h2",null,Object(hr.translate)("Geo IP"),": ",cr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(u),target:"_blank",rel:"noopener noreferrer"},u)," - IPv",c))),cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("City")),cr.a.createElement("td",null,r)),cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Area")),cr.a.createElement("td",null,f.join(", "))),cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Timezone")),cr.a.createElement("td",null,a)),cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Geo Location")),cr.a.createElement("td",null,l+","+s+" (~"+i+"m)")))),cr.a.createElement("iframe",{frameBorder:"0",src:p,allowFullScreen:!0}))}},{key:"renderDetails",value:function(){var e=this.props,t=e.maps,n=e.ip,r=!!t[n]&&t[n];if(r){var o=r.code;return"private"===o?this.showPrivate(r):"geoip"===o?this.showMap(r):this.showUnknown(r)}return null}},{key:"renderLink",value:function(){return cr.a.createElement("div",{className:"external"},Object(hr.translate)("Powered by {{link}}redirect.li{{/link}}",{components:{link:cr.a.createElement("a",{href:"https://redirect.li",target:"_blank",rel:"noopener noreferrer"})}}))}},{key:"componentDidUpdate",value:function(){this.props.parent.resize()}},{key:"render",value:function(){var e=this.props.status,t=e===Jr&&this.props.maps[this.props.ip]&&"geoip"!==this.props.maps[this.props.ip].code,n=Ei()({"geo-map":!0,"modal-loading":e===Qr,"geo-map-small":e===Yr||t});return cr.a.createElement("div",{className:n},e===Qr&&cr.a.createElement(Jl,null),e===Yr&&this.renderError(),e===Jr&&this.renderDetails(),e===Jr&&this.renderLink())}}]),t}(cr.a.Component),ns=Ur(it,at)(ts),rs=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),os=function(e){function t(e){lt(this,t);var n=st(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onGet(e.agent),n}return ut(t,e),rs(t,[{key:"renderError",value:function(){var e=this.props.error;return cr.a.createElement("div",{className:"modal-error"},cr.a.createElement("h2",null,Object(hr.translate)("Useragent Error")),cr.a.createElement("p",null,Object(hr.translate)("Something went wrong obtaining this information")),cr.a.createElement("p",null,cr.a.createElement("code",null,e.message)))}},{key:"renderUnknown",value:function(){var e=this.props.agent;return cr.a.createElement("div",{className:"agent-unknown"},cr.a.createElement("h2",null,Object(hr.translate)("Unknown Useragent")),cr.a.createElement("br",null),cr.a.createElement("p",null,e))}},{key:"getDetail",value:function(e){return!!(e&&e.name&&e.version)&&e.name+" "+e.version}},{key:"getDevice",value:function(e){var t=[];return e.vendor&&t.push(e.vendor),e.name&&t.push(e.name),t.join(" ")}},{key:"getType",value:function(e,t){var n=e.slice(0,1).toUpperCase()+e.slice(1);return t?cr.a.createElement("a",{href:t,target:"_blank"},n):n}},{key:"renderDetails",value:function(){var e=this.props,t=e.agents,n=e.agent,r=!!t[n]&&t[n];if(!r)return this.renderUnknown();var o=this.getType(r.device.type,r.url),a=this.getDevice(r.device),i=this.getDetail(r.os),l=this.getDetail(r.browser),s=this.getDetail(r.engine),u=[];return a&&u.push([Object(hr.translate)("Device"),a]),i&&u.push([Object(hr.translate)("Operating System"),i]),l&&u.push([Object(hr.translate)("Browser"),l]),s&&u.push([Object(hr.translate)("Engine"),s]),cr.a.createElement("div",null,cr.a.createElement("h2",null,Object(hr.translate)("Useragent"),": ",o),cr.a.createElement("table",null,cr.a.createElement("tbody",null,cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Agent")),cr.a.createElement("td",{className:"useragent-agent"},n)),u.map(function(e,t){return cr.a.createElement("tr",{key:t},cr.a.createElement("th",null,e[0]),cr.a.createElement("td",null,e[1]))}))),cr.a.createElement("div",{className:"external"},Object(hr.translate)("Powered by {{link}}redirect.li{{/link}}",{components:{link:cr.a.createElement("a",{href:"https://redirect.li",target:"_blank",rel:"noopener noreferrer"})}})))}},{key:"componentDidUpdate",value:function(){this.props.parent.resize()}},{key:"render",value:function(){var e=this.props.status,t=Ei()({useragent:!0,"modal-loading":e===Qr});return cr.a.createElement("div",{className:t},e===Qr&&cr.a.createElement(Jl,null),e===Yr&&this.renderError(),e===Jr&&this.renderDetails())}}]),t}(cr.a.Component),as=Ur(pt,ct)(os),is=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),ls=function(e){var t=e.url;if(t){var n=Il.parse(t).hostname;return cr.a.createElement("a",{href:t,rel:"noreferrer noopener",target:"_blank"},n)}return null},ss=function(e){function t(e){ft(this,t);var n=dt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onShow=function(e){e.preventDefault(),n.props.onShowIP(n.props.item.ip)},n.onSelected=function(){n.props.onSetSelected([n.props.item.id])},n.onDelete=function(e){e.preventDefault(),n.props.onDelete(n.props.item.id)},n.renderIp=function(e){return e?cr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(e),onClick:n.showMap},e):"-"},n.showMap=function(e){e.preventDefault(),n.setState({showMap:!0})},n.showAgent=function(e){e.preventDefault(),n.setState({showAgent:!0})},n.closeMap=function(){n.setState({showMap:!1})},n.closeAgent=function(){n.setState({showAgent:!1})},n.state={showMap:!1,showAgent:!1},n}return ht(t,e),is(t,[{key:"renderMap",value:function(){return cr.a.createElement(_i,{onClose:this.closeMap,padding:!1},cr.a.createElement(ns,{ip:this.props.item.ip}))}},{key:"renderAgent",value:function(){return cr.a.createElement(_i,{onClose:this.closeAgent,width:"800"},cr.a.createElement(as,{agent:this.props.item.agent}))}},{key:"render",value:function(){var e=this.props.item,t=e.created,n=e.created_time,r=e.ip,o=e.referrer,a=e.url,i=e.agent,l=e.sent_to,s=e.id,u=this.props,c=u.selected,p=u.status,f=p===Qr,d="STATUS_SAVING"===p,h=f||d,m=[cr.a.createElement("a",{href:"#",onClick:this.onDelete,key:"0"},Object(hr.translate)("Delete"))];return r&&m.unshift(cr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(r),onClick:this.showMap,key:"2"},Object(hr.translate)("Geo Info"))),i&&m.unshift(cr.a.createElement("a",{href:"https://redirect.li/agent/?ip="+encodeURIComponent(i),onClick:this.showAgent,key:"3"},Object(hr.translate)("Agent Info"))),cr.a.createElement("tr",{className:h?"disabled":""},cr.a.createElement("th",{scope:"row",className:"check-column"},!d&&cr.a.createElement("input",{type:"checkbox",name:"item[]",value:s,disabled:f,checked:c,onClick:this.onSelected}),d&&cr.a.createElement(Jl,{size:"small"})),cr.a.createElement("td",{className:"column-date"},t,cr.a.createElement("br",null),n),cr.a.createElement("td",{className:"column-primary column-url"},cr.a.createElement("a",{href:a,rel:"noreferrer noopener",target:"_blank"},a.substring(0,100)),cr.a.createElement("br",null),l?l.substring(0,100):"",cr.a.createElement(Ll,{disabled:d},m.reduce(function(e,t){return[e," | ",t]})),this.state.showMap&&this.renderMap(),this.state.showAgent&&this.renderAgent()),cr.a.createElement("td",{className:"column-referrer"},cr.a.createElement(ls,{url:o}),o&&cr.a.createElement("br",null),i),cr.a.createElement("td",{className:"column-ip"},this.renderIp(r),cr.a.createElement(Ll,null,r&&cr.a.createElement("a",{href:"#",onClick:this.onShow},Object(hr.translate)("Filter by IP")))))}}]),t}(cr.a.Component),us=Ur(null,mt)(ss),cs=function(e){var t=e.enabled,n=void 0===t||t,r=e.children;return n?cr.a.createElement("div",{className:"table-buttons"},r):null},ps=cs,fs=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),ds=[{name:"cb",check:!0},{name:"date",title:Object(hr.translate)("Date")},{name:"url",title:Object(hr.translate)("Source URL"),primary:!0},{name:"referrer",title:Object(hr.translate)("Referrer / User Agent"),sortable:!1},{name:"ip",title:Object(hr.translate)("IP"),sortable:!1}],hs=[{id:"delete",name:Object(hr.translate)("Delete")}],ms=function(e){function t(e){gt(this,t);var n=bt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoad(e.log.table),n.handleRender=n.renderRow.bind(n),n.handleRSS=n.onRSS.bind(n),n}return yt(t,e),fs(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoad()}},{key:"onRSS",value:function(){document.location=H()}},{key:"renderRow",value:function(e,t,n){var r=this.props.log.saving,o=n.isLoading?Qr:Jr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return cr.a.createElement(us,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"render",value:function(){var e=this.props.log,t=e.status,n=e.total,r=e.table,o=e.rows;return cr.a.createElement("div",null,cr.a.createElement(Sl,{status:t,table:r,onSearch:this.props.onSearch}),cr.a.createElement(kl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction,bulk:hs}),cr.a.createElement(gl,{headers:ds,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),cr.a.createElement(kl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction},cr.a.createElement(ps,{enabled:o.length>0},cr.a.createElement(Dl,{logType:lo}),cr.a.createElement("button",{className:"button-secondary",onClick:this.handleRSS},"RSS"),cr.a.createElement(Tl,{onDelete:this.props.onDeleteAll,table:r}))))}}]),t}(cr.a.Component),gs=Ur(vt,Et)(ms),bs=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ys={saving:aa,saved:ia,failed:la,order:"date",store:"error"},vs={saving:ea,saved:ta,failed:na,order:"date",store:"error"},Es=function(e,t){return function(n,r){return Go(Po.error.deleteAll,n,vs,{page:0,filter:t,filterBy:e},r().error)}},ws=function(e,t){return function(n,r){return Vo(Po.error.deleteAll,n,vs,{page:0,filter:t,filterBy:e},r().error,function(e){return bs({},e,{filter:"",filterBy:""})})}},Os=function(e,t,n){return Fo(Po.bulk.error,e,t,ys,n)},_s=function(e){return function(t){return Vo(Po.error.list,t,vs,e)}},ks=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{filter:"",filterBy:"",page:0,orderby:""};return _s(e)},xs=function(e,t){return _s({orderby:e,direction:t})},Cs=function(e){return _s({page:e})},Ss=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return _s({filter:e,filterBy:""===e?"":t,page:0,orderby:""})},js=function(e,t){return _s({filterBy:e,filter:t,orderby:"",page:0})},Ps=function(e){return{type:ra,items:e.map(parseInt)}},Ts=function(e){return{type:oa,onoff:e}},Ns=function(e){var t=e.url;if(t){var n=Il.parse(t).hostname;return cr.a.createElement("a",{href:t,rel:"noreferrer noopener",target:"_blank"},n)}return null},Rs=Ns,Ds=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Is=function(e){function t(e){wt(this,t);var n=Ot(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onDropdown=function(e){var t={mobile:"iPad|iPod|iPhone|Android|BlackBerry|SymbianOS|SCH-Md+|Opera Mini|Windows CE|Nokia|SonyEricsson|webOS|PalmOS",feed:"Bloglines|feed|rss",lib:"cURL|Java|libwww-perl|PHP|urllib"};""!==e.target.value&&n.props.onCustomAgent(t[e.target.value]),n.setState({dropdown:""})},n.handleChangeAgent=n.onChangeAgent.bind(n),n.handleChangeRegex=n.onChangeRegex.bind(n),n.state={dropdown:0},n}return _t(t,e),Ds(t,[{key:"onChangeAgent",value:function(e){this.props.onChange("agent","agent",e.target.value)}},{key:"onChangeRegex",value:function(e){this.props.onChange("agent","regex",e.target.checked)}},{key:"render",value:function(){return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("User Agent")),cr.a.createElement("td",{className:"useragent-match"},cr.a.createElement("input",{type:"text",name:"agent",value:this.props.agent,onChange:this.handleChangeAgent,className:"medium"}),cr.a.createElement("select",{name:"agent_dropdown",onChange:this.onDropdown,value:this.state.dropdown,className:"medium"},cr.a.createElement("option",{value:""},Object(hr.translate)("Custom")),cr.a.createElement("option",{value:"mobile"},Object(hr.translate)("Mobile")),cr.a.createElement("option",{value:"feed"},Object(hr.translate)("Feed Readers")," "),cr.a.createElement("option",{value:"lib"},Object(hr.translate)("Libraries"))),cr.a.createElement("label",{className:"edit-redirection-regex"},Object(hr.translate)("Regex")," ",cr.a.createElement("sup",null,cr.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",cr.a.createElement("input",{type:"checkbox",name:"regex",checked:this.props.regex,onChange:this.handleChangeRegex}))))}}]),t}(cr.a.Component),As=Is,Ls=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Fs=function(e){function t(e){kt(this,t);var n=xt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeReferrer=n.onChangeReferrer.bind(n),n.handleChangeRegex=n.onChangeRegex.bind(n),n}return Ct(t,e),Ls(t,[{key:"onChangeReferrer",value:function(e){this.props.onChange("referrer","referrer",e.target.value)}},{key:"onChangeRegex",value:function(e){this.props.onChange("referrer","regex",e.target.checked)}},{key:"render",value:function(){return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Referrer")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"referrer",value:this.props.referrer,onChange:this.handleChangeReferrer}),cr.a.createElement("label",{className:"edit-redirection-regex"},Object(hr.translate)("Regex")," ",cr.a.createElement("sup",null,cr.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",cr.a.createElement("input",{type:"checkbox",name:"regex",checked:this.props.regex,onChange:this.handleChangeRegex}))))}}]),t}(cr.a.Component),Us=Fs,Ms=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Bs=function(e){function t(e){St(this,t);var n=jt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onChange=function(e){n.props.onChange("header",e.target.name,e.target.value)},n.onChangeRegex=function(e){n.props.onChange("header","regex",e.target.checked)},n.onDropdown=function(e){var t={accept:"Accept-Language"};""!==e.target.value&&n.props.onChange("header","name",t[e.target.value]),n.setState({dropdown:""})},n.state={dropdown:0},n}return Pt(t,e),Ms(t,[{key:"render",value:function(){var e=this.props,t=e.name,n=e.value,r=e.regex;return cr.a.createElement(cr.a.Fragment,null,cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("HTTP Header")),cr.a.createElement("td",{className:"custom-header-match"},cr.a.createElement("input",{type:"text",name:"name",value:t,onChange:this.onChange,className:"medium",placeholder:Object(hr.translate)("Header name")}),cr.a.createElement("input",{type:"text",name:"value",value:n,onChange:this.onChange,className:"medium",placeholder:Object(hr.translate)("Header value")}),cr.a.createElement("select",{name:"agent_dropdown",onChange:this.onDropdown,value:this.state.dropdown,className:"medium"},cr.a.createElement("option",{value:""},Object(hr.translate)("Custom")),cr.a.createElement("option",{value:"accept"},Object(hr.translate)("Accept Language"))),cr.a.createElement("label",{className:"edit-redirection-regex"},Object(hr.translate)("Regex")," ",cr.a.createElement("sup",null,cr.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",cr.a.createElement("input",{type:"checkbox",name:"regex",checked:r,onChange:this.onChangeRegex})))),cr.a.createElement("tr",null,cr.a.createElement("th",null),cr.a.createElement("td",null,Object(hr.translate)("Note it is your responsability to pass HTTP headers to PHP. Please contact your hosting provider for support about this."))))}}]),t}(cr.a.Component),Hs=Bs,zs=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Vs=function(e){function t(){var e,n,r,o;Tt(this,t);for(var a=arguments.length,i=Array(a),l=0;l<a;l++)i[l]=arguments[l];return n=r=Nt(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(i))),r.onChange=function(e){r.props.onChange("custom","filter",e.target.value)},o=n,Nt(r,o)}return Rt(t,e),zs(t,[{key:"render",value:function(){return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Filter Name")),cr.a.createElement("td",{className:"customfilter-match"},cr.a.createElement("input",{type:"text",name:"filter",value:this.props.filter,onChange:this.onChange,className:"medium",placeholder:Object(hr.translate)("WordPress filter name")})))}}]),t}(cr.a.Component),Gs=Vs,qs=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Ws=function(e){function t(e){Dt(this,t);var n=It(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onChange=function(e){n.props.onChange("cookie",e.target.name,e.target.value)},n.onChangeRegex=function(e){n.props.onChange("cookie","regex",e.target.checked)},n}return At(t,e),qs(t,[{key:"render",value:function(){var e=this.props,t=e.name,n=e.value,r=e.regex;return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Cookie")),cr.a.createElement("td",{className:"custom-header-match"},cr.a.createElement("input",{type:"text",name:"name",value:t,onChange:this.onChange,className:"medium",placeholder:Object(hr.translate)("Cookie name")}),cr.a.createElement("input",{type:"text",name:"value",value:n,onChange:this.onChange,className:"medium",placeholder:Object(hr.translate)("Cookie value")}),cr.a.createElement("label",{className:"edit-redirection-regex"},Object(hr.translate)("Regex")," ",cr.a.createElement("sup",null,cr.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",cr.a.createElement("input",{type:"checkbox",name:"regex",checked:r,onChange:this.onChangeRegex}))))}}]),t}(cr.a.Component),$s=Ws,Ks=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),Qs=function(e){function t(){var e,n,r,o;Lt(this,t);for(var a=arguments.length,i=Array(a),l=0;l<a;l++)i[l]=arguments[l];return n=r=Ft(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(i))),r.onChange=function(e){r.props.onChange("login",e.target.name,e.target.value)},o=n,Ft(r,o)}return Ut(t,e),Ks(t,[{key:"render",value:function(){return cr.a.createElement(cr.a.Fragment,null,cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Logged In")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"logged_in",value:this.props.logged_in,onChange:this.onChange,placeholder:Object(hr.translate)("Target URL when matched")}))),cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Logged Out")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"logged_out",value:this.props.logged_out,onChange:this.onChange,placeholder:Object(hr.translate)("Target URL when not matched")}))))}}]),t}(cr.a.Component),Ys=Qs,Js=function(e){var t=function(t){e.onChange("target","url",t.target.value)};return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Target URL")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"url",value:e.target.url,onChange:t})))},Xs=Js,Zs=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),eu=function(e){function t(){var e,n,r,o;Mt(this,t);for(var a=arguments.length,i=Array(a),l=0;l<a;l++)i[l]=arguments[l];return n=r=Bt(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(i))),r.onChange=function(e){r.props.onChange(r.props.target,e.target.name,e.target.value)},o=n,Bt(r,o)}return Ht(t,e),Zs(t,[{key:"render",value:function(){return cr.a.createElement(cr.a.Fragment,null,cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Matched Target")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"url_from",value:this.props.url_from,onChange:this.onChange,placeholder:Object(hr.translate)("Target URL when matched")}))),cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Unmatched Target")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"url_notfrom",value:this.props.url_notfrom,onChange:this.onChange,placeholder:Object(hr.translate)("Target URL when not matched")}))))}}]),t}(cr.a.Component),tu=eu,nu=function(e){for(var t={},n=0;n<e.length;n++){var r=e[n];t[r.moduleName]||(t[r.moduleName]=[]),t[r.moduleName].push({value:r.id,text:r.name})}return Object.keys(t).map(function(e){return{text:e,value:t[e]}})},ru={store:"redirect",saving:Ra,saved:Ia,failed:Da,order:"name"},ou={store:"redirect",saving:Sa,saved:ja,failed:Pa,order:"name"},au=function(e){return Mo(Po.redirect.create,e,ru)},iu=function(e,t){return Bo(Po.redirect.update,e,t,ru)},lu=function(e,t){return Fo(Po.bulk.redirect,e,t,ru)},su=function(e){return function(t,n){return Vo(Po.redirect.list,t,ou,e,n().redirect)}},uu=function(e,t){return su({orderby:e,direction:t})},cu=function(e){return su({page:e})},pu=function(e){return su({filter:e,filterBy:"",page:0,orderby:""})},fu=function(e,t){return su({filterBy:e,filter:t,orderby:"",page:0})},du=function(e){return{type:Ta,items:e.map(parseInt)}},hu=function(e){return{type:Na,onoff:e}},mu=function(e){return{type:Aa,onoff:e}},gu=function(e){return"url"===e||"pass"===e},bu=function(e){var t=e.agent,n=e.referrer,r=e.login,o=e.match_type,a=e.target,i=e.action_type,l=e.header,s=e.cookie,u=e.custom;return"cookie"===o?{name:s.name,value:s.value,regex:s.regex,url_from:gu(i)?s.url_from:"",url_notfrom:gu(i)?s.url_notfrom:""}:"header"===o?{name:l.name,value:l.value,regex:l.regex,url_from:gu(i)?l.url_from:"",url_notfrom:gu(i)?l.url_notfrom:""}:"custom"===o?{filter:u.filter,url_from:gu(i)?u.url_from:"",url_notfrom:gu(i)?u.url_notfrom:""}:"agent"===o?{agent:t.agent,regex:t.regex,url_from:gu(i)?t.url_from:"",url_notfrom:gu(i)?t.url_notfrom:""}:"referrer"===o?{referrer:n.referrer,regex:n.regex,url_from:gu(i)?n.url_from:"",url_notfrom:gu(i)?n.url_notfrom:""}:"login"===o&&gu(i)?{logged_in:r.logged_in,logged_out:r.logged_out}:"url"===o&&gu(i)?{url:a.url}:""},yu=function(e,t){return{id:0,url:e,regex:!1,match_type:"url",action_type:"url",action_data:{url:""},group_id:t,title:"",action_code:301}},vu=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Eu=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),wu=[{value:"url",name:Object(hr.translate)("URL only")},{value:"login",name:Object(hr.translate)("URL and login status")},{value:"referrer",name:Object(hr.translate)("URL and referrer")},{value:"agent",name:Object(hr.translate)("URL and user agent")},{value:"cookie",name:Object(hr.translate)("URL and cookie")},{value:"header",name:Object(hr.translate)("URL and HTTP header")},{value:"custom",name:Object(hr.translate)("URL and custom filter")}],Ou=[{value:"url",name:Object(hr.translate)("Redirect to URL")},{value:"random",name:Object(hr.translate)("Redirect to random post")},{value:"pass",name:Object(hr.translate)("Pass-through")},{value:"error",name:Object(hr.translate)("Error (404)")},{value:"nothing",name:Object(hr.translate)("Do nothing")}],_u=[{value:301,name:Object(hr.translate)("301 - Moved Permanently")},{value:302,name:Object(hr.translate)("302 - Found")},{value:307,name:Object(hr.translate)("307 - Temporary Redirect")},{value:308,name:Object(hr.translate)("308 - Permanent Redirect")}],ku=[{value:401,name:Object(hr.translate)("401 - Unauthorized")},{value:404,name:Object(hr.translate)("404 - Not Found")},{value:410,name:Object(hr.translate)("410 - Gone")}],xu=function(e){function t(e){Vt(this,t);var n=Gt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));Cu.call(n);var r=e.item,o=r.url,a=r.regex,i=r.match_type,l=r.action_type,s=r.action_data,u=r.group_id,c=void 0===u?0:u,p=r.title,f=r.action_code,d=r.position,h=void 0===d?0:d,m=s||{},g=m.logged_in,b=void 0===g?"":g,y=m.logged_out,v=void 0===y?"":y;return n.state={url:o,title:p,regex:a,match_type:i,action_type:l,action_code:f,action_data:s,group_id:n.getValidGroup(c),position:h,login:{logged_in:b,logged_out:v},target:s||{},agent:n.getAgentState(s),referrer:n.getReferrerState(s),cookie:n.getHeaderState(s),header:n.getHeaderState(s),custom:n.getCustomState(s)},n.state.advanced=!n.canShowAdvanced(),n}return qt(t,e),Eu(t,[{key:"getValidGroup",value:function(e){var t=this.props.group.rows,n=this.props.table;if(t.find(function(t){return t.id===e}))return e;if(t.length>0){if("group"===n.filterBy&&parseInt(n.filter,10)>0)return parseInt(n.filter,10);var r=t.find(function(e){return e.default});return r?r.id:t[0].id}return 0}},{key:"reset",value:function(){this.setState(vu({url:"",regex:!1,match_type:"url",action_type:"url",action_data:"",title:"",action_code:301,position:0},this.resetActionData()))}},{key:"resetActionData",value:function(){return{login:{logged_in:"",logged_out:""},target:{url:""},agent:{url_from:"",agent:"",regex:!1,url_notfrom:""},referrer:{referrer:"",regex:!1,url_from:"",url_notfrom:""},cookie:{name:"",value:"",regex:!1,url_from:"",url_notfrom:""},header:{name:"",value:"",regex:!1,url_from:"",url_notfrom:""},custom:{filter:"",url_from:"",url_notfrom:""}}}},{key:"canShowAdvanced",value:function(){var e=this.state,t=e.match_type,n=e.action_type;return"url"===t&&"url"===n}},{key:"getAgentState",value:function(e){var t=e||{},n=t.agent,r=void 0===n?"":n,o=t.regex,a=void 0!==o&&o,i=t.url_from,l=void 0===i?"":i,s=t.url_notfrom;return{agent:r,regex:a,url_from:l,url_notfrom:void 0===s?"":s}}},{key:"getReferrerState",value:function(e){var t=e||{},n=t.referrer,r=void 0===n?"":n,o=t.regex,a=void 0!==o&&o,i=t.url_from,l=void 0===i?"":i,s=t.url_notfrom;return{referrer:r,regex:a,url_from:l,url_notfrom:void 0===s?"":s}}},{key:"getHeaderState",value:function(e){var t=e||{},n=t.name,r=void 0===n?"":n,o=t.value,a=void 0===o?"":o,i=t.regex,l=void 0!==i&&i,s=t.url_from,u=void 0===s?"":s,c=t.url_notfrom;return{name:r,value:a,regex:l,url_from:u,url_notfrom:void 0===c?"":c}}},{key:"getCustomState",value:function(e){var t=e||{},n=t.filter,r=void 0===n?"":n,o=t.url_from,a=void 0===o?"":o,i=t.url_notfrom;return{filter:r,url_from:a,url_notfrom:void 0===i?"":i}}},{key:"getCode",value:function(){return"error"===this.state.action_type?cr.a.createElement("select",{name:"action_code",value:this.state.action_code,onChange:this.onChange},ku.map(function(e){return cr.a.createElement("option",{key:e.value,value:e.value},e.name)})):"url"===this.state.action_type||"random"===this.state.action_type?cr.a.createElement("select",{name:"action_code",value:this.state.action_code,onChange:this.onChange},_u.map(function(e){return cr.a.createElement("option",{key:e.value,value:e.value},e.name)})):null}},{key:"getMatchExtra",value:function(){switch(this.state.match_type){case"agent":return cr.a.createElement(As,{agent:this.state.agent.agent,regex:this.state.agent.regex,onChange:this.onSetData,onCustomAgent:this.onCustomAgent});case"referrer":return cr.a.createElement(Us,{referrer:this.state.referrer.referrer,regex:this.state.referrer.regex,onChange:this.onSetData});case"cookie":return cr.a.createElement($s,{name:this.state.cookie.name,value:this.state.cookie.value,regex:this.state.cookie.regex,onChange:this.onSetData});case"header":return cr.a.createElement(Hs,{name:this.state.header.name,value:this.state.header.value,regex:this.state.header.regex,onChange:this.onSetData});case"custom":return cr.a.createElement(Gs,{filter:this.state.custom.filter,onChange:this.onSetData})}return null}},{key:"getTarget",value:function(){var e=this.state,t=e.match_type,n=e.action_type,r=e.agent,o=e.referrer,a=e.login,i=e.cookie,l=e.target,s=e.header,u=e.custom;if(gu(n)){if("agent"===t)return cr.a.createElement(tu,{url_from:r.url_from,url_notfrom:r.url_notfrom,target:"agent",onChange:this.onSetData});if("referrer"===t)return cr.a.createElement(tu,{url_from:o.url_from,url_notfrom:o.url_notfrom,target:"referrer",onChange:this.onSetData});if("login"===t)return cr.a.createElement(Ys,{logged_in:a.logged_in,logged_out:a.logged_out,onChange:this.onSetData});if("url"===t)return cr.a.createElement(Xs,{target:l,onChange:this.onSetData});if("cookie"===t)return cr.a.createElement(tu,{url_from:i.url_from,url_notfrom:i.url_notfrom,target:"cookie",onChange:this.onSetData});if("header"===t)return cr.a.createElement(tu,{url_from:s.url_from,url_notfrom:s.url_notfrom,target:"header",onChange:this.onSetData});if("custom"===t)return cr.a.createElement(tu,{url_from:u.url_from,url_notfrom:u.url_notfrom,target:"custom",onChange:this.onSetData})}return null}},{key:"getTitle",value:function(){var e=this.state.title;return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Title")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"title",value:e,onChange:this.onChange,placeholder:Object(hr.translate)("Optional description")})))}},{key:"getMatch",value:function(){var e=this.state.match_type;return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Match")),cr.a.createElement("td",null,cr.a.createElement("select",{name:"match_type",value:e,onChange:this.onChange},wu.map(function(e){return cr.a.createElement("option",{value:e.value,key:e.value},e.name)}))))}},{key:"getTargetCode",value:function(){var e=this.state,t=e.action_type,n=e.match_type,r=this.getCode(),o=function(e){return!("login"===n&&!gu(e.value))};return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("When matched")),cr.a.createElement("td",null,cr.a.createElement("select",{name:"action_type",value:t,onChange:this.onChange},Ou.filter(o).map(function(e){return cr.a.createElement("option",{value:e.value,key:e.value},e.name)})),r&&cr.a.createElement(cr.a.Fragment,null,cr.a.createElement("strong",{className:"small-flex"},Object(hr.translate)("with HTTP code"))," ",cr.a.createElement("span",null,r))))}},{key:"getGroup",value:function(){var e=this.props.group.rows,t=this.state.group_id,n=parseInt(this.state.position,10),r=this.state.advanced;return cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Group")),cr.a.createElement("td",null,cr.a.createElement(pi,{name:"group",value:t,items:nu(e),onChange:this.onGroup}),r&&cr.a.createElement("span",{className:"edit-redirection-position"},cr.a.createElement("strong",null,Object(hr.translate)("Position")),cr.a.createElement("input",{type:"number",value:n,name:"position",min:"0",size:"3",onChange:this.onChange}))))}},{key:"canSave",value:function(){var e=this.state,t=e.url,n=e.match_type,r=e.target,o=e.action_type,a=e.referrer,i=e.login,l=e.agent,s=e.header,u=(e.custom,e.cookie);if(""===Redirectioni10n.autoGenerate&&""===t)return!1;if(gu(o)){if("url"===n&&""===r)return!1;if("referrer"===n&&""===a.url_from&&""===a.url_notfrom)return!1;if("login"===n&&""===i.logged_in&&""===i.logged_out)return!1;if("agent"===n&&""===l.url_from&&""===l.url_notfrom)return!1;if("cookie"===n&&""===u.url_from&&""===u.url_notfrom)return!1;if("header"===n&&""===s.url_from&&""===s.url_notfrom)return!1}return!0}},{key:"render",value:function(){var e=this.state,t=e.url,n=e.regex,r=e.advanced,o=this.props,a=o.saveButton,i=void 0===a?Object(hr.translate)("Save"):a,l=o.onCancel,s=o.autoFocus,u=void 0!==s&&s,c=o.addTop,p=o.onClose;return cr.a.createElement("form",{onSubmit:this.onSave},cr.a.createElement("table",{className:"edit edit-redirection"},cr.a.createElement("tbody",null,cr.a.createElement("tr",null,cr.a.createElement("th",null,Object(hr.translate)("Source URL")),cr.a.createElement("td",null,cr.a.createElement("input",{type:"text",name:"url",value:t,onChange:this.onChange,autoFocus:u}),cr.a.createElement("label",{className:"edit-redirection-regex"},Object(hr.translate)("Regex")," ",cr.a.createElement("sup",null,cr.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",cr.a.createElement("input",{type:"checkbox",name:"regex",checked:n,onChange:this.onChange})))),r&&this.getTitle(),r&&this.getMatch(),r&&this.getMatchExtra(),r&&this.getTargetCode(),this.getTarget(),this.getGroup(),this.props.children&&this.props.children,cr.a.createElement("tr",null,cr.a.createElement("th",null),cr.a.createElement("td",null,cr.a.createElement("div",{className:"table-actions"},cr.a.createElement("input",{className:"button-primary",type:"submit",name:"save",value:i,disabled:!this.canSave()}),"  ",l&&cr.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(hr.translate)("Cancel"),onClick:l}),c&&!l&&cr.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(hr.translate)("Close"),onClick:p})," ",this.canShowAdvanced()&&!1!==this.props.advanced&&cr.a.createElement("a",{href:"#",onClick:this.onAdvanced,className:"advanced",title:Object(hr.translate)("Show advanced options")},"⚙")))))))}}]),t}(cr.a.Component),Cu=function(){var e=this;this.onSetData=function(t,n,r){void 0!==r?e.setState(zt({},t,vu({},e.state[t],zt({},n,r)))):e.setState(zt({},t,n))},this.onCustomAgent=function(t){var n=e.state.agent;n.agent=t,n.regex=!0,e.setState({agent:n})},this.onSave=function(t){t.preventDefault();var n=e.state,r=n.url,o=n.title,a=n.regex,i=n.match_type,l=n.action_type,s=n.group_id,u=n.action_code,c=n.position,p=e.props.group.rows,f={id:parseInt(e.props.item.id,10),url:r,title:o,regex:a,match_type:i,action_type:l,position:c,group_id:s>0?s:p[0].id,action_code:e.getCode()?parseInt(u,10):0,action_data:bu(e.state)};f.id?e.props.onSave(f.id,f):e.props.onCreate(f),e.props.onCancel?e.props.onCancel(t):e.reset(),e.props.childSave&&e.props.childSave()},this.onAdvanced=function(t){t.preventDefault(),e.setState({advanced:!e.state.advanced})},this.onGroup=function(t){e.setState({group_id:parseInt(t.target.value,10)})},this.onChange=function(t){var n=t.target,r="checkbox"===n.type?n.checked:n.value;if(e.setState(zt({},n.name,r)),"action_type"===n.name&&"url"===n.value&&e.setState({action_code:301}),"action_type"===n.name&&"error"===n.value&&e.setState({action_code:404}),"match_type"===n.name){var o=vu({},e.resetActionData());"login"===n.value?e.setState(vu({},o,{action_type:"url"})):e.setState(o)}}},Su=Ur(Wt,$t)(xu),j
1
+ /*! Redirection v3.3 */!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=56)}([function(e,t,n){"use strict";e.exports=n(54)},function(e,t,n){var r=n(45),o=new r;e.exports={numberFormat:o.numberFormat.bind(o),translate:o.translate.bind(o),configure:o.configure.bind(o),setLocale:o.setLocale.bind(o),getLocale:o.getLocale.bind(o),getLocaleSlug:o.getLocaleSlug.bind(o),addTranslations:o.addTranslations.bind(o),reRenderTranslations:o.reRenderTranslations.bind(o),registerComponentUpdateHook:o.registerComponentUpdateHook.bind(o),registerTranslateHook:o.registerTranslateHook.bind(o),state:o.state,stateObserver:o.stateObserver,on:o.stateObserver.on.bind(o.stateObserver),off:o.stateObserver.removeListener.bind(o.stateObserver),emit:o.stateObserver.emit.bind(o.stateObserver),$this:o,I18N:r}},function(e,t,n){e.exports=n(36)()},function(e,t,n){var r;
2
+ /*!
3
+ Copyright (c) 2017 Jed Watson.
4
  Licensed under the MIT License (MIT), see
5
  http://jedwatson.github.io/classnames
6
  */
7
+ /*!
8
+ Copyright (c) 2017 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+ !function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var a=typeof r;if("string"===a||"number"===a)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"===a)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}void 0!==e&&e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t,n){"use strict";n.r(t),n.d(t,"createStore",function(){return s}),n.d(t,"combineReducers",function(){return c}),n.d(t,"bindActionCreators",function(){return f}),n.d(t,"applyMiddleware",function(){return h}),n.d(t,"compose",function(){return d}),n.d(t,"__DO_NOT_USE__ActionTypes",function(){return o});var r=n(11),o={INIT:"@@redux/INIT"+Math.random().toString(36).substring(7).split("").join("."),REPLACE:"@@redux/REPLACE"+Math.random().toString(36).substring(7).split("").join(".")},a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};function l(e){if("object"!==(void 0===e?"undefined":a(e))||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function s(e,t,n){var i;if("function"==typeof t&&void 0===n&&(n=t,t=void 0),void 0!==n){if("function"!=typeof n)throw new Error("Expected the enhancer to be a function.");return n(s)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var u=e,c=t,p=[],f=p,d=!1;function h(){f===p&&(f=p.slice())}function m(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return c}function g(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");var t=!0;return h(),f.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");t=!1,h();var n=f.indexOf(e);f.splice(n,1)}}}function b(e){if(!l(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,c=u(c,e)}finally{d=!1}for(var t=p=f,n=0;n<t.length;n++){(0,t[n])()}return e}return b({type:o.INIT}),(i={dispatch:b,subscribe:g,getState:m,replaceReducer:function(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");u=e,b({type:o.REPLACE})}})[r.a]=function(){var e,t=g;return(e={subscribe:function(e){if("object"!==(void 0===e?"undefined":a(e))||null===e)throw new TypeError("Expected the observer to be an object.");function n(){e.next&&e.next(m())}return n(),{unsubscribe:t(n)}}})[r.a]=function(){return this},e},i}function u(e,t){var n=t&&t.type;return"Given "+(n&&'action "'+String(n)+'"'||"an action")+', reducer "'+e+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.'}function c(e){for(var t=Object.keys(e),n={},r=0;r<t.length;r++){var a=t[r];0,"function"==typeof e[a]&&(n[a]=e[a])}var i=Object.keys(n);var l=void 0;try{!function(e){Object.keys(e).forEach(function(t){var n=e[t];if(void 0===n(void 0,{type:o.INIT}))throw new Error('Reducer "'+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.");if(void 0===n(void 0,{type:"@@redux/PROBE_UNKNOWN_ACTION_"+Math.random().toString(36).substring(7).split("").join(".")}))throw new Error('Reducer "'+t+"\" returned undefined when probed with a random type. Don't try to handle "+o.INIT+' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.')})}(n)}catch(e){l=e}return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];if(l)throw l;for(var r=!1,o={},a=0;a<i.length;a++){var s=i[a],c=n[s],p=e[s],f=c(p,t);if(void 0===f){var d=u(s,t);throw new Error(d)}o[s]=f,r=r||f!==p}return r?o:e}}function p(e,t){return function(){return t(e.apply(this,arguments))}}function f(e,t){if("function"==typeof e)return p(e,t);if("object"!==(void 0===e?"undefined":a(e))||null===e)throw new Error("bindActionCreators expected an object or a function, instead received "+(null===e?"null":void 0===e?"undefined":a(e))+'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?');for(var n=Object.keys(e),r={},o=0;o<n.length;o++){var i=n[o],l=e[i];"function"==typeof l&&(r[i]=p(l,t))}return r}function d(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce(function(e,t){return function(){return e(t.apply(void 0,arguments))}})}function h(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){return function(){for(var n=arguments.length,r=Array(n),o=0;o<n;o++)r[o]=arguments[o];var a=e.apply(void 0,r),l=function(){throw new Error("Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.")},s={getState:a.getState,dispatch:function(){return l.apply(void 0,arguments)}},u=t.map(function(e){return e(s)});return l=d.apply(void 0,u)(a.dispatch),i({},a,{dispatch:l})}}}},function(e,t,n){"use strict";t.decode=t.parse=n(33),t.encode=t.stringify=n(32)},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";var r=function(e){};e.exports=function(e,t,n,o,a,i,l,s){if(r(t),!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,o,a,i,l,s],p=0;(u=new Error(t.replace(/%s/g,function(){return c[p++]}))).name="Invariant Violation"}throw u.framesToPop=1,u}}},function(e,t,n){"use strict";var r=n(26),o=n(24);function a(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}t.parse=v,t.resolve=function(e,t){return v(e,!1,!0).resolve(t)},t.resolveObject=function(e,t){return e?v(e,!1,!0).resolveObject(t):t},t.format=function(e){o.isString(e)&&(e=v(e));return e instanceof a?e.format():a.prototype.format.call(e)},t.Url=a;var i=/^([a-z0-9.+-]+:)/i,l=/:[0-9]*$/,s=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,u=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),c=["'"].concat(u),p=["%","/","?",";","#"].concat(c),f=["/","?","#"],d=/^[+a-z0-9A-Z_-]{0,63}$/,h=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,m={javascript:!0,"javascript:":!0},g={javascript:!0,"javascript:":!0},b={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},y=n(5);function v(e,t,n){if(e&&o.isObject(e)&&e instanceof a)return e;var r=new a;return r.parse(e,t,n),r}a.prototype.parse=function(e,t,n){if(!o.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var a=e.indexOf("?"),l=-1!==a&&a<e.indexOf("#")?"?":"#",u=e.split(l);u[0]=u[0].replace(/\\/g,"/");var v=e=u.join(l);if(v=v.trim(),!n&&1===e.split("#").length){var E=s.exec(v);if(E)return this.path=v,this.href=v,this.pathname=E[1],E[2]?(this.search=E[2],this.query=t?y.parse(this.search.substr(1)):this.search.substr(1)):t&&(this.search="",this.query={}),this}var w=i.exec(v);if(w){var _=(w=w[0]).toLowerCase();this.protocol=_,v=v.substr(w.length)}if(n||w||v.match(/^\/\/[^@\/]+@[^@\/]+/)){var O="//"===v.substr(0,2);!O||w&&g[w]||(v=v.substr(2),this.slashes=!0)}if(!g[w]&&(O||w&&!b[w])){for(var x,k,S=-1,C=0;C<f.length;C++){-1!==(j=v.indexOf(f[C]))&&(-1===S||j<S)&&(S=j)}-1!==(k=-1===S?v.lastIndexOf("@"):v.lastIndexOf("@",S))&&(x=v.slice(0,k),v=v.slice(k+1),this.auth=decodeURIComponent(x)),S=-1;for(C=0;C<p.length;C++){var j;-1!==(j=v.indexOf(p[C]))&&(-1===S||j<S)&&(S=j)}-1===S&&(S=v.length),this.host=v.slice(0,S),v=v.slice(S),this.parseHost(),this.hostname=this.hostname||"";var P="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!P)for(var T=this.hostname.split(/\./),N=(C=0,T.length);C<N;C++){var R=T[C];if(R&&!R.match(d)){for(var D="",A=0,I=R.length;A<I;A++)R.charCodeAt(A)>127?D+="x":D+=R[A];if(!D.match(d)){var L=T.slice(0,C),U=T.slice(C+1),F=R.match(h);F&&(L.push(F[1]),U.unshift(F[2])),U.length&&(v="/"+U.join(".")+v),this.hostname=L.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),P||(this.hostname=r.toASCII(this.hostname));var M=this.port?":"+this.port:"",B=this.hostname||"";this.host=B+M,this.href+=this.host,P&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==v[0]&&(v="/"+v))}if(!m[_])for(C=0,N=c.length;C<N;C++){var z=c[C];if(-1!==v.indexOf(z)){var G=encodeURIComponent(z);G===z&&(G=escape(z)),v=v.split(z).join(G)}}var W=v.indexOf("#");-1!==W&&(this.hash=v.substr(W),v=v.slice(0,W));var H=v.indexOf("?");if(-1!==H?(this.search=v.substr(H),this.query=v.substr(H+1),t&&(this.query=y.parse(this.query)),v=v.slice(0,H)):t&&(this.search="",this.query={}),v&&(this.pathname=v),b[_]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){M=this.pathname||"";var V=this.search||"";this.path=M+V}return this.href=this.format(),this},a.prototype.format=function(){var e=this.auth||"";e&&(e=(e=encodeURIComponent(e)).replace(/%3A/i,":"),e+="@");var t=this.protocol||"",n=this.pathname||"",r=this.hash||"",a=!1,i="";this.host?a=e+this.host:this.hostname&&(a=e+(-1===this.hostname.indexOf(":")?this.hostname:"["+this.hostname+"]"),this.port&&(a+=":"+this.port)),this.query&&o.isObject(this.query)&&Object.keys(this.query).length&&(i=y.stringify(this.query));var l=this.search||i&&"?"+i||"";return t&&":"!==t.substr(-1)&&(t+=":"),this.slashes||(!t||b[t])&&!1!==a?(a="//"+(a||""),n&&"/"!==n.charAt(0)&&(n="/"+n)):a||(a=""),r&&"#"!==r.charAt(0)&&(r="#"+r),l&&"?"!==l.charAt(0)&&(l="?"+l),t+a+(n=n.replace(/[?#]/g,function(e){return encodeURIComponent(e)}))+(l=l.replace("#","%23"))+r},a.prototype.resolve=function(e){return this.resolveObject(v(e,!1,!0)).format()},a.prototype.resolveObject=function(e){if(o.isString(e)){var t=new a;t.parse(e,!1,!0),e=t}for(var n=new a,r=Object.keys(this),i=0;i<r.length;i++){var l=r[i];n[l]=this[l]}if(n.hash=e.hash,""===e.href)return n.href=n.format(),n;if(e.slashes&&!e.protocol){for(var s=Object.keys(e),u=0;u<s.length;u++){var c=s[u];"protocol"!==c&&(n[c]=e[c])}return b[n.protocol]&&n.hostname&&!n.pathname&&(n.path=n.pathname="/"),n.href=n.format(),n}if(e.protocol&&e.protocol!==n.protocol){if(!b[e.protocol]){for(var p=Object.keys(e),f=0;f<p.length;f++){var d=p[f];n[d]=e[d]}return n.href=n.format(),n}if(n.protocol=e.protocol,e.host||g[e.protocol])n.pathname=e.pathname;else{for(var h=(e.pathname||"").split("/");h.length&&!(e.host=h.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),""!==h[0]&&h.unshift(""),h.length<2&&h.unshift(""),n.pathname=h.join("/")}if(n.search=e.search,n.query=e.query,n.host=e.host||"",n.auth=e.auth,n.hostname=e.hostname||e.host,n.port=e.port,n.pathname||n.search){var m=n.pathname||"",y=n.search||"";n.path=m+y}return n.slashes=n.slashes||e.slashes,n.href=n.format(),n}var v=n.pathname&&"/"===n.pathname.charAt(0),E=e.host||e.pathname&&"/"===e.pathname.charAt(0),w=E||v||n.host&&e.pathname,_=w,O=n.pathname&&n.pathname.split("/")||[],x=(h=e.pathname&&e.pathname.split("/")||[],n.protocol&&!b[n.protocol]);if(x&&(n.hostname="",n.port=null,n.host&&(""===O[0]?O[0]=n.host:O.unshift(n.host)),n.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(""===h[0]?h[0]=e.host:h.unshift(e.host)),e.host=null),w=w&&(""===h[0]||""===O[0])),E)n.host=e.host||""===e.host?e.host:n.host,n.hostname=e.hostname||""===e.hostname?e.hostname:n.hostname,n.search=e.search,n.query=e.query,O=h;else if(h.length)O||(O=[]),O.pop(),O=O.concat(h),n.search=e.search,n.query=e.query;else if(!o.isNullOrUndefined(e.search)){if(x)n.hostname=n.host=O.shift(),(P=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=P.shift(),n.host=n.hostname=P.shift());return n.search=e.search,n.query=e.query,o.isNull(n.pathname)&&o.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!O.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var k=O.slice(-1)[0],S=(n.host||e.host||O.length>1)&&("."===k||".."===k)||""===k,C=0,j=O.length;j>=0;j--)"."===(k=O[j])?O.splice(j,1):".."===k?(O.splice(j,1),C++):C&&(O.splice(j,1),C--);if(!w&&!_)for(;C--;C)O.unshift("..");!w||""===O[0]||O[0]&&"/"===O[0].charAt(0)||O.unshift(""),S&&"/"!==O.join("/").substr(-1)&&O.push("");var P,T=""===O[0]||O[0]&&"/"===O[0].charAt(0);x&&(n.hostname=n.host=T?"":O.length?O.shift():"",(P=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=P.shift(),n.host=n.hostname=P.shift()));return(w=w||n.host&&O.length)&&!T&&O.unshift(""),O.length?n.pathname=O.join("/"):(n.pathname=null,n.path=null),o.isNull(n.pathname)&&o.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},a.prototype.parseHost=function(){var e=this.host,t=l.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o,a,i,l){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[n,r,o,a,i,l],c=0;(s=new Error(t.replace(/%s/g,function(){return u[c++]}))).name="Invariant Violation"}throw s.framesToPop=1,s}}},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";(function(e,r){var o,a=n(18);o="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:r;var i=Object(a.a)(o);t.a=i}).call(this,n(10),n(34)(e))},function(e,t){function n(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function r(e){return"function"==typeof e}function o(e){return"object"==typeof e&&null!==e}function a(e){return void 0===e}e.exports=n,n.EventEmitter=n,n.prototype._events=void 0,n.prototype._maxListeners=void 0,n.defaultMaxListeners=10,n.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||isNaN(e))throw TypeError("n must be a positive number");return this._maxListeners=e,this},n.prototype.emit=function(e){var t,n,i,l,s,u;if(this._events||(this._events={}),"error"===e&&(!this._events.error||o(this._events.error)&&!this._events.error.length)){if((t=arguments[1])instanceof Error)throw t;var c=new Error('Uncaught, unspecified "error" event. ('+t+")");throw c.context=t,c}if(a(n=this._events[e]))return!1;if(r(n))switch(arguments.length){case 1:n.call(this);break;case 2:n.call(this,arguments[1]);break;case 3:n.call(this,arguments[1],arguments[2]);break;default:l=Array.prototype.slice.call(arguments,1),n.apply(this,l)}else if(o(n))for(l=Array.prototype.slice.call(arguments,1),i=(u=n.slice()).length,s=0;s<i;s++)u[s].apply(this,l);return!0},n.prototype.addListener=function(e,t){var i;if(!r(t))throw TypeError("listener must be a function");return this._events||(this._events={}),this._events.newListener&&this.emit("newListener",e,r(t.listener)?t.listener:t),this._events[e]?o(this._events[e])?this._events[e].push(t):this._events[e]=[this._events[e],t]:this._events[e]=t,o(this._events[e])&&!this._events[e].warned&&(i=a(this._maxListeners)?n.defaultMaxListeners:this._maxListeners)&&i>0&&this._events[e].length>i&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},n.prototype.on=n.prototype.addListener,n.prototype.once=function(e,t){if(!r(t))throw TypeError("listener must be a function");var n=!1;function o(){this.removeListener(e,o),n||(n=!0,t.apply(this,arguments))}return o.listener=t,this.on(e,o),this},n.prototype.removeListener=function(e,t){var n,a,i,l;if(!r(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(i=(n=this._events[e]).length,a=-1,n===t||r(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(o(n)){for(l=i;l-- >0;)if(n[l]===t||n[l].listener&&n[l].listener===t){a=l;break}if(a<0)return this;1===n.length?(n.length=0,delete this._events[e]):n.splice(a,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},n.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(r(n=this._events[e]))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},n.prototype.listeners=function(e){return this._events&&this._events[e]?r(this._events[e])?[this._events[e]]:this._events[e].slice():[]},n.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(r(t))return 1;if(t)return t.length}return 0},n.listenerCount=function(e,t){return e.listenerCount(t)}},function(e,t,n){"use strict";e.exports={}},function(e,t,n){"use strict";
13
+ /*
14
  object-assign
15
  (c) Sindre Sorhus
16
  @license MIT