Redirection - Version 3.1

Version Description

  • Add alternative REST API routes to help servers that block the API
  • Move DELETE API calls to POST, to help servers that block DELETE
  • Move API nonce to query param, to help servers that don't pass HTTP headers
  • Improve error messaging
  • Preload support page so it can be used when REST API isn't working
  • Fix bug editing Nginx redirects
  • Fix import from JSON not setting status
Download this release

Release Info

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

Code changes from version 3.0.1 to 3.1

api/api-404.php CHANGED
@@ -7,7 +7,7 @@ class Redirection_Api_404 extends Redirection_Api_Filter_Route {
7
  register_rest_route( $namespace, '/404', array(
8
  'args' => $this->get_filter_args( $filters, $filters ),
9
  $this->get_route( WP_REST_Server::READABLE, 'route_404' ),
10
- $this->get_route( WP_REST_Server::DELETABLE, 'route_delete_all' ),
11
  ) );
12
 
13
  $this->register_bulk( $namespace, '/bulk/404/(?P<action>delete)', $filters, $filters, 'route_bulk' );
7
  register_rest_route( $namespace, '/404', array(
8
  'args' => $this->get_filter_args( $filters, $filters ),
9
  $this->get_route( WP_REST_Server::READABLE, 'route_404' ),
10
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_delete_all' ),
11
  ) );
12
 
13
  $this->register_bulk( $namespace, '/bulk/404/(?P<action>delete)', $filters, $filters, 'route_bulk' );
api/api-group.php CHANGED
@@ -28,7 +28,7 @@ class Redirection_Api_Group extends Redirection_Api_Filter_Route {
28
  'description' => 'Module ID',
29
  'type' => 'integer',
30
  'minimum' => 0,
31
- 'maximum' => 2,
32
  'required' => true,
33
  ),
34
  'name' => array(
28
  'description' => 'Module ID',
29
  'type' => 'integer',
30
  'minimum' => 0,
31
+ 'maximum' => 3,
32
  'required' => true,
33
  ),
34
  'name' => array(
api/api-log.php CHANGED
@@ -8,7 +8,7 @@ class Redirection_Api_Log extends Redirection_Api_Filter_Route {
8
  register_rest_route( $namespace, '/log', array(
9
  'args' => $this->get_filter_args( $filters, $orders ),
10
  $this->get_route( WP_REST_Server::READABLE, 'route_log' ),
11
- $this->get_route( WP_REST_Server::DELETABLE, 'route_delete_all' ),
12
  ) );
13
 
14
  $this->register_bulk( $namespace, '/bulk/log/(?P<action>delete)', $filters, $filters, 'route_bulk' );
8
  register_rest_route( $namespace, '/log', array(
9
  'args' => $this->get_filter_args( $filters, $orders ),
10
  $this->get_route( WP_REST_Server::READABLE, 'route_log' ),
11
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_delete_all' ),
12
  ) );
13
 
14
  $this->register_bulk( $namespace, '/bulk/log/(?P<action>delete)', $filters, $filters, 'route_bulk' );
api/api-plugin.php CHANGED
@@ -8,7 +8,10 @@ class Redirection_Api_Plugin extends Redirection_Api_Route {
8
  register_rest_route( $namespace, '/plugin', array(
9
  $this->get_route( WP_REST_Server::READABLE, 'route_status' ),
10
  $this->get_route( WP_REST_Server::EDITABLE, 'route_fixit' ),
11
- $this->get_route( WP_REST_Server::DELETABLE, 'route_delete' ),
 
 
 
12
  ) );
13
  }
14
 
8
  register_rest_route( $namespace, '/plugin', array(
9
  $this->get_route( WP_REST_Server::READABLE, 'route_status' ),
10
  $this->get_route( WP_REST_Server::EDITABLE, 'route_fixit' ),
11
+ ) );
12
+
13
+ register_rest_route( $namespace, '/plugin/delete', array(
14
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_delete' ),
15
  ) );
16
  }
17
 
api/api-redirect.php CHANGED
@@ -52,18 +52,20 @@ class Redirection_Api_Redirect extends Redirection_Api_Filter_Route {
52
  public function route_bulk( WP_REST_Request $request ) {
53
  $action = $request['action'];
54
 
55
- foreach ( $request['items'] as $item ) {
56
- $redirect = Red_Item::get_by_id( intval( $item, 10 ) );
57
-
58
- if ( $redirect ) {
59
- if ( $action === 'delete' ) {
60
- $redirect->delete();
61
- } else if ( $action === 'disable' ) {
62
- $redirect->disable();
63
- } else if ( $action === 'enable' ) {
64
- $redirect->enable();
65
- } else if ( $action === 'reset' ) {
66
- $redirect->reset();
 
 
67
  }
68
  }
69
  }
52
  public function route_bulk( WP_REST_Request $request ) {
53
  $action = $request['action'];
54
 
55
+ if ( is_array( $request['items'] ) ) {
56
+ foreach ( $request['items'] as $item ) {
57
+ $redirect = Red_Item::get_by_id( intval( $item, 10 ) );
58
+
59
+ if ( $redirect ) {
60
+ if ( $action === 'delete' ) {
61
+ $redirect->delete();
62
+ } else if ( $action === 'disable' ) {
63
+ $redirect->disable();
64
+ } else if ( $action === 'enable' ) {
65
+ $redirect->enable();
66
+ } else if ( $action === 'reset' ) {
67
+ $redirect->reset();
68
+ }
69
  }
70
  }
71
  }
api/api-settings.php CHANGED
@@ -19,6 +19,10 @@ class Redirection_Api_Settings extends Redirection_Api_Route {
19
  }
20
 
21
  public function route_save_settings( WP_REST_Request $request ) {
 
 
 
 
22
  red_set_options( $request->get_params() );
23
 
24
  return $this->route_settings( $request );
19
  }
20
 
21
  public function route_save_settings( WP_REST_Request $request ) {
22
+ if ( ! function_exists( 'get_plugin_data' ) ) {
23
+ include_once ABSPATH.'/wp-admin/includes/plugin.php';
24
+ }
25
+
26
  red_set_options( $request->get_params() );
27
 
28
  return $this->route_settings( $request );
locale/json/redirection-de_DE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":[""],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":[""],"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.":["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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress hat eine unerwartete Nachricht zurückgegeben. Dies zeigt normalerweise an, dass ein Plugin oder ein Theme Daten ausgibt, wenn es nicht sein sollte. Versuche bitte, andere Plugins zu deaktivieren und versuchen es erneut."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Wenn das Problem nicht bekannt ist, dann versuche, andere Plugins zu deaktivieren - es ist einfach und du kannst sie schnell wieder aktivieren. Andere Plugins können manchmal Konflikte verursachen."],"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 inserted":[""],"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!"],"It didn't work when I tried again":["Es hat nicht geklappt, als ich es wieder versuchte."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[""],"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":[""],"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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}."],"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"],"Monitor changes to posts":["Änderungen an Beiträgen überwachen"],"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"],"Show only this IP":["Nur diese IP-Adresse anzeigen"],"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
+ {"":[],"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.":["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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress hat eine unerwartete Nachricht zurückgegeben. Dies zeigt normalerweise an, dass ein Plugin oder ein Theme Daten ausgibt, wenn es nicht sein sollte. Versuche bitte, andere Plugins zu deaktivieren und versuchen es erneut."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Wenn das Problem nicht bekannt ist, dann versuche, andere Plugins zu deaktivieren - es ist einfach und du kannst sie schnell wieder aktivieren. Andere Plugins können manchmal Konflikte verursachen."],"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 inserted":[""],"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!"],"It didn't work when I tried again":["Es hat nicht geklappt, als ich es wieder versuchte."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[""],"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":[""],"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"]}
locale/json/redirection-en_CA.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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"],"Monitor changes to pages":["Monitor changes to pages"],"Monitor trashed items (will create disabled redirects)":["Monitor trashed items (will create disabled redirects)"],"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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"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 inserted":["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 inserted"],"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!"],"It didn't work when I tried again":["It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}."],"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"],"Monitor changes to posts":["Monitor changes to posts"],"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"],"Show only this IP":["Show only this IP"],"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
+ {"":[],"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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"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 inserted":["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 inserted"],"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!"],"It didn't work when I tried again":["It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"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
- {"":[],"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"],"Monitor changes to pages":["Monitor changes to pages"],"Monitor trashed items (will create disabled redirects)":["Monitor binned items (will create disabled redirects)"],"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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"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 inserted":["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 inserted"],"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!"],"It didn't work when I tried again":["It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}."],"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"],"Monitor changes to posts":["Monitor changes to posts"],"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"],"Show only this IP":["Show only this IP"],"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
+ {"":[],"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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"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 inserted":["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 inserted"],"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!"],"It didn't work when I tried again":["It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"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
- {"":[],"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 para 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":["Monitorear URL"],"Monitor changes to pages":["Monitorea cambios en las páginas"],"Monitor trashed items (will create disabled redirects)":["Monitorea elementos de la papelera (creará redirecciones desactivadas) "],"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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress ha devuelto un mensaje inesperado. Esto normalmente indica que un plugin o tema está extrayendo datos cuando no debería. Por favor, trata de desactivar el resto de plugins e inténtalo de nuevo."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Si no se sabe cuál es el problema entonces trata de desactivar el resto de plugins - es fácil de hacer, y puedes reactivarlos rápidamente. Otros plugins pueden, a veces, provocar conflictos."],"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 inserted":["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! "],"It didn't work when I tried again":["No funcionó al intentarlo de nuevo"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."],"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 %(página)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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}. "],"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"],"Monitor changes to posts":["Monitorizar cambios en entradas"],"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"],"Show only this IP":["Mostrar sólo esta IP"],"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
+ {"":[],"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 para 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":["Monitorear 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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress ha devuelto un mensaje inesperado. Esto normalmente indica que un plugin o tema está extrayendo datos cuando no debería. Por favor, trata de desactivar el resto de plugins e inténtalo de nuevo."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Si no se sabe cuál es el problema entonces trata de desactivar el resto de plugins - es fácil de hacer, y puedes reactivarlos rápidamente. Otros plugins pueden, a veces, provocar conflictos."],"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 inserted":["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! "],"It didn't work when I tried again":["No funcionó al intentarlo de nuevo"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."],"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 %(página)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
- {"":[],"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"],"Monitor changes to pages":["Surveiller les modifications apportées aux pages"],"Monitor trashed items (will create disabled redirects)":["Surveiller les éléments supprimés (crée des redirections désactivées)"],"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é ?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress renvoie un message imprévu. Cela indique habituellement qu’une extension ou un thème sort des données qu’il ne devrait pas sortir. Tentez de désactiver d’autres extensions et réessayez."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Si le problème n’est pas connu alors tentez de désactiver d’autres extensions – c’est simple à faire et vous pouvez les réactiver rapidement. Les autres extensions peuvent parfois entrer en conflit."],"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 inserted":["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 !"],"It didn't work when I tried again":["Cela n’a pas fonctionné quand j’ai réessayé."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."],"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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}."],"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 "],"Monitor changes to posts":["Surveiller les modifications apportées aux publications&nbsp;"],"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"],"Show only this IP":["Afficher uniquement cette IP"],"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
+ {"":[],"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é ?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress renvoie un message imprévu. Cela indique habituellement qu’une extension ou un thème sort des données qu’il ne devrait pas sortir. Tentez de désactiver d’autres extensions et réessayez."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Si le problème n’est pas connu alors tentez de désactiver d’autres extensions – c’est simple à faire et vous pouvez les réactiver rapidement. Les autres extensions peuvent parfois entrer en conflit."],"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 inserted":["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 !"],"It didn't work when I tried again":["Cela n’a pas fonctionné quand j’ai réessayé."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."],"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"]}
locale/json/redirection-it_IT.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":[""],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":[""],"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?":[""],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"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 inserted":[""],"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!"],"It didn't work when I tried again":["Non ha funzionato quando ho riprovato"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Controlla se il tuo problema è descritto nella nostra fantastica lista {{link}}Redirection issues{{/link}}. Aggiungi ulteriori dettagli se trovi lo stesso problema."],"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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}.":[""],"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"],"Monitor changes to posts":["Controlla cambiamenti ai post"],"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"],"Show only this IP":["Mostra solo questo IP"],"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
+ {"":[],"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?":[""],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"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 inserted":[""],"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!"],"It didn't work when I tried again":["Non ha funzionato quando ho riprovato"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Controlla se il tuo problema è descritto nella nostra fantastica lista {{link}}Redirection issues{{/link}}. Aggiungi ulteriori dettagli se trovi lo stesso problema."],"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"]}
locale/json/redirection-ja.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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":["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 モニター"],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":["ゴミ箱内のアイテムモニター (無効なリダイレクトを作成します)"],"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 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"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 inserted":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"It didn't work when I tried again":["もう一度試しましたが動きませんでした"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["もしその問題と同じ問題が {{link}}Redirection issues{{/link}} 内で説明されているものの、まだ未解決であったなら、追加の詳細情報を提供してください。"],"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":["プラグインを消去しない"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}} でも開発を助けていただけると嬉しいです。"],"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 トークン"],"Monitor changes to posts":["投稿の変更をモニター"],"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":["転送ルールを作成する際に無効なグループが指定されました"],"Show only this IP":["この IP のみ表示"],"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
+ {"":[],"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":["キャッシュしない"],"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 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"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 inserted":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"It didn't work when I tried again":["もう一度試しましたが動きませんでした"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["もしその問題と同じ問題が {{link}}Redirection issues{{/link}} 内で説明されているものの、まだ未解決であったなら、追加の詳細情報を提供してください。"],"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-sv_SE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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"],"Monitor changes to pages":["Övervaka ändringar på sidor"],"Monitor trashed items (will create disabled redirects)":["Övervaka raderade objekt (kommer att skapa inaktiverade omdirigeringar)"],"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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress svarade med ett oväntat meddelande. Detta indikerar vanligtvis att ett tillägg eller tema skickat ut data när det inte borde gör det. Försök att inaktivera andra tillägg och försök igen."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Om problemet är okänt försök avaktivera andra tillägg - det är lätt att göra, och du kan snabbt aktivera dem igen. Andra tillägg kan ibland orsaka konflikter."],"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 inserted":["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"],"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."],"It didn't work when I tried again":["Det fungerade inte när jag försökte igen"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Se om ditt problem finns beskrivet på listan över kända {{link}}problem med Redirection{{/link}}. Lägg gärna till fler detaljer om du hittar samma problem."],"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"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"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}}."],"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"],"Monitor changes to posts":["Övervaka ändringar av inlägg"],"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"],"Show only this IP":["Visa enbart detta IP-nummer"],"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
+ {"":[],"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":["Enhet"],"Operating System":["Operativsystem"],"Browser":["Webbläsare"],"Engine":["Sökmotor"],"Useragent":[""],"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":[""],"IP Logging":["Läggning av IP-nummer"],"(select IP logging level)":[""],"Geo Info":[""],"Agent Info":[""],"Filter by IP":["Filtrera på IP-nummer"],"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.":["Det finns inga kända detaljer för denna adress."],"Geo IP":[""],"City":["Stad"],"Area":["Region"],"Timezone":["Tidszon"],"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.":["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?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress svarade med ett oväntat meddelande. Detta indikerar vanligtvis att ett tillägg eller tema skickat ut data när det inte borde gör det. Försök att inaktivera andra tillägg och försök igen."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Om problemet är okänt försök avaktivera andra tillägg - det är lätt att göra, och du kan snabbt aktivera dem igen. Andra tillägg kan ibland orsaka konflikter."],"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 inserted":["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"],"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."],"It didn't work when I tried again":["Det fungerade inte när jag försökte igen"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Se om ditt problem finns beskrivet på listan över kända {{link}}problem med Redirection{{/link}}. Lägg gärna till fler detaljer om du hittar samma problem."],"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/redirection-de_DE.po CHANGED
@@ -11,120 +11,124 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
  msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
  msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
  msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
  msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
  msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
  msgstr ""
130
 
@@ -144,51 +148,51 @@ msgstr ""
144
  msgid "https://redirection.me/"
145
  msgstr ""
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  msgstr ""
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr ""
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  msgstr ""
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr ""
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr ""
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr ""
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr ""
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr ""
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr ""
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr ""
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr ""
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr ""
194
 
@@ -208,7 +212,7 @@ msgstr ""
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr ""
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr ""
214
 
@@ -216,67 +220,67 @@ msgstr ""
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  msgstr ""
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  msgstr ""
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr ""
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr ""
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr ""
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr ""
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr ""
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr ""
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr ""
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr ""
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr ""
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr ""
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr ""
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr ""
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr ""
282
 
@@ -284,7 +288,7 @@ msgstr ""
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr ""
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  msgstr ""
290
 
@@ -348,23 +352,23 @@ msgstr ""
348
  msgid "All tables present"
349
  msgstr ""
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr ""
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr ""
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr ""
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "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."
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  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?"
370
 
@@ -392,15 +396,15 @@ msgstr ""
392
  msgid "Loading, please wait..."
393
  msgstr "Lädt, bitte warte..."
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  msgstr ""
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr ""
406
 
@@ -420,241 +424,241 @@ msgstr "E-Mail"
420
  msgid "Important details"
421
  msgstr "Wichtige Details"
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "Hilfe benötigt?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  msgstr ""
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr ""
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr "410 - Entfernt"
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Position"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  msgstr ""
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Apache Modul"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr ""
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Importiere in Gruppe"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Datei hinzufügen"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "Datei ausgewählt"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Importiere"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Importieren beendet"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr "Umleitungen importiert:"
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "OK"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Schließen"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Exportieren"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr ""
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Alles"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "WordPress Weiterleitungen"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Apache Weiterleitungen"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Nginx Weiterleitungen"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr "Apache .htaccess"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr ""
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr ""
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr "Anzeigen"
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr "Import/Export"
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr "Protokolldateien"
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "404 Fehler"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr ""
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr ""
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Unterstützen 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Umleitung gespeichert"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Log gelöscht"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Einstellungen gespeichert"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Gruppe gespeichert"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
595
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr ""
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "Alle Gruppen"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301- Dauerhaft verschoben"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 - Gefunden"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 - Zeitweise Umleitung"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 - Dauerhafte Umleitung"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 - Unautorisiert"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 - Nicht gefunden"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Titel"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr ""
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "mit HTTP Code"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Zeige erweiterte Optionen"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr "Passendes Ziel"
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr "Unpassendes Ziel"
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Speichern..."
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "Hinweis anzeigen"
660
 
@@ -674,7 +678,7 @@ msgstr ""
674
  msgid "Unable to add new redirect"
675
  msgstr ""
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Etwas ist schiefgelaufen 🙁"
680
 
@@ -694,129 +698,129 @@ msgstr ""
694
  msgid "Log entries (%d max)"
695
  msgstr "Log Einträge (%d max)"
696
 
697
- #: redirection-strings.php:276
698
  msgid "Search by IP"
699
  msgstr "Suche nach IP"
700
 
701
- #: redirection-strings.php:272
702
  msgid "Select bulk action"
703
  msgstr ""
704
 
705
- #: redirection-strings.php:271
706
  msgid "Bulk Actions"
707
  msgstr ""
708
 
709
- #: redirection-strings.php:270
710
  msgid "Apply"
711
  msgstr "Anwenden"
712
 
713
- #: redirection-strings.php:269
714
  msgid "First page"
715
  msgstr "Erste Seite"
716
 
717
- #: redirection-strings.php:268
718
  msgid "Prev page"
719
  msgstr "Vorige Seite"
720
 
721
- #: redirection-strings.php:267
722
  msgid "Current Page"
723
  msgstr "Aktuelle Seite"
724
 
725
- #: redirection-strings.php:266
726
  msgid "of %(page)s"
727
  msgstr ""
728
 
729
- #: redirection-strings.php:265
730
  msgid "Next page"
731
  msgstr "Nächste Seite"
732
 
733
- #: redirection-strings.php:264
734
  msgid "Last page"
735
  msgstr "Letzte Seite"
736
 
737
- #: redirection-strings.php:263
738
  msgid "%s item"
739
  msgid_plural "%s items"
740
  msgstr[0] "%s Eintrag"
741
  msgstr[1] "%s Einträge"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "Alle auswählen"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "Keine Ergebnisse"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "Logs löschen - bist du sicher?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  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."
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "Ja! Lösche die Logs"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "Nein! Lösche die Logs nicht"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr ""
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "Newsletter"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr ""
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  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."
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "Deine E-Mail Adresse:"
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "Dauerhaft"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "Plugin löschen - bist du sicher?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "Ja! Lösche das Plugin"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "Nein! Lösche das Plugin nicht"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  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}}."
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber:
836
  msgid "Redirection Support"
837
  msgstr "Unleitung Support"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "Support"
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404s"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "Log"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "Umleitung löschen"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "Hochladen"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "Importieren"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "Aktualisieren"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "Selbsterstellte URL"
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "RSS Token"
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "404-Logs"
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(Dauer, für die die Logs behalten werden)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "Umleitungs-Logs"
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "Plugin Support"
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "Optionen"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "zwei Monate"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "ein Monat"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "eine Woche"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "einen Tag"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "Keine Logs"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "Alle löschen"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "Gruppe hinzufügen"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "Suchen"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "Gruppen"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "Speichern"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "Gruppe"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "Passend"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "Eine neue Weiterleitung hinzufügen"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "Abbrechen"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "Download"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "Einstellungen"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "Mache nichts"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "Fehler (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "Durchreichen"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "Umleitung zu zufälligen Beitrag"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "Umleitung zur URL"
995
 
@@ -997,88 +1001,88 @@ msgstr "Umleitung zur URL"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "URL-Quelle"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "Zeitpunkt"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "Umleitung hinzufügen"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "Alle Module"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "Weiterleitungen anschauen"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "Module"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "Umleitungen"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "Name"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "Filter"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "Treffer zurücksetzen"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "Aktivieren"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "Deaktivieren"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "Löschen"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "Bearbeiten"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "Letzter Zugriff"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "Treffer"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "Typ"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "Typ"
1086
  msgid "Modified Posts"
1087
  msgstr "Geänderte Beiträge"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "Umleitungen"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "User Agent"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL und User-Agent"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "Ziel-URL"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "Nur URL"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "Regex"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "Vermittler"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL und Vermittler"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "Ausgeloggt"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "Eingeloggt"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  msgstr "URL- und Loginstatus"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr ""
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
  msgstr ""
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
  msgstr ""
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
  msgstr ""
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
  msgstr ""
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
  msgstr ""
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
  msgstr ""
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
  msgstr ""
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
  msgstr ""
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
  msgstr ""
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
  msgstr ""
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
  msgstr ""
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
  msgstr ""
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
  msgstr ""
134
 
148
  msgid "https://redirection.me/"
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr ""
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr ""
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  msgstr ""
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr ""
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr ""
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr ""
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr ""
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr ""
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr ""
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr ""
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr ""
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr ""
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr ""
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr ""
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr ""
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr ""
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr ""
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr ""
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  msgstr ""
294
 
352
  msgid "All tables present"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr ""
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr ""
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "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."
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  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?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "Lädt, bitte warte..."
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr ""
410
 
424
  msgid "Important details"
425
  msgstr "Wichtige Details"
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "Hilfe benötigt?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  msgstr ""
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr ""
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr "410 - Entfernt"
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Position"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  msgstr ""
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Apache Modul"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr ""
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Importiere in Gruppe"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Datei hinzufügen"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "Datei ausgewählt"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Importiere"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Importieren beendet"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr "Umleitungen importiert:"
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "OK"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Schließen"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Exportieren"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr ""
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Alles"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "WordPress Weiterleitungen"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Apache Weiterleitungen"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Nginx Weiterleitungen"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr "Apache .htaccess"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr ""
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr ""
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr "Anzeigen"
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr "Import/Export"
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr "Protokolldateien"
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "404 Fehler"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr ""
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr ""
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Unterstützen 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Umleitung gespeichert"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Log gelöscht"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Einstellungen gespeichert"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Gruppe gespeichert"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
599
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr ""
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "Alle Gruppen"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301- Dauerhaft verschoben"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 - Gefunden"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 - Zeitweise Umleitung"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 - Dauerhafte Umleitung"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 - Unautorisiert"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 - Nicht gefunden"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Titel"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr ""
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "mit HTTP Code"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Zeige erweiterte Optionen"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr "Passendes Ziel"
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr "Unpassendes Ziel"
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Speichern..."
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "Hinweis anzeigen"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr ""
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Etwas ist schiefgelaufen 🙁"
684
 
698
  msgid "Log entries (%d max)"
699
  msgstr "Log Einträge (%d max)"
700
 
701
+ #: redirection-strings.php:277
702
  msgid "Search by IP"
703
  msgstr "Suche nach IP"
704
 
705
+ #: redirection-strings.php:273
706
  msgid "Select bulk action"
707
  msgstr ""
708
 
709
+ #: redirection-strings.php:272
710
  msgid "Bulk Actions"
711
  msgstr ""
712
 
713
+ #: redirection-strings.php:271
714
  msgid "Apply"
715
  msgstr "Anwenden"
716
 
717
+ #: redirection-strings.php:270
718
  msgid "First page"
719
  msgstr "Erste Seite"
720
 
721
+ #: redirection-strings.php:269
722
  msgid "Prev page"
723
  msgstr "Vorige Seite"
724
 
725
+ #: redirection-strings.php:268
726
  msgid "Current Page"
727
  msgstr "Aktuelle Seite"
728
 
729
+ #: redirection-strings.php:267
730
  msgid "of %(page)s"
731
  msgstr ""
732
 
733
+ #: redirection-strings.php:266
734
  msgid "Next page"
735
  msgstr "Nächste Seite"
736
 
737
+ #: redirection-strings.php:265
738
  msgid "Last page"
739
  msgstr "Letzte Seite"
740
 
741
+ #: redirection-strings.php:264
742
  msgid "%s item"
743
  msgid_plural "%s items"
744
  msgstr[0] "%s Eintrag"
745
  msgstr[1] "%s Einträge"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "Alle auswählen"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "Keine Ergebnisse"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "Logs löschen - bist du sicher?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  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."
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "Ja! Lösche die Logs"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "Nein! Lösche die Logs nicht"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr ""
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "Newsletter"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr ""
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  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."
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "Deine E-Mail Adresse:"
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "Dauerhaft"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "Plugin löschen - bist du sicher?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "Ja! Lösche das Plugin"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "Nein! Lösche das Plugin nicht"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  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}}."
838
 
840
  msgid "Redirection Support"
841
  msgstr "Unleitung Support"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "Support"
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404s"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "Log"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "Umleitung löschen"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "Hochladen"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "Importieren"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "Aktualisieren"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "Selbsterstellte URL"
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "RSS Token"
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "404-Logs"
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(Dauer, für die die Logs behalten werden)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "Umleitungs-Logs"
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "Plugin Support"
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "Optionen"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "zwei Monate"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "ein Monat"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "eine Woche"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "einen Tag"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "Keine Logs"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "Alle löschen"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  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."
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "Gruppe hinzufügen"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "Suchen"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "Gruppen"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "Speichern"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "Gruppe"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "Passend"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "Eine neue Weiterleitung hinzufügen"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "Abbrechen"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "Download"
971
 
977
  msgid "Settings"
978
  msgstr "Einstellungen"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "Mache nichts"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "Fehler (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "Durchreichen"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "Umleitung zu zufälligen Beitrag"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "Umleitung zur URL"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "URL-Quelle"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "Zeitpunkt"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "Umleitung hinzufügen"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "Alle Module"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "Weiterleitungen anschauen"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "Module"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "Umleitungen"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "Name"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "Filter"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "Treffer zurücksetzen"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "Aktivieren"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "Deaktivieren"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "Löschen"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "Bearbeiten"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "Letzter Zugriff"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "Treffer"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "Typ"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "Geänderte Beiträge"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "Umleitungen"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "User Agent"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL und User-Agent"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "Ziel-URL"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "Nur URL"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "Regex"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "Vermittler"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL und Vermittler"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "Ausgeloggt"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "Eingeloggt"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  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: 2017-12-11 23:42: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,184 +11,188 @@ msgstr ""
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
- msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
- msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
- msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
- msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
- msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
- msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
- msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
- msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
- msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
- msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
- msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
- msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
- msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
- msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
- msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
- msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
- msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
- msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
- msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
- msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
- msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
- msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
- msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
- msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
- msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
- msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
- msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
- msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
- msgstr ""
130
 
131
  #: redirection-settings.php:7
132
  msgid "Trash"
133
- msgstr ""
134
 
135
  #: redirection-admin.php:307
136
  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"
137
- msgstr ""
138
 
139
  #: redirection-admin.php:203
140
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
141
- msgstr ""
142
 
143
  #. Plugin URI of the plugin/theme
144
  msgid "https://redirection.me/"
145
  msgstr "https://redirection.me/"
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  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."
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  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!"
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr "Never cache"
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr "An hour"
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr "Redirect Cache"
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr "Are you sure you want to import from %s?"
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr "Plugin Importers"
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr "The following redirect plugins were detected on your site and can be imported from."
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr "total = "
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr "Import from %s"
194
 
@@ -208,7 +212,7 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr "Default WordPress \"old slugs\""
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr "Create associated redirect (added to end of URL)"
214
 
@@ -216,67 +220,67 @@ msgstr "Create associated redirect (added to end of URL)"
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  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."
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr "⚡️ Magic fix ⚡️"
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr "Plugin Status"
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr "Custom"
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr "Mobile"
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr "Feed Readers"
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr "Libraries"
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr "URL Monitor Changes"
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr "Save changes to this group"
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr "For example \"/amp\""
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr "URL Monitor"
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr "Delete 404s"
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr "Delete all logs for this 404"
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr "Delete all from IP %s"
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr "Delete all matching \"%s\""
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
282
 
@@ -284,7 +288,7 @@ msgstr "Your server has rejected the request for being too big. You will need to
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
290
 
@@ -348,23 +352,23 @@ msgstr "The following tables are missing:"
348
  msgid "All tables present"
349
  msgstr "All tables present"
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr "Cached Redirection detected"
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr "Please clear your browser cache and reload this page."
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr "The data on this page has expired, please reload."
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
370
 
@@ -392,15 +396,15 @@ msgstr "This may be caused by another plugin - look at your browser's error cons
392
  msgid "Loading, please wait..."
393
  msgstr "Loading, please wait..."
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  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)."
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
406
 
@@ -420,241 +424,241 @@ msgstr "Email"
420
  msgid "Important details"
421
  msgstr "Important details"
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "Need help?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr "Pos"
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr "410 - Gone"
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Position"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  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 inserted"
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Apache Module"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Import to group"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Import a CSV, .htaccess, or JSON file."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Click 'Add File' or drag and drop here."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Add File"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "File selected"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Importing"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Finished importing"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr "Total redirects imported:"
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "Double-check the file is the correct format!"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "OK"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Close"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "All imports will be appended to the current database."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Export"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Everything"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "WordPress redirects"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Apache redirects"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Nginx redirects"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr "Apache .htaccess"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr "Nginx rewrite rules"
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr "Redirection JSON"
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr "View"
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr "Log files can be exported from the log pages."
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr "Import/Export"
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr "Logs"
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "404 errors"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr "I'd like to support some more."
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Support 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Redirection saved"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Log deleted"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Settings saved"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Group saved"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "Are you sure you want to delete this item?"
595
  msgstr[1] "Are you sure you want to delete these items?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr "pass"
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "All groups"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301 - Moved Permanently"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 - Found"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 - Temporary Redirect"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 - Permanent Redirect"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 - Unauthorized"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 - Not Found"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Title"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr "When matched"
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "with HTTP code"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Show advanced options"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr "Matched Target"
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr "Unmatched Target"
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Saving..."
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "View notice"
660
 
@@ -674,7 +678,7 @@ msgstr "Invalid redirect matcher"
674
  msgid "Unable to add new redirect"
675
  msgstr "Unable to add new redirect"
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Something went wrong 🙁"
680
 
@@ -694,129 +698,129 @@ msgstr "See if your problem is described on the list of outstanding {{link}}Redi
694
  msgid "Log entries (%d max)"
695
  msgstr "Log entries (%d max)"
696
 
697
- #: redirection-strings.php:276
698
  msgid "Search by IP"
699
  msgstr "Search by IP"
700
 
701
- #: redirection-strings.php:272
702
  msgid "Select bulk action"
703
  msgstr "Select bulk action"
704
 
705
- #: redirection-strings.php:271
706
  msgid "Bulk Actions"
707
  msgstr "Bulk Actions"
708
 
709
- #: redirection-strings.php:270
710
  msgid "Apply"
711
  msgstr "Apply"
712
 
713
- #: redirection-strings.php:269
714
  msgid "First page"
715
  msgstr "First page"
716
 
717
- #: redirection-strings.php:268
718
  msgid "Prev page"
719
  msgstr "Prev page"
720
 
721
- #: redirection-strings.php:267
722
  msgid "Current Page"
723
  msgstr "Current Page"
724
 
725
- #: redirection-strings.php:266
726
  msgid "of %(page)s"
727
  msgstr "of %(page)s"
728
 
729
- #: redirection-strings.php:265
730
  msgid "Next page"
731
  msgstr "Next page"
732
 
733
- #: redirection-strings.php:264
734
  msgid "Last page"
735
  msgstr "Last page"
736
 
737
- #: redirection-strings.php:263
738
  msgid "%s item"
739
  msgid_plural "%s items"
740
  msgstr[0] "%s item"
741
  msgstr[1] "%s items"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "Select All"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "Sorry, something went wrong loading the data - please try again"
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "No results"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "Delete the logs - are you sure?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  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."
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "Yes! Delete the logs"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "No! Don't delete the logs"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "Newsletter"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr "Want to keep up to date with changes to Redirection?"
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  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."
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "Your email address:"
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "You've supported this plugin - thank you!"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "You get useful software and I get to carry on making it better."
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "Forever"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "Delete the plugin - are you sure?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "Yes! Delete the plugin"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "No! Don't delete the plugin"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "Manage all your 301 redirects and monitor 404 errors."
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  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}}."
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection is free to use - life is wonderful and lovely! It has requir
836
  msgid "Redirection Support"
837
  msgstr "Redirection Support"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "Support"
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404s"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "Log"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "Delete Redirection"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "Upload"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "Import"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "Update"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "Auto-generate URL"
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "RSS Token"
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "404 Logs"
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(time to keep logs for)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "Redirect Logs"
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "I'm a nice person and I have helped support the author of this plugin."
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "Plugin Support"
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "Options"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "Two months"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "A month"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "A week"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "A day"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "No logs"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "Delete All"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "Add Group"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "Search"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "Groups"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "Save"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "Group"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "Match"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "Add new redirection"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "Cancel"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "Download"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "Settings"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "Do nothing"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "Error (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "Pass-through"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "Redirect to random post"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "Redirect to URL"
995
 
@@ -997,88 +1001,88 @@ msgstr "Redirect to URL"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "Invalid group when creating redirect"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "Source URL"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "Date"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "Add Redirect"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "All modules"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "View Redirects"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "Module"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "Redirects"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "Name"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "Filter"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "Reset hits"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "Enable"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "Disable"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "Delete"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "Edit"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "Last Access"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "Hits"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "Type"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "Type"
1086
  msgid "Modified Posts"
1087
  msgstr "Modified Posts"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "Redirections"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "User Agent"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL and user agent"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "Target URL"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "URL only"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "Regex"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "Referrer"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL and referrer"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "Logged Out"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "Logged In"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  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-01-22 20:02: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: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
+ msgstr "https://johngodley.com"
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
+ msgstr "Useragent Error"
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
+ msgstr "Unknown Useragent"
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
+ msgstr "Device"
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
+ msgstr "Operating System"
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
+ msgstr "Browser"
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
+ msgstr "Engine"
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
+ msgstr "Useragent"
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
+ msgstr "Agent"
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
+ msgstr "No IP logging"
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
+ msgstr "Full IP logging"
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
+ msgstr "Anonymize IP (mask last part)"
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
+ msgstr "Monitor changes to %(type)s"
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
+ msgstr "IP Logging"
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
+ msgstr "(select IP logging level)"
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
+ msgstr "Geo Info"
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
+ msgstr "Agent Info"
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
+ msgstr "Filter by IP"
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
+ msgstr "Referrer / User Agent"
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
+ msgstr "Geo IP Error"
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
+ msgstr "Something went wrong obtaining this information"
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
+ 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."
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
+ msgstr "No details are known for this address."
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
+ msgstr "Geo IP"
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
+ msgstr "City"
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
+ msgstr "Area"
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
+ msgstr "Timezone"
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
+ msgstr "Geo Location"
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
+ msgstr "Powered by {{link}}redirect.li{{/link}}"
134
 
135
  #: redirection-settings.php:7
136
  msgid "Trash"
137
+ msgstr "Trash"
138
 
139
  #: redirection-admin.php:307
140
  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"
141
+ 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"
142
 
143
  #: redirection-admin.php:203
144
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
145
+ msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
146
 
147
  #. Plugin URI of the plugin/theme
148
  msgid "https://redirection.me/"
149
  msgstr "https://redirection.me/"
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  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."
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  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!"
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr "Never cache"
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr "An hour"
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr "Redirect Cache"
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr "Are you sure you want to import from %s?"
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr "Plugin Importers"
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr "The following redirect plugins were detected on your site and can be imported from."
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr "total = "
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr "Import from %s"
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr "Default WordPress \"old slugs\""
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr "Create associated redirect (added to end of URL)"
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  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."
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr "⚡️ Magic fix ⚡️"
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr "Plugin Status"
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr "Custom"
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr "Mobile"
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr "Feed Readers"
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr "Libraries"
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr "URL Monitor Changes"
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr "Save changes to this group"
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr "For example \"/amp\""
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr "URL Monitor"
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr "Delete 404s"
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr "Delete all logs for this 404"
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr "Delete all from IP %s"
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr "Delete all matching \"%s\""
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
294
 
352
  msgid "All tables present"
353
  msgstr "All tables present"
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr "Cached Redirection detected"
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr "Please clear your browser cache and reload this page."
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr "The data on this page has expired, please reload."
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "Loading, please wait..."
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  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)."
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
410
 
424
  msgid "Important details"
425
  msgstr "Important details"
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "Need help?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr "Pos"
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr "410 - Gone"
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Position"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  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 inserted"
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Apache Module"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Import to group"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Import a CSV, .htaccess, or JSON file."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Click 'Add File' or drag and drop here."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Add File"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "File selected"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Importing"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Finished importing"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr "Total redirects imported:"
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "Double-check the file is the correct format!"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "OK"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Close"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "All imports will be appended to the current database."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Export"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Everything"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "WordPress redirects"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Apache redirects"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Nginx redirects"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr "Apache .htaccess"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr "Nginx rewrite rules"
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr "Redirection JSON"
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr "View"
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr "Log files can be exported from the log pages."
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr "Import/Export"
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr "Logs"
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "404 errors"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr "I'd like to support some more."
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Support 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Redirection saved"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Log deleted"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Settings saved"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Group saved"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "Are you sure you want to delete this item?"
599
  msgstr[1] "Are you sure you want to delete these items?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr "pass"
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "All groups"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301 - Moved Permanently"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 - Found"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 - Temporary Redirect"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 - Permanent Redirect"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 - Unauthorized"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 - Not Found"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Title"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr "When matched"
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "with HTTP code"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Show advanced options"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr "Matched Target"
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr "Unmatched Target"
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Saving..."
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "View notice"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr "Unable to add new redirect"
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Something went wrong 🙁"
684
 
698
  msgid "Log entries (%d max)"
699
  msgstr "Log entries (%d max)"
700
 
701
+ #: redirection-strings.php:277
702
  msgid "Search by IP"
703
  msgstr "Search by IP"
704
 
705
+ #: redirection-strings.php:273
706
  msgid "Select bulk action"
707
  msgstr "Select bulk action"
708
 
709
+ #: redirection-strings.php:272
710
  msgid "Bulk Actions"
711
  msgstr "Bulk Actions"
712
 
713
+ #: redirection-strings.php:271
714
  msgid "Apply"
715
  msgstr "Apply"
716
 
717
+ #: redirection-strings.php:270
718
  msgid "First page"
719
  msgstr "First page"
720
 
721
+ #: redirection-strings.php:269
722
  msgid "Prev page"
723
  msgstr "Prev page"
724
 
725
+ #: redirection-strings.php:268
726
  msgid "Current Page"
727
  msgstr "Current Page"
728
 
729
+ #: redirection-strings.php:267
730
  msgid "of %(page)s"
731
  msgstr "of %(page)s"
732
 
733
+ #: redirection-strings.php:266
734
  msgid "Next page"
735
  msgstr "Next page"
736
 
737
+ #: redirection-strings.php:265
738
  msgid "Last page"
739
  msgstr "Last page"
740
 
741
+ #: redirection-strings.php:264
742
  msgid "%s item"
743
  msgid_plural "%s items"
744
  msgstr[0] "%s item"
745
  msgstr[1] "%s items"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "Select All"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "Sorry, something went wrong loading the data - please try again"
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "No results"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "Delete the logs - are you sure?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  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."
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "Yes! Delete the logs"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "No! Don't delete the logs"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "Newsletter"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr "Want to keep up to date with changes to Redirection?"
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  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."
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "Your email address:"
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "You've supported this plugin - thank you!"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "You get useful software and I get to carry on making it better."
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "Forever"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "Delete the plugin - are you sure?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "Yes! Delete the plugin"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "No! Don't delete the plugin"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "Manage all your 301 redirects and monitor 404 errors."
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  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}}."
838
 
840
  msgid "Redirection Support"
841
  msgstr "Redirection Support"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "Support"
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404s"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "Log"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "Delete Redirection"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "Upload"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "Import"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "Update"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "Auto-generate URL"
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "RSS Token"
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "404 Logs"
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(time to keep logs for)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "Redirect Logs"
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "I'm a nice person and I have helped support the author of this plugin."
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "Plugin Support"
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "Options"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "Two months"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "A month"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "A week"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "A day"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "No logs"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "Delete All"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  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."
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "Add Group"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "Search"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "Groups"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "Save"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "Group"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "Match"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "Add new redirection"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "Cancel"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "Download"
971
 
977
  msgid "Settings"
978
  msgstr "Settings"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "Do nothing"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "Error (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "Pass-through"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "Redirect to random post"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "Redirect to URL"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "Invalid group when creating redirect"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "Source URL"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "Date"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "Add Redirect"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "All modules"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "View Redirects"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "Module"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "Redirects"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "Name"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "Filter"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "Reset hits"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "Enable"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "Disable"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "Delete"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "Edit"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "Last Access"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "Hits"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "Type"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "Modified Posts"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "Redirections"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "User Agent"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL and user agent"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "Target URL"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "URL only"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "Regex"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "Referrer"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL and referrer"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "Logged Out"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "Logged In"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  msgstr "URL and login status"
locale/redirection-en_GB.po CHANGED
@@ -11,120 +11,124 @@ msgstr ""
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
  msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
  msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
  msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
  msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
  msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
  msgstr ""
130
 
@@ -144,51 +148,51 @@ msgstr ""
144
  msgid "https://redirection.me/"
145
  msgstr "https://redirection.me/"
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  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."
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  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!"
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr "Never cache"
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr "An hour"
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr "Redirect Cache"
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr "Are you sure you want to import from %s?"
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr "Plugin Importers"
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr "The following redirect plugins were detected on your site and can be imported from."
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr "total = "
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr "Import from %s"
194
 
@@ -208,7 +212,7 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr "Default WordPress \"old slugs\""
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr "Create associated redirect (added to end of URL)"
214
 
@@ -216,67 +220,67 @@ msgstr "Create associated redirect (added to end of URL)"
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  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."
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr "⚡️ Magic fix ⚡️"
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr "Plugin Status"
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr "Custom"
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr "Mobile"
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr "Feed Readers"
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr "Libraries"
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr "URL Monitor Changes"
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr "Save changes to this group"
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr "For example \"/amp\""
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr "URL Monitor"
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr "Delete 404s"
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr "Delete all logs for this 404"
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr "Delete all from IP %s"
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr "Delete all matching \"%s\""
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
282
 
@@ -284,7 +288,7 @@ msgstr "Your server has rejected the request for being too big. You will need to
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
290
 
@@ -348,23 +352,23 @@ msgstr "The following tables are missing:"
348
  msgid "All tables present"
349
  msgstr "All tables present"
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr "Cached Redirection detected"
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr "Please clear your browser cache and reload this page."
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr "The data on this page has expired, please reload."
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
370
 
@@ -392,15 +396,15 @@ msgstr "This may be caused by another plugin - look at your browser's error cons
392
  msgid "Loading, please wait..."
393
  msgstr "Loading, please wait..."
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  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)."
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
406
 
@@ -420,241 +424,241 @@ msgstr "Email"
420
  msgid "Important details"
421
  msgstr "Important details"
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "Need help?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr "Pos"
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr "410 - Gone"
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Position"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  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 inserted"
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Apache Module"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Import to group"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Import a CSV, .htaccess, or JSON file."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Click 'Add File' or drag and drop here."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Add File"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "File selected"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Importing"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Finished importing"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr "Total redirects imported:"
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "Double-check the file is the correct format!"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "OK"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Close"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "All imports will be appended to the current database."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Export"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Everything"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "WordPress redirects"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Apache redirects"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Nginx redirects"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr "Apache .htaccess"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr "Nginx rewrite rules"
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr "Redirection JSON"
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr "View"
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr "Log files can be exported from the log pages."
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr "Import/Export"
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr "Logs"
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "404 errors"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr "I'd like to support some more."
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Support 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Redirection saved"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Log deleted"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Settings saved"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Group saved"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "Are you sure you want to delete this item?"
595
  msgstr[1] "Are you sure you want to delete these items?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr "pass"
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "All groups"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301 - Moved Permanently"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 - Found"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 - Temporary Redirect"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 - Permanent Redirect"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 - Unauthorized"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 - Not Found"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Title"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr "When matched"
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "with HTTP code"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Show advanced options"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr "Matched Target"
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr "Unmatched Target"
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Saving..."
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "View notice"
660
 
@@ -674,7 +678,7 @@ msgstr "Invalid redirect matcher"
674
  msgid "Unable to add new redirect"
675
  msgstr "Unable to add new redirect"
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Something went wrong 🙁"
680
 
@@ -694,129 +698,129 @@ msgstr "See if your problem is described on the list of outstanding {{link}}Redi
694
  msgid "Log entries (%d max)"
695
  msgstr "Log entries (%d max)"
696
 
697
- #: redirection-strings.php:276
698
  msgid "Search by IP"
699
  msgstr "Search by IP"
700
 
701
- #: redirection-strings.php:272
702
  msgid "Select bulk action"
703
  msgstr "Select bulk action"
704
 
705
- #: redirection-strings.php:271
706
  msgid "Bulk Actions"
707
  msgstr "Bulk Actions"
708
 
709
- #: redirection-strings.php:270
710
  msgid "Apply"
711
  msgstr "Apply"
712
 
713
- #: redirection-strings.php:269
714
  msgid "First page"
715
  msgstr "First page"
716
 
717
- #: redirection-strings.php:268
718
  msgid "Prev page"
719
  msgstr "Prev page"
720
 
721
- #: redirection-strings.php:267
722
  msgid "Current Page"
723
  msgstr "Current Page"
724
 
725
- #: redirection-strings.php:266
726
  msgid "of %(page)s"
727
  msgstr "of %(page)s"
728
 
729
- #: redirection-strings.php:265
730
  msgid "Next page"
731
  msgstr "Next page"
732
 
733
- #: redirection-strings.php:264
734
  msgid "Last page"
735
  msgstr "Last page"
736
 
737
- #: redirection-strings.php:263
738
  msgid "%s item"
739
  msgid_plural "%s items"
740
  msgstr[0] "%s item"
741
  msgstr[1] "%s items"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "Select All"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "Sorry, something went wrong loading the data - please try again"
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "No results"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "Delete the logs - are you sure?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  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."
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "Yes! Delete the logs"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "No! Don't delete the logs"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "Newsletter"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr "Want to keep up to date with changes to Redirection?"
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  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."
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "Your email address:"
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "You've supported this plugin - thank you!"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "You get useful software and I get to carry on making it better."
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "Forever"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "Delete the plugin - are you sure?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "Yes! Delete the plugin"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "No! Don't delete the plugin"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "Manage all your 301 redirects and monitor 404 errors"
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  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}}."
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection is free to use - life is wonderful and lovely! It has requir
836
  msgid "Redirection Support"
837
  msgstr "Redirection Support"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "Support"
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404s"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "Log"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "Delete Redirection"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "Upload"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "Import"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "Update"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "Auto-generate URL"
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "RSS Token"
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "404 Logs"
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(time to keep logs for)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "Redirect Logs"
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "I'm a nice person and I have helped support the author of this plugin"
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "Plugin Support"
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "Options"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "Two months"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "A month"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "A week"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "A day"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "No logs"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "Delete All"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "Add Group"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "Search"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "Groups"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "Save"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "Group"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "Match"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "Add new redirection"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "Cancel"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "Download"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "Settings"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "Do nothing"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "Error (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "Pass-through"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "Redirect to random post"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "Redirect to URL"
995
 
@@ -997,88 +1001,88 @@ msgstr "Redirect to URL"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "Invalid group when creating redirect"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "Source URL"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "Date"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "Add Redirect"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "All modules"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "View Redirects"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "Module"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "Redirects"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "Name"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "Filter"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "Reset hits"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "Enable"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "Disable"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "Delete"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "Edit"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "Last Access"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "Hits"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "Type"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "Type"
1086
  msgid "Modified Posts"
1087
  msgstr "Modified Posts"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "Redirections"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "User Agent"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL and user agent"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "Target URL"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "URL only"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "Regex"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "Referrer"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL and referrer"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "Logged Out"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "Logged In"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  msgstr "URL and login status"
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr ""
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
  msgstr ""
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
  msgstr ""
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
  msgstr ""
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
  msgstr ""
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
  msgstr ""
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
  msgstr ""
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
  msgstr ""
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
  msgstr ""
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
  msgstr ""
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
  msgstr ""
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
  msgstr ""
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
  msgstr ""
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
  msgstr ""
134
 
148
  msgid "https://redirection.me/"
149
  msgstr "https://redirection.me/"
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  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."
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  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!"
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr "Never cache"
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr "An hour"
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr "Redirect Cache"
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr "Are you sure you want to import from %s?"
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr "Plugin Importers"
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr "The following redirect plugins were detected on your site and can be imported from."
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr "total = "
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr "Import from %s"
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr "Default WordPress \"old slugs\""
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr "Create associated redirect (added to end of URL)"
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  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."
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr "⚡️ Magic fix ⚡️"
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr "Plugin Status"
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr "Custom"
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr "Mobile"
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr "Feed Readers"
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr "Libraries"
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr "URL Monitor Changes"
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr "Save changes to this group"
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr "For example \"/amp\""
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr "URL Monitor"
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr "Delete 404s"
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr "Delete all logs for this 404"
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr "Delete all from IP %s"
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr "Delete all matching \"%s\""
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
294
 
352
  msgid "All tables present"
353
  msgstr "All tables present"
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr "Cached Redirection detected"
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr "Please clear your browser cache and reload this page."
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr "The data on this page has expired, please reload."
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "Loading, please wait..."
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  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)."
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
410
 
424
  msgid "Important details"
425
  msgstr "Important details"
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "Need help?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr "Pos"
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr "410 - Gone"
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Position"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  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 inserted"
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Apache Module"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Import to group"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Import a CSV, .htaccess, or JSON file."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Click 'Add File' or drag and drop here."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Add File"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "File selected"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Importing"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Finished importing"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr "Total redirects imported:"
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "Double-check the file is the correct format!"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "OK"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Close"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "All imports will be appended to the current database."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Export"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Everything"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "WordPress redirects"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Apache redirects"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Nginx redirects"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr "Apache .htaccess"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr "Nginx rewrite rules"
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr "Redirection JSON"
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr "View"
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr "Log files can be exported from the log pages."
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr "Import/Export"
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr "Logs"
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "404 errors"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr "I'd like to support some more."
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Support 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Redirection saved"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Log deleted"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Settings saved"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Group saved"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "Are you sure you want to delete this item?"
599
  msgstr[1] "Are you sure you want to delete these items?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr "pass"
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "All groups"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301 - Moved Permanently"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 - Found"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 - Temporary Redirect"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 - Permanent Redirect"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 - Unauthorized"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 - Not Found"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Title"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr "When matched"
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "with HTTP code"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Show advanced options"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr "Matched Target"
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr "Unmatched Target"
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Saving..."
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "View notice"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr "Unable to add new redirect"
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Something went wrong 🙁"
684
 
698
  msgid "Log entries (%d max)"
699
  msgstr "Log entries (%d max)"
700
 
701
+ #: redirection-strings.php:277
702
  msgid "Search by IP"
703
  msgstr "Search by IP"
704
 
705
+ #: redirection-strings.php:273
706
  msgid "Select bulk action"
707
  msgstr "Select bulk action"
708
 
709
+ #: redirection-strings.php:272
710
  msgid "Bulk Actions"
711
  msgstr "Bulk Actions"
712
 
713
+ #: redirection-strings.php:271
714
  msgid "Apply"
715
  msgstr "Apply"
716
 
717
+ #: redirection-strings.php:270
718
  msgid "First page"
719
  msgstr "First page"
720
 
721
+ #: redirection-strings.php:269
722
  msgid "Prev page"
723
  msgstr "Prev page"
724
 
725
+ #: redirection-strings.php:268
726
  msgid "Current Page"
727
  msgstr "Current Page"
728
 
729
+ #: redirection-strings.php:267
730
  msgid "of %(page)s"
731
  msgstr "of %(page)s"
732
 
733
+ #: redirection-strings.php:266
734
  msgid "Next page"
735
  msgstr "Next page"
736
 
737
+ #: redirection-strings.php:265
738
  msgid "Last page"
739
  msgstr "Last page"
740
 
741
+ #: redirection-strings.php:264
742
  msgid "%s item"
743
  msgid_plural "%s items"
744
  msgstr[0] "%s item"
745
  msgstr[1] "%s items"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "Select All"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "Sorry, something went wrong loading the data - please try again"
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "No results"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "Delete the logs - are you sure?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  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."
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "Yes! Delete the logs"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "No! Don't delete the logs"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "Newsletter"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr "Want to keep up to date with changes to Redirection?"
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  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."
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "Your email address:"
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "You've supported this plugin - thank you!"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "You get useful software and I get to carry on making it better."
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "Forever"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "Delete the plugin - are you sure?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "Yes! Delete the plugin"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "No! Don't delete the plugin"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "Manage all your 301 redirects and monitor 404 errors"
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  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}}."
838
 
840
  msgid "Redirection Support"
841
  msgstr "Redirection Support"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "Support"
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404s"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "Log"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "Delete Redirection"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "Upload"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "Import"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "Update"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "Auto-generate URL"
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "RSS Token"
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "404 Logs"
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(time to keep logs for)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "Redirect Logs"
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "I'm a nice person and I have helped support the author of this plugin"
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "Plugin Support"
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "Options"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "Two months"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "A month"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "A week"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "A day"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "No logs"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "Delete All"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  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."
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "Add Group"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "Search"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "Groups"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "Save"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "Group"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "Match"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "Add new redirection"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "Cancel"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "Download"
971
 
977
  msgid "Settings"
978
  msgstr "Settings"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "Do nothing"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "Error (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "Pass-through"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "Redirect to random post"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "Redirect to URL"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "Invalid group when creating redirect"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "Source URL"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "Date"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "Add Redirect"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "All modules"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "View Redirects"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "Module"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "Redirects"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "Name"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "Filter"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "Reset hits"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "Enable"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "Disable"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "Delete"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "Edit"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "Last Access"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "Hits"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "Type"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "Modified Posts"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "Redirections"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "User Agent"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL and user agent"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "Target URL"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "URL only"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "Regex"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "Referrer"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL and referrer"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "Logged Out"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "Logged In"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  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-20 19:24:33+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,120 +11,124 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
  msgstr "https://johngodley.com"
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
  msgstr "Error de agente de usuario"
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
  msgstr "Agente de usuario desconocido"
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
  msgstr "Dispositivo"
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
  msgstr "Sistema operativo"
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
  msgstr "Navegador"
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
  msgstr "Motor"
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
  msgstr "Agente de usuario"
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
  msgstr "Agente"
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
  msgstr "Sin registro de IP"
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
  msgstr "Registro completo de IP"
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
  msgstr "Anonimizar IP (enmascarar la última parte)"
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
  msgstr "Monitorizar cambios de %(type)s"
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
  msgstr "Registro de IP"
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
  msgstr "(seleccionar el nivel de registro de IP)"
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
  msgstr "Información de geolocalización"
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
  msgstr "Información de agente"
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
  msgstr "Filtrar por IP"
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
  msgstr "Procedencia / Agente de usuario"
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
  msgstr "Error de geolocalización de IP"
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
  msgstr "Algo ha ido mal obteniendo esta información"
97
 
98
- #: redirection-strings.php:27
99
  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."
100
  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."
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
  msgstr "No se conoce ningún detalle para esta dirección."
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
  msgstr "Geolocalización de IP"
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
  msgstr "Ciudad"
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
  msgstr "Área"
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
  msgstr "Zona horaria"
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
  msgstr "Geolocalización"
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
130
 
@@ -144,51 +148,51 @@ msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection
144
  msgid "https://redirection.me/"
145
  msgstr "https://redirection.me/"
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  msgstr "La documentación completa para Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}:"
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  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!"
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr "No cachear nunca"
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr "Una hora"
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr "Redireccionar caché"
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr "¿Estás seguro de querer importar de %s?"
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr "Importadores de plugins"
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr "total = "
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr "Importar de %s"
194
 
@@ -208,7 +212,7 @@ msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, ac
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr "\"Viejos slugs\" por defecto de WordPress"
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
214
 
@@ -216,67 +220,67 @@ msgstr "Crea una redirección asociada (añadida al final de la URL)"
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  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."
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  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."
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr "⚡️ Arreglo mágico ⚡️"
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr "Estado del plugin"
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr "Personalizado"
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr "Móvil"
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr "Lectores de feeds"
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr "Bibliotecas"
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr "Monitorizar el cambio de URL"
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr "Guardar los cambios de este grupo"
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr "Por ejemplo \"/amp\""
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr "Monitorear URL"
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr "Borrar 404s"
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr "Borra todos los registros de este 404"
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr "Borra todo de la IP %s"
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr "Borra todo lo que tenga \"%s\""
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
282
 
@@ -284,7 +288,7 @@ msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  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é."
290
 
@@ -348,23 +352,23 @@ msgstr "Faltan las siguientes tablas:"
348
  msgid "All tables present"
349
  msgstr "Están presentes todas las tablas"
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr "Detectada caché de Redirection"
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr "Los datos de esta página han caducado, por favor, recarga."
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "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."
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  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?"
370
 
@@ -392,15 +396,15 @@ msgstr "Esto podría estar provocado por otro plugin - revisa la consola de erro
392
  msgid "Loading, please wait..."
393
  msgstr "Cargando, por favor espera…"
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  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í)."
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  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."
406
 
@@ -420,241 +424,241 @@ msgstr "Correo electrónico"
420
  msgid "Important details"
421
  msgstr "Detalles importantes"
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "¿Necesitas ayuda?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  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."
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr "Pos"
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr "410 - Desaparecido"
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Posición"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  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"
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Módulo Apache"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Importar a un grupo"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Importa un archivo CSV, .htaccess o JSON."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Añadir archivo"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "Archivo seleccionado"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Importando"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Importación finalizada"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr "Total de redirecciones importadas:"
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "Aceptar"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Cerrar"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Exportar"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Todo"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "Redirecciones WordPress"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Redirecciones Apache"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Redirecciones Nginx"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr ".htaccess de Apache"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr "Reglas de rewrite de Nginx"
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr "JSON de Redirection"
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr "Ver"
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr "Importar/Exportar"
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr "Registros"
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "Errores 404"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr "Me gustaría dar algo más de apoyo."
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Apoyar 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Redirección guardada"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Registro borrado"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Ajustes guardados"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Grupo guardado"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
595
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr "pass"
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "Todos los grupos"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301 - Movido permanentemente"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 - Encontrado"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 - Redirección temporal"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 - Redirección permanente"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 - No autorizado"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 - No encontrado"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Título"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr "Cuando coincide"
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "con el código HTTP"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Mostrar opciones avanzadas"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr "Objetivo coincidente"
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr "Objetivo no coincidente"
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Guardando…"
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "Ver aviso"
660
 
@@ -674,7 +678,7 @@ msgstr "Coincidencia de redirección no válida"
674
  msgid "Unable to add new redirect"
675
  msgstr "No ha sido posible añadir la nueva redirección"
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Algo fue mal 🙁"
680
 
@@ -694,129 +698,129 @@ msgstr "Revisa si tu problema está descrito en la lista de habituales {{link}}p
694
  msgid "Log entries (%d max)"
695
  msgstr "Entradas del registro (máximo %d)"
696
 
697
- #: redirection-strings.php:276
698
  msgid "Search by IP"
699
  msgstr "Buscar por IP"
700
 
701
- #: redirection-strings.php:272
702
  msgid "Select bulk action"
703
  msgstr "Elegir acción en lote"
704
 
705
- #: redirection-strings.php:271
706
  msgid "Bulk Actions"
707
  msgstr "Acciones en lote"
708
 
709
- #: redirection-strings.php:270
710
  msgid "Apply"
711
  msgstr "Aplicar"
712
 
713
- #: redirection-strings.php:269
714
  msgid "First page"
715
  msgstr "Primera página"
716
 
717
- #: redirection-strings.php:268
718
  msgid "Prev page"
719
  msgstr "Página anterior"
720
 
721
- #: redirection-strings.php:267
722
  msgid "Current Page"
723
  msgstr "Página actual"
724
 
725
- #: redirection-strings.php:266
726
  msgid "of %(page)s"
727
  msgstr "de %(página)s"
728
 
729
- #: redirection-strings.php:265
730
  msgid "Next page"
731
  msgstr "Página siguiente"
732
 
733
- #: redirection-strings.php:264
734
  msgid "Last page"
735
  msgstr "Última página"
736
 
737
- #: redirection-strings.php:263
738
  msgid "%s item"
739
  msgid_plural "%s items"
740
  msgstr[0] "%s elemento"
741
  msgstr[1] "%s elementos"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "Elegir todos"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "No hay resultados"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "Borrar los registros - ¿estás seguro?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  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."
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "¡Sí! Borra los registros"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "¡No! No borres los registros"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "Boletín"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  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."
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "Tu dirección de correo electrónico:"
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "Siempre"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "Borrar el plugin - ¿estás seguro?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "¡Sí! Borrar el plugin"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "¡No! No borrar el plugin"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  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}}. "
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection se puede usar gratis - ¡La vida es maravillosa y encantador
836
  msgid "Redirection Support"
837
  msgstr "Soporte de Redirection"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "Soporte"
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404s"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "Log"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "Borrar Redirection"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "Subir"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "Importar"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "Actualizar"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "Auto generar URL"
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  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)"
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "Token RSS"
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "Registros 404"
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(tiempo que se mantendrán los registros)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "Registros de redirecciones"
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "Soy una buena persona y ayude al autor de este plugin"
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "Soporte del plugin"
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "Opciones"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "Dos meses"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "Un mes"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "Una semana"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "Un dia"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "No hay logs"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "Borrar todo"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "Añadir grupo"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "Buscar"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "Grupos"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "Guardar"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "Grupo"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "Coincidencia"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "Añadir nueva redirección"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "Cancelar"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "Descargar"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "Ajustes"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "No hacer nada"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "Error (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "Pasar directo"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "Redirigir a entrada aleatoria"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "Redirigir a URL"
995
 
@@ -997,88 +1001,88 @@ msgstr "Redirigir a URL"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "Grupo no válido a la hora de crear la redirección"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "URL origen"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "Fecha"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "Añadir redirección"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "Todos los módulos"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "Ver redirecciones"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "Módulo"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "Redirecciones"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "Nombre"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "Filtro"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "Restablecer aciertos"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "Habilitar"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "Desactivar"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "Eliminar"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "Editar"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "Último acceso"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "Hits"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "Tipo"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "Tipo"
1086
  msgid "Modified Posts"
1087
  msgstr "Entradas modificadas"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "Redirecciones"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "Agente usuario HTTP"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL y cliente de usuario (user agent)"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "URL destino"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "Sólo URL"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "Expresión regular"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "Referente"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL y referente"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "Desconectado"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "Conectado"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  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-01-21 21:13:45+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:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr "La REST API de tu WordPress está desactivada. Necesitarás activarla para que Redirection continúe funcionando"
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
  msgstr "https://johngodley.com"
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
  msgstr "Error de agente de usuario"
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
  msgstr "Agente de usuario desconocido"
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
  msgstr "Dispositivo"
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
  msgstr "Sistema operativo"
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
  msgstr "Navegador"
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
  msgstr "Motor"
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
  msgstr "Agente de usuario"
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
  msgstr "Agente"
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
  msgstr "Sin registro de IP"
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
  msgstr "Registro completo de IP"
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
  msgstr "Anonimizar IP (enmascarar la última parte)"
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
  msgstr "Monitorizar cambios de %(type)s"
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
  msgstr "Registro de IP"
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
  msgstr "(seleccionar el nivel de registro de IP)"
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
  msgstr "Información de geolocalización"
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
  msgstr "Información de agente"
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
  msgstr "Filtrar por IP"
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
  msgstr "Procedencia / Agente de usuario"
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
  msgstr "Error de geolocalización de IP"
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
  msgstr "Algo ha ido mal obteniendo esta información"
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
  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."
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
  msgstr "No se conoce ningún detalle para esta dirección."
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
  msgstr "Geolocalización de IP"
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
  msgstr "Ciudad"
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
  msgstr "Área"
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
  msgstr "Zona horaria"
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
  msgstr "Geolocalización"
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
134
 
148
  msgid "https://redirection.me/"
149
  msgstr "https://redirection.me/"
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  msgstr "La documentación completa para Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}:"
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  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!"
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr "No cachear nunca"
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr "Una hora"
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr "Redireccionar caché"
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr "¿Estás seguro de querer importar de %s?"
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr "Importadores de plugins"
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr "total = "
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr "Importar de %s"
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr "\"Viejos slugs\" por defecto de WordPress"
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  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."
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  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."
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr "⚡️ Arreglo mágico ⚡️"
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr "Estado del plugin"
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr "Personalizado"
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr "Móvil"
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr "Lectores de feeds"
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr "Bibliotecas"
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr "Monitorizar el cambio de URL"
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr "Guardar los cambios de este grupo"
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr "Por ejemplo \"/amp\""
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr "Monitorear URL"
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr "Borrar 404s"
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr "Borra todos los registros de este 404"
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr "Borra todo de la IP %s"
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr "Borra todo lo que tenga \"%s\""
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  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é."
294
 
352
  msgid "All tables present"
353
  msgstr "Están presentes todas las tablas"
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr "Detectada caché de Redirection"
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr "Los datos de esta página han caducado, por favor, recarga."
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "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."
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  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?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "Cargando, por favor espera…"
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  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í)."
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  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."
410
 
424
  msgid "Important details"
425
  msgstr "Detalles importantes"
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "¿Necesitas ayuda?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  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."
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr "Pos"
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr "410 - Desaparecido"
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Posición"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  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"
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Módulo Apache"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Importar a un grupo"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Importa un archivo CSV, .htaccess o JSON."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Añadir archivo"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "Archivo seleccionado"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Importando"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Importación finalizada"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr "Total de redirecciones importadas:"
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "Aceptar"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Cerrar"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Exportar"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Todo"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "Redirecciones WordPress"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Redirecciones Apache"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Redirecciones Nginx"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr ".htaccess de Apache"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr "Reglas de rewrite de Nginx"
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr "JSON de Redirection"
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr "Ver"
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr "Importar/Exportar"
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr "Registros"
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "Errores 404"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr "Me gustaría dar algo más de apoyo."
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Apoyar 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Redirección guardada"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Registro borrado"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Ajustes guardados"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Grupo guardado"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
599
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr "pass"
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "Todos los grupos"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301 - Movido permanentemente"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 - Encontrado"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 - Redirección temporal"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 - Redirección permanente"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 - No autorizado"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 - No encontrado"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Título"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr "Cuando coincide"
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "con el código HTTP"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Mostrar opciones avanzadas"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr "Objetivo coincidente"
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr "Objetivo no coincidente"
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Guardando…"
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "Ver aviso"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr "No ha sido posible añadir la nueva redirección"
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Algo fue mal 🙁"
684
 
698
  msgid "Log entries (%d max)"
699
  msgstr "Entradas del registro (máximo %d)"
700
 
701
+ #: redirection-strings.php:277
702
  msgid "Search by IP"
703
  msgstr "Buscar por IP"
704
 
705
+ #: redirection-strings.php:273
706
  msgid "Select bulk action"
707
  msgstr "Elegir acción en lote"
708
 
709
+ #: redirection-strings.php:272
710
  msgid "Bulk Actions"
711
  msgstr "Acciones en lote"
712
 
713
+ #: redirection-strings.php:271
714
  msgid "Apply"
715
  msgstr "Aplicar"
716
 
717
+ #: redirection-strings.php:270
718
  msgid "First page"
719
  msgstr "Primera página"
720
 
721
+ #: redirection-strings.php:269
722
  msgid "Prev page"
723
  msgstr "Página anterior"
724
 
725
+ #: redirection-strings.php:268
726
  msgid "Current Page"
727
  msgstr "Página actual"
728
 
729
+ #: redirection-strings.php:267
730
  msgid "of %(page)s"
731
  msgstr "de %(página)s"
732
 
733
+ #: redirection-strings.php:266
734
  msgid "Next page"
735
  msgstr "Página siguiente"
736
 
737
+ #: redirection-strings.php:265
738
  msgid "Last page"
739
  msgstr "Última página"
740
 
741
+ #: redirection-strings.php:264
742
  msgid "%s item"
743
  msgid_plural "%s items"
744
  msgstr[0] "%s elemento"
745
  msgstr[1] "%s elementos"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "Elegir todos"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "No hay resultados"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "Borrar los registros - ¿estás seguro?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  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."
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "¡Sí! Borra los registros"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "¡No! No borres los registros"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "Boletín"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  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."
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "Tu dirección de correo electrónico:"
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "Siempre"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "Borrar el plugin - ¿estás seguro?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "¡Sí! Borrar el plugin"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "¡No! No borrar el plugin"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  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}}. "
838
 
840
  msgid "Redirection Support"
841
  msgstr "Soporte de Redirection"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "Soporte"
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404s"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "Log"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "Borrar Redirection"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "Subir"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "Importar"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "Actualizar"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "Auto generar URL"
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  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)"
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "Token RSS"
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "Registros 404"
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(tiempo que se mantendrán los registros)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "Registros de redirecciones"
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "Soy una buena persona y ayude al autor de este plugin"
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "Soporte del plugin"
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "Opciones"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "Dos meses"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "Un mes"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "Una semana"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "Un dia"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "No hay logs"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "Borrar todo"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  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."
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "Añadir grupo"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "Buscar"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "Grupos"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "Guardar"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "Grupo"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "Coincidencia"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "Añadir nueva redirección"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "Cancelar"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "Descargar"
971
 
977
  msgid "Settings"
978
  msgstr "Ajustes"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "No hacer nada"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "Error (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "Pasar directo"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "Redirigir a entrada aleatoria"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "Redirigir a URL"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "Grupo no válido a la hora de crear la redirección"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "URL origen"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "Fecha"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "Añadir redirección"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "Todos los módulos"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "Ver redirecciones"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "Módulo"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "Redirecciones"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "Nombre"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "Filtro"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "Restablecer aciertos"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "Habilitar"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "Desactivar"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "Eliminar"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "Editar"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "Último acceso"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "Hits"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "Tipo"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "Entradas modificadas"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "Redirecciones"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "Agente usuario HTTP"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL y cliente de usuario (user agent)"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "URL destino"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "Sólo URL"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "Expresión regular"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "Referente"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL y referente"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "Desconectado"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "Conectado"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  msgstr "Estado de URL y conexión"
locale/redirection-fr_FR.po CHANGED
@@ -11,120 +11,124 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
  msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
  msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
  msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
  msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
  msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
  msgstr ""
130
 
@@ -144,51 +148,51 @@ msgstr ""
144
  msgid "https://redirection.me/"
145
  msgstr "https://redirection.me/"
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  msgstr ""
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr ""
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  msgstr ""
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr "Jamais de cache"
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr "Une heure"
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr "Cache de redirection"
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr ""
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr "Confirmez-vous l’importation depuis %s ?"
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr ""
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr "total = "
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr "Importer depuis %s"
194
 
@@ -208,7 +212,7 @@ msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mett
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr ""
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
214
 
@@ -216,67 +220,67 @@ msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  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."
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  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."
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr "⚡️ Correction magique ⚡️"
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr "Statut de l’extension"
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr "Personnalisé"
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr "Mobile"
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr "Lecteurs de flux"
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr "Librairies"
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr ""
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr "Enregistrer les modifications apportées à ce groupe"
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr "Par exemple « /amp »"
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr "URL à surveiller"
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr "Supprimer les pages 404"
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr "Supprimer tous les journaux pour cette page 404"
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr "Tout supprimer depuis l’IP %s"
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr "Supprimer toutes les correspondances « %s »"
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr ""
282
 
@@ -284,7 +288,7 @@ msgstr ""
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  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."
290
 
@@ -348,23 +352,23 @@ msgstr "Les tables suivantes sont manquantes :"
348
  msgid "All tables present"
349
  msgstr "Toutes les tables présentes"
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr "Redirection en cache détectée"
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr "Les données de cette page ont expiré, veuillez la recharger."
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "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."
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  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é ?"
370
 
@@ -392,15 +396,15 @@ msgstr "Cela peut être causé par une autre extension – regardez la console
392
  msgid "Loading, please wait..."
393
  msgstr "Veuillez patienter pendant le chargement…"
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  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."
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
406
 
@@ -420,241 +424,241 @@ msgstr "E-mail"
420
  msgid "Important details"
421
  msgstr "Informations importantes"
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "Besoin d’aide ?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  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."
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr "Pos"
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr "410 – Gone"
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Position"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  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é."
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Module Apache"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Importer dans le groupe"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Ajouter un fichier"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "Fichier sélectionné"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Import"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Import terminé"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr "Total des redirections importées :"
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "OK"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Fermer"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Exporter"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Tout"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "Redirections WordPress"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Redirections Apache"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Redirections Nginx"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr ".htaccess Apache"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr "Règles de réécriture Nginx"
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr "Redirection JSON"
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr "Visualiser"
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr "Import/export"
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr "Journaux"
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "Erreurs 404"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr "Je voudrais soutenir un peu plus."
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Support 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Redirection sauvegardée"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Journal supprimé"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Réglages sauvegardés"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Groupe sauvegardé"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "Êtes-vous sûr•e de vouloir supprimer cet élément ?"
595
  msgstr[1] "Êtes-vous sûr•e de vouloir supprimer ces éléments ?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr "Passer"
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "Tous les groupes"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301 - déplacé de façon permanente"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 – trouvé"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 – Redirigé temporairement"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 – Redirigé de façon permanente"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 – Non-autorisé"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 – Introuvable"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Titre"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr "Quand cela correspond"
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "avec code HTTP"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Afficher les options avancées"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr "Cible correspondant"
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr "Cible ne correspondant pas"
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Sauvegarde…"
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "Voir la notification"
660
 
@@ -674,7 +678,7 @@ msgstr "Correspondance de redirection non-valide"
674
  msgid "Unable to add new redirect"
675
  msgstr "Incapable de créer une nouvelle redirection"
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Quelque chose s’est mal passé 🙁"
680
 
@@ -694,129 +698,129 @@ msgstr "Voyez si votre problème est décrit dans la liste des {{link}}problème
694
  msgid "Log entries (%d max)"
695
  msgstr "Entrées du journal (100 max.)"
696
 
697
- #: redirection-strings.php:276
698
  msgid "Search by IP"
699
  msgstr "Rechercher par IP"
700
 
701
- #: redirection-strings.php:272
702
  msgid "Select bulk action"
703
  msgstr "Sélectionner l’action groupée"
704
 
705
- #: redirection-strings.php:271
706
  msgid "Bulk Actions"
707
  msgstr "Actions groupées"
708
 
709
- #: redirection-strings.php:270
710
  msgid "Apply"
711
  msgstr "Appliquer"
712
 
713
- #: redirection-strings.php:269
714
  msgid "First page"
715
  msgstr "Première page"
716
 
717
- #: redirection-strings.php:268
718
  msgid "Prev page"
719
  msgstr "Page précédente"
720
 
721
- #: redirection-strings.php:267
722
  msgid "Current Page"
723
  msgstr "Page courante"
724
 
725
- #: redirection-strings.php:266
726
  msgid "of %(page)s"
727
  msgstr "de %(page)s"
728
 
729
- #: redirection-strings.php:265
730
  msgid "Next page"
731
  msgstr "Page suivante"
732
 
733
- #: redirection-strings.php:264
734
  msgid "Last page"
735
  msgstr "Dernière page"
736
 
737
- #: redirection-strings.php:263
738
  msgid "%s item"
739
  msgid_plural "%s items"
740
  msgstr[0] "%s élément"
741
  msgstr[1] "%s éléments"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "Tout sélectionner"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "Aucun résultat"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "Confirmez-vous la suppression des journaux ?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  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."
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "Oui ! Supprimer les journaux"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "Non ! Ne pas supprimer les journaux"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "Newsletter"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  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."
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "Votre adresse de messagerie :"
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "Indéfiniment"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "Confirmez-vous vouloir supprimer cette extension ?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "Oui ! Supprimer l’extension"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "Non ! Ne pas supprimer l’extension"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  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}}."
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection est utilisable gratuitement. La vie est belle ! Cependant,
836
  msgid "Redirection Support"
837
  msgstr "Support de Redirection"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "Support"
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "Journaux"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "Supprimer la redirection"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "Mettre en ligne"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "Importer"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "Mettre à jour"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "URL auto-générée&nbsp;"
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  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)."
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "Jeton RSS "
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "Journaux des 404 "
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(durée de conservation des journaux)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "Journaux des redirections "
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "Support de l’extension "
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "Options"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "Deux mois"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "Un mois"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "Une semaine"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "Un jour"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "Aucun journal"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "Tout supprimer"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "Ajouter un groupe"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "Rechercher"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "Groupes"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "Enregistrer"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "Groupe"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "Correspondant"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "Ajouter une nouvelle redirection"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "Annuler"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "Télécharger"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "Réglages"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "Ne rien faire"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "Erreur (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "Outrepasser"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "Rediriger vers un article aléatoire"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "Redirection vers une URL"
995
 
@@ -997,88 +1001,88 @@ msgstr "Redirection vers une URL"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "Groupe non valide à la création d’une redirection"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "URL source"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "Date"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "Ajouter une redirection"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "Tous les modules"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "Voir les redirections"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "Module"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "Redirections"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "Nom"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "Filtre"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "Réinitialiser les vues"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "Activer"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "Désactiver"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "Supprimer"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "Modifier"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "Dernier accès"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "Hits"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "Type"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "Type"
1086
  msgid "Modified Posts"
1087
  msgstr "Articles modifiés"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "Redirections"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "Agent utilisateur"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL et agent utilisateur"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "URL cible"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "URL uniquement"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "Regex"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "Référant"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL et référent"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "Déconnecté"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "Connecté"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  msgstr "URL et état de connexion"
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr ""
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
  msgstr ""
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
  msgstr ""
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
  msgstr ""
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
  msgstr ""
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
  msgstr ""
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
  msgstr ""
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
  msgstr ""
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
  msgstr ""
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
  msgstr ""
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
  msgstr ""
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
  msgstr ""
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
  msgstr ""
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
  msgstr ""
134
 
148
  msgid "https://redirection.me/"
149
  msgstr "https://redirection.me/"
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr "Jamais de cache"
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr "Une heure"
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr "Cache de redirection"
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr "Confirmez-vous l’importation depuis %s ?"
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr "total = "
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr "Importer depuis %s"
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  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."
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  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."
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr "⚡️ Correction magique ⚡️"
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr "Statut de l’extension"
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr "Personnalisé"
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr "Mobile"
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr "Lecteurs de flux"
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr "Librairies"
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr "Enregistrer les modifications apportées à ce groupe"
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr "Par exemple « /amp »"
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr "URL à surveiller"
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr "Supprimer les pages 404"
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr "Supprimer tous les journaux pour cette page 404"
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr "Tout supprimer depuis l’IP %s"
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr "Supprimer toutes les correspondances « %s »"
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr ""
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  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."
294
 
352
  msgid "All tables present"
353
  msgstr "Toutes les tables présentes"
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr "Redirection en cache détectée"
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr "Les données de cette page ont expiré, veuillez la recharger."
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "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."
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  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é ?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "Veuillez patienter pendant le chargement…"
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  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."
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
410
 
424
  msgid "Important details"
425
  msgstr "Informations importantes"
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "Besoin d’aide ?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  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."
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr "Pos"
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr "410 – Gone"
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Position"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  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é."
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Module Apache"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Importer dans le groupe"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Ajouter un fichier"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "Fichier sélectionné"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Import"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Import terminé"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr "Total des redirections importées :"
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "OK"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Fermer"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Exporter"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Tout"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "Redirections WordPress"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Redirections Apache"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Redirections Nginx"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr ".htaccess Apache"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr "Règles de réécriture Nginx"
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr "Redirection JSON"
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr "Visualiser"
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr "Import/export"
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr "Journaux"
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "Erreurs 404"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr "Je voudrais soutenir un peu plus."
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Support 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Redirection sauvegardée"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Journal supprimé"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Réglages sauvegardés"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Groupe sauvegardé"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "Êtes-vous sûr•e de vouloir supprimer cet élément ?"
599
  msgstr[1] "Êtes-vous sûr•e de vouloir supprimer ces éléments ?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr "Passer"
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "Tous les groupes"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301 - déplacé de façon permanente"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 – trouvé"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 – Redirigé temporairement"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 – Redirigé de façon permanente"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 – Non-autorisé"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 – Introuvable"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Titre"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr "Quand cela correspond"
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "avec code HTTP"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Afficher les options avancées"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr "Cible correspondant"
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr "Cible ne correspondant pas"
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Sauvegarde…"
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "Voir la notification"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr "Incapable de créer une nouvelle redirection"
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Quelque chose s’est mal passé 🙁"
684
 
698
  msgid "Log entries (%d max)"
699
  msgstr "Entrées du journal (100 max.)"
700
 
701
+ #: redirection-strings.php:277
702
  msgid "Search by IP"
703
  msgstr "Rechercher par IP"
704
 
705
+ #: redirection-strings.php:273
706
  msgid "Select bulk action"
707
  msgstr "Sélectionner l’action groupée"
708
 
709
+ #: redirection-strings.php:272
710
  msgid "Bulk Actions"
711
  msgstr "Actions groupées"
712
 
713
+ #: redirection-strings.php:271
714
  msgid "Apply"
715
  msgstr "Appliquer"
716
 
717
+ #: redirection-strings.php:270
718
  msgid "First page"
719
  msgstr "Première page"
720
 
721
+ #: redirection-strings.php:269
722
  msgid "Prev page"
723
  msgstr "Page précédente"
724
 
725
+ #: redirection-strings.php:268
726
  msgid "Current Page"
727
  msgstr "Page courante"
728
 
729
+ #: redirection-strings.php:267
730
  msgid "of %(page)s"
731
  msgstr "de %(page)s"
732
 
733
+ #: redirection-strings.php:266
734
  msgid "Next page"
735
  msgstr "Page suivante"
736
 
737
+ #: redirection-strings.php:265
738
  msgid "Last page"
739
  msgstr "Dernière page"
740
 
741
+ #: redirection-strings.php:264
742
  msgid "%s item"
743
  msgid_plural "%s items"
744
  msgstr[0] "%s élément"
745
  msgstr[1] "%s éléments"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "Tout sélectionner"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "Aucun résultat"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "Confirmez-vous la suppression des journaux ?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  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."
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "Oui ! Supprimer les journaux"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "Non ! Ne pas supprimer les journaux"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "Newsletter"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  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."
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "Votre adresse de messagerie :"
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "Indéfiniment"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "Confirmez-vous vouloir supprimer cette extension ?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "Oui ! Supprimer l’extension"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "Non ! Ne pas supprimer l’extension"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  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}}."
838
 
840
  msgid "Redirection Support"
841
  msgstr "Support de Redirection"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "Support"
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "Journaux"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "Supprimer la redirection"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "Mettre en ligne"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "Importer"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "Mettre à jour"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "URL auto-générée&nbsp;"
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  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)."
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "Jeton RSS "
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "Journaux des 404 "
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(durée de conservation des journaux)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "Journaux des redirections "
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "Support de l’extension "
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "Options"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "Deux mois"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "Un mois"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "Une semaine"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "Un jour"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "Aucun journal"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "Tout supprimer"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  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."
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "Ajouter un groupe"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "Rechercher"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "Groupes"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "Enregistrer"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "Groupe"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "Correspondant"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "Ajouter une nouvelle redirection"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "Annuler"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "Télécharger"
971
 
977
  msgid "Settings"
978
  msgstr "Réglages"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "Ne rien faire"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "Erreur (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "Outrepasser"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "Rediriger vers un article aléatoire"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "Redirection vers une URL"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "Groupe non valide à la création d’une redirection"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "URL source"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "Date"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "Ajouter une redirection"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "Tous les modules"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "Voir les redirections"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "Module"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "Redirections"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "Nom"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "Filtre"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "Réinitialiser les vues"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "Activer"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "Désactiver"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "Supprimer"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "Modifier"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "Dernier accès"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "Hits"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "Type"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "Articles modifiés"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "Redirections"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "Agent utilisateur"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL et agent utilisateur"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "URL cible"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "URL uniquement"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "Regex"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "Référant"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL et référent"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "Déconnecté"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "Connecté"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  msgstr "URL et état de connexion"
locale/redirection-it_IT.po CHANGED
@@ -11,120 +11,124 @@ msgstr ""
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
  msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
  msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
  msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
  msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
  msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
  msgstr ""
130
 
@@ -144,51 +148,51 @@ msgstr ""
144
  msgid "https://redirection.me/"
145
  msgstr ""
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  msgstr ""
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr ""
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  msgstr ""
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr ""
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr ""
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr ""
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr ""
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr ""
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr ""
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr ""
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr ""
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr ""
194
 
@@ -208,7 +212,7 @@ msgstr ""
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr ""
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr ""
214
 
@@ -216,67 +220,67 @@ msgstr ""
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  msgstr ""
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  msgstr ""
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr ""
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr ""
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr ""
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr ""
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr ""
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr ""
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr ""
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr ""
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr ""
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr ""
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr ""
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr ""
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr ""
282
 
@@ -284,7 +288,7 @@ msgstr ""
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr ""
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  msgstr ""
290
 
@@ -348,23 +352,23 @@ msgstr ""
348
  msgid "All tables present"
349
  msgstr ""
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr ""
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr ""
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr ""
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr ""
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  msgstr ""
370
 
@@ -392,15 +396,15 @@ msgstr ""
392
  msgid "Loading, please wait..."
393
  msgstr ""
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  msgstr ""
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr ""
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr ""
406
 
@@ -420,241 +424,241 @@ msgstr ""
420
  msgid "Important details"
421
  msgstr ""
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "Hai bisogno di aiuto?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  msgstr ""
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr ""
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr ""
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Posizione"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  msgstr ""
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Modulo Apache"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Importa nel gruppo"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Importa un file CSV, .htaccess o JSON."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Aggiungi File"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "File selezionato"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Importazione"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Importazione finita"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr ""
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "Controlla che il file sia nel formato corretto!"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "OK"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Chiudi"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Esporta"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Tutto"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "Redirezioni di WordPress"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Redirezioni Apache"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Redirezioni nginx"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr ".htaccess Apache"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr ""
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr ""
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr ""
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr ""
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr ""
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr ""
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "Errori 404"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr ""
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr ""
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Supporta 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Redirezione salvata"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Log eliminato"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Impostazioni salvate"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Gruppo salvato"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
595
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr ""
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "Tutti i gruppi"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301 - Spostato in maniera permanente"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 - Trovato"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 - Redirezione temporanea"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 - Redirezione permanente"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 - Non autorizzato"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 - Non trovato"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Titolo"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr "Quando corrisponde"
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "Con codice HTTP"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Mostra opzioni avanzate"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr ""
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr ""
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Salvataggio..."
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "Vedi la notifica"
660
 
@@ -674,7 +678,7 @@ msgstr ""
674
  msgid "Unable to add new redirect"
675
  msgstr "Impossibile aggiungere una nuova redirezione"
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Qualcosa è andato storto 🙁"
680
 
@@ -696,129 +700,129 @@ msgstr "Controlla se il tuo problema è descritto nella nostra fantastica lista
696
  msgid "Log entries (%d max)"
697
  msgstr ""
698
 
699
- #: redirection-strings.php:276
700
  msgid "Search by IP"
701
  msgstr "Cerca per IP"
702
 
703
- #: redirection-strings.php:272
704
  msgid "Select bulk action"
705
  msgstr "Seleziona l'azione di massa"
706
 
707
- #: redirection-strings.php:271
708
  msgid "Bulk Actions"
709
  msgstr "Azioni di massa"
710
 
711
- #: redirection-strings.php:270
712
  msgid "Apply"
713
  msgstr "Applica"
714
 
715
- #: redirection-strings.php:269
716
  msgid "First page"
717
  msgstr "Prima pagina"
718
 
719
- #: redirection-strings.php:268
720
  msgid "Prev page"
721
  msgstr "Pagina precedente"
722
 
723
- #: redirection-strings.php:267
724
  msgid "Current Page"
725
  msgstr "Pagina corrente"
726
 
727
- #: redirection-strings.php:266
728
  msgid "of %(page)s"
729
  msgstr ""
730
 
731
- #: redirection-strings.php:265
732
  msgid "Next page"
733
  msgstr "Prossima pagina"
734
 
735
- #: redirection-strings.php:264
736
  msgid "Last page"
737
  msgstr "Ultima pagina"
738
 
739
- #: redirection-strings.php:263
740
  msgid "%s item"
741
  msgid_plural "%s items"
742
  msgstr[0] "%s oggetto"
743
  msgstr[1] "%s oggetti"
744
 
745
- #: redirection-strings.php:262
746
  msgid "Select All"
747
  msgstr "Seleziona tutto"
748
 
749
- #: redirection-strings.php:274
750
  msgid "Sorry, something went wrong loading the data - please try again"
751
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
752
 
753
- #: redirection-strings.php:273
754
  msgid "No results"
755
  msgstr "Nessun risultato"
756
 
757
- #: redirection-strings.php:101
758
  msgid "Delete the logs - are you sure?"
759
  msgstr "Cancella i log - sei sicuro?"
760
 
761
- #: redirection-strings.php:100
762
  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."
763
  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."
764
 
765
- #: redirection-strings.php:99
766
  msgid "Yes! Delete the logs"
767
  msgstr "Sì! Cancella i log"
768
 
769
- #: redirection-strings.php:98
770
  msgid "No! Don't delete the logs"
771
  msgstr "No! Non cancellare i log"
772
 
773
- #: redirection-strings.php:256
774
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
775
  msgstr ""
776
 
777
- #: redirection-strings.php:255 redirection-strings.php:257
778
  msgid "Newsletter"
779
  msgstr "Newsletter"
780
 
781
- #: redirection-strings.php:254
782
  msgid "Want to keep up to date with changes to Redirection?"
783
  msgstr ""
784
 
785
- #: redirection-strings.php:253
786
  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."
787
  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."
788
 
789
- #: redirection-strings.php:252
790
  msgid "Your email address:"
791
  msgstr "Il tuo indirizzo email:"
792
 
793
- #: redirection-strings.php:148
794
  msgid "You've supported this plugin - thank you!"
795
  msgstr "Hai già supportato questo plugin - grazie!"
796
 
797
- #: redirection-strings.php:145
798
  msgid "You get useful software and I get to carry on making it better."
799
  msgstr ""
800
 
801
- #: redirection-strings.php:174 redirection-strings.php:179
802
  msgid "Forever"
803
  msgstr "Per sempre"
804
 
805
- #: redirection-strings.php:140
806
  msgid "Delete the plugin - are you sure?"
807
  msgstr "Cancella il plugin - sei sicuro?"
808
 
809
- #: redirection-strings.php:139
810
  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."
811
  msgstr ""
812
 
813
- #: redirection-strings.php:138
814
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
815
  msgstr ""
816
 
817
- #: redirection-strings.php:137
818
  msgid "Yes! Delete the plugin"
819
  msgstr "Sì! Cancella il plugin"
820
 
821
- #: redirection-strings.php:136
822
  msgid "No! Don't delete the plugin"
823
  msgstr "No! Non cancellare il plugin"
824
 
@@ -830,7 +834,7 @@ msgstr "John Godley"
830
  msgid "Manage all your 301 redirects and monitor 404 errors"
831
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
832
 
833
- #: redirection-strings.php:146
834
  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}}."
835
  msgstr ""
836
 
@@ -838,132 +842,132 @@ msgstr ""
838
  msgid "Redirection Support"
839
  msgstr "Forum di supporto Redirection"
840
 
841
- #: redirection-strings.php:57 redirection-strings.php:128
842
  msgid "Support"
843
  msgstr "Supporto"
844
 
845
- #: redirection-strings.php:131
846
  msgid "404s"
847
  msgstr "404"
848
 
849
- #: redirection-strings.php:132
850
  msgid "Log"
851
  msgstr "Log"
852
 
853
- #: redirection-strings.php:142
854
  msgid "Delete Redirection"
855
  msgstr "Rimuovi Redirection"
856
 
857
- #: redirection-strings.php:92
858
  msgid "Upload"
859
  msgstr "Carica"
860
 
861
- #: redirection-strings.php:81
862
  msgid "Import"
863
  msgstr "Importa"
864
 
865
- #: redirection-strings.php:149
866
  msgid "Update"
867
  msgstr "Aggiorna"
868
 
869
- #: redirection-strings.php:155
870
  msgid "Auto-generate URL"
871
  msgstr "Genera URL automaticamente"
872
 
873
- #: redirection-strings.php:156
874
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
875
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
876
 
877
- #: redirection-strings.php:157
878
  msgid "RSS Token"
879
  msgstr "Token RSS"
880
 
881
- #: redirection-strings.php:162
882
  msgid "404 Logs"
883
  msgstr "Registro 404"
884
 
885
- #: redirection-strings.php:161 redirection-strings.php:163
886
  msgid "(time to keep logs for)"
887
  msgstr "(per quanto tempo conservare i log)"
888
 
889
- #: redirection-strings.php:164
890
  msgid "Redirect Logs"
891
  msgstr "Registro redirezioni"
892
 
893
- #: redirection-strings.php:165
894
  msgid "I'm a nice person and I have helped support the author of this plugin"
895
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
896
 
897
- #: redirection-strings.php:143
898
  msgid "Plugin Support"
899
  msgstr ""
900
 
901
- #: redirection-strings.php:58 redirection-strings.php:129
902
  msgid "Options"
903
  msgstr "Opzioni"
904
 
905
- #: redirection-strings.php:180
906
  msgid "Two months"
907
  msgstr "Due mesi"
908
 
909
- #: redirection-strings.php:181
910
  msgid "A month"
911
  msgstr "Un mese"
912
 
913
- #: redirection-strings.php:175 redirection-strings.php:182
914
  msgid "A week"
915
  msgstr "Una settimana"
916
 
917
- #: redirection-strings.php:176 redirection-strings.php:183
918
  msgid "A day"
919
  msgstr "Un giorno"
920
 
921
- #: redirection-strings.php:184
922
  msgid "No logs"
923
  msgstr "Nessun log"
924
 
925
- #: redirection-strings.php:102
926
  msgid "Delete All"
927
  msgstr "Elimina tutto"
928
 
929
- #: redirection-strings.php:32
930
  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."
931
  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."
932
 
933
- #: redirection-strings.php:33
934
  msgid "Add Group"
935
  msgstr "Aggiungi gruppo"
936
 
937
- #: redirection-strings.php:275
938
  msgid "Search"
939
  msgstr "Cerca"
940
 
941
- #: redirection-strings.php:62 redirection-strings.php:133
942
  msgid "Groups"
943
  msgstr "Gruppi"
944
 
945
- #: redirection-strings.php:42 redirection-strings.php:199
946
  msgid "Save"
947
  msgstr "Salva"
948
 
949
- #: redirection-strings.php:201
950
  msgid "Group"
951
  msgstr "Gruppo"
952
 
953
- #: redirection-strings.php:204
954
  msgid "Match"
955
  msgstr "Match"
956
 
957
- #: redirection-strings.php:223
958
  msgid "Add new redirection"
959
  msgstr "Aggiungi un nuovo reindirizzamento"
960
 
961
- #: redirection-strings.php:41 redirection-strings.php:91
962
- #: redirection-strings.php:196
963
  msgid "Cancel"
964
  msgstr "Annulla"
965
 
966
- #: redirection-strings.php:67
967
  msgid "Download"
968
  msgstr "Scaricare"
969
 
@@ -975,23 +979,23 @@ msgstr "Redirection"
975
  msgid "Settings"
976
  msgstr "Impostazioni"
977
 
978
- #: redirection-strings.php:213
979
  msgid "Do nothing"
980
  msgstr "Non fare niente"
981
 
982
- #: redirection-strings.php:214
983
  msgid "Error (404)"
984
  msgstr "Errore (404)"
985
 
986
- #: redirection-strings.php:215
987
  msgid "Pass-through"
988
  msgstr "Pass-through"
989
 
990
- #: redirection-strings.php:216
991
  msgid "Redirect to random post"
992
  msgstr "Reindirizza a un post a caso"
993
 
994
- #: redirection-strings.php:217
995
  msgid "Redirect to URL"
996
  msgstr "Reindirizza a URL"
997
 
@@ -999,88 +1003,88 @@ msgstr "Reindirizza a URL"
999
  msgid "Invalid group when creating redirect"
1000
  msgstr "Gruppo non valido nella creazione del redirect"
1001
 
1002
- #: redirection-strings.php:107 redirection-strings.php:116
1003
  msgid "IP"
1004
  msgstr "IP"
1005
 
1006
- #: redirection-strings.php:109 redirection-strings.php:118
1007
- #: redirection-strings.php:198
1008
  msgid "Source URL"
1009
  msgstr "URL di partenza"
1010
 
1011
- #: redirection-strings.php:110 redirection-strings.php:119
1012
  msgid "Date"
1013
  msgstr "Data"
1014
 
1015
- #: redirection-strings.php:123 redirection-strings.php:127
1016
- #: redirection-strings.php:222
1017
  msgid "Add Redirect"
1018
  msgstr ""
1019
 
1020
- #: redirection-strings.php:34
1021
  msgid "All modules"
1022
  msgstr "Tutti i moduli"
1023
 
1024
- #: redirection-strings.php:47
1025
  msgid "View Redirects"
1026
  msgstr "Mostra i redirect"
1027
 
1028
- #: redirection-strings.php:38 redirection-strings.php:43
1029
  msgid "Module"
1030
  msgstr "Modulo"
1031
 
1032
- #: redirection-strings.php:39 redirection-strings.php:134
1033
  msgid "Redirects"
1034
  msgstr "Reindirizzamenti"
1035
 
1036
- #: redirection-strings.php:31 redirection-strings.php:40
1037
- #: redirection-strings.php:44
1038
  msgid "Name"
1039
  msgstr "Nome"
1040
 
1041
- #: redirection-strings.php:261
1042
  msgid "Filter"
1043
  msgstr "Filtro"
1044
 
1045
- #: redirection-strings.php:225
1046
  msgid "Reset hits"
1047
  msgstr ""
1048
 
1049
- #: redirection-strings.php:36 redirection-strings.php:45
1050
- #: redirection-strings.php:227 redirection-strings.php:243
1051
  msgid "Enable"
1052
  msgstr "Attiva"
1053
 
1054
- #: redirection-strings.php:35 redirection-strings.php:46
1055
- #: redirection-strings.php:226 redirection-strings.php:244
1056
  msgid "Disable"
1057
  msgstr "Disattiva"
1058
 
1059
- #: redirection-strings.php:37 redirection-strings.php:48
1060
- #: redirection-strings.php:106 redirection-strings.php:114
1061
- #: redirection-strings.php:115 redirection-strings.php:124
1062
- #: redirection-strings.php:141 redirection-strings.php:228
1063
- #: redirection-strings.php:245
1064
  msgid "Delete"
1065
  msgstr "Rimuovi"
1066
 
1067
- #: redirection-strings.php:49 redirection-strings.php:246
1068
  msgid "Edit"
1069
  msgstr "Modifica"
1070
 
1071
- #: redirection-strings.php:229
1072
  msgid "Last Access"
1073
  msgstr "Ultimo accesso"
1074
 
1075
- #: redirection-strings.php:230
1076
  msgid "Hits"
1077
  msgstr "Visite"
1078
 
1079
- #: redirection-strings.php:232
1080
  msgid "URL"
1081
  msgstr "URL"
1082
 
1083
- #: redirection-strings.php:233
1084
  msgid "Type"
1085
  msgstr "Tipo"
1086
 
@@ -1088,47 +1092,47 @@ msgstr "Tipo"
1088
  msgid "Modified Posts"
1089
  msgstr "Post modificati"
1090
 
1091
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1092
  msgid "Redirections"
1093
  msgstr "Reindirizzamenti"
1094
 
1095
- #: redirection-strings.php:239
1096
  msgid "User Agent"
1097
  msgstr "User agent"
1098
 
1099
- #: matches/user-agent.php:10 redirection-strings.php:218
1100
  msgid "URL and user agent"
1101
  msgstr "URL e user agent"
1102
 
1103
- #: redirection-strings.php:193
1104
  msgid "Target URL"
1105
  msgstr "URL di arrivo"
1106
 
1107
- #: matches/url.php:7 redirection-strings.php:221
1108
  msgid "URL only"
1109
  msgstr "solo URL"
1110
 
1111
- #: redirection-strings.php:197 redirection-strings.php:234
1112
- #: redirection-strings.php:240
1113
  msgid "Regex"
1114
  msgstr "Regex"
1115
 
1116
- #: redirection-strings.php:241
1117
  msgid "Referrer"
1118
  msgstr "Referrer"
1119
 
1120
- #: matches/referrer.php:10 redirection-strings.php:219
1121
  msgid "URL and referrer"
1122
  msgstr "URL e referrer"
1123
 
1124
- #: redirection-strings.php:189
1125
  msgid "Logged Out"
1126
  msgstr "Logged out"
1127
 
1128
- #: redirection-strings.php:190
1129
  msgid "Logged In"
1130
  msgstr "Logged in"
1131
 
1132
- #: matches/login.php:8 redirection-strings.php:220
1133
  msgid "URL and login status"
1134
  msgstr "status URL e login"
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr ""
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
  msgstr ""
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
  msgstr ""
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
  msgstr ""
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
  msgstr ""
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
  msgstr ""
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
  msgstr ""
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
  msgstr ""
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
  msgstr ""
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
  msgstr ""
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
  msgstr ""
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
  msgstr ""
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
  msgstr ""
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
  msgstr ""
134
 
148
  msgid "https://redirection.me/"
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr ""
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr ""
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  msgstr ""
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr ""
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr ""
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr ""
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr ""
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr ""
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr ""
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr ""
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr ""
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr ""
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr ""
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr ""
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr ""
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr ""
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr ""
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr ""
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  msgstr ""
294
 
352
  msgid "All tables present"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr ""
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr ""
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr ""
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  msgstr ""
374
 
396
  msgid "Loading, please wait..."
397
  msgstr ""
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  msgstr ""
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr ""
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr ""
410
 
424
  msgid "Important details"
425
  msgstr ""
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "Hai bisogno di aiuto?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  msgstr ""
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr ""
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr ""
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Posizione"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  msgstr ""
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Modulo Apache"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Importa nel gruppo"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Importa un file CSV, .htaccess o JSON."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Aggiungi File"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "File selezionato"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Importazione"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Importazione finita"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr ""
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "Controlla che il file sia nel formato corretto!"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "OK"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Chiudi"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Esporta"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Tutto"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "Redirezioni di WordPress"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Redirezioni Apache"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Redirezioni nginx"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr ".htaccess Apache"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr ""
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr ""
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr ""
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr ""
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr ""
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr ""
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "Errori 404"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr ""
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr ""
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Supporta 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Redirezione salvata"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Log eliminato"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Impostazioni salvate"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Gruppo salvato"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
599
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr ""
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "Tutti i gruppi"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301 - Spostato in maniera permanente"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 - Trovato"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 - Redirezione temporanea"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 - Redirezione permanente"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 - Non autorizzato"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 - Non trovato"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Titolo"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr "Quando corrisponde"
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "Con codice HTTP"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Mostra opzioni avanzate"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr ""
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr ""
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Salvataggio..."
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "Vedi la notifica"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr "Impossibile aggiungere una nuova redirezione"
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Qualcosa è andato storto 🙁"
684
 
700
  msgid "Log entries (%d max)"
701
  msgstr ""
702
 
703
+ #: redirection-strings.php:277
704
  msgid "Search by IP"
705
  msgstr "Cerca per IP"
706
 
707
+ #: redirection-strings.php:273
708
  msgid "Select bulk action"
709
  msgstr "Seleziona l'azione di massa"
710
 
711
+ #: redirection-strings.php:272
712
  msgid "Bulk Actions"
713
  msgstr "Azioni di massa"
714
 
715
+ #: redirection-strings.php:271
716
  msgid "Apply"
717
  msgstr "Applica"
718
 
719
+ #: redirection-strings.php:270
720
  msgid "First page"
721
  msgstr "Prima pagina"
722
 
723
+ #: redirection-strings.php:269
724
  msgid "Prev page"
725
  msgstr "Pagina precedente"
726
 
727
+ #: redirection-strings.php:268
728
  msgid "Current Page"
729
  msgstr "Pagina corrente"
730
 
731
+ #: redirection-strings.php:267
732
  msgid "of %(page)s"
733
  msgstr ""
734
 
735
+ #: redirection-strings.php:266
736
  msgid "Next page"
737
  msgstr "Prossima pagina"
738
 
739
+ #: redirection-strings.php:265
740
  msgid "Last page"
741
  msgstr "Ultima pagina"
742
 
743
+ #: redirection-strings.php:264
744
  msgid "%s item"
745
  msgid_plural "%s items"
746
  msgstr[0] "%s oggetto"
747
  msgstr[1] "%s oggetti"
748
 
749
+ #: redirection-strings.php:263
750
  msgid "Select All"
751
  msgstr "Seleziona tutto"
752
 
753
+ #: redirection-strings.php:275
754
  msgid "Sorry, something went wrong loading the data - please try again"
755
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
756
 
757
+ #: redirection-strings.php:274
758
  msgid "No results"
759
  msgstr "Nessun risultato"
760
 
761
+ #: redirection-strings.php:102
762
  msgid "Delete the logs - are you sure?"
763
  msgstr "Cancella i log - sei sicuro?"
764
 
765
+ #: redirection-strings.php:101
766
  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."
767
  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."
768
 
769
+ #: redirection-strings.php:100
770
  msgid "Yes! Delete the logs"
771
  msgstr "Sì! Cancella i log"
772
 
773
+ #: redirection-strings.php:99
774
  msgid "No! Don't delete the logs"
775
  msgstr "No! Non cancellare i log"
776
 
777
+ #: redirection-strings.php:257
778
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
779
  msgstr ""
780
 
781
+ #: redirection-strings.php:256 redirection-strings.php:258
782
  msgid "Newsletter"
783
  msgstr "Newsletter"
784
 
785
+ #: redirection-strings.php:255
786
  msgid "Want to keep up to date with changes to Redirection?"
787
  msgstr ""
788
 
789
+ #: redirection-strings.php:254
790
  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."
791
  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."
792
 
793
+ #: redirection-strings.php:253
794
  msgid "Your email address:"
795
  msgstr "Il tuo indirizzo email:"
796
 
797
+ #: redirection-strings.php:149
798
  msgid "You've supported this plugin - thank you!"
799
  msgstr "Hai già supportato questo plugin - grazie!"
800
 
801
+ #: redirection-strings.php:146
802
  msgid "You get useful software and I get to carry on making it better."
803
  msgstr ""
804
 
805
+ #: redirection-strings.php:175 redirection-strings.php:180
806
  msgid "Forever"
807
  msgstr "Per sempre"
808
 
809
+ #: redirection-strings.php:141
810
  msgid "Delete the plugin - are you sure?"
811
  msgstr "Cancella il plugin - sei sicuro?"
812
 
813
+ #: redirection-strings.php:140
814
  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."
815
  msgstr ""
816
 
817
+ #: redirection-strings.php:139
818
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
819
  msgstr ""
820
 
821
+ #: redirection-strings.php:138
822
  msgid "Yes! Delete the plugin"
823
  msgstr "Sì! Cancella il plugin"
824
 
825
+ #: redirection-strings.php:137
826
  msgid "No! Don't delete the plugin"
827
  msgstr "No! Non cancellare il plugin"
828
 
834
  msgid "Manage all your 301 redirects and monitor 404 errors"
835
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
836
 
837
+ #: redirection-strings.php:147
838
  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}}."
839
  msgstr ""
840
 
842
  msgid "Redirection Support"
843
  msgstr "Forum di supporto Redirection"
844
 
845
+ #: redirection-strings.php:58 redirection-strings.php:129
846
  msgid "Support"
847
  msgstr "Supporto"
848
 
849
+ #: redirection-strings.php:132
850
  msgid "404s"
851
  msgstr "404"
852
 
853
+ #: redirection-strings.php:133
854
  msgid "Log"
855
  msgstr "Log"
856
 
857
+ #: redirection-strings.php:143
858
  msgid "Delete Redirection"
859
  msgstr "Rimuovi Redirection"
860
 
861
+ #: redirection-strings.php:93
862
  msgid "Upload"
863
  msgstr "Carica"
864
 
865
+ #: redirection-strings.php:82
866
  msgid "Import"
867
  msgstr "Importa"
868
 
869
+ #: redirection-strings.php:150
870
  msgid "Update"
871
  msgstr "Aggiorna"
872
 
873
+ #: redirection-strings.php:156
874
  msgid "Auto-generate URL"
875
  msgstr "Genera URL automaticamente"
876
 
877
+ #: redirection-strings.php:157
878
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
879
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
880
 
881
+ #: redirection-strings.php:158
882
  msgid "RSS Token"
883
  msgstr "Token RSS"
884
 
885
+ #: redirection-strings.php:163
886
  msgid "404 Logs"
887
  msgstr "Registro 404"
888
 
889
+ #: redirection-strings.php:162 redirection-strings.php:164
890
  msgid "(time to keep logs for)"
891
  msgstr "(per quanto tempo conservare i log)"
892
 
893
+ #: redirection-strings.php:165
894
  msgid "Redirect Logs"
895
  msgstr "Registro redirezioni"
896
 
897
+ #: redirection-strings.php:166
898
  msgid "I'm a nice person and I have helped support the author of this plugin"
899
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
900
 
901
+ #: redirection-strings.php:144
902
  msgid "Plugin Support"
903
  msgstr ""
904
 
905
+ #: redirection-strings.php:59 redirection-strings.php:130
906
  msgid "Options"
907
  msgstr "Opzioni"
908
 
909
+ #: redirection-strings.php:181
910
  msgid "Two months"
911
  msgstr "Due mesi"
912
 
913
+ #: redirection-strings.php:182
914
  msgid "A month"
915
  msgstr "Un mese"
916
 
917
+ #: redirection-strings.php:176 redirection-strings.php:183
918
  msgid "A week"
919
  msgstr "Una settimana"
920
 
921
+ #: redirection-strings.php:177 redirection-strings.php:184
922
  msgid "A day"
923
  msgstr "Un giorno"
924
 
925
+ #: redirection-strings.php:185
926
  msgid "No logs"
927
  msgstr "Nessun log"
928
 
929
+ #: redirection-strings.php:103
930
  msgid "Delete All"
931
  msgstr "Elimina tutto"
932
 
933
+ #: redirection-strings.php:33
934
  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."
935
  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."
936
 
937
+ #: redirection-strings.php:34
938
  msgid "Add Group"
939
  msgstr "Aggiungi gruppo"
940
 
941
+ #: redirection-strings.php:276
942
  msgid "Search"
943
  msgstr "Cerca"
944
 
945
+ #: redirection-strings.php:63 redirection-strings.php:134
946
  msgid "Groups"
947
  msgstr "Gruppi"
948
 
949
+ #: redirection-strings.php:43 redirection-strings.php:200
950
  msgid "Save"
951
  msgstr "Salva"
952
 
953
+ #: redirection-strings.php:202
954
  msgid "Group"
955
  msgstr "Gruppo"
956
 
957
+ #: redirection-strings.php:205
958
  msgid "Match"
959
  msgstr "Match"
960
 
961
+ #: redirection-strings.php:224
962
  msgid "Add new redirection"
963
  msgstr "Aggiungi un nuovo reindirizzamento"
964
 
965
+ #: redirection-strings.php:42 redirection-strings.php:92
966
+ #: redirection-strings.php:197
967
  msgid "Cancel"
968
  msgstr "Annulla"
969
 
970
+ #: redirection-strings.php:68
971
  msgid "Download"
972
  msgstr "Scaricare"
973
 
979
  msgid "Settings"
980
  msgstr "Impostazioni"
981
 
982
+ #: redirection-strings.php:214
983
  msgid "Do nothing"
984
  msgstr "Non fare niente"
985
 
986
+ #: redirection-strings.php:215
987
  msgid "Error (404)"
988
  msgstr "Errore (404)"
989
 
990
+ #: redirection-strings.php:216
991
  msgid "Pass-through"
992
  msgstr "Pass-through"
993
 
994
+ #: redirection-strings.php:217
995
  msgid "Redirect to random post"
996
  msgstr "Reindirizza a un post a caso"
997
 
998
+ #: redirection-strings.php:218
999
  msgid "Redirect to URL"
1000
  msgstr "Reindirizza a URL"
1001
 
1003
  msgid "Invalid group when creating redirect"
1004
  msgstr "Gruppo non valido nella creazione del redirect"
1005
 
1006
+ #: redirection-strings.php:108 redirection-strings.php:117
1007
  msgid "IP"
1008
  msgstr "IP"
1009
 
1010
+ #: redirection-strings.php:110 redirection-strings.php:119
1011
+ #: redirection-strings.php:199
1012
  msgid "Source URL"
1013
  msgstr "URL di partenza"
1014
 
1015
+ #: redirection-strings.php:111 redirection-strings.php:120
1016
  msgid "Date"
1017
  msgstr "Data"
1018
 
1019
+ #: redirection-strings.php:124 redirection-strings.php:128
1020
+ #: redirection-strings.php:223
1021
  msgid "Add Redirect"
1022
  msgstr ""
1023
 
1024
+ #: redirection-strings.php:35
1025
  msgid "All modules"
1026
  msgstr "Tutti i moduli"
1027
 
1028
+ #: redirection-strings.php:48
1029
  msgid "View Redirects"
1030
  msgstr "Mostra i redirect"
1031
 
1032
+ #: redirection-strings.php:39 redirection-strings.php:44
1033
  msgid "Module"
1034
  msgstr "Modulo"
1035
 
1036
+ #: redirection-strings.php:40 redirection-strings.php:135
1037
  msgid "Redirects"
1038
  msgstr "Reindirizzamenti"
1039
 
1040
+ #: redirection-strings.php:32 redirection-strings.php:41
1041
+ #: redirection-strings.php:45
1042
  msgid "Name"
1043
  msgstr "Nome"
1044
 
1045
+ #: redirection-strings.php:262
1046
  msgid "Filter"
1047
  msgstr "Filtro"
1048
 
1049
+ #: redirection-strings.php:226
1050
  msgid "Reset hits"
1051
  msgstr ""
1052
 
1053
+ #: redirection-strings.php:37 redirection-strings.php:46
1054
+ #: redirection-strings.php:228 redirection-strings.php:244
1055
  msgid "Enable"
1056
  msgstr "Attiva"
1057
 
1058
+ #: redirection-strings.php:36 redirection-strings.php:47
1059
+ #: redirection-strings.php:227 redirection-strings.php:245
1060
  msgid "Disable"
1061
  msgstr "Disattiva"
1062
 
1063
+ #: redirection-strings.php:38 redirection-strings.php:49
1064
+ #: redirection-strings.php:107 redirection-strings.php:115
1065
+ #: redirection-strings.php:116 redirection-strings.php:125
1066
+ #: redirection-strings.php:142 redirection-strings.php:229
1067
+ #: redirection-strings.php:246
1068
  msgid "Delete"
1069
  msgstr "Rimuovi"
1070
 
1071
+ #: redirection-strings.php:50 redirection-strings.php:247
1072
  msgid "Edit"
1073
  msgstr "Modifica"
1074
 
1075
+ #: redirection-strings.php:230
1076
  msgid "Last Access"
1077
  msgstr "Ultimo accesso"
1078
 
1079
+ #: redirection-strings.php:231
1080
  msgid "Hits"
1081
  msgstr "Visite"
1082
 
1083
+ #: redirection-strings.php:233
1084
  msgid "URL"
1085
  msgstr "URL"
1086
 
1087
+ #: redirection-strings.php:234
1088
  msgid "Type"
1089
  msgstr "Tipo"
1090
 
1092
  msgid "Modified Posts"
1093
  msgstr "Post modificati"
1094
 
1095
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1096
  msgid "Redirections"
1097
  msgstr "Reindirizzamenti"
1098
 
1099
+ #: redirection-strings.php:240
1100
  msgid "User Agent"
1101
  msgstr "User agent"
1102
 
1103
+ #: matches/user-agent.php:10 redirection-strings.php:219
1104
  msgid "URL and user agent"
1105
  msgstr "URL e user agent"
1106
 
1107
+ #: redirection-strings.php:194
1108
  msgid "Target URL"
1109
  msgstr "URL di arrivo"
1110
 
1111
+ #: matches/url.php:7 redirection-strings.php:222
1112
  msgid "URL only"
1113
  msgstr "solo URL"
1114
 
1115
+ #: redirection-strings.php:198 redirection-strings.php:235
1116
+ #: redirection-strings.php:241
1117
  msgid "Regex"
1118
  msgstr "Regex"
1119
 
1120
+ #: redirection-strings.php:242
1121
  msgid "Referrer"
1122
  msgstr "Referrer"
1123
 
1124
+ #: matches/referrer.php:10 redirection-strings.php:220
1125
  msgid "URL and referrer"
1126
  msgstr "URL e referrer"
1127
 
1128
+ #: redirection-strings.php:190
1129
  msgid "Logged Out"
1130
  msgstr "Logged out"
1131
 
1132
+ #: redirection-strings.php:191
1133
  msgid "Logged In"
1134
  msgstr "Logged in"
1135
 
1136
+ #: matches/login.php:8 redirection-strings.php:221
1137
  msgid "URL and login status"
1138
  msgstr "status URL e login"
locale/redirection-ja.po CHANGED
@@ -11,120 +11,124 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
  msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
  msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
  msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
  msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
  msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
  msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
  msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
  msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
  msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
  msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
  msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
  msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
  msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
  msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
  msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
  msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
  msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
  msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
  msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
  msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
  msgstr ""
130
 
@@ -144,51 +148,51 @@ msgstr ""
144
  msgid "https://redirection.me/"
145
  msgstr "https://redirection.me/"
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  msgstr ""
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr ""
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  msgstr ""
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr "キャッシュしない"
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr "1時間"
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr "リダイレクトキャッシュ"
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr ""
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr "本当に %s からインポートしますか ?"
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr "インポートプラグイン"
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr ""
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr "全数 ="
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr "%s からインポート"
194
 
@@ -208,7 +212,7 @@ msgstr ""
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr ""
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr ""
214
 
@@ -216,67 +220,67 @@ msgstr ""
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  msgstr ""
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr "⚡️マジック修正⚡️"
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr "プラグインステータス"
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr "カスタム"
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr "モバイル"
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr "フィード読者"
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr "ライブラリ"
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr ""
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr "このグループへの変更を保存"
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr "例: \"/amp\""
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr "URL モニター"
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr "404を削除"
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr "この404エラーに対するすべてのログを削除"
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr "すべての IP %s からのものを削除"
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr "すべての \"%s\" に一致するものを削除"
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr ""
282
 
@@ -284,7 +288,7 @@ msgstr ""
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr ""
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  msgstr ""
290
 
@@ -348,23 +352,23 @@ msgstr "次のテーブルが不足しています:"
348
  msgid "All tables present"
349
  msgstr ""
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr "キャッシュされた Redirection が検知されました"
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr "このページのデータが期限切れになりました。再読込してください。"
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  msgstr "サーバーが403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"
370
 
@@ -392,15 +396,15 @@ msgstr "この原因は他のプラグインが原因で起こっている可能
392
  msgid "Loading, please wait..."
393
  msgstr "ロード中です。お待ち下さい…"
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr ""
406
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
@@ -422,240 +426,240 @@ msgstr "メール"
422
  msgid "Important details"
423
  msgstr "重要な詳細"
424
 
425
- #: redirection-strings.php:251
426
  msgid "Need help?"
427
  msgstr "ヘルプが必要ですか?"
428
 
429
- #: redirection-strings.php:248
430
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
431
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
432
 
433
- #: redirection-strings.php:231
434
  msgid "Pos"
435
  msgstr "Pos"
436
 
437
- #: redirection-strings.php:206
438
  msgid "410 - Gone"
439
  msgstr "410 - 消滅"
440
 
441
- #: redirection-strings.php:200
442
  msgid "Position"
443
  msgstr "配置"
444
 
445
- #: redirection-strings.php:154
446
  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 inserted"
447
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
448
 
449
- #: redirection-strings.php:153
450
  msgid "Apache Module"
451
  msgstr "Apache モジュール"
452
 
453
- #: redirection-strings.php:152
454
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
455
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
456
 
457
- #: redirection-strings.php:97
458
  msgid "Import to group"
459
  msgstr "グループにインポート"
460
 
461
- #: redirection-strings.php:96
462
  msgid "Import a CSV, .htaccess, or JSON file."
463
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
464
 
465
- #: redirection-strings.php:95
466
  msgid "Click 'Add File' or drag and drop here."
467
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
468
 
469
- #: redirection-strings.php:94
470
  msgid "Add File"
471
  msgstr "ファイルを追加"
472
 
473
- #: redirection-strings.php:93
474
  msgid "File selected"
475
  msgstr "選択されたファイル"
476
 
477
- #: redirection-strings.php:90
478
  msgid "Importing"
479
  msgstr "インポート中"
480
 
481
- #: redirection-strings.php:89
482
  msgid "Finished importing"
483
  msgstr "インポートが完了しました"
484
 
485
- #: redirection-strings.php:88
486
  msgid "Total redirects imported:"
487
  msgstr "インポートされたリダイレクト数: "
488
 
489
- #: redirection-strings.php:87
490
  msgid "Double-check the file is the correct format!"
491
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
492
 
493
- #: redirection-strings.php:86
494
  msgid "OK"
495
  msgstr "OK"
496
 
497
- #: redirection-strings.php:85 redirection-strings.php:195
498
  msgid "Close"
499
  msgstr "閉じる"
500
 
501
- #: redirection-strings.php:80
502
  msgid "All imports will be appended to the current database."
503
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
504
 
505
- #: redirection-strings.php:78 redirection-strings.php:105
506
  msgid "Export"
507
  msgstr "エクスポート"
508
 
509
- #: redirection-strings.php:77
510
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
511
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
512
 
513
- #: redirection-strings.php:76
514
  msgid "Everything"
515
  msgstr "すべて"
516
 
517
- #: redirection-strings.php:75
518
  msgid "WordPress redirects"
519
  msgstr "WordPress リダイレクト"
520
 
521
- #: redirection-strings.php:74
522
  msgid "Apache redirects"
523
  msgstr "Apache リダイレクト"
524
 
525
- #: redirection-strings.php:73
526
  msgid "Nginx redirects"
527
  msgstr "Nginx リダイレクト"
528
 
529
- #: redirection-strings.php:72
530
  msgid "CSV"
531
  msgstr "CSV"
532
 
533
- #: redirection-strings.php:71
534
  msgid "Apache .htaccess"
535
  msgstr "Apache .htaccess"
536
 
537
- #: redirection-strings.php:70
538
  msgid "Nginx rewrite rules"
539
  msgstr "Nginx のリライトルール"
540
 
541
- #: redirection-strings.php:69
542
  msgid "Redirection JSON"
543
  msgstr "Redirection JSON"
544
 
545
- #: redirection-strings.php:68
546
  msgid "View"
547
  msgstr "表示"
548
 
549
- #: redirection-strings.php:66
550
  msgid "Log files can be exported from the log pages."
551
  msgstr "ログファイルはログページにてエクスポート出来ます。"
552
 
553
- #: redirection-strings.php:61 redirection-strings.php:130
554
  msgid "Import/Export"
555
  msgstr "インポート / エクスポート"
556
 
557
- #: redirection-strings.php:60
558
  msgid "Logs"
559
  msgstr "ログ"
560
 
561
- #: redirection-strings.php:59
562
  msgid "404 errors"
563
  msgstr "404 エラー"
564
 
565
- #: redirection-strings.php:50
566
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
567
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
568
 
569
- #: redirection-strings.php:147
570
  msgid "I'd like to support some more."
571
  msgstr "もっとサポートがしたいです。"
572
 
573
- #: redirection-strings.php:144
574
  msgid "Support 💰"
575
  msgstr "サポート💰"
576
 
577
- #: redirection-strings.php:291
578
  msgid "Redirection saved"
579
  msgstr "リダイレクトが保存されました"
580
 
581
- #: redirection-strings.php:290
582
  msgid "Log deleted"
583
  msgstr "ログが削除されました"
584
 
585
- #: redirection-strings.php:289
586
  msgid "Settings saved"
587
  msgstr "設定が保存されました"
588
 
589
- #: redirection-strings.php:288
590
  msgid "Group saved"
591
  msgstr "グループが保存されました"
592
 
593
- #: redirection-strings.php:287
594
  msgid "Are you sure you want to delete this item?"
595
  msgid_plural "Are you sure you want to delete these items?"
596
  msgstr[0] "本当に削除してもよろしいですか?"
597
 
598
- #: redirection-strings.php:242
599
  msgid "pass"
600
  msgstr "パス"
601
 
602
- #: redirection-strings.php:224
603
  msgid "All groups"
604
  msgstr "すべてのグループ"
605
 
606
- #: redirection-strings.php:212
607
  msgid "301 - Moved Permanently"
608
  msgstr "301 - 恒久的に移動"
609
 
610
- #: redirection-strings.php:211
611
  msgid "302 - Found"
612
  msgstr "302 - 発見"
613
 
614
- #: redirection-strings.php:210
615
  msgid "307 - Temporary Redirect"
616
  msgstr "307 - 一時リダイレクト"
617
 
618
- #: redirection-strings.php:209
619
  msgid "308 - Permanent Redirect"
620
  msgstr "308 - 恒久リダイレクト"
621
 
622
- #: redirection-strings.php:208
623
  msgid "401 - Unauthorized"
624
  msgstr "401 - 認証が必要"
625
 
626
- #: redirection-strings.php:207
627
  msgid "404 - Not Found"
628
  msgstr "404 - 未検出"
629
 
630
- #: redirection-strings.php:205
631
  msgid "Title"
632
  msgstr "タイトル"
633
 
634
- #: redirection-strings.php:203
635
  msgid "When matched"
636
  msgstr "マッチした時"
637
 
638
- #: redirection-strings.php:202
639
  msgid "with HTTP code"
640
  msgstr "次の HTTP コードと共に"
641
 
642
- #: redirection-strings.php:194
643
  msgid "Show advanced options"
644
  msgstr "高度な設定を表示"
645
 
646
- #: redirection-strings.php:188 redirection-strings.php:192
647
  msgid "Matched Target"
648
  msgstr "見つかったターゲット"
649
 
650
- #: redirection-strings.php:187 redirection-strings.php:191
651
  msgid "Unmatched Target"
652
  msgstr "ターゲットが見つかりません"
653
 
654
- #: redirection-strings.php:185 redirection-strings.php:186
655
  msgid "Saving..."
656
  msgstr "保存中…"
657
 
658
- #: redirection-strings.php:135
659
  msgid "View notice"
660
  msgstr "通知を見る"
661
 
@@ -675,7 +679,7 @@ msgstr "不正なリダイレクトマッチャー"
675
  msgid "Unable to add new redirect"
676
  msgstr "新しいリダイレクトの追加に失敗しました"
677
 
678
- #: redirection-strings.php:12 redirection-strings.php:54
679
  msgid "Something went wrong 🙁"
680
  msgstr "問題が発生しました"
681
 
@@ -695,128 +699,128 @@ msgstr "もしその問題と同じ問題が {{link}}Redirection issues{{/link}}
695
  msgid "Log entries (%d max)"
696
  msgstr "ログ (最大 %d)"
697
 
698
- #: redirection-strings.php:276
699
  msgid "Search by IP"
700
  msgstr "IP による検索"
701
 
702
- #: redirection-strings.php:272
703
  msgid "Select bulk action"
704
  msgstr "一括操作を選択"
705
 
706
- #: redirection-strings.php:271
707
  msgid "Bulk Actions"
708
  msgstr "一括操作"
709
 
710
- #: redirection-strings.php:270
711
  msgid "Apply"
712
  msgstr "適応"
713
 
714
- #: redirection-strings.php:269
715
  msgid "First page"
716
  msgstr "最初のページ"
717
 
718
- #: redirection-strings.php:268
719
  msgid "Prev page"
720
  msgstr "前のページ"
721
 
722
- #: redirection-strings.php:267
723
  msgid "Current Page"
724
  msgstr "現在のページ"
725
 
726
- #: redirection-strings.php:266
727
  msgid "of %(page)s"
728
  msgstr "%(page)s"
729
 
730
- #: redirection-strings.php:265
731
  msgid "Next page"
732
  msgstr "次のページ"
733
 
734
- #: redirection-strings.php:264
735
  msgid "Last page"
736
  msgstr "最後のページ"
737
 
738
- #: redirection-strings.php:263
739
  msgid "%s item"
740
  msgid_plural "%s items"
741
  msgstr[0] "%s 個のアイテム"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "すべて選択"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "結果なし"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "本当にログを消去しますか ?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "ログを消去する"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "ログを消去しない"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "ニュースレター"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "メールアドレス: "
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "永久に"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "本当にプラグインを削除しますか ?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "プラグインを消去する"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "プラグインを消去しない"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection プラグインは無料でお使いいただけます。し
836
  msgid "Redirection Support"
837
  msgstr "Redirection を応援する"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "作者を応援 "
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404 エラー"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "ログ"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "転送ルールを削除"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "アップロード"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "インポート"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "更新"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "URL を自動生成 "
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "RSS トークン"
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "404 ログ"
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(ログの保存期間)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "転送ログ"
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "このプラグインの作者に対する援助を行いました"
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "プラグインサポート"
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "設定"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "2ヶ月"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "1ヶ月"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "1週間"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "1日"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "ログなし"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "すべてを削除"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "グループを追加"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "検索"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "グループ"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "保存"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "グループ"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "一致条件"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "新しい転送ルールを追加"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "キャンセル"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "ダウンロード"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "設定"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "何もしない"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "エラー (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "通過"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "ランダムな記事へ転送"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "URL へ転送"
995
 
@@ -997,88 +1001,88 @@ msgstr "URL へ転送"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "ソース URL"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "日付"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "転送ルールを追加"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "すべてのモジュール"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "転送ルールを表示"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "モジュール"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "転送ルール"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "名称"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "フィルター"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "訪問数をリセット"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "有効化"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "無効化"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "削除"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "編集"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "前回のアクセス"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "ヒット数"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "タイプ"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "タイプ"
1086
  msgid "Modified Posts"
1087
  msgstr "編集済みの投稿"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "転送ルール"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "ユーザーエージェント"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL およびユーザーエージェント"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "ターゲット URL"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "URL のみ"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "正規表現"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "リファラー"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL およびリファラー"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "ログアウト中"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "ログイン中"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  msgstr "URL およびログイン状態"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr ""
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
  msgstr ""
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
  msgstr ""
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
  msgstr ""
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
  msgstr ""
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
  msgstr ""
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
  msgstr ""
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
  msgstr ""
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
  msgstr ""
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
  msgstr ""
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
  msgstr ""
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
  msgstr ""
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
  msgstr ""
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
  msgstr ""
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
  msgstr ""
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
  msgstr ""
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
  msgstr ""
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
  msgstr ""
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
  msgstr ""
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
  msgstr ""
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
  msgstr ""
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
  msgstr ""
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
  msgstr ""
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
  msgstr ""
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
  msgstr ""
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
  msgstr ""
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
  msgstr ""
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
  msgstr ""
134
 
148
  msgid "https://redirection.me/"
149
  msgstr "https://redirection.me/"
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr "キャッシュしない"
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr "1時間"
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr "リダイレクトキャッシュ"
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr "本当に %s からインポートしますか ?"
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr "インポートプラグイン"
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr "全数 ="
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr "%s からインポート"
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr ""
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr "⚡️マジック修正⚡️"
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr "プラグインステータス"
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr "カスタム"
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr "モバイル"
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr "フィード読者"
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr "ライブラリ"
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr "このグループへの変更を保存"
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr "例: \"/amp\""
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr "URL モニター"
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr "404を削除"
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr "この404エラーに対するすべてのログを削除"
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr "すべての IP %s からのものを削除"
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr "すべての \"%s\" に一致するものを削除"
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr ""
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr ""
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  msgstr ""
294
 
352
  msgid "All tables present"
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr "キャッシュされた Redirection が検知されました"
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr "このページのデータが期限切れになりました。再読込してください。"
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  msgstr "サーバーが403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "ロード中です。お待ち下さい…"
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr ""
410
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
426
  msgid "Important details"
427
  msgstr "重要な詳細"
428
 
429
+ #: redirection-strings.php:252
430
  msgid "Need help?"
431
  msgstr "ヘルプが必要ですか?"
432
 
433
+ #: redirection-strings.php:249
434
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
435
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
436
 
437
+ #: redirection-strings.php:232
438
  msgid "Pos"
439
  msgstr "Pos"
440
 
441
+ #: redirection-strings.php:207
442
  msgid "410 - Gone"
443
  msgstr "410 - 消滅"
444
 
445
+ #: redirection-strings.php:201
446
  msgid "Position"
447
  msgstr "配置"
448
 
449
+ #: redirection-strings.php:155
450
  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 inserted"
451
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
452
 
453
+ #: redirection-strings.php:154
454
  msgid "Apache Module"
455
  msgstr "Apache モジュール"
456
 
457
+ #: redirection-strings.php:153
458
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
459
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
460
 
461
+ #: redirection-strings.php:98
462
  msgid "Import to group"
463
  msgstr "グループにインポート"
464
 
465
+ #: redirection-strings.php:97
466
  msgid "Import a CSV, .htaccess, or JSON file."
467
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
468
 
469
+ #: redirection-strings.php:96
470
  msgid "Click 'Add File' or drag and drop here."
471
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
472
 
473
+ #: redirection-strings.php:95
474
  msgid "Add File"
475
  msgstr "ファイルを追加"
476
 
477
+ #: redirection-strings.php:94
478
  msgid "File selected"
479
  msgstr "選択されたファイル"
480
 
481
+ #: redirection-strings.php:91
482
  msgid "Importing"
483
  msgstr "インポート中"
484
 
485
+ #: redirection-strings.php:90
486
  msgid "Finished importing"
487
  msgstr "インポートが完了しました"
488
 
489
+ #: redirection-strings.php:89
490
  msgid "Total redirects imported:"
491
  msgstr "インポートされたリダイレクト数: "
492
 
493
+ #: redirection-strings.php:88
494
  msgid "Double-check the file is the correct format!"
495
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
496
 
497
+ #: redirection-strings.php:87
498
  msgid "OK"
499
  msgstr "OK"
500
 
501
+ #: redirection-strings.php:86 redirection-strings.php:196
502
  msgid "Close"
503
  msgstr "閉じる"
504
 
505
+ #: redirection-strings.php:81
506
  msgid "All imports will be appended to the current database."
507
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
508
 
509
+ #: redirection-strings.php:79 redirection-strings.php:106
510
  msgid "Export"
511
  msgstr "エクスポート"
512
 
513
+ #: redirection-strings.php:78
514
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
515
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
516
 
517
+ #: redirection-strings.php:77
518
  msgid "Everything"
519
  msgstr "すべて"
520
 
521
+ #: redirection-strings.php:76
522
  msgid "WordPress redirects"
523
  msgstr "WordPress リダイレクト"
524
 
525
+ #: redirection-strings.php:75
526
  msgid "Apache redirects"
527
  msgstr "Apache リダイレクト"
528
 
529
+ #: redirection-strings.php:74
530
  msgid "Nginx redirects"
531
  msgstr "Nginx リダイレクト"
532
 
533
+ #: redirection-strings.php:73
534
  msgid "CSV"
535
  msgstr "CSV"
536
 
537
+ #: redirection-strings.php:72
538
  msgid "Apache .htaccess"
539
  msgstr "Apache .htaccess"
540
 
541
+ #: redirection-strings.php:71
542
  msgid "Nginx rewrite rules"
543
  msgstr "Nginx のリライトルール"
544
 
545
+ #: redirection-strings.php:70
546
  msgid "Redirection JSON"
547
  msgstr "Redirection JSON"
548
 
549
+ #: redirection-strings.php:69
550
  msgid "View"
551
  msgstr "表示"
552
 
553
+ #: redirection-strings.php:67
554
  msgid "Log files can be exported from the log pages."
555
  msgstr "ログファイルはログページにてエクスポート出来ます。"
556
 
557
+ #: redirection-strings.php:62 redirection-strings.php:131
558
  msgid "Import/Export"
559
  msgstr "インポート / エクスポート"
560
 
561
+ #: redirection-strings.php:61
562
  msgid "Logs"
563
  msgstr "ログ"
564
 
565
+ #: redirection-strings.php:60
566
  msgid "404 errors"
567
  msgstr "404 エラー"
568
 
569
+ #: redirection-strings.php:51
570
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
571
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
572
 
573
+ #: redirection-strings.php:148
574
  msgid "I'd like to support some more."
575
  msgstr "もっとサポートがしたいです。"
576
 
577
+ #: redirection-strings.php:145
578
  msgid "Support 💰"
579
  msgstr "サポート💰"
580
 
581
+ #: redirection-strings.php:292
582
  msgid "Redirection saved"
583
  msgstr "リダイレクトが保存されました"
584
 
585
+ #: redirection-strings.php:291
586
  msgid "Log deleted"
587
  msgstr "ログが削除されました"
588
 
589
+ #: redirection-strings.php:290
590
  msgid "Settings saved"
591
  msgstr "設定が保存されました"
592
 
593
+ #: redirection-strings.php:289
594
  msgid "Group saved"
595
  msgstr "グループが保存されました"
596
 
597
+ #: redirection-strings.php:288
598
  msgid "Are you sure you want to delete this item?"
599
  msgid_plural "Are you sure you want to delete these items?"
600
  msgstr[0] "本当に削除してもよろしいですか?"
601
 
602
+ #: redirection-strings.php:243
603
  msgid "pass"
604
  msgstr "パス"
605
 
606
+ #: redirection-strings.php:225
607
  msgid "All groups"
608
  msgstr "すべてのグループ"
609
 
610
+ #: redirection-strings.php:213
611
  msgid "301 - Moved Permanently"
612
  msgstr "301 - 恒久的に移動"
613
 
614
+ #: redirection-strings.php:212
615
  msgid "302 - Found"
616
  msgstr "302 - 発見"
617
 
618
+ #: redirection-strings.php:211
619
  msgid "307 - Temporary Redirect"
620
  msgstr "307 - 一時リダイレクト"
621
 
622
+ #: redirection-strings.php:210
623
  msgid "308 - Permanent Redirect"
624
  msgstr "308 - 恒久リダイレクト"
625
 
626
+ #: redirection-strings.php:209
627
  msgid "401 - Unauthorized"
628
  msgstr "401 - 認証が必要"
629
 
630
+ #: redirection-strings.php:208
631
  msgid "404 - Not Found"
632
  msgstr "404 - 未検出"
633
 
634
+ #: redirection-strings.php:206
635
  msgid "Title"
636
  msgstr "タイトル"
637
 
638
+ #: redirection-strings.php:204
639
  msgid "When matched"
640
  msgstr "マッチした時"
641
 
642
+ #: redirection-strings.php:203
643
  msgid "with HTTP code"
644
  msgstr "次の HTTP コードと共に"
645
 
646
+ #: redirection-strings.php:195
647
  msgid "Show advanced options"
648
  msgstr "高度な設定を表示"
649
 
650
+ #: redirection-strings.php:189 redirection-strings.php:193
651
  msgid "Matched Target"
652
  msgstr "見つかったターゲット"
653
 
654
+ #: redirection-strings.php:188 redirection-strings.php:192
655
  msgid "Unmatched Target"
656
  msgstr "ターゲットが見つかりません"
657
 
658
+ #: redirection-strings.php:186 redirection-strings.php:187
659
  msgid "Saving..."
660
  msgstr "保存中…"
661
 
662
+ #: redirection-strings.php:136
663
  msgid "View notice"
664
  msgstr "通知を見る"
665
 
679
  msgid "Unable to add new redirect"
680
  msgstr "新しいリダイレクトの追加に失敗しました"
681
 
682
+ #: redirection-strings.php:12 redirection-strings.php:55
683
  msgid "Something went wrong 🙁"
684
  msgstr "問題が発生しました"
685
 
699
  msgid "Log entries (%d max)"
700
  msgstr "ログ (最大 %d)"
701
 
702
+ #: redirection-strings.php:277
703
  msgid "Search by IP"
704
  msgstr "IP による検索"
705
 
706
+ #: redirection-strings.php:273
707
  msgid "Select bulk action"
708
  msgstr "一括操作を選択"
709
 
710
+ #: redirection-strings.php:272
711
  msgid "Bulk Actions"
712
  msgstr "一括操作"
713
 
714
+ #: redirection-strings.php:271
715
  msgid "Apply"
716
  msgstr "適応"
717
 
718
+ #: redirection-strings.php:270
719
  msgid "First page"
720
  msgstr "最初のページ"
721
 
722
+ #: redirection-strings.php:269
723
  msgid "Prev page"
724
  msgstr "前のページ"
725
 
726
+ #: redirection-strings.php:268
727
  msgid "Current Page"
728
  msgstr "現在のページ"
729
 
730
+ #: redirection-strings.php:267
731
  msgid "of %(page)s"
732
  msgstr "%(page)s"
733
 
734
+ #: redirection-strings.php:266
735
  msgid "Next page"
736
  msgstr "次のページ"
737
 
738
+ #: redirection-strings.php:265
739
  msgid "Last page"
740
  msgstr "最後のページ"
741
 
742
+ #: redirection-strings.php:264
743
  msgid "%s item"
744
  msgid_plural "%s items"
745
  msgstr[0] "%s 個のアイテム"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "すべて選択"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "結果なし"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "本当にログを消去しますか ?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "ログを消去する"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "ログを消去しない"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "ニュースレター"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "メールアドレス: "
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "永久に"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "本当にプラグインを削除しますか ?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "プラグインを消去する"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "プラグインを消去しない"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
838
 
840
  msgid "Redirection Support"
841
  msgstr "Redirection を応援する"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "作者を応援 "
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404 エラー"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "ログ"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "転送ルールを削除"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "アップロード"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "インポート"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "更新"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "URL を自動生成 "
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "RSS トークン"
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "404 ログ"
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(ログの保存期間)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "転送ログ"
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "このプラグインの作者に対する援助を行いました"
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "プラグインサポート"
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "設定"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "2ヶ月"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "1ヶ月"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "1週間"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "1日"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "ログなし"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "すべてを削除"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "グループを追加"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "検索"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "グループ"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "保存"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "グループ"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "一致条件"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "新しい転送ルールを追加"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "キャンセル"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "ダウンロード"
971
 
977
  msgid "Settings"
978
  msgstr "設定"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "何もしない"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "エラー (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "通過"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "ランダムな記事へ転送"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "URL へ転送"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "ソース URL"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "日付"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "転送ルールを追加"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "すべてのモジュール"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "転送ルールを表示"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "モジュール"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "転送ルール"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "名称"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "フィルター"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "訪問数をリセット"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "有効化"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "無効化"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "削除"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "編集"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "前回のアクセス"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "ヒット数"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "タイプ"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "編集済みの投稿"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "転送ルール"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "ユーザーエージェント"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL およびユーザーエージェント"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "ターゲット URL"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "URL のみ"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "正規表現"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "リファラー"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL およびリファラー"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "ログアウト中"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "ログイン中"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  msgstr "URL およびログイン状態"
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-01-02 07:59:05+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,184 +11,188 @@ msgstr ""
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
14
  #. Author URI of the plugin/theme
15
  msgid "https://johngodley.com"
16
- msgstr ""
17
 
18
- #: redirection-strings.php:286
19
  msgid "Useragent Error"
20
- msgstr ""
21
 
22
- #: redirection-strings.php:284
23
  msgid "Unknown Useragent"
24
- msgstr ""
25
 
26
- #: redirection-strings.php:283
27
  msgid "Device"
28
- msgstr ""
29
 
30
- #: redirection-strings.php:282
31
  msgid "Operating System"
32
- msgstr ""
33
 
34
- #: redirection-strings.php:281
35
  msgid "Browser"
36
- msgstr ""
37
 
38
- #: redirection-strings.php:280
39
  msgid "Engine"
40
- msgstr ""
41
 
42
- #: redirection-strings.php:279
43
  msgid "Useragent"
44
- msgstr ""
45
 
46
- #: redirection-strings.php:278
47
  msgid "Agent"
48
- msgstr ""
49
 
50
- #: redirection-strings.php:173
51
  msgid "No IP logging"
52
- msgstr ""
53
 
54
- #: redirection-strings.php:172
55
  msgid "Full IP logging"
56
- msgstr ""
57
 
58
- #: redirection-strings.php:171
59
  msgid "Anonymize IP (mask last part)"
60
- msgstr ""
61
 
62
- #: redirection-strings.php:166
63
  msgid "Monitor changes to %(type)s"
64
- msgstr ""
65
 
66
- #: redirection-strings.php:160
67
  msgid "IP Logging"
68
- msgstr ""
69
 
70
- #: redirection-strings.php:159
71
  msgid "(select IP logging level)"
72
- msgstr ""
73
 
74
- #: redirection-strings.php:113 redirection-strings.php:122
75
  msgid "Geo Info"
76
- msgstr ""
77
 
78
- #: redirection-strings.php:112 redirection-strings.php:121
79
  msgid "Agent Info"
80
- msgstr ""
81
 
82
- #: redirection-strings.php:111 redirection-strings.php:120
83
  msgid "Filter by IP"
84
- msgstr ""
85
 
86
- #: redirection-strings.php:108 redirection-strings.php:117
87
  msgid "Referrer / User Agent"
88
- msgstr ""
89
 
90
- #: redirection-strings.php:30
91
  msgid "Geo IP Error"
92
- msgstr ""
93
 
94
- #: redirection-strings.php:29 redirection-strings.php:285
95
  msgid "Something went wrong obtaining this information"
96
- msgstr ""
97
 
98
- #: redirection-strings.php:27
99
  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."
100
- msgstr ""
101
 
102
- #: redirection-strings.php:25
103
  msgid "No details are known for this address."
104
- msgstr ""
105
 
106
- #: redirection-strings.php:24 redirection-strings.php:26
107
- #: redirection-strings.php:28
108
  msgid "Geo IP"
109
- msgstr ""
110
 
111
- #: redirection-strings.php:23
112
  msgid "City"
113
- msgstr ""
114
 
115
- #: redirection-strings.php:22
116
  msgid "Area"
117
- msgstr ""
118
 
119
- #: redirection-strings.php:21
120
  msgid "Timezone"
121
- msgstr ""
122
 
123
- #: redirection-strings.php:20
124
  msgid "Geo Location"
125
- msgstr ""
126
 
127
- #: redirection-strings.php:19 redirection-strings.php:277
128
  msgid "Powered by {{link}}redirect.li{{/link}}"
129
- msgstr ""
130
 
131
  #: redirection-settings.php:7
132
  msgid "Trash"
133
- msgstr ""
134
 
135
  #: redirection-admin.php:307
136
  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"
137
- msgstr ""
138
 
139
  #: redirection-admin.php:203
140
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
141
- msgstr ""
142
 
143
  #. Plugin URI of the plugin/theme
144
  msgid "https://redirection.me/"
145
  msgstr "https://redirection.me/"
146
 
147
- #: redirection-strings.php:250
148
  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."
149
  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."
150
 
151
- #: redirection-strings.php:249
152
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
153
  msgstr "Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."
154
 
155
- #: redirection-strings.php:247
156
  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!"
157
  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!"
158
 
159
- #: redirection-strings.php:178
160
  msgid "Never cache"
161
  msgstr "Använd aldrig cache"
162
 
163
- #: redirection-strings.php:177
164
  msgid "An hour"
165
  msgstr "En timma"
166
 
167
- #: redirection-strings.php:151
168
  msgid "Redirect Cache"
169
  msgstr "Omdirigera cache"
170
 
171
- #: redirection-strings.php:150
172
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
173
  msgstr "Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"
174
 
175
- #: redirection-strings.php:84
176
  msgid "Are you sure you want to import from %s?"
177
  msgstr "Är du säker på att du vill importera från %s?"
178
 
179
- #: redirection-strings.php:83
180
  msgid "Plugin Importers"
181
  msgstr "Tilläggsimporterare"
182
 
183
- #: redirection-strings.php:82
184
  msgid "The following redirect plugins were detected on your site and can be imported from."
185
  msgstr "Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."
186
 
187
- #: redirection-strings.php:65
188
  msgid "total = "
189
  msgstr "totalt ="
190
 
191
- #: redirection-strings.php:64
192
  msgid "Import from %s"
193
  msgstr "Importera från %s"
194
 
@@ -208,7 +212,7 @@ msgstr "Redirection kräver WordPress version %1s, du använder version %2s &mda
208
  msgid "Default WordPress \"old slugs\""
209
  msgstr "WordPress standard ”gamla permalänkar”"
210
 
211
- #: redirection-strings.php:167
212
  msgid "Create associated redirect (added to end of URL)"
213
  msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
214
 
@@ -216,67 +220,67 @@ msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
216
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
217
  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."
218
 
219
- #: redirection-strings.php:260
220
  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."
221
  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."
222
 
223
- #: redirection-strings.php:259
224
  msgid "⚡️ Magic fix ⚡️"
225
  msgstr "⚡️ Magisk fix ⚡️"
226
 
227
- #: redirection-strings.php:258
228
  msgid "Plugin Status"
229
  msgstr "Tilläggsstatus"
230
 
231
- #: redirection-strings.php:238
232
  msgid "Custom"
233
  msgstr "Anpassad"
234
 
235
- #: redirection-strings.php:237
236
  msgid "Mobile"
237
  msgstr "Mobil"
238
 
239
- #: redirection-strings.php:236
240
  msgid "Feed Readers"
241
  msgstr "Feedläsare"
242
 
243
- #: redirection-strings.php:235
244
  msgid "Libraries"
245
  msgstr "Bibliotek"
246
 
247
- #: redirection-strings.php:170
248
  msgid "URL Monitor Changes"
249
  msgstr "Övervaka URL-ändringar"
250
 
251
- #: redirection-strings.php:169
252
  msgid "Save changes to this group"
253
  msgstr "Spara ändringar till den här gruppen"
254
 
255
- #: redirection-strings.php:168
256
  msgid "For example \"/amp\""
257
  msgstr "Till exempel ”/amp”"
258
 
259
- #: redirection-strings.php:158
260
  msgid "URL Monitor"
261
  msgstr "URL-övervakning"
262
 
263
- #: redirection-strings.php:126
264
  msgid "Delete 404s"
265
  msgstr "Radera 404:or"
266
 
267
- #: redirection-strings.php:125
268
  msgid "Delete all logs for this 404"
269
  msgstr "Radera alla loggar för denna 404"
270
 
271
- #: redirection-strings.php:104
272
  msgid "Delete all from IP %s"
273
  msgstr "Ta bort allt från IP-numret %s"
274
 
275
- #: redirection-strings.php:103
276
  msgid "Delete all matching \"%s\""
277
  msgstr "Ta bort allt som matchar \"%s\""
278
 
279
- #: redirection-strings.php:15
280
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
281
  msgstr "Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."
282
 
@@ -284,7 +288,7 @@ msgstr "Din server har nekat begäran för att den var för stor. Du måste änd
284
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
285
  msgstr "Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"
286
 
287
- #: redirection-admin.php:304 redirection-strings.php:52
288
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
289
  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."
290
 
@@ -348,23 +352,23 @@ msgstr "Följande tabeller saknas:"
348
  msgid "All tables present"
349
  msgstr "Alla tabeller närvarande"
350
 
351
- #: redirection-strings.php:56
352
  msgid "Cached Redirection detected"
353
  msgstr "En cachad version av Redirection upptäcktes"
354
 
355
- #: redirection-strings.php:55
356
  msgid "Please clear your browser cache and reload this page."
357
  msgstr "Vänligen rensa din webbläsares cache och ladda om denna sida."
358
 
359
- #: redirection-strings.php:18
360
  msgid "The data on this page has expired, please reload."
361
  msgstr "Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."
362
 
363
- #: redirection-strings.php:17
364
  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."
365
  msgstr "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."
366
 
367
- #: redirection-strings.php:16
368
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
369
  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?"
370
 
@@ -392,15 +396,15 @@ msgstr "Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares f
392
  msgid "Loading, please wait..."
393
  msgstr "Laddar, vänligen vänta..."
394
 
395
- #: redirection-strings.php:79
396
  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)."
397
  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)."
398
 
399
- #: redirection-strings.php:53
400
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
401
  msgstr "Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."
402
 
403
- #: redirection-strings.php:51
404
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
405
  msgstr "Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."
406
 
@@ -420,241 +424,241 @@ msgstr "E-post"
420
  msgid "Important details"
421
  msgstr "Viktiga detaljer"
422
 
423
- #: redirection-strings.php:251
424
  msgid "Need help?"
425
  msgstr "Behöver du hjälp?"
426
 
427
- #: redirection-strings.php:248
428
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
429
  msgstr "Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."
430
 
431
- #: redirection-strings.php:231
432
  msgid "Pos"
433
  msgstr "Pos"
434
 
435
- #: redirection-strings.php:206
436
  msgid "410 - Gone"
437
  msgstr "410 - Borttagen"
438
 
439
- #: redirection-strings.php:200
440
  msgid "Position"
441
  msgstr "Position"
442
 
443
- #: redirection-strings.php:154
444
  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 inserted"
445
  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"
446
 
447
- #: redirection-strings.php:153
448
  msgid "Apache Module"
449
  msgstr "Apache-modul"
450
 
451
- #: redirection-strings.php:152
452
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
453
  msgstr "Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."
454
 
455
- #: redirection-strings.php:97
456
  msgid "Import to group"
457
  msgstr "Importera till grupp"
458
 
459
- #: redirection-strings.php:96
460
  msgid "Import a CSV, .htaccess, or JSON file."
461
  msgstr "Importera en CSV-fil, .htaccess-fil eller JSON-fil."
462
 
463
- #: redirection-strings.php:95
464
  msgid "Click 'Add File' or drag and drop here."
465
  msgstr "Klicka på 'Lägg till fil' eller dra och släpp en fil här."
466
 
467
- #: redirection-strings.php:94
468
  msgid "Add File"
469
  msgstr "Lägg till fil"
470
 
471
- #: redirection-strings.php:93
472
  msgid "File selected"
473
  msgstr "Fil vald"
474
 
475
- #: redirection-strings.php:90
476
  msgid "Importing"
477
  msgstr "Importerar"
478
 
479
- #: redirection-strings.php:89
480
  msgid "Finished importing"
481
  msgstr "Importering klar"
482
 
483
- #: redirection-strings.php:88
484
  msgid "Total redirects imported:"
485
  msgstr "Antal omdirigeringar importerade:"
486
 
487
- #: redirection-strings.php:87
488
  msgid "Double-check the file is the correct format!"
489
  msgstr "Dubbelkolla att filen är i rätt format!"
490
 
491
- #: redirection-strings.php:86
492
  msgid "OK"
493
  msgstr "OK"
494
 
495
- #: redirection-strings.php:85 redirection-strings.php:195
496
  msgid "Close"
497
  msgstr "Stäng"
498
 
499
- #: redirection-strings.php:80
500
  msgid "All imports will be appended to the current database."
501
  msgstr "All importerade omdirigeringar kommer infogas till den aktuella databasen."
502
 
503
- #: redirection-strings.php:78 redirection-strings.php:105
504
  msgid "Export"
505
  msgstr "Exportera"
506
 
507
- #: redirection-strings.php:77
508
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
509
  msgstr "Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."
510
 
511
- #: redirection-strings.php:76
512
  msgid "Everything"
513
  msgstr "Allt"
514
 
515
- #: redirection-strings.php:75
516
  msgid "WordPress redirects"
517
  msgstr "WordPress omdirigeringar"
518
 
519
- #: redirection-strings.php:74
520
  msgid "Apache redirects"
521
  msgstr "Apache omdirigeringar"
522
 
523
- #: redirection-strings.php:73
524
  msgid "Nginx redirects"
525
  msgstr "Nginx omdirigeringar"
526
 
527
- #: redirection-strings.php:72
528
  msgid "CSV"
529
  msgstr "CSV"
530
 
531
- #: redirection-strings.php:71
532
  msgid "Apache .htaccess"
533
  msgstr "Apache .htaccess"
534
 
535
- #: redirection-strings.php:70
536
  msgid "Nginx rewrite rules"
537
  msgstr "Nginx omskrivningsregler"
538
 
539
- #: redirection-strings.php:69
540
  msgid "Redirection JSON"
541
  msgstr "JSON omdirigeringar"
542
 
543
- #: redirection-strings.php:68
544
  msgid "View"
545
  msgstr "Visa"
546
 
547
- #: redirection-strings.php:66
548
  msgid "Log files can be exported from the log pages."
549
  msgstr "Loggfiler kan exporteras från loggsidorna."
550
 
551
- #: redirection-strings.php:61 redirection-strings.php:130
552
  msgid "Import/Export"
553
  msgstr "Importera/Exportera"
554
 
555
- #: redirection-strings.php:60
556
  msgid "Logs"
557
  msgstr "Loggar"
558
 
559
- #: redirection-strings.php:59
560
  msgid "404 errors"
561
  msgstr "404-fel"
562
 
563
- #: redirection-strings.php:50
564
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
565
  msgstr "Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"
566
 
567
- #: redirection-strings.php:147
568
  msgid "I'd like to support some more."
569
  msgstr "Jag skulle vilja stödja lite till."
570
 
571
- #: redirection-strings.php:144
572
  msgid "Support 💰"
573
  msgstr "Support 💰"
574
 
575
- #: redirection-strings.php:291
576
  msgid "Redirection saved"
577
  msgstr "Omdirigering sparad"
578
 
579
- #: redirection-strings.php:290
580
  msgid "Log deleted"
581
  msgstr "Logginlägg raderades"
582
 
583
- #: redirection-strings.php:289
584
  msgid "Settings saved"
585
  msgstr "Inställning sparad"
586
 
587
- #: redirection-strings.php:288
588
  msgid "Group saved"
589
  msgstr "Grupp sparad"
590
 
591
- #: redirection-strings.php:287
592
  msgid "Are you sure you want to delete this item?"
593
  msgid_plural "Are you sure you want to delete these items?"
594
  msgstr[0] "Är du säker på att du vill radera detta objekt?"
595
  msgstr[1] "Är du säker på att du vill radera dessa objekt?"
596
 
597
- #: redirection-strings.php:242
598
  msgid "pass"
599
  msgstr "lösen"
600
 
601
- #: redirection-strings.php:224
602
  msgid "All groups"
603
  msgstr "Alla grupper"
604
 
605
- #: redirection-strings.php:212
606
  msgid "301 - Moved Permanently"
607
  msgstr "301 - Flyttad permanent"
608
 
609
- #: redirection-strings.php:211
610
  msgid "302 - Found"
611
  msgstr "302 - Hittad"
612
 
613
- #: redirection-strings.php:210
614
  msgid "307 - Temporary Redirect"
615
  msgstr "307 - Tillfällig omdirigering"
616
 
617
- #: redirection-strings.php:209
618
  msgid "308 - Permanent Redirect"
619
  msgstr "308 - Permanent omdirigering"
620
 
621
- #: redirection-strings.php:208
622
  msgid "401 - Unauthorized"
623
  msgstr "401 - Obehörig"
624
 
625
- #: redirection-strings.php:207
626
  msgid "404 - Not Found"
627
  msgstr "404 - Hittades inte"
628
 
629
- #: redirection-strings.php:205
630
  msgid "Title"
631
  msgstr "Titel"
632
 
633
- #: redirection-strings.php:203
634
  msgid "When matched"
635
  msgstr "När matchning sker"
636
 
637
- #: redirection-strings.php:202
638
  msgid "with HTTP code"
639
  msgstr "med HTTP-kod"
640
 
641
- #: redirection-strings.php:194
642
  msgid "Show advanced options"
643
  msgstr "Visa avancerande alternativ"
644
 
645
- #: redirection-strings.php:188 redirection-strings.php:192
646
  msgid "Matched Target"
647
  msgstr "Matchande mål"
648
 
649
- #: redirection-strings.php:187 redirection-strings.php:191
650
  msgid "Unmatched Target"
651
  msgstr "Ej matchande mål"
652
 
653
- #: redirection-strings.php:185 redirection-strings.php:186
654
  msgid "Saving..."
655
  msgstr "Sparar..."
656
 
657
- #: redirection-strings.php:135
658
  msgid "View notice"
659
  msgstr "Visa meddelande"
660
 
@@ -674,7 +678,7 @@ msgstr "Ogiltig omdirigeringsmatchning"
674
  msgid "Unable to add new redirect"
675
  msgstr "Det går inte att lägga till en ny omdirigering"
676
 
677
- #: redirection-strings.php:12 redirection-strings.php:54
678
  msgid "Something went wrong 🙁"
679
  msgstr "Något gick fel 🙁"
680
 
@@ -694,129 +698,129 @@ msgstr "Se om ditt problem finns beskrivet på listan över kända {{link}}probl
694
  msgid "Log entries (%d max)"
695
  msgstr "Antal logginlägg per sida (max %d)"
696
 
697
- #: redirection-strings.php:276
698
  msgid "Search by IP"
699
  msgstr "Sök via IP"
700
 
701
- #: redirection-strings.php:272
702
  msgid "Select bulk action"
703
  msgstr "Välj massåtgärd"
704
 
705
- #: redirection-strings.php:271
706
  msgid "Bulk Actions"
707
  msgstr "Massåtgärd"
708
 
709
- #: redirection-strings.php:270
710
  msgid "Apply"
711
  msgstr "Tillämpa"
712
 
713
- #: redirection-strings.php:269
714
  msgid "First page"
715
  msgstr "Första sidan"
716
 
717
- #: redirection-strings.php:268
718
  msgid "Prev page"
719
  msgstr "Föregående sida"
720
 
721
- #: redirection-strings.php:267
722
  msgid "Current Page"
723
  msgstr "Aktuell sida"
724
 
725
- #: redirection-strings.php:266
726
  msgid "of %(page)s"
727
  msgstr "av %(sidor)"
728
 
729
- #: redirection-strings.php:265
730
  msgid "Next page"
731
  msgstr "Nästa sida"
732
 
733
- #: redirection-strings.php:264
734
  msgid "Last page"
735
  msgstr "Sista sidan"
736
 
737
- #: redirection-strings.php:263
738
  msgid "%s item"
739
  msgid_plural "%s items"
740
  msgstr[0] "%s objekt"
741
  msgstr[1] "%s objekt"
742
 
743
- #: redirection-strings.php:262
744
  msgid "Select All"
745
  msgstr "Välj allt"
746
 
747
- #: redirection-strings.php:274
748
  msgid "Sorry, something went wrong loading the data - please try again"
749
  msgstr "Något gick fel när data laddades - Vänligen försök igen"
750
 
751
- #: redirection-strings.php:273
752
  msgid "No results"
753
  msgstr "Inga resultat"
754
 
755
- #: redirection-strings.php:101
756
  msgid "Delete the logs - are you sure?"
757
  msgstr "Är du säker på att du vill radera loggarna?"
758
 
759
- #: redirection-strings.php:100
760
  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."
761
  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."
762
 
763
- #: redirection-strings.php:99
764
  msgid "Yes! Delete the logs"
765
  msgstr "Ja! Radera loggarna"
766
 
767
- #: redirection-strings.php:98
768
  msgid "No! Don't delete the logs"
769
  msgstr "Nej! Radera inte loggarna"
770
 
771
- #: redirection-strings.php:256
772
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
773
  msgstr "Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."
774
 
775
- #: redirection-strings.php:255 redirection-strings.php:257
776
  msgid "Newsletter"
777
  msgstr "Nyhetsbrev"
778
 
779
- #: redirection-strings.php:254
780
  msgid "Want to keep up to date with changes to Redirection?"
781
  msgstr "Vill du bli uppdaterad om ändringar i Redirection?"
782
 
783
- #: redirection-strings.php:253
784
  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."
785
  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."
786
 
787
- #: redirection-strings.php:252
788
  msgid "Your email address:"
789
  msgstr "Din e-postadress:"
790
 
791
- #: redirection-strings.php:148
792
  msgid "You've supported this plugin - thank you!"
793
  msgstr "Du har stöttat detta tillägg - tack!"
794
 
795
- #: redirection-strings.php:145
796
  msgid "You get useful software and I get to carry on making it better."
797
  msgstr "Du får en användbar mjukvara och jag kan fortsätta göra den bättre."
798
 
799
- #: redirection-strings.php:174 redirection-strings.php:179
800
  msgid "Forever"
801
  msgstr "För evigt"
802
 
803
- #: redirection-strings.php:140
804
  msgid "Delete the plugin - are you sure?"
805
  msgstr "Radera tillägget - är du verkligen säker på det?"
806
 
807
- #: redirection-strings.php:139
808
  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."
809
  msgstr "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."
810
 
811
- #: redirection-strings.php:138
812
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
813
  msgstr "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."
814
 
815
- #: redirection-strings.php:137
816
  msgid "Yes! Delete the plugin"
817
  msgstr "Ja! Radera detta tillägg"
818
 
819
- #: redirection-strings.php:136
820
  msgid "No! Don't delete the plugin"
821
  msgstr "Nej! Radera inte detta tillägg"
822
 
@@ -828,7 +832,7 @@ msgstr "John Godley"
828
  msgid "Manage all your 301 redirects and monitor 404 errors"
829
  msgstr "Hantera alla dina 301-omdirigeringar och övervaka 404-fel"
830
 
831
- #: redirection-strings.php:146
832
  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}}."
833
  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}}."
834
 
@@ -836,132 +840,132 @@ msgstr "Redirection är gratis att använda - livet är underbart och ljuvligt!
836
  msgid "Redirection Support"
837
  msgstr "Support för Redirection"
838
 
839
- #: redirection-strings.php:57 redirection-strings.php:128
840
  msgid "Support"
841
  msgstr "Support"
842
 
843
- #: redirection-strings.php:131
844
  msgid "404s"
845
  msgstr "404:or"
846
 
847
- #: redirection-strings.php:132
848
  msgid "Log"
849
  msgstr "Logg"
850
 
851
- #: redirection-strings.php:142
852
  msgid "Delete Redirection"
853
  msgstr "Ta bort Redirection"
854
 
855
- #: redirection-strings.php:92
856
  msgid "Upload"
857
  msgstr "Ladda upp"
858
 
859
- #: redirection-strings.php:81
860
  msgid "Import"
861
  msgstr "Importera"
862
 
863
- #: redirection-strings.php:149
864
  msgid "Update"
865
  msgstr "Uppdatera"
866
 
867
- #: redirection-strings.php:155
868
  msgid "Auto-generate URL"
869
  msgstr "Autogenerera URL"
870
 
871
- #: redirection-strings.php:156
872
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
873
  msgstr "En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"
874
 
875
- #: redirection-strings.php:157
876
  msgid "RSS Token"
877
  msgstr "RSS-nyckel"
878
 
879
- #: redirection-strings.php:162
880
  msgid "404 Logs"
881
  msgstr "404-loggar"
882
 
883
- #: redirection-strings.php:161 redirection-strings.php:163
884
  msgid "(time to keep logs for)"
885
  msgstr "(hur länge loggar ska sparas)"
886
 
887
- #: redirection-strings.php:164
888
  msgid "Redirect Logs"
889
  msgstr "Redirection-loggar"
890
 
891
- #: redirection-strings.php:165
892
  msgid "I'm a nice person and I have helped support the author of this plugin"
893
  msgstr "Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"
894
 
895
- #: redirection-strings.php:143
896
  msgid "Plugin Support"
897
  msgstr "Support för tillägg"
898
 
899
- #: redirection-strings.php:58 redirection-strings.php:129
900
  msgid "Options"
901
  msgstr "Alternativ"
902
 
903
- #: redirection-strings.php:180
904
  msgid "Two months"
905
  msgstr "Två månader"
906
 
907
- #: redirection-strings.php:181
908
  msgid "A month"
909
  msgstr "En månad"
910
 
911
- #: redirection-strings.php:175 redirection-strings.php:182
912
  msgid "A week"
913
  msgstr "En vecka"
914
 
915
- #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A day"
917
  msgstr "En dag"
918
 
919
- #: redirection-strings.php:184
920
  msgid "No logs"
921
  msgstr "Inga loggar"
922
 
923
- #: redirection-strings.php:102
924
  msgid "Delete All"
925
  msgstr "Radera alla"
926
 
927
- #: redirection-strings.php:32
928
  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."
929
  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."
930
 
931
- #: redirection-strings.php:33
932
  msgid "Add Group"
933
  msgstr "Lägg till grupp"
934
 
935
- #: redirection-strings.php:275
936
  msgid "Search"
937
  msgstr "Sök"
938
 
939
- #: redirection-strings.php:62 redirection-strings.php:133
940
  msgid "Groups"
941
  msgstr "Grupper"
942
 
943
- #: redirection-strings.php:42 redirection-strings.php:199
944
  msgid "Save"
945
  msgstr "Spara"
946
 
947
- #: redirection-strings.php:201
948
  msgid "Group"
949
  msgstr "Grupp"
950
 
951
- #: redirection-strings.php:204
952
  msgid "Match"
953
  msgstr "Matcha"
954
 
955
- #: redirection-strings.php:223
956
  msgid "Add new redirection"
957
  msgstr "Lägg till ny omdirigering"
958
 
959
- #: redirection-strings.php:41 redirection-strings.php:91
960
- #: redirection-strings.php:196
961
  msgid "Cancel"
962
  msgstr "Avbryt"
963
 
964
- #: redirection-strings.php:67
965
  msgid "Download"
966
  msgstr "Hämta"
967
 
@@ -973,23 +977,23 @@ msgstr "Redirection"
973
  msgid "Settings"
974
  msgstr "Inställningar"
975
 
976
- #: redirection-strings.php:213
977
  msgid "Do nothing"
978
  msgstr "Gör ingenting"
979
 
980
- #: redirection-strings.php:214
981
  msgid "Error (404)"
982
  msgstr "Fel (404)"
983
 
984
- #: redirection-strings.php:215
985
  msgid "Pass-through"
986
  msgstr "Passera"
987
 
988
- #: redirection-strings.php:216
989
  msgid "Redirect to random post"
990
  msgstr "Omdirigering till slumpmässigt inlägg"
991
 
992
- #: redirection-strings.php:217
993
  msgid "Redirect to URL"
994
  msgstr "Omdirigera till URL"
995
 
@@ -997,88 +1001,88 @@ msgstr "Omdirigera till URL"
997
  msgid "Invalid group when creating redirect"
998
  msgstr "Gruppen är ogiltig när omdirigering skapas"
999
 
1000
- #: redirection-strings.php:107 redirection-strings.php:116
1001
  msgid "IP"
1002
  msgstr "IP"
1003
 
1004
- #: redirection-strings.php:109 redirection-strings.php:118
1005
- #: redirection-strings.php:198
1006
  msgid "Source URL"
1007
  msgstr "URL-källa"
1008
 
1009
- #: redirection-strings.php:110 redirection-strings.php:119
1010
  msgid "Date"
1011
  msgstr "Datum"
1012
 
1013
- #: redirection-strings.php:123 redirection-strings.php:127
1014
- #: redirection-strings.php:222
1015
  msgid "Add Redirect"
1016
  msgstr "Lägg till omdirigering"
1017
 
1018
- #: redirection-strings.php:34
1019
  msgid "All modules"
1020
  msgstr "Alla moduler"
1021
 
1022
- #: redirection-strings.php:47
1023
  msgid "View Redirects"
1024
  msgstr "Visa omdirigeringar"
1025
 
1026
- #: redirection-strings.php:38 redirection-strings.php:43
1027
  msgid "Module"
1028
  msgstr "Modul"
1029
 
1030
- #: redirection-strings.php:39 redirection-strings.php:134
1031
  msgid "Redirects"
1032
  msgstr "Omdirigering"
1033
 
1034
- #: redirection-strings.php:31 redirection-strings.php:40
1035
- #: redirection-strings.php:44
1036
  msgid "Name"
1037
  msgstr "Namn"
1038
 
1039
- #: redirection-strings.php:261
1040
  msgid "Filter"
1041
  msgstr "Filtrera"
1042
 
1043
- #: redirection-strings.php:225
1044
  msgid "Reset hits"
1045
  msgstr "Nollställ träffar"
1046
 
1047
- #: redirection-strings.php:36 redirection-strings.php:45
1048
- #: redirection-strings.php:227 redirection-strings.php:243
1049
  msgid "Enable"
1050
  msgstr "Aktivera"
1051
 
1052
- #: redirection-strings.php:35 redirection-strings.php:46
1053
- #: redirection-strings.php:226 redirection-strings.php:244
1054
  msgid "Disable"
1055
  msgstr "Inaktivera"
1056
 
1057
- #: redirection-strings.php:37 redirection-strings.php:48
1058
- #: redirection-strings.php:106 redirection-strings.php:114
1059
- #: redirection-strings.php:115 redirection-strings.php:124
1060
- #: redirection-strings.php:141 redirection-strings.php:228
1061
- #: redirection-strings.php:245
1062
  msgid "Delete"
1063
  msgstr "Radera"
1064
 
1065
- #: redirection-strings.php:49 redirection-strings.php:246
1066
  msgid "Edit"
1067
  msgstr "Redigera"
1068
 
1069
- #: redirection-strings.php:229
1070
  msgid "Last Access"
1071
  msgstr "Senast använd"
1072
 
1073
- #: redirection-strings.php:230
1074
  msgid "Hits"
1075
  msgstr "Träffar"
1076
 
1077
- #: redirection-strings.php:232
1078
  msgid "URL"
1079
  msgstr "URL"
1080
 
1081
- #: redirection-strings.php:233
1082
  msgid "Type"
1083
  msgstr "Typ"
1084
 
@@ -1086,47 +1090,47 @@ msgstr "Typ"
1086
  msgid "Modified Posts"
1087
  msgstr "Modifierade inlägg"
1088
 
1089
- #: models/database.php:138 models/group.php:150 redirection-strings.php:63
1090
  msgid "Redirections"
1091
  msgstr "Omdirigeringar"
1092
 
1093
- #: redirection-strings.php:239
1094
  msgid "User Agent"
1095
  msgstr "Användaragent"
1096
 
1097
- #: matches/user-agent.php:10 redirection-strings.php:218
1098
  msgid "URL and user agent"
1099
  msgstr "URL och användaragent"
1100
 
1101
- #: redirection-strings.php:193
1102
  msgid "Target URL"
1103
  msgstr "Mål-URL"
1104
 
1105
- #: matches/url.php:7 redirection-strings.php:221
1106
  msgid "URL only"
1107
  msgstr "Endast URL"
1108
 
1109
- #: redirection-strings.php:197 redirection-strings.php:234
1110
- #: redirection-strings.php:240
1111
  msgid "Regex"
1112
  msgstr "Reguljärt uttryck"
1113
 
1114
- #: redirection-strings.php:241
1115
  msgid "Referrer"
1116
  msgstr "Hänvisningsadress"
1117
 
1118
- #: matches/referrer.php:10 redirection-strings.php:219
1119
  msgid "URL and referrer"
1120
  msgstr "URL och hänvisande webbplats"
1121
 
1122
- #: redirection-strings.php:189
1123
  msgid "Logged Out"
1124
  msgstr "Utloggad"
1125
 
1126
- #: redirection-strings.php:190
1127
  msgid "Logged In"
1128
  msgstr "Inloggad"
1129
 
1130
- #: matches/login.php:8 redirection-strings.php:220
1131
  msgid "URL and login status"
1132
  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-01-27 09:14:23+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:15
15
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
16
+ msgstr "Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"
17
+
18
  #. Author URI of the plugin/theme
19
  msgid "https://johngodley.com"
20
+ msgstr "https://johngodley.com"
21
 
22
+ #: redirection-strings.php:287
23
  msgid "Useragent Error"
24
+ msgstr "Användaragentfel"
25
 
26
+ #: redirection-strings.php:285
27
  msgid "Unknown Useragent"
28
+ msgstr "Okänd användaragent"
29
 
30
+ #: redirection-strings.php:284
31
  msgid "Device"
32
+ msgstr "Enhet"
33
 
34
+ #: redirection-strings.php:283
35
  msgid "Operating System"
36
+ msgstr "Operativsystem"
37
 
38
+ #: redirection-strings.php:282
39
  msgid "Browser"
40
+ msgstr "Webbläsare"
41
 
42
+ #: redirection-strings.php:281
43
  msgid "Engine"
44
+ msgstr "Sökmotor"
45
 
46
+ #: redirection-strings.php:280
47
  msgid "Useragent"
48
+ msgstr "Useragent"
49
 
50
+ #: redirection-strings.php:279
51
  msgid "Agent"
52
+ msgstr "Agent"
53
 
54
+ #: redirection-strings.php:174
55
  msgid "No IP logging"
56
+ msgstr "Ingen loggning av IP-nummer"
57
 
58
+ #: redirection-strings.php:173
59
  msgid "Full IP logging"
60
+ msgstr "Fullständig loggning av IP-nummer"
61
 
62
+ #: redirection-strings.php:172
63
  msgid "Anonymize IP (mask last part)"
64
+ msgstr "Anonymisera IP-nummer (maska sista delen)"
65
 
66
+ #: redirection-strings.php:167
67
  msgid "Monitor changes to %(type)s"
68
+ msgstr "Övervaka ändringar till %(type)s"
69
 
70
+ #: redirection-strings.php:161
71
  msgid "IP Logging"
72
+ msgstr "Läggning av IP-nummer"
73
 
74
+ #: redirection-strings.php:160
75
  msgid "(select IP logging level)"
76
+ msgstr "(välj loggningsnivå för IP)"
77
 
78
+ #: redirection-strings.php:114 redirection-strings.php:123
79
  msgid "Geo Info"
80
+ msgstr "Geo-info"
81
 
82
+ #: redirection-strings.php:113 redirection-strings.php:122
83
  msgid "Agent Info"
84
+ msgstr "Agentinfo"
85
 
86
+ #: redirection-strings.php:112 redirection-strings.php:121
87
  msgid "Filter by IP"
88
+ msgstr "Filtrera på IP-nummer"
89
 
90
+ #: redirection-strings.php:109 redirection-strings.php:118
91
  msgid "Referrer / User Agent"
92
+ msgstr "Hänvisare/Användaragent"
93
 
94
+ #: redirection-strings.php:31
95
  msgid "Geo IP Error"
96
+ msgstr "Geo-IP-fel"
97
 
98
+ #: redirection-strings.php:30 redirection-strings.php:286
99
  msgid "Something went wrong obtaining this information"
100
+ msgstr "Något gick fel när denna information skulle hämtas"
101
 
102
+ #: redirection-strings.php:28
103
  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."
104
+ 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."
105
 
106
+ #: redirection-strings.php:26
107
  msgid "No details are known for this address."
108
+ msgstr "Det finns inga kända detaljer för denna adress."
109
 
110
+ #: redirection-strings.php:25 redirection-strings.php:27
111
+ #: redirection-strings.php:29
112
  msgid "Geo IP"
113
+ msgstr "Geo IP"
114
 
115
+ #: redirection-strings.php:24
116
  msgid "City"
117
+ msgstr "Stad"
118
 
119
+ #: redirection-strings.php:23
120
  msgid "Area"
121
+ msgstr "Region"
122
 
123
+ #: redirection-strings.php:22
124
  msgid "Timezone"
125
+ msgstr "Tidszon"
126
 
127
+ #: redirection-strings.php:21
128
  msgid "Geo Location"
129
+ msgstr "Geo-plats"
130
 
131
+ #: redirection-strings.php:20 redirection-strings.php:278
132
  msgid "Powered by {{link}}redirect.li{{/link}}"
133
+ msgstr "Drivs av {{link}}redirect.li{{/link}}"
134
 
135
  #: redirection-settings.php:7
136
  msgid "Trash"
137
+ msgstr "Släng"
138
 
139
  #: redirection-admin.php:307
140
  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"
141
+ 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"
142
 
143
  #: redirection-admin.php:203
144
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
145
+ msgstr "Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."
146
 
147
  #. Plugin URI of the plugin/theme
148
  msgid "https://redirection.me/"
149
  msgstr "https://redirection.me/"
150
 
151
+ #: redirection-strings.php:251
152
  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."
153
  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."
154
 
155
+ #: redirection-strings.php:250
156
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
157
  msgstr "Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."
158
 
159
+ #: redirection-strings.php:248
160
  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!"
161
  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!"
162
 
163
+ #: redirection-strings.php:179
164
  msgid "Never cache"
165
  msgstr "Använd aldrig cache"
166
 
167
+ #: redirection-strings.php:178
168
  msgid "An hour"
169
  msgstr "En timma"
170
 
171
+ #: redirection-strings.php:152
172
  msgid "Redirect Cache"
173
  msgstr "Omdirigera cache"
174
 
175
+ #: redirection-strings.php:151
176
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
177
  msgstr "Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"
178
 
179
+ #: redirection-strings.php:85
180
  msgid "Are you sure you want to import from %s?"
181
  msgstr "Är du säker på att du vill importera från %s?"
182
 
183
+ #: redirection-strings.php:84
184
  msgid "Plugin Importers"
185
  msgstr "Tilläggsimporterare"
186
 
187
+ #: redirection-strings.php:83
188
  msgid "The following redirect plugins were detected on your site and can be imported from."
189
  msgstr "Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."
190
 
191
+ #: redirection-strings.php:66
192
  msgid "total = "
193
  msgstr "totalt ="
194
 
195
+ #: redirection-strings.php:65
196
  msgid "Import from %s"
197
  msgstr "Importera från %s"
198
 
212
  msgid "Default WordPress \"old slugs\""
213
  msgstr "WordPress standard ”gamla permalänkar”"
214
 
215
+ #: redirection-strings.php:168
216
  msgid "Create associated redirect (added to end of URL)"
217
  msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
218
 
220
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
221
  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."
222
 
223
+ #: redirection-strings.php:261
224
  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."
225
  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."
226
 
227
+ #: redirection-strings.php:260
228
  msgid "⚡️ Magic fix ⚡️"
229
  msgstr "⚡️ Magisk fix ⚡️"
230
 
231
+ #: redirection-strings.php:259
232
  msgid "Plugin Status"
233
  msgstr "Tilläggsstatus"
234
 
235
+ #: redirection-strings.php:239
236
  msgid "Custom"
237
  msgstr "Anpassad"
238
 
239
+ #: redirection-strings.php:238
240
  msgid "Mobile"
241
  msgstr "Mobil"
242
 
243
+ #: redirection-strings.php:237
244
  msgid "Feed Readers"
245
  msgstr "Feedläsare"
246
 
247
+ #: redirection-strings.php:236
248
  msgid "Libraries"
249
  msgstr "Bibliotek"
250
 
251
+ #: redirection-strings.php:171
252
  msgid "URL Monitor Changes"
253
  msgstr "Övervaka URL-ändringar"
254
 
255
+ #: redirection-strings.php:170
256
  msgid "Save changes to this group"
257
  msgstr "Spara ändringar till den här gruppen"
258
 
259
+ #: redirection-strings.php:169
260
  msgid "For example \"/amp\""
261
  msgstr "Till exempel ”/amp”"
262
 
263
+ #: redirection-strings.php:159
264
  msgid "URL Monitor"
265
  msgstr "URL-övervakning"
266
 
267
+ #: redirection-strings.php:127
268
  msgid "Delete 404s"
269
  msgstr "Radera 404:or"
270
 
271
+ #: redirection-strings.php:126
272
  msgid "Delete all logs for this 404"
273
  msgstr "Radera alla loggar för denna 404"
274
 
275
+ #: redirection-strings.php:105
276
  msgid "Delete all from IP %s"
277
  msgstr "Ta bort allt från IP-numret %s"
278
 
279
+ #: redirection-strings.php:104
280
  msgid "Delete all matching \"%s\""
281
  msgstr "Ta bort allt som matchar \"%s\""
282
 
283
+ #: redirection-strings.php:16
284
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
285
  msgstr "Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."
286
 
288
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
289
  msgstr "Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"
290
 
291
+ #: redirection-admin.php:304 redirection-strings.php:53
292
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
293
  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."
294
 
352
  msgid "All tables present"
353
  msgstr "Alla tabeller närvarande"
354
 
355
+ #: redirection-strings.php:57
356
  msgid "Cached Redirection detected"
357
  msgstr "En cachad version av Redirection upptäcktes"
358
 
359
+ #: redirection-strings.php:56
360
  msgid "Please clear your browser cache and reload this page."
361
  msgstr "Vänligen rensa din webbläsares cache och ladda om denna sida."
362
 
363
+ #: redirection-strings.php:19
364
  msgid "The data on this page has expired, please reload."
365
  msgstr "Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."
366
 
367
+ #: redirection-strings.php:18
368
  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."
369
  msgstr "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."
370
 
371
+ #: redirection-strings.php:17
372
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
373
  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?"
374
 
396
  msgid "Loading, please wait..."
397
  msgstr "Laddar, vänligen vänta..."
398
 
399
+ #: redirection-strings.php:80
400
  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)."
401
  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)."
402
 
403
+ #: redirection-strings.php:54
404
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
405
  msgstr "Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."
406
 
407
+ #: redirection-strings.php:52
408
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
409
  msgstr "Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."
410
 
424
  msgid "Important details"
425
  msgstr "Viktiga detaljer"
426
 
427
+ #: redirection-strings.php:252
428
  msgid "Need help?"
429
  msgstr "Behöver du hjälp?"
430
 
431
+ #: redirection-strings.php:249
432
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
433
  msgstr "Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."
434
 
435
+ #: redirection-strings.php:232
436
  msgid "Pos"
437
  msgstr "Pos"
438
 
439
+ #: redirection-strings.php:207
440
  msgid "410 - Gone"
441
  msgstr "410 - Borttagen"
442
 
443
+ #: redirection-strings.php:201
444
  msgid "Position"
445
  msgstr "Position"
446
 
447
+ #: redirection-strings.php:155
448
  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 inserted"
449
  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"
450
 
451
+ #: redirection-strings.php:154
452
  msgid "Apache Module"
453
  msgstr "Apache-modul"
454
 
455
+ #: redirection-strings.php:153
456
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
457
  msgstr "Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."
458
 
459
+ #: redirection-strings.php:98
460
  msgid "Import to group"
461
  msgstr "Importera till grupp"
462
 
463
+ #: redirection-strings.php:97
464
  msgid "Import a CSV, .htaccess, or JSON file."
465
  msgstr "Importera en CSV-fil, .htaccess-fil eller JSON-fil."
466
 
467
+ #: redirection-strings.php:96
468
  msgid "Click 'Add File' or drag and drop here."
469
  msgstr "Klicka på 'Lägg till fil' eller dra och släpp en fil här."
470
 
471
+ #: redirection-strings.php:95
472
  msgid "Add File"
473
  msgstr "Lägg till fil"
474
 
475
+ #: redirection-strings.php:94
476
  msgid "File selected"
477
  msgstr "Fil vald"
478
 
479
+ #: redirection-strings.php:91
480
  msgid "Importing"
481
  msgstr "Importerar"
482
 
483
+ #: redirection-strings.php:90
484
  msgid "Finished importing"
485
  msgstr "Importering klar"
486
 
487
+ #: redirection-strings.php:89
488
  msgid "Total redirects imported:"
489
  msgstr "Antal omdirigeringar importerade:"
490
 
491
+ #: redirection-strings.php:88
492
  msgid "Double-check the file is the correct format!"
493
  msgstr "Dubbelkolla att filen är i rätt format!"
494
 
495
+ #: redirection-strings.php:87
496
  msgid "OK"
497
  msgstr "OK"
498
 
499
+ #: redirection-strings.php:86 redirection-strings.php:196
500
  msgid "Close"
501
  msgstr "Stäng"
502
 
503
+ #: redirection-strings.php:81
504
  msgid "All imports will be appended to the current database."
505
  msgstr "All importerade omdirigeringar kommer infogas till den aktuella databasen."
506
 
507
+ #: redirection-strings.php:79 redirection-strings.php:106
508
  msgid "Export"
509
  msgstr "Exportera"
510
 
511
+ #: redirection-strings.php:78
512
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
513
  msgstr "Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."
514
 
515
+ #: redirection-strings.php:77
516
  msgid "Everything"
517
  msgstr "Allt"
518
 
519
+ #: redirection-strings.php:76
520
  msgid "WordPress redirects"
521
  msgstr "WordPress omdirigeringar"
522
 
523
+ #: redirection-strings.php:75
524
  msgid "Apache redirects"
525
  msgstr "Apache omdirigeringar"
526
 
527
+ #: redirection-strings.php:74
528
  msgid "Nginx redirects"
529
  msgstr "Nginx omdirigeringar"
530
 
531
+ #: redirection-strings.php:73
532
  msgid "CSV"
533
  msgstr "CSV"
534
 
535
+ #: redirection-strings.php:72
536
  msgid "Apache .htaccess"
537
  msgstr "Apache .htaccess"
538
 
539
+ #: redirection-strings.php:71
540
  msgid "Nginx rewrite rules"
541
  msgstr "Nginx omskrivningsregler"
542
 
543
+ #: redirection-strings.php:70
544
  msgid "Redirection JSON"
545
  msgstr "JSON omdirigeringar"
546
 
547
+ #: redirection-strings.php:69
548
  msgid "View"
549
  msgstr "Visa"
550
 
551
+ #: redirection-strings.php:67
552
  msgid "Log files can be exported from the log pages."
553
  msgstr "Loggfiler kan exporteras från loggsidorna."
554
 
555
+ #: redirection-strings.php:62 redirection-strings.php:131
556
  msgid "Import/Export"
557
  msgstr "Importera/Exportera"
558
 
559
+ #: redirection-strings.php:61
560
  msgid "Logs"
561
  msgstr "Loggar"
562
 
563
+ #: redirection-strings.php:60
564
  msgid "404 errors"
565
  msgstr "404-fel"
566
 
567
+ #: redirection-strings.php:51
568
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
569
  msgstr "Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"
570
 
571
+ #: redirection-strings.php:148
572
  msgid "I'd like to support some more."
573
  msgstr "Jag skulle vilja stödja lite till."
574
 
575
+ #: redirection-strings.php:145
576
  msgid "Support 💰"
577
  msgstr "Support 💰"
578
 
579
+ #: redirection-strings.php:292
580
  msgid "Redirection saved"
581
  msgstr "Omdirigering sparad"
582
 
583
+ #: redirection-strings.php:291
584
  msgid "Log deleted"
585
  msgstr "Logginlägg raderades"
586
 
587
+ #: redirection-strings.php:290
588
  msgid "Settings saved"
589
  msgstr "Inställning sparad"
590
 
591
+ #: redirection-strings.php:289
592
  msgid "Group saved"
593
  msgstr "Grupp sparad"
594
 
595
+ #: redirection-strings.php:288
596
  msgid "Are you sure you want to delete this item?"
597
  msgid_plural "Are you sure you want to delete these items?"
598
  msgstr[0] "Är du säker på att du vill radera detta objekt?"
599
  msgstr[1] "Är du säker på att du vill radera dessa objekt?"
600
 
601
+ #: redirection-strings.php:243
602
  msgid "pass"
603
  msgstr "lösen"
604
 
605
+ #: redirection-strings.php:225
606
  msgid "All groups"
607
  msgstr "Alla grupper"
608
 
609
+ #: redirection-strings.php:213
610
  msgid "301 - Moved Permanently"
611
  msgstr "301 - Flyttad permanent"
612
 
613
+ #: redirection-strings.php:212
614
  msgid "302 - Found"
615
  msgstr "302 - Hittad"
616
 
617
+ #: redirection-strings.php:211
618
  msgid "307 - Temporary Redirect"
619
  msgstr "307 - Tillfällig omdirigering"
620
 
621
+ #: redirection-strings.php:210
622
  msgid "308 - Permanent Redirect"
623
  msgstr "308 - Permanent omdirigering"
624
 
625
+ #: redirection-strings.php:209
626
  msgid "401 - Unauthorized"
627
  msgstr "401 - Obehörig"
628
 
629
+ #: redirection-strings.php:208
630
  msgid "404 - Not Found"
631
  msgstr "404 - Hittades inte"
632
 
633
+ #: redirection-strings.php:206
634
  msgid "Title"
635
  msgstr "Titel"
636
 
637
+ #: redirection-strings.php:204
638
  msgid "When matched"
639
  msgstr "När matchning sker"
640
 
641
+ #: redirection-strings.php:203
642
  msgid "with HTTP code"
643
  msgstr "med HTTP-kod"
644
 
645
+ #: redirection-strings.php:195
646
  msgid "Show advanced options"
647
  msgstr "Visa avancerande alternativ"
648
 
649
+ #: redirection-strings.php:189 redirection-strings.php:193
650
  msgid "Matched Target"
651
  msgstr "Matchande mål"
652
 
653
+ #: redirection-strings.php:188 redirection-strings.php:192
654
  msgid "Unmatched Target"
655
  msgstr "Ej matchande mål"
656
 
657
+ #: redirection-strings.php:186 redirection-strings.php:187
658
  msgid "Saving..."
659
  msgstr "Sparar..."
660
 
661
+ #: redirection-strings.php:136
662
  msgid "View notice"
663
  msgstr "Visa meddelande"
664
 
678
  msgid "Unable to add new redirect"
679
  msgstr "Det går inte att lägga till en ny omdirigering"
680
 
681
+ #: redirection-strings.php:12 redirection-strings.php:55
682
  msgid "Something went wrong 🙁"
683
  msgstr "Något gick fel 🙁"
684
 
698
  msgid "Log entries (%d max)"
699
  msgstr "Antal logginlägg per sida (max %d)"
700
 
701
+ #: redirection-strings.php:277
702
  msgid "Search by IP"
703
  msgstr "Sök via IP"
704
 
705
+ #: redirection-strings.php:273
706
  msgid "Select bulk action"
707
  msgstr "Välj massåtgärd"
708
 
709
+ #: redirection-strings.php:272
710
  msgid "Bulk Actions"
711
  msgstr "Massåtgärd"
712
 
713
+ #: redirection-strings.php:271
714
  msgid "Apply"
715
  msgstr "Tillämpa"
716
 
717
+ #: redirection-strings.php:270
718
  msgid "First page"
719
  msgstr "Första sidan"
720
 
721
+ #: redirection-strings.php:269
722
  msgid "Prev page"
723
  msgstr "Föregående sida"
724
 
725
+ #: redirection-strings.php:268
726
  msgid "Current Page"
727
  msgstr "Aktuell sida"
728
 
729
+ #: redirection-strings.php:267
730
  msgid "of %(page)s"
731
  msgstr "av %(sidor)"
732
 
733
+ #: redirection-strings.php:266
734
  msgid "Next page"
735
  msgstr "Nästa sida"
736
 
737
+ #: redirection-strings.php:265
738
  msgid "Last page"
739
  msgstr "Sista sidan"
740
 
741
+ #: redirection-strings.php:264
742
  msgid "%s item"
743
  msgid_plural "%s items"
744
  msgstr[0] "%s objekt"
745
  msgstr[1] "%s objekt"
746
 
747
+ #: redirection-strings.php:263
748
  msgid "Select All"
749
  msgstr "Välj allt"
750
 
751
+ #: redirection-strings.php:275
752
  msgid "Sorry, something went wrong loading the data - please try again"
753
  msgstr "Något gick fel när data laddades - Vänligen försök igen"
754
 
755
+ #: redirection-strings.php:274
756
  msgid "No results"
757
  msgstr "Inga resultat"
758
 
759
+ #: redirection-strings.php:102
760
  msgid "Delete the logs - are you sure?"
761
  msgstr "Är du säker på att du vill radera loggarna?"
762
 
763
+ #: redirection-strings.php:101
764
  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."
765
  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."
766
 
767
+ #: redirection-strings.php:100
768
  msgid "Yes! Delete the logs"
769
  msgstr "Ja! Radera loggarna"
770
 
771
+ #: redirection-strings.php:99
772
  msgid "No! Don't delete the logs"
773
  msgstr "Nej! Radera inte loggarna"
774
 
775
+ #: redirection-strings.php:257
776
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
777
  msgstr "Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."
778
 
779
+ #: redirection-strings.php:256 redirection-strings.php:258
780
  msgid "Newsletter"
781
  msgstr "Nyhetsbrev"
782
 
783
+ #: redirection-strings.php:255
784
  msgid "Want to keep up to date with changes to Redirection?"
785
  msgstr "Vill du bli uppdaterad om ändringar i Redirection?"
786
 
787
+ #: redirection-strings.php:254
788
  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."
789
  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."
790
 
791
+ #: redirection-strings.php:253
792
  msgid "Your email address:"
793
  msgstr "Din e-postadress:"
794
 
795
+ #: redirection-strings.php:149
796
  msgid "You've supported this plugin - thank you!"
797
  msgstr "Du har stöttat detta tillägg - tack!"
798
 
799
+ #: redirection-strings.php:146
800
  msgid "You get useful software and I get to carry on making it better."
801
  msgstr "Du får en användbar mjukvara och jag kan fortsätta göra den bättre."
802
 
803
+ #: redirection-strings.php:175 redirection-strings.php:180
804
  msgid "Forever"
805
  msgstr "För evigt"
806
 
807
+ #: redirection-strings.php:141
808
  msgid "Delete the plugin - are you sure?"
809
  msgstr "Radera tillägget - är du verkligen säker på det?"
810
 
811
+ #: redirection-strings.php:140
812
  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."
813
  msgstr "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."
814
 
815
+ #: redirection-strings.php:139
816
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
817
  msgstr "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."
818
 
819
+ #: redirection-strings.php:138
820
  msgid "Yes! Delete the plugin"
821
  msgstr "Ja! Radera detta tillägg"
822
 
823
+ #: redirection-strings.php:137
824
  msgid "No! Don't delete the plugin"
825
  msgstr "Nej! Radera inte detta tillägg"
826
 
832
  msgid "Manage all your 301 redirects and monitor 404 errors"
833
  msgstr "Hantera alla dina 301-omdirigeringar och övervaka 404-fel"
834
 
835
+ #: redirection-strings.php:147
836
  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}}."
837
  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}}."
838
 
840
  msgid "Redirection Support"
841
  msgstr "Support för Redirection"
842
 
843
+ #: redirection-strings.php:58 redirection-strings.php:129
844
  msgid "Support"
845
  msgstr "Support"
846
 
847
+ #: redirection-strings.php:132
848
  msgid "404s"
849
  msgstr "404:or"
850
 
851
+ #: redirection-strings.php:133
852
  msgid "Log"
853
  msgstr "Logg"
854
 
855
+ #: redirection-strings.php:143
856
  msgid "Delete Redirection"
857
  msgstr "Ta bort Redirection"
858
 
859
+ #: redirection-strings.php:93
860
  msgid "Upload"
861
  msgstr "Ladda upp"
862
 
863
+ #: redirection-strings.php:82
864
  msgid "Import"
865
  msgstr "Importera"
866
 
867
+ #: redirection-strings.php:150
868
  msgid "Update"
869
  msgstr "Uppdatera"
870
 
871
+ #: redirection-strings.php:156
872
  msgid "Auto-generate URL"
873
  msgstr "Autogenerera URL"
874
 
875
+ #: redirection-strings.php:157
876
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
877
  msgstr "En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"
878
 
879
+ #: redirection-strings.php:158
880
  msgid "RSS Token"
881
  msgstr "RSS-nyckel"
882
 
883
+ #: redirection-strings.php:163
884
  msgid "404 Logs"
885
  msgstr "404-loggar"
886
 
887
+ #: redirection-strings.php:162 redirection-strings.php:164
888
  msgid "(time to keep logs for)"
889
  msgstr "(hur länge loggar ska sparas)"
890
 
891
+ #: redirection-strings.php:165
892
  msgid "Redirect Logs"
893
  msgstr "Redirection-loggar"
894
 
895
+ #: redirection-strings.php:166
896
  msgid "I'm a nice person and I have helped support the author of this plugin"
897
  msgstr "Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"
898
 
899
+ #: redirection-strings.php:144
900
  msgid "Plugin Support"
901
  msgstr "Support för tillägg"
902
 
903
+ #: redirection-strings.php:59 redirection-strings.php:130
904
  msgid "Options"
905
  msgstr "Alternativ"
906
 
907
+ #: redirection-strings.php:181
908
  msgid "Two months"
909
  msgstr "Två månader"
910
 
911
+ #: redirection-strings.php:182
912
  msgid "A month"
913
  msgstr "En månad"
914
 
915
+ #: redirection-strings.php:176 redirection-strings.php:183
916
  msgid "A week"
917
  msgstr "En vecka"
918
 
919
+ #: redirection-strings.php:177 redirection-strings.php:184
920
  msgid "A day"
921
  msgstr "En dag"
922
 
923
+ #: redirection-strings.php:185
924
  msgid "No logs"
925
  msgstr "Inga loggar"
926
 
927
+ #: redirection-strings.php:103
928
  msgid "Delete All"
929
  msgstr "Radera alla"
930
 
931
+ #: redirection-strings.php:33
932
  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."
933
  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."
934
 
935
+ #: redirection-strings.php:34
936
  msgid "Add Group"
937
  msgstr "Lägg till grupp"
938
 
939
+ #: redirection-strings.php:276
940
  msgid "Search"
941
  msgstr "Sök"
942
 
943
+ #: redirection-strings.php:63 redirection-strings.php:134
944
  msgid "Groups"
945
  msgstr "Grupper"
946
 
947
+ #: redirection-strings.php:43 redirection-strings.php:200
948
  msgid "Save"
949
  msgstr "Spara"
950
 
951
+ #: redirection-strings.php:202
952
  msgid "Group"
953
  msgstr "Grupp"
954
 
955
+ #: redirection-strings.php:205
956
  msgid "Match"
957
  msgstr "Matcha"
958
 
959
+ #: redirection-strings.php:224
960
  msgid "Add new redirection"
961
  msgstr "Lägg till ny omdirigering"
962
 
963
+ #: redirection-strings.php:42 redirection-strings.php:92
964
+ #: redirection-strings.php:197
965
  msgid "Cancel"
966
  msgstr "Avbryt"
967
 
968
+ #: redirection-strings.php:68
969
  msgid "Download"
970
  msgstr "Hämta"
971
 
977
  msgid "Settings"
978
  msgstr "Inställningar"
979
 
980
+ #: redirection-strings.php:214
981
  msgid "Do nothing"
982
  msgstr "Gör ingenting"
983
 
984
+ #: redirection-strings.php:215
985
  msgid "Error (404)"
986
  msgstr "Fel (404)"
987
 
988
+ #: redirection-strings.php:216
989
  msgid "Pass-through"
990
  msgstr "Passera"
991
 
992
+ #: redirection-strings.php:217
993
  msgid "Redirect to random post"
994
  msgstr "Omdirigering till slumpmässigt inlägg"
995
 
996
+ #: redirection-strings.php:218
997
  msgid "Redirect to URL"
998
  msgstr "Omdirigera till URL"
999
 
1001
  msgid "Invalid group when creating redirect"
1002
  msgstr "Gruppen är ogiltig när omdirigering skapas"
1003
 
1004
+ #: redirection-strings.php:108 redirection-strings.php:117
1005
  msgid "IP"
1006
  msgstr "IP"
1007
 
1008
+ #: redirection-strings.php:110 redirection-strings.php:119
1009
+ #: redirection-strings.php:199
1010
  msgid "Source URL"
1011
  msgstr "URL-källa"
1012
 
1013
+ #: redirection-strings.php:111 redirection-strings.php:120
1014
  msgid "Date"
1015
  msgstr "Datum"
1016
 
1017
+ #: redirection-strings.php:124 redirection-strings.php:128
1018
+ #: redirection-strings.php:223
1019
  msgid "Add Redirect"
1020
  msgstr "Lägg till omdirigering"
1021
 
1022
+ #: redirection-strings.php:35
1023
  msgid "All modules"
1024
  msgstr "Alla moduler"
1025
 
1026
+ #: redirection-strings.php:48
1027
  msgid "View Redirects"
1028
  msgstr "Visa omdirigeringar"
1029
 
1030
+ #: redirection-strings.php:39 redirection-strings.php:44
1031
  msgid "Module"
1032
  msgstr "Modul"
1033
 
1034
+ #: redirection-strings.php:40 redirection-strings.php:135
1035
  msgid "Redirects"
1036
  msgstr "Omdirigering"
1037
 
1038
+ #: redirection-strings.php:32 redirection-strings.php:41
1039
+ #: redirection-strings.php:45
1040
  msgid "Name"
1041
  msgstr "Namn"
1042
 
1043
+ #: redirection-strings.php:262
1044
  msgid "Filter"
1045
  msgstr "Filtrera"
1046
 
1047
+ #: redirection-strings.php:226
1048
  msgid "Reset hits"
1049
  msgstr "Nollställ träffar"
1050
 
1051
+ #: redirection-strings.php:37 redirection-strings.php:46
1052
+ #: redirection-strings.php:228 redirection-strings.php:244
1053
  msgid "Enable"
1054
  msgstr "Aktivera"
1055
 
1056
+ #: redirection-strings.php:36 redirection-strings.php:47
1057
+ #: redirection-strings.php:227 redirection-strings.php:245
1058
  msgid "Disable"
1059
  msgstr "Inaktivera"
1060
 
1061
+ #: redirection-strings.php:38 redirection-strings.php:49
1062
+ #: redirection-strings.php:107 redirection-strings.php:115
1063
+ #: redirection-strings.php:116 redirection-strings.php:125
1064
+ #: redirection-strings.php:142 redirection-strings.php:229
1065
+ #: redirection-strings.php:246
1066
  msgid "Delete"
1067
  msgstr "Radera"
1068
 
1069
+ #: redirection-strings.php:50 redirection-strings.php:247
1070
  msgid "Edit"
1071
  msgstr "Redigera"
1072
 
1073
+ #: redirection-strings.php:230
1074
  msgid "Last Access"
1075
  msgstr "Senast använd"
1076
 
1077
+ #: redirection-strings.php:231
1078
  msgid "Hits"
1079
  msgstr "Träffar"
1080
 
1081
+ #: redirection-strings.php:233
1082
  msgid "URL"
1083
  msgstr "URL"
1084
 
1085
+ #: redirection-strings.php:234
1086
  msgid "Type"
1087
  msgstr "Typ"
1088
 
1090
  msgid "Modified Posts"
1091
  msgstr "Modifierade inlägg"
1092
 
1093
+ #: models/database.php:138 models/group.php:150 redirection-strings.php:64
1094
  msgid "Redirections"
1095
  msgstr "Omdirigeringar"
1096
 
1097
+ #: redirection-strings.php:240
1098
  msgid "User Agent"
1099
  msgstr "Användaragent"
1100
 
1101
+ #: matches/user-agent.php:10 redirection-strings.php:219
1102
  msgid "URL and user agent"
1103
  msgstr "URL och användaragent"
1104
 
1105
+ #: redirection-strings.php:194
1106
  msgid "Target URL"
1107
  msgstr "Mål-URL"
1108
 
1109
+ #: matches/url.php:7 redirection-strings.php:222
1110
  msgid "URL only"
1111
  msgstr "Endast URL"
1112
 
1113
+ #: redirection-strings.php:198 redirection-strings.php:235
1114
+ #: redirection-strings.php:241
1115
  msgid "Regex"
1116
  msgstr "Reguljärt uttryck"
1117
 
1118
+ #: redirection-strings.php:242
1119
  msgid "Referrer"
1120
  msgstr "Hänvisningsadress"
1121
 
1122
+ #: matches/referrer.php:10 redirection-strings.php:220
1123
  msgid "URL and referrer"
1124
  msgstr "URL och hänvisande webbplats"
1125
 
1126
+ #: redirection-strings.php:190
1127
  msgid "Logged Out"
1128
  msgstr "Utloggad"
1129
 
1130
+ #: redirection-strings.php:191
1131
  msgid "Logged In"
1132
  msgstr "Inloggad"
1133
 
1134
+ #: matches/login.php:8 redirection-strings.php:221
1135
  msgid "URL and login status"
1136
  msgstr "URL och inloggnings-status"
locale/redirection.pot CHANGED
@@ -14,67 +14,75 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
- #: redirection-admin.php:153
18
  msgid "Settings"
19
  msgstr ""
20
 
21
- #: redirection-admin.php:173
22
  msgid "Log entries (%d max)"
23
  msgstr ""
24
 
25
- #: redirection-admin.php:202
26
  msgid "Redirection Support"
27
  msgstr ""
28
 
29
- #: redirection-admin.php:203
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:245, redirection-admin.php:302
34
  msgid "Unable to load Redirection"
35
  msgstr ""
36
 
37
- #: redirection-admin.php:246
38
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
39
  msgstr ""
40
 
41
- #: redirection-admin.php:264
42
  msgid "Redirection not installed properly"
43
  msgstr ""
44
 
45
- #: redirection-admin.php:265
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:295
50
  msgid "Loading, please wait..."
51
  msgstr ""
52
 
53
- #: redirection-admin.php:303
 
 
 
 
54
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
55
  msgstr ""
56
 
57
- #: redirection-admin.php:304, redirection-strings.php:53
58
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
59
  msgstr ""
60
 
61
- #: redirection-admin.php:305
62
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
63
  msgstr ""
64
 
65
- #: redirection-admin.php:307
66
  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"
67
  msgstr ""
68
 
69
- #: redirection-admin.php:308
 
 
 
 
70
  msgid "If you think Redirection is at fault then create an issue."
71
  msgstr ""
72
 
73
- #: redirection-admin.php:309
74
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
75
  msgstr ""
76
 
77
- #: redirection-admin.php:312, redirection-strings.php:7
78
  msgid "Create Issue"
79
  msgstr ""
80
 
@@ -95,926 +103,966 @@ msgid "If this is a new problem then please either {{strong}}create a new issue{
95
  msgstr ""
96
 
97
  #: redirection-strings.php:9
98
- msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."
99
  msgstr ""
100
 
101
  #: redirection-strings.php:10
102
- msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
103
  msgstr ""
104
 
105
  #: redirection-strings.php:11
106
- msgid "It didn't work when I tried again"
107
  msgstr ""
108
 
109
- #: redirection-strings.php:12, redirection-strings.php:55
110
- msgid "Something went wrong 🙁"
111
  msgstr ""
112
 
113
  #: redirection-strings.php:13
114
- 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!"
115
  msgstr ""
116
 
117
  #: redirection-strings.php:14
118
- msgid "WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."
119
  msgstr ""
120
 
121
- #: redirection-strings.php:15
122
- msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
123
  msgstr ""
124
 
125
  #: redirection-strings.php:16
126
- msgid "Your server has rejected the request for being too big. You will need to change it to continue."
127
  msgstr ""
128
 
129
  #: redirection-strings.php:17
130
- msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
131
  msgstr ""
132
 
133
  #: redirection-strings.php:18
134
- 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."
135
  msgstr ""
136
 
137
  #: redirection-strings.php:19
 
 
 
 
 
 
 
 
 
 
 
 
138
  msgid "The data on this page has expired, please reload."
139
  msgstr ""
140
 
141
- #: redirection-strings.php:20, redirection-strings.php:278
142
  msgid "Powered by {{link}}redirect.li{{/link}}"
143
  msgstr ""
144
 
145
- #: redirection-strings.php:21
146
  msgid "Geo Location"
147
  msgstr ""
148
 
149
- #: redirection-strings.php:22
150
  msgid "Timezone"
151
  msgstr ""
152
 
153
- #: redirection-strings.php:23
154
  msgid "Area"
155
  msgstr ""
156
 
157
- #: redirection-strings.php:24
158
  msgid "City"
159
  msgstr ""
160
 
161
- #: redirection-strings.php:25, redirection-strings.php:27, redirection-strings.php:29
162
  msgid "Geo IP"
163
  msgstr ""
164
 
165
- #: redirection-strings.php:26
166
  msgid "No details are known for this address."
167
  msgstr ""
168
 
169
- #: redirection-strings.php:28
170
  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."
171
  msgstr ""
172
 
173
- #: redirection-strings.php:30, redirection-strings.php:286
174
  msgid "Something went wrong obtaining this information"
175
  msgstr ""
176
 
177
- #: redirection-strings.php:31
178
  msgid "Geo IP Error"
179
  msgstr ""
180
 
181
- #: redirection-strings.php:32, redirection-strings.php:41, redirection-strings.php:45
182
  msgid "Name"
183
  msgstr ""
184
 
185
- #: redirection-strings.php:33
186
  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."
187
  msgstr ""
188
 
189
- #: redirection-strings.php:34
190
  msgid "Add Group"
191
  msgstr ""
192
 
193
- #: redirection-strings.php:35
194
  msgid "All modules"
195
  msgstr ""
196
 
197
- #: redirection-strings.php:36, redirection-strings.php:47, redirection-strings.php:227, redirection-strings.php:245
198
  msgid "Disable"
199
  msgstr ""
200
 
201
- #: redirection-strings.php:37, redirection-strings.php:46, redirection-strings.php:228, redirection-strings.php:244
202
  msgid "Enable"
203
  msgstr ""
204
 
205
- #: redirection-strings.php:38, redirection-strings.php:49, redirection-strings.php:107, redirection-strings.php:115, redirection-strings.php:116, redirection-strings.php:125, redirection-strings.php:142, redirection-strings.php:229, redirection-strings.php:246
206
  msgid "Delete"
207
  msgstr ""
208
 
209
- #: redirection-strings.php:39, redirection-strings.php:44
210
  msgid "Module"
211
  msgstr ""
212
 
213
- #: redirection-strings.php:40, redirection-strings.php:135
214
  msgid "Redirects"
215
  msgstr ""
216
 
217
- #: redirection-strings.php:42, redirection-strings.php:92, redirection-strings.php:197
218
  msgid "Cancel"
219
  msgstr ""
220
 
221
- #: redirection-strings.php:43, redirection-strings.php:200
222
  msgid "Save"
223
  msgstr ""
224
 
225
- #: redirection-strings.php:48
226
  msgid "View Redirects"
227
  msgstr ""
228
 
229
- #: redirection-strings.php:50, redirection-strings.php:247
230
  msgid "Edit"
231
  msgstr ""
232
 
233
- #: redirection-strings.php:51
234
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
235
  msgstr ""
236
 
237
- #: redirection-strings.php:52
238
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
239
  msgstr ""
240
 
241
- #: redirection-strings.php:54
242
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
243
  msgstr ""
244
 
245
- #: redirection-strings.php:56
 
 
 
 
246
  msgid "Please clear your browser cache and reload this page."
247
  msgstr ""
248
 
249
- #: redirection-strings.php:57
250
  msgid "Cached Redirection detected"
251
  msgstr ""
252
 
253
- #: redirection-strings.php:58, redirection-strings.php:129
254
  msgid "Support"
255
  msgstr ""
256
 
257
- #: redirection-strings.php:59, redirection-strings.php:130
258
  msgid "Options"
259
  msgstr ""
260
 
261
- #: redirection-strings.php:60
262
  msgid "404 errors"
263
  msgstr ""
264
 
265
- #: redirection-strings.php:61
266
  msgid "Logs"
267
  msgstr ""
268
 
269
- #: redirection-strings.php:62, redirection-strings.php:131
270
  msgid "Import/Export"
271
  msgstr ""
272
 
273
- #: redirection-strings.php:63, redirection-strings.php:134
274
  msgid "Groups"
275
  msgstr ""
276
 
277
- #: redirection-strings.php:64, models/database.php:138
278
  msgid "Redirections"
279
  msgstr ""
280
 
281
- #: redirection-strings.php:65
282
  msgid "Import from %s"
283
  msgstr ""
284
 
285
- #: redirection-strings.php:66
286
  msgid "total = "
287
  msgstr ""
288
 
289
- #: redirection-strings.php:67
290
  msgid "Log files can be exported from the log pages."
291
  msgstr ""
292
 
293
- #: redirection-strings.php:68
294
  msgid "Download"
295
  msgstr ""
296
 
297
- #: redirection-strings.php:69
298
  msgid "View"
299
  msgstr ""
300
 
301
- #: redirection-strings.php:70
302
  msgid "Redirection JSON"
303
  msgstr ""
304
 
305
- #: redirection-strings.php:71
306
  msgid "Nginx rewrite rules"
307
  msgstr ""
308
 
309
- #: redirection-strings.php:72
310
  msgid "Apache .htaccess"
311
  msgstr ""
312
 
313
- #: redirection-strings.php:73
314
  msgid "CSV"
315
  msgstr ""
316
 
317
- #: redirection-strings.php:74
318
  msgid "Nginx redirects"
319
  msgstr ""
320
 
321
- #: redirection-strings.php:75
322
  msgid "Apache redirects"
323
  msgstr ""
324
 
325
- #: redirection-strings.php:76
326
  msgid "WordPress redirects"
327
  msgstr ""
328
 
329
- #: redirection-strings.php:77
330
  msgid "Everything"
331
  msgstr ""
332
 
333
- #: redirection-strings.php:78
334
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
335
  msgstr ""
336
 
337
- #: redirection-strings.php:79, redirection-strings.php:106
338
  msgid "Export"
339
  msgstr ""
340
 
341
- #: redirection-strings.php:80
342
  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)."
343
  msgstr ""
344
 
345
- #: redirection-strings.php:81
346
  msgid "All imports will be appended to the current database."
347
  msgstr ""
348
 
349
- #: redirection-strings.php:82
350
  msgid "Import"
351
  msgstr ""
352
 
353
- #: redirection-strings.php:83
354
  msgid "The following redirect plugins were detected on your site and can be imported from."
355
  msgstr ""
356
 
357
- #: redirection-strings.php:84
358
  msgid "Plugin Importers"
359
  msgstr ""
360
 
361
- #: redirection-strings.php:85
362
  msgid "Are you sure you want to import from %s?"
363
  msgstr ""
364
 
365
- #: redirection-strings.php:86, redirection-strings.php:196
366
  msgid "Close"
367
  msgstr ""
368
 
369
- #: redirection-strings.php:87
370
  msgid "OK"
371
  msgstr ""
372
 
373
- #: redirection-strings.php:88
374
  msgid "Double-check the file is the correct format!"
375
  msgstr ""
376
 
377
- #: redirection-strings.php:89
378
  msgid "Total redirects imported:"
379
  msgstr ""
380
 
381
- #: redirection-strings.php:90
382
  msgid "Finished importing"
383
  msgstr ""
384
 
385
- #: redirection-strings.php:91
386
  msgid "Importing"
387
  msgstr ""
388
 
389
- #: redirection-strings.php:93
390
  msgid "Upload"
391
  msgstr ""
392
 
393
- #: redirection-strings.php:94
394
  msgid "File selected"
395
  msgstr ""
396
 
397
- #: redirection-strings.php:95
398
  msgid "Add File"
399
  msgstr ""
400
 
401
- #: redirection-strings.php:96
402
  msgid "Click 'Add File' or drag and drop here."
403
  msgstr ""
404
 
405
- #: redirection-strings.php:97
406
  msgid "Import a CSV, .htaccess, or JSON file."
407
  msgstr ""
408
 
409
- #: redirection-strings.php:98
410
  msgid "Import to group"
411
  msgstr ""
412
 
413
- #: redirection-strings.php:99
414
  msgid "No! Don't delete the logs"
415
  msgstr ""
416
 
417
- #: redirection-strings.php:100
418
  msgid "Yes! Delete the logs"
419
  msgstr ""
420
 
421
- #: redirection-strings.php:101
422
  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."
423
  msgstr ""
424
 
425
- #: redirection-strings.php:102
426
  msgid "Delete the logs - are you sure?"
427
  msgstr ""
428
 
429
- #: redirection-strings.php:103
430
  msgid "Delete All"
431
  msgstr ""
432
 
433
- #: redirection-strings.php:104
434
  msgid "Delete all matching \"%s\""
435
  msgstr ""
436
 
437
- #: redirection-strings.php:105
438
  msgid "Delete all from IP %s"
439
  msgstr ""
440
 
441
- #: redirection-strings.php:108, redirection-strings.php:117
442
  msgid "IP"
443
  msgstr ""
444
 
445
- #: redirection-strings.php:109, redirection-strings.php:118
446
  msgid "Referrer / User Agent"
447
  msgstr ""
448
 
449
- #: redirection-strings.php:110, redirection-strings.php:119, redirection-strings.php:199
450
  msgid "Source URL"
451
  msgstr ""
452
 
453
- #: redirection-strings.php:111, redirection-strings.php:120
454
  msgid "Date"
455
  msgstr ""
456
 
457
- #: redirection-strings.php:112, redirection-strings.php:121
458
  msgid "Filter by IP"
459
  msgstr ""
460
 
461
- #: redirection-strings.php:113, redirection-strings.php:122
462
  msgid "Agent Info"
463
  msgstr ""
464
 
465
- #: redirection-strings.php:114, redirection-strings.php:123
466
  msgid "Geo Info"
467
  msgstr ""
468
 
469
- #: redirection-strings.php:124, redirection-strings.php:128, redirection-strings.php:223
470
  msgid "Add Redirect"
471
  msgstr ""
472
 
473
- #: redirection-strings.php:126
474
  msgid "Delete all logs for this 404"
475
  msgstr ""
476
 
477
- #: redirection-strings.php:127
478
  msgid "Delete 404s"
479
  msgstr ""
480
 
481
- #: redirection-strings.php:132
482
  msgid "404s"
483
  msgstr ""
484
 
485
- #: redirection-strings.php:133
486
  msgid "Log"
487
  msgstr ""
488
 
489
- #: redirection-strings.php:136
490
  msgid "View notice"
491
  msgstr ""
492
 
493
- #: redirection-strings.php:137
494
  msgid "No! Don't delete the plugin"
495
  msgstr ""
496
 
497
- #: redirection-strings.php:138
498
  msgid "Yes! Delete the plugin"
499
  msgstr ""
500
 
501
- #: redirection-strings.php:139
502
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
503
  msgstr ""
504
 
505
- #: redirection-strings.php:140
506
  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."
507
  msgstr ""
508
 
509
- #: redirection-strings.php:141
510
  msgid "Delete the plugin - are you sure?"
511
  msgstr ""
512
 
513
- #: redirection-strings.php:143
514
  msgid "Delete Redirection"
515
  msgstr ""
516
 
517
- #: redirection-strings.php:144
518
  msgid "Plugin Support"
519
  msgstr ""
520
 
521
- #: redirection-strings.php:145
522
  msgid "Support 💰"
523
  msgstr ""
524
 
525
- #: redirection-strings.php:146
526
  msgid "You get useful software and I get to carry on making it better."
527
  msgstr ""
528
 
529
- #: redirection-strings.php:147
530
  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}}."
531
  msgstr ""
532
 
533
- #: redirection-strings.php:148
534
  msgid "I'd like to support some more."
535
  msgstr ""
536
 
537
- #: redirection-strings.php:149
538
  msgid "You've supported this plugin - thank you!"
539
  msgstr ""
540
 
541
- #: redirection-strings.php:150
542
  msgid "Update"
543
  msgstr ""
544
 
545
- #: redirection-strings.php:151
 
 
 
 
 
 
 
 
546
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
547
  msgstr ""
548
 
549
- #: redirection-strings.php:152
550
  msgid "Redirect Cache"
551
  msgstr ""
552
 
553
- #: redirection-strings.php:153
554
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
555
  msgstr ""
556
 
557
- #: redirection-strings.php:154
558
  msgid "Apache Module"
559
  msgstr ""
560
 
561
- #: redirection-strings.php:155
562
- 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 inserted"
563
  msgstr ""
564
 
565
- #: redirection-strings.php:156
566
  msgid "Auto-generate URL"
567
  msgstr ""
568
 
569
- #: redirection-strings.php:157
570
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
571
  msgstr ""
572
 
573
- #: redirection-strings.php:158
574
  msgid "RSS Token"
575
  msgstr ""
576
 
577
- #: redirection-strings.php:159
578
  msgid "URL Monitor"
579
  msgstr ""
580
 
581
- #: redirection-strings.php:160
582
  msgid "(select IP logging level)"
583
  msgstr ""
584
 
585
- #: redirection-strings.php:161
586
  msgid "IP Logging"
587
  msgstr ""
588
 
589
- #: redirection-strings.php:162, redirection-strings.php:164
590
  msgid "(time to keep logs for)"
591
  msgstr ""
592
 
593
- #: redirection-strings.php:163
594
  msgid "404 Logs"
595
  msgstr ""
596
 
597
- #: redirection-strings.php:165
598
  msgid "Redirect Logs"
599
  msgstr ""
600
 
601
- #: redirection-strings.php:166
602
  msgid "I'm a nice person and I have helped support the author of this plugin"
603
  msgstr ""
604
 
605
- #: redirection-strings.php:167
606
  msgid "Monitor changes to %(type)s"
607
  msgstr ""
608
 
609
- #: redirection-strings.php:168
610
  msgid "Create associated redirect (added to end of URL)"
611
  msgstr ""
612
 
613
- #: redirection-strings.php:169
614
  msgid "For example \"/amp\""
615
  msgstr ""
616
 
617
- #: redirection-strings.php:170
618
  msgid "Save changes to this group"
619
  msgstr ""
620
 
621
- #: redirection-strings.php:171
622
  msgid "URL Monitor Changes"
623
  msgstr ""
624
 
625
- #: redirection-strings.php:172
 
 
 
 
 
 
 
 
 
 
 
 
626
  msgid "Anonymize IP (mask last part)"
627
  msgstr ""
628
 
629
- #: redirection-strings.php:173
630
  msgid "Full IP logging"
631
  msgstr ""
632
 
633
- #: redirection-strings.php:174
634
  msgid "No IP logging"
635
  msgstr ""
636
 
637
- #: redirection-strings.php:175, redirection-strings.php:180
638
  msgid "Forever"
639
  msgstr ""
640
 
641
- #: redirection-strings.php:176, redirection-strings.php:183
642
  msgid "A week"
643
  msgstr ""
644
 
645
- #: redirection-strings.php:177, redirection-strings.php:184
646
  msgid "A day"
647
  msgstr ""
648
 
649
- #: redirection-strings.php:178
650
  msgid "An hour"
651
  msgstr ""
652
 
653
- #: redirection-strings.php:179
654
  msgid "Never cache"
655
  msgstr ""
656
 
657
- #: redirection-strings.php:181
658
  msgid "Two months"
659
  msgstr ""
660
 
661
- #: redirection-strings.php:182
662
  msgid "A month"
663
  msgstr ""
664
 
665
- #: redirection-strings.php:185
666
  msgid "No logs"
667
  msgstr ""
668
 
669
- #: redirection-strings.php:186, redirection-strings.php:187
670
  msgid "Saving..."
671
  msgstr ""
672
 
673
- #: redirection-strings.php:188, redirection-strings.php:192
674
  msgid "Unmatched Target"
675
  msgstr ""
676
 
677
- #: redirection-strings.php:189, redirection-strings.php:193
678
  msgid "Matched Target"
679
  msgstr ""
680
 
681
- #: redirection-strings.php:190
682
  msgid "Logged Out"
683
  msgstr ""
684
 
685
- #: redirection-strings.php:191
686
  msgid "Logged In"
687
  msgstr ""
688
 
689
- #: redirection-strings.php:194
690
  msgid "Target URL"
691
  msgstr ""
692
 
693
- #: redirection-strings.php:195
694
  msgid "Show advanced options"
695
  msgstr ""
696
 
697
- #: redirection-strings.php:198, redirection-strings.php:235, redirection-strings.php:241
698
  msgid "Regex"
699
  msgstr ""
700
 
701
- #: redirection-strings.php:201
702
  msgid "Position"
703
  msgstr ""
704
 
705
- #: redirection-strings.php:202
706
  msgid "Group"
707
  msgstr ""
708
 
709
- #: redirection-strings.php:203
710
  msgid "with HTTP code"
711
  msgstr ""
712
 
713
- #: redirection-strings.php:204
714
  msgid "When matched"
715
  msgstr ""
716
 
717
- #: redirection-strings.php:205
718
  msgid "Match"
719
  msgstr ""
720
 
721
- #: redirection-strings.php:206
722
  msgid "Title"
723
  msgstr ""
724
 
725
- #: redirection-strings.php:207
726
  msgid "410 - Gone"
727
  msgstr ""
728
 
729
- #: redirection-strings.php:208
730
  msgid "404 - Not Found"
731
  msgstr ""
732
 
733
- #: redirection-strings.php:209
734
  msgid "401 - Unauthorized"
735
  msgstr ""
736
 
737
- #: redirection-strings.php:210
738
  msgid "308 - Permanent Redirect"
739
  msgstr ""
740
 
741
- #: redirection-strings.php:211
742
  msgid "307 - Temporary Redirect"
743
  msgstr ""
744
 
745
- #: redirection-strings.php:212
746
  msgid "302 - Found"
747
  msgstr ""
748
 
749
- #: redirection-strings.php:213
750
  msgid "301 - Moved Permanently"
751
  msgstr ""
752
 
753
- #: redirection-strings.php:214
754
  msgid "Do nothing"
755
  msgstr ""
756
 
757
- #: redirection-strings.php:215
758
  msgid "Error (404)"
759
  msgstr ""
760
 
761
- #: redirection-strings.php:216
762
  msgid "Pass-through"
763
  msgstr ""
764
 
765
- #: redirection-strings.php:217
766
  msgid "Redirect to random post"
767
  msgstr ""
768
 
769
- #: redirection-strings.php:218
770
  msgid "Redirect to URL"
771
  msgstr ""
772
 
773
- #: redirection-strings.php:219, matches/user-agent.php:10
774
  msgid "URL and user agent"
775
  msgstr ""
776
 
777
- #: redirection-strings.php:220, matches/referrer.php:10
778
  msgid "URL and referrer"
779
  msgstr ""
780
 
781
- #: redirection-strings.php:221, matches/login.php:8
782
  msgid "URL and login status"
783
  msgstr ""
784
 
785
- #: redirection-strings.php:222, matches/url.php:7
786
  msgid "URL only"
787
  msgstr ""
788
 
789
- #: redirection-strings.php:224
790
  msgid "Add new redirection"
791
  msgstr ""
792
 
793
- #: redirection-strings.php:225
794
  msgid "All groups"
795
  msgstr ""
796
 
797
- #: redirection-strings.php:226
798
  msgid "Reset hits"
799
  msgstr ""
800
 
801
- #: redirection-strings.php:230
802
  msgid "Last Access"
803
  msgstr ""
804
 
805
- #: redirection-strings.php:231
806
  msgid "Hits"
807
  msgstr ""
808
 
809
- #: redirection-strings.php:232
810
  msgid "Pos"
811
  msgstr ""
812
 
813
- #: redirection-strings.php:233
814
  msgid "URL"
815
  msgstr ""
816
 
817
- #: redirection-strings.php:234
818
  msgid "Type"
819
  msgstr ""
820
 
821
- #: redirection-strings.php:236
822
  msgid "Libraries"
823
  msgstr ""
824
 
825
- #: redirection-strings.php:237
826
  msgid "Feed Readers"
827
  msgstr ""
828
 
829
- #: redirection-strings.php:238
830
  msgid "Mobile"
831
  msgstr ""
832
 
833
- #: redirection-strings.php:239
834
  msgid "Custom"
835
  msgstr ""
836
 
837
- #: redirection-strings.php:240
838
  msgid "User Agent"
839
  msgstr ""
840
 
841
- #: redirection-strings.php:242
842
  msgid "Referrer"
843
  msgstr ""
844
 
845
- #: redirection-strings.php:243
846
  msgid "pass"
847
  msgstr ""
848
 
849
- #: redirection-strings.php:248
850
  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!"
851
  msgstr ""
852
 
853
- #: redirection-strings.php:249
854
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
855
  msgstr ""
856
 
857
- #: redirection-strings.php:250
858
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
859
  msgstr ""
860
 
861
- #: redirection-strings.php:251
862
  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."
863
  msgstr ""
864
 
865
- #: redirection-strings.php:252
866
  msgid "Need help?"
867
  msgstr ""
868
 
869
- #: redirection-strings.php:253
870
  msgid "Your email address:"
871
  msgstr ""
872
 
873
- #: redirection-strings.php:254
874
  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."
875
  msgstr ""
876
 
877
- #: redirection-strings.php:255
878
  msgid "Want to keep up to date with changes to Redirection?"
879
  msgstr ""
880
 
881
- #: redirection-strings.php:256, redirection-strings.php:258
882
  msgid "Newsletter"
883
  msgstr ""
884
 
885
- #: redirection-strings.php:257
886
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
887
  msgstr ""
888
 
889
- #: redirection-strings.php:259
890
  msgid "Plugin Status"
891
  msgstr ""
892
 
893
- #: redirection-strings.php:260
894
  msgid "⚡️ Magic fix ⚡️"
895
  msgstr ""
896
 
897
- #: redirection-strings.php:261
898
  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."
899
  msgstr ""
900
 
901
- #: redirection-strings.php:262
902
  msgid "Filter"
903
  msgstr ""
904
 
905
- #: redirection-strings.php:263
906
  msgid "Select All"
907
  msgstr ""
908
 
909
- #: redirection-strings.php:264
910
  msgid "%s item"
911
  msgid_plural "%s items"
912
  msgstr[0] ""
913
  msgstr[1] ""
914
 
915
- #: redirection-strings.php:265
916
  msgid "Last page"
917
  msgstr ""
918
 
919
- #: redirection-strings.php:266
920
  msgid "Next page"
921
  msgstr ""
922
 
923
- #: redirection-strings.php:267
924
  msgid "of %(page)s"
925
  msgstr ""
926
 
927
- #: redirection-strings.php:268
928
  msgid "Current Page"
929
  msgstr ""
930
 
931
- #: redirection-strings.php:269
932
  msgid "Prev page"
933
  msgstr ""
934
 
935
- #: redirection-strings.php:270
936
  msgid "First page"
937
  msgstr ""
938
 
939
- #: redirection-strings.php:271
940
  msgid "Apply"
941
  msgstr ""
942
 
943
- #: redirection-strings.php:272
944
  msgid "Bulk Actions"
945
  msgstr ""
946
 
947
- #: redirection-strings.php:273
948
  msgid "Select bulk action"
949
  msgstr ""
950
 
951
- #: redirection-strings.php:274
952
  msgid "No results"
953
  msgstr ""
954
 
955
- #: redirection-strings.php:275
956
  msgid "Sorry, something went wrong loading the data - please try again"
957
  msgstr ""
958
 
959
- #: redirection-strings.php:276
960
  msgid "Search"
961
  msgstr ""
962
 
963
- #: redirection-strings.php:277
964
  msgid "Search by IP"
965
  msgstr ""
966
 
967
- #: redirection-strings.php:279
968
  msgid "Agent"
969
  msgstr ""
970
 
971
- #: redirection-strings.php:280
972
  msgid "Useragent"
973
  msgstr ""
974
 
975
- #: redirection-strings.php:281
976
  msgid "Engine"
977
  msgstr ""
978
 
979
- #: redirection-strings.php:282
980
  msgid "Browser"
981
  msgstr ""
982
 
983
- #: redirection-strings.php:283
984
  msgid "Operating System"
985
  msgstr ""
986
 
987
- #: redirection-strings.php:284
988
  msgid "Device"
989
  msgstr ""
990
 
991
- #: redirection-strings.php:285
992
  msgid "Unknown Useragent"
993
  msgstr ""
994
 
995
- #: redirection-strings.php:287
996
  msgid "Useragent Error"
997
  msgstr ""
998
 
999
- #: redirection-strings.php:288
1000
  msgid "Are you sure you want to delete this item?"
1001
  msgid_plural "Are you sure you want to delete these items?"
1002
  msgstr[0] ""
1003
  msgstr[1] ""
1004
 
1005
- #: redirection-strings.php:289
 
 
 
 
1006
  msgid "Group saved"
1007
  msgstr ""
1008
 
1009
- #: redirection-strings.php:290
1010
  msgid "Settings saved"
1011
  msgstr ""
1012
 
1013
- #: redirection-strings.php:291
1014
  msgid "Log deleted"
1015
  msgstr ""
1016
 
1017
- #: redirection-strings.php:292
1018
  msgid "Redirection saved"
1019
  msgstr ""
1020
 
@@ -1030,47 +1078,71 @@ msgstr ""
1030
  msgid "The following tables are missing:"
1031
  msgstr ""
1032
 
1033
- #: models/fixer.php:18
1034
  msgid "Database tables"
1035
  msgstr ""
1036
 
1037
- #: models/fixer.php:20
1038
  msgid "Valid groups"
1039
  msgstr ""
1040
 
1041
- #: models/fixer.php:22
1042
  msgid "No valid groups, so you will not be able to create any redirects"
1043
  msgstr ""
1044
 
1045
- #: models/fixer.php:22
1046
  msgid "Valid groups detected"
1047
  msgstr ""
1048
 
1049
- #: models/fixer.php:26
1050
  msgid "Valid redirect group"
1051
  msgstr ""
1052
 
1053
- #: models/fixer.php:28
1054
  msgid "Redirects with invalid groups detected"
1055
  msgstr ""
1056
 
1057
- #: models/fixer.php:28
1058
  msgid "All redirects have a valid group"
1059
  msgstr ""
1060
 
1061
- #: models/fixer.php:32
1062
  msgid "Post monitor group"
1063
  msgstr ""
1064
 
1065
- #: models/fixer.php:34
1066
  msgid "Post monitor group is invalid"
1067
  msgstr ""
1068
 
1069
- #: models/fixer.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1070
  msgid "Failed to fix database tables"
1071
  msgstr ""
1072
 
1073
- #: models/fixer.php:77
1074
  msgid "Unable to create group"
1075
  msgstr ""
1076
 
@@ -1078,18 +1150,18 @@ msgstr ""
1078
  msgid "Default WordPress \"old slugs\""
1079
  msgstr ""
1080
 
1081
- #: models/redirect.php:434
1082
  msgid "Invalid redirect matcher"
1083
  msgstr ""
1084
 
1085
- #: models/redirect.php:440
1086
  msgid "Invalid redirect action"
1087
  msgstr ""
1088
 
1089
- #: models/redirect.php:498
1090
  msgid "Invalid group when creating redirect"
1091
  msgstr ""
1092
 
1093
- #: models/redirect.php:508
1094
  msgid "Invalid source URL"
1095
  msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
+ #: redirection-admin.php:154
18
  msgid "Settings"
19
  msgstr ""
20
 
21
+ #: redirection-admin.php:181
22
  msgid "Log entries (%d max)"
23
  msgstr ""
24
 
25
+ #: redirection-admin.php:254
26
  msgid "Redirection Support"
27
  msgstr ""
28
 
29
+ #: redirection-admin.php:255
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:297
34
  msgid "Unable to load Redirection"
35
  msgstr ""
36
 
37
+ #: redirection-admin.php:298
38
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
39
  msgstr ""
40
 
41
+ #: redirection-admin.php:316
42
  msgid "Redirection not installed properly"
43
  msgstr ""
44
 
45
+ #: redirection-admin.php:317
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:348
50
  msgid "Loading, please wait..."
51
  msgstr ""
52
 
53
+ #: redirection-admin.php:355
54
+ msgid "Unable to load Redirection ☹️"
55
+ msgstr ""
56
+
57
+ #: redirection-admin.php:356
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:357, redirection-strings.php:56
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:358
66
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
67
  msgstr ""
68
 
69
+ #: redirection-admin.php:360
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:361
74
+ msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
75
+ msgstr ""
76
+
77
+ #: redirection-admin.php:362
78
  msgid "If you think Redirection is at fault then create an issue."
79
  msgstr ""
80
 
81
+ #: redirection-admin.php:363
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:366, redirection-strings.php:7
86
  msgid "Create Issue"
87
  msgstr ""
88
 
103
  msgstr ""
104
 
105
  #: redirection-strings.php:9
106
+ msgid "None of the suggestions helped"
107
  msgstr ""
108
 
109
  #: redirection-strings.php:10
110
+ msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
111
  msgstr ""
112
 
113
  #: redirection-strings.php:11
114
+ msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
115
  msgstr ""
116
 
117
+ #: redirection-strings.php:12
118
+ msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
119
  msgstr ""
120
 
121
  #: redirection-strings.php:13
122
+ msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
123
  msgstr ""
124
 
125
  #: redirection-strings.php:14
126
+ msgid "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
127
  msgstr ""
128
 
129
+ #: redirection-strings.php:15, redirection-strings.php:58
130
+ msgid "Something went wrong 🙁"
131
  msgstr ""
132
 
133
  #: redirection-strings.php:16
134
+ 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!"
135
  msgstr ""
136
 
137
  #: redirection-strings.php:17
138
+ msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
139
  msgstr ""
140
 
141
  #: redirection-strings.php:18
142
+ msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
143
  msgstr ""
144
 
145
  #: redirection-strings.php:19
146
+ msgid "Your server has rejected the request for being too big. You will need to change it to continue."
147
+ msgstr ""
148
+
149
+ #: redirection-strings.php:20
150
+ msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
151
+ msgstr ""
152
+
153
+ #: redirection-strings.php:21
154
+ 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."
155
+ msgstr ""
156
+
157
+ #: redirection-strings.php:22
158
  msgid "The data on this page has expired, please reload."
159
  msgstr ""
160
 
161
+ #: redirection-strings.php:23, redirection-strings.php:287
162
  msgid "Powered by {{link}}redirect.li{{/link}}"
163
  msgstr ""
164
 
165
+ #: redirection-strings.php:24
166
  msgid "Geo Location"
167
  msgstr ""
168
 
169
+ #: redirection-strings.php:25
170
  msgid "Timezone"
171
  msgstr ""
172
 
173
+ #: redirection-strings.php:26
174
  msgid "Area"
175
  msgstr ""
176
 
177
+ #: redirection-strings.php:27
178
  msgid "City"
179
  msgstr ""
180
 
181
+ #: redirection-strings.php:28, redirection-strings.php:30, redirection-strings.php:32
182
  msgid "Geo IP"
183
  msgstr ""
184
 
185
+ #: redirection-strings.php:29
186
  msgid "No details are known for this address."
187
  msgstr ""
188
 
189
+ #: redirection-strings.php:31
190
  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."
191
  msgstr ""
192
 
193
+ #: redirection-strings.php:33, redirection-strings.php:295
194
  msgid "Something went wrong obtaining this information"
195
  msgstr ""
196
 
197
+ #: redirection-strings.php:34
198
  msgid "Geo IP Error"
199
  msgstr ""
200
 
201
+ #: redirection-strings.php:35, redirection-strings.php:44, redirection-strings.php:48
202
  msgid "Name"
203
  msgstr ""
204
 
205
+ #: redirection-strings.php:36
206
  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."
207
  msgstr ""
208
 
209
+ #: redirection-strings.php:37
210
  msgid "Add Group"
211
  msgstr ""
212
 
213
+ #: redirection-strings.php:38
214
  msgid "All modules"
215
  msgstr ""
216
 
217
+ #: redirection-strings.php:39, redirection-strings.php:50, redirection-strings.php:236, redirection-strings.php:254
218
  msgid "Disable"
219
  msgstr ""
220
 
221
+ #: redirection-strings.php:40, redirection-strings.php:49, redirection-strings.php:237, redirection-strings.php:253
222
  msgid "Enable"
223
  msgstr ""
224
 
225
+ #: redirection-strings.php:41, redirection-strings.php:52, redirection-strings.php:111, redirection-strings.php:119, redirection-strings.php:120, redirection-strings.php:129, redirection-strings.php:146, redirection-strings.php:238, redirection-strings.php:255
226
  msgid "Delete"
227
  msgstr ""
228
 
229
+ #: redirection-strings.php:42, redirection-strings.php:47
230
  msgid "Module"
231
  msgstr ""
232
 
233
+ #: redirection-strings.php:43, redirection-strings.php:139
234
  msgid "Redirects"
235
  msgstr ""
236
 
237
+ #: redirection-strings.php:45, redirection-strings.php:96, redirection-strings.php:206
238
  msgid "Cancel"
239
  msgstr ""
240
 
241
+ #: redirection-strings.php:46, redirection-strings.php:209
242
  msgid "Save"
243
  msgstr ""
244
 
245
+ #: redirection-strings.php:51
246
  msgid "View Redirects"
247
  msgstr ""
248
 
249
+ #: redirection-strings.php:53, redirection-strings.php:256
250
  msgid "Edit"
251
  msgstr ""
252
 
253
+ #: redirection-strings.php:54
254
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
255
  msgstr ""
256
 
257
+ #: redirection-strings.php:55
258
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
259
  msgstr ""
260
 
261
+ #: redirection-strings.php:57
262
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
263
  msgstr ""
264
 
265
+ #: redirection-strings.php:59
266
+ msgid "More details."
267
+ msgstr ""
268
+
269
+ #: redirection-strings.php:60
270
  msgid "Please clear your browser cache and reload this page."
271
  msgstr ""
272
 
273
+ #: redirection-strings.php:61
274
  msgid "Cached Redirection detected"
275
  msgstr ""
276
 
277
+ #: redirection-strings.php:62, redirection-strings.php:133
278
  msgid "Support"
279
  msgstr ""
280
 
281
+ #: redirection-strings.php:63, redirection-strings.php:134
282
  msgid "Options"
283
  msgstr ""
284
 
285
+ #: redirection-strings.php:64
286
  msgid "404 errors"
287
  msgstr ""
288
 
289
+ #: redirection-strings.php:65
290
  msgid "Logs"
291
  msgstr ""
292
 
293
+ #: redirection-strings.php:66, redirection-strings.php:135
294
  msgid "Import/Export"
295
  msgstr ""
296
 
297
+ #: redirection-strings.php:67, redirection-strings.php:138
298
  msgid "Groups"
299
  msgstr ""
300
 
301
+ #: redirection-strings.php:68, models/database.php:138
302
  msgid "Redirections"
303
  msgstr ""
304
 
305
+ #: redirection-strings.php:69
306
  msgid "Import from %s"
307
  msgstr ""
308
 
309
+ #: redirection-strings.php:70
310
  msgid "total = "
311
  msgstr ""
312
 
313
+ #: redirection-strings.php:71
314
  msgid "Log files can be exported from the log pages."
315
  msgstr ""
316
 
317
+ #: redirection-strings.php:72
318
  msgid "Download"
319
  msgstr ""
320
 
321
+ #: redirection-strings.php:73
322
  msgid "View"
323
  msgstr ""
324
 
325
+ #: redirection-strings.php:74
326
  msgid "Redirection JSON"
327
  msgstr ""
328
 
329
+ #: redirection-strings.php:75
330
  msgid "Nginx rewrite rules"
331
  msgstr ""
332
 
333
+ #: redirection-strings.php:76
334
  msgid "Apache .htaccess"
335
  msgstr ""
336
 
337
+ #: redirection-strings.php:77
338
  msgid "CSV"
339
  msgstr ""
340
 
341
+ #: redirection-strings.php:78
342
  msgid "Nginx redirects"
343
  msgstr ""
344
 
345
+ #: redirection-strings.php:79
346
  msgid "Apache redirects"
347
  msgstr ""
348
 
349
+ #: redirection-strings.php:80
350
  msgid "WordPress redirects"
351
  msgstr ""
352
 
353
+ #: redirection-strings.php:81
354
  msgid "Everything"
355
  msgstr ""
356
 
357
+ #: redirection-strings.php:82
358
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
359
  msgstr ""
360
 
361
+ #: redirection-strings.php:83, redirection-strings.php:110
362
  msgid "Export"
363
  msgstr ""
364
 
365
+ #: redirection-strings.php:84
366
  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)."
367
  msgstr ""
368
 
369
+ #: redirection-strings.php:85
370
  msgid "All imports will be appended to the current database."
371
  msgstr ""
372
 
373
+ #: redirection-strings.php:86
374
  msgid "Import"
375
  msgstr ""
376
 
377
+ #: redirection-strings.php:87
378
  msgid "The following redirect plugins were detected on your site and can be imported from."
379
  msgstr ""
380
 
381
+ #: redirection-strings.php:88
382
  msgid "Plugin Importers"
383
  msgstr ""
384
 
385
+ #: redirection-strings.php:89
386
  msgid "Are you sure you want to import from %s?"
387
  msgstr ""
388
 
389
+ #: redirection-strings.php:90, redirection-strings.php:205
390
  msgid "Close"
391
  msgstr ""
392
 
393
+ #: redirection-strings.php:91
394
  msgid "OK"
395
  msgstr ""
396
 
397
+ #: redirection-strings.php:92
398
  msgid "Double-check the file is the correct format!"
399
  msgstr ""
400
 
401
+ #: redirection-strings.php:93
402
  msgid "Total redirects imported:"
403
  msgstr ""
404
 
405
+ #: redirection-strings.php:94
406
  msgid "Finished importing"
407
  msgstr ""
408
 
409
+ #: redirection-strings.php:95
410
  msgid "Importing"
411
  msgstr ""
412
 
413
+ #: redirection-strings.php:97
414
  msgid "Upload"
415
  msgstr ""
416
 
417
+ #: redirection-strings.php:98
418
  msgid "File selected"
419
  msgstr ""
420
 
421
+ #: redirection-strings.php:99
422
  msgid "Add File"
423
  msgstr ""
424
 
425
+ #: redirection-strings.php:100
426
  msgid "Click 'Add File' or drag and drop here."
427
  msgstr ""
428
 
429
+ #: redirection-strings.php:101
430
  msgid "Import a CSV, .htaccess, or JSON file."
431
  msgstr ""
432
 
433
+ #: redirection-strings.php:102
434
  msgid "Import to group"
435
  msgstr ""
436
 
437
+ #: redirection-strings.php:103
438
  msgid "No! Don't delete the logs"
439
  msgstr ""
440
 
441
+ #: redirection-strings.php:104
442
  msgid "Yes! Delete the logs"
443
  msgstr ""
444
 
445
+ #: redirection-strings.php:105
446
  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."
447
  msgstr ""
448
 
449
+ #: redirection-strings.php:106
450
  msgid "Delete the logs - are you sure?"
451
  msgstr ""
452
 
453
+ #: redirection-strings.php:107
454
  msgid "Delete All"
455
  msgstr ""
456
 
457
+ #: redirection-strings.php:108
458
  msgid "Delete all matching \"%s\""
459
  msgstr ""
460
 
461
+ #: redirection-strings.php:109
462
  msgid "Delete all from IP %s"
463
  msgstr ""
464
 
465
+ #: redirection-strings.php:112, redirection-strings.php:121
466
  msgid "IP"
467
  msgstr ""
468
 
469
+ #: redirection-strings.php:113, redirection-strings.php:122
470
  msgid "Referrer / User Agent"
471
  msgstr ""
472
 
473
+ #: redirection-strings.php:114, redirection-strings.php:123, redirection-strings.php:208
474
  msgid "Source URL"
475
  msgstr ""
476
 
477
+ #: redirection-strings.php:115, redirection-strings.php:124
478
  msgid "Date"
479
  msgstr ""
480
 
481
+ #: redirection-strings.php:116, redirection-strings.php:125
482
  msgid "Filter by IP"
483
  msgstr ""
484
 
485
+ #: redirection-strings.php:117, redirection-strings.php:126
486
  msgid "Agent Info"
487
  msgstr ""
488
 
489
+ #: redirection-strings.php:118, redirection-strings.php:127
490
  msgid "Geo Info"
491
  msgstr ""
492
 
493
+ #: redirection-strings.php:128, redirection-strings.php:132, redirection-strings.php:232
494
  msgid "Add Redirect"
495
  msgstr ""
496
 
497
+ #: redirection-strings.php:130
498
  msgid "Delete all logs for this 404"
499
  msgstr ""
500
 
501
+ #: redirection-strings.php:131
502
  msgid "Delete 404s"
503
  msgstr ""
504
 
505
+ #: redirection-strings.php:136
506
  msgid "404s"
507
  msgstr ""
508
 
509
+ #: redirection-strings.php:137
510
  msgid "Log"
511
  msgstr ""
512
 
513
+ #: redirection-strings.php:140
514
  msgid "View notice"
515
  msgstr ""
516
 
517
+ #: redirection-strings.php:141
518
  msgid "No! Don't delete the plugin"
519
  msgstr ""
520
 
521
+ #: redirection-strings.php:142
522
  msgid "Yes! Delete the plugin"
523
  msgstr ""
524
 
525
+ #: redirection-strings.php:143
526
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
527
  msgstr ""
528
 
529
+ #: redirection-strings.php:144
530
  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."
531
  msgstr ""
532
 
533
+ #: redirection-strings.php:145
534
  msgid "Delete the plugin - are you sure?"
535
  msgstr ""
536
 
537
+ #: redirection-strings.php:147
538
  msgid "Delete Redirection"
539
  msgstr ""
540
 
541
+ #: redirection-strings.php:148
542
  msgid "Plugin Support"
543
  msgstr ""
544
 
545
+ #: redirection-strings.php:149
546
  msgid "Support 💰"
547
  msgstr ""
548
 
549
+ #: redirection-strings.php:150
550
  msgid "You get useful software and I get to carry on making it better."
551
  msgstr ""
552
 
553
+ #: redirection-strings.php:151
554
  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}}."
555
  msgstr ""
556
 
557
+ #: redirection-strings.php:152
558
  msgid "I'd like to support some more."
559
  msgstr ""
560
 
561
+ #: redirection-strings.php:153
562
  msgid "You've supported this plugin - thank you!"
563
  msgstr ""
564
 
565
+ #: redirection-strings.php:154
566
  msgid "Update"
567
  msgstr ""
568
 
569
+ #: redirection-strings.php:155
570
+ msgid "How Redirection uses the REST API - don't change unless necessary"
571
+ msgstr ""
572
+
573
+ #: redirection-strings.php:156
574
+ msgid "REST API"
575
+ msgstr ""
576
+
577
+ #: redirection-strings.php:157
578
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
579
  msgstr ""
580
 
581
+ #: redirection-strings.php:158
582
  msgid "Redirect Cache"
583
  msgstr ""
584
 
585
+ #: redirection-strings.php:159
586
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
587
  msgstr ""
588
 
589
+ #: redirection-strings.php:160
590
  msgid "Apache Module"
591
  msgstr ""
592
 
593
+ #: redirection-strings.php:161
594
+ 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"
595
  msgstr ""
596
 
597
+ #: redirection-strings.php:162
598
  msgid "Auto-generate URL"
599
  msgstr ""
600
 
601
+ #: redirection-strings.php:163
602
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
603
  msgstr ""
604
 
605
+ #: redirection-strings.php:164
606
  msgid "RSS Token"
607
  msgstr ""
608
 
609
+ #: redirection-strings.php:165
610
  msgid "URL Monitor"
611
  msgstr ""
612
 
613
+ #: redirection-strings.php:166
614
  msgid "(select IP logging level)"
615
  msgstr ""
616
 
617
+ #: redirection-strings.php:167
618
  msgid "IP Logging"
619
  msgstr ""
620
 
621
+ #: redirection-strings.php:168, redirection-strings.php:170
622
  msgid "(time to keep logs for)"
623
  msgstr ""
624
 
625
+ #: redirection-strings.php:169
626
  msgid "404 Logs"
627
  msgstr ""
628
 
629
+ #: redirection-strings.php:171
630
  msgid "Redirect Logs"
631
  msgstr ""
632
 
633
+ #: redirection-strings.php:172
634
  msgid "I'm a nice person and I have helped support the author of this plugin"
635
  msgstr ""
636
 
637
+ #: redirection-strings.php:173
638
  msgid "Monitor changes to %(type)s"
639
  msgstr ""
640
 
641
+ #: redirection-strings.php:174
642
  msgid "Create associated redirect (added to end of URL)"
643
  msgstr ""
644
 
645
+ #: redirection-strings.php:175
646
  msgid "For example \"/amp\""
647
  msgstr ""
648
 
649
+ #: redirection-strings.php:176
650
  msgid "Save changes to this group"
651
  msgstr ""
652
 
653
+ #: redirection-strings.php:177
654
  msgid "URL Monitor Changes"
655
  msgstr ""
656
 
657
+ #: redirection-strings.php:178
658
+ msgid "Proxy over Admin AJAX (deprecated)"
659
+ msgstr ""
660
+
661
+ #: redirection-strings.php:179
662
+ msgid "Raw /index.php?rest_route=/"
663
+ msgstr ""
664
+
665
+ #: redirection-strings.php:180
666
+ msgid "Default /wp-json/ (preferred)"
667
+ msgstr ""
668
+
669
+ #: redirection-strings.php:181
670
  msgid "Anonymize IP (mask last part)"
671
  msgstr ""
672
 
673
+ #: redirection-strings.php:182
674
  msgid "Full IP logging"
675
  msgstr ""
676
 
677
+ #: redirection-strings.php:183
678
  msgid "No IP logging"
679
  msgstr ""
680
 
681
+ #: redirection-strings.php:184, redirection-strings.php:189
682
  msgid "Forever"
683
  msgstr ""
684
 
685
+ #: redirection-strings.php:185, redirection-strings.php:192
686
  msgid "A week"
687
  msgstr ""
688
 
689
+ #: redirection-strings.php:186, redirection-strings.php:193
690
  msgid "A day"
691
  msgstr ""
692
 
693
+ #: redirection-strings.php:187
694
  msgid "An hour"
695
  msgstr ""
696
 
697
+ #: redirection-strings.php:188
698
  msgid "Never cache"
699
  msgstr ""
700
 
701
+ #: redirection-strings.php:190
702
  msgid "Two months"
703
  msgstr ""
704
 
705
+ #: redirection-strings.php:191
706
  msgid "A month"
707
  msgstr ""
708
 
709
+ #: redirection-strings.php:194
710
  msgid "No logs"
711
  msgstr ""
712
 
713
+ #: redirection-strings.php:195, redirection-strings.php:196
714
  msgid "Saving..."
715
  msgstr ""
716
 
717
+ #: redirection-strings.php:197, redirection-strings.php:201
718
  msgid "Unmatched Target"
719
  msgstr ""
720
 
721
+ #: redirection-strings.php:198, redirection-strings.php:202
722
  msgid "Matched Target"
723
  msgstr ""
724
 
725
+ #: redirection-strings.php:199
726
  msgid "Logged Out"
727
  msgstr ""
728
 
729
+ #: redirection-strings.php:200
730
  msgid "Logged In"
731
  msgstr ""
732
 
733
+ #: redirection-strings.php:203
734
  msgid "Target URL"
735
  msgstr ""
736
 
737
+ #: redirection-strings.php:204
738
  msgid "Show advanced options"
739
  msgstr ""
740
 
741
+ #: redirection-strings.php:207, redirection-strings.php:244, redirection-strings.php:250
742
  msgid "Regex"
743
  msgstr ""
744
 
745
+ #: redirection-strings.php:210
746
  msgid "Position"
747
  msgstr ""
748
 
749
+ #: redirection-strings.php:211
750
  msgid "Group"
751
  msgstr ""
752
 
753
+ #: redirection-strings.php:212
754
  msgid "with HTTP code"
755
  msgstr ""
756
 
757
+ #: redirection-strings.php:213
758
  msgid "When matched"
759
  msgstr ""
760
 
761
+ #: redirection-strings.php:214
762
  msgid "Match"
763
  msgstr ""
764
 
765
+ #: redirection-strings.php:215
766
  msgid "Title"
767
  msgstr ""
768
 
769
+ #: redirection-strings.php:216
770
  msgid "410 - Gone"
771
  msgstr ""
772
 
773
+ #: redirection-strings.php:217
774
  msgid "404 - Not Found"
775
  msgstr ""
776
 
777
+ #: redirection-strings.php:218
778
  msgid "401 - Unauthorized"
779
  msgstr ""
780
 
781
+ #: redirection-strings.php:219
782
  msgid "308 - Permanent Redirect"
783
  msgstr ""
784
 
785
+ #: redirection-strings.php:220
786
  msgid "307 - Temporary Redirect"
787
  msgstr ""
788
 
789
+ #: redirection-strings.php:221
790
  msgid "302 - Found"
791
  msgstr ""
792
 
793
+ #: redirection-strings.php:222
794
  msgid "301 - Moved Permanently"
795
  msgstr ""
796
 
797
+ #: redirection-strings.php:223
798
  msgid "Do nothing"
799
  msgstr ""
800
 
801
+ #: redirection-strings.php:224
802
  msgid "Error (404)"
803
  msgstr ""
804
 
805
+ #: redirection-strings.php:225
806
  msgid "Pass-through"
807
  msgstr ""
808
 
809
+ #: redirection-strings.php:226
810
  msgid "Redirect to random post"
811
  msgstr ""
812
 
813
+ #: redirection-strings.php:227
814
  msgid "Redirect to URL"
815
  msgstr ""
816
 
817
+ #: redirection-strings.php:228, matches/user-agent.php:10
818
  msgid "URL and user agent"
819
  msgstr ""
820
 
821
+ #: redirection-strings.php:229, matches/referrer.php:10
822
  msgid "URL and referrer"
823
  msgstr ""
824
 
825
+ #: redirection-strings.php:230, matches/login.php:8
826
  msgid "URL and login status"
827
  msgstr ""
828
 
829
+ #: redirection-strings.php:231, matches/url.php:7
830
  msgid "URL only"
831
  msgstr ""
832
 
833
+ #: redirection-strings.php:233
834
  msgid "Add new redirection"
835
  msgstr ""
836
 
837
+ #: redirection-strings.php:234
838
  msgid "All groups"
839
  msgstr ""
840
 
841
+ #: redirection-strings.php:235
842
  msgid "Reset hits"
843
  msgstr ""
844
 
845
+ #: redirection-strings.php:239
846
  msgid "Last Access"
847
  msgstr ""
848
 
849
+ #: redirection-strings.php:240
850
  msgid "Hits"
851
  msgstr ""
852
 
853
+ #: redirection-strings.php:241
854
  msgid "Pos"
855
  msgstr ""
856
 
857
+ #: redirection-strings.php:242
858
  msgid "URL"
859
  msgstr ""
860
 
861
+ #: redirection-strings.php:243
862
  msgid "Type"
863
  msgstr ""
864
 
865
+ #: redirection-strings.php:245
866
  msgid "Libraries"
867
  msgstr ""
868
 
869
+ #: redirection-strings.php:246
870
  msgid "Feed Readers"
871
  msgstr ""
872
 
873
+ #: redirection-strings.php:247
874
  msgid "Mobile"
875
  msgstr ""
876
 
877
+ #: redirection-strings.php:248
878
  msgid "Custom"
879
  msgstr ""
880
 
881
+ #: redirection-strings.php:249
882
  msgid "User Agent"
883
  msgstr ""
884
 
885
+ #: redirection-strings.php:251
886
  msgid "Referrer"
887
  msgstr ""
888
 
889
+ #: redirection-strings.php:252
890
  msgid "pass"
891
  msgstr ""
892
 
893
+ #: redirection-strings.php:257
894
  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!"
895
  msgstr ""
896
 
897
+ #: redirection-strings.php:258
898
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
899
  msgstr ""
900
 
901
+ #: redirection-strings.php:259
902
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
903
  msgstr ""
904
 
905
+ #: redirection-strings.php:260
906
  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."
907
  msgstr ""
908
 
909
+ #: redirection-strings.php:261
910
  msgid "Need help?"
911
  msgstr ""
912
 
913
+ #: redirection-strings.php:262
914
  msgid "Your email address:"
915
  msgstr ""
916
 
917
+ #: redirection-strings.php:263
918
  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."
919
  msgstr ""
920
 
921
+ #: redirection-strings.php:264
922
  msgid "Want to keep up to date with changes to Redirection?"
923
  msgstr ""
924
 
925
+ #: redirection-strings.php:265, redirection-strings.php:267
926
  msgid "Newsletter"
927
  msgstr ""
928
 
929
+ #: redirection-strings.php:266
930
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
931
  msgstr ""
932
 
933
+ #: redirection-strings.php:268
934
  msgid "Plugin Status"
935
  msgstr ""
936
 
937
+ #: redirection-strings.php:269
938
  msgid "⚡️ Magic fix ⚡️"
939
  msgstr ""
940
 
941
+ #: redirection-strings.php:270
942
  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."
943
  msgstr ""
944
 
945
+ #: redirection-strings.php:271
946
  msgid "Filter"
947
  msgstr ""
948
 
949
+ #: redirection-strings.php:272
950
  msgid "Select All"
951
  msgstr ""
952
 
953
+ #: redirection-strings.php:273
954
  msgid "%s item"
955
  msgid_plural "%s items"
956
  msgstr[0] ""
957
  msgstr[1] ""
958
 
959
+ #: redirection-strings.php:274
960
  msgid "Last page"
961
  msgstr ""
962
 
963
+ #: redirection-strings.php:275
964
  msgid "Next page"
965
  msgstr ""
966
 
967
+ #: redirection-strings.php:276
968
  msgid "of %(page)s"
969
  msgstr ""
970
 
971
+ #: redirection-strings.php:277
972
  msgid "Current Page"
973
  msgstr ""
974
 
975
+ #: redirection-strings.php:278
976
  msgid "Prev page"
977
  msgstr ""
978
 
979
+ #: redirection-strings.php:279
980
  msgid "First page"
981
  msgstr ""
982
 
983
+ #: redirection-strings.php:280
984
  msgid "Apply"
985
  msgstr ""
986
 
987
+ #: redirection-strings.php:281
988
  msgid "Bulk Actions"
989
  msgstr ""
990
 
991
+ #: redirection-strings.php:282
992
  msgid "Select bulk action"
993
  msgstr ""
994
 
995
+ #: redirection-strings.php:283
996
  msgid "No results"
997
  msgstr ""
998
 
999
+ #: redirection-strings.php:284
1000
  msgid "Sorry, something went wrong loading the data - please try again"
1001
  msgstr ""
1002
 
1003
+ #: redirection-strings.php:285
1004
  msgid "Search"
1005
  msgstr ""
1006
 
1007
+ #: redirection-strings.php:286
1008
  msgid "Search by IP"
1009
  msgstr ""
1010
 
1011
+ #: redirection-strings.php:288
1012
  msgid "Agent"
1013
  msgstr ""
1014
 
1015
+ #: redirection-strings.php:289
1016
  msgid "Useragent"
1017
  msgstr ""
1018
 
1019
+ #: redirection-strings.php:290
1020
  msgid "Engine"
1021
  msgstr ""
1022
 
1023
+ #: redirection-strings.php:291
1024
  msgid "Browser"
1025
  msgstr ""
1026
 
1027
+ #: redirection-strings.php:292
1028
  msgid "Operating System"
1029
  msgstr ""
1030
 
1031
+ #: redirection-strings.php:293
1032
  msgid "Device"
1033
  msgstr ""
1034
 
1035
+ #: redirection-strings.php:294
1036
  msgid "Unknown Useragent"
1037
  msgstr ""
1038
 
1039
+ #: redirection-strings.php:296
1040
  msgid "Useragent Error"
1041
  msgstr ""
1042
 
1043
+ #: redirection-strings.php:297
1044
  msgid "Are you sure you want to delete this item?"
1045
  msgid_plural "Are you sure you want to delete these items?"
1046
  msgstr[0] ""
1047
  msgstr[1] ""
1048
 
1049
+ #: redirection-strings.php:298
1050
+ msgid "404 deleted"
1051
+ msgstr ""
1052
+
1053
+ #: redirection-strings.php:299
1054
  msgid "Group saved"
1055
  msgstr ""
1056
 
1057
+ #: redirection-strings.php:300
1058
  msgid "Settings saved"
1059
  msgstr ""
1060
 
1061
+ #: redirection-strings.php:301
1062
  msgid "Log deleted"
1063
  msgstr ""
1064
 
1065
+ #: redirection-strings.php:302
1066
  msgid "Redirection saved"
1067
  msgstr ""
1068
 
1078
  msgid "The following tables are missing:"
1079
  msgstr ""
1080
 
1081
+ #: models/fixer.php:21
1082
  msgid "Database tables"
1083
  msgstr ""
1084
 
1085
+ #: models/fixer.php:23
1086
  msgid "Valid groups"
1087
  msgstr ""
1088
 
1089
+ #: models/fixer.php:25
1090
  msgid "No valid groups, so you will not be able to create any redirects"
1091
  msgstr ""
1092
 
1093
+ #: models/fixer.php:25
1094
  msgid "Valid groups detected"
1095
  msgstr ""
1096
 
1097
+ #: models/fixer.php:29
1098
  msgid "Valid redirect group"
1099
  msgstr ""
1100
 
1101
+ #: models/fixer.php:31
1102
  msgid "Redirects with invalid groups detected"
1103
  msgstr ""
1104
 
1105
+ #: models/fixer.php:31
1106
  msgid "All redirects have a valid group"
1107
  msgstr ""
1108
 
1109
+ #: models/fixer.php:35
1110
  msgid "Post monitor group"
1111
  msgstr ""
1112
 
1113
+ #: models/fixer.php:37
1114
  msgid "Post monitor group is invalid"
1115
  msgstr ""
1116
 
1117
+ #: models/fixer.php:47
1118
+ msgid "Redirection routes"
1119
+ msgstr ""
1120
+
1121
+ #: models/fixer.php:55
1122
+ msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
1123
+ msgstr ""
1124
+
1125
+ #: models/fixer.php:58, models/fixer.php:67
1126
+ msgid "Redirection routes are working"
1127
+ msgstr ""
1128
+
1129
+ #: models/fixer.php:73
1130
+ msgid "REST API is not working so routes not checked"
1131
+ msgstr ""
1132
+
1133
+ #: models/fixer.php:81
1134
+ msgid "WordPress REST API"
1135
+ msgstr ""
1136
+
1137
+ #: models/fixer.php:84
1138
+ msgid "WordPress REST API is working at %s"
1139
+ msgstr ""
1140
+
1141
+ #: models/fixer.php:181
1142
  msgid "Failed to fix database tables"
1143
  msgstr ""
1144
 
1145
+ #: models/fixer.php:189
1146
  msgid "Unable to create group"
1147
  msgstr ""
1148
 
1150
  msgid "Default WordPress \"old slugs\""
1151
  msgstr ""
1152
 
1153
+ #: models/redirect.php:437
1154
  msgid "Invalid redirect matcher"
1155
  msgstr ""
1156
 
1157
+ #: models/redirect.php:443
1158
  msgid "Invalid redirect action"
1159
  msgstr ""
1160
 
1161
+ #: models/redirect.php:501
1162
  msgid "Invalid group when creating redirect"
1163
  msgstr ""
1164
 
1165
+ #: models/redirect.php:511
1166
  msgid "Invalid source URL"
1167
  msgstr ""
models/fixer.php CHANGED
@@ -13,8 +13,11 @@ class Red_Fixer {
13
  $bad_group = $this->get_missing();
14
  $monitor_group = $options['monitor_post'];
15
  $valid_monitor = Red_Group::get( $monitor_group ) || $monitor_group === 0;
 
16
 
17
  $result = array(
 
 
18
  array_merge( array( 'id' => 'db', 'name' => __( 'Database tables', 'redirection' ) ), $db->get_status() ),
19
  array(
20
  'name' => __( 'Valid groups', 'redirection' ),
@@ -33,12 +36,64 @@ class Red_Fixer {
33
  'id' => 'monitor',
34
  'message' => $valid_monitor === false ? __( 'Post monitor group is invalid', 'redirection' ) : __( 'Post monitor group is valid' ),
35
  'status' => $valid_monitor === false ? 'problem' : 'good',
36
- )
37
  );
38
 
39
  return $result;
40
  }
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  public function fix( $status ) {
43
  foreach ( $status as $item ) {
44
  if ( $item['status'] !== 'good' ) {
@@ -60,6 +115,63 @@ class Red_Fixer {
60
  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" );
61
  }
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  private function fix_db() {
64
  $db = new RE_Database();
65
 
13
  $bad_group = $this->get_missing();
14
  $monitor_group = $options['monitor_post'];
15
  $valid_monitor = Red_Group::get( $monitor_group ) || $monitor_group === 0;
16
+ $rest_status = $this->get_rest_status();
17
 
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' ),
36
  'id' => 'monitor',
37
  'message' => $valid_monitor === false ? __( 'Post monitor group is invalid', 'redirection' ) : __( 'Post monitor group is valid' ),
38
  'status' => $valid_monitor === false ? 'problem' : 'good',
39
+ ),
40
  );
41
 
42
  return $result;
43
  }
44
 
45
+ private function get_rest_route_status( $status ) {
46
+ $result = array(
47
+ 'name' => __( 'Redirection routes', 'redirection' ),
48
+ 'id' => 'routes',
49
+ 'status' => 'problem',
50
+ );
51
+
52
+ if ( $status['status'] === 'good' ) {
53
+ $rest_api = red_get_rest_api();
54
+
55
+ $result['message'] = __( 'Redirection does not appear in your REST API routes. Have you disabled it with a plugin?', 'redirection' );
56
+
57
+ if ( strpos( $rest_api, 'admin-ajax.php' ) !== false ) {
58
+ $result['message'] = __( 'Redirection routes are working', 'redirection' );
59
+ $result['status'] = 'good';
60
+ } else {
61
+ $response = wp_remote_get( $rest_api, array( 'cookies' => $_COOKIE ) );
62
+
63
+ if ( $response && is_array( $response ) && isset( $response['body'] ) ) {
64
+ $json = @json_decode( $response['body'], true );
65
+
66
+ if ( isset( $json['routes']['/redirection/v1'] ) ) {
67
+ $result['message'] = __( 'Redirection routes are working', 'redirection' );
68
+ $result['status'] = 'good';
69
+ }
70
+ }
71
+ }
72
+ } else {
73
+ $result['message'] = __( 'REST API is not working so routes not checked', 'redirection' );
74
+ }
75
+
76
+ return $result;
77
+ }
78
+
79
+ public function get_rest_status() {
80
+ $status = array(
81
+ 'name' => __( 'WordPress REST API', 'redirection' ),
82
+ 'id' => 'rest',
83
+ 'status' => 'good',
84
+ 'message' => sprintf( __( 'WordPress REST API is working at %s', 'redirection' ), red_get_rest_api() ),
85
+ );
86
+
87
+ $result = $this->check_api( red_get_rest_api() );
88
+
89
+ if ( is_wp_error( $result ) ) {
90
+ $status['status'] = 'problem';
91
+ $status['message'] = $result->get_error_message();
92
+ }
93
+
94
+ return $status;
95
+ }
96
+
97
  public function fix( $status ) {
98
  foreach ( $status as $item ) {
99
  if ( $item['status'] !== 'good' ) {
115
  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" );
116
  }
117
 
118
+ public function fix_routes() {
119
+ }
120
+
121
+ public function fix_rest() {
122
+ // First check the default REST API
123
+ $result = $this->check_api( get_rest_url() );
124
+
125
+ if ( is_wp_error( $result ) ) {
126
+ // Try directly at index.php?rest_route
127
+ $rest_api = home_url( '/index.php?rest_route=/' );
128
+ $result = $this->check_api( $rest_api );
129
+
130
+ if ( is_wp_error( $result ) ) {
131
+ $rest_api = admin_url( 'admin-ajax.php' );
132
+ $response = wp_remote_get( $rest_api );
133
+
134
+ if ( is_array( $response ) && isset( $response['body'] ) && $response['body'] === '0' ) {
135
+ red_set_options( array( 'rest_api' => 2 ) );
136
+ return true;
137
+ }
138
+
139
+ red_set_options( array( 'rest_api' => 0 ) );
140
+ return false;
141
+ }
142
+
143
+ // It worked! Save the URL
144
+ red_set_options( array( 'rest_api' => 1 ) );
145
+ return true;
146
+ }
147
+
148
+ // Working
149
+ red_set_options( array( 'rest_api' => 0 ) );
150
+ return true;
151
+ }
152
+
153
+ private function check_api( $url ) {
154
+ $response = wp_remote_get( $url, array( 'cookies' => $_COOKIE ) );
155
+ $http_code = wp_remote_retrieve_response_code( $response );
156
+
157
+ $specific = 'REST API returns an error code';
158
+ if ( $http_code === 200 ) {
159
+ $json = @json_decode( $response['body'], true );
160
+
161
+ if ( $json || $response['body'] === '0' ) {
162
+ return true;
163
+ } else {
164
+ $specific = 'REST API returned invalid JSON data. This is probably an error page of some kind and indicates it has been disabled';
165
+ }
166
+ } elseif ( $http_code === 301 || $http_code === 302 ) {
167
+ $specific = 'REST API is being redirected. This indicates it has been disabled.';
168
+ } elseif ( $http_code === 404 ) {
169
+ $specific = 'REST API is returning 404 error. This indicates it has been disabled.';
170
+ }
171
+
172
+ return new WP_Error( 'redirection', $specific.' ('.( $http_code ? $http_code : '40x' ) .' - '.$url.')' );
173
+ }
174
+
175
  private function fix_db() {
176
  $db = new RE_Database();
177
 
models/redirect.php CHANGED
@@ -159,7 +159,10 @@ class Red_Item {
159
  return $data;
160
  }
161
 
162
- $data['status'] = isset( $details['status'] ) && $details['status'] === 'disabled' ? 'disabled' : 'enabled';
 
 
 
163
 
164
  if ( ! isset( $details['position'] ) || $details['position'] === 0 ) {
165
  $data['position'] = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}redirection_items WHERE group_id=%d", $data['group_id'] ) );
159
  return $data;
160
  }
161
 
162
+ $data['status'] = 'enabled';
163
+ if ( ( isset( $details['enabled'] ) && $details['enabled'] === 'disabled' ) || ( isset( $details['status'] ) && $details['status'] === 'disabled' ) ) {
164
+ $data['status'] = 'disabled';
165
+ }
166
 
167
  if ( ! isset( $details['position'] ) || $details['position'] === 0 ) {
168
  $data['position'] = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}redirection_items WHERE group_id=%d", $data['group_id'] ) );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://redirection.me/donation/
4
  Tags: redirect, htaccess, 301, 404, seo, permalink, apache, nginx, post, admin
5
  Requires at least: 4.4
6
  Tested up to: 4.9.2
7
- Stable tag: 3.0.1
8
  Requires PHP: 5.4
9
  License: GPLv3
10
 
@@ -131,6 +131,15 @@ The plugin works in a similar manner to how WordPress handles permalinks and sho
131
 
132
  == Changelog ==
133
 
 
 
 
 
 
 
 
 
 
134
  = 3.0.1 - 21st Jan 2018 =
135
  * Don't show warning if per page setting is greater than max
136
  * Don't allow WP REST API to be redirected
4
  Tags: redirect, htaccess, 301, 404, seo, permalink, apache, nginx, post, admin
5
  Requires at least: 4.4
6
  Tested up to: 4.9.2
7
+ Stable tag: 3.1
8
  Requires PHP: 5.4
9
  License: GPLv3
10
 
131
 
132
  == Changelog ==
133
 
134
+ = 3.1 =
135
+ * Add alternative REST API routes to help servers that block the API
136
+ * Move DELETE API calls to POST, to help servers that block DELETE
137
+ * Move API nonce to query param, to help servers that don't pass HTTP headers
138
+ * Improve error messaging
139
+ * Preload support page so it can be used when REST API isn't working
140
+ * Fix bug editing Nginx redirects
141
+ * Fix import from JSON not setting status
142
+
143
  = 3.0.1 - 21st Jan 2018 =
144
  * Don't show warning if per page setting is greater than max
145
  * Don't allow WP REST API to be redirected
redirection-admin.php CHANGED
@@ -27,6 +27,7 @@ class Redirection_Admin {
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 );
 
30
 
31
  if ( defined( 'REDIRECTION_FLYING_SOLO' ) && REDIRECTION_FLYING_SOLO ) {
32
  add_filter( 'script_loader_src', array( $this, 'flying_solo' ), 10, 2 );
@@ -159,16 +160,23 @@ class Redirection_Admin {
159
  global $wp_version;
160
 
161
  $build = REDIRECTION_VERSION.'-'.REDIRECTION_BUILD;
 
162
  $options = red_get_options();
163
  $versions = array(
164
  'Plugin: '.REDIRECTION_VERSION,
165
- 'WordPress: '.$wp_version,
166
  'PHP: '.phpversion(),
167
  'Browser: '.Redirection_Request::get_user_agent(),
 
168
  );
169
 
170
  $this->inject();
171
 
 
 
 
 
 
172
  if ( ! isset( $_GET['sub'] ) || ( isset( $_GET['sub'] ) && ( in_array( $_GET['sub'], array( 'log', '404s', 'groups' ) ) ) ) ) {
173
  add_screen_option( 'per_page', array( 'label' => sprintf( __( 'Log entries (%d max)', 'redirection' ), RED_MAX_PER_PAGE ), 'default' => RED_DEFAULT_PER_PAGE, 'option' => 'redirection_log_per_page' ) );
174
  }
@@ -181,8 +189,12 @@ class Redirection_Admin {
181
 
182
  wp_enqueue_style( 'redirection', plugin_dir_url( REDIRECTION_FILE ).'redirection.css', array(), $build );
183
 
 
 
 
 
184
  wp_localize_script( 'redirection', 'Redirectioni10n', array(
185
- 'WP_API_root' => esc_url_raw( get_rest_url() ),
186
  'WP_API_nonce' => wp_create_nonce( 'wp_rest' ),
187
  'pluginBaseUrl' => plugins_url( '', REDIRECTION_FILE ),
188
  'pluginRoot' => admin_url( 'tools.php?page=redirection.php' ),
@@ -191,6 +203,7 @@ class Redirection_Admin {
191
  'localeSlug' => get_locale(),
192
  'token' => $options['token'],
193
  'autoGenerate' => $options['auto_target'],
 
194
  'versions' => implode( "\n", $versions ),
195
  'version' => REDIRECTION_VERSION,
196
  ) );
@@ -198,6 +211,45 @@ class Redirection_Admin {
198
  $this->add_help_tab();
199
  }
200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  private function add_help_tab() {
202
  $title = __( 'Redirection Support', 'redirection' );
203
  $content = sprintf( __( 'You can find full documentation about using Redirection on the <a href="%s" target="_blank">redirection.me</a> support site.', 'redirection' ), 'https://redirection.me/support/?utm_source=redirection&utm_medium=plugin&utm_campaign=context-help' );
@@ -213,7 +265,7 @@ class Redirection_Admin {
213
  private function get_per_page() {
214
  $per_page = intval( get_user_meta( get_current_user_id(), 'redirection_log_per_page', true ), 10 );
215
 
216
- return $per_page > 0 ? min( $per_page, RED_MAX_PER_PAGE ) : RED_DEFAULT_PER_PAGE;
217
  }
218
 
219
  private function get_i18n_data() {
@@ -289,6 +341,7 @@ class Redirection_Admin {
289
  if ( $this->check_tables_exist() === false && ( ! isset( $_GET['sub'] ) || $_GET['sub'] !== 'support' ) ) {
290
  return false;
291
  }
 
292
  ?>
293
  <div id="react-ui">
294
  <div class="react-loading">
@@ -299,12 +352,13 @@ class Redirection_Admin {
299
  <noscript>Please enable JavaScript</noscript>
300
 
301
  <div class="react-error" style="display: none">
302
- <h1><?php _e( 'Unable to load Redirection', 'redirection' ); ?> v<?php echo esc_html( $version ); ?></h1>
303
  <p><?php _e( "This may be caused by another plugin - look at your browser's error console for more details.", 'redirection' ); ?></p>
304
  <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>
305
  <p><?php _e( 'Also check if your browser is able to load <code>redirection.js</code>:', 'redirection' ); ?></p>
306
  <p><code><?php echo esc_html( plugin_dir_url( REDIRECTION_FILE ).'redirection.js?ver='.urlencode( REDIRECTION_VERSION ).'-'.urlencode( REDIRECTION_BUILD ) ); ?></code></p>
307
  <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>
 
308
  <p><?php _e( "If you think Redirection is at fault then create an issue.", 'redirection' ); ?></p>
309
  <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>
310
  <p>
@@ -361,19 +415,31 @@ class Redirection_Admin {
361
  <?php
362
  }
363
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  private function user_has_access() {
365
  return current_user_can( apply_filters( 'redirection_role', 'administrator' ) );
366
  }
367
 
368
  function inject() {
369
  if ( isset( $_GET['page'] ) && isset( $_GET['sub'] ) && $_GET['page'] === 'redirection.php' ) {
370
- $this->tryExportLogs();
371
- $this->tryExportRedirects();
372
- $this->tryExportRSS();
373
  }
374
  }
375
 
376
- function tryExportRSS() {
377
  if ( isset( $_GET['token'] ) && $_GET['sub'] === 'rss' ) {
378
  $options = red_get_options();
379
 
@@ -388,7 +454,7 @@ class Redirection_Admin {
388
  }
389
  }
390
 
391
- private function tryExportLogs() {
392
  if ( $this->user_has_access() && isset( $_POST['export-csv'] ) && check_admin_referer( 'wp_rest' ) ) {
393
  if ( isset( $_GET['sub'] ) && $_GET['sub'] === 'log' ) {
394
  RE_Log::export_to_csv();
@@ -400,7 +466,7 @@ class Redirection_Admin {
400
  }
401
  }
402
 
403
- private function tryExportRedirects() {
404
  if ( $this->user_has_access() && $_GET['sub'] === 'io' && isset( $_GET['exporter'] ) && isset( $_GET['export'] ) ) {
405
  $export = Red_FileIO::export( $_GET['export'], $_GET['exporter'] );
406
 
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 );
30
+ add_action( 'wp_ajax_red_proxy', array( $this, 'red_proxy' ) );
31
 
32
  if ( defined( 'REDIRECTION_FLYING_SOLO' ) && REDIRECTION_FLYING_SOLO ) {
33
  add_filter( 'script_loader_src', array( $this, 'flying_solo' ), 10, 2 );
160
  global $wp_version;
161
 
162
  $build = REDIRECTION_VERSION.'-'.REDIRECTION_BUILD;
163
+ $preload = $this->get_preload_data();
164
  $options = red_get_options();
165
  $versions = array(
166
  'Plugin: '.REDIRECTION_VERSION,
167
+ 'WordPress: '.$wp_version.' ('.( is_multisite() ? 'multi' : 'single' ).')',
168
  'PHP: '.phpversion(),
169
  'Browser: '.Redirection_Request::get_user_agent(),
170
+ 'REST API: '.red_get_rest_api(),
171
  );
172
 
173
  $this->inject();
174
 
175
+ if ( $options['rest_api'] === false ) {
176
+ // Compatibility fix
177
+ $this->initial_set_api();
178
+ }
179
+
180
  if ( ! isset( $_GET['sub'] ) || ( isset( $_GET['sub'] ) && ( in_array( $_GET['sub'], array( 'log', '404s', 'groups' ) ) ) ) ) {
181
  add_screen_option( 'per_page', array( 'label' => sprintf( __( 'Log entries (%d max)', 'redirection' ), RED_MAX_PER_PAGE ), 'default' => RED_DEFAULT_PER_PAGE, 'option' => 'redirection_log_per_page' ) );
182
  }
189
 
190
  wp_enqueue_style( 'redirection', plugin_dir_url( REDIRECTION_FILE ).'redirection.css', array(), $build );
191
 
192
+ if ( isset( $_POST['action'] ) && $_POST['action'] === 'fixit' && wp_verify_nonce( $_POST['_wpnonce'], 'wp_rest' ) ) {
193
+ $this->run_fixit();
194
+ }
195
+
196
  wp_localize_script( 'redirection', 'Redirectioni10n', array(
197
+ 'WP_API_root' => esc_url_raw( red_get_rest_api() ),
198
  'WP_API_nonce' => wp_create_nonce( 'wp_rest' ),
199
  'pluginBaseUrl' => plugins_url( '', REDIRECTION_FILE ),
200
  'pluginRoot' => admin_url( 'tools.php?page=redirection.php' ),
203
  'localeSlug' => get_locale(),
204
  'token' => $options['token'],
205
  'autoGenerate' => $options['auto_target'],
206
+ 'preload' => $preload,
207
  'versions' => implode( "\n", $versions ),
208
  'version' => REDIRECTION_VERSION,
209
  ) );
211
  $this->add_help_tab();
212
  }
213
 
214
+ public function initial_set_api() {
215
+ include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
216
+
217
+ $fixer = new Red_Fixer();
218
+ $status = $fixer->get_rest_status();
219
+
220
+ if ( $status['status'] === 'problem' ) {
221
+ $fixer->fix_rest();
222
+ } else {
223
+ red_set_options( array( 'rest_api' => 0 ) );
224
+ }
225
+ }
226
+
227
+ private function run_fixit() {
228
+ if ( current_user_can( apply_filters( 'redirection_role', 'manage_options' ) ) ) {
229
+ include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
230
+
231
+ $fixer = new Red_Fixer();
232
+ $fixer->fix( $fixer->get_status() );
233
+ }
234
+ }
235
+
236
+ private function get_preload_data() {
237
+ $page = '';
238
+ if ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'group', '404s', 'log', 'io', 'options', 'support' ) ) ) {
239
+ $page = $_GET['sub'];
240
+ }
241
+
242
+ if ( $page === 'support' ) {
243
+ $api = new Redirection_Api_Plugin( REDIRECTION_API_NAMESPACE );
244
+
245
+ return array(
246
+ 'pluginStatus' => $api->route_status( new WP_REST_Request() )
247
+ );
248
+ }
249
+
250
+ return array();
251
+ }
252
+
253
  private function add_help_tab() {
254
  $title = __( 'Redirection Support', 'redirection' );
255
  $content = sprintf( __( 'You can find full documentation about using Redirection on the <a href="%s" target="_blank">redirection.me</a> support site.', 'redirection' ), 'https://redirection.me/support/?utm_source=redirection&utm_medium=plugin&utm_campaign=context-help' );
265
  private function get_per_page() {
266
  $per_page = intval( get_user_meta( get_current_user_id(), 'redirection_log_per_page', true ), 10 );
267
 
268
+ return $per_page > 0 ? max( 5, min( $per_page, RED_MAX_PER_PAGE ) ) : RED_DEFAULT_PER_PAGE;
269
  }
270
 
271
  private function get_i18n_data() {
341
  if ( $this->check_tables_exist() === false && ( ! isset( $_GET['sub'] ) || $_GET['sub'] !== 'support' ) ) {
342
  return false;
343
  }
344
+
345
  ?>
346
  <div id="react-ui">
347
  <div class="react-loading">
352
  <noscript>Please enable JavaScript</noscript>
353
 
354
  <div class="react-error" style="display: none">
355
+ <h1><?php _e( 'Unable to load Redirection ☹️', 'redirection' ); ?> v<?php echo esc_html( $version ); ?></h1>
356
  <p><?php _e( "This may be caused by another plugin - look at your browser's error console for more details.", 'redirection' ); ?></p>
357
  <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>
358
  <p><?php _e( 'Also check if your browser is able to load <code>redirection.js</code>:', 'redirection' ); ?></p>
359
  <p><code><?php echo esc_html( plugin_dir_url( REDIRECTION_FILE ).'redirection.js?ver='.urlencode( REDIRECTION_VERSION ).'-'.urlencode( REDIRECTION_BUILD ) ); ?></code></p>
360
  <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>
361
+ <p><?php _e( 'Please see the <a href="https://redirection.me/support/problems/">list of common problems</a>.', 'redirection' ); ?></p>
362
  <p><?php _e( "If you think Redirection is at fault then create an issue.", 'redirection' ); ?></p>
363
  <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>
364
  <p>
415
  <?php
416
  }
417
 
418
+ /**
419
+ * Really wish I didnt have to do this...
420
+ * NOTE: nonce is checked by serve_request
421
+ */
422
+ public function red_proxy() {
423
+ if ( $this->user_has_access() && isset( $_GET['rest_path'] ) && substr( $_GET['rest_path'], 0, 15 ) === 'redirection/v1/' ) {
424
+ $server = rest_get_server();
425
+ $server->serve_request( '/'.$_GET['rest_path'] );
426
+ die();
427
+ }
428
+ }
429
+
430
  private function user_has_access() {
431
  return current_user_can( apply_filters( 'redirection_role', 'administrator' ) );
432
  }
433
 
434
  function inject() {
435
  if ( isset( $_GET['page'] ) && isset( $_GET['sub'] ) && $_GET['page'] === 'redirection.php' ) {
436
+ $this->try_export_logs();
437
+ $this->try_export_redirects();
438
+ $this->try_export_rss();
439
  }
440
  }
441
 
442
+ function try_export_rss() {
443
  if ( isset( $_GET['token'] ) && $_GET['sub'] === 'rss' ) {
444
  $options = red_get_options();
445
 
454
  }
455
  }
456
 
457
+ private function try_export_logs() {
458
  if ( $this->user_has_access() && isset( $_POST['export-csv'] ) && check_admin_referer( 'wp_rest' ) ) {
459
  if ( isset( $_GET['sub'] ) && $_GET['sub'] === 'log' ) {
460
  RE_Log::export_to_csv();
466
  }
467
  }
468
 
469
+ private function try_export_redirects() {
470
  if ( $this->user_has_access() && $_GET['sub'] === 'io' && isset( $_GET['exporter'] ) && isset( $_GET['export'] ) ) {
471
  $export = Red_FileIO::export( $_GET['export'], $_GET['exporter'] );
472
 
redirection-settings.php CHANGED
@@ -26,6 +26,10 @@ function red_set_options( array $settings = array() ) {
26
  $options = red_get_options();
27
  $monitor_types = array();
28
 
 
 
 
 
29
  if ( isset( $settings['monitor_types'] ) && is_array( $settings['monitor_types'] ) ) {
30
  $allowed = red_get_post_types( false );
31
 
@@ -143,6 +147,7 @@ function red_get_options() {
143
  'redirect_cache' => 1, // 1 hour
144
  'ip_logging' => 1, // Full IP logging
145
  'last_group_id' => 0,
 
146
  ) );
147
 
148
  foreach ( $defaults as $key => $value ) {
@@ -158,3 +163,21 @@ function red_get_options() {
158
 
159
  return $options;
160
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  $options = red_get_options();
27
  $monitor_types = array();
28
 
29
+ if ( isset( $settings['rest_api'] ) && in_array( intval( $settings['rest_api'], 10 ), array( 0, 1, 2 ) ) ) {
30
+ $options['rest_api'] = intval( $settings['rest_api'] );
31
+ }
32
+
33
  if ( isset( $settings['monitor_types'] ) && is_array( $settings['monitor_types'] ) ) {
34
  $allowed = red_get_post_types( false );
35
 
147
  'redirect_cache' => 1, // 1 hour
148
  'ip_logging' => 1, // Full IP logging
149
  'last_group_id' => 0,
150
+ 'rest_api' => false,
151
  ) );
152
 
153
  foreach ( $defaults as $key => $value ) {
163
 
164
  return $options;
165
  }
166
+
167
+ function red_get_rest_api() {
168
+ $options = red_get_options();
169
+ $protocol = isset( $_SERVER['REQUEST_SCHEME'] ) ? $_SERVER['REQUEST_SCHEME'] : 'http';
170
+
171
+ if ( isset( $_SERVER['HTTPS'] ) ) {
172
+ $protocol = 'https';
173
+ }
174
+
175
+ $url = get_rest_url();
176
+ if ( $options['rest_api'] === 1 ) {
177
+ $url = home_url( '/index.php?rest_route=/' );
178
+ } elseif ( $options['rest_api'] === 2 ) {
179
+ $url = admin_url( 'admin-ajax.php?action=red_proxy&rest_path=' );
180
+ }
181
+
182
+ return str_replace( 'http://', $protocol.'://', $url );
183
+ }
redirection-strings.php CHANGED
@@ -1,17 +1,20 @@
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $redirection_strings = array(
4
- __( "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.", "redirection" ), // client/component/error/index.js:165
5
- __( "Important details", "redirection" ), // client/component/error/index.js:164
6
- __( "Email", "redirection" ), // client/component/error/index.js:162
7
- __( "Create Issue", "redirection" ), // client/component/error/index.js:162
8
- __( "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.", "redirection" ), // client/component/error/index.js:156
9
- __( "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.", "redirection" ), // client/component/error/index.js:154
10
- __( "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.", "redirection" ), // client/component/error/index.js:149
11
- __( "It didn't work when I tried again", "redirection" ), // client/component/error/index.js:148
 
 
 
12
  __( "Something went wrong 🙁", "redirection" ), // client/component/error/index.js:145
13
  __( "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!", "redirection" ), // client/component/error/index.js:127
14
- __( "WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.", "redirection" ), // client/component/error/index.js:120
15
  __( "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working", "redirection" ), // client/component/error/index.js:116
16
  __( "Your server has rejected the request for being too big. You will need to change it to continue.", "redirection" ), // client/component/error/index.js:112
17
  __( "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?", "redirection" ), // client/component/error/index.js:108
@@ -48,13 +51,14 @@ __( "Disable", "redirection" ), // client/component/groups/row.js:103
48
  __( "View Redirects", "redirection" ), // client/component/groups/row.js:102
49
  __( "Delete", "redirection" ), // client/component/groups/row.js:101
50
  __( "Edit", "redirection" ), // client/component/groups/row.js:100
51
- __( "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time", "redirection" ), // client/component/home/index.js:131
52
- __( "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.", "redirection" ), // client/component/home/index.js:124
53
- __( "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.", "redirection" ), // client/component/home/index.js:120
54
- __( "Redirection is not working. Try clearing your browser cache and reloading this page.", "redirection" ), // client/component/home/index.js:119
55
- __( "Something went wrong 🙁", "redirection" ), // client/component/home/index.js:116
56
- __( "Please clear your browser cache and reload this page.", "redirection" ), // client/component/home/index.js:108
57
- __( "Cached Redirection detected", "redirection" ), // client/component/home/index.js:107
 
58
  __( "Support", "redirection" ), // client/component/home/index.js:36
59
  __( "Options", "redirection" ), // client/component/home/index.js:35
60
  __( "404 errors", "redirection" ), // client/component/home/index.js:34
@@ -147,28 +151,33 @@ __( "You get useful software and I get to carry on making it better.", "redirect
147
  __( "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" ), // client/component/options/donation.js:99
148
  __( "I'd like to support some more.", "redirection" ), // client/component/options/donation.js:83
149
  __( "You've supported this plugin - thank you!", "redirection" ), // client/component/options/donation.js:82
150
- __( "Update", "redirection" ), // client/component/options/options-form.js:198
151
- __( "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)", "redirection" ), // client/component/options/options-form.js:194
152
- __( "Redirect Cache", "redirection" ), // client/component/options/options-form.js:192
153
- __( "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.", "redirection" ), // client/component/options/options-form.js:183
154
- __( "Apache Module", "redirection" ), // client/component/options/options-form.js:178
155
- __( "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 inserted", "redirection" ), // client/component/options/options-form.js:170
156
- __( "Auto-generate URL", "redirection" ), // client/component/options/options-form.js:167
157
- __( "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)", "redirection" ), // client/component/options/options-form.js:164
158
- __( "RSS Token", "redirection" ), // client/component/options/options-form.js:162
159
- __( "URL Monitor", "redirection" ), // client/component/options/options-form.js:156
160
- __( "(select IP logging level)", "redirection" ), // client/component/options/options-form.js:153
161
- __( "IP Logging", "redirection" ), // client/component/options/options-form.js:152
162
- __( "(time to keep logs for)", "redirection" ), // client/component/options/options-form.js:149
163
- __( "404 Logs", "redirection" ), // client/component/options/options-form.js:148
164
- __( "(time to keep logs for)", "redirection" ), // client/component/options/options-form.js:145
165
- __( "Redirect Logs", "redirection" ), // client/component/options/options-form.js:144
166
- __( "I'm a nice person and I have helped support the author of this plugin", "redirection" ), // client/component/options/options-form.js:140
167
- __( "Monitor changes to %(type)s", "redirection" ), // client/component/options/options-form.js:113
168
- __( "Create associated redirect (added to end of URL)", "redirection" ), // client/component/options/options-form.js:93
169
- __( "For example \"/amp\"", "redirection" ), // client/component/options/options-form.js:93
170
- __( "Save changes to this group", "redirection" ), // client/component/options/options-form.js:91
171
- __( "URL Monitor Changes", "redirection" ), // client/component/options/options-form.js:88
 
 
 
 
 
172
  __( "Anonymize IP (mask last part)", "redirection" ), // client/component/options/options-form.js:35
173
  __( "Full IP logging", "redirection" ), // client/component/options/options-form.js:34
174
  __( "No IP logging", "redirection" ), // client/component/options/options-form.js:33
@@ -256,7 +265,7 @@ __( "Want to keep up to date with changes to Redirection?", "redirection" ), //
256
  __( "Newsletter", "redirection" ), // client/component/support/newsletter.js:35
257
  __( "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.", "redirection" ), // client/component/support/newsletter.js:24
258
  __( "Newsletter", "redirection" ), // client/component/support/newsletter.js:22
259
- __( "Plugin Status", "redirection" ), // client/component/support/status.js:69
260
  __( "⚡️ Magic fix ⚡️", "redirection" ), // client/component/support/status.js:24
261
  __( "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.", "redirection" ), // client/component/support/status.js:23
262
  __( "Filter", "redirection" ), // client/component/table/filter.js:40
@@ -286,6 +295,7 @@ __( "Unknown Useragent", "redirection" ), // client/component/useragent/index.js
286
  __( "Something went wrong obtaining this information", "redirection" ), // client/component/useragent/index.js:30
287
  __( "Useragent Error", "redirection" ), // client/component/useragent/index.js:29
288
  _n( "Are you sure you want to delete this item?", "Are you sure you want to delete these items?", 1, "redirection" ), // client/lib/store/index.js:20
 
289
  __( "Group saved", "redirection" ), // client/state/message/reducer.js:52
290
  __( "Settings saved", "redirection" ), // client/state/message/reducer.js:51
291
  __( "Log deleted", "redirection" ), // client/state/message/reducer.js:50
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $redirection_strings = array(
4
+ __( "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.", "redirection" ), // client/component/error/index.js:198
5
+ __( "Important details", "redirection" ), // client/component/error/index.js:197
6
+ __( "Email", "redirection" ), // client/component/error/index.js:195
7
+ __( "Create Issue", "redirection" ), // client/component/error/index.js:195
8
+ __( "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.", "redirection" ), // client/component/error/index.js:188
9
+ __( "None of the suggestions helped", "redirection" ), // client/component/error/index.js:186
10
+ __( "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.", "redirection" ), // client/component/error/index.js:179
11
+ __( "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.", "redirection" ), // client/component/error/index.js:172
12
+ __( "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.", "redirection" ), // client/component/error/index.js:165
13
+ __( "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.", "redirection" ), // client/component/error/index.js:158
14
+ __( "Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.", "redirection" ), // client/component/error/index.js:151
15
  __( "Something went wrong 🙁", "redirection" ), // client/component/error/index.js:145
16
  __( "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!", "redirection" ), // client/component/error/index.js:127
17
+ __( "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.", "redirection" ), // client/component/error/index.js:120
18
  __( "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working", "redirection" ), // client/component/error/index.js:116
19
  __( "Your server has rejected the request for being too big. You will need to change it to continue.", "redirection" ), // client/component/error/index.js:112
20
  __( "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?", "redirection" ), // client/component/error/index.js:108
51
  __( "View Redirects", "redirection" ), // client/component/groups/row.js:102
52
  __( "Delete", "redirection" ), // client/component/groups/row.js:101
53
  __( "Edit", "redirection" ), // client/component/groups/row.js:100
54
+ __( "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time", "redirection" ), // client/component/home/index.js:139
55
+ __( "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.", "redirection" ), // client/component/home/index.js:132
56
+ __( "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.", "redirection" ), // client/component/home/index.js:128
57
+ __( "Redirection is not working. Try clearing your browser cache and reloading this page.", "redirection" ), // client/component/home/index.js:127
58
+ __( "Something went wrong 🙁", "redirection" ), // client/component/home/index.js:124
59
+ __( "More details.", "redirection" ), // client/component/home/index.js:116
60
+ __( "Please clear your browser cache and reload this page.", "redirection" ), // client/component/home/index.js:115
61
+ __( "Cached Redirection detected", "redirection" ), // client/component/home/index.js:114
62
  __( "Support", "redirection" ), // client/component/home/index.js:36
63
  __( "Options", "redirection" ), // client/component/home/index.js:35
64
  __( "404 errors", "redirection" ), // client/component/home/index.js:34
151
  __( "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" ), // client/component/options/donation.js:99
152
  __( "I'd like to support some more.", "redirection" ), // client/component/options/donation.js:83
153
  __( "You've supported this plugin - thank you!", "redirection" ), // client/component/options/donation.js:82
154
+ __( "Update", "redirection" ), // client/component/options/options-form.js:208
155
+ __( "How Redirection uses the REST API - don't change unless necessary", "redirection" ), // client/component/options/options-form.js:204
156
+ __( "REST API", "redirection" ), // client/component/options/options-form.js:202
157
+ __( "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)", "redirection" ), // client/component/options/options-form.js:199
158
+ __( "Redirect Cache", "redirection" ), // client/component/options/options-form.js:197
159
+ __( "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.", "redirection" ), // client/component/options/options-form.js:188
160
+ __( "Apache Module", "redirection" ), // client/component/options/options-form.js:183
161
+ __( "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", "redirection" ), // client/component/options/options-form.js:175
162
+ __( "Auto-generate URL", "redirection" ), // client/component/options/options-form.js:172
163
+ __( "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)", "redirection" ), // client/component/options/options-form.js:169
164
+ __( "RSS Token", "redirection" ), // client/component/options/options-form.js:167
165
+ __( "URL Monitor", "redirection" ), // client/component/options/options-form.js:161
166
+ __( "(select IP logging level)", "redirection" ), // client/component/options/options-form.js:158
167
+ __( "IP Logging", "redirection" ), // client/component/options/options-form.js:157
168
+ __( "(time to keep logs for)", "redirection" ), // client/component/options/options-form.js:154
169
+ __( "404 Logs", "redirection" ), // client/component/options/options-form.js:153
170
+ __( "(time to keep logs for)", "redirection" ), // client/component/options/options-form.js:150
171
+ __( "Redirect Logs", "redirection" ), // client/component/options/options-form.js:149
172
+ __( "I'm a nice person and I have helped support the author of this plugin", "redirection" ), // client/component/options/options-form.js:145
173
+ __( "Monitor changes to %(type)s", "redirection" ), // client/component/options/options-form.js:118
174
+ __( "Create associated redirect (added to end of URL)", "redirection" ), // client/component/options/options-form.js:98
175
+ __( "For example \"/amp\"", "redirection" ), // client/component/options/options-form.js:98
176
+ __( "Save changes to this group", "redirection" ), // client/component/options/options-form.js:96
177
+ __( "URL Monitor Changes", "redirection" ), // client/component/options/options-form.js:93
178
+ __( "Proxy over Admin AJAX (deprecated)", "redirection" ), // client/component/options/options-form.js:40
179
+ __( "Raw /index.php?rest_route=/", "redirection" ), // client/component/options/options-form.js:39
180
+ __( "Default /wp-json/ (preferred)", "redirection" ), // client/component/options/options-form.js:38
181
  __( "Anonymize IP (mask last part)", "redirection" ), // client/component/options/options-form.js:35
182
  __( "Full IP logging", "redirection" ), // client/component/options/options-form.js:34
183
  __( "No IP logging", "redirection" ), // client/component/options/options-form.js:33
265
  __( "Newsletter", "redirection" ), // client/component/support/newsletter.js:35
266
  __( "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.", "redirection" ), // client/component/support/newsletter.js:24
267
  __( "Newsletter", "redirection" ), // client/component/support/newsletter.js:22
268
+ __( "Plugin Status", "redirection" ), // client/component/support/status.js:70
269
  __( "⚡️ Magic fix ⚡️", "redirection" ), // client/component/support/status.js:24
270
  __( "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.", "redirection" ), // client/component/support/status.js:23
271
  __( "Filter", "redirection" ), // client/component/table/filter.js:40
295
  __( "Something went wrong obtaining this information", "redirection" ), // client/component/useragent/index.js:30
296
  __( "Useragent Error", "redirection" ), // client/component/useragent/index.js:29
297
  _n( "Are you sure you want to delete this item?", "Are you sure you want to delete these items?", 1, "redirection" ), // client/lib/store/index.js:20
298
+ __( "404 deleted", "redirection" ), // client/state/message/reducer.js:53
299
  __( "Group saved", "redirection" ), // client/state/message/reducer.js:52
300
  __( "Settings saved", "redirection" ), // client/state/message/reducer.js:51
301
  __( "Log deleted", "redirection" ), // client/state/message/reducer.js:50
redirection-version.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
 
3
- define( 'REDIRECTION_VERSION', '3.0.1' );
4
- define( 'REDIRECTION_BUILD', '61b3eadffa1608d0746afa0441a7a364' );
5
  define( 'REDIRECTION_MIN_WP', '4.4' );
1
  <?php
2
 
3
+ define( 'REDIRECTION_VERSION', '3.1' );
4
+ define( 'REDIRECTION_BUILD', '0b71bea190aef2823c1e53e9486e306b' );
5
  define( 'REDIRECTION_MIN_WP', '4.4' );
redirection.js CHANGED
@@ -1,15 +1,15 @@
1
- /*! Redirection v3.0.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=15)}([function(e,t,n){"use strict";e.exports=n(19)},function(e,t,n){var r=n(35),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(44)()},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=f(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.");f=e,l({type:h.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[d.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 f=e,m=t,g=[],b=g,y=!1;return l({type:h.INIT}),c={dispatch:l,subscribe:i,getState:a,replaceReducer:s},c[d.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:h.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 "+h.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),m({},a,{dispatch:i})}}}Object.defineProperty(t,"__esModule",{value:!0});var p=n(6),f=n(49),d=n.n(f),h={INIT:"@@redux/INIT"},m=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=R.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&A.call(n)==L}var u=n(48),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,k="[object Null]",_="[object Undefined]",x=h?h.toStringTag:void 0,C=a,S=i,j=S(Object.getPrototypeOf,Object),P=j,T=l,N="[object Object]",D=Function.prototype,I=Object.prototype,A=D.toString,R=I.hasOwnProperty,L=A.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(54),t.encode=t.stringify=n(55)},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){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},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(61),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},k=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?k.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 _="//"===l.substr(0,2);!_||d&&w[d]||(l=l.substr(2),this.slashes=!0)}if(!w[d]&&(_||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,D=N.length;C<D;C++){var I=N[C];if(I&&!I.match(y)){for(var A="",R=0,L=I.length;R<L;R++)I.charCodeAt(R)>127?A+="x":A+=I[R];if(!A.match(y)){var F=N.slice(0,C),M=N.slice(C+1),U=I.match(v);U&&(F.push(U[1]),M.unshift(U[2])),M.length&&(l="/"+M.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:"",z=this.hostname||"";this.host=z+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,D=m.length;C<D;C++){var H=m[C];if(-1!==l.indexOf(H)){var V=encodeURIComponent(H);V===H&&(V=escape(H)),l=l.split(H).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=k.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=k.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,k=n.pathname&&n.pathname.split("/")||[],h=e.pathname&&e.pathname.split("/")||[],_=n.protocol&&!O[n.protocol];if(_&&(n.hostname="",n.port=null,n.host&&(""===k[0]?k[0]=n.host:k.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]||""===k[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,k=h;else if(h.length)k||(k=[]),k.pop(),k=k.concat(h),n.search=e.search,n.query=e.query;else if(!u.isNullOrUndefined(e.search)){if(_){n.hostname=n.host=k.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(!k.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var C=k.slice(-1)[0],S=(n.host||e.host||k.length>1)&&("."===C||".."===C)||""===C,j=0,P=k.length;P>=0;P--)C=k[P],"."===C?k.splice(P,1):".."===C?(k.splice(P,1),j++):j&&(k.splice(P,1),j--);if(!v&&!E)for(;j--;j)k.unshift("..");!v||""===k[0]||k[0]&&"/"===k[0].charAt(0)||k.unshift(""),S&&"/"!==k.join("/").substr(-1)&&k.push("");var T=""===k[0]||k[0]&&"/"===k[0].charAt(0);if(_){n.hostname=n.host=T?"":k.length?k.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&&k.length,v&&!T&&k.unshift(""),k.length?n.pathname=k.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(16)},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=br,e=br},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!==br&&(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"]),k=v+"Subscription",_=wr++,x=(t={},t[v]=pr,t[k]=cr,t),C=(n={},n[k]=cr,n);return function(t){gr()("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=Er({},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=_,o.state={},o.renderCount=0,o.store=e[v]||t[v],o.propsMode=Boolean(e[v]),o.setWrappedInstance=o.setWrappedInstance.bind(o),gr()(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[k]=t||this.context[k],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 gr()(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)[k];this.subscription=new vr(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(Or)):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=Er({},e);return w&&(t.ref=this.setWrappedInstance),m&&(t[m]=this.renderCount++),this.propsMode&&this.subscription&&(t[k]=this.subscription),t},a.prototype.render=function(){var e=this.selector;if(e.shouldComponentUpdate=!1,e.error)throw e.error;return Object(tr.createElement)(t,this.addExtraProps(e.props))},a}(tr.Component);return i.WrappedComponent=t,i.displayName=r,i.childContextTypes=C,i.contextTypes=x,i.propTypes=x,hr()(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(!kr.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(_r.bindActionCreators)(e,t)}):void 0}function k(e){return"function"==typeof e?v(e,"mapStateToProps"):void 0}function _(e){return e?void 0:b(function(){return{}})}function x(e,t,n){return Sr({},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 D(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 I(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 A(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 R(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 Ar:return Gr({},e,{loadStatus:zr});case Rr:return Gr({},e,{loadStatus:Vr,values:t.values,groups:t.groups,postTypes:t.postTypes,installed:t.installed,canDelete:t.canDelete});case Lr:return Gr({},e,{loadStatus:Hr,error:t.error});case Mr:return Gr({},e,{saveStatus:zr});case Ur:return Gr({},e,{saveStatus:Vr,values:t.values,groups:t.groups,installed:t.installed});case Br:return Gr({},e,{saveStatus:Hr,error:t.error});case Fr:return Gr({},e,{pluginStatus:t.pluginStatus})}return e}function F(e,t){history.pushState({},null,U(e,t))}function M(e){return eo.parse(e?e.slice(1):document.location.search.slice(1))}function U(e,t,n){var r=M(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,"?"+eo.stringify(r)}function B(e){var t=M(e);return-1!==no.indexOf(t.sub)?t.sub:"redirect"}function z(){return Redirectioni10n.pluginRoot+"&sub=rss&module=1&token="+Redirectioni10n.token}function H(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 Qr:return Ho({},e,{table:po(e.table,e.rows,t.onoff)});case Kr:return Ho({},e,{table:co(e.table,t.items)});case Yr:return Ho({},e,{table:uo(Mo(e,t)),saving:Bo(e,t),rows:Ro(e,t)});case Jr:return Ho({},e,{rows:Fo(e,t),total:Uo(e,t),saving:zo(e,t)});case qr:return Ho({},e,{table:Mo(e,t),status:zr,saving:[],logType:t.logType,requestCount:e.requestCount+1});case $r:return Ho({},e,{status:Hr,saving:[]});case Wr:return Ho({},e,{rows:Fo(e,t),status:Vr,total:Uo(e,t),table:uo(e.table)});case Xr:return Ho({},e,{saving:zo(e,t),rows:Lo(e,t)})}return e}function q(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case $o:return Jo({},e,{table:po(e.table,e.rows,t.onoff)});case Wo:return Jo({},e,{table:co(e.table,t.items)});case Ko:return Jo({},e,{table:uo(Mo(e,t)),saving:Bo(e,t),rows:Ro(e,t)});case Qo:return Jo({},e,{rows:Fo(e,t),total:Uo(e,t),saving:zo(e,t)});case Vo:return Jo({},e,{table:Mo(e,t),status:zr,saving:[],logType:t.logType,requestCount:e.requestCount+1});case qo:return Jo({},e,{status:Hr,saving:[]});case Go:return Jo({},e,{rows:Fo(e,t),status:Vr,total:Uo(e,t),table:uo(e.table)});case Yo:return Jo({},e,{saving:zo(e,t),rows:Lo(e,t)})}return e}function W(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case Zo:return ia({},e,{exportStatus:zr});case Xo:return ia({},e,{exportStatus:Vr,exportData:t.data});case oa:return ia({},e,{file:t.file});case ra:return ia({},e,{file:!1,lastImport:!1,exportData:!1});case na:return ia({},e,{importingStatus:Hr,exportStatus:Hr,lastImport:!1,file:!1,exportData:!1});case ea:return ia({},e,{importingStatus:zr,lastImport:!1,file:!!t.file&&t.file});case ta:return ia({},e,{lastImport:t.total,importingStatus:Vr,file:!1});case aa:return ia({},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 la:return ma({},e,{table:Mo(e,t),status:zr,saving:[]});case sa:return ma({},e,{rows:Fo(e,t),status:Vr,total:Uo(e,t),table:uo(e.table)});case fa:return ma({},e,{table:uo(Mo(e,t)),saving:Bo(e,t),rows:Ro(e,t)});case ha:return ma({},e,{rows:Fo(e,t),total:Uo(e,t),saving:zo(e,t)});case pa:return ma({},e,{table:po(e.table,e.rows,t.onoff)});case ca:return ma({},e,{table:co(e.table,t.items)});case ua:return ma({},e,{status:Hr,saving:[]});case da:return ma({},e,{saving:zo(e,t),rows:Lo(e,t)})}return e}function K(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case _a:return xa({},e,{addTop:t.onoff});case ga:return xa({},e,{table:Mo(e,t),status:zr,saving:[]});case ba:return xa({},e,{rows:Fo(e,t),status:Vr,total:Uo(e,t),table:uo(e.table)});case wa:return xa({},e,{table:uo(Mo(e,t)),saving:Bo(e,t),rows:Ro(e,t)});case ka:return xa({},e,{rows:Fo(e,t),total:Uo(e,t),saving:zo(e,t)});case Ea:return xa({},e,{table:po(e.table,e.rows,t.onoff)});case va:return xa({},e,{table:co(e.table,t.items)});case ya:return xa({},e,{status:Hr,saving:[]});case Oa:return xa({},e,{saving:zo(e,t),rows:Lo(e,t)})}return e}function Q(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case na:case ua:case Oa:case da:case $r:case Xr:case Lr:case Br:case Yo:case qo:case ya:var n=Pa(e.errors,t.error);return ja({},e,{errors:n,inProgress:Na(e)});case Yr:case wa:case Mr:case Ko:case fa:return ja({},e,{inProgress:e.inProgress+1});case Jr:case ka:case Ur:case ha:case Qo:return ja({},e,{notices:Ta(e.notices,Da[t.type]),inProgress:Na(e)});case Sa:return ja({},e,{notices:[]});case Ca:return ja({},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 Fa({},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 Ia:return Fa({},e,{status:zr});case Aa:return Fa({},e,{status:Vr,maps:J(e.maps,t.map,"ip")});case Ra:return Fa({},e,{status:Vr,agents:J(e.agents,t.agent,"agent")});case La:return Fa({},e,{status:Hr,error:t.error})}return e}function Z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=Object(_r.createStore)(Ua,e,Ha(_r.applyMiddleware.apply(void 0,Va)));return t}function ee(){return{loadStatus:zr,saveStatus:!1,error:!1,installed:"",settings:{},postTypes:[],pluginStatus:[],canDelete:!1}}function te(){return{rows:[],saving:[],logType:Zr,total:0,status:zr,table:io(["ip","url"],["ip"],"date",["log"]),requestCount:0}}function ne(){return{rows:[],saving:[],logType:Zr,total:0,status:zr,table:io(["ip","url"],["ip"],"date",["404s"]),requestCount:0}}function re(){return{status:zr,file:!1,lastImport:!1,exportData:!1,importingStatus:!1,exportStatus:!1,importers:[]}}function oe(){return{rows:[],saving:[],total:0,status:zr,table:io(["name"],["name","module"],"name",["groups"])}}function ae(){return{rows:[],saving:[],total:0,addTop:!1,status:zr,table:io(["url","position","last_count","id","last_access"],["group"],"id",[""])}}function ie(){return{errors:[],notices:[],inProgress:0,saving:[]}}function le(){return{status:zr,maps:{},agents:{},error:""}}function se(){return{settings:ee(),log:te(),error:ne(),io:re(),group:oe(),redirect:ae(),message:ie(),info:le()}}function ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ce(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pe(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 fe(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 de(e){return{onSaveSettings:function(t){e(qa(t))}}}function he(e){var t=e.settings;return{groups:t.groups,values:t.values,saveStatus:t.saveStatus,installed:t.installed,postTypes:t.postTypes}}function me(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ge(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 be(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 ve(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 Ee(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 we(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Oe(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 _e(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 xe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(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 Se(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 je(e){return{onLoadSettings:function(){e(Ga())},onDeletePlugin:function(){e(Wa())}}}function Pe(e){var t=e.settings;return{loadStatus:t.loadStatus,values:t.values,canDelete:t.canDelete}}function Te(e){return{onSubscribe:function(){e(qa({newsletter:!0}))}}}function Ne(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($a())},onFix:function(){e(Ka())}}}function Re(e){return{pluginStatus:e.settings.pluginStatus}}function Le(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 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 Ue(e){return{onLoadSettings:function(){e(Ga())}}}function Be(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 He(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){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ge(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 We(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $e(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 Ke(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 Qe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ye(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 Xe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ze(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 et(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 ot(e){return{onGet:function(t){e(Bl(t))}}}function at(e){var t=e.info;return{status:t.status,error:t.error,maps:t.maps}}function it(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function lt(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 st(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 ut(e){return{onGet:function(t){e(zl(t))}}}function ct(e){var t=e.info;return{status:t.status,error:t.error,agents:t.agents}}function pt(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 dt(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 ht(e){return{onShowIP:function(t){e(Rl("ip",t))},onSetSelected:function(t){e(Ll(t))},onDelete:function(t){e(Pl("delete",t))}}}function mt(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 bt(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 yt(e){return{log:e.log}}function vt(e){return{onLoad:function(t){e(Nl(t))},onDeleteAll:function(t,n){e(jl(t,n))},onSearch:function(t,n){e(Al(t,n))},onChangePage:function(t){e(Il(t))},onTableAction:function(t){e(Pl(t))},onSetAllSelected:function(t){e(Fl(t))},onSetOrderBy:function(t,n){e(Dl(t,n))}}}function Et(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function wt(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 kt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _t(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 xt(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,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 jt(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 Pt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tt(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 Nt(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 Rt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}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 Mt(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 Ut(e){return{group:e.group,addTop:e.redirect.addTop}}function Bt(e){return{onSave:function(t,n){e(Hs(t,n))},onCreate:function(t){e(zs(t))},onClose:function(t){t.preventDefault(),e(Js(!1))}}}function zt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ht(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 Vt(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 Gt(e){return{onShowIP:function(t){e(gs("ip",t))},onSetSelected:function(t){e(bs(t))},onDelete:function(t){e(cs("delete",t))},onDeleteFilter:function(t){e(ss("url-exact",t))}}}function qt(e){return{infoStatus:e.info.status}}function Wt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $t(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 Kt(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 Qt(e){return{error:e.error}}function Yt(e){return{onLoad:function(t){e(fs(t))},onLoadGroups:function(){e(bu())},onDeleteAll:function(t,n){e(us(t,n))},onSearch:function(t,n){e(ms(t,n))},onChangePage:function(t){e(hs(t))},onTableAction:function(t){e(cs(t,null))},onSetAllSelected:function(t){e(ys(t))},onSetOrderBy:function(t,n){e(ds(t,n))}}}function Jt(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 Xt(e,t){return"application/x-moz-file"===e.type||Tu()(e,t)}function Zt(e,t,n){return e.size<=t&&e.size>=n}function en(e,t){return e.every(function(e){return Xt(e,t)})}function tn(e){e.preventDefault()}function nn(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 rn(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 on(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function an(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 ln(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,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function un(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cn(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 pn(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 fn(e){return{group:e.group,io:e.io}}function dn(e){return{onLoadGroups:function(){e(bu())},onImport:function(t,n){e(Uu(t,n))},onAddFile:function(t){e(zu(t))},onClearFile:function(){e(Bu())},onExport:function(t,n){e(Fu(t,n))},onDownloadFile:function(t){e(Mu(t))},onLoadImport:function(){e(Hu())},pluginImport:function(t){e(Vu(t))}}}function hn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function mn(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 bn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function yn(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 vn(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 En(e){return{onSetSelected:function(t){e(Ou(t))},onSaveGroup:function(t,n){e(mu(t,n))},onTableAction:function(t,n){e(gu(t,n))}}}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 kn(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 _n(e){return{group:e.group}}function xn(e){return{onLoadGroups:function(){e(bu({page:0,filter:"",filterBy:"",orderby:""}))},onSearch:function(t){e(Eu(t))},onChangePage:function(t){e(vu(t))},onAction:function(t){e(gu(t))},onSetAllSelected:function(t){e(ku(t))},onSetOrderBy:function(t,n){e(yu(t,n))},onFilter:function(t){e(wu("module",t))},onCreate:function(t){e(hu(t))}}}function Cn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sn(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 jn(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 Pn(e){return{onSetSelected:function(t){e(Qs(t))},onTableAction:function(t,n){e(Vs(t,n))}}}function Tn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nn(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 Dn(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 In(e){return{redirect:e.redirect,group:e.group}}function An(e){return{onLoadGroups:function(){e(bu())},onLoadRedirects:function(t){e(Gs(t))},onSearch:function(t){e($s(t))},onChangePage:function(t){e(Ws(t))},onAction:function(t){e(Vs(t))},onSetAllSelected:function(t){e(Ys(t))},onSetOrderBy:function(t,n){e(qs(t,n))},onFilter:function(t){e(Ks("group",t))}}}function Rn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ln(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 Fn(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){return{errors:e.message.errors}}function Un(e){return{onClear:function(){e(bc())}}}function Bn(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 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 Vn(e){return{notices:e.message.notices}}function Gn(e){return{onClear:function(){e(yc())}}}function qn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Wn(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){return{inProgress:e.message.inProgress}}function Qn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yn(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 Jn(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 Xn(e){return{onClear:function(){e(bc())},onAdd:function(){e(Js(!0))}}}Object.defineProperty(t,"__esModule",{value:!0});var Zn=n(17),er=n.n(Zn);n(18);!window.Promise&&(window.Promise=er.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 tr=n(0),nr=n.n(tr),rr=n(20),or=n.n(rr),ar=n(30),ir=n(1),lr=n.n(ir),sr=n(2),ur=n.n(sr),cr=ur.a.shape({trySubscribe:ur.a.func.isRequired,tryUnsubscribe:ur.a.func.isRequired,notifyNestedSubs:ur.a.func.isRequired,isSubscribed:ur.a.func.isRequired}),pr=ur.a.shape({subscribe:ur.a.func.isRequired,dispatch:ur.a.func.isRequired,getState:ur.a.func.isRequired}),fr=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 tr.Children.only(this.props.children)},n}(tr.Component);return l.propTypes={store:pr.isRequired,children:ur.a.element.isRequired},l.childContextTypes=(e={},e[t]=pr.isRequired,e[i]=cr,e),l}(),dr=n(46),hr=n.n(dr),mr=n(47),gr=n.n(mr),br=null,yr={notify:function(){}},vr=function(){function e(t,n,r){i(this,e),this.store=t,this.parentSub=n,this.onStateChange=r,this.unsubscribe=null,this.listeners=yr}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=yr)},e}(),Er=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},wr=0,Or={},kr=Object.prototype.hasOwnProperty,_r=n(5),xr=(n(6),[E,w,O]),Cr=[k,_],Sr=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},jr=[S,j],Pr=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},Tr=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?Cr:r,a=e.mapDispatchToPropsFactories,i=void 0===a?xr:a,l=e.mergePropsFactories,s=void 0===l?jr:l,u=e.selectorFactory,c=void 0===u?D: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?R: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=I(a,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),w=A(e,o,"mapStateToProps"),O=A(t,i,"mapDispatchToProps"),k=A(r,s,"mergeProps");return n(c,Pr({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:w,initMapDispatchToProps:O,initMergeProps:k,pure:u,areStatesEqual:f,areOwnPropsEqual:h,areStatePropsEqual:b,areMergedPropsEqual:v},E))}}(),Nr=n(52),Dr=n(53),Ir=n.n(Dr),Ar="SETTING_LOAD_START",Rr="SETTING_LOAD_SUCCESS",Lr="SETTING_LOAD_FAILED",Fr="SETTING_LOAD_STATUS",Mr="SETTING_SAVING",Ur="SETTING_SAVED",Br="SETTING_SAVE_FAILED",zr="STATUS_IN_PROGRESS",Hr="STATUS_FAILED",Vr="STATUS_COMPLETE",Gr=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},qr="LOG_LOADING",Wr="LOG_LOADED",$r="LOG_FAILED",Kr="LOG_SET_SELECTED",Qr="LOG_SET_ALL_SELECTED",Yr="LOG_ITEM_SAVING",Jr="LOG_ITEM_SAVED",Xr="LOG_ITEM_FAILED",Zr="log",eo=n(8),to=n.n(eo),no=["groups","404s","log","io","options","support"],ro=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=["orderby","direction","page","per_page","filter","filterBy"],ao=function(e,t){for(var n=[],r=0;r<e.length;r++)-1===t.indexOf(e[r])&&n.push(e[r]);return n},io=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=M(),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:ro({},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})},lo=function(e,t){for(var n=Object.assign({},e),r=0;r<oo.length;r++)void 0!==t[oo[r]]&&(n[oo[r]]=t[oo[r]]);return n},so=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},uo=function(e){return Object.assign({},e,{selected:[]})},co=function(e,t){return ro({},e,{selected:ao(e.selected,t).concat(ao(t,e.selected))})},po=function(e,t,n){return ro({},e,{selected:n?t.map(function(e){return e.id}):[]})},fo=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},ho=function(e){return Object.keys(e).filter(function(t){return e[t]}).reduce(function(t,n){return t[n]=e[n],t},{})},mo=function(e,t){var n=Redirectioni10n.WP_API_root+"redirection/v1/"+e;return t&&Object.keys(t).length>0&&(t=ho(t),Object.keys(t).length>0)?n+(-1===Redirectioni10n.WP_API_root.indexOf("?")?"?":"&")+to.a.stringify(t):n},go=function(e){return{url:e,headers:new Headers({"X-WP-Nonce":Redirectioni10n.WP_API_nonce,"Content-Type":"application/json"}),credentials:"same-origin"}},bo=function(e,t){return fo({},go(mo(e,t)),{method:"delete"})},yo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return fo({},go(mo(e,t)),{method:"get"})},vo=function(e,t){var n=fo({},go(mo(e)),{method:"post"});return n.headers.delete("Content-Type"),n.body=new FormData,n.body.append("file",t),n},Eo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=fo({},go(mo(e,n)),{method:"post",params:t});return Object.keys(t).length>0&&(r.body=JSON.stringify(t)),r},wo={setting:{get:function(){return yo("setting")},update:function(e){return Eo("setting",e)}},redirect:{list:function(e){return yo("redirect",e)},update:function(e,t){return Eo("redirect/"+e,t)},create:function(e){return Eo("redirect",e)}},group:{list:function(e){return yo("group",e)},update:function(e,t){return Eo("group/"+e,t)},create:function(e){return Eo("group",e)}},log:{list:function(e){return yo("log",e)},deleteAll:function(e){return bo("log",e)}},error:{list:function(e){return yo("404",e)},deleteAll:function(e){return bo("404",e)}},import:{get:function(){return yo("import")},upload:function(e,t){return vo("import/file/"+e,t)},pluginList:function(){return yo("import/plugin")},pluginImport:function(e){return Eo("import/plugin/"+e)}},export:{file:function(e,t){return yo("export/"+e+"/"+t)}},plugin:{status:function(){return yo("plugin")},fix:function(){return Eo("plugin")},delete:function(){return bo("plugin")}},bulk:{redirect:function(e,t,n){return Eo("bulk/redirect/"+e,t,n)},group:function(e,t,n){return Eo("bulk/group/"+e,t,n)},log:function(e,t,n){return Eo("bulk/log/"+e,t,n)},error:function(e,t,n){return Eo("bulk/404/"+e,t,n)}}},Oo=function(e){return"https://api.redirect.li/v1/"+e+(-1===e.indexOf("?")?"?":"&")+"ref=redirection"},ko={ip:{getGeo:function(e){return{url:Oo("ip/"+e+"?locale="+Redirectioni10n.localeSlug.substr(0,2)),method:"get"}}},agent:{get:function(e){return{url:Oo("useragent/"+encodeURIComponent(e)),method:"get"}}}},_o=function(e){return 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,e.action=t.url.replace(Redirectioni10n.WP_API_root,"")+" "+e.method.toUpperCase()),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(200!==e.status)throw{message:n.message,code:n.error_code?n.error_code:n.data.error_code,request:e,data:n.data?n.data:null};return n}catch(t){throw t.request=e,t}})},xo=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},Co=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(ir.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=lo(s,c),f=xo({items:c.items.join(",")},o);return _o(e(t,f,so(s,r.order))).then(function(e){a(xo({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})}}},So=function(e,t,n,r,o){return _o(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]})},jo=function(e,t,n){return function(r,o){var a=V(o()[n.store],[]);return a.page=0,a.orderby="id",a.direction="desc",a.filterBy="",a.filter="",So(e(t),a,t,n,r)}},Po=function(e,t,n,r){return function(o,a){var i=a()[r.store].table;return So(e(t,n),i,n,r,o)}},To=function(e,t){var n={};for(var r in t)void 0===e[r]&&(n[r]=t[r]);return n},No=function(e,t){for(var n in e)if(e[n]!==t[n])return!1;return!0},Do=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(lo(l,r)),c=so(xo({},l,r),n.order);if(!(No(u,l)&&s.length>0&&No(r,{})))return _o(e(c)).then(function(e){t(xo({type:n.saved},e))}).catch(function(e){t({type:n.failed,error:e})}),t(xo({table:u,type:n.saving},To(u,r)))},Io=function(e,t,n,r,o){var a=o.table,i=so(xo({},a,r),n.order);_o(e(i)).then(function(e){t(xo({type:n.saved},e))}).catch(function(e){t({type:n.failed,error:e})})},Ao=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},Ro=function(e,t){return t.item?Ao(e.rows,t.item,function(e){return xo({},e,t.item,{original:e})}):e.rows},Lo=function(e,t){return t.item?Ao(e.rows,t.item,function(e){return e.original}):e.rows},Fo=function(e,t){return t.item?Ro(e,t):t.items?t.items:e.rows},Mo=function(e,t){return t.table?xo({},e.table,t.table):e.table},Uo=function(e,t){return void 0!==t.total?t.total:e.total},Bo=function(e,t){return[].concat(H(e.saving),H(t.saving))},zo=function(e,t){return e.saving.filter(function(e){return-1===t.saving.indexOf(e)})},Ho=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},Vo="ERROR_LOADING",Go="ERROR_LOADED",qo="ERROR_FAILED",Wo="ERROR_SET_SELECTED",$o="ERROR_SET_ALL_SELECTED",Ko="ERROR_ITEM_SAVING",Qo="ERROR_ITEM_SAVED",Yo="ERROR_ITEM_FAILED",Jo=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},Xo="IO_EXPORTED",Zo="IO_EXPORTING",ea="IO_IMPORTING",ta="IO_IMPORTED",na="IO_FAILED",ra="IO_CLEAR",oa="IO_ADD_FILE",aa="IO_IMPORTERS",ia=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},la="GROUP_LOADING",sa="GROUP_LOADED",ua="GROUP_FAILED",ca="GROUP_SET_SELECTED",pa="GROUP_SET_ALL_SELECTED",fa="GROUP_ITEM_SAVING",da="GROUP_ITEM_FAILED",ha="GROUP_ITEM_SAVED",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},ga="REDIRECT_LOADING",ba="REDIRECT_LOADED",ya="REDIRECT_FAILED",va="REDIRECT_SET_SELECTED",Ea="REDIRECT_SET_ALL_SELECTED",wa="REDIRECT_ITEM_SAVING",Oa="REDIRECT_ITEM_FAILED",ka="REDIRECT_ITEM_SAVED",_a="REDIRECT_ADD_TOP",xa=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},Ca="MESSAGE_CLEAR_ERRORS",Sa="MESSAGE_CLEAR_NOTICES",ja=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},Pa=function(e,t){return e.slice(0).concat([t])},Ta=function(e,t){return e.slice(0).concat([t])},Na=function(e){return Math.max(0,e.inProgress-1)},Da={REDIRECT_ITEM_SAVED:Object(ir.translate)("Redirection saved"),LOG_ITEM_SAVED:Object(ir.translate)("Log deleted"),SETTING_SAVED:Object(ir.translate)("Settings saved"),GROUP_ITEM_SAVED:Object(ir.translate)("Group saved")},Ia="INFO_LOADING",Aa="INFO_LOADED_GEO",Ra="INFO_LOADED_AGENT",La="INFO_FAILED",Fa=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},Ma=Object(_r.combineReducers)({settings:L,log:G,error:q,io:W,group:$,redirect:K,message:Q,info:X}),Ua=Ma,Ba=function(e,t){var n=B(),r={redirect:[[ga,wa],"id"],groups:[[la,fa],"name"],log:[[qr],"date"],"404s":[[Vo],"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)})}},za=function(){return function(e){return function(t){switch(t.type){case wa:case fa:case ga:case la:case qr:case Vo:Ba(t.type,t.table?t.table:t)}return e(t)}}},Ha=Object(Nr.composeWithDevTools)({name:"Redirection"}),Va=[Ir.a,za],Ga=(n(56),function(){return function(e,t){return t().settings.loadStatus===Vr?null:(_o(wo.setting.get()).then(function(t){e({type:Rr,values:t.settings,groups:t.groups,postTypes:t.post_types,installed:t.installed,canDelete:t.canDelete})}).catch(function(t){e({type:Lr,error:t})}),e({type:Ar}))}}),qa=function(e){return function(t){return _o(wo.setting.update(e)).then(function(e){t({type:Ur,values:e.settings,groups:e.groups,installed:e.installed})}).catch(function(e){t({type:Br,error:e})}),t({type:Mr})}},Wa=function(){return function(e){return _o(wo.plugin.delete()).then(function(e){document.location.href=e.location}).catch(function(t){e({type:Br,error:t})}),e({type:Mr})}},$a=function(){return function(e){return _o(wo.plugin.status()).then(function(t){e({type:Fr,pluginStatus:t})}).catch(function(t){e({type:Lr,error:t})}),e({type:Ar})}},Ka=function(){return function(e){return _o(wo.plugin.fix()).then(function(t){e({type:Fr,pluginStatus:t})}).catch(function(t){e({type:Lr,error:t})}),e({type:Ar})}},Qa=function(e){var t=e.title,n=e.url,r=void 0!==n&&n;return nr.a.createElement("tr",null,nr.a.createElement("th",null,!r&&t,r&&nr.a.createElement("a",{href:r,target:"_blank"},t)),nr.a.createElement("td",null,e.children))},Ya=function(e){return nr.a.createElement("table",{className:"form-table"},nr.a.createElement("tbody",null,e.children))},Ja="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},Xa=function e(t){var n=t.value,r=t.text;return"object"===(void 0===n?"undefined":Ja(n))?nr.a.createElement("optgroup",{label:r},n.map(function(t,n){return nr.a.createElement(e,{text:t.text,value:t.value,key:n})})):nr.a.createElement("option",{value:n},r)},Za=function(e){var t=e.items,n=e.value,r=e.name,o=e.onChange,a=e.isEnabled,i=void 0===a||a;return nr.a.createElement("select",{name:r,value:n,onChange:o,disabled:!i},t.map(function(e,t){return nr.a.createElement(Xa,{value:e.value,text:e.text,key:t})}))},ei=Za,ti=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}}(),ni=[{value:-1,text:Object(ir.translate)("No logs")},{value:1,text:Object(ir.translate)("A day")},{value:7,text:Object(ir.translate)("A week")},{value:30,text:Object(ir.translate)("A month")},{value:60,text:Object(ir.translate)("Two months")},{value:0,text:Object(ir.translate)("Forever")}],ri=[{value:-1,text:Object(ir.translate)("Never cache")},{value:1,text:Object(ir.translate)("An hour")},{value:24,text:Object(ir.translate)("A day")},{value:168,text:Object(ir.translate)("A week")},{value:0,text:Object(ir.translate)("Forever")}],oi=[{value:0,text:Object(ir.translate)("No IP logging")},{value:1,text:Object(ir.translate)("Full IP logging")},{value:2,text:Object(ir.translate)("Anonymize IP (mask last part)")}],ai=function(e){function t(e){ce(this,t);var n=pe(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(ue({},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 fe(t,e),ti(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 nr.a.createElement(Qa,{title:Object(ir.translate)("URL Monitor Changes")+":",url:this.supportLink("options","monitor")},nr.a.createElement(ei,{items:e,name:"monitor_post",value:parseInt(this.state.monitor_post,10),onChange:this.onChange})," ",Object(ir.translate)("Save changes to this group"),nr.a.createElement("p",null,nr.a.createElement("input",{type:"text",className:"regular-text",name:"associated_redirect",onChange:this.onChange,placeholder:Object(ir.translate)('For example "/amp"'),value:this.state.associated_redirect})," ",Object(ir.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(nr.a.createElement("p",{key:o},nr.a.createElement("label",null,nr.a.createElement("input",{type:"checkbox",name:"monitor_type_"+o,onChange:e.onMonitor,checked:l}),Object(ir.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 nr.a.createElement("form",{onSubmit:this.onSubmit},nr.a.createElement(Ya,null,nr.a.createElement(Qa,{title:""},nr.a.createElement("label",null,nr.a.createElement("input",{type:"checkbox",checked:this.state.support,name:"support",onChange:this.onChange}),nr.a.createElement("span",{className:"sub"},Object(ir.translate)("I'm a nice person and I have helped support the author of this plugin")))),nr.a.createElement(Qa,{title:Object(ir.translate)("Redirect Logs")+":",url:this.supportLink("logs")},nr.a.createElement(ei,{items:ni,name:"expire_redirect",value:parseInt(this.state.expire_redirect,10),onChange:this.onChange})," ",Object(ir.translate)("(time to keep logs for)")),nr.a.createElement(Qa,{title:Object(ir.translate)("404 Logs")+":",url:this.supportLink("tracking-404-errors")},nr.a.createElement(ei,{items:ni,name:"expire_404",value:parseInt(this.state.expire_404,10),onChange:this.onChange})," ",Object(ir.translate)("(time to keep logs for)")),nr.a.createElement(Qa,{title:Object(ir.translate)("IP Logging")+":",url:this.supportLink("options","iplogging")},nr.a.createElement(ei,{items:oi,name:"ip_logging",value:parseInt(this.state.ip_logging,10),onChange:this.onChange})," ",Object(ir.translate)("(select IP logging level)")),nr.a.createElement(Qa,{title:Object(ir.translate)("URL Monitor")+":",url:this.supportLink("options","monitor")},this.renderPostTypes()),o&&this.renderMonitor(t),nr.a.createElement(Qa,{title:Object(ir.translate)("RSS Token")+":",url:this.supportLink("options","rsstoken")},nr.a.createElement("input",{className:"regular-text",type:"text",value:this.state.token,name:"token",onChange:this.onChange}),nr.a.createElement("br",null),nr.a.createElement("span",{className:"sub"},Object(ir.translate)("A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"))),nr.a.createElement(Qa,{title:Object(ir.translate)("Auto-generate URL")+":",url:this.supportLink("options","autogenerate")},nr.a.createElement("input",{className:"regular-text",type:"text",value:this.state.auto_target,name:"auto_target",onChange:this.onChange}),nr.a.createElement("br",null),nr.a.createElement("span",{className:"sub"},Object(ir.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 inserted",{components:{code:nr.a.createElement("code",null)}}))),nr.a.createElement(Qa,{title:Object(ir.translate)("Apache Module"),url:this.supportLink("options","apache")},nr.a.createElement("label",null,nr.a.createElement("p",null,nr.a.createElement("input",{type:"text",className:"regular-text",name:"location",value:this.state.location,onChange:this.onChange,placeholder:r})),nr.a.createElement("p",{className:"sub"},Object(ir.translate)("Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.",{components:{code:nr.a.createElement("code",null)}})))),nr.a.createElement(Qa,{title:Object(ir.translate)("Redirect Cache"),url:this.supportLink("options","cache")},nr.a.createElement(ei,{items:ri,name:"redirect_cache",value:parseInt(this.state.redirect_cache,10),onChange:this.onChange}),"  ",nr.a.createElement("span",{className:"sub"},Object(ir.translate)('How long to cache redirected 301 URLs (via "Expires" HTTP header)')))),nr.a.createElement("input",{className:"button-primary",type:"submit",name:"update",value:Object(ir.translate)("Update"),disabled:n===zr}))}}]),t}(nr.a.Component),ii=Tr(he,de)(ai),li=n(3),si=n.n(li),ui=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}}(),ci=function(e){function t(e){me(this,t);var n=ge(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 be(t,e),ui(t,[{key:"componentDidMount",value:function(){this.height=0,this.resize()}},{key:"componentWillReceiveProps",value:function(){this.resize()}},{key:"componentDidUpdate",value:function(){this.resize()}},{key:"resize",value:function(){if(this.props.show){for(var e=5,t=0;t<this.ref.children.length;t++)e+=this.ref.children[t].clientHeight;this.ref.style.height=e+"px",this.height=e-this.height}}},{key:"onBackground",value:function(e){"modal"===e.target.className&&this.props.onClose()}},{key:"render",value:function(){var e=this.props,t=e.show,n=e.onClose,r=e.width,o=si()({"modal-wrapper":!0,"modal-wrapper-padding":this.props.padding});if(!t)return null;var a=r?{width:r+"px"}:{};return this.height&&(a.height=this.height+"px"),nr.a.createElement("div",{className:o,onClick:this.handleClick},nr.a.createElement("div",{className:"modal-backdrop"}),nr.a.createElement("div",{className:"modal"},nr.a.createElement("div",{className:"modal-content",ref:this.nodeRef,style:a},nr.a.createElement("div",{className:"modal-close"},nr.a.createElement("button",{onClick:n},"✖")),nr.a.cloneElement(this.props.children,{parent:this}))))}}]),t}(nr.a.Component);ci.defaultProps={padding:!0};var 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=function(e){function t(e){ye(this,t);var n=ve(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 Ee(t,e),fi(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:"render",value:function(){return nr.a.createElement("div",{className:"wrap"},nr.a.createElement("form",{action:"",method:"post",onSubmit:this.onSubmit},nr.a.createElement("h2",null,Object(ir.translate)("Delete Redirection")),nr.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."),nr.a.createElement("input",{className:"button-primary button-delete",type:"submit",name:"delete",value:Object(ir.translate)("Delete")})),nr.a.createElement(pi,{show:this.state.isModal,onClose:this.onClose},nr.a.createElement("div",null,nr.a.createElement("h1",null,Object(ir.translate)("Delete the plugin - are you sure?")),nr.a.createElement("p",null,Object(ir.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.")),nr.a.createElement("p",null,Object(ir.translate)("Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.")),nr.a.createElement("p",null,nr.a.createElement("button",{className:"button-primary button-delete",onClick:this.onDelete},Object(ir.translate)("Yes! Delete the plugin"))," ",nr.a.createElement("button",{className:"button-secondary",onClick:this.onClose},Object(ir.translate)("No! Don't delete the plugin"))))))}}]),t}(nr.a.Component),hi=di,mi=function(){return nr.a.createElement("div",{className:"placeholder-container"},nr.a.createElement("div",{className:"placeholder-loading"}))},gi=mi,bi=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}}(),yi=function(e){function t(e){Oe(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 _e(t,e),bi(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 nr.a.createElement("div",null,Object(ir.translate)("You've supported this plugin - thank you!"),"  ",nr.a.createElement("a",{href:"#",onClick:this.onDonate},Object(ir.translate)("I'd like to support some more.")))}},{key:"renderUnsupported",value:function(){for(var e=we({},16,""),t=20;t<=100;t+=20)e[t]="";return nr.a.createElement("div",null,nr.a.createElement("label",null,nr.a.createElement("p",null,Object(ir.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:nr.a.createElement("strong",null)}})," ",Object(ir.translate)("You get useful software and I get to carry on making it better."))),nr.a.createElement("input",{type:"hidden",name:"cmd",value:"_xclick"}),nr.a.createElement("input",{type:"hidden",name:"business",value:"admin@urbangiraffe.com"}),nr.a.createElement("input",{type:"hidden",name:"item_name",value:"Redirection"}),nr.a.createElement("input",{type:"hidden",name:"buyer_credit_promo_code",value:""}),nr.a.createElement("input",{type:"hidden",name:"buyer_credit_product_category",value:""}),nr.a.createElement("input",{type:"hidden",name:"buyer_credit_shipping_method",value:""}),nr.a.createElement("input",{type:"hidden",name:"buyer_credit_user_address_change",value:""}),nr.a.createElement("input",{type:"hidden",name:"no_shipping",value:"1"}),nr.a.createElement("input",{type:"hidden",name:"return",value:this.getReturnUrl()}),nr.a.createElement("input",{type:"hidden",name:"no_note",value:"1"}),nr.a.createElement("input",{type:"hidden",name:"currency_code",value:"USD"}),nr.a.createElement("input",{type:"hidden",name:"tax",value:"0"}),nr.a.createElement("input",{type:"hidden",name:"lc",value:"US"}),nr.a.createElement("input",{type:"hidden",name:"bn",value:"PP-DonationsBF"}),nr.a.createElement("div",{className:"donation-amount"},"$",nr.a.createElement("input",{type:"number",name:"amount",min:16,value:this.state.amount,onChange:this.onInput,onBlur:this.onBlur}),nr.a.createElement("span",null,this.getAmountoji(this.state.amount)),nr.a.createElement("input",{type:"submit",className:"button-primary",value:Object(ir.translate)("Support 💰")})))}},{key:"render",value:function(){var e=this.state.support;return nr.a.createElement("form",{action:"https://www.paypal.com/cgi-bin/webscr",method:"post",className:"donation"},nr.a.createElement(Ya,null,nr.a.createElement(Qa,{title:Object(ir.translate)("Plugin Support")+":"},e?this.renderSupported():this.renderUnsupported())))}}]),t}(nr.a.Component),vi=yi,Ei=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){xe(this,t);var n=Ce(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoadSettings(),n}return Se(t,e),Ei(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!==zr&&n?nr.a.createElement("div",null,t===Vr&&nr.a.createElement(vi,{support:n.support}),t===Vr&&nr.a.createElement(ii,null),nr.a.createElement("br",null),nr.a.createElement("br",null),nr.a.createElement("hr",null),o&&nr.a.createElement(hi,{onDelete:this.props.onDeletePlugin})):nr.a.createElement(gi,null)}}]),t}(nr.a.Component),Oi=Tr(Pe,je)(wi),ki=function(e){return e.newsletter?nr.a.createElement("div",{className:"newsletter"},nr.a.createElement("h3",null,Object(ir.translate)("Newsletter")),nr.a.createElement("p",null,Object(ir.translate)("Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.",{components:{a:nr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://tinyletter.com/redirection"})}}))):nr.a.createElement("div",{className:"newsletter"},nr.a.createElement("h3",null,Object(ir.translate)("Newsletter")),nr.a.createElement("p",null,Object(ir.translate)("Want to keep up to date with changes to Redirection?")),nr.a.createElement("p",null,Object(ir.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.")),nr.a.createElement("form",{action:"https://tinyletter.com/redirection",method:"post",onSubmit:e.onSubscribe},nr.a.createElement("p",null,nr.a.createElement("label",null,Object(ir.translate)("Your email address:")," ",nr.a.createElement("input",{type:"email",name:"email",id:"tlemail"})," ",nr.a.createElement("input",{type:"submit",value:"Subscribe",className:"button-secondary"})),nr.a.createElement("input",{type:"hidden",value:"1",name:"embed"})," ",nr.a.createElement("span",null,nr.a.createElement("a",{href:"https://tinyletter.com/redirection",target:"_blank",rel:"noreferrer noopener"},"Powered by TinyLetter")))))},_i=Tr(null,Te)(ki),xi=function(){return nr.a.createElement("div",null,nr.a.createElement("h2",null,Object(ir.translate)("Need help?")),nr.a.createElement("p",null,Object(ir.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:nr.a.createElement("a",{href:"https://redirection.me",target:"_blank",rel:"noopener noreferrer"}),faq:nr.a.createElement("a",{href:"https://redirection.me/support/faq/",target:"_blank",rel:"noopener noreferrer"})}})),nr.a.createElement("p",null,nr.a.createElement("strong",null,Object(ir.translate)("If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.",{components:{report:nr.a.createElement("a",{href:"https://redirection.me/support/reporting-bugs/",target:"_blank",rel:"noopener noreferrer"})}}))),nr.a.createElement("div",{className:"inline-notice inline-general"},nr.a.createElement("p",{className:"github"},nr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"},nr.a.createElement("img",{src:Redirectioni10n.pluginBaseUrl+"/images/GitHub-Mark-64px.png",width:"32",height:"32"})),nr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"},"https://github.com/johngodley/redirection/"))),nr.a.createElement("p",null,Object(ir.translate)("Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.")),nr.a.createElement("p",null,Object(ir.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:nr.a.createElement("a",{href:"mailto:john@redirection.me?subject=Redirection%20Issue&body="+encodeURIComponent("Redirection: "+Redirectioni10n.versions)})}})))},Ci=xi,Si=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}}(),ji=Tr(null,Ae)(function(e){var t=e.onFix,n=function(){t()};return nr.a.createElement("div",null,nr.a.createElement("p",null,Object(ir.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.")),nr.a.createElement("p",null,nr.a.createElement("button",{className:"button-primary",onClick:n},Object(ir.translate)("⚡️ Magic fix ⚡️"))))}),Pi=function(e){var t=e.item;return nr.a.createElement("tr",null,nr.a.createElement("th",null,t.name),nr.a.createElement("td",null,nr.a.createElement("span",{className:"plugin-status-"+t.status},t.status.charAt(0).toUpperCase()+t.status.slice(1))," ",t.message))},Ti=function(e){var t=e.status,n=t.filter(function(e){return"good"!==e.status});return nr.a.createElement("div",null,nr.a.createElement("table",{className:"plugin-status"},nr.a.createElement("tbody",null,t.map(function(e,t){return nr.a.createElement(Pi,{item:e,key:t})}))),n.length>0&&nr.a.createElement(ji,null))},Ni=function(e){function t(e){Ne(this,t);var n=De(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onLoadStatus(),n}return Ie(t,e),Si(t,[{key:"render",value:function(){var e=this.props.pluginStatus;return nr.a.createElement("div",null,nr.a.createElement("h2",null,Object(ir.translate)("Plugin Status")),e.length>0&&nr.a.createElement(Ti,{status:e}),0===e.length&&nr.a.createElement("div",{className:"placeholder-inline"},nr.a.createElement("div",{className:"placeholder-loading"})))}}]),t}(nr.a.Component),Di=Tr(Re,Ae)(Ni),Ii=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}}(),Ai=function(e){function t(e){Le(this,t);var n=Fe(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoadSettings(),n}return Me(t,e),Ii(t,[{key:"render",value:function(){var e=this.props.values?this.props.values:{},t=e.newsletter,n=void 0!==t&&t;return nr.a.createElement("div",null,nr.a.createElement(Di,null),nr.a.createElement(Ci,null),nr.a.createElement(_i,{newsletter:n}))}}]),t}(nr.a.Component),Ri=Tr(Be,Ue)(Ai),Li=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=si()(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 nr.a.createElement("th",{scope:"col",className:s,onClick:l},nr.a.createElement("a",{href:"#"},nr.a.createElement("span",null,n),nr.a.createElement("span",{className:"sorting-indicator"})))},Fi=Li,Mi=function(e){var t=e.name,n=e.text,r=e.primary,o=si()(He({"manage-column":!0,"column-primary":r},"column-"+t,!0));return nr.a.createElement("th",{scope:"col",className:o},nr.a.createElement("span",null,n))},Ui=Mi,Bi=function(e){var t=e.onSetAllSelected,n=e.isDisabled,r=e.isSelected;return nr.a.createElement("td",{className:"manage-column column-cb check-column",onClick:t},nr.a.createElement("label",{className:"screen-reader-text"},Object(ir.translate)("Select All")),nr.a.createElement("input",{type:"checkbox",disabled:n,checked:r}))},zi=Bi,Hi=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 nr.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?nr.a.createElement(zi,{onSetAllSelected:l,isDisabled:t,isSelected:o,key:e.name}):!1===p?nr.a.createElement(Ui,{name:e.name,text:e.title,key:e.name,primary:a}):nr.a.createElement(Fi,{table:i,name:e.name,text:e.title,key:e.name,onSetOrderBy:r,primary:a})}))},Vi=Hi,Gi=function(e,t){return-1!==e.indexOf(t)},qi=function(e,t,n){return{isLoading:e===zr,isSelected:Gi(t,n.id)}},Wi=function(e){var t=e.rows,n=e.status,r=e.selected,o=e.row;return nr.a.createElement("tbody",null,t.map(function(e,t){return o(e,t,qi(n,r,e))}))},$i=Wi,Ki=function(e){var t=e.columns;return nr.a.createElement("tr",{className:"is-placeholder"},t.map(function(e,t){return nr.a.createElement("td",{key:t},nr.a.createElement("div",{className:"placeholder-loading"}))}))},Qi=function(e){var t=e.headers,n=e.rows;return nr.a.createElement("tbody",null,nr.a.createElement(Ki,{columns:t}),n.slice(0,-1).map(function(e,n){return nr.a.createElement(Ki,{columns:t,key:n})}))},Yi=Qi,Ji=function(e){var t=e.headers;return nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("td",null),nr.a.createElement("td",{colSpan:t.length-1},Object(ir.translate)("No results"))))},Xi=Ji,Zi=function(e){var t=e.headers;return nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("td",{colSpan:t.length},nr.a.createElement("p",null,Object(ir.translate)("Sorry, something went wrong loading the data - please try again")))))},el=Zi,tl=function(e,t){return e!==Vr||0===t.length},nl=function(e,t){return e.length===t.length&&0!==t.length},rl=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=tl(i,r),c=nl(a.selected,r),p=null;return i===zr&&0===r.length?p=nr.a.createElement(Yi,{headers:t,rows:r}):0===r.length&&i===Vr?p=nr.a.createElement(Xi,{headers:t}):i===Hr?p=nr.a.createElement(el,{headers:t}):r.length>0&&(p=nr.a.createElement($i,{rows:r,status:i,selected:a.selected,row:n})),nr.a.createElement("table",{className:"wp-list-table widefat fixed striped items"},nr.a.createElement("thead",null,nr.a.createElement(Vi,{table:a,isDisabled:u,isSelected:c,headers:t,rows:r,total:o,onSetOrderBy:s,onSetAllSelected:l})),p,nr.a.createElement("tfoot",null,nr.a.createElement(Vi,{table:a,isDisabled:u,isSelected:c,headers:t,rows:r,total:o,onSetOrderBy:s,onSetAllSelected:l})))},ol=rl,al=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}}(),il=function(e){var t=e.title,n=e.button,r=e.className,o=e.enabled,a=e.onClick;return o?nr.a.createElement("a",{className:r,href:"#",onClick:a},nr.a.createElement("span",{className:"screen-reader-text"},t),nr.a.createElement("span",{"aria-hidden":"true"},n)):nr.a.createElement("span",{className:"tablenav-pages-navspan","aria-hidden":"true"},n)},ll=function(e){function t(e){Ve(this,t);var n=Ge(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 qe(t,e),al(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 nr.a.createElement("span",{className:"pagination-links"},nr.a.createElement(il,{title:Object(ir.translate)("First page"),button:"«",className:"first-page",enabled:e>0,onClick:this.onFirst})," ",nr.a.createElement(il,{title:Object(ir.translate)("Prev page"),button:"‹",className:"prev-page",enabled:e>0,onClick:this.onPrev}),nr.a.createElement("span",{className:"paging-input"},nr.a.createElement("label",{htmlFor:"current-page-selector",className:"screen-reader-text"},Object(ir.translate)("Current Page"))," ",nr.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}),nr.a.createElement("span",{className:"tablenav-paging-text"},Object(ir.translate)("of %(page)s",{components:{total:nr.a.createElement("span",{className:"total-pages"})},args:{page:Object(ir.numberFormat)(t)}})))," ",nr.a.createElement(il,{title:Object(ir.translate)("Next page"),button:"›",className:"next-page",enabled:e<t-1,onClick:this.onNext})," ",nr.a.createElement(il,{title:Object(ir.translate)("Last page"),button:"»",className:"last-page",enabled:e<t-1,onClick:this.onLast}))}}]),t}(nr.a.Component),sl=function(e){function t(){return Ve(this,t),Ge(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return qe(t,e),al(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=si()({"tablenav-pages":!0,"one-page":i});return nr.a.createElement("div",{className:l},nr.a.createElement("span",{className:"displaying-num"},Object(ir.translate)("%s item","%s items",{count:t,args:Object(ir.numberFormat)(t)})),!i&&nr.a.createElement(ll,{onChangePage:o,total:t,per_page:n,page:r,inProgress:a}))}}]),t}(nr.a.Component),ul=sl,cl=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){We(this,t);var n=$e(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 Ke(t,e),cl(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 nr.a.createElement("div",{className:"alignleft actions bulkactions"},nr.a.createElement("label",{htmlFor:"bulk-action-selector-top",className:"screen-reader-text"},Object(ir.translate)("Select bulk action")),nr.a.createElement("select",{name:"action",id:"bulk-action-selector-top",value:this.state.action,disabled:0===t.length,onChange:this.handleChange},nr.a.createElement("option",{value:"-1"},Object(ir.translate)("Bulk Actions")),e.map(function(e){return nr.a.createElement("option",{key:e.id,value:e.id},e.name)})),nr.a.createElement("input",{type:"submit",id:"doaction",className:"button action",value:Object(ir.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 nr.a.createElement("div",{className:"tablenav top"},r&&this.getBulk(r),this.props.children?this.props.children:null,t>0&&nr.a.createElement(ul,{per_page:n.per_page,page:n.page,total:t,onChangePage:this.props.onChangePage,inProgress:o===zr}))}}]),t}(nr.a.Component),fl=pl,dl=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}}(),hl=function(e){function t(e){Qe(this,t);var n=Ye(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 Je(t,e),dl(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===zr||""===this.state.search&&""===this.props.table.filter,n="ip"===this.props.table.filterBy?Object(ir.translate)("Search by IP"):Object(ir.translate)("Search");return nr.a.createElement("form",{onSubmit:this.handleSubmit},nr.a.createElement("p",{className:"search-box"},nr.a.createElement("input",{type:"search",name:"s",value:this.state.search,onChange:this.handleChange}),nr.a.createElement("input",{type:"submit",className:"button",value:n,disabled:t})))}}]),t}(nr.a.Component),ml=hl,gl=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}}(),bl=function(e){function t(e){Xe(this,t);var n=Ze(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 et(t,e),gl(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(ir.translate)("Delete all from IP %s",{args:t}):t?Object(ir.translate)('Delete all matching "%s"',{args:t.substring(0,15)}):Object(ir.translate)("Delete All")}},{key:"render",value:function(){var e=this.props.table,t=this.getTitle(e.filterBy,e.filter);return nr.a.createElement("div",{className:"table-button-item"},nr.a.createElement("input",{className:"button",type:"submit",name:"",value:t,onClick:this.onShow}),nr.a.createElement(pi,{show:this.state.isModal,onClose:this.onClose},nr.a.createElement("div",null,nr.a.createElement("h1",null,Object(ir.translate)("Delete the logs - are you sure?")),nr.a.createElement("p",null,Object(ir.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.")),nr.a.createElement("p",null,nr.a.createElement("button",{className:"button-primary",onClick:this.onDelete},Object(ir.translate)("Yes! Delete the logs"))," ",nr.a.createElement("button",{className:"button-secondary",onClick:this.onClose},Object(ir.translate)("No! Don't delete the logs"))))))}}]),t}(nr.a.Component),yl=bl,vl=this,El=function(e){var t=e.logType;return nr.a.createElement("form",{method:"post",action:Redirectioni10n.pluginRoot+"&sub="+t},nr.a.createElement("input",{type:"hidden",name:"_wpnonce",value:Redirectioni10n.WP_API_nonce}),nr.a.createElement("input",{type:"hidden",name:"export-csv",value:""}),nr.a.createElement("input",{className:"button",type:"submit",name:"",value:Object(ir.translate)("Export"),onClick:vl.onShow}))},wl=El,Ol=n(14),kl=function(e){var t=e.children,n=e.disabled,r=void 0!==n&&n;return nr.a.createElement("div",{className:"row-actions"},r?nr.a.createElement("span",null," "):t)},_l=kl,xl=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},Cl={saving:Yr,saved:Jr,failed:Xr,order:"date",store:"log"},Sl={saving:qr,saved:Wr,failed:$r,order:"date",store:"log"},jl=function(e,t){return function(n,r){return Do(wo.log.deleteAll,n,Sl,{page:0,filter:t,filterBy:e},r().log,function(e){return xl({},e,{filter:"",filterBy:""})})}},Pl=function(e,t,n){return Co(wo.bulk.log,e,t,Cl,n)},Tl=function(e){return function(t){return Do(wo.log.list,t,Sl,e)}},Nl=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{filter:"",filterBy:"",page:0,orderby:""};return Tl(e)},Dl=function(e,t){return Tl({orderby:e,direction:t})},Il=function(e){return Tl({page:e})},Al=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return Tl({filter:e,filterBy:""===e?"":t,page:0,orderby:""})},Rl=function(e,t){return Tl({filterBy:e,filter:t,orderby:"",page:0})},Ll=function(e){return{type:Kr,items:e.map(parseInt)}},Fl=function(e){return{type:Qr,onoff:e}},Ml=function(e){var t=e.size,n=void 0===t?"":t,r="spinner-container"+(n?" spinner-"+n:"");return nr.a.createElement("div",{className:r},nr.a.createElement("span",{className:"css-spinner"}))},Ul=Ml,Bl=function(e){return function(t,n){if(!n().info.maps[e])return _o(ko.ip.getGeo(e)).then(function(e){t({type:Aa,map:e})}).catch(function(e){t({type:La,error:e})}),t({type:Ia})}},zl=function(e){return function(t,n){if(!n().info.agents[e])return _o(ko.agent.get(e)).then(function(e){t({type:Ra,agent:e})}).catch(function(e){t({type:La,error:e})}),t({type:Ia})}},Hl=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}}(),Vl=function(e){function t(e){tt(this,t);var n=nt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onGet(e.ip),n}return rt(t,e),Hl(t,[{key:"renderError",value:function(){var e=this.props.error;return nr.a.createElement("div",{className:"modal-error"},nr.a.createElement("h2",null,Object(ir.translate)("Geo IP Error")),nr.a.createElement("p",null,Object(ir.translate)("Something went wrong obtaining this information")),nr.a.createElement("p",null,e.message))}},{key:"showPrivate",value:function(e){var t=e.ip,n=e.ipType;return nr.a.createElement("div",{className:"geo-simple"},nr.a.createElement("h2",null,Object(ir.translate)("Geo IP"),": ",t," - IPv",n),nr.a.createElement("p",null,Object(ir.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 nr.a.createElement("div",{className:"geo-simple"},nr.a.createElement("h2",null,Object(ir.translate)("Geo IP"),": ",t," - IPv",n),nr.a.createElement("p",null,Object(ir.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 nr.a.createElement("div",{className:"geo-full"},nr.a.createElement("table",null,nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",{colSpan:"2"},nr.a.createElement("h2",null,Object(ir.translate)("Geo IP"),": ",nr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(u),target:"_blank",rel:"noopener noreferrer"},u)," - IPv",c))),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("City")),nr.a.createElement("td",null,r)),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Area")),nr.a.createElement("td",null,f.join(", "))),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Timezone")),nr.a.createElement("td",null,a)),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Geo Location")),nr.a.createElement("td",null,l+","+s+" (~"+i+"m)")))),nr.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 nr.a.createElement("div",{className:"external"},Object(ir.translate)("Powered by {{link}}redirect.li{{/link}}",{components:{link:nr.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===Vr&&this.props.maps[this.props.ip]&&"geoip"!==this.props.maps[this.props.ip].code,n=si()({"geo-map":!0,"geo-map-loading":e===zr,"geo-map-small":e===Hr||t});return nr.a.createElement("div",{className:n},e===zr&&nr.a.createElement(Ul,null),e===Hr&&this.renderError(),e===Vr&&this.renderDetails(),e===Vr&&this.renderLink())}}]),t}(nr.a.Component),Gl=Tr(at,ot)(Vl),ql=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}}(),Wl=function(e){function t(e){it(this,t);var n=lt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onGet(e.agent),n}return st(t,e),ql(t,[{key:"renderError",value:function(){var e=this.props.error;return nr.a.createElement("div",{className:"modal-error"},nr.a.createElement("h2",null,Object(ir.translate)("Useragent Error")),nr.a.createElement("p",null,Object(ir.translate)("Something went wrong obtaining this information")),nr.a.createElement("p",null,nr.a.createElement("code",null,e.message)))}},{key:"renderUnknown",value:function(){var e=this.props.agent;return nr.a.createElement("div",{className:"agent-unknown"},nr.a.createElement("h2",null,Object(ir.translate)("Unknown Useragent")),nr.a.createElement("br",null),nr.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?nr.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(ir.translate)("Device"),a]),i&&u.push([Object(ir.translate)("Operating System"),i]),l&&u.push([Object(ir.translate)("Browser"),l]),s&&u.push([Object(ir.translate)("Engine"),s]),nr.a.createElement("div",null,nr.a.createElement("h2",null,Object(ir.translate)("Useragent"),": ",o),nr.a.createElement("table",null,nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Agent")),nr.a.createElement("td",{className:"useragent-agent"},n)),u.map(function(e,t){return nr.a.createElement("tr",{key:t},nr.a.createElement("th",null,e[0]),nr.a.createElement("td",null,e[1]))}))),nr.a.createElement("div",{className:"external"},Object(ir.translate)("Powered by {{link}}redirect.li{{/link}}",{components:{link:nr.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=si()({useragent:!0,"useragent-loading":e===zr});return nr.a.createElement("div",{className:t},e===zr&&nr.a.createElement(Ul,null),e===Hr&&this.renderError(),e===Vr&&this.renderDetails())}}]),t}(nr.a.Component),$l=Tr(ct,ut)(Wl),Kl=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}}(),Ql=function(e){var t=e.url;if(t){var n=Ol.parse(t).hostname;return nr.a.createElement("a",{href:t,rel:"noreferrer noopener",target:"_blank"},n)}return null},Yl=function(e){function t(e){pt(this,t);var n=ft(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?nr.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 dt(t,e),Kl(t,[{key:"renderMap",value:function(){return nr.a.createElement(pi,{show:this.state.showMap,onClose:this.closeMap,width:"800",padding:!1},nr.a.createElement(Gl,{ip:this.props.item.ip}))}},{key:"renderAgent",value:function(){return nr.a.createElement(pi,{show:this.state.showAgent,onClose:this.closeAgent,width:"800"},nr.a.createElement($l,{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===zr,d="STATUS_SAVING"===p,h=f||d,m=[nr.a.createElement("a",{href:"#",onClick:this.onDelete,key:"0"},Object(ir.translate)("Delete"))];return r&&m.unshift(nr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(r),onClick:this.showMap,key:"2"},Object(ir.translate)("Geo Info"))),i&&m.unshift(nr.a.createElement("a",{href:"https://redirect.li/useragent/?ip="+encodeURIComponent(i),onClick:this.showAgent,key:"3"},Object(ir.translate)("Agent Info"))),nr.a.createElement("tr",{className:h?"disabled":""},nr.a.createElement("th",{scope:"row",className:"check-column"},!d&&nr.a.createElement("input",{type:"checkbox",name:"item[]",value:s,disabled:f,checked:c,onClick:this.onSelected}),d&&nr.a.createElement(Ul,{size:"small"})),nr.a.createElement("td",{className:"column-date"},t,nr.a.createElement("br",null),n),nr.a.createElement("td",{className:"column-primary column-url"},nr.a.createElement("a",{href:a,rel:"noreferrer noopener",target:"_blank"},a.substring(0,100)),nr.a.createElement("br",null),l?l.substring(0,100):"",nr.a.createElement(_l,{disabled:d},m.reduce(function(e,t){return[e," | ",t]})),this.state.showMap&&this.renderMap(),this.state.showAgent&&this.renderAgent()),nr.a.createElement("td",{className:"column-referrer"},nr.a.createElement(Ql,{url:o}),o&&nr.a.createElement("br",null),i),nr.a.createElement("td",{className:"column-ip"},this.renderIp(r),nr.a.createElement(_l,null,r&&nr.a.createElement("a",{href:"#",onClick:this.onShow},Object(ir.translate)("Filter by IP")))))}}]),t}(nr.a.Component),Jl=Tr(null,ht)(Yl),Xl=function(e){var t=e.enabled,n=void 0===t||t,r=e.children;return n?nr.a.createElement("div",{className:"table-buttons"},r):null},Zl=Xl,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=[{name:"cb",check:!0},{name:"date",title:Object(ir.translate)("Date")},{name:"url",title:Object(ir.translate)("Source URL"),primary:!0},{name:"referrer",title:Object(ir.translate)("Referrer / User Agent"),sortable:!1},{name:"ip",title:Object(ir.translate)("IP"),sortable:!1}],ns=[{id:"delete",name:Object(ir.translate)("Delete")}],rs=function(e){function t(e){mt(this,t);var n=gt(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 bt(t,e),es(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoad()}},{key:"onRSS",value:function(){document.location=z()}},{key:"renderRow",value:function(e,t,n){var r=this.props.log.saving,o=n.isLoading?zr:Vr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return nr.a.createElement(Jl,{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 nr.a.createElement("div",null,nr.a.createElement(ml,{status:t,table:r,onSearch:this.props.onSearch}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction,bulk:ns}),nr.a.createElement(ol,{headers:ts,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction},nr.a.createElement(Zl,{enabled:o.length>0},nr.a.createElement(wl,{logType:Zr}),nr.a.createElement("button",{className:"button-secondary",onClick:this.handleRSS},"RSS"),nr.a.createElement(yl,{onDelete:this.props.onDeleteAll,table:r}))))}}]),t}(nr.a.Component),os=Tr(yt,vt)(rs),as=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},is={saving:Ko,saved:Qo,failed:Yo,order:"date",store:"error"},ls={saving:Vo,saved:Go,failed:qo,order:"date",store:"error"},ss=function(e,t){return function(n,r){return Io(wo.error.deleteAll,n,ls,{page:0,filter:t,filterBy:e},r().error)}},us=function(e,t){return function(n,r){return Do(wo.error.deleteAll,n,ls,{page:0,filter:t,filterBy:e},r().error,function(e){return as({},e,{filter:"",filterBy:""})})}},cs=function(e,t,n){return Co(wo.bulk.error,e,t,is,n)},ps=function(e){return function(t){return Do(wo.error.list,t,ls,e)}},fs=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{filter:"",filterBy:"",page:0,orderby:""};return ps(e)},ds=function(e,t){return ps({orderby:e,direction:t})},hs=function(e){return ps({page:e})},ms=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return ps({filter:e,filterBy:""===e?"":t,page:0,orderby:""})},gs=function(e,t){return ps({filterBy:e,filter:t,orderby:"",page:0})},bs=function(e){return{type:Wo,items:e.map(parseInt)}},ys=function(e){return{type:$o,onoff:e}},vs=function(e){var t=e.url;if(t){var n=Ol.parse(t).hostname;return nr.a.createElement("a",{href:t,rel:"noreferrer noopener",target:"_blank"},n)}return null},Es=vs,ws=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){Et(this,t);var n=wt(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 Ot(t,e),ws(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 nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("User Agent")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"agent",value:this.props.agent,onChange:this.handleChangeAgent,className:"medium"}),"  ",nr.a.createElement("select",{name:"agent_dropdown",onChange:this.onDropdown,value:this.state.dropdown,className:"medium"},nr.a.createElement("option",{value:""},Object(ir.translate)("Custom")),nr.a.createElement("option",{value:"mobile"},Object(ir.translate)("Mobile")),nr.a.createElement("option",{value:"feed"},Object(ir.translate)("Feed Readers")," "),nr.a.createElement("option",{value:"lib"},Object(ir.translate)("Libraries"))),"  ",nr.a.createElement("label",null,Object(ir.translate)("Regex")," ",nr.a.createElement("input",{type:"checkbox",name:"regex",checked:this.props.regex,onChange:this.handleChangeRegex}))))}}]),t}(nr.a.Component),ks=Os,_s=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}}(),xs=function(e){function t(e){kt(this,t);var n=_t(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeReferrer=n.onChangeReferrer.bind(n),n.handleChangeRegex=n.onChangeRegex.bind(n),n}return xt(t,e),_s(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 nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Referrer")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"referrer",value:this.props.referrer,onChange:this.handleChangeReferrer}),"  ",nr.a.createElement("label",null,Object(ir.translate)("Regex")," ",nr.a.createElement("input",{type:"checkbox",name:"regex",checked:this.props.regex,onChange:this.handleChangeRegex}))))}}]),t}(nr.a.Component),Cs=xs,Ss=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}}(),js=function(e){function t(e){Ct(this,t);var n=St(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeFrom=n.onChangeFrom.bind(n),n.handleChangeNotFrom=n.onChangeNotFrom.bind(n),n}return jt(t,e),Ss(t,[{key:"onChangeFrom",value:function(e){this.props.onChange("agent","url_from",e.target.value)}},{key:"onChangeNotFrom",value:function(e){this.props.onChange("agent","url_notfrom",e.target.value)}},{key:"render",value:function(){return nr.a.createElement("tr",null,nr.a.createElement("td",{colSpan:"2",className:"no-margin"},nr.a.createElement("table",null,nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Matched Target")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"url_from",value:this.props.url_from,onChange:this.handleChangeFrom}))),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Unmatched Target")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"url_notfrom",value:this.props.url_notfrom,onChange:this.handleChangeNotFrom})))))))}}]),t}(nr.a.Component),Ps=js,Ts=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}}(),Ns=function(e){function t(e){Pt(this,t);var n=Tt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeFrom=n.onChangeFrom.bind(n),n.handleChangeNotFrom=n.onChangeNotFrom.bind(n),n}return Nt(t,e),Ts(t,[{key:"onChangeFrom",value:function(e){this.props.onChange("referrer","url_from",e.target.value)}},{key:"onChangeNotFrom",value:function(e){this.props.onChange("referrer","url_notfrom",e.target.value)}},{key:"render",value:function(){return nr.a.createElement("tr",null,nr.a.createElement("td",{colSpan:"2",className:"no-margin"},nr.a.createElement("table",null,nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Matched Target")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"url_from",value:this.props.url_from,onChange:this.handleChangeFrom}))),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Unmatched Target")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"url_notfrom",value:this.props.url_notfrom,onChange:this.handleChangeNotFrom})))))))}}]),t}(nr.a.Component),Ds=Ns,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}}(),As=function(e){function t(e){Dt(this,t);var n=It(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeIn=n.onChangeIn.bind(n),n.handleChangeOut=n.onChangeOut.bind(n),n}return At(t,e),Is(t,[{key:"onChangeIn",value:function(e){this.props.onChange("login","logged_in",e.target.value)}},{key:"onChangeOut",value:function(e){this.props.onChange("login","logged_out",e.target.value)}},{key:"render",value:function(){return nr.a.createElement("tr",null,nr.a.createElement("td",{colSpan:"2",className:"no-margin"},nr.a.createElement("table",null,nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Logged In")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"logged_in",value:this.props.logged_in,onChange:this.handleChangeIn}))),nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Logged Out")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"logged_out",value:this.props.logged_out,onChange:this.handleChangeOut})))))))}}]),t}(nr.a.Component),Rs=As,Ls=function(e){var t=function(t){e.onChange("target","url",t.target.value)};return nr.a.createElement("tr",null,nr.a.createElement("td",{colSpan:"2",className:"no-margin"},nr.a.createElement("table",null,nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Target URL")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"url",value:e.target.url,onChange:t})))))))},Fs=Ls,Ms=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]}})},Us={store:"redirect",saving:wa,saved:ka,failed:Oa,order:"name"},Bs={store:"redirect",saving:ga,saved:ba,failed:ya,order:"name"},zs=function(e){return jo(wo.redirect.create,e,Us)},Hs=function(e,t){return Po(wo.redirect.update,e,t,Us)},Vs=function(e,t){return Co(wo.bulk.redirect,e,t,Us)},Gs=function(e){return function(t,n){return Do(wo.redirect.list,t,Bs,e,n().redirect)}},qs=function(e,t){return Gs({orderby:e,direction:t})},Ws=function(e){return Gs({page:e})},$s=function(e){return Gs({filter:e,filterBy:"",page:0,orderby:""})},Ks=function(e,t){return Gs({filterBy:e,filter:t,orderby:"",page:0})},Qs=function(e){return{type:va,items:e.map(parseInt)}},Ys=function(e){return{type:Ea,onoff:e}},Js=function(e){return{type:_a,onoff:e}},Xs=function(e){return"url"===e||"pass"===e},Zs=function(e){var t=e.agent,n=e.referrer,r=e.login,o=e.match_type,a=e.target,i=e.action_type;return"agent"===o?{agent:t.agent,regex:t.regex,url_from:Xs(i)?t.url_from:"",url_notfrom:Xs(i)?t.url_notfrom:""}:"referrer"===o?{referrer:n.referrer,regex:n.regex,url_from:Xs(i)?n.url_from:"",url_notfrom:Xs(i)?n.url_notfrom:""}:"login"===o&&Xs(i)?{logged_in:r.logged_in,logged_out:r.logged_out}:"url"===o&&Xs(i)?{url:a.url}:""},eu=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}},tu=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},nu=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}}(),ru=[{value:"url",name:Object(ir.translate)("URL only")},{value:"login",name:Object(ir.translate)("URL and login status")},{value:"referrer",name:Object(ir.translate)("URL and referrer")},{value:"agent",name:Object(ir.translate)("URL and user agent")}],ou=[{value:"url",name:Object(ir.translate)("Redirect to URL")},{value:"random",name:Object(ir.translate)("Redirect to random post")},{value:"pass",name:Object(ir.translate)("Pass-through")},{value:"error",name:Object(ir.translate)("Error (404)")},{value:"nothing",name:Object(ir.translate)("Do nothing")}],au=[{value:301,name:Object(ir.translate)("301 - Moved Permanently")},{value:302,name:Object(ir.translate)("302 - Found")},{value:307,name:Object(ir.translate)("307 - Temporary Redirect")},{value:308,name:Object(ir.translate)("308 - Permanent Redirect")}],iu=[{value:401,name:Object(ir.translate)("401 - Unauthorized")},{value:404,name:Object(ir.translate)("404 - Not Found")},{value:410,name:Object(ir.translate)("410 - Gone")}],lu=function(e){function t(e){Lt(this,t);var n=Ft(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));n.onCustomAgent=function(e){var t=n.state.agent;t.agent=e,t.regex=!0,n.setState({agent:t})},n.handleSave=n.onSave.bind(n),n.handleChange=n.onChange.bind(n),n.handleGroup=n.onGroup.bind(n),n.handleData=n.onSetData.bind(n),n.handleAdvanced=n.onAdvanced.bind(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)},n.state.advanced=!n.canShowAdvanced(),n}return Mt(t,e),nu(t,[{key:"getValidGroup",value:function(e){var t=this.props.group.rows;if(t.find(function(t){return t.id===e}))return e;if(t.length>0){var n=t.find(function(e){return e.default});return n?n.id:t[0].id}return 0}},{key:"reset",value:function(){this.setState(tu({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:""}}}},{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:"onSetData",value:function(e,t,n){void 0!==n?this.setState(Rt({},e,Object.assign({},this.state[e],Rt({},t,n)))):this.setState(Rt({},e,t))}},{key:"onSave",value:function(e){e.preventDefault();var t=this.state,n=t.url,r=t.title,o=t.regex,a=t.match_type,i=t.action_type,l=t.group_id,s=t.action_code,u=t.position,c=this.props.group.rows,p={id:parseInt(this.props.item.id,10),url:n,title:r,regex:o,match_type:a,action_type:i,position:u,group_id:l>0?l:c[0].id,action_code:this.getCode()?parseInt(s,10):0,action_data:Zs(this.state)};p.id?this.props.onSave(p.id,p):this.props.onCreate(p),this.props.onCancel?this.props.onCancel(e):this.reset(),this.props.childSave&&this.props.childSave()}},{key:"onAdvanced",value:function(e){e.preventDefault(),this.setState({advanced:!this.state.advanced})}},{key:"onGroup",value:function(e){this.setState({group_id:parseInt(e.target.value,10)})}},{key:"onChange",value:function(e){var t=e.target,n="checkbox"===t.type?t.checked:t.value;if(this.setState(Rt({},t.name,n)),"action_type"===t.name&&"url"===t.value&&this.setState({action_code:301}),"action_type"===t.name&&"error"===t.value&&this.setState({action_code:404}),"match_type"===t.name){var r=tu({},this.resetActionData());"login"===t.value?this.setState(tu({},r,{action_type:"url"})):this.setState(r)}}},{key:"getCode",value:function(){return"error"===this.state.action_type?nr.a.createElement("select",{name:"action_code",value:this.state.action_code,onChange:this.handleChange},iu.map(function(e){return nr.a.createElement("option",{key:e.value,value:e.value},e.name)})):"url"===this.state.action_type||"random"===this.state.action_type?nr.a.createElement("select",{name:"action_code",value:this.state.action_code,onChange:this.handleChange},au.map(function(e){return nr.a.createElement("option",{key:e.value,value:e.value},e.name)})):null}},{key:"getMatchExtra",value:function(){switch(this.state.match_type){case"agent":return nr.a.createElement(ks,{agent:this.state.agent.agent,regex:this.state.agent.regex,onChange:this.handleData,onCustomAgent:this.onCustomAgent});case"referrer":return nr.a.createElement(Cs,{referrer:this.state.referrer.referrer,regex:this.state.referrer.regex,onChange:this.handleData})}return null}},{key:"getTarget",value:function(){var e=this.state,t=e.match_type,n=e.action_type;if(Xs(n)){if("agent"===t)return nr.a.createElement(Ps,{url_from:this.state.agent.url_from,url_notfrom:this.state.agent.url_notfrom,onChange:this.handleData});if("referrer"===t)return nr.a.createElement(Ds,{url_from:this.state.referrer.url_from,url_notfrom:this.state.referrer.url_notfrom,onChange:this.handleData});if("login"===t)return nr.a.createElement(Rs,{logged_in:this.state.login.logged_in,logged_out:this.state.login.logged_out,onChange:this.handleData});if("url"===t)return nr.a.createElement(Fs,{target:this.state.target,onChange:this.handleData})}return null}},{key:"getTitle",value:function(){var e=this.state.title;return nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Title")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"title",value:e,onChange:this.handleChange})))}},{key:"getMatch",value:function(){var e=this.state.match_type;return nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Match")),nr.a.createElement("td",null,nr.a.createElement("select",{name:"match_type",value:e,onChange:this.handleChange},ru.map(function(e){return nr.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&&!Xs(e.value))};return nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("When matched")),nr.a.createElement("td",null,nr.a.createElement("select",{name:"action_type",value:t,onChange:this.handleChange},ou.filter(o).map(function(e){return nr.a.createElement("option",{value:e.value,key:e.value},e.name)})),r&&nr.a.createElement("span",null," ",nr.a.createElement("strong",null,Object(ir.translate)("with HTTP code"))," ",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 nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Group")),nr.a.createElement("td",null,nr.a.createElement(ei,{name:"group",value:t,items:Ms(e),onChange:this.handleGroup})," ",r&&nr.a.createElement("strong",null,Object(ir.translate)("Position")),r&&nr.a.createElement("input",{type:"number",value:n,name:"position",min:"0",size:"3",onChange:this.handleChange})))}},{key:"canSave",value:function(){if(""===Redirectioni10n.autoGenerate&&""===this.state.url)return!1;if(Xs(this.state.action_type)){if("url"===this.state.match_type&&""===this.state.target)return!1;if("referrer"===this.state.match_type&&""===this.state.referrer.url_from&&""===this.state.referrer.url_notfrom)return!1;if("login"===this.state.match_type&&""===this.state.login.logged_in&&""===this.state.login.logged_out)return!1;if("agent"===this.state.match_type&&""===this.state.agent.url_from&&""===this.state.agent.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(ir.translate)("Save"):a,l=o.onCancel,s=o.autoFocus,u=void 0!==s&&s,c=o.addTop,p=o.onClose;return nr.a.createElement("form",{onSubmit:this.handleSave},nr.a.createElement("table",{className:"edit edit-redirection"},nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Source URL")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"url",value:t,onChange:this.handleChange,autoFocus:u}),"  ",nr.a.createElement("label",null,Object(ir.translate)("Regex")," ",nr.a.createElement("sup",null,nr.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",nr.a.createElement("input",{type:"checkbox",name:"regex",checked:n,onChange:this.handleChange})))),r&&this.getTitle(),r&&this.getMatch(),r&&this.getMatchExtra(),r&&this.getTargetCode(),this.getTarget(),this.getGroup(),this.props.children&&this.props.children,nr.a.createElement("tr",null,nr.a.createElement("th",null),nr.a.createElement("td",null,nr.a.createElement("div",{className:"table-actions"},nr.a.createElement("input",{className:"button-primary",type:"submit",name:"save",value:i,disabled:!this.canSave()}),"  ",l&&nr.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(ir.translate)("Cancel"),onClick:l}),c&&nr.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(ir.translate)("Close"),onClick:p})," ",this.canShowAdvanced()&&!1!==this.props.advanced&&nr.a.createElement("a",{href:"#",onClick:this.handleAdvanced,className:"advanced",title:Object(ir.translate)("Show advanced options")},"⚙")))))))}}]),t}(nr.a.Component),su=Tr(Ut,Bt)(lu),uu=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}}(),cu=function(e){function t(e){zt(this,t);var n=Ht(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return 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.handleSelected=n.onSelect.bind(n),n.handleDelete=n.onDelete.bind(n),n.handleAdd=n.onAdd.bind(n),n.handleShow=n.onShow.bind(n),n.handleClose=n.onClose.bind(n),n.handleSave=n.onSave.bind(n),n.handleDeleteLog=n.onDeleteLog.bind(n),n.state={editing:!1,delete_log:!1,showMap:!1,showAgent:!1},n}return Vt(t,e),uu(t,[{key:"onSelect",value:function(){this.props.onSetSelected([this.props.item.id])}},{key:"onDelete",value:function(e){e.preventDefault(),this.props.onDelete(this.props.item.id)}},{key:"onShow",value:function(e){e.preventDefault(),this.props.onShowIP(this.props.item.ip)}},{key:"onAdd",value:function(e){e.preventDefault(),this.setState({editing:!0})}},{key:"onClose",value:function(){this.setState({editing:!1})}},{key:"onDeleteLog",value:function(e){this.setState({delete_log:e.target.checked})}},{key:"onSave",value:function(){this.state.delete_log&&this.props.onDeleteFilter(this.props.item.url)}},{key:"renderEdit",value:function(){return nr.a.createElement(pi,{show:this.state.editing,onClose:this.handleClose,width:"700"},nr.a.createElement("div",{className:"add-new"},nr.a.createElement(su,{item:eu(this.props.item.url,0),saveButton:Object(ir.translate)("Add Redirect"),advanced:!1,onCancel:this.handleClose,childSave:this.handleSave,autoFocus:!0},nr.a.createElement("tr",null,nr.a.createElement("th",null,Object(ir.translate)("Delete 404s")),nr.a.createElement("td",null,nr.a.createElement("label",null,nr.a.createElement("input",{type:"checkbox",name:"delete_log",checked:this.state.delete_log,onChange:this.handleDeleteLog}),Object(ir.translate)("Delete all logs for this 404")))))))}},{key:"renderMap",value:function(){return nr.a.createElement(pi,{show:this.state.showMap,onClose:this.closeMap,width:"800",padding:!1},nr.a.createElement(Gl,{ip:this.props.item.ip}))}},{key:"renderAgent",value:function(){return nr.a.createElement(pi,{show:this.state.showAgent,onClose:this.closeAgent,width:"800"},nr.a.createElement($l,{agent:this.props.item.agent}))}},{key:"renderIp",value:function(e){return e?nr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(e),onClick:this.showMap},e):"-"}},{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.id,s=this.props,u=s.selected,c=s.status,p=c===zr,f="STATUS_SAVING"===c,d=p||f,h=[nr.a.createElement("a",{href:"#",onClick:this.handleDelete,key:"0"},Object(ir.translate)("Delete")),nr.a.createElement("a",{href:"#",onClick:this.handleAdd,key:"1"},Object(ir.translate)("Add Redirect"))];return r&&h.unshift(nr.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(r),onClick:this.showMap,key:"2"},Object(ir.translate)("Geo Info"))),i&&h.unshift(nr.a.createElement("a",{href:"https://redirect.li/useragent/?agent="+encodeURIComponent(i),onClick:this.showAgent,key:"3"},Object(ir.translate)("Agent Info"))),nr.a.createElement("tr",{className:d?"disabled":""},nr.a.createElement("th",{scope:"row",className:"check-column"},!f&&nr.a.createElement("input",{type:"checkbox",name:"item[]",value:l,disabled:p,checked:u,onClick:this.handleSelected}),f&&nr.a.createElement(Ul,{size:"small"})),nr.a.createElement("td",{className:"column-date"},t,nr.a.createElement("br",null),n),nr.a.createElement("td",{className:"column-url column-primary"},nr.a.createElement("a",{href:a,rel:"noreferrer noopener",target:"_blank"},a.substring(0,100)),nr.a.createElement(_l,{disabled:f},h.reduce(function(e,t){return[e," | ",t]})),this.state.editing&&this.renderEdit(),this.state.showMap&&this.renderMap(),this.state.showAgent&&this.renderAgent()),nr.a.createElement("td",{className:"column-referrer"},nr.a.createElement(Es,{url:o}),o&&nr.a.createElement("br",null),nr.a.createElement("span",null,i)),nr.a.createElement("td",{className:"column-ip"},this.renderIp(r),nr.a.createElement(_l,null,r&&nr.a.createElement("a",{href:"#",onClick:this.handleShow},Object(ir.translate)("Filter by IP")))))}}]),t}(nr.a.Component),pu=Tr(qt,Gt)(cu),fu={store:"group",saving:fa,saved:ha,failed:da,order:"name"},du={store:"group",saving:la,saved:sa,failed:ua,order:"name"},hu=function(e){return jo(wo.group.create,e,fu)},mu=function(e,t){return Po(wo.group.update,e,t,fu)},gu=function(e,t){return Co(wo.bulk.group,e,t,fu)},bu=function(e){return function(t,n){return Do(wo.group.list,t,du,e,n().group)}},yu=function(e,t){return bu({orderby:e,direction:t})},vu=function(e){return bu({page:e})},Eu=function(e){return bu({filter:e,filterBy:"",page:0,orderby:""})},wu=function(e,t){return bu({filterBy:e,filter:t,orderby:"",page:0})},Ou=function(e){return{type:ca,items:e.map(parseInt)}},ku=function(e){return{type:pa,onoff:e}},_u=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}}(),xu=[{name:"cb",check:!0},{name:"date",title:Object(ir.translate)("Date")},{name:"url",title:Object(ir.translate)("Source URL"),primary:!0},{name:"referrer",title:Object(ir.translate)("Referrer / User Agent"),sortable:!1},{name:"ip",title:Object(ir.translate)("IP"),sortable:!1}],Cu=[{id:"delete",name:Object(ir.translate)("Delete")}],Su=function(e){function t(e){Wt(this,t);var n=$t(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoad(e.error.table),n.props.onLoadGroups(),n.handleRender=n.renderRow.bind(n),n}return Kt(t,e),_u(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoad()}},{key:"renderRow",value:function(e,t,n){var r=this.props.error.saving,o=n.isLoading?zr:Vr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return nr.a.createElement(pu,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"render",value:function(){var e=this.props.error,t=e.status,n=e.total,r=e.table,o=e.rows;return nr.a.createElement("div",null,nr.a.createElement(ml,{status:t,table:r,onSearch:this.props.onSearch}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction,bulk:Cu}),nr.a.createElement(ol,{headers:xu,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction},nr.a.createElement(Zl,{enabled:o.length>0},nr.a.createElement(wl,{logType:"404"}),nr.a.createElement(yl,{onDelete:this.props.onDeleteAll,table:r}))))}}]),t}(nr.a.Component),ju=Tr(Qt,Yt)(Su),Pu=n(63),Tu=n.n(Pu),Nu="undefined"==typeof document||!document||!document.createElement||"multiple"in document.createElement("input"),Du={rejected:{borderStyle:"solid",borderColor:"#c66",backgroundColor:"#eee"},disabled:{opacity:.5},active:{borderStyle:"solid",borderColor:"#6c6",backgroundColor:"#eee"},default:{width:200,height:200,borderWidth:2,borderColor:"#666",borderStyle:"dashed",borderRadius:5}},Iu=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},Au=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}}(),Ru=function(e){function t(e,n){on(this,t);var r=an(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.renderChildren=function(e,t,n,o){return"function"==typeof e?e(Iu({},r.state,{isDragActive:t,isDragAccept:n,isDragReject:o})):e},r.composeHandlers=r.composeHandlers.bind(r),r.onClick=r.onClick.bind(r),r.onDocumentDrop=r.onDocumentDrop.bind(r),r.onDragEnter=r.onDragEnter.bind(r),r.onDragLeave=r.onDragLeave.bind(r),r.onDragOver=r.onDragOver.bind(r),r.onDragStart=r.onDragStart.bind(r),r.onDrop=r.onDrop.bind(r),r.onFileDialogCancel=r.onFileDialogCancel.bind(r),r.onInputElementClick=r.onInputElementClick.bind(r),r.setRef=r.setRef.bind(r),r.setRefs=r.setRefs.bind(r),r.isFileDialogActive=!1,r.state={draggedFiles:[],acceptedFiles:[],rejectedFiles:[]},r}return ln(t,e),Au(t,[{key:"componentDidMount",value:function(){var e=this.props.preventDropOnDocument;this.dragTargets=[],e&&(document.addEventListener("dragover",tn,!1),document.addEventListener("drop",this.onDocumentDrop,!1)),this.fileInputEl.addEventListener("click",this.onInputElementClick,!1),document.body.onfocus=this.onFileDialogCancel}},{key:"componentWillUnmount",value:function(){this.props.preventDropOnDocument&&(document.removeEventListener("dragover",tn),document.removeEventListener("drop",this.onDocumentDrop)),null!=this.fileInputEl&&this.fileInputEl.removeEventListener("click",this.onInputElementClick,!1),null!=document&&(document.body.onfocus=null)}},{key:"composeHandlers",value:function(e){return this.props.disabled?null:e}},{key:"onDocumentDrop",value:function(e){this.node&&this.node.contains(e.target)||(e.preventDefault(),this.dragTargets=[])}},{key:"onDragStart",value:function(e){this.props.onDragStart&&this.props.onDragStart.call(this,e)}},{key:"onDragEnter",value:function(e){e.preventDefault(),-1===this.dragTargets.indexOf(e.target)&&this.dragTargets.push(e.target),this.setState({isDragActive:!0,draggedFiles:Jt(e)}),this.props.onDragEnter&&this.props.onDragEnter.call(this,e)}},{key:"onDragOver",value:function(e){e.preventDefault(),e.stopPropagation();try{e.dataTransfer.dropEffect=this.isFileDialogActive?"none":"copy"}catch(e){}return this.props.onDragOver&&this.props.onDragOver.call(this,e),!1}},{key:"onDragLeave",value:function(e){var t=this;e.preventDefault(),this.dragTargets=this.dragTargets.filter(function(n){return n!==e.target&&t.node.contains(n)}),this.dragTargets.length>0||(this.setState({isDragActive:!1,draggedFiles:[]}),this.props.onDragLeave&&this.props.onDragLeave.call(this,e))}},{key:"onDrop",value:function(e){var t=this,n=this.props,r=n.onDrop,o=n.onDropAccepted,a=n.onDropRejected,i=n.multiple,l=n.disablePreview,s=n.accept,u=Jt(e),c=[],p=[];e.preventDefault(),this.dragTargets=[],this.isFileDialogActive=!1,u.forEach(function(e){if(!l)try{e.preview=window.URL.createObjectURL(e)}catch(e){}Xt(e,s)&&Zt(e,t.props.maxSize,t.props.minSize)?c.push(e):p.push(e)}),i||p.push.apply(p,rn(c.splice(1))),r&&r.call(this,c,p,e),p.length>0&&a&&a.call(this,p,e),c.length>0&&o&&o.call(this,c,e),this.draggedFiles=null,this.setState({isDragActive:!1,draggedFiles:[],acceptedFiles:c,rejectedFiles:p})}},{key:"onClick",value:function(e){var t=this.props,n=t.onClick;t.disableClick||(e.stopPropagation(),n&&n.call(this,e),setTimeout(this.open.bind(this),0))}},{key:"onInputElementClick",value:function(e){e.stopPropagation(),this.props.inputProps&&this.props.inputProps.onClick&&this.props.inputProps.onClick()}},{key:"onFileDialogCancel",value:function(){var e=this.props.onFileDialogCancel,t=this.fileInputEl,n=this.isFileDialogActive;e&&n&&setTimeout(function(){t.files.length||(n=!1,e())},300)}},{key:"setRef",value:function(e){this.node=e}},{key:"setRefs",value:function(e){this.fileInputEl=e}},{key:"open",value:function(){this.isFileDialogActive=!0,this.fileInputEl.value=null,this.fileInputEl.click()}},{key:"render",value:function(){var e=this.props,t=e.accept,n=e.acceptClassName,r=e.activeClassName,o=e.children,a=e.disabled,i=e.disabledClassName,l=e.inputProps,s=e.multiple,u=e.name,c=e.rejectClassName,p=nn(e,["accept","acceptClassName","activeClassName","children","disabled","disabledClassName","inputProps","multiple","name","rejectClassName"]),f=p.acceptStyle,d=p.activeStyle,h=p.className,m=void 0===h?"":h,g=p.disabledStyle,b=p.rejectStyle,y=p.style,v=nn(p,["acceptStyle","activeStyle","className","disabledStyle","rejectStyle","style"]),E=this.state,w=E.isDragActive,O=E.draggedFiles,k=O.length,_=s||k<=1,x=k>0&&en(O,this.props.accept),C=k>0&&(!x||!_),S=!(m||y||d||f||b||g);w&&r&&(m+=" "+r),x&&n&&(m+=" "+n),C&&c&&(m+=" "+c),a&&i&&(m+=" "+i),S&&(y=Du.default,d=Du.active,f=y.active,b=Du.rejected,g=Du.disabled);var j=Iu({},y);d&&w&&(j=Iu({},y,d)),f&&x&&(j=Iu({},j,f)),b&&C&&(j=Iu({},j,b)),g&&a&&(j=Iu({},y,g));var P={accept:t,disabled:a,type:"file",style:{display:"none"},multiple:Nu&&s,ref:this.setRefs,onChange:this.onDrop,autoComplete:"off"};u&&u.length&&(P.name=u);var T=(v.acceptedFiles,v.preventDropOnDocument,v.disablePreview,v.disableClick,v.onDropAccepted,v.onDropRejected,v.onFileDialogCancel,v.maxSize,v.minSize,nn(v,["acceptedFiles","preventDropOnDocument","disablePreview","disableClick","onDropAccepted","onDropRejected","onFileDialogCancel","maxSize","minSize"]));return nr.a.createElement("div",Iu({className:m,style:j},T,{onClick:this.composeHandlers(this.onClick),onDragStart:this.composeHandlers(this.onDragStart),onDragEnter:this.composeHandlers(this.onDragEnter),onDragOver:this.composeHandlers(this.onDragOver),onDragLeave:this.composeHandlers(this.onDragLeave),onDrop:this.composeHandlers(this.onDrop),ref:this.setRef,"aria-disabled":a}),this.renderChildren(o,w,x,C),nr.a.createElement("input",Iu({},l,P)))}}]),t}(nr.a.Component),Lu=Ru;Ru.propTypes={accept:ur.a.string,children:ur.a.oneOfType([ur.a.node,ur.a.func]),disableClick:ur.a.bool,disabled:ur.a.bool,disablePreview:ur.a.bool,preventDropOnDocument:ur.a.bool,inputProps:ur.a.object,multiple:ur.a.bool,name:ur.a.string,maxSize:ur.a.number,minSize:ur.a.number,className:ur.a.string,activeClassName:ur.a.string,acceptClassName:ur.a.string,rejectClassName:ur.a.string,disabledClassName:ur.a.string,style:ur.a.object,activeStyle:ur.a.object,acceptStyle:ur.a.object,rejectStyle:ur.a.object,disabledStyle:ur.a.object,onClick:ur.a.func,onDrop:ur.a.func,onDropAccepted:ur.a.func,onDropRejected:ur.a.func,onDragStart:ur.a.func,onDragEnter:ur.a.func,onDragOver:ur.a.func,onDragLeave:ur.a.func,onFileDialogCancel:ur.a.func},Ru.defaultProps={preventDropOnDocument:!0,disabled:!1,disablePreview:!1,disableClick:!1,multiple:!0,maxSize:1/0,minSize:0};var Fu=function(e,t){return function(n){return _o(wo.export.file(e,t)).then(function(e){n({type:Xo,data:e.data})}).catch(function(e){n({type:na,error:e})}),n({type:Zo})}},Mu=function(e){return document.location.href=e,{type:"NOTHING"}},Uu=function(e,t){return function(n){return _o(wo.import.upload(t,e)).then(function(e){n({type:ta,total:e.imported})}).catch(function(e){n({type:na,error:e})}),n({type:ea,file:e})}},Bu=function(){return{type:ra}},zu=function(e){return{type:oa,file:e}},Hu=function(){return function(e){_o(wo.import.pluginList()).then(function(t){e({type:aa,importers:t.importers})}).catch(function(t){e({type:na,error:t})})}},Vu=function(e){return function(t){return _o(wo.import.pluginImport(e)).then(function(e){t({type:ta,total:e.imported})}).catch(function(e){t({type:na,error:e})}),t({type:ea})}},Gu=function(e){var t=e.plugin,n=e.doImport,r=t.name,o=t.total,a=function(){n(t)};return nr.a.createElement("div",{className:"plugin-importer"},nr.a.createElement("p",null,nr.a.createElement("strong",null,r)," (",Object(ir.translate)("total = ")+o," )"),nr.a.createElement("button",{onClick:a,className:"button-secondary"},Object(ir.translate)("Import from %s",{args:r})))},qu=Gu,Wu=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}}(),$u=function(e,t){return Redirectioni10n.pluginRoot+"&sub=io&export="+e+"&exporter="+t},Ku=function(e){function t(e){un(this,t);var n=cn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.doImport=function(e){confirm(Object(ir.translate)("Are you sure you want to import from %s?",{args:e.name}))&&n.props.pluginImport(e.id)},n.props.onLoadGroups(),n.props.onLoadImport(),n.setDropzone=n.onSetZone.bind(n),n.handleDrop=n.onDrop.bind(n),n.handleOpen=n.onOpen.bind(n),n.handleInput=n.onInput.bind(n),n.handleCancel=n.onCancel.bind(n),n.handleImport=n.onImport.bind(n),n.handleEnter=n.onEnter.bind(n),n.handleLeave=n.onLeave.bind(n),n.handleView=n.onView.bind(n),n.handleDownload=n.onDownload.bind(n),n.state={group:0,hover:!1,module:"all",format:"json"},n}return pn(t,e),Wu(t,[{key:"onView",value:function(){this.props.onExport(this.state.module,this.state.format)}},{key:"onDownload",value:function(){this.props.onDownloadFile($u(this.state.module,this.state.format))}},{key:"onEnter",value:function(){this.props.io.importingStatus!==zr&&this.setState({hover:!0})}},{key:"onLeave",value:function(){this.setState({hover:!1})}},{key:"onImport",value:function(){this.props.onImport(this.props.io.file,this.state.group)}},{key:"onCancel",value:function(){this.setState({hover:!1}),this.props.onClearFile()}},{key:"onInput",value:function(e){var t=e.target;this.setState(sn({},t.name,t.value)),"module"===t.name&&"everything"===t.value&&this.setState({format:"json"})}},{key:"onSetZone",value:function(e){this.dropzone=e}},{key:"onDrop",value:function(e){var t=this.props.io.importingStatus;e.length>0&&t!==zr&&this.props.onAddFile(e[0]),this.setState({hover:!1,group:this.props.group.rows[0].id})}},{key:"onOpen",value:function(){this.dropzone.open()}},{key:"renderGroupSelect",value:function(){var e=this.props.group.rows;return nr.a.createElement("div",{className:"groups"},Object(ir.translate)("Import to group")," ",nr.a.createElement(ei,{items:Ms(e),name:"group",value:this.state.group,onChange:this.handleInput}))}},{key:"renderInitialDrop",value:function(){return nr.a.createElement("div",null,nr.a.createElement("h3",null,Object(ir.translate)("Import a CSV, .htaccess, or JSON file.")),nr.a.createElement("p",null,Object(ir.translate)("Click 'Add File' or drag and drop here.")),nr.a.createElement("button",{type:"button",className:"button-secondary",onClick:this.handleOpen},Object(ir.translate)("Add File")))}},{key:"renderDropBeforeUpload",value:function(){var e=this.props.io.file,t="application/json"===e.type;return nr.a.createElement("div",null,nr.a.createElement("h3",null,Object(ir.translate)("File selected")),nr.a.createElement("p",null,nr.a.createElement("code",null,e.name)),!t&&this.renderGroupSelect(),nr.a.createElement("button",{className:"button-primary",onClick:this.handleImport},Object(ir.translate)("Upload")),"  ",nr.a.createElement("button",{className:"button-secondary",onClick:this.handleCancel},Object(ir.translate)("Cancel")))}},{key:"renderUploading",value:function(){var e=this.props.io.file;return nr.a.createElement("div",null,nr.a.createElement("h3",null,Object(ir.translate)("Importing")),nr.a.createElement("p",null,nr.a.createElement("code",null,e.name)),nr.a.createElement("div",{className:"is-placeholder"},nr.a.createElement("div",{className:"placeholder-loading"})))}},{key:"renderUploaded",value:function(){var e=this.props.io.lastImport;return nr.a.createElement("div",null,nr.a.createElement("h3",null,Object(ir.translate)("Finished importing")),nr.a.createElement("p",null,Object(ir.translate)("Total redirects imported:")," ",e),0===e&&nr.a.createElement("p",null,Object(ir.translate)("Double-check the file is the correct format!")),nr.a.createElement("button",{className:"button-secondary",onClick:this.handleCancel},Object(ir.translate)("OK")))}},{key:"renderDropzoneContent",value:function(){var e=this.props.io,t=e.importingStatus,n=e.lastImport,r=e.file;return t===zr?this.renderUploading():t===Vr&&!1!==n&&!1===r?this.renderUploaded():!1===r?this.renderInitialDrop():this.renderDropBeforeUpload()}},{key:"renderExport",value:function(e){return nr.a.createElement("div",null,nr.a.createElement("textarea",{className:"module-export",rows:"14",readOnly:!0,value:e}),nr.a.createElement("input",{className:"button-secondary",type:"submit",value:Object(ir.translate)("Close"),onClick:this.handleCancel}))}},{key:"renderExporting",value:function(){return nr.a.createElement("div",{className:"loader-wrapper loader-textarea"},nr.a.createElement("div",{className:"placeholder-loading"}))}},{key:"renderImporters",value:function(e){var t=this;return nr.a.createElement("div",null,nr.a.createElement("h3",null,Object(ir.translate)("Plugin Importers")),nr.a.createElement("p",null,Object(ir.translate)("The following redirect plugins were detected on your site and can be imported from.")),e.map(function(e,n){return nr.a.createElement(qu,{plugin:e,key:n,doImport:t.doImport})}))}},{key:"render",value:function(){var e=this.state.hover,t=this.props.io,n=t.importingStatus,r=t.file,o=t.exportData,a=t.exportStatus,i=t.importers,l=si()({dropzone:!0,"dropzone-dropped":!1!==r,"dropzone-importing":n===zr,"dropzone-hover":e});return nr.a.createElement("div",null,nr.a.createElement("h2",null,Object(ir.translate)("Import")),nr.a.createElement(Lu,{ref:this.setDropzone,onDrop:this.handleDrop,onDragLeave:this.handleLeave,onDragEnter:this.handleEnter,className:l,disableClick:!0,disablePreview:!0,multiple:!1},this.renderDropzoneContent()),nr.a.createElement("p",null,Object(ir.translate)("All imports will be appended to the current database.")),nr.a.createElement("div",{className:"inline-notice notice-warning"},nr.a.createElement("p",null,Object(ir.translate)("{{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).",{components:{code:nr.a.createElement("code",null),strong:nr.a.createElement("strong",null)}}))),nr.a.createElement("h2",null,Object(ir.translate)("Export")),nr.a.createElement("p",null,Object(ir.translate)("Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).")),nr.a.createElement("select",{name:"module",onChange:this.handleInput,value:this.state.module},nr.a.createElement("option",{value:"0"},Object(ir.translate)("Everything")),nr.a.createElement("option",{value:"1"},Object(ir.translate)("WordPress redirects")),nr.a.createElement("option",{value:"2"},Object(ir.translate)("Apache redirects")),nr.a.createElement("option",{value:"3"},Object(ir.translate)("Nginx redirects"))),nr.a.createElement("select",{name:"format",onChange:this.handleInput,value:this.state.format},nr.a.createElement("option",{value:"csv"},Object(ir.translate)("CSV")),nr.a.createElement("option",{value:"apache"},Object(ir.translate)("Apache .htaccess")),nr.a.createElement("option",{value:"nginx"},Object(ir.translate)("Nginx rewrite rules")),nr.a.createElement("option",{value:"json"},Object(ir.translate)("Redirection JSON")))," ",nr.a.createElement("button",{className:"button-primary",onClick:this.handleView},Object(ir.translate)("View"))," ",nr.a.createElement("button",{className:"button-secondary",onClick:this.handleDownload},Object(ir.translate)("Download")),a===zr&&this.renderExporting(),o&&a!==zr&&this.renderExport(o),nr.a.createElement("p",null,Object(ir.translate)("Log files can be exported from the log pages.")),i.length>0&&this.renderImporters(i))}}]),t}(nr.a.Component),Qu=Tr(fn,dn)(Ku),Yu=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}}(),Ju=function(e){function t(e){hn(this,t);var n=mn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={selected:e.selected},n.handleChange=n.onChange.bind(n),n.handleSubmit=n.onSubmit.bind(n),n}return gn(t,e),Yu(t,[{key:"componentWillUpdate",value:function(e){e.selected!==this.state.selected&&this.setState({selected:e.selected})}},{key:"onChange",value:function(e){this.setState({selected:e.target.value})}},{key:"onSubmit",value:function(){this.props.onFilter(this.state.selected)}},{key:"render",value:function(){var e=this.props,t=e.options,n=e.isEnabled;return nr.a.createElement("div",{className:"alignleft actions"},nr.a.createElement(ei,{items:t,value:this.state.selected,name:"filter",onChange:this.handleChange,isEnabled:this.props.isEnabled}),nr.a.createElement("button",{className:"button",onClick:this.handleSubmit,disabled:!n},Object(ir.translate)("Filter")))}}]),t}(nr.a.Component),Xu=Ju,Zu=function(){return[{value:1,text:"WordPress"},{value:2,text:"Apache"},{value:3,text:"Nginx"}]},ec=function(e){var t=Zu().find(function(t){return t.value===parseInt(e,10)});return t?t.text:""},tc=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}}(),nc=function(e){function t(e){bn(this,t);var n=yn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={editing:!1,name:e.item.name,moduleId:e.item.module_id},n.handleSelected=n.onSelected.bind(n),n.handleEdit=n.onEdit.bind(n),n.handleSave=n.onSave.bind(n),n.handleDelete=n.onDelete.bind(n),n.handleDisable=n.onDisable.bind(n),n.handleEnable=n.onEnable.bind(n),n.handleChange=n.onChange.bind(n),n.handleSelect=n.onSelect.bind(n),n}return vn(t,e),tc(t,[{key:"componentWillUpdate",value:function(e){this.props.item.name!==e.item.name&&this.setState({name:e.item.name,moduleId:e.item.module_id})}},{key:"onEdit",value:function(e){e.preventDefault(),this.setState({editing:!this.state.editing})}},{key:"onDelete",value:function(e){e.preventDefault(),this.props.onTableAction("delete",this.props.item.id)}},{key:"onDisable",value:function(e){e.preventDefault(),this.props.onTableAction("disable",this.props.item.id)}},{key:"onEnable",value:function(e){e.preventDefault(),this.props.onTableAction("enable",this.props.item.id)}},{key:"onSelected",value:function(){this.props.onSetSelected([this.props.item.id])}},{key:"onChange",value:function(e){var t=e.target;this.setState({name:t.value})}},{key:"onSave",value:function(e){this.onEdit(e),this.props.onSaveGroup(this.props.item.id,{name:this.state.name,moduleId:this.state.moduleId})}},{key:"onSelect",value:function(e){var t=e.target;this.setState({moduleId:parseInt(t.value,10)})}},{key:"renderLoader",value:function(){return nr.a.createElement("div",{className:"loader-wrapper"},nr.a.createElement("div",{className:"placeholder-loading loading-small",style:{top:"0px"}}))}},{key:"renderActions",value:function(e){var t=this.props.item,n=t.id,r=t.enabled;return nr.a.createElement(_l,{disabled:e},nr.a.createElement("a",{href:"#",onClick:this.handleEdit},Object(ir.translate)("Edit"))," | ",nr.a.createElement("a",{href:"#",onClick:this.handleDelete},Object(ir.translate)("Delete"))," | ",nr.a.createElement("a",{href:Redirectioni10n.pluginRoot+"&filterby=group&filter="+n},Object(ir.translate)("View Redirects"))," | ",r&&nr.a.createElement("a",{href:"#",onClick:this.handleDisable},Object(ir.translate)("Disable")),!r&&nr.a.createElement("a",{href:"#",onClick:this.handleEnable},Object(ir.translate)("Enable")))}},{key:"renderEdit",value:function(){return nr.a.createElement("form",{onSubmit:this.handleSave},nr.a.createElement("table",{className:"edit"},nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",{width:"70"},Object(ir.translate)("Name")),nr.a.createElement("td",null,nr.a.createElement("input",{type:"text",name:"name",value:this.state.name,onChange:this.handleChange}))),nr.a.createElement("tr",null,nr.a.createElement("th",{width:"70"},Object(ir.translate)("Module")),nr.a.createElement("td",null,nr.a.createElement(ei,{name:"module_id",value:this.state.moduleId,onChange:this.handleSelect,items:Zu()}))),nr.a.createElement("tr",null,nr.a.createElement("th",{width:"70"}),nr.a.createElement("td",null,nr.a.createElement("div",{className:"table-actions"},nr.a.createElement("input",{className:"button-primary",type:"submit",name:"save",value:Object(ir.translate)("Save")}),"  ",nr.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(ir.translate)("Cancel"),onClick:this.handleEdit})))))))}},{key:"getName",value:function(e,t){return t?e:nr.a.createElement("strike",null,e)}},{key:"render",value:function(){var e=this.props.item,t=e.name,n=e.redirects,r=e.id,o=e.module_id,a=e.enabled,i=this.props,l=i.selected,s=i.status,u=s===zr,c="STATUS_SAVING"===s,p=!a||u||c;return nr.a.createElement("tr",{className:p?"disabled":""},nr.a.createElement("th",{scope:"row",className:"check-column"},!c&&nr.a.createElement("input",{type:"checkbox",name:"item[]",value:r,disabled:u,checked:l,onClick:this.handleSelected}),c&&nr.a.createElement(Ul,{size:"small"})),nr.a.createElement("td",{className:"column-primary column-name"},!this.state.editing&&this.getName(t,a),this.state.editing?this.renderEdit():this.renderActions(c)),nr.a.createElement("td",{className:"column-redirects"},n),nr.a.createElement("td",{className:"column-module"},ec(o)))}}]),t}(nr.a.Component),rc=Tr(null,En)(nc),oc=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}}(),ac=[{name:"cb",check:!0},{name:"name",title:Object(ir.translate)("Name"),primary:!0},{name:"redirects",title:Object(ir.translate)("Redirects"),sortable:!1},{name:"module",title:Object(ir.translate)("Module"),sortable:!1}],ic=[{id:"delete",name:Object(ir.translate)("Delete")},{id:"enable",name:Object(ir.translate)("Enable")},{id:"disable",name:Object(ir.translate)("Disable")}],lc=function(e){function t(e){wn(this,t);var n=On(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onLoadGroups(),n.state={name:"",moduleId:1},n.handleName=n.onChange.bind(n),n.handleModule=n.onModule.bind(n),n.handleSubmit=n.onSubmit.bind(n),n.handleRender=n.renderRow.bind(n),n}return kn(t,e),oc(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoadGroups()}},{key:"renderRow",value:function(e,t,n){var r=this.props.group.saving,o=n.isLoading?zr:Vr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return nr.a.createElement(rc,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"onChange",value:function(e){this.setState({name:e.target.value})}},{key:"onModule",value:function(e){this.setState({moduleId:e.target.value})}},{key:"onSubmit",value:function(e){e.preventDefault(),this.props.onCreate({id:0,name:this.state.name,moduleId:this.state.moduleId}),this.setState({name:""})}},{key:"getModules",value:function(){return[{value:"",text:Object(ir.translate)("All modules")}].concat(Zu())}},{key:"render",value:function(){var e=this.props.group,t=e.status,n=e.total,r=e.table,o=e.rows,a=e.saving,i=-1!==a.indexOf(0);return nr.a.createElement("div",null,nr.a.createElement(ml,{status:t,table:r,onSearch:this.props.onSearch,ignoreFilter:["module"]}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,status:t,bulk:ic},nr.a.createElement(Xu,{selected:r.filter,options:this.getModules(),onFilter:this.props.onFilter,isEnabled:!0})),nr.a.createElement(ol,{headers:ac,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,status:t}),nr.a.createElement("h2",null,Object(ir.translate)("Add Group")),nr.a.createElement("p",null,Object(ir.translate)("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.")),nr.a.createElement("form",{onSubmit:this.handleSubmit},nr.a.createElement("table",{className:"form-table"},nr.a.createElement("tbody",null,nr.a.createElement("tr",null,nr.a.createElement("th",{style:{width:"50px"}},Object(ir.translate)("Name")),nr.a.createElement("td",null,nr.a.createElement("input",{size:"30",className:"regular-text",type:"text",name:"name",value:this.state.name,onChange:this.handleName,disabled:i}),nr.a.createElement(ei,{name:"id",value:this.state.moduleId,onChange:this.handleModule,items:Zu(),disabled:i})," ",nr.a.createElement("input",{className:"button-primary",type:"submit",name:"add",value:"Add",disabled:i||""===this.state.name})))))))}}]),t}(nr.a.Component),sc=Tr(_n,xn)(lc),uc=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}}(),cc=function(e){function t(e){Cn(this,t);var n=Sn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={editing:!1},n.handleEdit=n.onEdit.bind(n),n.handleDelete=n.onDelete.bind(n),n.handleDisable=n.onDisable.bind(n),n.handleEnable=n.onEnable.bind(n),n.handleCancel=n.onCancel.bind(n),n.handleSelected=n.onSelected.bind(n),n}return jn(t,e),uc(t,[{key:"componentWillUpdate",value:function(e){e.item.id!==this.props.item.id&&this.state.editing&&this.setState({editing:!1})}},{key:"onEdit",value:function(e){e.preventDefault(),this.setState({editing:!0})}},{key:"onCancel",value:function(e){e.preventDefault(),this.setState({editing:!1})}},{key:"onDelete",value:function(e){e.preventDefault(),this.props.onTableAction("delete",this.props.item.id)}},{key:"onDisable",value:function(e){e.preventDefault(),this.props.onTableAction("disable",this.props.item.id)}},{key:"onEnable",value:function(e){e.preventDefault(),this.props.onTableAction("enable",this.props.item.id)}},{key:"onSelected",value:function(){this.props.onSetSelected([this.props.item.id])}},{key:"getMenu",value:function(){var e=this.props.item.enabled,t=[];return e&&t.push([Object(ir.translate)("Edit"),this.handleEdit]),t.push([Object(ir.translate)("Delete"),this.handleDelete]),e?t.push([Object(ir.translate)("Disable"),this.handleDisable]):t.push([Object(ir.translate)("Enable"),this.handleEnable]),t.map(function(e,t){return nr.a.createElement("a",{key:t,href:"#",onClick:e[1]},e[0])}).reduce(function(e,t){return[e," | ",t]})}},{key:"getCode",value:function(){var e=this.props.item,t=e.action_code,n=e.action_type;return"pass"===n?Object(ir.translate)("pass"):"nothing"===n?"-":t}},{key:"getTarget",value:function(){var e=this.props.item,t=e.match_type,n=e.action_data;return"url"===t?n.url:null}},{key:"getUrl",value:function(e){return this.props.item.enabled?e:nr.a.createElement("strike",null,e)}},{key:"getName",value:function(e,t){var n=this.props.item.regex;return t||(n?e:nr.a.createElement("a",{href:e,target:"_blank",rel:"noopener noreferrer"},this.getUrl(e)))}},{key:"renderSource",value:function(e,t,n){var r=this.getName(e,t);return nr.a.createElement("td",{className:"column-primary column-url has-row-actions"},r,nr.a.createElement("br",null),nr.a.createElement("span",{className:"target"},this.getTarget()),nr.a.createElement(_l,{disabled:n},this.getMenu()))}},{key:"render",value:function(){var e=this.props.item,t=e.id,n=e.url,r=e.hits,o=e.last_access,a=e.enabled,i=e.title,l=e.position,s=this.props,u=s.selected,c=s.status,p=c===zr,f="STATUS_SAVING"===c,d=!a||p||f,h=si()({disabled:d});return nr.a.createElement("tr",{className:h},nr.a.createElement("th",{scope:"row",className:"check-column"},!f&&nr.a.createElement("input",{type:"checkbox",name:"item[]",value:t,disabled:p,checked:u,onClick:this.handleSelected}),f&&nr.a.createElement(Ul,{size:"small"})),nr.a.createElement("td",{className:"column-code"},this.getCode()),this.state.editing?nr.a.createElement("td",{className:"column-primary column-url"},nr.a.createElement(su,{item:this.props.item,onCancel:this.handleCancel})):this.renderSource(n,i,f),nr.a.createElement("td",{className:"column-position"},Object(ir.numberFormat)(l)),nr.a.createElement("td",{className:"column-last_count"},Object(ir.numberFormat)(r)),nr.a.createElement("td",{className:"column_last_access"},o))}}]),t}(nr.a.Component),pc=Tr(null,Pn)(cc),fc=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}}(),dc=[{name:"cb",check:!0},{name:"code",title:Object(ir.translate)("Type"),sortable:!1},{name:"url",title:Object(ir.translate)("URL"),primary:!0},{name:"position",title:Object(ir.translate)("Pos")},{name:"last_count",title:Object(ir.translate)("Hits")},{name:"last_access",title:Object(ir.translate)("Last Access")}],hc=[{id:"delete",name:Object(ir.translate)("Delete")},{id:"enable",name:Object(ir.translate)("Enable")},{id:"disable",name:Object(ir.translate)("Disable")},{id:"reset",name:Object(ir.translate)("Reset hits")}],mc=function(e){function t(e){Tn(this,t);var n=Nn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleRender=n.renderRow.bind(n),n.props.onLoadRedirects(),n.props.onLoadGroups(),n}return Dn(t,e),fc(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoadRedirects({page:0,filter:"",filterBy:"",orderby:""})}},{key:"renderRow",value:function(e,t,n){var r=this.props.redirect.saving,o=n.isLoading?zr:Vr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return nr.a.createElement(pc,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"getGroups",value:function(e){return[{value:0,text:Object(ir.translate)("All groups")}].concat(Ms(e))}},{key:"renderNew",value:function(){var e=this.props.redirect.addTop,t=si()({"add-new":!0,edit:!0,addTop:e});return nr.a.createElement("div",null,!e&&nr.a.createElement("h2",null,Object(ir.translate)("Add new redirection")),nr.a.createElement("div",{className:t},nr.a.createElement(su,{item:eu("",0),saveButton:Object(ir.translate)("Add Redirect"),autoFocus:e})))}},{key:"canFilter",value:function(e,t){return e.status===Vr&&t!==zr}},{key:"render",value:function(){var e=this.props.redirect,t=e.status,n=e.total,r=e.table,o=e.rows,a=e.addTop,i=this.props.group,l=t===Vr&&i.status===Vr;return nr.a.createElement("div",{className:"redirects"},a&&this.renderNew(),nr.a.createElement(ml,{status:t,table:r,onSearch:this.props.onSearch,ignoreFilter:["group"]}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,bulk:hc,status:t},nr.a.createElement(Xu,{selected:r.filter?r.filter:"0",options:this.getGroups(i.rows),isEnabled:this.canFilter(i,t),onFilter:this.props.onFilter})),nr.a.createElement(ol,{headers:dc,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),nr.a.createElement(fl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,status:t}),l&&!a&&this.renderNew())}}]),t}(nr.a.Component),gc=Tr(In,An)(mc),bc=function(){return{type:Ca}},yc=function(){return{type:Sa}},vc=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}}(),Ec=function(e){function t(e){Rn(this,t);var n=Ln(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onClick=n.dismiss.bind(n),n}return Fn(t,e),vc(t,[{key:"componentWillUpdate",value:function(e){e.errors.length>0&&0===this.props.errors.length&&window.scrollTo(0,0)}},{key:"dismiss",value:function(){this.props.onClear()}},{key:"getDebug",value:function(e){for(var t=[Redirectioni10n.versions],n=0;n<e.length;n++){var r=e[n].request,o=void 0!==r&&r;t.push(""),t.push("Error: "+this.getErrorDetails(e[n])),o&&(t.push("Action: "+o.action),o.params&&t.push("Params: "+JSON.stringify(o.params)),t.push("Code: "+o.status+" "+o.statusText),t.push("Raw: "+(o.raw?o.raw:"-no data-")))}return t}},{key:"getErrorDetailsTitle",value:function(e){return 0===e.code?e.message:e.data&&e.data.wpdb?nr.a.createElement("span",null,e.message+" ("+e.code+")",": ",nr.a.createElement("code",null,e.data.wpdb)):e.code?e.message+" ("+e.code+")":e.message}},{key:"getErrorDetails",value:function(e){return 0===e.code?e.message:e.data&&e.data.wpdb?e.message+" ("+e.code+"): "+e.data.wpdb:e.code?e.message+" ("+e.code+")":e.message}},{key:"getErrorMessage",value:function(e){var t=this,n=e.map(function(e){return e.action&&"reload"===e.action?-1===document.location.search.indexOf("retry=")?void(document.location.href+="&retry=1"):Object(ir.translate)("The data on this page has expired, please reload."):0===e.code?Object(ir.translate)("WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."):403===e.request.status?Object(ir.translate)("Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"):413===e.request.status?Object(ir.translate)("Your server has rejected the request for being too big. You will need to change it to continue."):"disabled"===e.code||"rest_disabled"===e.code?Object(ir.translate)("Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"):-1!==e.message.indexOf("Unexpected token")?Object(ir.translate)("WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."):e.message?t.getErrorDetailsTitle(e):Object(ir.translate)("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!")});return nr.a.createElement("p",null,Object.keys([{}].concat(n).reduce(function(e,t){return e[t]=e})))}},{key:"renderError",value:function(e){var t=this.getDebug(e),n=si()({notice:!0,"notice-error":!0}),r="mailto:john@redirection.me?subject=Redirection%20Error&body="+encodeURIComponent(t.join("\n")),o="https://github.com/johngodley/redirection/issues/new?title=Redirection%20Error&body="+encodeURIComponent("```\n"+t.join("\n")+"\n```\n\n");return nr.a.createElement("div",{className:n},nr.a.createElement("div",{className:"closer",onClick:this.onClick},"✖"),nr.a.createElement("h2",null,Object(ir.translate)("Something went wrong 🙁")),this.getErrorMessage(e),nr.a.createElement("h3",null,Object(ir.translate)("It didn't work when I tried again")),nr.a.createElement("p",null,Object(ir.translate)("See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.",{components:{link:nr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"})}})),nr.a.createElement("p",null,Object(ir.translate)("If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.")),nr.a.createElement("p",null,Object(ir.translate)("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.",{components:{strong:nr.a.createElement("strong",null)}})),nr.a.createElement("p",null,nr.a.createElement("a",{href:o,className:"button-primary"},Object(ir.translate)("Create Issue"))," ",nr.a.createElement("a",{href:r,className:"button-secondary"},Object(ir.translate)("Email"))),nr.a.createElement("h3",null,Object(ir.translate)("Important details")),nr.a.createElement("p",null,Object(ir.translate)("Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.",{components:{strong:nr.a.createElement("strong",null)}})),nr.a.createElement("p",null,nr.a.createElement("textarea",{readOnly:!0,rows:t.length+3,cols:"120",value:t.join("\n"),spellCheck:!1})))}},{key:"render",value:function(){var e=this.props.errors;return 0===e.length?null:this.renderError(e)}}]),t}(nr.a.Component),wc=Tr(Mn,Un)(Ec),Oc=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}}(),kc=function(e){function t(e){Bn(this,t);var n=zn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleClick=n.onClick.bind(n),n.handleShrink=n.onShrink.bind(n),n.state={shrunk:!1,width:"auto"},n}return Hn(t,e),Oc(t,[{key:"onClick",value:function(){this.state.shrunk?this.setState({shrunk:!1}):this.props.onClear()}},{key:"componentWillUpdate",value:function(e){this.props.notices!==e.notices&&(this.stopTimer(),this.setState({shrunk:!1}),this.startTimer())}},{key:"componentWillUnmount",value:function(){this.stopTimer()}},{key:"stopTimer",value:function(){clearTimeout(this.timer)}},{key:"startTimer",value:function(){this.timer=setTimeout(this.handleShrink,5e3)}},{key:"onShrink",value:function(){this.setState({shrunk:!0})}},{key:"getNotice",value:function(e){return e.length>1?e[e.length-1]+" ("+e.length+")":e[0]}},{key:"renderNotice",value:function(e){var t="notice notice-info redirection-notice"+(this.state.shrunk?" notice-shrunk":"");return nr.a.createElement("div",{className:t,onClick:this.handleClick},nr.a.createElement("div",{className:"closer"},"✔"),nr.a.createElement("p",null,this.state.shrunk?nr.a.createElement("span",{title:Object(ir.translate)("View notice")},"🔔"):this.getNotice(e)))}},{key:"render",value:function(){var e=this.props.notices;return 0===e.length?null:this.renderNotice(e)}}]),t}(nr.a.Component),_c=Tr(Vn,Gn)(kc),xc=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}}(),Cc=function(e){function t(e){return qn(this,t),Wn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))}return $n(t,e),xc(t,[{key:"getMessage",value:function(e){return e>1?Object(ir.translate)("Saving...")+" ("+e+")":Object(ir.translate)("Saving...")}},{key:"renderProgress",value:function(e){return nr.a.createElement("div",{className:"notice notice-progress redirection-notice"},nr.a.createElement(Ul,null),nr.a.createElement("p",null,this.getMessage(e)))}},{key:"render",value:function(){var e=this.props.inProgress;return 0===e?null:this.renderProgress(e)}}]),t}(nr.a.Component),Sc=Tr(Kn,null)(Cc),jc=function(e){var t=e.item,n=e.isCurrent,r=e.onClick,o=Redirectioni10n.pluginRoot+(""===t.value?"":"&sub="+t.value),a=function(e){e.preventDefault(),r(t.value,o)};return nr.a.createElement("li",null,nr.a.createElement("a",{className:n?"current":"",href:o,onClick:a},t.name))},Pc=jc,Tc=[{name:Object(ir.translate)("Redirects"),value:""},{name:Object(ir.translate)("Groups"),value:"groups"},{name:Object(ir.translate)("Log"),value:"log"},{name:Object(ir.translate)("404s"),value:"404s"},{name:Object(ir.translate)("Import/Export"),value:"io"},{name:Object(ir.translate)("Options"),value:"options"},{name:Object(ir.translate)("Support"),value:"support"}],Nc=function(e){var t=e.onChangePage,n=B();return nr.a.createElement("div",{className:"subsubsub-container"},nr.a.createElement("ul",{className:"subsubsub"},Tc.map(function(e,r){return nr.a.createElement(Pc,{key:r,item:e,isCurrent:n===e.value||"redirect"===n&&""===e.value,onClick:t})}).reduce(function(e,t){return[e," | ",t]})))},Dc=Nc,Ic=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}}(),Ac={redirect:Object(ir.translate)("Redirections"),groups:Object(ir.translate)("Groups"),io:Object(ir.translate)("Import/Export"),log:Object(ir.translate)("Logs"),"404s":Object(ir.translate)("404 errors"),options:Object(ir.translate)("Options"),support:Object(ir.translate)("Support")},Rc=function(e){function t(e){Qn(this,t);var n=Yn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={page:B(),clicked:0,stack:!1,error:"3.0.1"!==Redirectioni10n.version},n.handlePageChange=n.onChangePage.bind(n),n}return Jn(t,e),Ic(t,[{key:"componentDidCatch",value:function(e){this.setState({error:!0,stack:e})}},{key:"onChangePage",value:function(e,t){""===e&&(e="redirect"),history.pushState({},null,t),this.setState({page:e,clicked:this.state.clicked+1}),this.props.onClear()}},{key:"getContent",value:function(e){var t=this.state.clicked;switch(e){case"support":return nr.a.createElement(Ri,null);case"404s":return nr.a.createElement(ju,{clicked:t});case"log":return nr.a.createElement(os,{clicked:t});case"io":return nr.a.createElement(Qu,null);case"groups":return nr.a.createElement(sc,{clicked:t});case"options":return nr.a.createElement(Oi,null)}return nr.a.createElement(gc,{clicked:t})}},{key:"renderError",value:function(){var e=[Redirectioni10n.versions,"Buster: 3.0.1 === "+Redirectioni10n.version,this.state.stack];return"3.0.1"!==Redirectioni10n.version?nr.a.createElement("div",{className:"notice notice-error"},nr.a.createElement("h2",null,Object(ir.translate)("Cached Redirection detected")),nr.a.createElement("p",null,Object(ir.translate)("Please clear your browser cache and reload this page.")),nr.a.createElement("p",null,nr.a.createElement("textarea",{readOnly:!0,rows:e.length+3,cols:"120",value:e.join("\n"),spellCheck:!1}))):nr.a.createElement("div",{className:"notice notice-error"},nr.a.createElement("h2",null,Object(ir.translate)("Something went wrong 🙁")),nr.a.createElement("p",null,Object(ir.translate)("Redirection is not working. Try clearing your browser cache and reloading this page."),"  ",Object(ir.translate)("If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.")),nr.a.createElement("p",null,Object(ir.translate)("If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.",{components:{link:nr.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"})}})),nr.a.createElement("p",null,Object(ir.translate)("Please mention {{code}}%s{{/code}}, and explain what you were doing at the time",{components:{code:nr.a.createElement("code",null)},args:this.state.page})),nr.a.createElement("p",null,nr.a.createElement("textarea",{readOnly:!0,rows:e.length+3,cols:"120",value:e.join("\n"),spellCheck:!1})))}},{key:"render",value:function(){var e=Ac[this.state.page];return this.state.error?this.renderError():nr.a.createElement("div",{className:"wrap redirection"},nr.a.createElement("h1",{className:"wp-heading-inline"},e),"redirect"===this.state.page&&nr.a.createElement("a",{href:"#",onClick:this.props.onAdd,className:"page-title-action"},"Add New"),nr.a.createElement(Dc,{onChangePage:this.handlePageChange}),nr.a.createElement(wc,null),this.getContent(this.state.page),nr.a.createElement(Sc,null),nr.a.createElement(_c,null))}}]),t}(nr.a.Component),Lc=Tr(null,Xn)(Rc),Fc=function(){return nr.a.createElement(fr,{store:Z(se())},nr.a.createElement(Lc,null))},Mc=Fc,Uc=function(e,t){or.a.render(nr.a.createElement(ar.AppContainer,null,nr.a.createElement(e,null)),document.getElementById(t))};document.querySelector("#react-ui")&&function(e){lr.a.setLocale({"":{localeSlug:Redirectioni10n.localeSlug}}),lr.a.addTranslations(Redirectioni10n.locale),Uc(Mc,e)}("react-ui"),window.redirection=Redirectioni10n.version},function(e,t){function n(e){function t(e,n,r){e&&e.then?e.then(function(e){t(e,n,r)}).catch(function(e){t(e,r,r)}):n(e)}function r(e){u=function(t,n){try{e(t,n)}catch(e){n(e)}},p(),p=void 0}function o(e){r(function(t,n){n(e)})}function a(e){r(function(t){t(e)})}function i(e,t){var n=p;p=function(){n(),u(e,t)}}function l(e){!u&&t(e,a,o)}function s(e){!u&&t(e,o,o)}var u,c=function(){},p=c,f={then:function(e){var t=u||i;return n(function(n,r){t(function(t){n(e(t))},r)})},catch:function(e){var t=u||i;return n(function(n,r){t(n,function(t){r(e(t))})})},resolve:l,reject:s};try{e&&e(l,s)}catch(e){s(e)}return f}n.resolve=function(e){return n(function(t){t(e)})},n.reject=function(e){return n(function(t,n){n(e)})},n.race=function(e){return e=e||[],n(function(t,n){var r=e.length;if(!r)return t();for(var o=0;o<r;++o){var a=e[o];a&&a.then&&a.then(t).catch(n)}})},n.all=function(e){return e=e||[],n(function(t,n){function r(){--a<=0&&t(e)}var o=e.length,a=o;if(!o)return t();for(var i=0;i<o;++i)!function(t,o){t&&t.then?t.then(function(t){e[o]=t,r()}).catch(n):r()}(e[i],i)})},void 0!==e&&e.exports&&(e.exports=n)},function(e,t){!function(e){"use strict";function t(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function n(e){return"string"!=typeof e&&(e=String(e)),e}function r(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return b.iterable&&(t[Symbol.iterator]=function(){return t}),t}function o(e){this.map={},e instanceof o?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function a(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function i(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function l(e){var t=new FileReader,n=i(t);return t.readAsArrayBuffer(e),n}function s(e){var t=new FileReader,n=i(t);return t.readAsText(e),n}function u(e){for(var t=new Uint8Array(e),n=new Array(t.length),r=0;r<t.length;r++)n[r]=String.fromCharCode(t[r]);return n.join("")}function c(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function p(){return this.bodyUsed=!1,this._initBody=function(e){if(this._bodyInit=e,e)if("string"==typeof e)this._bodyText=e;else if(b.blob&&Blob.prototype.isPrototypeOf(e))this._bodyBlob=e;else if(b.formData&&FormData.prototype.isPrototypeOf(e))this._bodyFormData=e;else if(b.searchParams&&URLSearchParams.prototype.isPrototypeOf(e))this._bodyText=e.toString();else if(b.arrayBuffer&&b.blob&&v(e))this._bodyArrayBuffer=c(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!b.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(e)&&!E(e))throw new Error("unsupported BodyInit type");this._bodyArrayBuffer=c(e)}else this._bodyText="";this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):b.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},b.blob&&(this.blob=function(){var e=a(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?a(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(l)}),this.text=function(){var e=a(this);if(e)return e;if(this._bodyBlob)return s(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(u(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},b.formData&&(this.formData=function(){return this.text().then(h)}),this.json=function(){return this.text().then(JSON.parse)},this}function f(e){var t=e.toUpperCase();return w.indexOf(t)>-1?t:e}function d(e,t){t=t||{};var n=t.body;if(e instanceof d){if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new o(e.headers)),this.method=e.method,this.mode=e.mode,n||null==e._bodyInit||(n=e._bodyInit,e.bodyUsed=!0)}else this.url=String(e);if(this.credentials=t.credentials||this.credentials||"omit",!t.headers&&this.headers||(this.headers=new o(t.headers)),this.method=f(t.method||this.method||"GET"),this.mode=t.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(n)}function h(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var n=e.split("="),r=n.shift().replace(/\+/g," "),o=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(r),decodeURIComponent(o))}}),t}function m(e){var t=new o;return e.split(/\r?\n/).forEach(function(e){var n=e.split(":"),r=n.shift().trim();if(r){var o=n.join(":").trim();t.append(r,o)}}),t}function g(e,t){t||(t={}),this.type="default",this.status="status"in t?t.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new o(t.headers),this.url=t.url||"",this._initBody(e)}if(!e.fetch){var b={searchParams:"URLSearchParams"in e,iterable:"Symbol"in e&&"iterator"in Symbol,blob:"FileReader"in e&&"Blob"in e&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in e,arrayBuffer:"ArrayBuffer"in e};if(b.arrayBuffer)var y=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],v=function(e){return e&&DataView.prototype.isPrototypeOf(e)},E=ArrayBuffer.isView||function(e){return e&&y.indexOf(Object.prototype.toString.call(e))>-1};o.prototype.append=function(e,r){e=t(e),r=n(r);var o=this.map[e];this.map[e]=o?o+","+r:r},o.prototype.delete=function(e){delete this.map[t(e)]},o.prototype.get=function(e){return e=t(e),this.has(e)?this.map[e]:null},o.prototype.has=function(e){return this.map.hasOwnProperty(t(e))},o.prototype.set=function(e,r){this.map[t(e)]=n(r)},o.prototype.forEach=function(e,t){for(var n in this.map)this.map.hasOwnProperty(n)&&e.call(t,this.map[n],n,this)},o.prototype.keys=function(){var e=[];return this.forEach(function(t,n){e.push(n)}),r(e)},o.prototype.values=function(){var e=[];return this.forEach(function(t){e.push(t)}),r(e)},o.prototype.entries=function(){var e=[];return this.forEach(function(t,n){e.push([n,t])}),r(e)},b.iterable&&(o.prototype[Symbol.iterator]=o.prototype.entries);var w=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];d.prototype.clone=function(){return new d(this,{body:this._bodyInit})},p.call(d.prototype),p.call(g.prototype),g.prototype.clone=function(){return new g(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new o(this.headers),url:this.url})},g.error=function(){var e=new g(null,{status:0,statusText:""});return e.type="error",e};var O=[301,302,303,307,308];g.redirect=function(e,t){if(-1===O.indexOf(t))throw new RangeError("Invalid status code");return new g(null,{status:t,headers:{location:e}})},e.Headers=o,e.Request=d,e.Response=g,e.fetch=function(e,t){return new Promise(function(n,r){var o=new d(e,t),a=new XMLHttpRequest;a.onload=function(){var e={status:a.status,statusText:a.statusText,headers:m(a.getAllResponseHeaders()||"")};e.url="responseURL"in a?a.responseURL:e.headers.get("X-Request-URL");var t="response"in a?a.response:a.responseText;n(new g(t,e))},a.onerror=function(){r(new TypeError("Network request failed"))},a.ontimeout=function(){r(new TypeError("Network request failed"))},a.open(o.method,o.url,!0),"include"===o.credentials&&(a.withCredentials=!0),"responseType"in a&&b.blob&&(a.responseType="blob"),o.headers.forEach(function(e,t){a.setRequestHeader(t,e)}),a.send(void 0===o._bodyInit?null:o._bodyInit)})},e.fetch.polyfill=!0}}("undefined"!=typeof self?self:this)},function(e,t,n){"use strict";function r(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);throw t=Error(n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."),t.name="Invariant Violation",t.framesToPop=1,t}function o(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||j}function a(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||j}function i(){}function l(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||j}function s(e,t,n){var r,o={},a=null,i=null;if(null!=t)for(r in void 0!==t.ref&&(i=t.ref),void 0!==t.key&&(a=""+t.key),t)D.call(t,r)&&!I.hasOwnProperty(r)&&(o[r]=t[r]);var l=arguments.length-2;if(1===l)o.children=n;else if(1<l){for(var s=Array(l),u=0;u<l;u++)s[u]=arguments[u+2];o.children=s}if(e&&e.defaultProps)for(r in l=e.defaultProps)void 0===o[r]&&(o[r]=l[r]);return{$$typeof:O,type:e,key:a,ref:i,props:o,_owner:N.current}}function u(e){return"object"==typeof e&&null!==e&&e.$$typeof===O}function c(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,function(e){return t[e]})}function p(e,t,n,r){if(R.length){var o=R.pop();return o.result=e,o.keyPrefix=t,o.func=n,o.context=r,o.count=0,o}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function f(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>R.length&&R.push(e)}function d(e,t,n,o){var a=typeof e;"undefined"!==a&&"boolean"!==a||(e=null);var i=!1;if(null===e)i=!0;else switch(a){case"string":case"number":i=!0;break;case"object":switch(e.$$typeof){case O:case k:case _:case x:i=!0}}if(i)return n(o,e,""===t?"."+h(e,0):t),1;if(i=0,t=""===t?".":t+":",Array.isArray(e))for(var l=0;l<e.length;l++){a=e[l];var s=t+h(a,l);i+=d(a,s,n,o)}else if(null===e||void 0===e?s=null:(s=S&&e[S]||e["@@iterator"],s="function"==typeof s?s:null),"function"==typeof s)for(e=s.call(e),l=0;!(a=e.next()).done;)a=a.value,s=t+h(a,l++),i+=d(a,s,n,o);else"object"===a&&(n=""+e,r("31","[object Object]"===n?"object with keys {"+Object.keys(e).join(", ")+"}":n,""));return i}function h(e,t){return"object"==typeof e&&null!==e&&null!=e.key?c(e.key):t.toString(36)}function m(e,t){e.func.call(e.context,t,e.count++)}function g(e,t,n){var r=e.result,o=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?b(e,r,n,E.thatReturnsArgument):null!=e&&(u(e)&&(t=o+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(A,"$&/")+"/")+n,e={$$typeof:O,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}),r.push(e))}function b(e,t,n,r,o){var a="";null!=n&&(a=(""+n).replace(A,"$&/")+"/"),t=p(t,a,r,o),null==e||d(e,"",g,t),f(t)}/** @license React v16.2.0
1
+ /*! Redirection v3.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=15)}([function(e,t,n){"use strict";e.exports=n(19)},function(e,t,n){var r=n(35),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(44)()},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=f(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.");f=e,l({type:h.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[d.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 f=e,m=t,g=[],b=g,y=!1;return l({type:h.INIT}),c={dispatch:l,subscribe:i,getState:a,replaceReducer:s},c[d.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:h.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 "+h.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),m({},a,{dispatch:i})}}}Object.defineProperty(t,"__esModule",{value:!0});var p=n(6),f=n(49),d=n.n(f),h={INIT:"@@redux/INIT"},m=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&&R.call(n)==L}var u=n(48),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,k="[object Null]",_="[object Undefined]",x=h?h.toStringTag:void 0,C=a,S=i,j=S(Object.getPrototypeOf,Object),P=j,T=l,N="[object Object]",D=Function.prototype,I=Object.prototype,R=D.toString,A=I.hasOwnProperty,L=R.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(54),t.encode=t.stringify=n(55)},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){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},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(61),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},k=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?k.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 _="//"===l.substr(0,2);!_||d&&w[d]||(l=l.substr(2),this.slashes=!0)}if(!w[d]&&(_||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,D=N.length;C<D;C++){var I=N[C];if(I&&!I.match(y)){for(var R="",A=0,L=I.length;A<L;A++)I.charCodeAt(A)>127?R+="x":R+=I[A];if(!R.match(y)){var F=N.slice(0,C),M=N.slice(C+1),U=I.match(v);U&&(F.push(U[1]),M.unshift(U[2])),M.length&&(l="/"+M.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:"",z=this.hostname||"";this.host=z+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,D=m.length;C<D;C++){var H=m[C];if(-1!==l.indexOf(H)){var V=encodeURIComponent(H);V===H&&(V=escape(H)),l=l.split(H).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=k.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=k.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,k=n.pathname&&n.pathname.split("/")||[],h=e.pathname&&e.pathname.split("/")||[],_=n.protocol&&!O[n.protocol];if(_&&(n.hostname="",n.port=null,n.host&&(""===k[0]?k[0]=n.host:k.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]||""===k[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,k=h;else if(h.length)k||(k=[]),k.pop(),k=k.concat(h),n.search=e.search,n.query=e.query;else if(!u.isNullOrUndefined(e.search)){if(_){n.hostname=n.host=k.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(!k.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var C=k.slice(-1)[0],S=(n.host||e.host||k.length>1)&&("."===C||".."===C)||""===C,j=0,P=k.length;P>=0;P--)C=k[P],"."===C?k.splice(P,1):".."===C?(k.splice(P,1),j++):j&&(k.splice(P,1),j--);if(!v&&!E)for(;j--;j)k.unshift("..");!v||""===k[0]||k[0]&&"/"===k[0].charAt(0)||k.unshift(""),S&&"/"!==k.join("/").substr(-1)&&k.push("");var T=""===k[0]||k[0]&&"/"===k[0].charAt(0);if(_){n.hostname=n.host=T?"":k.length?k.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&&k.length,v&&!T&&k.unshift(""),k.length?n.pathname=k.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(16)},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=vr,e=vr},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!==vr&&(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"]),k=v+"Subscription",_=kr++,x=(t={},t[v]=dr,t[k]=fr,t),C=(n={},n[k]=fr,n);return function(t){yr()("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=Or({},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=_,o.state={},o.renderCount=0,o.store=e[v]||t[v],o.propsMode=Boolean(e[v]),o.setWrappedInstance=o.setWrappedInstance.bind(o),yr()(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[k]=t||this.context[k],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 yr()(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)[k];this.subscription=new wr(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(_r)):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=Or({},e);return w&&(t.ref=this.setWrappedInstance),m&&(t[m]=this.renderCount++),this.propsMode&&this.subscription&&(t[k]=this.subscription),t},a.prototype.render=function(){var e=this.selector;if(e.shouldComponentUpdate=!1,e.error)throw e.error;return Object(rr.createElement)(t,this.addExtraProps(e.props))},a}(rr.Component);return i.WrappedComponent=t,i.displayName=r,i.childContextTypes=C,i.contextTypes=x,i.propTypes=x,gr()(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(!xr.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(Cr.bindActionCreators)(e,t)}):void 0}function k(e){return"function"==typeof e?v(e,"mapStateToProps"):void 0}function _(e){return e?void 0:b(function(){return{}})}function x(e,t,n){return Pr({},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 D(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 I(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 R(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 Lr:return Wr({},e,{loadStatus:Vr});case Fr:return Wr({},e,{loadStatus:qr,values:t.values,groups:t.groups,postTypes:t.postTypes,installed:t.installed,canDelete:t.canDelete});case Mr:return Wr({},e,{loadStatus:Gr,error:t.error});case Br:return Wr({},e,{saveStatus:Vr});case zr:return Wr({},e,{saveStatus:qr,values:t.values,groups:t.groups,installed:t.installed});case Hr:return Wr({},e,{saveStatus:Gr,error:t.error});case Ur:return Wr({},e,{pluginStatus:t.pluginStatus})}return e}function F(e,t){history.pushState({},null,U(e,t))}function M(e){return no.parse(e?e.slice(1):document.location.search.slice(1))}function U(e,t,n){var r=M(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,"?"+no.stringify(r)}function B(e){var t=M(e);return-1!==oo.indexOf(t.sub)?t.sub:"redirect"}function z(){return Redirectioni10n.pluginRoot+"&sub=rss&module=1&token="+Redirectioni10n.token}function H(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 Jr:return qo({},e,{table:ho(e.table,e.rows,t.onoff)});case Yr:return qo({},e,{table:fo(e.table,t.items)});case Xr:return qo({},e,{table:po(zo(e,t)),saving:Vo(e,t),rows:Mo(e,t)});case Zr:return qo({},e,{rows:Bo(e,t),total:Ho(e,t),saving:Go(e,t)});case $r:return qo({},e,{table:zo(e,t),status:Vr,saving:[],logType:t.logType,requestCount:e.requestCount+1});case Qr:return qo({},e,{status:Gr,saving:[]});case Kr:return qo({},e,{rows:Bo(e,t),status:qr,total:Ho(e,t),table:po(e.table)});case eo:return qo({},e,{saving:Go(e,t),rows:Uo(e,t)})}return e}function q(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case Yo:return ea({},e,{table:ho(e.table,e.rows,t.onoff)});case Qo:return ea({},e,{table:fo(e.table,t.items)});case Jo:return ea({},e,{table:po(zo(e,t)),saving:Vo(e,t),rows:Mo(e,t)});case Xo:return ea({},e,{rows:Bo(e,t),total:Ho(e,t),saving:Go(e,t)});case Wo:return ea({},e,{table:zo(e,t),status:Vr,saving:[],logType:t.logType,requestCount:e.requestCount+1});case Ko:return ea({},e,{status:Gr,saving:[]});case $o:return ea({},e,{rows:Bo(e,t),status:qr,total:Ho(e,t),table:po(e.table)});case Zo:return ea({},e,{saving:Go(e,t),rows:Uo(e,t)})}return e}function W(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case na:return ua({},e,{exportStatus:Vr});case ta:return ua({},e,{exportStatus:qr,exportData:t.data});case la:return ua({},e,{file:t.file});case ia:return ua({},e,{file:!1,lastImport:!1,exportData:!1});case aa:return ua({},e,{importingStatus:Gr,exportStatus:Gr,lastImport:!1,file:!1,exportData:!1});case ra:return ua({},e,{importingStatus:Vr,lastImport:!1,file:!!t.file&&t.file});case oa:return ua({},e,{lastImport:t.total,importingStatus:qr,file:!1});case sa:return ua({},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 ca:return ya({},e,{table:zo(e,t),status:Vr,saving:[]});case pa:return ya({},e,{rows:Bo(e,t),status:qr,total:Ho(e,t),table:po(e.table)});case ma:return ya({},e,{table:po(zo(e,t)),saving:Vo(e,t),rows:Mo(e,t)});case ba:return ya({},e,{rows:Bo(e,t),total:Ho(e,t),saving:Go(e,t)});case ha:return ya({},e,{table:ho(e.table,e.rows,t.onoff)});case da:return ya({},e,{table:fo(e.table,t.items)});case fa:return ya({},e,{status:Gr,saving:[]});case ga:return ya({},e,{saving:Go(e,t),rows:Uo(e,t)})}return e}function K(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case Sa:return ja({},e,{addTop:t.onoff});case va:return ja({},e,{table:zo(e,t),status:Vr,saving:[]});case Ea:return ja({},e,{rows:Bo(e,t),status:qr,total:Ho(e,t),table:po(e.table)});case _a:return ja({},e,{table:po(zo(e,t)),saving:Vo(e,t),rows:Mo(e,t)});case Ca:return ja({},e,{rows:Bo(e,t),total:Ho(e,t),saving:Go(e,t)});case ka:return ja({},e,{table:ho(e.table,e.rows,t.onoff)});case Oa:return ja({},e,{table:fo(e.table,t.items)});case wa:return ja({},e,{status:Gr,saving:[]});case xa:return ja({},e,{saving:Go(e,t),rows:Uo(e,t)})}return e}function Q(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];switch(t.type){case aa:case fa:case xa:case ga:case Qr:case eo:case Mr:case Hr:case Zo:case Ko:case wa:var n=Da(e.errors,t.error);return Na({},e,{errors:n,inProgress:Ra(e)});case Xr:case _a:case Br:case Jo:case ma:return Na({},e,{inProgress:e.inProgress+1});case Zr:case Ca:case zr:case ba:case Xo:return Na({},e,{notices:Ia(e.notices,Aa[t.type]),inProgress:Ra(e)});case Ta:return Na({},e,{notices:[]});case Pa:return Na({},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 Ba({},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 La:return Ba({},e,{status:Vr});case Fa:return Ba({},e,{status:qr,maps:J(e.maps,t.map,"ip")});case Ma:return Ba({},e,{status:qr,agents:J(e.agents,t.agent,"agent")});case Ua:return Ba({},e,{status:Gr,error:t.error})}return e}function Z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=Object(Cr.createStore)(Ha,e,qa(Cr.applyMiddleware.apply(void 0,Wa)));return t}function ee(){return Redirectioni10n&&Redirectioni10n.preload&&Redirectioni10n.preload.pluginStatus?Redirectioni10n.preload.pluginStatus:[]}function te(){var e=ee();return{loadStatus:Vr,saveStatus:!1,error:!1,installed:"",settings:{},postTypes:[],pluginStatus:e,canDelete:!1}}function ne(){return{rows:[],saving:[],logType:to,total:0,status:Vr,table:so(["ip","url"],["ip"],"date",["log"]),requestCount:0}}function re(){return{rows:[],saving:[],logType:to,total:0,status:Vr,table:so(["ip","url"],["ip"],"date",["404s"]),requestCount:0}}function oe(){return{status:Vr,file:!1,lastImport:!1,exportData:!1,importingStatus:!1,exportStatus:!1,importers:[]}}function ae(){return{rows:[],saving:[],total:0,status:Vr,table:so(["name"],["name","module"],"name",["groups"])}}function ie(){return{rows:[],saving:[],total:0,addTop:!1,status:Vr,table:so(["url","position","last_count","id","last_access"],["group"],"id",[""])}}function le(){return{errors:[],notices:[],inProgress:0,saving:[]}}function se(){return{status:Vr,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(Ka(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 ke(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _e(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($a())},onDeletePlugin:function(){e(Qa())}}}function Te(e){var t=e.settings;return{loadStatus:t.loadStatus,values:t.values,canDelete:t.canDelete}}function Ne(e){return{onSubscribe:function(){e(Ka({newsletter:!0}))}}}function De(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ie(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 Re(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(Ya())},onFix:function(){e(Ja())}}}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 Me(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 Ue(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($a())}}}function ze(e){return{values:e.settings.values}}function He(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(Gl(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(ql(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(Ul("ip",t))},onSetSelected:function(t){e(Bl(t))},onDelete:function(t){e(Il("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(Al(t))},onDeleteAll:function(t,n){e(Dl(t,n))},onSearch:function(t,n){e(Ml(t,n))},onChangePage:function(t){e(Fl(t))},onTableAction:function(t){e(Il(t))},onSetAllSelected:function(t){e(zl(t))},onSetOrderBy:function(t,n){e(Ll(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 kt(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 _t(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 Dt(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 It(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 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,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ft(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Mt(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 Bt(e){return{group:e.group,addTop:e.redirect.addTop}}function zt(e){return{onSave:function(t,n){e(Ws(t,n))},onCreate:function(t){e(qs(t))},onClose:function(t){t.preventDefault(),e(tu(!1))}}}function Ht(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vt(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 Gt(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 qt(e){return{onShowIP:function(t){e(Es("ip",t))},onSetSelected:function(t){e(ws(t))},onDelete:function(t){e(hs("delete",t))},onDeleteFilter:function(t){e(fs("url-exact",t))}}}function Wt(e){return{infoStatus:e.info.status}}function $t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kt(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 Yt(e){return{error:e.error}}function Jt(e){return{onLoad:function(t){e(gs(t))},onLoadGroups:function(){e(wu())},onDeleteAll:function(t,n){e(ds(t,n))},onSearch:function(t,n){e(vs(t,n))},onChangePage:function(t){e(ys(t))},onTableAction:function(t){e(hs(t,null))},onSetAllSelected:function(t){e(Os(t))},onSetOrderBy:function(t,n){e(bs(t,n))}}}function Xt(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 Zt(e,t){return"application/x-moz-file"===e.type||Ru()(e,t)}function en(e,t,n){return e.size<=t&&e.size>=n}function tn(e,t){return e.every(function(e){return Zt(e,t)})}function nn(e){e.preventDefault()}function rn(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 on(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 an(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(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 sn(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 un(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function cn(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 fn(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 dn(e){return{group:e.group,io:e.io}}function hn(e){return{onLoadGroups:function(){e(wu())},onImport:function(t,n){e(Vu(t,n))},onAddFile:function(t){e(qu(t))},onClearFile:function(){e(Gu())},onExport:function(t,n){e(zu(t,n))},onDownloadFile:function(t){e(Hu(t))},onLoadImport:function(){e(Wu())},pluginImport:function(t){e($u(t))}}}function mn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gn(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 bn(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,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 En(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 wn(e){return{onSetSelected:function(t){e(Cu(t))},onSaveGroup:function(t,n){e(vu(t,n))},onTableAction:function(t,n){e(Eu(t,n))}}}function On(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 _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 xn(e){return{group:e.group}}function Cn(e){return{onLoadGroups:function(){e(wu({page:0,filter:"",filterBy:"",orderby:""}))},onSearch:function(t){e(_u(t))},onChangePage:function(t){e(ku(t))},onAction:function(t){e(Eu(t))},onSetAllSelected:function(t){e(Su(t))},onSetOrderBy:function(t,n){e(Ou(t,n))},onFilter:function(t){e(xu("module",t))},onCreate:function(t){e(yu(t))}}}function Sn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jn(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 Pn(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 Tn(e){return{onSetSelected:function(t){e(Zs(t))},onTableAction:function(t,n){e($s(t,n))}}}function Nn(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 In(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 Rn(e){return{redirect:e.redirect,group:e.group}}function An(e){return{onLoadGroups:function(){e(wu())},onLoadRedirects:function(t){e(Ks(t))},onSearch:function(t){e(Js(t))},onChangePage:function(t){e(Ys(t))},onAction:function(t){e($s(t))},onSetAllSelected:function(t){e(eu(t))},onSetOrderBy:function(t,n){e(Qs(t,n))},onFilter:function(t){e(Xs("group",t))}}}function Ln(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fn(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 Un(e){return{errors:e.message.errors}}function Bn(e){return{onClear:function(){e(wc())}}}function zn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Hn(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 Vn(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 Gn(e){return{notices:e.message.notices}}function qn(e){return{onClear:function(){e(Oc())}}}function Wn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $n(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 Kn(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{inProgress:e.message.inProgress}}function Yn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Jn(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 Xn(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 Zn(e){return{onClear:function(){e(wc())},onAdd:function(){e(tu(!0))}}}function er(e){return{errors:e.message.errors}}Object.defineProperty(t,"__esModule",{value:!0});var tr=n(17),nr=n.n(tr);n(18);!window.Promise&&(window.Promise=nr.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 rr=n(0),or=n.n(rr),ar=n(20),ir=n.n(ar),lr=n(30),sr=n(1),ur=n.n(sr),cr=n(2),pr=n.n(cr),fr=pr.a.shape({trySubscribe:pr.a.func.isRequired,tryUnsubscribe:pr.a.func.isRequired,notifyNestedSubs:pr.a.func.isRequired,isSubscribed:pr.a.func.isRequired}),dr=pr.a.shape({subscribe:pr.a.func.isRequired,dispatch:pr.a.func.isRequired,getState:pr.a.func.isRequired}),hr=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 rr.Children.only(this.props.children)},n}(rr.Component);return l.propTypes={store:dr.isRequired,children:pr.a.element.isRequired},l.childContextTypes=(e={},e[t]=dr.isRequired,e[i]=fr,e),l}(),mr=n(46),gr=n.n(mr),br=n(47),yr=n.n(br),vr=null,Er={notify:function(){}},wr=function(){function e(t,n,r){i(this,e),this.store=t,this.parentSub=n,this.onStateChange=r,this.unsubscribe=null,this.listeners=Er}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=Er)},e}(),Or=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},kr=0,_r={},xr=Object.prototype.hasOwnProperty,Cr=n(5),Sr=(n(6),[E,w,O]),jr=[k,_],Pr=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},Tr=[S,j],Nr=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},Dr=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?jr:r,a=e.mapDispatchToPropsFactories,i=void 0===a?Sr:a,l=e.mergePropsFactories,s=void 0===l?Tr:l,u=e.selectorFactory,c=void 0===u?D: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=I(a,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),w=R(e,o,"mapStateToProps"),O=R(t,i,"mapDispatchToProps"),k=R(r,s,"mergeProps");return n(c,Nr({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:w,initMapDispatchToProps:O,initMergeProps:k,pure:u,areStatesEqual:f,areOwnPropsEqual:h,areStatePropsEqual:b,areMergedPropsEqual:v},E))}}(),Ir=n(52),Rr=n(53),Ar=n.n(Rr),Lr="SETTING_LOAD_START",Fr="SETTING_LOAD_SUCCESS",Mr="SETTING_LOAD_FAILED",Ur="SETTING_LOAD_STATUS",Br="SETTING_SAVING",zr="SETTING_SAVED",Hr="SETTING_SAVE_FAILED",Vr="STATUS_IN_PROGRESS",Gr="STATUS_FAILED",qr="STATUS_COMPLETE",Wr=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},$r="LOG_LOADING",Kr="LOG_LOADED",Qr="LOG_FAILED",Yr="LOG_SET_SELECTED",Jr="LOG_SET_ALL_SELECTED",Xr="LOG_ITEM_SAVING",Zr="LOG_ITEM_SAVED",eo="LOG_ITEM_FAILED",to="log",no=n(8),ro=n.n(no),oo=["groups","404s","log","io","options","support"],ao=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},io=["orderby","direction","page","per_page","filter","filterBy"],lo=function(e,t){for(var n=[],r=0;r<e.length;r++)-1===t.indexOf(e[r])&&n.push(e[r]);return n},so=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=M(),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:ao({},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})},uo=function(e,t){for(var n=Object.assign({},e),r=0;r<io.length;r++)void 0!==t[io[r]]&&(n[io[r]]=t[io[r]]);return n},co=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},po=function(e){return Object.assign({},e,{selected:[]})},fo=function(e,t){return ao({},e,{selected:lo(e.selected,t).concat(lo(t,e.selected))})},ho=function(e,t,n){return ao({},e,{selected:n?t.map(function(e){return e.id}):[]})},mo=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},go=function(e){return Object.keys(e).filter(function(t){return e[t]}).reduce(function(t,n){return t[n]=e[n],t},{})},bo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Redirectioni10n.WP_API_root+"redirection/v1/"+e;return t._wpnonce=Redirectioni10n.WP_API_nonce,t&&Object.keys(t).length>0&&(t=go(t),Object.keys(t).length>0)?n+(-1===Redirectioni10n.WP_API_root.indexOf("?")?"?":"&")+ro.a.stringify(t):n},yo=function(e){return{url:e,headers:new Headers({"X-WP-Nonce":Redirectioni10n.WP_API_nonce,"Content-Type":"application/json"}),credentials:"same-origin"}},vo=function(e,t){return mo({},yo(bo(e,t)),{method:"post"})},Eo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return mo({},yo(bo(e,t)),{method:"get"})},wo=function(e,t){var n=mo({},yo(bo(e)),{method:"post"});return n.headers.delete("Content-Type"),n.body=new FormData,n.body.append("file",t),n},Oo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=mo({},yo(bo(e,n)),{method:"post",params:t});return Object.keys(t).length>0&&(r.body=JSON.stringify(t)),r},ko={setting:{get:function(){return Eo("setting")},update:function(e){return Oo("setting",e)}},redirect:{list:function(e){return Eo("redirect",e)},update:function(e,t){return Oo("redirect/"+e,t)},create:function(e){return Oo("redirect",e)}},group:{list:function(e){return Eo("group",e)},update:function(e,t){return Oo("group/"+e,t)},create:function(e){return Oo("group",e)}},log:{list:function(e){return Eo("log",e)},deleteAll:function(e){return vo("log",e)}},error:{list:function(e){return Eo("404",e)},deleteAll:function(e){return vo("404",e)}},import:{get:function(){return Eo("import")},upload:function(e,t){return wo("import/file/"+e,t)},pluginList:function(){return Eo("import/plugin")},pluginImport:function(e){return Oo("import/plugin/"+e)}},export:{file:function(e,t){return Eo("export/"+e+"/"+t)}},plugin:{status:function(){return Eo("plugin")},fix:function(){return Oo("plugin")},delete:function(){return vo("plugin/delete")}},bulk:{redirect:function(e,t,n){return Oo("bulk/redirect/"+e,t,n)},group:function(e,t,n){return Oo("bulk/group/"+e,t,n)},log:function(e,t,n){return Oo("bulk/log/"+e,t,n)},error:function(e,t,n){return Oo("bulk/404/"+e,t,n)}}},_o=function(e){return"https://api.redirect.li/v1/"+e+(-1===e.indexOf("?")?"?":"&")+"ref=redirection"},xo={ip:{getGeo:function(e){return{url:_o("ip/"+e+"?locale="+Redirectioni10n.localeSlug.substr(0,2)),method:"get"}}},agent:{get:function(e){return{url:_o("useragent/"+encodeURIComponent(e)),method:"get"}}}},Co=function(e,t){return e.url.replace(Redirectioni10n.WP_API_root,"").replace(/[\?&]_wpnonce=[a-f0-9]*/,"")+" "+t.method.toUpperCase()},So=function(e){return 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,e.action=Co(t,e)),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:n.message,code:n.error_code?n.error_code:n.data.error_code,request:e,data:n.data?n.data:null};return n}catch(t){throw t.request=e,t}})},jo=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},Po=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(sr.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=uo(s,c),f=jo({items:c.items.join(",")},o);return So(e(t,f,co(s,r.order))).then(function(e){a(jo({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})}}},To=function(e,t,n,r,o){return So(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]})},No=function(e,t,n){return function(r,o){var a=V(o()[n.store],[]);return a.page=0,a.orderby="id",a.direction="desc",a.filterBy="",a.filter="",To(e(t),a,t,n,r)}},Do=function(e,t,n,r){return function(o,a){var i=a()[r.store].table;return To(e(t,n),i,n,r,o)}},Io=function(e,t){var n={};for(var r in t)void 0===e[r]&&(n[r]=t[r]);return n},Ro=function(e,t){for(var n in e)if(e[n]!==t[n])return!1;return!0},Ao=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(uo(l,r)),c=co(jo({},l,r),n.order);if(!(Ro(u,l)&&s.length>0&&Ro(r,{})))return So(e(c)).then(function(e){t(jo({type:n.saved},e))}).catch(function(e){t({type:n.failed,error:e})}),t(jo({table:u,type:n.saving},Io(u,r)))},Lo=function(e,t,n,r,o){var a=o.table,i=co(jo({},a,r),n.order);So(e(i)).then(function(e){t(jo({type:n.saved},e))}).catch(function(e){t({type:n.failed,error:e})})},Fo=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},Mo=function(e,t){return t.item?Fo(e.rows,t.item,function(e){return jo({},e,t.item,{original:e})}):e.rows},Uo=function(e,t){return t.item?Fo(e.rows,t.item,function(e){return e.original}):e.rows},Bo=function(e,t){return t.item?Mo(e,t):t.items?t.items:e.rows},zo=function(e,t){return t.table?jo({},e.table,t.table):e.table},Ho=function(e,t){return void 0!==t.total?t.total:e.total},Vo=function(e,t){return[].concat(H(e.saving),H(t.saving))},Go=function(e,t){return e.saving.filter(function(e){return-1===t.saving.indexOf(e)})},qo=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},Wo="ERROR_LOADING",$o="ERROR_LOADED",Ko="ERROR_FAILED",Qo="ERROR_SET_SELECTED",Yo="ERROR_SET_ALL_SELECTED",Jo="ERROR_ITEM_SAVING",Xo="ERROR_ITEM_SAVED",Zo="ERROR_ITEM_FAILED",ea=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},ta="IO_EXPORTED",na="IO_EXPORTING",ra="IO_IMPORTING",oa="IO_IMPORTED",aa="IO_FAILED",ia="IO_CLEAR",la="IO_ADD_FILE",sa="IO_IMPORTERS",ua=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},ca="GROUP_LOADING",pa="GROUP_LOADED",fa="GROUP_FAILED",da="GROUP_SET_SELECTED",ha="GROUP_SET_ALL_SELECTED",ma="GROUP_ITEM_SAVING",ga="GROUP_ITEM_FAILED",ba="GROUP_ITEM_SAVED",ya=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},va="REDIRECT_LOADING",Ea="REDIRECT_LOADED",wa="REDIRECT_FAILED",Oa="REDIRECT_SET_SELECTED",ka="REDIRECT_SET_ALL_SELECTED",_a="REDIRECT_ITEM_SAVING",xa="REDIRECT_ITEM_FAILED",Ca="REDIRECT_ITEM_SAVED",Sa="REDIRECT_ADD_TOP",ja=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},Pa="MESSAGE_CLEAR_ERRORS",Ta="MESSAGE_CLEAR_NOTICES",Na=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},Da=function(e,t){return e.slice(0).concat([t])},Ia=function(e,t){return e.slice(0).concat([t])},Ra=function(e){return Math.max(0,e.inProgress-1)},Aa={REDIRECT_ITEM_SAVED:Object(sr.translate)("Redirection saved"),LOG_ITEM_SAVED:Object(sr.translate)("Log deleted"),SETTING_SAVED:Object(sr.translate)("Settings saved"),GROUP_ITEM_SAVED:Object(sr.translate)("Group saved"),ERROR_ITEM_SAVED:Object(sr.translate)("404 deleted")},La="INFO_LOADING",Fa="INFO_LOADED_GEO",Ma="INFO_LOADED_AGENT",Ua="INFO_FAILED",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},za=Object(Cr.combineReducers)({settings:L,log:G,error:q,io:W,group:$,redirect:K,message:Q,info:X}),Ha=za,Va=function(e,t){var n=B(),r={redirect:[[va,_a],"id"],groups:[[ca,ma],"name"],log:[[$r],"date"],"404s":[[Wo],"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)})}},Ga=function(){return function(e){return function(t){switch(t.type){case _a:case ma:case va:case ca:case $r:case Wo:Va(t.type,t.table?t.table:t)}return e(t)}}},qa=Object(Ir.composeWithDevTools)({name:"Redirection"}),Wa=[Ar.a,Ga],$a=(n(56),function(){return function(e,t){return t().settings.loadStatus===qr?null:(So(ko.setting.get()).then(function(t){e({type:Fr,values:t.settings,groups:t.groups,postTypes:t.post_types,installed:t.installed,canDelete:t.canDelete})}).catch(function(t){e({type:Mr,error:t})}),e({type:Lr}))}}),Ka=function(e){return function(t){return So(ko.setting.update(e)).then(function(e){t({type:zr,values:e.settings,groups:e.groups,installed:e.installed})}).catch(function(e){t({type:Hr,error:e})}),t({type:Br})}},Qa=function(){return function(e){return So(ko.plugin.delete()).then(function(e){document.location.href=e.location}).catch(function(t){e({type:Hr,error:t})}),e({type:Br})}},Ya=function(){return function(e){return So(ko.plugin.status()).then(function(t){e({type:Ur,pluginStatus:t})}).catch(function(t){e({type:Mr,error:t})}),e({type:Lr})}},Ja=function(){return function(e){return So(ko.plugin.fix()).then(function(t){e({type:Ur,pluginStatus:t})}).catch(function(t){e({type:Mr,error:t})}),e({type:Lr})}},Xa=function(e){var t=e.title,n=e.url,r=void 0!==n&&n;return or.a.createElement("tr",null,or.a.createElement("th",null,!r&&t,r&&or.a.createElement("a",{href:r,target:"_blank"},t)),or.a.createElement("td",null,e.children))},Za=function(e){return or.a.createElement("table",{className:"form-table"},or.a.createElement("tbody",null,e.children))},ei="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},ti=function e(t){var n=t.value,r=t.text;return"object"===(void 0===n?"undefined":ei(n))?or.a.createElement("optgroup",{label:r},n.map(function(t,n){return or.a.createElement(e,{text:t.text,value:t.value,key:n})})):or.a.createElement("option",{value:n},r)},ni=function(e){var t=e.items,n=e.value,r=e.name,o=e.onChange,a=e.isEnabled,i=void 0===a||a;return or.a.createElement("select",{name:r,value:n,onChange:o,disabled:!i},t.map(function(e,t){return or.a.createElement(ti,{value:e.value,text:e.text,key:t})}))},ri=ni,oi=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}}(),ai=[{value:-1,text:Object(sr.translate)("No logs")},{value:1,text:Object(sr.translate)("A day")},{value:7,text:Object(sr.translate)("A week")},{value:30,text:Object(sr.translate)("A month")},{value:60,text:Object(sr.translate)("Two months")},{value:0,text:Object(sr.translate)("Forever")}],ii=[{value:-1,text:Object(sr.translate)("Never cache")},{value:1,text:Object(sr.translate)("An hour")},{value:24,text:Object(sr.translate)("A day")},{value:168,text:Object(sr.translate)("A week")},{value:0,text:Object(sr.translate)("Forever")}],li=[{value:0,text:Object(sr.translate)("No IP logging")},{value:1,text:Object(sr.translate)("Full IP logging")},{value:2,text:Object(sr.translate)("Anonymize IP (mask last part)")}],si=[{value:0,text:Object(sr.translate)("Default /wp-json/ (preferred)")},{value:1,text:Object(sr.translate)("Raw /index.php?rest_route=/")},{value:2,text:Object(sr.translate)("Proxy over Admin AJAX (deprecated)")}],ui=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),oi(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 or.a.createElement(Xa,{title:Object(sr.translate)("URL Monitor Changes")+":",url:this.supportLink("options","monitor")},or.a.createElement(ri,{items:e,name:"monitor_post",value:parseInt(this.state.monitor_post,10),onChange:this.onChange})," ",Object(sr.translate)("Save changes to this group"),or.a.createElement("p",null,or.a.createElement("input",{type:"text",className:"regular-text",name:"associated_redirect",onChange:this.onChange,placeholder:Object(sr.translate)('For example "/amp"'),value:this.state.associated_redirect})," ",Object(sr.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(or.a.createElement("p",{key:o},or.a.createElement("label",null,or.a.createElement("input",{type:"checkbox",name:"monitor_type_"+o,onChange:e.onMonitor,checked:l}),Object(sr.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 or.a.createElement("form",{onSubmit:this.onSubmit},or.a.createElement(Za,null,or.a.createElement(Xa,{title:""},or.a.createElement("label",null,or.a.createElement("input",{type:"checkbox",checked:this.state.support,name:"support",onChange:this.onChange}),or.a.createElement("span",{className:"sub"},Object(sr.translate)("I'm a nice person and I have helped support the author of this plugin")))),or.a.createElement(Xa,{title:Object(sr.translate)("Redirect Logs")+":",url:this.supportLink("logs")},or.a.createElement(ri,{items:ai,name:"expire_redirect",value:parseInt(this.state.expire_redirect,10),onChange:this.onChange})," ",Object(sr.translate)("(time to keep logs for)")),or.a.createElement(Xa,{title:Object(sr.translate)("404 Logs")+":",url:this.supportLink("tracking-404-errors")},or.a.createElement(ri,{items:ai,name:"expire_404",value:parseInt(this.state.expire_404,10),onChange:this.onChange})," ",Object(sr.translate)("(time to keep logs for)")),or.a.createElement(Xa,{title:Object(sr.translate)("IP Logging")+":",url:this.supportLink("options","iplogging")},or.a.createElement(ri,{items:li,name:"ip_logging",value:parseInt(this.state.ip_logging,10),onChange:this.onChange})," ",Object(sr.translate)("(select IP logging level)")),or.a.createElement(Xa,{title:Object(sr.translate)("URL Monitor")+":",url:this.supportLink("options","monitor")},this.renderPostTypes()),o&&this.renderMonitor(t),or.a.createElement(Xa,{title:Object(sr.translate)("RSS Token")+":",url:this.supportLink("options","rsstoken")},or.a.createElement("input",{className:"regular-text",type:"text",value:this.state.token,name:"token",onChange:this.onChange}),or.a.createElement("br",null),or.a.createElement("span",{className:"sub"},Object(sr.translate)("A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"))),or.a.createElement(Xa,{title:Object(sr.translate)("Auto-generate URL")+":",url:this.supportLink("options","autogenerate")},or.a.createElement("input",{className:"regular-text",type:"text",value:this.state.auto_target,name:"auto_target",onChange:this.onChange}),or.a.createElement("br",null),or.a.createElement("span",{className:"sub"},Object(sr.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:or.a.createElement("code",null)}}))),or.a.createElement(Xa,{title:Object(sr.translate)("Apache Module"),url:this.supportLink("options","apache")},or.a.createElement("label",null,or.a.createElement("p",null,or.a.createElement("input",{type:"text",className:"regular-text",name:"location",value:this.state.location,onChange:this.onChange,placeholder:r})),or.a.createElement("p",{className:"sub"},Object(sr.translate)("Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.",{components:{code:or.a.createElement("code",null)}})))),or.a.createElement(Xa,{title:Object(sr.translate)("Redirect Cache"),url:this.supportLink("options","cache")},or.a.createElement(ri,{items:ii,name:"redirect_cache",value:parseInt(this.state.redirect_cache,10),onChange:this.onChange}),"  ",or.a.createElement("span",{className:"sub"},Object(sr.translate)('How long to cache redirected 301 URLs (via "Expires" HTTP header)'))),or.a.createElement(Xa,{title:Object(sr.translate)("REST API"),url:this.supportLink("options","restapi")},or.a.createElement(ri,{items:si,name:"rest_api",value:parseInt(this.state.rest_api,10),onChange:this.onChange}),"  ",or.a.createElement("span",{className:"sub"},Object(sr.translate)("How Redirection uses the REST API - don't change unless necessary")))),or.a.createElement("input",{className:"button-primary",type:"submit",name:"update",value:Object(sr.translate)("Update"),disabled:n===Vr}))}}]),t}(or.a.Component),ci=Dr(me,he)(ui),pi=n(3),fi=n.n(pi),di=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}}(),hi=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),di(t,[{key:"componentDidMount",value:function(){this.height=0,this.resize()}},{key:"componentWillReceiveProps",value:function(){this.resize()}},{key:"componentDidUpdate",value:function(){this.resize()}},{key:"resize",value:function(){if(this.props.show){for(var e=5,t=0;t<this.ref.children.length;t++)e+=this.ref.children[t].clientHeight;this.ref.style.height=e+"px",this.height=e-this.height}}},{key:"onBackground",value:function(e){"modal"===e.target.className&&this.props.onClose()}},{key:"render",value:function(){var e=this.props,t=e.show,n=e.onClose,r=e.width,o=fi()({"modal-wrapper":!0,"modal-wrapper-padding":this.props.padding});if(!t)return null;var a=r?{width:r+"px"}:{};return this.height&&(a.height=this.height+"px"),or.a.createElement("div",{className:o,onClick:this.handleClick},or.a.createElement("div",{className:"modal-backdrop"}),or.a.createElement("div",{className:"modal"},or.a.createElement("div",{className:"modal-content",ref:this.nodeRef,style:a},or.a.createElement("div",{className:"modal-close"},or.a.createElement("button",{onClick:n},"✖")),or.a.cloneElement(this.props.children,{parent:this}))))}}]),t}(or.a.Component);hi.defaultProps={padding:!0};var mi=hi,gi=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(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),gi(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:"render",value:function(){return or.a.createElement("div",{className:"wrap"},or.a.createElement("form",{action:"",method:"post",onSubmit:this.onSubmit},or.a.createElement("h2",null,Object(sr.translate)("Delete Redirection")),or.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."),or.a.createElement("input",{className:"button-primary button-delete",type:"submit",name:"delete",value:Object(sr.translate)("Delete")})),or.a.createElement(mi,{show:this.state.isModal,onClose:this.onClose},or.a.createElement("div",null,or.a.createElement("h1",null,Object(sr.translate)("Delete the plugin - are you sure?")),or.a.createElement("p",null,Object(sr.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.")),or.a.createElement("p",null,Object(sr.translate)("Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.")),or.a.createElement("p",null,or.a.createElement("button",{className:"button-primary button-delete",onClick:this.onDelete},Object(sr.translate)("Yes! Delete the plugin"))," ",or.a.createElement("button",{className:"button-secondary",onClick:this.onClose},Object(sr.translate)("No! Don't delete the plugin"))))))}}]),t}(or.a.Component),yi=bi,vi=function(){return or.a.createElement("div",{className:"placeholder-container"},or.a.createElement("div",{className:"placeholder-loading"}))},Ei=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){ke(this,t);var n=_e(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),wi(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 or.a.createElement("div",null,Object(sr.translate)("You've supported this plugin - thank you!"),"  ",or.a.createElement("a",{href:"#",onClick:this.onDonate},Object(sr.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 or.a.createElement("div",null,or.a.createElement("label",null,or.a.createElement("p",null,Object(sr.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:or.a.createElement("strong",null)}})," ",Object(sr.translate)("You get useful software and I get to carry on making it better."))),or.a.createElement("input",{type:"hidden",name:"cmd",value:"_xclick"}),or.a.createElement("input",{type:"hidden",name:"business",value:"admin@urbangiraffe.com"}),or.a.createElement("input",{type:"hidden",name:"item_name",value:"Redirection"}),or.a.createElement("input",{type:"hidden",name:"buyer_credit_promo_code",value:""}),or.a.createElement("input",{type:"hidden",name:"buyer_credit_product_category",value:""}),or.a.createElement("input",{type:"hidden",name:"buyer_credit_shipping_method",value:""}),or.a.createElement("input",{type:"hidden",name:"buyer_credit_user_address_change",value:""}),or.a.createElement("input",{type:"hidden",name:"no_shipping",value:"1"}),or.a.createElement("input",{type:"hidden",name:"return",value:this.getReturnUrl()}),or.a.createElement("input",{type:"hidden",name:"no_note",value:"1"}),or.a.createElement("input",{type:"hidden",name:"currency_code",value:"USD"}),or.a.createElement("input",{type:"hidden",name:"tax",value:"0"}),or.a.createElement("input",{type:"hidden",name:"lc",value:"US"}),or.a.createElement("input",{type:"hidden",name:"bn",value:"PP-DonationsBF"}),or.a.createElement("div",{className:"donation-amount"},"$",or.a.createElement("input",{type:"number",name:"amount",min:16,value:this.state.amount,onChange:this.onInput,onBlur:this.onBlur}),or.a.createElement("span",null,this.getAmountoji(this.state.amount)),or.a.createElement("input",{type:"submit",className:"button-primary",value:Object(sr.translate)("Support 💰")})))}},{key:"render",value:function(){var e=this.state.support;return or.a.createElement("form",{action:"https://www.paypal.com/cgi-bin/webscr",method:"post",className:"donation"},or.a.createElement(Za,null,or.a.createElement(Xa,{title:Object(sr.translate)("Plugin Support")+":"},e?this.renderSupported():this.renderUnsupported())))}}]),t}(or.a.Component),ki=Oi,_i=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){Ce(this,t);var n=Se(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoadSettings(),n}return je(t,e),_i(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!==Vr&&n?or.a.createElement("div",null,t===qr&&or.a.createElement(ki,{support:n.support}),t===qr&&or.a.createElement(ci,null),or.a.createElement("br",null),or.a.createElement("br",null),or.a.createElement("hr",null),o&&or.a.createElement(yi,{onDelete:this.props.onDeletePlugin})):or.a.createElement(Ei,null)}}]),t}(or.a.Component),Ci=Dr(Te,Pe)(xi),Si=function(e){return e.newsletter?or.a.createElement("div",{className:"newsletter"},or.a.createElement("h3",null,Object(sr.translate)("Newsletter")),or.a.createElement("p",null,Object(sr.translate)("Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.",{components:{a:or.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://tinyletter.com/redirection"})}}))):or.a.createElement("div",{className:"newsletter"},or.a.createElement("h3",null,Object(sr.translate)("Newsletter")),or.a.createElement("p",null,Object(sr.translate)("Want to keep up to date with changes to Redirection?")),or.a.createElement("p",null,Object(sr.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.")),or.a.createElement("form",{action:"https://tinyletter.com/redirection",method:"post",onSubmit:e.onSubscribe},or.a.createElement("p",null,or.a.createElement("label",null,Object(sr.translate)("Your email address:")," ",or.a.createElement("input",{type:"email",name:"email",id:"tlemail"})," ",or.a.createElement("input",{type:"submit",value:"Subscribe",className:"button-secondary"})),or.a.createElement("input",{type:"hidden",value:"1",name:"embed"})," ",or.a.createElement("span",null,or.a.createElement("a",{href:"https://tinyletter.com/redirection",target:"_blank",rel:"noreferrer noopener"},"Powered by TinyLetter")))))},ji=Dr(null,Ne)(Si),Pi=function(){return or.a.createElement("div",null,or.a.createElement("h2",null,Object(sr.translate)("Need help?")),or.a.createElement("p",null,Object(sr.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:or.a.createElement("a",{href:"https://redirection.me",target:"_blank",rel:"noopener noreferrer"}),faq:or.a.createElement("a",{href:"https://redirection.me/support/faq/",target:"_blank",rel:"noopener noreferrer"})}})),or.a.createElement("p",null,or.a.createElement("strong",null,Object(sr.translate)("If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.",{components:{report:or.a.createElement("a",{href:"https://redirection.me/support/reporting-bugs/",target:"_blank",rel:"noopener noreferrer"})}}))),or.a.createElement("div",{className:"inline-notice inline-general"},or.a.createElement("p",{className:"github"},or.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"},or.a.createElement("img",{src:Redirectioni10n.pluginBaseUrl+"/images/GitHub-Mark-64px.png",width:"32",height:"32"})),or.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"},"https://github.com/johngodley/redirection/"))),or.a.createElement("p",null,Object(sr.translate)("Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.")),or.a.createElement("p",null,Object(sr.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:or.a.createElement("a",{href:"mailto:john@redirection.me?subject=Redirection%20Issue&body="+encodeURIComponent("Redirection: "+Redirectioni10n.versions)})}})))},Ti=Pi,Ni=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(){return or.a.createElement("div",null,or.a.createElement("form",{action:Redirectioni10n.pluginRoot+"&sub=support",method:"POST"},or.a.createElement("input",{type:"hidden",name:"_wpnonce",value:Redirectioni10n.WP_API_nonce}),or.a.createElement("input",{type:"hidden",name:"action",value:"fixit"}),or.a.createElement("p",null,Object(sr.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.")),or.a.createElement("p",null,or.a.createElement("input",{type:"submit",className:"button-primary",value:Object(sr.translate)("⚡️ Magic fix ⚡️")}))))},Ii=function(e){var t=e.item;return or.a.createElement("tr",null,or.a.createElement("th",null,t.name),or.a.createElement("td",null,or.a.createElement("span",{className:"plugin-status-"+t.status},t.status.charAt(0).toUpperCase()+t.status.slice(1))," ",t.message))},Ri=function(e){var t=e.status,n=t.filter(function(e){return"good"!==e.status});return or.a.createElement("div",null,or.a.createElement("table",{className:"plugin-status"},or.a.createElement("tbody",null,t.map(function(e,t){return or.a.createElement(Ii,{item:e,key:t})}))),n.length>0&&or.a.createElement(Di,null))},Ai=function(e){function t(e){De(this,t);var n=Ie(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onLoadStatus(),n}return Re(t,e),Ni(t,[{key:"render",value:function(){var e=this.props.pluginStatus;return or.a.createElement("div",null,or.a.createElement("h2",null,Object(sr.translate)("Plugin Status")),e.length>0&&or.a.createElement(Ri,{status:e}),0===e.length&&or.a.createElement("div",{className:"placeholder-inline"},or.a.createElement("div",{className:"placeholder-loading"})))}}]),t}(or.a.Component),Li=Dr(Le,Ae)(Ai),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}}(),Mi=function(e){function t(e){Fe(this,t);var n=Me(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoadSettings(),n}return Ue(t,e),Fi(t,[{key:"render",value:function(){var e=this.props.values?this.props.values:{},t=e.newsletter,n=void 0!==t&&t;return or.a.createElement("div",null,or.a.createElement(Li,null),or.a.createElement(Ti,null),or.a.createElement(ji,{newsletter:n}))}}]),t}(or.a.Component),Ui=Dr(ze,Be)(Mi),Bi=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=fi()(He({"manage-column":!0,sortable:!0,asc:i===t&&"asc"===a,desc:i===t&&"desc"===a||i!==t,"column-primary":o},"column-"+t,!0));return or.a.createElement("th",{scope:"col",className:s,onClick:l},or.a.createElement("a",{href:"#"},or.a.createElement("span",null,n),or.a.createElement("span",{className:"sorting-indicator"})))},zi=Bi,Hi=function(e){var t=e.name,n=e.text,r=e.primary,o=fi()(Ve({"manage-column":!0,"column-primary":r},"column-"+t,!0));return or.a.createElement("th",{scope:"col",className:o},or.a.createElement("span",null,n))},Vi=Hi,Gi=function(e){var t=e.onSetAllSelected,n=e.isDisabled,r=e.isSelected;return or.a.createElement("td",{className:"manage-column column-cb check-column",onClick:t},or.a.createElement("label",{className:"screen-reader-text"},Object(sr.translate)("Select All")),or.a.createElement("input",{type:"checkbox",disabled:n,checked:r}))},qi=Gi,Wi=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 or.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?or.a.createElement(qi,{onSetAllSelected:l,isDisabled:t,isSelected:o,key:e.name}):!1===p?or.a.createElement(Vi,{name:e.name,text:e.title,key:e.name,primary:a}):or.a.createElement(zi,{table:i,name:e.name,text:e.title,key:e.name,onSetOrderBy:r,primary:a})}))},$i=Wi,Ki=function(e,t){return-1!==e.indexOf(t)},Qi=function(e,t,n){return{isLoading:e===Vr,isSelected:Ki(t,n.id)}},Yi=function(e){var t=e.rows,n=e.status,r=e.selected,o=e.row;return or.a.createElement("tbody",null,t.map(function(e,t){return o(e,t,Qi(n,r,e))}))},Ji=Yi,Xi=function(e){var t=e.columns;return or.a.createElement("tr",{className:"is-placeholder"},t.map(function(e,t){return or.a.createElement("td",{key:t},or.a.createElement("div",{className:"placeholder-loading"}))}))},Zi=function(e){var t=e.headers,n=e.rows;return or.a.createElement("tbody",null,or.a.createElement(Xi,{columns:t}),n.slice(0,-1).map(function(e,n){return or.a.createElement(Xi,{columns:t,key:n})}))},el=Zi,tl=function(e){var t=e.headers;return or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("td",null),or.a.createElement("td",{colSpan:t.length-1},Object(sr.translate)("No results"))))},nl=tl,rl=function(e){var t=e.headers;return or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("td",{colSpan:t.length},or.a.createElement("p",null,Object(sr.translate)("Sorry, something went wrong loading the data - please try again")))))},ol=rl,al=function(e,t){return e!==qr||0===t.length},il=function(e,t){return e.length===t.length&&0!==t.length},ll=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=al(i,r),c=il(a.selected,r),p=null;return i===Vr&&0===r.length?p=or.a.createElement(el,{headers:t,rows:r}):0===r.length&&i===qr?p=or.a.createElement(nl,{headers:t}):i===Gr?p=or.a.createElement(ol,{headers:t}):r.length>0&&(p=or.a.createElement(Ji,{rows:r,status:i,selected:a.selected,row:n})),or.a.createElement("table",{className:"wp-list-table widefat fixed striped items"},or.a.createElement("thead",null,or.a.createElement($i,{table:a,isDisabled:u,isSelected:c,headers:t,rows:r,total:o,onSetOrderBy:s,onSetAllSelected:l})),p,or.a.createElement("tfoot",null,or.a.createElement($i,{table:a,isDisabled:u,isSelected:c,headers:t,rows:r,total:o,onSetOrderBy:s,onSetAllSelected:l})))},sl=ll,ul=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){var t=e.title,n=e.button,r=e.className,o=e.enabled,a=e.onClick;return o?or.a.createElement("a",{className:r,href:"#",onClick:a},or.a.createElement("span",{className:"screen-reader-text"},t),or.a.createElement("span",{"aria-hidden":"true"},n)):or.a.createElement("span",{className:"tablenav-pages-navspan","aria-hidden":"true"},n)},pl=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),ul(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 or.a.createElement("span",{className:"pagination-links"},or.a.createElement(cl,{title:Object(sr.translate)("First page"),button:"«",className:"first-page",enabled:e>0,onClick:this.onFirst})," ",or.a.createElement(cl,{title:Object(sr.translate)("Prev page"),button:"‹",className:"prev-page",enabled:e>0,onClick:this.onPrev}),or.a.createElement("span",{className:"paging-input"},or.a.createElement("label",{htmlFor:"current-page-selector",className:"screen-reader-text"},Object(sr.translate)("Current Page"))," ",or.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}),or.a.createElement("span",{className:"tablenav-paging-text"},Object(sr.translate)("of %(page)s",{components:{total:or.a.createElement("span",{className:"total-pages"})},args:{page:Object(sr.numberFormat)(t)}})))," ",or.a.createElement(cl,{title:Object(sr.translate)("Next page"),button:"›",className:"next-page",enabled:e<t-1,onClick:this.onNext})," ",or.a.createElement(cl,{title:Object(sr.translate)("Last page"),button:"»",className:"last-page",enabled:e<t-1,onClick:this.onLast}))}}]),t}(or.a.Component),fl=function(e){function t(){return Ge(this,t),qe(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return We(t,e),ul(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=fi()({"tablenav-pages":!0,"one-page":i});return or.a.createElement("div",{className:l},or.a.createElement("span",{className:"displaying-num"},Object(sr.translate)("%s item","%s items",{count:t,args:Object(sr.numberFormat)(t)})),!i&&or.a.createElement(pl,{onChangePage:o,total:t,per_page:n,page:r,inProgress:a}))}}]),t}(or.a.Component),dl=fl,hl=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}}(),ml=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),hl(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 or.a.createElement("div",{className:"alignleft actions bulkactions"},or.a.createElement("label",{htmlFor:"bulk-action-selector-top",className:"screen-reader-text"},Object(sr.translate)("Select bulk action")),or.a.createElement("select",{name:"action",id:"bulk-action-selector-top",value:this.state.action,disabled:0===t.length,onChange:this.handleChange},or.a.createElement("option",{value:"-1"},Object(sr.translate)("Bulk Actions")),e.map(function(e){return or.a.createElement("option",{key:e.id,value:e.id},e.name)})),or.a.createElement("input",{type:"submit",id:"doaction",className:"button action",value:Object(sr.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 or.a.createElement("div",{className:"tablenav top"},r&&this.getBulk(r),this.props.children?this.props.children:null,t>0&&or.a.createElement(dl,{per_page:n.per_page,page:n.page,total:t,onChangePage:this.props.onChangePage,inProgress:o===Vr}))}}]),t}(or.a.Component),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){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),bl(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===Vr||""===this.state.search&&""===this.props.table.filter,n="ip"===this.props.table.filterBy?Object(sr.translate)("Search by IP"):Object(sr.translate)("Search");return or.a.createElement("form",{onSubmit:this.handleSubmit},or.a.createElement("p",{className:"search-box"},or.a.createElement("input",{type:"search",name:"s",value:this.state.search,onChange:this.handleChange}),or.a.createElement("input",{type:"submit",className:"button",value:n,disabled:t})))}}]),t}(or.a.Component),vl=yl,El=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}}(),wl=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),El(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(sr.translate)("Delete all from IP %s",{args:t}):t?Object(sr.translate)('Delete all matching "%s"',{args:t.substring(0,15)}):Object(sr.translate)("Delete All")}},{key:"render",value:function(){var e=this.props.table,t=this.getTitle(e.filterBy,e.filter);return or.a.createElement("div",{className:"table-button-item"},or.a.createElement("input",{className:"button",type:"submit",name:"",value:t,onClick:this.onShow}),or.a.createElement(mi,{show:this.state.isModal,onClose:this.onClose},or.a.createElement("div",null,or.a.createElement("h1",null,Object(sr.translate)("Delete the logs - are you sure?")),or.a.createElement("p",null,Object(sr.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.")),or.a.createElement("p",null,or.a.createElement("button",{className:"button-primary",onClick:this.onDelete},Object(sr.translate)("Yes! Delete the logs"))," ",or.a.createElement("button",{className:"button-secondary",onClick:this.onClose},Object(sr.translate)("No! Don't delete the logs"))))))}}]),t}(or.a.Component),Ol=wl,kl=this,_l=function(e){var t=e.logType;return or.a.createElement("form",{method:"post",action:Redirectioni10n.pluginRoot+"&sub="+t},or.a.createElement("input",{type:"hidden",name:"_wpnonce",value:Redirectioni10n.WP_API_nonce}),or.a.createElement("input",{type:"hidden",name:"export-csv",value:""}),or.a.createElement("input",{className:"button",type:"submit",name:"",value:Object(sr.translate)("Export"),onClick:kl.onShow}))},xl=_l,Cl=n(14),Sl=function(e){var t=e.children,n=e.disabled,r=void 0!==n&&n;return or.a.createElement("div",{className:"row-actions"},r?or.a.createElement("span",null," "):t)},jl=Sl,Pl=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},Tl={saving:Xr,saved:Zr,failed:eo,order:"date",store:"log"},Nl={saving:$r,saved:Kr,failed:Qr,order:"date",store:"log"},Dl=function(e,t){return function(n,r){return Ao(ko.log.deleteAll,n,Nl,{page:0,filter:t,filterBy:e},r().log,function(e){return Pl({},e,{filter:"",filterBy:""})})}},Il=function(e,t,n){return Po(ko.bulk.log,e,t,Tl,n)},Rl=function(e){return function(t){return Ao(ko.log.list,t,Nl,e)}},Al=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{filter:"",filterBy:"",page:0,orderby:""};return Rl(e)},Ll=function(e,t){return Rl({orderby:e,direction:t})},Fl=function(e){return Rl({page:e})},Ml=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return Rl({filter:e,filterBy:""===e?"":t,page:0,orderby:""})},Ul=function(e,t){return Rl({filterBy:e,filter:t,orderby:"",page:0})},Bl=function(e){return{type:Yr,items:e.map(parseInt)}},zl=function(e){return{type:Jr,onoff:e}},Hl=function(e){var t=e.size,n=void 0===t?"":t,r="spinner-container"+(n?" spinner-"+n:"");return or.a.createElement("div",{className:r},or.a.createElement("span",{className:"css-spinner"}))},Vl=Hl,Gl=function(e){return function(t,n){if(!n().info.maps[e])return So(xo.ip.getGeo(e)).then(function(e){t({type:Fa,map:e})}).catch(function(e){t({type:Ua,error:e})}),t({type:La})}},ql=function(e){return function(t,n){if(!n().info.agents[e])return So(xo.agent.get(e)).then(function(e){t({type:Ma,agent:e})}).catch(function(e){t({type:Ua,error:e})}),t({type:La})}},Wl=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){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),Wl(t,[{key:"renderError",value:function(){var e=this.props.error;return or.a.createElement("div",{className:"modal-error"},or.a.createElement("h2",null,Object(sr.translate)("Geo IP Error")),or.a.createElement("p",null,Object(sr.translate)("Something went wrong obtaining this information")),or.a.createElement("p",null,e.message))}},{key:"showPrivate",value:function(e){var t=e.ip,n=e.ipType;return or.a.createElement("div",{className:"geo-simple"},or.a.createElement("h2",null,Object(sr.translate)("Geo IP"),": ",t," - IPv",n),or.a.createElement("p",null,Object(sr.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 or.a.createElement("div",{className:"geo-simple"},or.a.createElement("h2",null,Object(sr.translate)("Geo IP"),": ",t," - IPv",n),or.a.createElement("p",null,Object(sr.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 or.a.createElement("div",{className:"geo-full"},or.a.createElement("table",null,or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",{colSpan:"2"},or.a.createElement("h2",null,Object(sr.translate)("Geo IP"),": ",or.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(u),target:"_blank",rel:"noopener noreferrer"},u)," - IPv",c))),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("City")),or.a.createElement("td",null,r)),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Area")),or.a.createElement("td",null,f.join(", "))),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Timezone")),or.a.createElement("td",null,a)),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Geo Location")),or.a.createElement("td",null,l+","+s+" (~"+i+"m)")))),or.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 or.a.createElement("div",{className:"external"},Object(sr.translate)("Powered by {{link}}redirect.li{{/link}}",{components:{link:or.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===qr&&this.props.maps[this.props.ip]&&"geoip"!==this.props.maps[this.props.ip].code,n=fi()({"geo-map":!0,"geo-map-loading":e===Vr,"geo-map-small":e===Gr||t});return or.a.createElement("div",{className:n},e===Vr&&or.a.createElement(Vl,null),e===Gr&&this.renderError(),e===qr&&this.renderDetails(),e===qr&&this.renderLink())}}]),t}(or.a.Component),Kl=Dr(it,at)($l),Ql=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){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),Ql(t,[{key:"renderError",value:function(){var e=this.props.error;return or.a.createElement("div",{className:"modal-error"},or.a.createElement("h2",null,Object(sr.translate)("Useragent Error")),or.a.createElement("p",null,Object(sr.translate)("Something went wrong obtaining this information")),or.a.createElement("p",null,or.a.createElement("code",null,e.message)))}},{key:"renderUnknown",value:function(){var e=this.props.agent;return or.a.createElement("div",{className:"agent-unknown"},or.a.createElement("h2",null,Object(sr.translate)("Unknown Useragent")),or.a.createElement("br",null),or.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?or.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(sr.translate)("Device"),a]),i&&u.push([Object(sr.translate)("Operating System"),i]),l&&u.push([Object(sr.translate)("Browser"),l]),s&&u.push([Object(sr.translate)("Engine"),s]),or.a.createElement("div",null,or.a.createElement("h2",null,Object(sr.translate)("Useragent"),": ",o),or.a.createElement("table",null,or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Agent")),or.a.createElement("td",{className:"useragent-agent"},n)),u.map(function(e,t){return or.a.createElement("tr",{key:t},or.a.createElement("th",null,e[0]),or.a.createElement("td",null,e[1]))}))),or.a.createElement("div",{className:"external"},Object(sr.translate)("Powered by {{link}}redirect.li{{/link}}",{components:{link:or.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=fi()({useragent:!0,"useragent-loading":e===Vr});return or.a.createElement("div",{className:t},e===Vr&&or.a.createElement(Vl,null),e===Gr&&this.renderError(),e===qr&&this.renderDetails())}}]),t}(or.a.Component),Jl=Dr(pt,ct)(Yl),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}}(),Zl=function(e){var t=e.url;if(t){var n=Cl.parse(t).hostname;return or.a.createElement("a",{href:t,rel:"noreferrer noopener",target:"_blank"},n)}return null},es=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?or.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),Xl(t,[{key:"renderMap",value:function(){return or.a.createElement(mi,{show:this.state.showMap,onClose:this.closeMap,width:"800",padding:!1},or.a.createElement(Kl,{ip:this.props.item.ip}))}},{key:"renderAgent",value:function(){return or.a.createElement(mi,{show:this.state.showAgent,onClose:this.closeAgent,width:"800"},or.a.createElement(Jl,{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===Vr,d="STATUS_SAVING"===p,h=f||d,m=[or.a.createElement("a",{href:"#",onClick:this.onDelete,key:"0"},Object(sr.translate)("Delete"))];return r&&m.unshift(or.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(r),onClick:this.showMap,key:"2"},Object(sr.translate)("Geo Info"))),i&&m.unshift(or.a.createElement("a",{href:"https://redirect.li/useragent/?ip="+encodeURIComponent(i),onClick:this.showAgent,key:"3"},Object(sr.translate)("Agent Info"))),or.a.createElement("tr",{className:h?"disabled":""},or.a.createElement("th",{scope:"row",className:"check-column"},!d&&or.a.createElement("input",{type:"checkbox",name:"item[]",value:s,disabled:f,checked:c,onClick:this.onSelected}),d&&or.a.createElement(Vl,{size:"small"})),or.a.createElement("td",{className:"column-date"},t,or.a.createElement("br",null),n),or.a.createElement("td",{className:"column-primary column-url"},or.a.createElement("a",{href:a,rel:"noreferrer noopener",target:"_blank"},a.substring(0,100)),or.a.createElement("br",null),l?l.substring(0,100):"",or.a.createElement(jl,{disabled:d},m.reduce(function(e,t){return[e," | ",t]})),this.state.showMap&&this.renderMap(),this.state.showAgent&&this.renderAgent()),or.a.createElement("td",{className:"column-referrer"},or.a.createElement(Zl,{url:o}),o&&or.a.createElement("br",null),i),or.a.createElement("td",{className:"column-ip"},this.renderIp(r),or.a.createElement(jl,null,r&&or.a.createElement("a",{href:"#",onClick:this.onShow},Object(sr.translate)("Filter by IP")))))}}]),t}(or.a.Component),ts=Dr(null,mt)(es),ns=function(e){var t=e.enabled,n=void 0===t||t,r=e.children;return n?or.a.createElement("div",{className:"table-buttons"},r):null},rs=ns,os=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}}(),as=[{name:"cb",check:!0},{name:"date",title:Object(sr.translate)("Date")},{name:"url",title:Object(sr.translate)("Source URL"),primary:!0},{name:"referrer",title:Object(sr.translate)("Referrer / User Agent"),sortable:!1},{name:"ip",title:Object(sr.translate)("IP"),sortable:!1}],is=[{id:"delete",name:Object(sr.translate)("Delete")}],ls=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),os(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoad()}},{key:"onRSS",value:function(){document.location=z()}},{key:"renderRow",value:function(e,t,n){var r=this.props.log.saving,o=n.isLoading?Vr:qr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return or.a.createElement(ts,{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 or.a.createElement("div",null,or.a.createElement(vl,{status:t,table:r,onSearch:this.props.onSearch}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction,bulk:is}),or.a.createElement(sl,{headers:as,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction},or.a.createElement(rs,{enabled:o.length>0},or.a.createElement(xl,{logType:to}),or.a.createElement("button",{className:"button-secondary",onClick:this.handleRSS},"RSS"),or.a.createElement(Ol,{onDelete:this.props.onDeleteAll,table:r}))))}}]),t}(or.a.Component),ss=Dr(vt,Et)(ls),us=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},cs={saving:Jo,saved:Xo,failed:Zo,order:"date",store:"error"},ps={saving:Wo,saved:$o,failed:Ko,order:"date",store:"error"},fs=function(e,t){return function(n,r){return Lo(ko.error.deleteAll,n,ps,{page:0,filter:t,filterBy:e},r().error)}},ds=function(e,t){return function(n,r){return Ao(ko.error.deleteAll,n,ps,{page:0,filter:t,filterBy:e},r().error,function(e){return us({},e,{filter:"",filterBy:""})})}},hs=function(e,t,n){return Po(ko.bulk.error,e,t,cs,n)},ms=function(e){return function(t){return Ao(ko.error.list,t,ps,e)}},gs=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{filter:"",filterBy:"",page:0,orderby:""};return ms(e)},bs=function(e,t){return ms({orderby:e,direction:t})},ys=function(e){return ms({page:e})},vs=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return ms({filter:e,filterBy:""===e?"":t,page:0,orderby:""})},Es=function(e,t){return ms({filterBy:e,filter:t,orderby:"",page:0})},ws=function(e){return{type:Qo,items:e.map(parseInt)}},Os=function(e){return{type:Yo,onoff:e}},ks=function(e){var t=e.url;if(t){var n=Cl.parse(t).hostname;return or.a.createElement("a",{href:t,rel:"noreferrer noopener",target:"_blank"},n)}return null},_s=ks,xs=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}}(),Cs=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 kt(t,e),xs(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 or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("User Agent")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"agent",value:this.props.agent,onChange:this.handleChangeAgent,className:"medium"}),"  ",or.a.createElement("select",{name:"agent_dropdown",onChange:this.onDropdown,value:this.state.dropdown,className:"medium"},or.a.createElement("option",{value:""},Object(sr.translate)("Custom")),or.a.createElement("option",{value:"mobile"},Object(sr.translate)("Mobile")),or.a.createElement("option",{value:"feed"},Object(sr.translate)("Feed Readers")," "),or.a.createElement("option",{value:"lib"},Object(sr.translate)("Libraries"))),"  ",or.a.createElement("label",null,Object(sr.translate)("Regex")," ",or.a.createElement("input",{type:"checkbox",name:"regex",checked:this.props.regex,onChange:this.handleChangeRegex}))))}}]),t}(or.a.Component),Ss=Cs,js=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}}(),Ps=function(e){function t(e){_t(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),js(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 or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Referrer")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"referrer",value:this.props.referrer,onChange:this.handleChangeReferrer}),"  ",or.a.createElement("label",null,Object(sr.translate)("Regex")," ",or.a.createElement("input",{type:"checkbox",name:"regex",checked:this.props.regex,onChange:this.handleChangeRegex}))))}}]),t}(or.a.Component),Ts=Ps,Ns=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=function(e){function t(e){St(this,t);var n=jt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeFrom=n.onChangeFrom.bind(n),n.handleChangeNotFrom=n.onChangeNotFrom.bind(n),n}return Pt(t,e),Ns(t,[{key:"onChangeFrom",value:function(e){this.props.onChange("agent","url_from",e.target.value)}},{key:"onChangeNotFrom",value:function(e){this.props.onChange("agent","url_notfrom",e.target.value)}},{key:"render",value:function(){return or.a.createElement("tr",null,or.a.createElement("td",{colSpan:"2",className:"no-margin"},or.a.createElement("table",null,or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Matched Target")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"url_from",value:this.props.url_from,onChange:this.handleChangeFrom}))),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Unmatched Target")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"url_notfrom",value:this.props.url_notfrom,onChange:this.handleChangeNotFrom})))))))}}]),t}(or.a.Component),Is=Ds,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}}(),As=function(e){function t(e){Tt(this,t);var n=Nt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeFrom=n.onChangeFrom.bind(n),n.handleChangeNotFrom=n.onChangeNotFrom.bind(n),n}return Dt(t,e),Rs(t,[{key:"onChangeFrom",value:function(e){this.props.onChange("referrer","url_from",e.target.value)}},{key:"onChangeNotFrom",value:function(e){this.props.onChange("referrer","url_notfrom",e.target.value)}},{key:"render",value:function(){return or.a.createElement("tr",null,or.a.createElement("td",{colSpan:"2",className:"no-margin"},or.a.createElement("table",null,or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Matched Target")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"url_from",value:this.props.url_from,onChange:this.handleChangeFrom}))),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Unmatched Target")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"url_notfrom",value:this.props.url_notfrom,onChange:this.handleChangeNotFrom})))))))}}]),t}(or.a.Component),Ls=As,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}}(),Ms=function(e){function t(e){It(this,t);var n=Rt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleChangeIn=n.onChangeIn.bind(n),n.handleChangeOut=n.onChangeOut.bind(n),n}return At(t,e),Fs(t,[{key:"onChangeIn",value:function(e){this.props.onChange("login","logged_in",e.target.value)}},{key:"onChangeOut",value:function(e){this.props.onChange("login","logged_out",e.target.value)}},{key:"render",value:function(){return or.a.createElement("tr",null,or.a.createElement("td",{colSpan:"2",className:"no-margin"},or.a.createElement("table",null,or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Logged In")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"logged_in",value:this.props.logged_in,onChange:this.handleChangeIn}))),or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Logged Out")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"logged_out",value:this.props.logged_out,onChange:this.handleChangeOut})))))))}}]),t}(or.a.Component),Us=Ms,Bs=function(e){var t=function(t){e.onChange("target","url",t.target.value)};return or.a.createElement("tr",null,or.a.createElement("td",{colSpan:"2",className:"no-margin"},or.a.createElement("table",null,or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Target URL")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"url",value:e.target.url,onChange:t})))))))},zs=Bs,Hs=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]}})},Vs={store:"redirect",saving:_a,saved:Ca,failed:xa,order:"name"},Gs={store:"redirect",saving:va,saved:Ea,failed:wa,order:"name"},qs=function(e){return No(ko.redirect.create,e,Vs)},Ws=function(e,t){return Do(ko.redirect.update,e,t,Vs)},$s=function(e,t){return Po(ko.bulk.redirect,e,t,Vs)},Ks=function(e){return function(t,n){return Ao(ko.redirect.list,t,Gs,e,n().redirect)}},Qs=function(e,t){return Ks({orderby:e,direction:t})},Ys=function(e){return Ks({page:e})},Js=function(e){return Ks({filter:e,filterBy:"",page:0,orderby:""})},Xs=function(e,t){return Ks({filterBy:e,filter:t,orderby:"",page:0})},Zs=function(e){return{type:Oa,items:e.map(parseInt)}},eu=function(e){return{type:ka,onoff:e}},tu=function(e){return{type:Sa,onoff:e}},nu=function(e){return"url"===e||"pass"===e},ru=function(e){var t=e.agent,n=e.referrer,r=e.login,o=e.match_type,a=e.target,i=e.action_type;return"agent"===o?{agent:t.agent,regex:t.regex,url_from:nu(i)?t.url_from:"",url_notfrom:nu(i)?t.url_notfrom:""}:"referrer"===o?{referrer:n.referrer,regex:n.regex,url_from:nu(i)?n.url_from:"",url_notfrom:nu(i)?n.url_notfrom:""}:"login"===o&&nu(i)?{logged_in:r.logged_in,logged_out:r.logged_out}:"url"===o&&nu(i)?{url:a.url}:""},ou=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}},au=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},iu=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}}(),lu=[{value:"url",name:Object(sr.translate)("URL only")},{value:"login",name:Object(sr.translate)("URL and login status")},{value:"referrer",name:Object(sr.translate)("URL and referrer")},{value:"agent",name:Object(sr.translate)("URL and user agent")}],su=[{value:"url",name:Object(sr.translate)("Redirect to URL")},{value:"random",name:Object(sr.translate)("Redirect to random post")},{value:"pass",name:Object(sr.translate)("Pass-through")},{value:"error",name:Object(sr.translate)("Error (404)")},{value:"nothing",name:Object(sr.translate)("Do nothing")}],uu=[{value:301,name:Object(sr.translate)("301 - Moved Permanently")},{value:302,name:Object(sr.translate)("302 - Found")},{value:307,name:Object(sr.translate)("307 - Temporary Redirect")},{value:308,name:Object(sr.translate)("308 - Permanent Redirect")}],cu=[{value:401,name:Object(sr.translate)("401 - Unauthorized")},{value:404,name:Object(sr.translate)("404 - Not Found")},{value:410,name:Object(sr.translate)("410 - Gone")}],pu=function(e){function t(e){Ft(this,t);var n=Mt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));n.onCustomAgent=function(e){var t=n.state.agent;t.agent=e,t.regex=!0,n.setState({agent:t})},n.handleSave=n.onSave.bind(n),n.handleChange=n.onChange.bind(n),n.handleGroup=n.onGroup.bind(n),n.handleData=n.onSetData.bind(n),n.handleAdvanced=n.onAdvanced.bind(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)},n.state.advanced=!n.canShowAdvanced(),n}return Ut(t,e),iu(t,[{key:"getValidGroup",value:function(e){var t=this.props.group.rows;if(t.find(function(t){return t.id===e}))return e;if(t.length>0){var n=t.find(function(e){return e.default});return n?n.id:t[0].id}return 0}},{key:"reset",value:function(){this.setState(au({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:""}}}},{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:"onSetData",value:function(e,t,n){void 0!==n?this.setState(Lt({},e,Object.assign({},this.state[e],Lt({},t,n)))):this.setState(Lt({},e,t))}},{key:"onSave",value:function(e){e.preventDefault();var t=this.state,n=t.url,r=t.title,o=t.regex,a=t.match_type,i=t.action_type,l=t.group_id,s=t.action_code,u=t.position,c=this.props.group.rows,p={id:parseInt(this.props.item.id,10),url:n,title:r,regex:o,match_type:a,action_type:i,position:u,group_id:l>0?l:c[0].id,action_code:this.getCode()?parseInt(s,10):0,action_data:ru(this.state)};p.id?this.props.onSave(p.id,p):this.props.onCreate(p),this.props.onCancel?this.props.onCancel(e):this.reset(),this.props.childSave&&this.props.childSave()}},{key:"onAdvanced",value:function(e){e.preventDefault(),this.setState({advanced:!this.state.advanced})}},{key:"onGroup",value:function(e){this.setState({group_id:parseInt(e.target.value,10)})}},{key:"onChange",value:function(e){var t=e.target,n="checkbox"===t.type?t.checked:t.value;if(this.setState(Lt({},t.name,n)),"action_type"===t.name&&"url"===t.value&&this.setState({action_code:301}),"action_type"===t.name&&"error"===t.value&&this.setState({action_code:404}),"match_type"===t.name){var r=au({},this.resetActionData());"login"===t.value?this.setState(au({},r,{action_type:"url"})):this.setState(r)}}},{key:"getCode",value:function(){return"error"===this.state.action_type?or.a.createElement("select",{name:"action_code",value:this.state.action_code,onChange:this.handleChange},cu.map(function(e){return or.a.createElement("option",{key:e.value,value:e.value},e.name)})):"url"===this.state.action_type||"random"===this.state.action_type?or.a.createElement("select",{name:"action_code",value:this.state.action_code,onChange:this.handleChange},uu.map(function(e){return or.a.createElement("option",{key:e.value,value:e.value},e.name)})):null}},{key:"getMatchExtra",value:function(){switch(this.state.match_type){case"agent":return or.a.createElement(Ss,{agent:this.state.agent.agent,regex:this.state.agent.regex,onChange:this.handleData,onCustomAgent:this.onCustomAgent});case"referrer":return or.a.createElement(Ts,{referrer:this.state.referrer.referrer,regex:this.state.referrer.regex,onChange:this.handleData})}return null}},{key:"getTarget",value:function(){var e=this.state,t=e.match_type,n=e.action_type;if(nu(n)){if("agent"===t)return or.a.createElement(Is,{url_from:this.state.agent.url_from,url_notfrom:this.state.agent.url_notfrom,onChange:this.handleData});if("referrer"===t)return or.a.createElement(Ls,{url_from:this.state.referrer.url_from,url_notfrom:this.state.referrer.url_notfrom,onChange:this.handleData});if("login"===t)return or.a.createElement(Us,{logged_in:this.state.login.logged_in,logged_out:this.state.login.logged_out,onChange:this.handleData});if("url"===t)return or.a.createElement(zs,{target:this.state.target,onChange:this.handleData})}return null}},{key:"getTitle",value:function(){var e=this.state.title;return or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Title")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"title",value:e,onChange:this.handleChange})))}},{key:"getMatch",value:function(){var e=this.state.match_type;return or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Match")),or.a.createElement("td",null,or.a.createElement("select",{name:"match_type",value:e,onChange:this.handleChange},lu.map(function(e){return or.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&&!nu(e.value))};return or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("When matched")),or.a.createElement("td",null,or.a.createElement("select",{name:"action_type",value:t,onChange:this.handleChange},su.filter(o).map(function(e){return or.a.createElement("option",{value:e.value,key:e.value},e.name)})),r&&or.a.createElement("span",null," ",or.a.createElement("strong",null,Object(sr.translate)("with HTTP code"))," ",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 or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Group")),or.a.createElement("td",null,or.a.createElement(ri,{name:"group",value:t,items:Hs(e),onChange:this.handleGroup})," ",r&&or.a.createElement("strong",null,Object(sr.translate)("Position")),r&&or.a.createElement("input",{type:"number",value:n,name:"position",min:"0",size:"3",onChange:this.handleChange})))}},{key:"canSave",value:function(){if(""===Redirectioni10n.autoGenerate&&""===this.state.url)return!1;if(nu(this.state.action_type)){if("url"===this.state.match_type&&""===this.state.target)return!1;if("referrer"===this.state.match_type&&""===this.state.referrer.url_from&&""===this.state.referrer.url_notfrom)return!1;if("login"===this.state.match_type&&""===this.state.login.logged_in&&""===this.state.login.logged_out)return!1;if("agent"===this.state.match_type&&""===this.state.agent.url_from&&""===this.state.agent.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(sr.translate)("Save"):a,l=o.onCancel,s=o.autoFocus,u=void 0!==s&&s,c=o.addTop,p=o.onClose;return or.a.createElement("form",{onSubmit:this.handleSave},or.a.createElement("table",{className:"edit edit-redirection"},or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Source URL")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"url",value:t,onChange:this.handleChange,autoFocus:u}),"  ",or.a.createElement("label",null,Object(sr.translate)("Regex")," ",or.a.createElement("sup",null,or.a.createElement("a",{tabIndex:"-1",target:"_blank",rel:"noopener noreferrer",href:"https://redirection.me/support/redirect-regular-expressions/"},"?"))," ",or.a.createElement("input",{type:"checkbox",name:"regex",checked:n,onChange:this.handleChange})))),r&&this.getTitle(),r&&this.getMatch(),r&&this.getMatchExtra(),r&&this.getTargetCode(),this.getTarget(),this.getGroup(),this.props.children&&this.props.children,or.a.createElement("tr",null,or.a.createElement("th",null),or.a.createElement("td",null,or.a.createElement("div",{className:"table-actions"},or.a.createElement("input",{className:"button-primary",type:"submit",name:"save",value:i,disabled:!this.canSave()}),"  ",l&&or.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(sr.translate)("Cancel"),onClick:l}),c&&or.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(sr.translate)("Close"),onClick:p})," ",this.canShowAdvanced()&&!1!==this.props.advanced&&or.a.createElement("a",{href:"#",onClick:this.handleAdvanced,className:"advanced",title:Object(sr.translate)("Show advanced options")},"⚙")))))))}}]),t}(or.a.Component),fu=Dr(Bt,zt)(pu),du=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}}(),hu=function(e){function t(e){Ht(this,t);var n=Vt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return 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.handleSelected=n.onSelect.bind(n),n.handleDelete=n.onDelete.bind(n),n.handleAdd=n.onAdd.bind(n),n.handleShow=n.onShow.bind(n),n.handleClose=n.onClose.bind(n),n.handleSave=n.onSave.bind(n),n.handleDeleteLog=n.onDeleteLog.bind(n),n.state={editing:!1,delete_log:!1,showMap:!1,showAgent:!1},n}return Gt(t,e),du(t,[{key:"onSelect",value:function(){this.props.onSetSelected([this.props.item.id])}},{key:"onDelete",value:function(e){e.preventDefault(),this.props.onDelete(this.props.item.id)}},{key:"onShow",value:function(e){e.preventDefault(),this.props.onShowIP(this.props.item.ip)}},{key:"onAdd",value:function(e){e.preventDefault(),this.setState({editing:!0})}},{key:"onClose",value:function(){this.setState({editing:!1})}},{key:"onDeleteLog",value:function(e){this.setState({delete_log:e.target.checked})}},{key:"onSave",value:function(){this.state.delete_log&&this.props.onDeleteFilter(this.props.item.url)}},{key:"renderEdit",value:function(){return or.a.createElement(mi,{show:this.state.editing,onClose:this.handleClose,width:"700"},or.a.createElement("div",{className:"add-new"},or.a.createElement(fu,{item:ou(this.props.item.url,0),saveButton:Object(sr.translate)("Add Redirect"),advanced:!1,onCancel:this.handleClose,childSave:this.handleSave,autoFocus:!0},or.a.createElement("tr",null,or.a.createElement("th",null,Object(sr.translate)("Delete 404s")),or.a.createElement("td",null,or.a.createElement("label",null,or.a.createElement("input",{type:"checkbox",name:"delete_log",checked:this.state.delete_log,onChange:this.handleDeleteLog}),Object(sr.translate)("Delete all logs for this 404")))))))}},{key:"renderMap",value:function(){return or.a.createElement(mi,{show:this.state.showMap,onClose:this.closeMap,width:"800",padding:!1},or.a.createElement(Kl,{ip:this.props.item.ip}))}},{key:"renderAgent",value:function(){return or.a.createElement(mi,{show:this.state.showAgent,onClose:this.closeAgent,width:"800"},or.a.createElement(Jl,{agent:this.props.item.agent}))}},{key:"renderIp",value:function(e){return e?or.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(e),onClick:this.showMap},e):"-"}},{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.id,s=this.props,u=s.selected,c=s.status,p=c===Vr,f="STATUS_SAVING"===c,d=p||f,h=[or.a.createElement("a",{href:"#",onClick:this.handleDelete,key:"0"},Object(sr.translate)("Delete")),or.a.createElement("a",{href:"#",onClick:this.handleAdd,key:"1"},Object(sr.translate)("Add Redirect"))];return r&&h.unshift(or.a.createElement("a",{href:"https://redirect.li/map/?ip="+encodeURIComponent(r),onClick:this.showMap,key:"2"},Object(sr.translate)("Geo Info"))),i&&h.unshift(or.a.createElement("a",{href:"https://redirect.li/useragent/?agent="+encodeURIComponent(i),onClick:this.showAgent,key:"3"},Object(sr.translate)("Agent Info"))),or.a.createElement("tr",{className:d?"disabled":""},or.a.createElement("th",{scope:"row",className:"check-column"},!f&&or.a.createElement("input",{type:"checkbox",name:"item[]",value:l,disabled:p,checked:u,onClick:this.handleSelected}),f&&or.a.createElement(Vl,{size:"small"})),or.a.createElement("td",{className:"column-date"},t,or.a.createElement("br",null),n),or.a.createElement("td",{className:"column-url column-primary"},or.a.createElement("a",{href:a,rel:"noreferrer noopener",target:"_blank"},a.substring(0,100)),or.a.createElement(jl,{disabled:f},h.reduce(function(e,t){return[e," | ",t]})),this.state.editing&&this.renderEdit(),this.state.showMap&&this.renderMap(),this.state.showAgent&&this.renderAgent()),or.a.createElement("td",{className:"column-referrer"},or.a.createElement(_s,{url:o}),o&&or.a.createElement("br",null),or.a.createElement("span",null,i)),or.a.createElement("td",{className:"column-ip"},this.renderIp(r),or.a.createElement(jl,null,r&&or.a.createElement("a",{href:"#",onClick:this.handleShow},Object(sr.translate)("Filter by IP")))))}}]),t}(or.a.Component),mu=Dr(Wt,qt)(hu),gu={store:"group",saving:ma,saved:ba,failed:ga,order:"name"},bu={store:"group",saving:ca,saved:pa,failed:fa,order:"name"},yu=function(e){return No(ko.group.create,e,gu)},vu=function(e,t){return Do(ko.group.update,e,t,gu)},Eu=function(e,t){return Po(ko.bulk.group,e,t,gu)},wu=function(e){return function(t,n){return Ao(ko.group.list,t,bu,e,n().group)}},Ou=function(e,t){return wu({orderby:e,direction:t})},ku=function(e){return wu({page:e})},_u=function(e){return wu({filter:e,filterBy:"",page:0,orderby:""})},xu=function(e,t){return wu({filterBy:e,filter:t,orderby:"",page:0})},Cu=function(e){return{type:da,items:e.map(parseInt)}},Su=function(e){return{type:ha,onoff:e}},ju=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}}(),Pu=[{name:"cb",check:!0},{name:"date",title:Object(sr.translate)("Date")},{name:"url",title:Object(sr.translate)("Source URL"),primary:!0},{name:"referrer",title:Object(sr.translate)("Referrer / User Agent"),sortable:!1},{name:"ip",title:Object(sr.translate)("IP"),sortable:!1}],Tu=[{id:"delete",name:Object(sr.translate)("Delete")}],Nu=function(e){function t(e){$t(this,t);var n=Kt(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.onLoad(e.error.table),n.props.onLoadGroups(),n.handleRender=n.renderRow.bind(n),n}return Qt(t,e),ju(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoad()}},{key:"renderRow",value:function(e,t,n){var r=this.props.error.saving,o=n.isLoading?Vr:qr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return or.a.createElement(mu,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"render",value:function(){var e=this.props.error,t=e.status,n=e.total,r=e.table,o=e.rows;return or.a.createElement("div",null,or.a.createElement(vl,{status:t,table:r,onSearch:this.props.onSearch}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction,bulk:Tu}),or.a.createElement(sl,{headers:Pu,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,status:t,onChangePage:this.props.onChangePage,onAction:this.props.onTableAction},or.a.createElement(rs,{enabled:o.length>0},or.a.createElement(xl,{logType:"404"}),or.a.createElement(Ol,{onDelete:this.props.onDeleteAll,table:r}))))}}]),t}(or.a.Component),Du=Dr(Yt,Jt)(Nu),Iu=n(63),Ru=n.n(Iu),Au="undefined"==typeof document||!document||!document.createElement||"multiple"in document.createElement("input"),Lu={rejected:{borderStyle:"solid",borderColor:"#c66",backgroundColor:"#eee"},disabled:{opacity:.5},active:{borderStyle:"solid",borderColor:"#6c6",backgroundColor:"#eee"},default:{width:200,height:200,borderWidth:2,borderColor:"#666",borderStyle:"dashed",borderRadius:5}},Fu=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},Mu=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}}(),Uu=function(e){function t(e,n){an(this,t);var r=ln(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.renderChildren=function(e,t,n,o){return"function"==typeof e?e(Fu({},r.state,{isDragActive:t,isDragAccept:n,isDragReject:o})):e},r.composeHandlers=r.composeHandlers.bind(r),r.onClick=r.onClick.bind(r),r.onDocumentDrop=r.onDocumentDrop.bind(r),r.onDragEnter=r.onDragEnter.bind(r),r.onDragLeave=r.onDragLeave.bind(r),r.onDragOver=r.onDragOver.bind(r),r.onDragStart=r.onDragStart.bind(r),r.onDrop=r.onDrop.bind(r),r.onFileDialogCancel=r.onFileDialogCancel.bind(r),r.onInputElementClick=r.onInputElementClick.bind(r),r.setRef=r.setRef.bind(r),r.setRefs=r.setRefs.bind(r),r.isFileDialogActive=!1,r.state={draggedFiles:[],acceptedFiles:[],rejectedFiles:[]},r}return sn(t,e),Mu(t,[{key:"componentDidMount",value:function(){var e=this.props.preventDropOnDocument;this.dragTargets=[],e&&(document.addEventListener("dragover",nn,!1),document.addEventListener("drop",this.onDocumentDrop,!1)),this.fileInputEl.addEventListener("click",this.onInputElementClick,!1),document.body.onfocus=this.onFileDialogCancel}},{key:"componentWillUnmount",value:function(){this.props.preventDropOnDocument&&(document.removeEventListener("dragover",nn),document.removeEventListener("drop",this.onDocumentDrop)),null!=this.fileInputEl&&this.fileInputEl.removeEventListener("click",this.onInputElementClick,!1),null!=document&&(document.body.onfocus=null)}},{key:"composeHandlers",value:function(e){return this.props.disabled?null:e}},{key:"onDocumentDrop",value:function(e){this.node&&this.node.contains(e.target)||(e.preventDefault(),this.dragTargets=[])}},{key:"onDragStart",value:function(e){this.props.onDragStart&&this.props.onDragStart.call(this,e)}},{key:"onDragEnter",value:function(e){e.preventDefault(),-1===this.dragTargets.indexOf(e.target)&&this.dragTargets.push(e.target),this.setState({isDragActive:!0,draggedFiles:Xt(e)}),this.props.onDragEnter&&this.props.onDragEnter.call(this,e)}},{key:"onDragOver",value:function(e){e.preventDefault(),e.stopPropagation();try{e.dataTransfer.dropEffect=this.isFileDialogActive?"none":"copy"}catch(e){}return this.props.onDragOver&&this.props.onDragOver.call(this,e),!1}},{key:"onDragLeave",value:function(e){var t=this;e.preventDefault(),this.dragTargets=this.dragTargets.filter(function(n){return n!==e.target&&t.node.contains(n)}),this.dragTargets.length>0||(this.setState({isDragActive:!1,draggedFiles:[]}),this.props.onDragLeave&&this.props.onDragLeave.call(this,e))}},{key:"onDrop",value:function(e){var t=this,n=this.props,r=n.onDrop,o=n.onDropAccepted,a=n.onDropRejected,i=n.multiple,l=n.disablePreview,s=n.accept,u=Xt(e),c=[],p=[];e.preventDefault(),this.dragTargets=[],this.isFileDialogActive=!1,u.forEach(function(e){if(!l)try{e.preview=window.URL.createObjectURL(e)}catch(e){}Zt(e,s)&&en(e,t.props.maxSize,t.props.minSize)?c.push(e):p.push(e)}),i||p.push.apply(p,on(c.splice(1))),r&&r.call(this,c,p,e),p.length>0&&a&&a.call(this,p,e),c.length>0&&o&&o.call(this,c,e),this.draggedFiles=null,this.setState({isDragActive:!1,draggedFiles:[],acceptedFiles:c,rejectedFiles:p})}},{key:"onClick",value:function(e){var t=this.props,n=t.onClick;t.disableClick||(e.stopPropagation(),n&&n.call(this,e),setTimeout(this.open.bind(this),0))}},{key:"onInputElementClick",value:function(e){e.stopPropagation(),this.props.inputProps&&this.props.inputProps.onClick&&this.props.inputProps.onClick()}},{key:"onFileDialogCancel",value:function(){var e=this.props.onFileDialogCancel,t=this.fileInputEl,n=this.isFileDialogActive;e&&n&&setTimeout(function(){t.files.length||(n=!1,e())},300)}},{key:"setRef",value:function(e){this.node=e}},{key:"setRefs",value:function(e){this.fileInputEl=e}},{key:"open",value:function(){this.isFileDialogActive=!0,this.fileInputEl.value=null,this.fileInputEl.click()}},{key:"render",value:function(){var e=this.props,t=e.accept,n=e.acceptClassName,r=e.activeClassName,o=e.children,a=e.disabled,i=e.disabledClassName,l=e.inputProps,s=e.multiple,u=e.name,c=e.rejectClassName,p=rn(e,["accept","acceptClassName","activeClassName","children","disabled","disabledClassName","inputProps","multiple","name","rejectClassName"]),f=p.acceptStyle,d=p.activeStyle,h=p.className,m=void 0===h?"":h,g=p.disabledStyle,b=p.rejectStyle,y=p.style,v=rn(p,["acceptStyle","activeStyle","className","disabledStyle","rejectStyle","style"]),E=this.state,w=E.isDragActive,O=E.draggedFiles,k=O.length,_=s||k<=1,x=k>0&&tn(O,this.props.accept),C=k>0&&(!x||!_),S=!(m||y||d||f||b||g);w&&r&&(m+=" "+r),x&&n&&(m+=" "+n),C&&c&&(m+=" "+c),a&&i&&(m+=" "+i),S&&(y=Lu.default,d=Lu.active,f=y.active,b=Lu.rejected,g=Lu.disabled);var j=Fu({},y);d&&w&&(j=Fu({},y,d)),f&&x&&(j=Fu({},j,f)),b&&C&&(j=Fu({},j,b)),g&&a&&(j=Fu({},y,g));var P={accept:t,disabled:a,type:"file",style:{display:"none"},multiple:Au&&s,ref:this.setRefs,onChange:this.onDrop,autoComplete:"off"};u&&u.length&&(P.name=u);var T=(v.acceptedFiles,v.preventDropOnDocument,v.disablePreview,v.disableClick,v.onDropAccepted,v.onDropRejected,v.onFileDialogCancel,v.maxSize,v.minSize,rn(v,["acceptedFiles","preventDropOnDocument","disablePreview","disableClick","onDropAccepted","onDropRejected","onFileDialogCancel","maxSize","minSize"]));return or.a.createElement("div",Fu({className:m,style:j},T,{onClick:this.composeHandlers(this.onClick),onDragStart:this.composeHandlers(this.onDragStart),onDragEnter:this.composeHandlers(this.onDragEnter),onDragOver:this.composeHandlers(this.onDragOver),onDragLeave:this.composeHandlers(this.onDragLeave),onDrop:this.composeHandlers(this.onDrop),ref:this.setRef,"aria-disabled":a}),this.renderChildren(o,w,x,C),or.a.createElement("input",Fu({},l,P)))}}]),t}(or.a.Component),Bu=Uu;Uu.propTypes={accept:pr.a.string,children:pr.a.oneOfType([pr.a.node,pr.a.func]),disableClick:pr.a.bool,disabled:pr.a.bool,disablePreview:pr.a.bool,preventDropOnDocument:pr.a.bool,inputProps:pr.a.object,multiple:pr.a.bool,name:pr.a.string,maxSize:pr.a.number,minSize:pr.a.number,className:pr.a.string,activeClassName:pr.a.string,acceptClassName:pr.a.string,rejectClassName:pr.a.string,disabledClassName:pr.a.string,style:pr.a.object,activeStyle:pr.a.object,acceptStyle:pr.a.object,rejectStyle:pr.a.object,disabledStyle:pr.a.object,onClick:pr.a.func,onDrop:pr.a.func,onDropAccepted:pr.a.func,onDropRejected:pr.a.func,onDragStart:pr.a.func,onDragEnter:pr.a.func,onDragOver:pr.a.func,onDragLeave:pr.a.func,onFileDialogCancel:pr.a.func},Uu.defaultProps={preventDropOnDocument:!0,disabled:!1,disablePreview:!1,disableClick:!1,multiple:!0,maxSize:1/0,minSize:0};var zu=function(e,t){return function(n){return So(ko.export.file(e,t)).then(function(e){n({type:ta,data:e.data})}).catch(function(e){n({type:aa,error:e})}),n({type:na})}},Hu=function(e){return document.location.href=e,{type:"NOTHING"}},Vu=function(e,t){return function(n){return So(ko.import.upload(t,e)).then(function(e){n({type:oa,total:e.imported})}).catch(function(e){n({type:aa,error:e})}),n({type:ra,file:e})}},Gu=function(){return{type:ia}},qu=function(e){return{type:la,file:e}},Wu=function(){return function(e){So(ko.import.pluginList()).then(function(t){e({type:sa,importers:t.importers})}).catch(function(t){e({type:aa,error:t})})}},$u=function(e){return function(t){return So(ko.import.pluginImport(e)).then(function(e){t({type:oa,total:e.imported})}).catch(function(e){t({type:aa,error:e})}),t({type:ra})}},Ku=function(e){var t=e.plugin,n=e.doImport,r=t.name,o=t.total,a=function(){n(t)};return or.a.createElement("div",{className:"plugin-importer"},or.a.createElement("p",null,or.a.createElement("strong",null,r)," (",Object(sr.translate)("total = ")+o," )"),or.a.createElement("button",{onClick:a,className:"button-secondary"},Object(sr.translate)("Import from %s",{args:r})))},Qu=Ku,Yu=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}}(),Ju=function(e,t){return Redirectioni10n.pluginRoot+"&sub=io&export="+e+"&exporter="+t},Xu=function(e){function t(e){cn(this,t);var n=pn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.doImport=function(e){confirm(Object(sr.translate)("Are you sure you want to import from %s?",{args:e.name}))&&n.props.pluginImport(e.id)},n.props.onLoadGroups(),n.props.onLoadImport(),n.setDropzone=n.onSetZone.bind(n),n.handleDrop=n.onDrop.bind(n),n.handleOpen=n.onOpen.bind(n),n.handleInput=n.onInput.bind(n),n.handleCancel=n.onCancel.bind(n),n.handleImport=n.onImport.bind(n),n.handleEnter=n.onEnter.bind(n),n.handleLeave=n.onLeave.bind(n),n.handleView=n.onView.bind(n),n.handleDownload=n.onDownload.bind(n),n.state={group:0,hover:!1,module:"all",format:"json"},n}return fn(t,e),Yu(t,[{key:"onView",value:function(){this.props.onExport(this.state.module,this.state.format)}},{key:"onDownload",value:function(){this.props.onDownloadFile(Ju(this.state.module,this.state.format))}},{key:"onEnter",value:function(){this.props.io.importingStatus!==Vr&&this.setState({hover:!0})}},{key:"onLeave",value:function(){this.setState({hover:!1})}},{key:"onImport",value:function(){this.props.onImport(this.props.io.file,this.state.group)}},{key:"onCancel",value:function(){this.setState({hover:!1}),this.props.onClearFile()}},{key:"onInput",value:function(e){var t=e.target;this.setState(un({},t.name,t.value)),"module"===t.name&&"everything"===t.value&&this.setState({format:"json"})}},{key:"onSetZone",value:function(e){this.dropzone=e}},{key:"onDrop",value:function(e){var t=this.props.io.importingStatus;e.length>0&&t!==Vr&&this.props.onAddFile(e[0]),this.setState({hover:!1,group:this.props.group.rows[0].id})}},{key:"onOpen",value:function(){this.dropzone.open()}},{key:"renderGroupSelect",value:function(){var e=this.props.group.rows;return or.a.createElement("div",{className:"groups"},Object(sr.translate)("Import to group")," ",or.a.createElement(ri,{items:Hs(e),name:"group",value:this.state.group,onChange:this.handleInput}))}},{key:"renderInitialDrop",value:function(){return or.a.createElement("div",null,or.a.createElement("h3",null,Object(sr.translate)("Import a CSV, .htaccess, or JSON file.")),or.a.createElement("p",null,Object(sr.translate)("Click 'Add File' or drag and drop here.")),or.a.createElement("button",{type:"button",className:"button-secondary",onClick:this.handleOpen},Object(sr.translate)("Add File")))}},{key:"renderDropBeforeUpload",value:function(){var e=this.props.io.file,t="application/json"===e.type;return or.a.createElement("div",null,or.a.createElement("h3",null,Object(sr.translate)("File selected")),or.a.createElement("p",null,or.a.createElement("code",null,e.name)),!t&&this.renderGroupSelect(),or.a.createElement("button",{className:"button-primary",onClick:this.handleImport},Object(sr.translate)("Upload")),"  ",or.a.createElement("button",{className:"button-secondary",onClick:this.handleCancel},Object(sr.translate)("Cancel")))}},{key:"renderUploading",value:function(){var e=this.props.io.file;return or.a.createElement("div",null,or.a.createElement("h3",null,Object(sr.translate)("Importing")),or.a.createElement("p",null,or.a.createElement("code",null,e.name)),or.a.createElement("div",{className:"is-placeholder"},or.a.createElement("div",{className:"placeholder-loading"})))}},{key:"renderUploaded",value:function(){var e=this.props.io.lastImport;return or.a.createElement("div",null,or.a.createElement("h3",null,Object(sr.translate)("Finished importing")),or.a.createElement("p",null,Object(sr.translate)("Total redirects imported:")," ",e),0===e&&or.a.createElement("p",null,Object(sr.translate)("Double-check the file is the correct format!")),or.a.createElement("button",{className:"button-secondary",onClick:this.handleCancel},Object(sr.translate)("OK")))}},{key:"renderDropzoneContent",value:function(){var e=this.props.io,t=e.importingStatus,n=e.lastImport,r=e.file;return t===Vr?this.renderUploading():t===qr&&!1!==n&&!1===r?this.renderUploaded():!1===r?this.renderInitialDrop():this.renderDropBeforeUpload()}},{key:"renderExport",value:function(e){return or.a.createElement("div",null,or.a.createElement("textarea",{className:"module-export",rows:"14",readOnly:!0,value:e}),or.a.createElement("input",{className:"button-secondary",type:"submit",value:Object(sr.translate)("Close"),onClick:this.handleCancel}))}},{key:"renderExporting",value:function(){return or.a.createElement("div",{className:"loader-wrapper loader-textarea"},or.a.createElement("div",{className:"placeholder-loading"}))}},{key:"renderImporters",value:function(e){var t=this;return or.a.createElement("div",null,or.a.createElement("h3",null,Object(sr.translate)("Plugin Importers")),or.a.createElement("p",null,Object(sr.translate)("The following redirect plugins were detected on your site and can be imported from.")),e.map(function(e,n){return or.a.createElement(Qu,{plugin:e,key:n,doImport:t.doImport})}))}},{key:"render",value:function(){var e=this.state.hover,t=this.props.io,n=t.importingStatus,r=t.file,o=t.exportData,a=t.exportStatus,i=t.importers,l=fi()({dropzone:!0,"dropzone-dropped":!1!==r,"dropzone-importing":n===Vr,"dropzone-hover":e});return or.a.createElement("div",null,or.a.createElement("h2",null,Object(sr.translate)("Import")),or.a.createElement(Bu,{ref:this.setDropzone,onDrop:this.handleDrop,onDragLeave:this.handleLeave,onDragEnter:this.handleEnter,className:l,disableClick:!0,disablePreview:!0,multiple:!1},this.renderDropzoneContent()),or.a.createElement("p",null,Object(sr.translate)("All imports will be appended to the current database.")),or.a.createElement("div",{className:"inline-notice notice-warning"},or.a.createElement("p",null,Object(sr.translate)("{{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).",{components:{code:or.a.createElement("code",null),strong:or.a.createElement("strong",null)}}))),or.a.createElement("h2",null,Object(sr.translate)("Export")),or.a.createElement("p",null,Object(sr.translate)("Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).")),or.a.createElement("select",{name:"module",onChange:this.handleInput,value:this.state.module},or.a.createElement("option",{value:"0"},Object(sr.translate)("Everything")),or.a.createElement("option",{value:"1"},Object(sr.translate)("WordPress redirects")),or.a.createElement("option",{value:"2"},Object(sr.translate)("Apache redirects")),or.a.createElement("option",{value:"3"},Object(sr.translate)("Nginx redirects"))),or.a.createElement("select",{name:"format",onChange:this.handleInput,value:this.state.format},or.a.createElement("option",{value:"csv"},Object(sr.translate)("CSV")),or.a.createElement("option",{value:"apache"},Object(sr.translate)("Apache .htaccess")),or.a.createElement("option",{value:"nginx"},Object(sr.translate)("Nginx rewrite rules")),or.a.createElement("option",{value:"json"},Object(sr.translate)("Redirection JSON")))," ",or.a.createElement("button",{className:"button-primary",onClick:this.handleView},Object(sr.translate)("View"))," ",or.a.createElement("button",{className:"button-secondary",onClick:this.handleDownload},Object(sr.translate)("Download")),a===Vr&&this.renderExporting(),o&&a!==Vr&&this.renderExport(o),or.a.createElement("p",null,Object(sr.translate)("Log files can be exported from the log pages.")),i.length>0&&this.renderImporters(i))}}]),t}(or.a.Component),Zu=Dr(dn,hn)(Xu),ec=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}}(),tc=function(e){function t(e){mn(this,t);var n=gn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={selected:e.selected},n.handleChange=n.onChange.bind(n),n.handleSubmit=n.onSubmit.bind(n),n}return bn(t,e),ec(t,[{key:"componentWillUpdate",value:function(e){e.selected!==this.state.selected&&this.setState({selected:e.selected})}},{key:"onChange",value:function(e){this.setState({selected:e.target.value})}},{key:"onSubmit",value:function(){this.props.onFilter(this.state.selected)}},{key:"render",value:function(){var e=this.props,t=e.options,n=e.isEnabled;return or.a.createElement("div",{className:"alignleft actions"},or.a.createElement(ri,{items:t,value:this.state.selected,name:"filter",onChange:this.handleChange,isEnabled:this.props.isEnabled}),or.a.createElement("button",{className:"button",onClick:this.handleSubmit,disabled:!n},Object(sr.translate)("Filter")))}}]),t}(or.a.Component),nc=tc,rc=function(){return[{value:1,text:"WordPress"},{value:2,text:"Apache"},{value:3,text:"Nginx"}]},oc=function(e){var t=rc().find(function(t){return t.value===parseInt(e,10)});return t?t.text:""},ac=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}}(),ic=function(e){function t(e){yn(this,t);var n=vn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={editing:!1,name:e.item.name,moduleId:e.item.module_id},n.handleSelected=n.onSelected.bind(n),n.handleEdit=n.onEdit.bind(n),n.handleSave=n.onSave.bind(n),n.handleDelete=n.onDelete.bind(n),n.handleDisable=n.onDisable.bind(n),n.handleEnable=n.onEnable.bind(n),n.handleChange=n.onChange.bind(n),n.handleSelect=n.onSelect.bind(n),n}return En(t,e),ac(t,[{key:"componentWillUpdate",value:function(e){this.props.item.name!==e.item.name&&this.setState({name:e.item.name,moduleId:e.item.module_id})}},{key:"onEdit",value:function(e){e.preventDefault(),this.setState({editing:!this.state.editing})}},{key:"onDelete",value:function(e){e.preventDefault(),this.props.onTableAction("delete",this.props.item.id)}},{key:"onDisable",value:function(e){e.preventDefault(),this.props.onTableAction("disable",this.props.item.id)}},{key:"onEnable",value:function(e){e.preventDefault(),this.props.onTableAction("enable",this.props.item.id)}},{key:"onSelected",value:function(){this.props.onSetSelected([this.props.item.id])}},{key:"onChange",value:function(e){var t=e.target;this.setState({name:t.value})}},{key:"onSave",value:function(e){this.onEdit(e),this.props.onSaveGroup(this.props.item.id,{name:this.state.name,moduleId:this.state.moduleId})}},{key:"onSelect",value:function(e){var t=e.target;this.setState({moduleId:parseInt(t.value,10)})}},{key:"renderLoader",value:function(){return or.a.createElement("div",{className:"loader-wrapper"},or.a.createElement("div",{className:"placeholder-loading loading-small",style:{top:"0px"}}))}},{key:"renderActions",value:function(e){var t=this.props.item,n=t.id,r=t.enabled;return or.a.createElement(jl,{disabled:e},or.a.createElement("a",{href:"#",onClick:this.handleEdit},Object(sr.translate)("Edit"))," | ",or.a.createElement("a",{href:"#",onClick:this.handleDelete},Object(sr.translate)("Delete"))," | ",or.a.createElement("a",{href:Redirectioni10n.pluginRoot+"&filterby=group&filter="+n},Object(sr.translate)("View Redirects"))," | ",r&&or.a.createElement("a",{href:"#",onClick:this.handleDisable},Object(sr.translate)("Disable")),!r&&or.a.createElement("a",{href:"#",onClick:this.handleEnable},Object(sr.translate)("Enable")))}},{key:"renderEdit",value:function(){return or.a.createElement("form",{onSubmit:this.handleSave},or.a.createElement("table",{className:"edit"},or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",{width:"70"},Object(sr.translate)("Name")),or.a.createElement("td",null,or.a.createElement("input",{type:"text",name:"name",value:this.state.name,onChange:this.handleChange}))),or.a.createElement("tr",null,or.a.createElement("th",{width:"70"},Object(sr.translate)("Module")),or.a.createElement("td",null,or.a.createElement(ri,{name:"module_id",value:this.state.moduleId,onChange:this.handleSelect,items:rc()}))),or.a.createElement("tr",null,or.a.createElement("th",{width:"70"}),or.a.createElement("td",null,or.a.createElement("div",{className:"table-actions"},or.a.createElement("input",{className:"button-primary",type:"submit",name:"save",value:Object(sr.translate)("Save")}),"  ",or.a.createElement("input",{className:"button-secondary",type:"submit",name:"cancel",value:Object(sr.translate)("Cancel"),onClick:this.handleEdit})))))))}},{key:"getName",value:function(e,t){return t?e:or.a.createElement("strike",null,e)}},{key:"render",value:function(){var e=this.props.item,t=e.name,n=e.redirects,r=e.id,o=e.module_id,a=e.enabled,i=this.props,l=i.selected,s=i.status,u=s===Vr,c="STATUS_SAVING"===s,p=!a||u||c;return or.a.createElement("tr",{className:p?"disabled":""},or.a.createElement("th",{scope:"row",className:"check-column"},!c&&or.a.createElement("input",{type:"checkbox",name:"item[]",value:r,disabled:u,checked:l,onClick:this.handleSelected}),c&&or.a.createElement(Vl,{size:"small"})),or.a.createElement("td",{className:"column-primary column-name"},!this.state.editing&&this.getName(t,a),this.state.editing?this.renderEdit():this.renderActions(c)),or.a.createElement("td",{className:"column-redirects"},n),or.a.createElement("td",{className:"column-module"},oc(o)))}}]),t}(or.a.Component),lc=Dr(null,wn)(ic),sc=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}}(),uc=[{name:"cb",check:!0},{name:"name",title:Object(sr.translate)("Name"),primary:!0},{name:"redirects",title:Object(sr.translate)("Redirects"),sortable:!1},{name:"module",title:Object(sr.translate)("Module"),sortable:!1}],cc=[{id:"delete",name:Object(sr.translate)("Delete")},{id:"enable",name:Object(sr.translate)("Enable")},{id:"disable",name:Object(sr.translate)("Disable")}],pc=function(e){function t(e){On(this,t);var n=kn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.props.onLoadGroups(),n.state={name:"",moduleId:1},n.handleName=n.onChange.bind(n),n.handleModule=n.onModule.bind(n),n.handleSubmit=n.onSubmit.bind(n),n.handleRender=n.renderRow.bind(n),n}return _n(t,e),sc(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoadGroups()}},{key:"renderRow",value:function(e,t,n){var r=this.props.group.saving,o=n.isLoading?Vr:qr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return or.a.createElement(lc,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"onChange",value:function(e){this.setState({name:e.target.value})}},{key:"onModule",value:function(e){this.setState({moduleId:e.target.value})}},{key:"onSubmit",value:function(e){e.preventDefault(),this.props.onCreate({id:0,name:this.state.name,moduleId:this.state.moduleId}),this.setState({name:""})}},{key:"getModules",value:function(){return[{value:"",text:Object(sr.translate)("All modules")}].concat(rc())}},{key:"render",value:function(){var e=this.props.group,t=e.status,n=e.total,r=e.table,o=e.rows,a=e.saving,i=-1!==a.indexOf(0);return or.a.createElement("div",null,or.a.createElement(vl,{status:t,table:r,onSearch:this.props.onSearch,ignoreFilter:["module"]}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,status:t,bulk:cc},or.a.createElement(nc,{selected:r.filter,options:this.getModules(),onFilter:this.props.onFilter,isEnabled:!0})),or.a.createElement(sl,{headers:uc,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,status:t}),or.a.createElement("h2",null,Object(sr.translate)("Add Group")),or.a.createElement("p",null,Object(sr.translate)("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.")),or.a.createElement("form",{onSubmit:this.handleSubmit},or.a.createElement("table",{className:"form-table"},or.a.createElement("tbody",null,or.a.createElement("tr",null,or.a.createElement("th",{style:{width:"50px"}},Object(sr.translate)("Name")),or.a.createElement("td",null,or.a.createElement("input",{size:"30",className:"regular-text",type:"text",name:"name",value:this.state.name,onChange:this.handleName,disabled:i}),or.a.createElement(ri,{name:"id",value:this.state.moduleId,onChange:this.handleModule,items:rc(),disabled:i})," ",or.a.createElement("input",{className:"button-primary",type:"submit",name:"add",value:"Add",disabled:i||""===this.state.name})))))))}}]),t}(or.a.Component),fc=Dr(xn,Cn)(pc),dc=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}}(),hc=function(e){function t(e){Sn(this,t);var n=jn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={editing:!1},n.handleEdit=n.onEdit.bind(n),n.handleDelete=n.onDelete.bind(n),n.handleDisable=n.onDisable.bind(n),n.handleEnable=n.onEnable.bind(n),n.handleCancel=n.onCancel.bind(n),n.handleSelected=n.onSelected.bind(n),n}return Pn(t,e),dc(t,[{key:"componentWillUpdate",value:function(e){e.item.id!==this.props.item.id&&this.state.editing&&this.setState({editing:!1})}},{key:"onEdit",value:function(e){e.preventDefault(),this.setState({editing:!0})}},{key:"onCancel",value:function(e){e.preventDefault(),this.setState({editing:!1})}},{key:"onDelete",value:function(e){e.preventDefault(),this.props.onTableAction("delete",this.props.item.id)}},{key:"onDisable",value:function(e){e.preventDefault(),this.props.onTableAction("disable",this.props.item.id)}},{key:"onEnable",value:function(e){e.preventDefault(),this.props.onTableAction("enable",this.props.item.id)}},{key:"onSelected",value:function(){this.props.onSetSelected([this.props.item.id])}},{key:"getMenu",value:function(){var e=this.props.item.enabled,t=[];return e&&t.push([Object(sr.translate)("Edit"),this.handleEdit]),t.push([Object(sr.translate)("Delete"),this.handleDelete]),e?t.push([Object(sr.translate)("Disable"),this.handleDisable]):t.push([Object(sr.translate)("Enable"),this.handleEnable]),t.map(function(e,t){return or.a.createElement("a",{key:t,href:"#",onClick:e[1]},e[0])}).reduce(function(e,t){return[e," | ",t]})}},{key:"getCode",value:function(){var e=this.props.item,t=e.action_code,n=e.action_type;return"pass"===n?Object(sr.translate)("pass"):"nothing"===n?"-":t}},{key:"getTarget",value:function(){var e=this.props.item,t=e.match_type,n=e.action_data;return"url"===t?n.url:null}},{key:"getUrl",value:function(e){return this.props.item.enabled?e:or.a.createElement("strike",null,e)}},{key:"getName",value:function(e,t){var n=this.props.item.regex;return t||(n?e:or.a.createElement("a",{href:e,target:"_blank",rel:"noopener noreferrer"},this.getUrl(e)))}},{key:"renderSource",value:function(e,t,n){var r=this.getName(e,t);return or.a.createElement("td",{className:"column-primary column-url has-row-actions"},r,or.a.createElement("br",null),or.a.createElement("span",{className:"target"},this.getTarget()),or.a.createElement(jl,{disabled:n},this.getMenu()))}},{key:"render",value:function(){var e=this.props.item,t=e.id,n=e.url,r=e.hits,o=e.last_access,a=e.enabled,i=e.title,l=e.position,s=this.props,u=s.selected,c=s.status,p=c===Vr,f="STATUS_SAVING"===c,d=!a||p||f,h=fi()({disabled:d});return or.a.createElement("tr",{className:h},or.a.createElement("th",{scope:"row",className:"check-column"},!f&&or.a.createElement("input",{type:"checkbox",name:"item[]",value:t,disabled:p,checked:u,onClick:this.handleSelected}),f&&or.a.createElement(Vl,{size:"small"})),or.a.createElement("td",{className:"column-code"},this.getCode()),this.state.editing?or.a.createElement("td",{className:"column-primary column-url"},or.a.createElement(fu,{item:this.props.item,onCancel:this.handleCancel})):this.renderSource(n,i,f),or.a.createElement("td",{className:"column-position"},Object(sr.numberFormat)(l)),or.a.createElement("td",{className:"column-last_count"},Object(sr.numberFormat)(r)),or.a.createElement("td",{className:"column_last_access"},o))}}]),t}(or.a.Component),mc=Dr(null,Tn)(hc),gc=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}}(),bc=[{name:"cb",check:!0},{name:"code",title:Object(sr.translate)("Type"),sortable:!1},{name:"url",title:Object(sr.translate)("URL"),primary:!0},{name:"position",title:Object(sr.translate)("Pos")},{name:"last_count",title:Object(sr.translate)("Hits")},{name:"last_access",title:Object(sr.translate)("Last Access")}],yc=[{id:"delete",name:Object(sr.translate)("Delete")},{id:"enable",name:Object(sr.translate)("Enable")},{id:"disable",name:Object(sr.translate)("Disable")},{id:"reset",name:Object(sr.translate)("Reset hits")}],vc=function(e){function t(e){Nn(this,t);var n=Dn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleRender=n.renderRow.bind(n),n.props.onLoadRedirects(),n.props.onLoadGroups(),n}return In(t,e),gc(t,[{key:"componentWillReceiveProps",value:function(e){e.clicked!==this.props.clicked&&e.onLoadRedirects({page:0,filter:"",filterBy:"",orderby:""})}},{key:"renderRow",value:function(e,t,n){var r=this.props.redirect.saving,o=n.isLoading?Vr:qr,a=-1!==r.indexOf(e.id)?"STATUS_SAVING":o;return or.a.createElement(mc,{item:e,key:t,selected:n.isSelected,status:a})}},{key:"getGroups",value:function(e){return[{value:0,text:Object(sr.translate)("All groups")}].concat(Hs(e))}},{key:"renderNew",value:function(){var e=this.props.redirect.addTop,t=fi()({"add-new":!0,edit:!0,addTop:e});return or.a.createElement("div",null,!e&&or.a.createElement("h2",null,Object(sr.translate)("Add new redirection")),or.a.createElement("div",{className:t},or.a.createElement(fu,{item:ou("",0),saveButton:Object(sr.translate)("Add Redirect"),autoFocus:e})))}},{key:"canFilter",value:function(e,t){return e.status===qr&&t!==Vr}},{key:"render",value:function(){var e=this.props.redirect,t=e.status,n=e.total,r=e.table,o=e.rows,a=e.addTop,i=this.props.group,l=t===qr&&i.status===qr;return or.a.createElement("div",{className:"redirects"},a&&this.renderNew(),or.a.createElement(vl,{status:t,table:r,onSearch:this.props.onSearch,ignoreFilter:["group"]}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,bulk:yc,status:t},or.a.createElement(nc,{selected:r.filter?r.filter:"0",options:this.getGroups(i.rows),isEnabled:this.canFilter(i,t),onFilter:this.props.onFilter})),or.a.createElement(sl,{headers:bc,rows:o,total:n,row:this.handleRender,table:r,status:t,onSetAllSelected:this.props.onSetAllSelected,onSetOrderBy:this.props.onSetOrderBy}),or.a.createElement(gl,{total:n,selected:r.selected,table:r,onChangePage:this.props.onChangePage,onAction:this.props.onAction,status:t}),l&&!a&&this.renderNew())}}]),t}(or.a.Component),Ec=Dr(Rn,An)(vc),wc=function(){return{type:Pa}},Oc=function(){return{type:Ta}},kc=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}}(),_c=function(e){function t(e){Ln(this,t);var n=Fn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.onClick=n.dismiss.bind(n),n}return Mn(t,e),kc(t,[{key:"componentWillUpdate",value:function(e){e.errors.length>0&&0===this.props.errors.length&&window.scrollTo(0,0)}},{key:"dismiss",value:function(){this.props.onClear()}},{key:"getDebug",value:function(e){for(var t=[Redirectioni10n.versions],n=0;n<e.length;n++){var r=e[n].request,o=void 0!==r&&r;t.push(""),t.push("Error: "+this.getErrorDetails(e[n])),o&&o.status&&o.statusText&&(t.push("Action: "+o.action),o.params&&t.push("Params: "+JSON.stringify(o.params)),t.push("Code: "+o.status+" "+o.statusText),t.push("Raw: "+(o.raw?o.raw:"-no data-")))}return t}},{key:"getErrorDetailsTitle",value:function(e){return 0===e.code?e.message:e.data&&e.data.wpdb?or.a.createElement("span",null,e.message+" ("+e.code+")",": ",or.a.createElement("code",null,e.data.wpdb)):e.code?e.message+" ("+e.code+")":e.message}},{key:"getErrorDetails",value:function(e){return 0===e.code?e.message:e.data&&e.data.wpdb?e.message+" ("+e.code+"): "+e.data.wpdb:e.code?e.message+" ("+e.code+")":e.message}},{key:"getErrorMessage",value:function(e){var t=this,n=e.map(function(e){return e.action&&"reload"===e.action?-1===document.location.search.indexOf("retry=")?void(document.location.href+="&retry=1"):Object(sr.translate)("The data on this page has expired, please reload."):0===e.code?Object(sr.translate)("WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."):e.request&&403===e.request.status?Object(sr.translate)("Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"):e.request&&413===e.request.status?Object(sr.translate)("Your server has rejected the request for being too big. You will need to change it to continue."):"disabled"===e.code||"rest_disabled"===e.code?Object(sr.translate)("Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"):-1!==e.message.indexOf("Unexpected token")?Object(sr.translate)("WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."):e.message?t.getErrorDetailsTitle(e):Object(sr.translate)("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!")});return or.a.createElement("p",null,Object.keys([{}].concat(n).reduce(function(e,t){return e[t]=e})))}},{key:"renderError",value:function(e){var t=this.getDebug(e),n=fi()({notice:!0,"notice-error":!0}),r="mailto:john@redirection.me?subject=Redirection%20Error&body="+encodeURIComponent(t.join("\n")),o="https://github.com/johngodley/redirection/issues/new?title=Redirection%20Error&body="+encodeURIComponent("```\n"+t.join("\n")+"\n```\n\n");return or.a.createElement("div",{className:n},or.a.createElement("div",{className:"closer",onClick:this.onClick},"✖"),or.a.createElement("h2",null,Object(sr.translate)("Something went wrong 🙁")),this.getErrorMessage(e),or.a.createElement("ol",null,or.a.createElement("li",null,Object(sr.translate)('Please take a look at the {{link}}plugin status{{/link}}. It may be able to identify and "magic fix" the problem.',{components:{link:or.a.createElement("a",{href:"?page=redirection.php&sub=support"})}})),or.a.createElement("li",null,Object(sr.translate)("{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.",{components:{link:or.a.createElement("a",{target:"_blank",rel:"noreferrer noopener",href:"https://redirection.me/support/problems/rest-api/?utm_source=redirection&utm_medium=plugin&utm_campaign=support"})}})),or.a.createElement("li",null,Object(sr.translate)("{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.",{components:{link:or.a.createElement("a",{target:"_blank",rel:"noreferrer noopener",href:"https://redirection.me/support/problems/security-software/?utm_source=redirection&utm_medium=plugin&utm_campaign=support"})}})),or.a.createElement("li",null,Object(sr.translate)("{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.",{components:{link:or.a.createElement("a",{target:"_blank",rel:"noreferrer noopener",href:"https://redirection.me/support/problems/cloudflare/?utm_source=redirection&utm_medium=plugin&utm_campaign=support"})}})),or.a.createElement("li",null,Object(sr.translate)("{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.",{components:{link:or.a.createElement("a",{target:"_blank",rel:"noreferrer noopener",href:"https://redirection.me/support/problems/plugins/?utm_source=redirection&utm_medium=plugin&utm_campaign=support"})}}))),or.a.createElement("h3",null,Object(sr.translate)("None of the suggestions helped")),or.a.createElement("p",null,Object(sr.translate)("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.",{components:{strong:or.a.createElement("strong",null)}})),or.a.createElement("p",null,or.a.createElement("a",{href:o,className:"button-primary"},Object(sr.translate)("Create Issue"))," ",or.a.createElement("a",{href:r,className:"button-secondary"},Object(sr.translate)("Email"))),or.a.createElement("h3",null,Object(sr.translate)("Important details")),or.a.createElement("p",null,Object(sr.translate)("Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.",{components:{strong:or.a.createElement("strong",null)}})),or.a.createElement("p",null,or.a.createElement("textarea",{readOnly:!0,rows:t.length+3,cols:"120",value:t.join("\n"),spellCheck:!1})))}},{key:"render",value:function(){var e=this.props.errors;return 0===e.length?null:this.renderError(e)}}]),t}(or.a.Component),xc=Dr(Un,Bn)(_c),Cc=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}}(),Sc=function(e){function t(e){zn(this,t);var n=Hn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.handleClick=n.onClick.bind(n),n.handleShrink=n.onShrink.bind(n),n.state={shrunk:!1,width:"auto"},n}return Vn(t,e),Cc(t,[{key:"onClick",value:function(){this.state.shrunk?this.setState({shrunk:!1}):this.props.onClear()}},{key:"componentWillUpdate",value:function(e){this.props.notices!==e.notices&&(this.stopTimer(),this.setState({shrunk:!1}),this.startTimer())}},{key:"componentWillUnmount",value:function(){this.stopTimer()}},{key:"stopTimer",value:function(){clearTimeout(this.timer)}},{key:"startTimer",value:function(){this.timer=setTimeout(this.handleShrink,5e3)}},{key:"onShrink",value:function(){this.setState({shrunk:!0})}},{key:"getNotice",value:function(e){return e.length>1?e[e.length-1]+" ("+e.length+")":e[0]}},{key:"renderNotice",value:function(e){var t="notice notice-info redirection-notice"+(this.state.shrunk?" notice-shrunk":"");return or.a.createElement("div",{className:t,onClick:this.handleClick},or.a.createElement("div",{className:"closer"},"✔"),or.a.createElement("p",null,this.state.shrunk?or.a.createElement("span",{title:Object(sr.translate)("View notice")},"🔔"):this.getNotice(e)))}},{key:"render",value:function(){var e=this.props.notices;return 0===e.length?null:this.renderNotice(e)}}]),t}(or.a.Component),jc=Dr(Gn,qn)(Sc),Pc=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}}(),Tc=function(e){function t(e){return Wn(this,t),$n(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))}return Kn(t,e),Pc(t,[{key:"getMessage",value:function(e){return e>1?Object(sr.translate)("Saving...")+" ("+e+")":Object(sr.translate)("Saving...")}},{key:"renderProgress",value:function(e){return or.a.createElement("div",{className:"notice notice-progress redirection-notice"},or.a.createElement(Vl,null),or.a.createElement("p",null,this.getMessage(e)))}},{key:"render",value:function(){var e=this.props.inProgress;return 0===e?null:this.renderProgress(e)}}]),t}(or.a.Component),Nc=Dr(Qn,null)(Tc),Dc=function(e){var t=e.item,n=e.isCurrent,r=e.onClick,o=Redirectioni10n.pluginRoot+(""===t.value?"":"&sub="+t.value),a=function(e){e.preventDefault(),r(t.value,o)};return or.a.createElement("li",null,or.a.createElement("a",{className:n?"current":"",href:o,onClick:a},t.name))},Ic=Dc,Rc=[{name:Object(sr.translate)("Redirects"),value:""},{name:Object(sr.translate)("Groups"),value:"groups"},{name:Object(sr.translate)("Log"),value:"log"},{name:Object(sr.translate)("404s"),value:"404s"},{name:Object(sr.translate)("Import/Export"),value:"io"},{name:Object(sr.translate)("Options"),value:"options"},{name:Object(sr.translate)("Support"),value:"support"}],Ac=function(e){var t=e.onChangePage,n=B();return or.a.createElement("div",{className:"subsubsub-container"},or.a.createElement("ul",{className:"subsubsub"},Rc.map(function(e,r){return or.a.createElement(Ic,{key:r,item:e,isCurrent:n===e.value||"redirect"===n&&""===e.value,onClick:t})}).reduce(function(e,t){return[e," | ",t]})))},Lc=Ac,Fc=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}}(),Mc={redirect:Object(sr.translate)("Redirections"),groups:Object(sr.translate)("Groups"),io:Object(sr.translate)("Import/Export"),log:Object(sr.translate)("Logs"),"404s":Object(sr.translate)("404 errors"),options:Object(sr.translate)("Options"),support:Object(sr.translate)("Support")},Uc=function(e){function t(e){Yn(this,t);var n=Jn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={page:B(),clicked:0,stack:!1,error:"3.1"!==Redirectioni10n.version},n.handlePageChange=n.onChangePage.bind(n),n}return Xn(t,e),Fc(t,[{key:"componentDidCatch",value:function(e){this.setState({error:!0,stack:e})}},{key:"onChangePage",value:function(e,t){var n=this.props.errors;if(""===e&&(e="redirect"),"support"===e&&n.length>0)return void(document.location.href=t);history.pushState({},null,t),this.setState({page:e,clicked:this.state.clicked+1}),this.props.onClear()}},{key:"getContent",value:function(e){var t=this.state.clicked;switch(e){case"support":return or.a.createElement(Ui,null);case"404s":return or.a.createElement(Du,{clicked:t});case"log":return or.a.createElement(ss,{clicked:t});case"io":return or.a.createElement(Zu,null);case"groups":return or.a.createElement(fc,{clicked:t});case"options":return or.a.createElement(Ci,null)}return or.a.createElement(Ec,{clicked:t})}},{key:"renderError",value:function(){var e=[Redirectioni10n.versions,"Buster: 3.1 === "+Redirectioni10n.version,this.state.stack];return"3.1"!==Redirectioni10n.version?or.a.createElement("div",{className:"notice notice-error"},or.a.createElement("h2",null,Object(sr.translate)("Cached Redirection detected")),or.a.createElement("p",null,Object(sr.translate)("Please clear your browser cache and reload this page.")),or.a.createElement("p",null,or.a.createElement("a",{href:"https://redirection.me/support/problems/cloudflare/?utm_source=redirection&utm_medium=plugin&utm_campaign=support",target:"_blank",rel:"noreferrer noopener"},Object(sr.translate)("More details."))),or.a.createElement("p",null,or.a.createElement("textarea",{readOnly:!0,rows:e.length+3,cols:"120",value:e.join("\n"),spellCheck:!1}))):or.a.createElement("div",{className:"notice notice-error"},or.a.createElement("h2",null,Object(sr.translate)("Something went wrong 🙁")),or.a.createElement("p",null,Object(sr.translate)("Redirection is not working. Try clearing your browser cache and reloading this page."),"  ",Object(sr.translate)("If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.")),or.a.createElement("p",null,Object(sr.translate)("If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.",{components:{link:or.a.createElement("a",{target:"_blank",rel:"noopener noreferrer",href:"https://github.com/johngodley/redirection/issues"})}})),or.a.createElement("p",null,Object(sr.translate)("Please mention {{code}}%s{{/code}}, and explain what you were doing at the time",{components:{code:or.a.createElement("code",null)},args:this.state.page})),or.a.createElement("p",null,or.a.createElement("textarea",{readOnly:!0,rows:e.length+3,cols:"120",value:e.join("\n"),spellCheck:!1})))}},{key:"render",value:function(){var e=Mc[this.state.page];return this.state.error?this.renderError():or.a.createElement("div",{className:"wrap redirection"},or.a.createElement("h1",{className:"wp-heading-inline"},e),"redirect"===this.state.page&&or.a.createElement("a",{href:"#",onClick:this.props.onAdd,className:"page-title-action"},"Add New"),or.a.createElement(Lc,{onChangePage:this.handlePageChange}),or.a.createElement(xc,null),this.getContent(this.state.page),or.a.createElement(Nc,null),or.a.createElement(jc,null))}}]),t}(or.a.Component),Bc=Dr(er,Zn)(Uc),zc=function(){return or.a.createElement(hr,{store:Z(ue())},or.a.createElement(Bc,null))},Hc=zc,Vc=function(e,t){ir.a.render(or.a.createElement(lr.AppContainer,null,or.a.createElement(e,null)),document.getElementById(t))};document.querySelector("#react-ui")&&function(e){ur.a.setLocale({"":{localeSlug:Redirectioni10n.localeSlug}}),ur.a.addTranslations(Redirectioni10n.locale),Vc(Hc,e)}("react-ui"),window.redirection=Redirectioni10n.version},function(e,t){function n(e){function t(e,n,r){e&&e.then?e.then(function(e){t(e,n,r)}).catch(function(e){t(e,r,r)}):n(e)}function r(e){u=function(t,n){try{e(t,n)}catch(e){n(e)}},p(),p=void 0}function o(e){r(function(t,n){n(e)})}function a(e){r(function(t){t(e)})}function i(e,t){var n=p;p=function(){n(),u(e,t)}}function l(e){!u&&t(e,a,o)}function s(e){!u&&t(e,o,o)}var u,c=function(){},p=c,f={then:function(e){var t=u||i;return n(function(n,r){t(function(t){n(e(t))},r)})},catch:function(e){var t=u||i;return n(function(n,r){t(n,function(t){r(e(t))})})},resolve:l,reject:s};try{e&&e(l,s)}catch(e){s(e)}return f}n.resolve=function(e){return n(function(t){t(e)})},n.reject=function(e){return n(function(t,n){n(e)})},n.race=function(e){return e=e||[],n(function(t,n){var r=e.length;if(!r)return t();for(var o=0;o<r;++o){var a=e[o];a&&a.then&&a.then(t).catch(n)}})},n.all=function(e){return e=e||[],n(function(t,n){function r(){--a<=0&&t(e)}var o=e.length,a=o;if(!o)return t();for(var i=0;i<o;++i)!function(t,o){t&&t.then?t.then(function(t){e[o]=t,r()}).catch(n):r()}(e[i],i)})},void 0!==e&&e.exports&&(e.exports=n)},function(e,t){!function(e){"use strict";function t(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function n(e){return"string"!=typeof e&&(e=String(e)),e}function r(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return b.iterable&&(t[Symbol.iterator]=function(){return t}),t}function o(e){this.map={},e instanceof o?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function a(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function i(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function l(e){var t=new FileReader,n=i(t);return t.readAsArrayBuffer(e),n}f