Redirection - Version 4.0.1

Version Description

  • 2nd Mar 2019 =
  • Improve styling of query flags
  • Match DB upgrade for new match_url to creation script
  • Fix upgrade on some hosts where plugin is auto-updated
  • Fix pagination button style in WP 5.1
  • Fix IP match when action is 'error'
  • Fix database upgrade on multisite WP CLI
Download this release

Release Info

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

Code changes from version 4.0 to 4.0.1

actions/error.php CHANGED
@@ -31,4 +31,8 @@ class Error_Action extends Red_Action {
31
  public function template_include() {
32
  return get_404_template();
33
  }
 
 
 
 
34
  }
31
  public function template_include() {
32
  return get_404_template();
33
  }
34
+
35
+ public function needs_target() {
36
+ return false;
37
+ }
38
  }
actions/nothing.php CHANGED
@@ -4,4 +4,8 @@ class Nothing_Action extends Red_Action {
4
  public function process_before( $code, $target ) {
5
  return apply_filters( 'redirection_do_nothing', false, $target );
6
  }
 
 
 
 
7
  }
4
  public function process_before( $code, $target ) {
5
  return apply_filters( 'redirection_do_nothing', false, $target );
6
  }
7
+
8
+ public function needs_target() {
9
+ return false;
10
+ }
11
  }
actions/pass.php CHANGED
@@ -56,4 +56,8 @@ class Pass_Action extends Red_Action {
56
 
57
  return $this->process_internal( $target );
58
  }
 
 
 
 
59
  }
56
 
57
  return $this->process_internal( $target );
58
  }
59
+
60
+ public function needs_target() {
61
+ return true;
62
+ }
63
  }
actions/random.php CHANGED
@@ -14,4 +14,8 @@ class Random_Action extends Url_Action {
14
  public function process_after( $code, $target ) {
15
  $this->redirect_to( $code, $target );
16
  }
 
 
 
 
17
  }
14
  public function process_after( $code, $target ) {
15
  $this->redirect_to( $code, $target );
16
  }
17
+
18
+ public function needs_target() {
19
+ return true;
20
+ }
21
  }
actions/url.php CHANGED
@@ -13,4 +13,8 @@ class Url_Action extends Red_Action {
13
  public function process_after( $code, $target ) {
14
  $this->redirect_to( $code, $target );
15
  }
 
 
 
 
16
  }
13
  public function process_after( $code, $target ) {
14
  $this->redirect_to( $code, $target );
15
  }
16
+
17
+ public function needs_target() {
18
+ return true;
19
+ }
20
  }
database/database-upgrader.php CHANGED
@@ -83,7 +83,7 @@ abstract class Red_Database_Upgrader {
83
  * @return object Database upgrader
84
  */
85
  public static function get( $version ) {
86
- include_once dirname( __FILE__ ) . '/schema/' . str_replace( [ '..', '/' ], '', $version['file'] );
87
 
88
  return new $version['class'];
89
  }
83
  * @return object Database upgrader
84
  */
85
  public static function get( $version ) {
86
+ include_once dirname( __FILE__ ) . '/schema/' . str_replace( [ '..', '/' ], '', $version['file'] );
87
 
88
  return new $version['class'];
89
  }
database/database.php CHANGED
@@ -76,7 +76,7 @@ class Red_Database {
76
  }
77
 
78
  public static function apply_to_sites( $callback ) {
79
- if ( is_network_admin() ) {
80
  array_map( function( $site ) use ( $callback ) {
81
  switch_to_blog( $site->blog_id );
82
 
76
  }
77
 
78
  public static function apply_to_sites( $callback ) {
79
+ if ( is_network_admin() || defined( 'WP_CLI' ) && WP_CLI ) {
80
  array_map( function( $site ) use ( $callback ) {
81
  switch_to_blog( $site->blog_id );
82
 
database/schema/400.php CHANGED
@@ -4,18 +4,52 @@ class Red_Database_400 extends Red_Database_Upgrader {
4
  public function get_stages() {
5
  return [
6
  'add_match_url_400' => 'Add a matched URL column',
 
7
  'add_redirect_data_400' => 'Add column to store new flags',
8
  'convert_existing_urls_400' => 'Convert existing URLs to new format',
9
  ];
10
  }
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  protected function add_match_url_400( $wpdb ) {
13
- $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD `match_url` VARCHAR(2000) NULL DEFAULT NULL AFTER `url`" );
14
- return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD INDEX `match_url` (`match_url`)" );
 
 
 
 
 
 
 
 
 
15
  }
16
 
17
  protected function add_redirect_data_400( $wpdb ) {
18
- return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD `match_data` TEXT NULL DEFAULT NULL AFTER `match_url`" );
 
 
 
 
19
  }
20
 
21
  protected function convert_existing_urls_400( $wpdb ) {
4
  public function get_stages() {
5
  return [
6
  'add_match_url_400' => 'Add a matched URL column',
7
+ 'add_match_url_index' => 'Add match URL index',
8
  'add_redirect_data_400' => 'Add column to store new flags',
9
  'convert_existing_urls_400' => 'Convert existing URLs to new format',
10
  ];
11
  }
12
 
13
+ private function has_column( $wpdb, $column ) {
14
+ $existing = $wpdb->get_row( "SHOW CREATE TABLE `{$wpdb->prefix}redirection_items`", ARRAY_N );
15
+
16
+ if ( isset( $existing[1] ) && strpos( strtolower( $existing[1] ), strtolower( $column ) ) !== false ) {
17
+ return true;
18
+ }
19
+
20
+ return false;
21
+ }
22
+
23
+ private function has_match_index( $wpdb ) {
24
+ $existing = $wpdb->get_row( "SHOW CREATE TABLE `{$wpdb->prefix}redirection_items`", ARRAY_N );
25
+
26
+ if ( isset( $existing[1] ) && strpos( strtolower( $existing[1] ), 'key `match_url' ) !== false ) {
27
+ return true;
28
+ }
29
+
30
+ return false;
31
+ }
32
+
33
  protected function add_match_url_400( $wpdb ) {
34
+ if ( ! $this->has_column( $wpdb, '`match_url` varchar(2000)' ) ) {
35
+ return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD `match_url` VARCHAR(2000) NULL DEFAULT NULL AFTER `url`" );
36
+ }
37
+
38
+ return true;
39
+ }
40
+
41
+ protected function add_match_url_index( $wpdb ) {
42
+ if ( ! $this->has_match_index( $wpdb ) ) {
43
+ return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD INDEX `match_url` (`match_url`(191))" );
44
+ }
45
  }
46
 
47
  protected function add_redirect_data_400( $wpdb ) {
48
+ if ( ! $this->has_column( $wpdb, '`match_data` TEXT' ) ) {
49
+ return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_items` ADD `match_data` TEXT NULL DEFAULT NULL AFTER `match_url`" );
50
+ }
51
+
52
+ return true;
53
  }
54
 
55
  protected function convert_existing_urls_400( $wpdb ) {
locale/json/redirection-fr_FR.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":[""],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":[""],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":["Mise à jour nécessaire"],"I need some support!":["J’ai besoin d’aide !"],"Finish Setup":[""],"Checking your REST API":[""],"Retry":["Réessayer"],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":[""],"Caching software, for example Cloudflare":[""],"A server firewall or other server configuration":[""],"A security plugin":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":[""],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":[""],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":[""],"{{link}}Read more about this.{{/link}}":[""],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":[""],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":[""],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":[""],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":[""],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":[""],"Progress: %(complete)d$":[""],"Leaving before the process has completed may cause problems.":[""],"Setting up Redirection":[""],"Upgrading Redirection":[""],"Please remain on this page until complete.":[""],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":[""],"Skip this stage":[""],"Try again":[""],"Database problem":[""],"Please enable JavaScript":["Veuillez activer JavaScript"],"Please upgrade your database":["Veuillez mettre à niveau votre base de données"],"Upgrade Database":[""],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":[""],"Failed to perform query \"%s\"":[""],"Table \"%s\" is missing":[""],"Create basic data":[""],"Install Redirection tables":[""],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":["Veuillez ne pas essayer de rediriger toutes vos 404 - ce n’est pas une bonne chose à faire."],"Only the 404 page type is currently supported.":["Seul le type de page 404 est actuellement supporté."],"Page Type":["Type de page"],"Enter IP addresses (one per line)":["Saisissez les adresses IP (une par ligne)"],"Describe the purpose of this redirect (optional)":["Décrivez le but de cette redirection (facultatif)"],"418 - I'm a teapot":["418 - Je suis une théière"],"403 - Forbidden":["403 - Interdit"],"400 - Bad Request":["400 - mauvaise requête"],"304 - Not Modified":["304 - Non modifié"],"303 - See Other":["303 - Voir ailleurs"],"Do nothing (ignore)":["Ne rien faire (ignorer)"],"Target URL when not matched (empty to ignore)":["URL cible si aucune correspondance (laisser vide pour ignorer)"],"Target URL when matched (empty to ignore)":["URL cible si il y a une correspondance (laisser vide pour ignorer)"],"Show All":["Tout afficher"],"Delete all logs for these entries":["Supprimer les journaux pour ces entrées"],"Delete all logs for this entry":["Supprimer les journaux pour cet entrée"],"Delete Log Entries":["Supprimer les entrées du journal"],"Group by IP":["Grouper par IP"],"Group by URL":["Grouper par URL"],"No grouping":["Aucun regroupement"],"Ignore URL":["Ignorer l’URL"],"Block IP":["Bloquer l’IP"],"Redirect All":["Tout rediriger"],"Count":["Compter"],"URL and WordPress page type":["URL et type de page WordPress"],"URL and IP":["URL et IP"],"Problem":["Problème"],"Good":["Bon"],"Check":["Vérifier"],"Check Redirect":["Vérifier la redirection"],"Check redirect for: {{code}}%s{{/code}}":["Vérifier la redirection pour : {{code}}%s{{/code}}"],"What does this mean?":["Qu’est-ce que cela veut dire ?"],"Not using Redirection":["N’utilisant pas Redirection"],"Using Redirection":["Utilisant Redirection"],"Found":["Trouvé"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(code)d{{/code}} vers {{code}}%(url)s{{/code}}"],"Expected":["Attendu"],"Error":["Erreur"],"Enter full URL, including http:// or https://":["Saisissez l’URL complète, avec http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Parfois votre navigateur peut mettre en cache une URL, ce qui rend les diagnostics difficiles. Utilisez cet outil pour vérifier qu’une URL est réellement redirigée."],"Redirect Tester":["Testeur de redirection"],"Target":["Cible"],"URL is not being redirected with Redirection":["L’URL n’est pas redirigée avec Redirection."],"URL is being redirected with Redirection":["L’URL est redirigée avec Redirection."],"Unable to load details":["Impossible de charger les détails"],"Enter server URL to match against":["Saisissez l’URL du serveur à comparer avec"],"Server":["Serveur"],"Enter role or capability value":["Saisissez la valeur de rôle ou de capacité"],"Role":["Rôle"],"Match against this browser referrer text":["Correspondance avec ce texte de référence du navigateur"],"Match against this browser user agent":["Correspondance avec cet agent utilisateur de navigateur"],"The relative URL you want to redirect from":["L’URL relative que vous voulez rediriger"],"The target URL you want to redirect to if matched":["L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."],"(beta)":["(bêta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."],"Force HTTPS":["Forcer HTTPS"],"GDPR / Privacy information":["RGPD/information de confidentialité"],"Add New":["Ajouter une redirection"],"Please logout and login again.":["Veuillez vous déconnecter puis vous connecter à nouveau."],"URL and role/capability":["URL et rôle/capacité"],"URL and server":["URL et serveur"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Si vous ne pouvez pas faire fonctionne quoi que ce soit alors l’extension Redirection doit rencontrer des difficultés à communiquer avec votre serveur. Vous pouvez essayer de modifier ces réglages manuellement :"],"Site and home protocol":["Protocole du site et de l’accueil"],"Site and home are consistent":["Le site et l’accueil sont cohérents"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Sachez qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour obtenir de l’aide."],"Accept Language":["Accepter la langue"],"Header value":["Valeur de l’en-tête"],"Header name":["Nom de l’en-tête"],"HTTP Header":["En-tête HTTP"],"WordPress filter name":["Nom de filtre WordPress"],"Filter Name":["Nom du filtre"],"Cookie value":["Valeur du cookie"],"Cookie name":["Nom du cookie"],"Cookie":["Cookie"],"clearing your cache.":["vider votre cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "],"URL and HTTP header":["URL et en-tête HTTP"],"URL and custom filter":["URL et filtre personnalisé"],"URL and cookie":["URL et cookie"],"404 deleted":["404 supprimée"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Jetez un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}L’extension Redirection ne peut pas communiquer avec l’API REST{{/link}}. Si vous l’avez désactivée alors vous devriez l’activer à nouveau."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."],"None of the suggestions helped":["Aucune de ces suggestions n’a aidé"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."],"Unable to load Redirection ☹️":["Impossible de charger Redirection ☹️"],"WordPress REST API is working at %s":["L’API REST WordPress fonctionne à %s"],"WordPress REST API":["API REST WordPress"],"REST API is not working so routes not checked":["L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."],"Redirection routes are working":["Les redirections fonctionnent"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"],"Redirection routes":["Routes de redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erreur de l’agent utilisateur"],"Unknown Useragent":["Agent utilisateur inconnu"],"Device":["Appareil"],"Operating System":["Système d’exploitation"],"Browser":["Navigateur"],"Engine":["Moteur"],"Useragent":["Agent utilisateur"],"Agent":["Agent"],"No IP logging":["Aucune IP journalisée"],"Full IP logging":["Connexion avec IP complète"],"Anonymize IP (mask last part)":["Anonymiser l’IP (masquer la dernière partie)"],"Monitor changes to %(type)s":["Monitorer les modifications de %(type)s"],"IP Logging":["Journalisation d’IP"],"(select IP logging level)":["(sélectionnez le niveau de journalisation des IP)"],"Geo Info":["Informations géographiques"],"Agent Info":["Informations sur l’agent"],"Filter by IP":["Filtrer par IP"],"Referrer / User Agent":["Référent / Agent utilisateur"],"Geo IP Error":["Erreur de l’IP géographique"],"Something went wrong obtaining this information":["Un problème est survenu lors de l’obtention de cette information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Cette IP provient d’un réseau privé. Elle fait partie du réseau d’un domicile ou d’une entreprise. Aucune autre information ne peut être affichée."],"No details are known for this address.":["Aucun détail n’est connu pour cette adresse."],"Geo IP":["IP géographique"],"City":["Ville"],"Area":["Zone"],"Timezone":["Fuseau horaire"],"Geo Location":["Emplacement géographique"],"Powered by {{link}}redirect.li{{/link}}":["Propulsé par {{link}}redirect.li{{/link}}"],"Trash":["Corbeille"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Vous pouvez trouver une documentation complète à propos de l’utilisation de Redirection sur le site de support <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"],"Never cache":["Jamais de cache"],"An hour":["Une heure"],"Redirect Cache":["Cache de redirection"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"],"Are you sure you want to import from %s?":["Confirmez-vous l’importation depuis %s ?"],"Plugin Importers":["Importeurs d’extensions"],"The following redirect plugins were detected on your site and can be imported from.":["Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."],"total = ":["total = "],"Import from %s":["Importer depuis %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuillez mettre à jour votre installation WordPress."],"Default WordPress \"old slugs\"":["« Anciens slugs » de WordPress par défaut"],"Create associated redirect (added to end of URL)":["Créer une redirection associée (ajoutée à la fin de l’URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."],"⚡️ Magic fix ⚡️":["⚡️ Correction magique ⚡️"],"Plugin Status":["Statut de l’extension"],"Custom":["Personnalisé"],"Mobile":["Mobile"],"Feed Readers":["Lecteurs de flux"],"Libraries":["Librairies"],"URL Monitor Changes":["Surveiller la modification des URL"],"Save changes to this group":["Enregistrer les modifications apportées à ce groupe"],"For example \"/amp\"":["Par exemple « /amp »"],"URL Monitor":["URL à surveiller"],"Delete 404s":["Supprimer les pages 404"],"Delete all from IP %s":["Tout supprimer depuis l’IP %s"],"Delete all matching \"%s\"":["Supprimer toutes les correspondances « %s »"],"Your server has rejected the request for being too big. You will need to change it to continue.":["Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."],"Also check if your browser is able to load <code>redirection.js</code>:":["Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."],"Unable to load Redirection":["Impossible de charger Redirection"],"Unable to create group":["Impossible de créer un groupe"],"Post monitor group is valid":["Le groupe de surveillance d’articles est valide"],"Post monitor group is invalid":["Le groupe de surveillance d’articles est non valide"],"Post monitor group":["Groupe de surveillance d’article"],"All redirects have a valid group":["Toutes les redirections ont un groupe valide"],"Redirects with invalid groups detected":["Redirections avec des groupes non valides détectées"],"Valid redirect group":["Groupe de redirection valide"],"Valid groups detected":["Groupes valides détectés"],"No valid groups, so you will not be able to create any redirects":["Aucun groupe valide, vous ne pourrez pas créer de redirections."],"Valid groups":["Groupes valides"],"Database tables":["Tables de la base de données"],"The following tables are missing:":["Les tables suivantes sont manquantes :"],"All tables present":["Toutes les tables présentes"],"Cached Redirection detected":["Redirection en cache détectée"],"Please clear your browser cache and reload this page.":["Veuillez vider le cache de votre navigateur et recharger cette page."],"The data on this page has expired, please reload.":["Les données de cette page ont expiré, veuillez la recharger."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si vous pensez que Redirection est en faute alors créez un rapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."],"Loading, please wait...":["Veuillez patienter pendant le chargement…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."],"Create Issue":["Créer un rapport"],"Email":["E-mail"],"Important details":["Informations importantes"],"Need help?":["Besoin d’aide ?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."],"Pos":["Pos"],"410 - Gone":["410 – Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."],"Apache Module":["Module Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."],"Import to group":["Importer dans le groupe"],"Import a CSV, .htaccess, or JSON file.":["Importer un fichier CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Cliquer sur « ajouter un fichier » ou glisser-déposer ici."],"Add File":["Ajouter un fichier"],"File selected":["Fichier sélectionné"],"Importing":["Import"],"Finished importing":["Import terminé"],"Total redirects imported:":["Total des redirections importées :"],"Double-check the file is the correct format!":["Vérifiez à deux fois si le fichier et dans le bon format !"],"OK":["OK"],"Close":["Fermer"],"All imports will be appended to the current database.":["Tous les imports seront ajoutés à la base de données actuelle."],"Export":["Exporter"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."],"Everything":["Tout"],"WordPress redirects":["Redirections WordPress"],"Apache redirects":["Redirections Apache"],"Nginx redirects":["Redirections Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":["Règles de réécriture Nginx"],"Redirection JSON":["Redirection JSON"],"View":["Visualiser"],"Log files can be exported from the log pages.":["Les fichier de journal peuvent être exportés depuis les pages du journal."],"Import/Export":["Import/export"],"Logs":["Journaux"],"404 errors":["Erreurs 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."],"I'd like to support some more.":["Je voudrais soutenir un peu plus."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection sauvegardée"],"Log deleted":["Journal supprimé"],"Settings saved":["Réglages sauvegardés"],"Group saved":["Groupe sauvegardé"],"Are you sure you want to delete this item?":["Confirmez-vous la suppression de cet élément ?","Confirmez-vous la suppression de ces éléments ?"],"pass":["Passer"],"All groups":["Tous les groupes"],"301 - Moved Permanently":["301 - déplacé de façon permanente"],"302 - Found":["302 – trouvé"],"307 - Temporary Redirect":["307 – Redirigé temporairement"],"308 - Permanent Redirect":["308 – Redirigé de façon permanente"],"401 - Unauthorized":["401 – Non-autorisé"],"404 - Not Found":["404 – Introuvable"],"Title":["Titre"],"When matched":["Quand cela correspond"],"with HTTP code":["avec code HTTP"],"Show advanced options":["Afficher les options avancées"],"Matched Target":["Cible correspondant"],"Unmatched Target":["Cible ne correspondant pas"],"Saving...":["Sauvegarde…"],"View notice":["Voir la notification"],"Invalid source URL":["URL source non-valide"],"Invalid redirect action":["Action de redirection non-valide"],"Invalid redirect matcher":["Correspondance de redirection non-valide"],"Unable to add new redirect":["Incapable de créer une nouvelle redirection"],"Something went wrong 🙁":["Quelque chose s’est mal passé 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"],"Log entries (%d max)":["Entrées du journal (100 max.)"],"Search by IP":["Rechercher par IP"],"Select bulk action":["Sélectionner l’action groupée"],"Bulk Actions":["Actions groupées"],"Apply":["Appliquer"],"First page":["Première page"],"Prev page":["Page précédente"],"Current Page":["Page courante"],"of %(page)s":["de %(page)s"],"Next page":["Page suivante"],"Last page":["Dernière page"],"%s item":["%s élément","%s éléments"],"Select All":["Tout sélectionner"],"Sorry, something went wrong loading the data - please try again":["Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."],"No results":["Aucun résultat"],"Delete the logs - are you sure?":["Confirmez-vous la suppression des journaux ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."],"Yes! Delete the logs":["Oui ! Supprimer les journaux"],"No! Don't delete the logs":["Non ! Ne pas supprimer les journaux"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Vous souhaitez être au courant des modifications apportées à Redirection ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":[""],"Your email address:":["Votre adresse de messagerie :"],"You've supported this plugin - thank you!":["Vous avez apporté votre soutien à l’extension. Merci !"],"You get useful software and I get to carry on making it better.":["Vous avez une extension utile, et je peux continuer à l’améliorer."],"Forever":["Indéfiniment"],"Delete the plugin - are you sure?":["Confirmez-vous la suppression de cette extension ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."],"Yes! Delete the plugin":["Oui ! Supprimer l’extension"],"No! Don't delete the plugin":["Non ! Ne pas supprimer l’extension"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gérez toutes vos redirections 301 et surveillez les erreurs 404."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."],"Redirection Support":["Support de Redirection"],"Support":["Support"],"404s":["404"],"Log":["Journaux"],"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.":["Sélectionner cette option supprimera toutes les redirections, les journaux et toutes les options associées à l’extension Redirection. Soyez sûr que c’est ce que vous voulez !"],"Delete Redirection":["Supprimer la redirection"],"Upload":["Mettre en ligne"],"Import":["Importer"],"Update":["Mettre à jour"],"Auto-generate URL":["URL auto-générée "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."],"RSS Token":["Jeton RSS "],"404 Logs":["Journaux des 404 "],"(time to keep logs for)":["(durée de conservation des journaux)"],"Redirect Logs":["Journaux des redirections "],"I'm a nice person and I have helped support the author of this plugin":["Je suis un type bien et j’ai aidé l’auteur de cette extension."],"Plugin Support":["Support de l’extension "],"Options":["Options"],"Two months":["Deux mois"],"A month":["Un mois"],"A week":["Une semaine"],"A day":["Un jour"],"No logs":["Aucun journal"],"Delete All":["Tout supprimer"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilisez les groupes pour organiser vos redirections. Les groupes sont assignés à un module qui affecte la manière dont les redirections dans ce groupe fonctionnent. Si vous n’êtes pas sûr/e, tenez-vous en au module de WordPress."],"Add Group":["Ajouter un groupe"],"Search":["Rechercher"],"Groups":["Groupes"],"Save":["Enregistrer"],"Group":["Groupe"],"Match":["Correspondant"],"Add new redirection":["Ajouter une nouvelle redirection"],"Cancel":["Annuler"],"Download":["Télécharger"],"Redirection":["Redirection"],"Settings":["Réglages"],"Error (404)":["Erreur (404)"],"Pass-through":["Outrepasser"],"Redirect to random post":["Rediriger vers un article aléatoire"],"Redirect to URL":["Redirection vers une URL"],"Invalid group when creating redirect":["Groupe non valide à la création d’une redirection"],"IP":["IP"],"Source URL":["URL source"],"Date":["Date"],"Add Redirect":["Ajouter une redirection"],"All modules":["Tous les modules"],"View Redirects":["Voir les redirections"],"Module":["Module"],"Redirects":["Redirections"],"Name":["Nom"],"Filter":["Filtre"],"Reset hits":["Réinitialiser les vues"],"Enable":["Activer"],"Disable":["Désactiver"],"Delete":["Supprimer"],"Edit":["Modifier"],"Last Access":["Dernier accès"],"Hits":["Vues"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Articles modifiés"],"Redirections":["Redirections"],"User Agent":["Agent utilisateur"],"URL and user agent":["URL et agent utilisateur"],"Target URL":["URL cible"],"URL only":["URL uniquement"],"Regex":["Regex"],"Referrer":["Référant"],"URL and referrer":["URL et référent"],"Logged Out":["Déconnecté"],"Logged In":["Connecté"],"URL and login status":["URL et état de connexion"]}
1
+ {"":[],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":[""],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":[""],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":["Mise à jour nécessaire"],"I need some support!":["J’ai besoin d’aide !"],"Finish Setup":[""],"Checking your REST API":[""],"Retry":["Réessayer"],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":[""],"Caching software, for example Cloudflare":[""],"A server firewall or other server configuration":[""],"A security plugin":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":[""],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":[""],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":[""],"{{link}}Read more about this.{{/link}}":[""],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":[""],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":[""],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":[""],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":[""],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":[""],"Progress: %(complete)d$":[""],"Leaving before the process has completed may cause problems.":[""],"Setting up Redirection":[""],"Upgrading Redirection":[""],"Please remain on this page until complete.":[""],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":[""],"Skip this stage":[""],"Try again":[""],"Database problem":[""],"Please enable JavaScript":["Veuillez activer JavaScript"],"Please upgrade your database":["Veuillez mettre à niveau votre base de données"],"Upgrade Database":[""],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":[""],"Failed to perform query \"%s\"":[""],"Table \"%s\" is missing":[""],"Create basic data":[""],"Install Redirection tables":[""],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":["Veuillez ne pas essayer de rediriger toutes vos 404 - ce n’est pas une bonne chose à faire."],"Only the 404 page type is currently supported.":["Seul le type de page 404 est actuellement supporté."],"Page Type":["Type de page"],"Enter IP addresses (one per line)":["Saisissez les adresses IP (une par ligne)"],"Describe the purpose of this redirect (optional)":["Décrivez le but de cette redirection (facultatif)"],"418 - I'm a teapot":["418 - Je suis une théière"],"403 - Forbidden":["403 - Interdit"],"400 - Bad Request":["400 - mauvaise requête"],"304 - Not Modified":["304 - Non modifié"],"303 - See Other":["303 - Voir ailleurs"],"Do nothing (ignore)":["Ne rien faire (ignorer)"],"Target URL when not matched (empty to ignore)":["URL cible si aucune correspondance (laisser vide pour ignorer)"],"Target URL when matched (empty to ignore)":["URL cible si il y a une correspondance (laisser vide pour ignorer)"],"Show All":["Tout afficher"],"Delete all logs for these entries":["Supprimer les journaux pour ces entrées"],"Delete all logs for this entry":["Supprimer les journaux pour cet entrée"],"Delete Log Entries":["Supprimer les entrées du journal"],"Group by IP":["Grouper par IP"],"Group by URL":["Grouper par URL"],"No grouping":["Aucun regroupement"],"Ignore URL":["Ignorer l’URL"],"Block IP":["Bloquer l’IP"],"Redirect All":["Tout rediriger"],"Count":["Compter"],"URL and WordPress page type":["URL et type de page WordPress"],"URL and IP":["URL et IP"],"Problem":["Problème"],"Good":["Bon"],"Check":["Vérifier"],"Check Redirect":["Vérifier la redirection"],"Check redirect for: {{code}}%s{{/code}}":["Vérifier la redirection pour : {{code}}%s{{/code}}"],"What does this mean?":["Qu’est-ce que cela veut dire ?"],"Not using Redirection":["N’utilisant pas Redirection"],"Using Redirection":["Utilisant Redirection"],"Found":["Trouvé"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(code)d{{/code}} vers {{code}}%(url)s{{/code}}"],"Expected":["Attendu"],"Error":["Erreur"],"Enter full URL, including http:// or https://":["Saisissez l’URL complète, avec http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Parfois votre navigateur peut mettre en cache une URL, ce qui rend les diagnostics difficiles. Utilisez cet outil pour vérifier qu’une URL est réellement redirigée."],"Redirect Tester":["Testeur de redirection"],"Target":["Cible"],"URL is not being redirected with Redirection":["L’URL n’est pas redirigée avec Redirection."],"URL is being redirected with Redirection":["L’URL est redirigée avec Redirection."],"Unable to load details":["Impossible de charger les détails"],"Enter server URL to match against":["Saisissez l’URL du serveur à comparer avec"],"Server":["Serveur"],"Enter role or capability value":["Saisissez la valeur de rôle ou de capacité"],"Role":["Rôle"],"Match against this browser referrer text":["Correspondance avec ce texte de référence du navigateur"],"Match against this browser user agent":["Correspondance avec cet agent utilisateur de navigateur"],"The relative URL you want to redirect from":["L’URL relative que vous voulez rediriger"],"The target URL you want to redirect to if matched":["L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."],"(beta)":["(bêta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."],"Force HTTPS":["Forcer HTTPS"],"GDPR / Privacy information":["RGPD/information de confidentialité"],"Add New":["Ajouter une redirection"],"Please logout and login again.":["Veuillez vous déconnecter puis vous connecter à nouveau."],"URL and role/capability":["URL et rôle/capacité"],"URL and server":["URL et serveur"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Si vous ne pouvez pas faire fonctionne quoi que ce soit alors l’extension Redirection doit rencontrer des difficultés à communiquer avec votre serveur. Vous pouvez essayer de modifier ces réglages manuellement :"],"Site and home protocol":["Protocole du site et de l’accueil"],"Site and home are consistent":["Le site et l’accueil sont cohérents"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Sachez qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour obtenir de l’aide."],"Accept Language":["Accepter la langue"],"Header value":["Valeur de l’en-tête"],"Header name":["Nom de l’en-tête"],"HTTP Header":["En-tête HTTP"],"WordPress filter name":["Nom de filtre WordPress"],"Filter Name":["Nom du filtre"],"Cookie value":["Valeur du cookie"],"Cookie name":["Nom du cookie"],"Cookie":["Cookie"],"clearing your cache.":["vider votre cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "],"URL and HTTP header":["URL et en-tête HTTP"],"URL and custom filter":["URL et filtre personnalisé"],"URL and cookie":["URL et cookie"],"404 deleted":["404 supprimée"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Jetez un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}L’extension Redirection ne peut pas communiquer avec l’API REST{{/link}}. Si vous l’avez désactivée alors vous devriez l’activer à nouveau."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."],"None of the suggestions helped":["Aucune de ces suggestions n’a aidé"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."],"Unable to load Redirection ☹️":["Impossible de charger Redirection ☹️"],"WordPress REST API is working at %s":["L’API REST WordPress fonctionne à %s"],"WordPress REST API":["API REST WordPress"],"REST API is not working so routes not checked":["L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."],"Redirection routes are working":["Les redirections fonctionnent"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"],"Redirection routes":["Routes de redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erreur de l’agent utilisateur"],"Unknown Useragent":["Agent utilisateur inconnu"],"Device":["Appareil"],"Operating System":["Système d’exploitation"],"Browser":["Navigateur"],"Engine":["Moteur"],"Useragent":["Agent utilisateur"],"Agent":["Agent"],"No IP logging":["Aucune IP journalisée"],"Full IP logging":["Connexion avec IP complète"],"Anonymize IP (mask last part)":["Anonymiser l’IP (masquer la dernière partie)"],"Monitor changes to %(type)s":["Monitorer les modifications de %(type)s"],"IP Logging":["Journalisation d’IP"],"(select IP logging level)":["(sélectionnez le niveau de journalisation des IP)"],"Geo Info":["Informations géographiques"],"Agent Info":["Informations sur l’agent"],"Filter by IP":["Filtrer par IP"],"Referrer / User Agent":["Référent / Agent utilisateur"],"Geo IP Error":["Erreur de l’IP géographique"],"Something went wrong obtaining this information":["Un problème est survenu lors de l’obtention de cette information"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Cette IP provient d’un réseau privé. Elle fait partie du réseau d’un domicile ou d’une entreprise. Aucune autre information ne peut être affichée."],"No details are known for this address.":["Aucun détail n’est connu pour cette adresse."],"Geo IP":["IP géographique"],"City":["Ville"],"Area":["Zone"],"Timezone":["Fuseau horaire"],"Geo Location":["Emplacement géographique"],"Powered by {{link}}redirect.li{{/link}}":["Propulsé par {{link}}redirect.li{{/link}}"],"Trash":["Corbeille"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Vous pouvez trouver une documentation complète à propos de l’utilisation de Redirection sur le site de support <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"],"Never cache":["Jamais de cache"],"An hour":["Une heure"],"Redirect Cache":["Cache de redirection"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"],"Are you sure you want to import from %s?":["Confirmez-vous l’importation depuis %s ?"],"Plugin Importers":["Importeurs d’extensions"],"The following redirect plugins were detected on your site and can be imported from.":["Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."],"total = ":["total = "],"Import from %s":["Importer depuis %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuillez mettre à jour votre installation WordPress."],"Default WordPress \"old slugs\"":["« Anciens slugs » de WordPress par défaut"],"Create associated redirect (added to end of URL)":["Créer une redirection associée (ajoutée à la fin de l’URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."],"⚡️ Magic fix ⚡️":["⚡️ Correction magique ⚡️"],"Plugin Status":["Statut de l’extension"],"Custom":["Personnalisé"],"Mobile":["Mobile"],"Feed Readers":["Lecteurs de flux"],"Libraries":["Librairies"],"URL Monitor Changes":["Surveiller la modification des URL"],"Save changes to this group":["Enregistrer les modifications apportées à ce groupe"],"For example \"/amp\"":["Par exemple « /amp »"],"URL Monitor":["URL à surveiller"],"Delete 404s":["Supprimer les pages 404"],"Delete all from IP %s":["Tout supprimer depuis l’IP %s"],"Delete all matching \"%s\"":["Supprimer toutes les correspondances « %s »"],"Your server has rejected the request for being too big. You will need to change it to continue.":["Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."],"Also check if your browser is able to load <code>redirection.js</code>:":["Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."],"Unable to load Redirection":["Impossible de charger Redirection"],"Unable to create group":["Impossible de créer un groupe"],"Post monitor group is valid":["Le groupe de surveillance d’articles est valide"],"Post monitor group is invalid":["Le groupe de surveillance d’articles est non valide"],"Post monitor group":["Groupe de surveillance d’article"],"All redirects have a valid group":["Toutes les redirections ont un groupe valide"],"Redirects with invalid groups detected":["Redirections avec des groupes non valides détectées"],"Valid redirect group":["Groupe de redirection valide"],"Valid groups detected":["Groupes valides détectés"],"No valid groups, so you will not be able to create any redirects":["Aucun groupe valide, vous ne pourrez pas créer de redirections."],"Valid groups":["Groupes valides"],"Database tables":["Tables de la base de données"],"The following tables are missing:":["Les tables suivantes sont manquantes :"],"All tables present":["Toutes les tables présentes"],"Cached Redirection detected":["Redirection en cache détectée"],"Please clear your browser cache and reload this page.":["Veuillez vider le cache de votre navigateur et recharger cette page."],"The data on this page has expired, please reload.":["Les données de cette page ont expiré, veuillez la recharger."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si vous pensez que Redirection est en faute alors créez un rapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."],"Loading, please wait...":["Veuillez patienter pendant le chargement…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."],"Create Issue":["Créer un rapport"],"Email":["E-mail"],"Important details":["Informations importantes"],"Need help?":["Besoin d’aide ?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."],"Pos":["Pos"],"410 - Gone":["410 – Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."],"Apache Module":["Module Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."],"Import to group":["Importer dans le groupe"],"Import a CSV, .htaccess, or JSON file.":["Importer un fichier CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Cliquer sur « ajouter un fichier » ou glisser-déposer ici."],"Add File":["Ajouter un fichier"],"File selected":["Fichier sélectionné"],"Importing":["Import"],"Finished importing":["Import terminé"],"Total redirects imported:":["Total des redirections importées :"],"Double-check the file is the correct format!":["Vérifiez à deux fois si le fichier et dans le bon format !"],"OK":["OK"],"Close":["Fermer"],"All imports will be appended to the current database.":["Tous les imports seront ajoutés à la base de données actuelle."],"Export":["Exporter"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."],"Everything":["Tout"],"WordPress redirects":["Redirections WordPress"],"Apache redirects":["Redirections Apache"],"Nginx redirects":["Redirections Nginx"]}
locale/json/redirection-ja.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":[""],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":[""],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":[""],"I need some support!":[""],"Finish Setup":[""],"Checking your REST API":[""],"Retry":[""],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":[""],"Caching software, for example Cloudflare":[""],"A server firewall or other server configuration":[""],"A security plugin":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":[""],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":[""],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":[""],"{{link}}Read more about this.{{/link}}":[""],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":[""],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":[""],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":[""],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":[""],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":[""],"Progress: %(complete)d$":[""],"Leaving before the process has completed may cause problems.":[""],"Setting up Redirection":[""],"Upgrading Redirection":[""],"Please remain on this page until complete.":[""],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":[""],"Skip this stage":[""],"Try again":[""],"Database problem":[""],"Please enable JavaScript":[""],"Please upgrade your database":[""],"Upgrade Database":[""],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":[""],"Failed to perform query \"%s\"":[""],"Table \"%s\" is missing":[""],"Create basic data":[""],"Install Redirection tables":[""],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":[""],"Only the 404 page type is currently supported.":[""],"Page Type":[""],"Enter IP addresses (one per line)":[""],"Describe the purpose of this redirect (optional)":[""],"418 - I'm a teapot":[""],"403 - Forbidden":[""],"400 - Bad Request":[""],"304 - Not Modified":[""],"303 - See Other":[""],"Do nothing (ignore)":[""],"Target URL when not matched (empty to ignore)":[""],"Target URL when matched (empty to ignore)":[""],"Show All":[""],"Delete all logs for these entries":[""],"Delete all logs for this entry":[""],"Delete Log Entries":[""],"Group by IP":[""],"Group by URL":[""],"No grouping":[""],"Ignore URL":[""],"Block IP":[""],"Redirect All":[""],"Count":[""],"URL and WordPress page type":[""],"URL and IP":[""],"Problem":[""],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":["エラー"],"Enter full URL, including http:// or https://":["http:// や https:// を含めた完全な URL を入力してください"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"],"Redirect Tester":["リダイレクトテスター"],"Target":["ターゲット"],"URL is not being redirected with Redirection":["URL は Redirection によってリダイレクトされません"],"URL is being redirected with Redirection":["URL は Redirection によってリダイレクトされます"],"Unable to load details":["詳細のロードに失敗しました"],"Enter server URL to match against":["一致するサーバーの URL を入力"],"Server":["サーバー"],"Enter role or capability value":["権限グループまたは権限の値を入力"],"Role":["権限グループ"],"Match against this browser referrer text":["このブラウザーリファラーテキストと一致"],"Match against this browser user agent":["このブラウザーユーザーエージェントに一致"],"The relative URL you want to redirect from":["リダイレクト元となる相対 URL"],"The target URL you want to redirect to if matched":["一致した場合にリダイレクトさせたいターゲット URL"],"(beta)":["(ベータ)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"],"Force HTTPS":["強制 HTTPS"],"GDPR / Privacy information":["GDPR / 個人情報"],"Add New":["新規追加"],"Please logout and login again.":["再度ログインし直してください。"],"URL and role/capability":["URL と権限グループ / 権限"],"URL and server":["URL とサーバー"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["動作が正常にできていない場合、 Redirection がサーバーと連携するのが困難な状態と考えられます。設定を手動で変更することが可能です :"],"Site and home protocol":["サイト URL とホーム URL のプロトコル"],"Site and home are consistent":["サイト URL とホーム URL は一致しています"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"],"Accept Language":["Accept Language"],"Header value":["ヘッダー値"],"Header name":["ヘッダー名"],"HTTP Header":["HTTP ヘッダー"],"WordPress filter name":["WordPress フィルター名"],"Filter Name":["フィルター名"],"Cookie value":["Cookie 値"],"Cookie name":["Cookie 名"],"Cookie":["Cookie"],"clearing your cache.":["キャッシュを削除"],"If you are using a caching system such as Cloudflare then please read this: ":["Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"],"URL and HTTP header":["URL と HTTP ヘッダー"],"URL and custom filter":["URL とカスタムフィルター"],"URL and cookie":["URL と Cookie"],"404 deleted":["404 deleted"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress が予期しないエラーを返却しました。これは REST API が動いていないか、他のプラグインやテーマによって起こされている可能性があります。"],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["{{link}}プラグインステータス{{/link}} をご覧ください。問題を特定でき、問題を修正できるかもしれません。"],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection は REST API との通信に失敗しました。{{/link}} もし無効化している場合、有効化する必要があります。"],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}セキュリティソフトが Redirectin をブロックしている可能性があります。{{/link}} REST API リクエストを許可するために設定を行う必要があります。"],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}キャッシュソフト{{/link}} 特に Cloudflare は間違ったキャッシュを行うことがあります。すべてのキャッシュをクリアしてみてください。"],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}一時的に他のプラグインを無効化してください。{{/link}} 多くの問題はこれで解決します。"],"None of the suggestions helped":["これらの提案では解決しませんでした"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"],"Unable to load Redirection ☹️":["Redirection のロードに失敗しました☹️"],"WordPress REST API is working at %s":["WordPress REST API は次の URL でアクセス可能です: %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API が動作していないためルートはチェックされません"],"Redirection routes are working":["Redirection ルートは正常に動作しています"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection が REST API ルート上にないようです。プラグインなどを使用して REST API を無効化しましたか ?"],"Redirection routes":["Redirection ルート"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["サイト上の WordPress REST API は無効化されています。Redirection の動作のためには再度有効化する必要があります。"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["ユーザーエージェントエラー"],"Unknown Useragent":["不明なユーザーエージェント"],"Device":["デバイス"],"Operating System":["オペレーティングシステム"],"Browser":["ブラウザー"],"Engine":["エンジン"],"Useragent":["ユーザーエージェント"],"Agent":["エージェント"],"No IP logging":["IP ロギングなし"],"Full IP logging":["フル IP ロギング"],"Anonymize IP (mask last part)":["匿名 IP (最後の部分をマスクする)"],"Monitor changes to %(type)s":["%(type)sの変更を監視"],"IP Logging":["IP ロギング"],"(select IP logging level)":["(IP のログレベルを選択)"],"Geo Info":["位置情報"],"Agent Info":["エージェントの情報"],"Filter by IP":["IP でフィルター"],"Referrer / User Agent":["リファラー / User Agent"],"Geo IP Error":["位置情報エラー"],"Something went wrong obtaining this information":["この情報の取得中に問題が発生しました。"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["これはプライベートネットワーク内からの IP です。家庭もしくは職場ネットワークからのアクセスであり、これ以上の情報を表示することはできません。"],"No details are known for this address.":["このアドレスには詳細がありません"],"Geo IP":["ジオ IP"],"City":["市区町村"],"Area":["エリア"],"Timezone":["タイムゾーン"],"Geo Location":["位置情報"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["ゴミ箱"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"],"Never cache":["キャッシュしない"],"An hour":["1時間"],"Redirect Cache":["リダイレクトキャッシュ"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"],"Are you sure you want to import from %s?":["本当に %s からインポートしますか ?"],"Plugin Importers":["インポートプラグイン"],"The following redirect plugins were detected on your site and can be imported from.":["サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"],"total = ":["全数 ="],"Import from %s":["%s からインポート"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":["初期設定の WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"],"⚡️ Magic fix ⚡️":["⚡️マジック修正⚡️"],"Plugin Status":["プラグインステータス"],"Custom":["カスタム"],"Mobile":["モバイル"],"Feed Readers":["フィード読者"],"Libraries":["ライブラリ"],"URL Monitor Changes":["変更を監視する URL"],"Save changes to this group":["このグループへの変更を保存"],"For example \"/amp\"":["例: \"/amp\""],"URL Monitor":["URL モニター"],"Delete 404s":["404を削除"],"Delete all from IP %s":["すべての IP %s からのものを削除"],"Delete all matching \"%s\"":["すべての \"%s\" に一致するものを削除"],"Your server has rejected the request for being too big. You will need to change it to continue.":["大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"],"Also check if your browser is able to load <code>redirection.js</code>:":["また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"],"Unable to load Redirection":["Redirection のロードに失敗しました"],"Unable to create group":["グループの作成に失敗しました"],"Post monitor group is valid":["投稿モニターグループは有効です"],"Post monitor group is invalid":["投稿モニターグループが無効です"],"Post monitor group":["投稿モニターグループ"],"All redirects have a valid group":["すべてのリダイレクトは有効なグループになっています"],"Redirects with invalid groups detected":["無効なグループのリダイレクトが検出されました"],"Valid redirect group":["有効なリダイレクトグループ"],"Valid groups detected":["有効なグループが検出されました"],"No valid groups, so you will not be able to create any redirects":["有効なグループがない場合、新規のリダイレクトを追加することはできません。"],"Valid groups":["有効なグループ"],"Database tables":["データベーステーブル"],"The following tables are missing:":["次のテーブルが不足しています:"],"All tables present":["すべてのテーブルが存在しています"],"Cached Redirection detected":["キャッシュされた Redirection が検知されました"],"Please clear your browser cache and reload this page.":["ブラウザーのキャッシュをクリアしてページを再読込してください。"],"The data on this page has expired, please reload.":["このページのデータが期限切れになりました。再読込してください。"],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["サーバーが 403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":["もしこの原因が Redirection だと思うのであれば Issue を作成してください。"],"This may be caused by another plugin - look at your browser's error console for more details.":["この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"],"Loading, please wait...":["ロード中です。お待ち下さい…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n issue{{/link}} を詳細とともに作成してください。"],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"],"Create Issue":["Issue を作成"],"Email":["メール"],"Important details":["重要な詳細"],"Need help?":["ヘルプが必要ですか?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"],"Pos":["Pos"],"410 - Gone":["410 - 消滅"],"Position":["配置"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"Log entries (%d max)":["ログ (最大 %d)"],"Search by IP":["IP による検索"],"Select bulk action":["一括操作を選択"],"Bulk Actions":["一括操作"],"Apply":["適応"],"First page":["最初のページ"],"Prev page":["前のページ"],"Current Page":["現在のページ"],"of %(page)s":["%(page)s"],"Next page":["次のページ"],"Last page":["最後のページ"],"%s item":[["%s 個のアイテム"]],"Select All":["すべて選択"],"Sorry, something went wrong loading the data - please try again":["データのロード中に問題が発生しました - もう一度お試しください"],"No results":["結果なし"],"Delete the logs - are you sure?":["本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":["ログを消去する"],"No! Don't delete the logs":["ログを消去しない"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":["ニュースレター"],"Want to keep up to date with changes to Redirection?":["リダイレクトの変更を最新の状態に保ちたいですか ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":[""],"Your email address:":["メールアドレス: "],"You've supported this plugin - thank you!":["あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"You get useful software and I get to carry on making it better.":["あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Forever":["永久に"],"Delete the plugin - are you sure?":["本当にプラグインを削除しますか ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":["プラグインを消去する"],"No! Don't delete the plugin":["プラグインを消去しない"],"John Godley":["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":["ログ"],"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.":["個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"],"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":["設定"],"Error (404)":["エラー (404)"],"Pass-through":["通過"],"Redirect to random post":["ランダムな記事へ転送"],"Redirect to URL":["URL へ転送"],"Invalid group when creating redirect":["転送ルールを作成する際に無効なグループが指定されました"],"IP":["IP"],"Source URL":["ソース URL"],"Date":["日付"],"Add Redirect":["転送ルールを追加"],"All modules":["すべてのモジュール"],"View Redirects":["転送ルールを表示"],"Module":["モジュール"],"Redirects":["転送ルール"],"Name":["名称"],"Filter":["フィルター"],"Reset hits":["訪問数をリセット"],"Enable":["有効化"],"Disable":["無効化"],"Delete":["削除"],"Edit":["編集"],"Last Access":["前回のアクセス"],"Hits":["ヒット数"],"URL":["URL"],"Type":["タイプ"],"Modified Posts":["編集済みの投稿"],"Redirections":["転送ルール"],"User Agent":["ユーザーエージェント"],"URL and user agent":["URL およびユーザーエージェント"],"Target URL":["ターゲット URL"],"URL only":["URL のみ"],"Regex":["正規表現"],"Referrer":["リファラー"],"URL and referrer":["URL およびリファラー"],"Logged Out":["ログアウト中"],"Logged In":["ログイン中"],"URL and login status":["URL およびログイン状態"]}
1
+ {"":[],"blur":[""],"focus":[""],"scroll":[""],"Pass - as ignore, but also copies the query parameters to the target":[""],"Ignore - as exact, but ignores any query parameters not in your source":[""],"Exact - matches the query parameters exactly defined in your source, in any order":[""],"Default query matching":[""],"Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})":[""],"Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})":[""],"Applies to all redirections unless you configure them otherwise.":[""],"Default URL settings":[""],"Ignore and pass all query parameters":[""],"Ignore all query parameters":[""],"Exact match":[""],"Caching software (e.g Cloudflare)":[""],"A security plugin (e.g Wordfence)":[""],"No more options":[""],"URL options":[""],"Query Parameters":[""],"Ignore & pass parameters to the target":[""],"Ignore all parameters":[""],"Exact match all parameters in any order":[""],"Ignore Case":[""],"Ignore Slash":[""],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":[""],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":[""],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":[""],"I need some support!":[""],"Finish Setup":[""],"Checking your REST API":[""],"Retry":[""],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":[""],"A server firewall or other server configuration (e.g OVH)":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":[""],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":[""],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":[""],"{{link}}Read more about this.{{/link}}":[""],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":[""],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":[""],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":[""],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":[""],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":[""],"Progress: %(complete)d$":[""],"Leaving before the process has completed may cause problems.":[""],"Setting up Redirection":[""],"Upgrading Redirection":[""],"Please remain on this page until complete.":[""],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":[""],"Skip this stage":[""],"Try again":[""],"Database problem":[""],"Please enable JavaScript":[""],"Please upgrade your database":[""],"Upgrade Database":[""],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":[""],"Failed to perform query \"%s\"":[""],"Table \"%s\" is missing":[""],"Create basic data":[""],"Install Redirection tables":[""],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":[""],"Only the 404 page type is currently supported.":[""],"Page Type":[""],"Enter IP addresses (one per line)":[""],"Describe the purpose of this redirect (optional)":[""],"418 - I'm a teapot":[""],"403 - Forbidden":[""],"400 - Bad Request":[""],"304 - Not Modified":[""],"303 - See Other":[""],"Do nothing (ignore)":[""],"Target URL when not matched (empty to ignore)":[""],"Target URL when matched (empty to ignore)":[""],"Show All":[""],"Delete all logs for these entries":[""],"Delete all logs for this entry":[""],"Delete Log Entries":[""],"Group by IP":[""],"Group by URL":[""],"No grouping":[""],"Ignore URL":[""],"Block IP":[""],"Redirect All":[""],"Count":[""],"URL and WordPress page type":[""],"URL and IP":[""],"Problem":[""],"Good":[""],"Check":[""],"Check Redirect":[""],"Check redirect for: {{code}}%s{{/code}}":[""],"What does this mean?":[""],"Not using Redirection":[""],"Using Redirection":[""],"Found":[""],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":[""],"Error":["エラー"],"Enter full URL, including http:// or https://":["http:// や https:// を含めた完全な URL を入力してください"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"],"Redirect Tester":["リダイレクトテスター"],"Target":["ターゲット"],"URL is not being redirected with Redirection":["URL は Redirection によってリダイレクトされません"],"URL is being redirected with Redirection":["URL は Redirection によってリダイレクトされます"],"Unable to load details":["詳細のロードに失敗しました"],"Enter server URL to match against":["一致するサーバーの URL を入力"],"Server":["サーバー"],"Enter role or capability value":["権限グループまたは権限の値を入力"],"Role":["権限グループ"],"Match against this browser referrer text":["このブラウザーリファラーテキストと一致"],"Match against this browser user agent":["このブラウザーユーザーエージェントに一致"],"The relative URL you want to redirect from":["リダイレクト元となる相対 URL"],"The target URL you want to redirect to if matched":["一致した場合にリダイレクトさせたいターゲット URL"],"(beta)":["(ベータ)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"],"Force HTTPS":["強制 HTTPS"],"GDPR / Privacy information":["GDPR / 個人情報"],"Add New":["新規追加"],"Please logout and login again.":["再度ログインし直してください。"],"URL and role/capability":["URL と権限グループ / 権限"],"URL and server":["URL とサーバー"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["動作が正常にできていない場合、 Redirection がサーバーと連携するのが困難な状態と考えられます。設定を手動で変更することが可能です :"],"Site and home protocol":["サイト URL とホーム URL のプロトコル"],"Site and home are consistent":["サイト URL とホーム URL は一致しています"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"],"Accept Language":["Accept Language"],"Header value":["ヘッダー値"],"Header name":["ヘッダー名"],"HTTP Header":["HTTP ヘッダー"],"WordPress filter name":["WordPress フィルター名"],"Filter Name":["フィルター名"],"Cookie value":["Cookie 値"],"Cookie name":["Cookie 名"],"Cookie":["Cookie"],"clearing your cache.":["キャッシュを削除"],"If you are using a caching system such as Cloudflare then please read this: ":["Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"],"URL and HTTP header":["URL と HTTP ヘッダー"],"URL and custom filter":["URL とカスタムフィルター"],"URL and cookie":["URL と Cookie"],"404 deleted":["404 deleted"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress が予期しないエラーを返却しました。これは REST API が動いていないか、他のプラグインやテーマによって起こされている可能性があります。"],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["{{link}}プラグインステータス{{/link}} をご覧ください。問題を特定でき、問題を修正できるかもしれません。"],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection は REST API との通信に失敗しました。{{/link}} もし無効化している場合、有効化する必要があります。"],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}セキュリティソフトが Redirectin をブロックしている可能性があります。{{/link}} REST API リクエストを許可するために設定を行う必要があります。"],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}キャッシュソフト{{/link}} 特に Cloudflare は間違ったキャッシュを行うことがあります。すべてのキャッシュをクリアしてみてください。"],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}一時的に他のプラグインを無効化してください。{{/link}} 多くの問題はこれで解決します。"],"None of the suggestions helped":["これらの提案では解決しませんでした"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"],"Unable to load Redirection ☹️":["Redirection のロードに失敗しました☹️"],"WordPress REST API is working at %s":["WordPress REST API は次の URL でアクセス可能です: %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API が動作していないためルートはチェックされません"],"Redirection routes are working":["Redirection ルートは正常に動作しています"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection が REST API ルート上にないようです。プラグインなどを使用して REST API を無効化しましたか ?"],"Redirection routes":["Redirection ルート"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["サイト上の WordPress REST API は無効化されています。Redirection の動作のためには再度有効化する必要があります。"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["ユーザーエージェントエラー"],"Unknown Useragent":["不明なユーザーエージェント"],"Device":["デバイス"],"Operating System":["オペレーティングシステム"],"Browser":["ブラウザー"],"Engine":["エンジン"],"Useragent":["ユーザーエージェント"],"Agent":["エージェント"],"No IP logging":["IP ロギングなし"],"Full IP logging":["フル IP ロギング"],"Anonymize IP (mask last part)":["匿名 IP (最後の部分をマスクする)"],"Monitor changes to %(type)s":["%(type)sの変更を監視"],"IP Logging":["IP ロギング"],"(select IP logging level)":["(IP のログレベルを選択)"],"Geo Info":["位置情報"],"Agent Info":["エージェントの情報"],"Filter by IP":["IP でフィルター"],"Referrer / User Agent":["リファラー / User Agent"],"Geo IP Error":["位置情報エラー"],"Something went wrong obtaining this information":["この情報の取得中に問題が発生しました。"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["これはプライベートネットワーク内からの IP です。家庭もしくは職場ネットワークからのアクセスであり、これ以上の情報を表示することはできません。"],"No details are known for this address.":["このアドレスには詳細がありません"],"Geo IP":["ジオ IP"],"City":["市区町村"],"Area":["エリア"],"Timezone":["タイムゾーン"],"Geo Location":["位置情報"],"Powered by {{link}}redirect.li{{/link}}":["Powered by {{link}}redirect.li{{/link}}"],"Trash":["ゴミ箱"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"],"Never cache":["キャッシュしない"],"An hour":["1時間"],"Redirect Cache":["リダイレクトキャッシュ"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"],"Are you sure you want to import from %s?":["本当に %s からインポートしますか ?"],"Plugin Importers":["インポートプラグイン"],"The following redirect plugins were detected on your site and can be imported from.":["サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"],"total = ":["全数 ="],"Import from %s":["%s からインポート"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":["初期設定の WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"],"⚡️ Magic fix ⚡️":["⚡️マジック修正⚡️"],"Plugin Status":["プラグインステータス"],"Custom":["カスタム"],"Mobile":["モバイル"],"Feed Readers":["フィード読者"],"Libraries":["ライブラリ"],"URL Monitor Changes":["変更を監視する URL"],"Save changes to this group":["このグループへの変更を保存"],"For example \"/amp\"":["例: \"/amp\""],"URL Monitor":["URL モニター"],"Delete 404s":["404を削除"],"Delete all from IP %s":["すべての IP %s からのものを削除"],"Delete all matching \"%s\"":["すべての \"%s\" に一致するものを削除"],"Your server has rejected the request for being too big. You will need to change it to continue.":["大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"],"Also check if your browser is able to load <code>redirection.js</code>:":["また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"],"Unable to load Redirection":["Redirection のロードに失敗しました"],"Unable to create group":["グループの作成に失敗しました"],"Post monitor group is valid":["投稿モニターグループは有効です"],"Post monitor group is invalid":["投稿モニターグループが無効です"],"Post monitor group":["投稿モニターグループ"],"All redirects have a valid group":["すべてのリダイレクトは有効なグループになっています"],"Redirects with invalid groups detected":["無効なグループのリダイレクトが検出されました"],"Valid redirect group":["有効なリダイレクトグループ"],"Valid groups detected":["有効なグループが検出されました"],"No valid groups, so you will not be able to create any redirects":["有効なグループがない場合、新規のリダイレクトを追加することはできません。"],"Valid groups":["有効なグループ"],"Database tables":["データベーステーブル"],"The following tables are missing:":["次のテーブルが不足しています:"],"All tables present":["すべてのテーブルが存在しています"],"Cached Redirection detected":["キャッシュされた Redirection が検知されました"],"Please clear your browser cache and reload this page.":["ブラウザーのキャッシュをクリアしてページを再読込してください。"],"The data on this page has expired, please reload.":["このページのデータが期限切れになりました。再読込してください。"],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["サーバーが 403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":["もしこの原因が Redirection だと思うのであれば Issue を作成してください。"],"This may be caused by another plugin - look at your browser's error console for more details.":["この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"],"Loading, please wait...":["ロード中です。お待ち下さい…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n issue{{/link}} を詳細とともに作成してください。"],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"],"Create Issue":["Issue を作成"],"Email":["メール"],"Important details":["重要な詳細"],"Need help?":["ヘルプが必要ですか?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"],"Pos":["Pos"],"410 - Gone":["410 - 消滅"],"Position":["配置"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"Log entries (%d max)":["ログ (最大 %d)"],"Search by IP":["IP による検索"],"Select bulk action":["一括操作を選択"],"Bulk Actions":["一括操作"],"Apply":["適応"],"First page":["最初のページ"],"Prev page":["前のページ"],"Current Page":["現在のページ"],"of %(page)s":["%(page)s"],"Next page":["次のページ"],"Last page":["最後のページ"],"%s item":[["%s 個のアイテム"]],"Select All":["すべて選択"],"Sorry, something went wrong loading the data - please try again":["データのロード中に問題が発生しました - もう一度お試しください"],"No results":["結果なし"],"Delete the logs - are you sure?":["本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":["ログを消去する"],"No! Don't delete the logs":["ログを消去しない"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":["ニュースレター"],"Want to keep up to date with changes to Redirection?":["リダイレクトの変更を最新の状態に保ちたいですか ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":[""],"Your email address:":["メールアドレス: "],"You've supported this plugin - thank you!":["あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"You get useful software and I get to carry on making it better.":["あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Forever":["永久に"],"Delete the plugin - are you sure?":["本当にプラグインを削除しますか ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":["プラグインを消去する"],"No! Don't delete the plugin":["プラグインを消去しない"],"John Godley":["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":["ログ"],"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.":["個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"],"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":["設定"],"Error (404)":["エラー (404)"],"Pass-through":["通過"],"Redirect to random post":["ランダムな記事へ転送"],"Redirect to URL":["URL へ転送"],"Invalid group when creating redirect":["転送ルールを作成する際に無効なグループが指定されました"],"IP":["IP"],"Source URL":["ソース URL"],"Date":["日付"],"Add Redirect":["転送ルールを追加"],"All modules":["すべてのモジュール"],"View Redirects":["転送ルールを表示"],"Module":["モジュール"],"Redirects":["転送ルール"],"Name":["名称"],"Filter":["フィルター"],"Reset hits":["訪問数をリセット"],"Enable":["有効化"],"Disable":["無効化"],"Delete":["削除"],"Edit":["編集"],"Last Access":["前回のアクセス"],"Hits":["ヒット数"],"URL":["URL"],"Type":["タイプ"],"Modified Posts":["編集済みの投稿"],"Redirections":["転送ルール"],"User Agent":["ユーザーエージェント"],"URL and user agent":["URL およびユーザーエージェント"],"Target URL":["ターゲット URL"],"URL only":["URL のみ"],"Regex":["正規表現"],"Referrer":["リファラー"],"URL and referrer":["URL およびリファラー"],"Logged Out":["ログアウト中"],"Logged In":["ログイン中"],"URL and login status":["URL およびログイン状態"]}
locale/json/redirection-pt_BR.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Relative REST API":["API REST relativa"],"Raw REST API":["API REST raw"],"Default REST API":["API REST padrão"],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect.":["Pronto, é só isso, agora você está redirecionando! O que vai acima é só um exemplo - não dá para inserir um redirecionamento."],"(Example) The target URL is the new URL":["(Exemplo) O URL de destino é o novo URL"],"(Example) The source URL is your old or original URL":["(Exemplo) O URL de origem é o URL antigo ou oiginal"],"Disabled! Detected PHP %s, need PHP 5.4+":["Desabilitado! Detectado PHP %s, é necessário PHP 5.4+"],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":["Faça um backup de seus dados do Redirection: {{download}}baixar um backup{{/download}}."],"A database upgrade is in progress. Please continue to finish.":["Uma atualização do banco de dados está em andamento. Continue para concluir."],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":["O banco de dados do Redirection precisa ser atualizado - <a href=\"%1$1s\">clique para atualizar</a>."],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":["A versão do banco de dados atual é %(current)s, a mais recente é %(latest)s. Por favor atualize para usar novos recursos."],"Redirection database needs updating":["O banco de dados do Redirection precisa ser atualizado"],"Update Required":["Atualização Obrigatória"],"I need some support!":["Preciso de algum suporte!"],"Finish Setup":["Concluir Configuração"],"Checking your REST API":["Conferindo o seu API REST"],"Retry":["Tentar de novo"],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":["Você tem diferentes URLs configurados na página Configurações > Geral do WordPress, o que geralmente indica um erro de configuração, e isso pode causar problemas com a API REST. Confira suas configurações."],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":["Se você tiver um problema, consulte a documentação do seu plugin, ou tente falar com o suporte do provedor de hospedagem. Isso geralmente {{link}}não é um problema causado pelo Redirection{{/link}}."],"Some other plugin that blocks the REST API":["Algum outro plugin que bloqueia a API REST"],"Caching software, for example Cloudflare":["Programas de cache, por exemplo Cloudflare"],"A server firewall or other server configuration":["Um firewall do servidor, ou outra configuração do servidor"],"A security plugin":["Um plugin de segurança"],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":["O Redirection usa a {{link}}API REST do WordPress{{/link}} para se comunicar com o WordPress. Isso está ativo e funcionando por padrão. Às vezes a API REST é bloqueada por:"],"Go back":["Voltar"],"Continue Setup":["Continuar a configuração"],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":["Armazenar o endereço IP permite que você executa outras ações de registro. Observe que você terá que aderir às leis locais com relação à coleta de dados (por exemplo, GDPR)."],"Store IP information for redirects and 404 errors.":["Armazenar informações sobre o IP para redirecionamentos e erros 404."],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":["Armazenar registros de redirecionamentos e erros 404 permite que você veja o que está acontecendo no seu site. Isso aumenta o espaço ocupado pelo banco de dados."],"Keep a log of all redirects and 404 errors.":["Manter um registro de todos os redirecionamentos e erros 404."],"{{link}}Read more about this.{{/link}}":["{{link}}Leia mais sobre isto.{{/link}}"],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":["Se você muda o link permanente de um post ou página, o Redirection pode criar automaticamente um redirecionamento para você."],"Monitor permalink changes in WordPress posts and pages":["Monitorar alterações nos links permanentes de posts e páginas do WordPress"],"These are some options you may want to enable now. They can be changed at any time.":["Estas são algumas opções que você pode ativar agora. Elas podem ser alteradas a qualquer hora."],"Basic Setup":["Configuração Básica"],"Start Setup":["Iniciar Configuração"],"When ready please press the button to continue.":["Quando estiver pronto, aperte o botão para continuar."],"First you will be asked a few questions, and then Redirection will set up your database.":["Primeiro você responderá algumas perguntas,e então o Redirection vai configurar seu banco de dados."],"What's next?":["O que vem a seguir?"],"Check a URL is being redirected":["Confira se um URL está sendo redirecionado"],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":["Correspondências de URL mais poderosas, inclusive {{regular}}expressões regulares{{/regular}} e {{other}}outras condições{{/other}}"],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":["{{link}}Importe{{/link}} de um arquivo .htaccess ou CSV e de outros vários plugins"],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":["{{link}}Monitore erros 404{{/link}}, obtenha informações detalhadas sobre o visitante, e corrija qualquer problema"],"Some features you may find useful are":["Alguns recursos que você pode achar úteis são"],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":["A documentação completa pode ser encontrada no {{link}}site do Redirection (em inglês).{{/link}}"],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":["Um redirecionamento simples envolve configurar um {{strong}}URL de origem{{/strong}} (o URL antigo) e um {{strong}}URL de destino{{/strong}} (o URL novo). Por exemplo:"],"How do I use this plugin?":["Como eu uso este plugin?"],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":["O Redirection é projetado para ser usado em sites com poucos redirecionamentos a sites com milhares de redirecionamentos."],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":["Obrigado por instalar e usar o Redirection v%(version)s. Este plugin vai permitir que você administre seus redirecionamentos 301, monitore os erros 404, e melhores seu site, sem precisar conhecimentos de Apache ou Nginx."],"Welcome to Redirection 🚀🎉":["Bem-vindo ao Redirection 🚀🎉"],"This will redirect everything, including the login pages. Please be sure you want to do this.":["Isso vai redirecionar tudo, inclusive as páginas de login. Certifique-se de que realmente quer fazer isso."],"To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":["Para prevenir uma expressão regular gananciosa, você pode usar o sinal {{code}}^{{/code}} para ancorá-la no início do URL. Por exemplo: {{code}}%(example)s{{/code}}"],"Remember to enable the \"regex\" checkbox if this is a regular expression.":["Lembre-se de ativar a caixa de seleção \"Regex\" se isto for uma expressão regular."],"The source URL should probably start with a {{code}}/{{/code}}":["O URL de origem deve provavelmente começar com {{code}}/{{/code}}"],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":["Isso vai ser convertido em um redirecionamento por servidor para o domínio {{code}}%(server)s{{/code}}."],"Anchor values are not sent to the server and cannot be redirected.":["Âncoras internas (#) não são enviadas ao servidor e não podem ser redirecionadas."],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":["{{code}}%(status)d{{/code}} para {{code}}%(target)s{{/code}}"],"Finished! 🎉":["Concluído! 🎉"],"Progress: %(complete)d$":["Progresso: %(complete)d$"],"Leaving before the process has completed may cause problems.":["Sair antes de o processo ser concluído pode causar problemas."],"Setting up Redirection":["Configurando o Redirection"],"Upgrading Redirection":["Atualizando o Redirection"],"Please remain on this page until complete.":["Permaneça nesta página até o fim."],"If you want to {{support}}ask for support{{/support}} please include these details:":["Se quiser {{support}}solicitar suporte{{/support}} inclua estes detalhes:"],"Stop upgrade":["Parar atualização"],"Skip this stage":["Pular esta fase"],"Try again":["Tentar de novo"],"Database problem":["Problema no banco de dados"],"Please enable JavaScript":["Ativar o JavaScript"],"Please upgrade your database":["Atualize seu banco de dados"],"Upgrade Database":["Atualizar Banco de Dados"],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":["Complete sua <a href=\"%s\">configuração do Redirection</a> para ativar este plugin."],"Your database does not need updating to %s.":["Seu banco de dados não requer atualização para %s."],"Failed to perform query \"%s\"":["Falha ao realizar a consulta \"%s\""],"Table \"%s\" is missing":["A tabela \"%s\" não foi encontrada"],"Create basic data":["Criar dados básicos"],"Install Redirection tables":["Instalar tabelas do Redirection"],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":["URL do site e do WordPress são inconsistentes. Corrija na página Configurações > Geral: %1$1s não é %2$2s"],"Please do not try and redirect all your 404s - this is not a good thing to do.":["Não tente redirecionar todos os seus 404s - isso não é uma coisa boa."],"Only the 404 page type is currently supported.":["Somente o tipo de página 404 é suportado atualmente."],"Page Type":["Tipo de página"],"Enter IP addresses (one per line)":["Digite endereços IP (um por linha)"],"Describe the purpose of this redirect (optional)":["Descreva o propósito deste redirecionamento (opcional)"],"418 - I'm a teapot":["418 - Sou uma chaleira"],"403 - Forbidden":["403 - Proibido"],"400 - Bad Request":["400 - Solicitação inválida"],"304 - Not Modified":["304 - Não modificado"],"303 - See Other":["303 - Veja outro"],"Do nothing (ignore)":["Fazer nada (ignorar)"],"Target URL when not matched (empty to ignore)":["URL de destino se não houver correspondência (em branco para ignorar)"],"Target URL when matched (empty to ignore)":["URL de destino se houver correspondência (em branco para ignorar)"],"Show All":["Mostrar todos"],"Delete all logs for these entries":["Excluir todos os registros para estas entradas"],"Delete all logs for this entry":["Excluir todos os registros para esta entrada"],"Delete Log Entries":["Excluir entradas no registro"],"Group by IP":["Agrupar por IP"],"Group by URL":["Agrupar por URL"],"No grouping":["Não agrupar"],"Ignore URL":["Ignorar URL"],"Block IP":["Bloquear IP"],"Redirect All":["Redirecionar todos"],"Count":["Número"],"URL and WordPress page type":["URL e tipo de página do WordPress"],"URL and IP":["URL e IP"],"Problem":["Problema"],"Good":["Bom"],"Check":["Verificar"],"Check Redirect":["Verificar redirecionamento"],"Check redirect for: {{code}}%s{{/code}}":["Verifique o redirecionamento de: {{code}}%s{{/code}}"],"What does this mean?":["O que isto significa?"],"Not using Redirection":["Sem usar o Redirection"],"Using Redirection":["Usando o Redirection"],"Found":["Encontrado"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} para {{code}}%(url)s{{/code}}"],"Expected":["Esperado"],"Error":["Erro"],"Enter full URL, including http:// or https://":["Digite o URL inteiro, incluindo http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."],"Redirect Tester":["Teste de redirecionamento"],"Target":["Destino"],"URL is not being redirected with Redirection":["O URL não está sendo redirecionado com o Redirection"],"URL is being redirected with Redirection":["O URL está sendo redirecionado com o Redirection"],"Unable to load details":["Não foi possível carregar os detalhes"],"Enter server URL to match against":["Digite o URL do servidor para correspondência"],"Server":["Servidor"],"Enter role or capability value":["Digite a função ou capacidade"],"Role":["Função"],"Match against this browser referrer text":["Texto do referenciador do navegador para correspondênica"],"Match against this browser user agent":["Usuário de agente do navegador para correspondência"],"The relative URL you want to redirect from":["O URL relativo que você quer redirecionar"],"The target URL you want to redirect to if matched":["O URL de destino para qual você quer redirecionar, se houver correspondência"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"],"Force HTTPS":["Forçar HTTPS"],"GDPR / Privacy information":["GDPR / Informações sobre privacidade (em inglês)"],"Add New":["Adicionar novo"],"Please logout and login again.":["Desconecte-se da sua conta e acesse novamente."],"URL and role/capability":["URL e função/capacidade"],"URL and server":["URL e servidor"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Protocolo do endereço do WordPress e do site"],"Site and home are consistent":["O endereço do WordPress e do site são consistentes"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."],"Accept Language":["Aceitar Idioma"],"Header value":["Valor do cabeçalho"],"Header name":["Nome cabeçalho"],"HTTP Header":["Cabeçalho HTTP"],"WordPress filter name":["Nome do filtro WordPress"],"Filter Name":["Nome do filtro"],"Cookie value":["Valor do cookie"],"Cookie name":["Nome do cookie"],"Cookie":["Cookie"],"clearing your cache.":["limpando seu cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "],"URL and HTTP header":["URL e cabeçalho HTTP"],"URL and custom filter":["URL e filtro personalizado"],"URL and cookie":["URL e cookie"],"404 deleted":["404 excluído"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Como o Redirection usa a API REST. Não altere a menos que seja necessário"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."],"None of the suggestions helped":["Nenhuma das sugestões ajudou"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."],"Unable to load Redirection ☹️":["Não foi possível carregar o Redirection ☹️"],"WordPress REST API is working at %s":["A API REST do WordPress está funcionando em %s"],"WordPress REST API":["A API REST do WordPress"],"REST API is not working so routes not checked":["A API REST não está funcionado, por isso as rotas não foram verificadas"],"Redirection routes are working":["As rotas do Redirection estão funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"],"Redirection routes":["Rotas do Redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erro de agente de usuário"],"Unknown Useragent":["Agente de usuário desconhecido"],"Device":["Dispositivo"],"Operating System":["Sistema operacional"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuário"],"Agent":["Agente"],"No IP logging":["Não registrar IP"],"Full IP logging":["Registrar IP completo"],"Anonymize IP (mask last part)":["Tornar IP anônimo (mascarar a última parte)"],"Monitor changes to %(type)s":["Monitorar alterações em %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(selecione o nível de registro de IP)"],"Geo Info":["Informações geográficas"],"Agent Info":["Informação sobre o agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Referenciador / Agente de usuário"],"Geo IP Error":["Erro IP Geo"],"Something went wrong obtaining this information":["Algo deu errado ao obter essa informação"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Este é um IP de uma rede privada. Isso significa que ele está localizado dentro de uma rede residencial ou comercial e nenhuma outra informação pode ser exibida."],"No details are known for this address.":["Nenhum detalhe é conhecido para este endereço."],"Geo IP":["IP Geo"],"City":["Cidade"],"Area":["Região"],"Timezone":["Fuso horário"],"Geo Location":["Coordenadas"],"Powered by {{link}}redirect.li{{/link}}":["Fornecido por {{link}}redirect.li{{/link}}"],"Trash":["Lixeira"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"],"Never cache":["Nunca fazer cache"],"An hour":["Uma hora"],"Redirect Cache":["Cache dos redirecionamentos"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"],"Are you sure you want to import from %s?":["Tem certeza de que deseja importar de %s?"],"Plugin Importers":["Importar de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["O Redirection requer o WordPress v%1$1s, mas você está usando a versão v%2$2s. Atualize o WordPress"],"Default WordPress \"old slugs\"":["Redirecionamentos de \"slugs anteriores\" do WordPress"],"Create associated redirect (added to end of URL)":["Criar redirecionamento atrelado (adicionado ao fim do URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."],"⚡️ Magic fix ⚡️":["⚡️ Correção mágica ⚡️"],"Plugin Status":["Status do plugin"],"Custom":["Personalizado"],"Mobile":["Móvel"],"Feed Readers":["Leitores de feed"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Alterações do monitoramento de URLs"],"Save changes to this group":["Salvar alterações neste grupo"],"For example \"/amp\"":["Por exemplo, \"/amp\""],"URL Monitor":["Monitoramento de URLs"],"Delete 404s":["Excluir 404s"],"Delete all from IP %s":["Excluir registros do IP %s"],"Delete all matching \"%s\"":["Excluir tudo que corresponder a \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."],"Unable to load Redirection":["Não foi possível carregar o Redirection"],"Unable to create group":["Não foi possível criar grupo"],"Post monitor group is valid":["O grupo do monitoramento de posts é válido"],"Post monitor group is invalid":["O grupo de monitoramento de post é inválido"],"Post monitor group":["Grupo do monitoramento de posts"],"All redirects have a valid group":["Todos os redirecionamentos têm um grupo válido"],"Redirects with invalid groups detected":["Redirecionamentos com grupos inválidos detectados"],"Valid redirect group":["Grupo de redirecionamento válido"],"Valid groups detected":["Grupos válidos detectados"],"No valid groups, so you will not be able to create any redirects":["Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"],"Valid groups":["Grupos válidos"],"Database tables":["Tabelas do banco de dados"],"The following tables are missing:":["As seguintes tabelas estão faltando:"],"All tables present":["Todas as tabelas presentes"],"Cached Redirection detected":["O Redirection foi detectado no cache"],"Please clear your browser cache and reload this page.":["Limpe o cache do seu navegador e recarregue esta página."],"The data on this page has expired, please reload.":["Os dados nesta página expiraram, por favor recarregue."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["O WordPress não retornou uma resposta. Isso pode significar que ocorreu um erro ou que a solicitação foi bloqueada. Confira o error_log de seu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Seu servidor retornou um erro 403 Proibido, que pode indicar que a solicitação foi bloqueada. Você está usando um firewall ou um plugin de segurança?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Se você acha que o erro é do Redirection, abra um chamado."],"This may be caused by another plugin - look at your browser's error console for more details.":["Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."],"Loading, please wait...":["Carregando, aguarde..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."],"Create Issue":["Criar chamado"],"Email":["E-mail"],"Important details":["Detalhes importantes"],"Need help?":["Precisa de ajuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."],"Pos":["Pos"],"410 - Gone":["410 - Não existe mais"],"Position":["Posição"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."],"Import to group":["Importar para grupo"],"Import a CSV, .htaccess, or JSON file.":["Importar um arquivo CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Clique 'Adicionar arquivo' ou arraste e solte aqui."],"Add File":["Adicionar arquivo"],"File selected":["Arquivo selecionado"],"Importing":["Importando"],"Finished importing":["Importação concluída"],"Total redirects imported:":["Total de redirecionamentos importados:"],"Double-check the file is the correct format!":["Verifique novamente se o arquivo é o formato correto!"],"OK":["OK"],"Close":["Fechar"],"All imports will be appended to the current database.":["Todas as importações serão anexadas ao banco de dados atual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess do Apache"],"Nginx rewrite rules":["Regras de reescrita do Nginx"],"Redirection JSON":["JSON do Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Arquivos de registro podem ser exportados nas páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Erro 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"],"I'd like to support some more.":["Eu gostaria de ajudar mais um pouco."],"Support 💰":["Doação 💰"],"Redirection saved":["Redirecionamento salvo"],"Log deleted":["Registro excluído"],"Settings saved":["Configurações salvas"],"Group saved":["Grupo salvo"],"Are you sure you want to delete this item?":["Tem certeza de que deseja excluir este item?","Tem certeza de que deseja excluir estes item?"],"pass":["manter url"],"All groups":["Todos os grupos"],"301 - Moved Permanently":["301 - Mudou permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirecionamento temporário"],"308 - Permanent Redirect":["308 - Redirecionamento permanente"],"401 - Unauthorized":["401 - Não autorizado"],"404 - Not Found":["404 - Não encontrado"],"Title":["Título"],"When matched":["Quando corresponder"],"with HTTP code":["com código HTTP"],"Show advanced options":["Exibir opções avançadas"],"Matched Target":["Destino se correspondido"],"Unmatched Target":["Destino se não correspondido"],"Saving...":["Salvando..."],"View notice":["Veja o aviso"],"Invalid source URL":["URL de origem inválido"],"Invalid redirect action":["Ação de redirecionamento inválida"],"Invalid redirect matcher":["Critério de redirecionamento inválido"],"Unable to add new redirect":["Não foi possível criar novo redirecionamento"],"Something went wrong 🙁":["Algo deu errado 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"],"Log entries (%d max)":["Entradas do registro (máx %d)"],"Search by IP":["Pesquisar por IP"],"Select bulk action":["Selecionar ações em massa"],"Bulk Actions":["Ações em massa"],"Apply":["Aplicar"],"First page":["Primeira página"],"Prev page":["Página anterior"],"Current Page":["Página atual"],"of %(page)s":["de %(page)s"],"Next page":["Próxima página"],"Last page":["Última página"],"%s item":["%s item","%s itens"],"Select All":["Selecionar tudo"],"Sorry, something went wrong loading the data - please try again":["Desculpe, mas algo deu errado ao carregar os dados - tente novamente"],"No results":["Nenhum resultado"],"Delete the logs - are you sure?":["Excluir os registros - Você tem certeza?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."],"Yes! Delete the logs":["Sim! Exclua os registros"],"No! Don't delete the logs":["Não! Não exclua os registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."],"Newsletter":["Boletim"],"Want to keep up to date with changes to Redirection?":["Quer ficar a par de mudanças no Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":["Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."],"Your email address:":["Seu endereço de e-mail:"],"You've supported this plugin - thank you!":["Você apoiou este plugin - obrigado!"],"You get useful software and I get to carry on making it better.":["Você obtém softwares úteis e eu continuo fazendo isso melhor."],"Forever":["Para sempre"],"Delete the plugin - are you sure?":["Excluir o plugin - Você tem certeza?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."],"Yes! Delete the plugin":["Sim! Exclua o plugin"],"No! Don't delete the plugin":["Não! Não exclua o plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gerencie todos os seus redirecionamentos 301 e monitore erros 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."],"Redirection Support":["Ajuda do Redirection"],"Support":["Ajuda"],"404s":["404s"],"Log":["Registro"],"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.":["Selecionar esta opção irá remover todos os redirecionamentos, logs e todas as opções associadas ao plugin Redirection. Certifique-se de que é isso mesmo que deseja fazer."],"Delete Redirection":["Excluir o Redirection"],"Upload":["Carregar"],"Import":["Importar"],"Update":["Atualizar"],"Auto-generate URL":["Gerar automaticamente o URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registros de 404"],"(time to keep logs for)":["(tempo para manter os registros)"],"Redirect Logs":["Registros de redirecionamento"],"I'm a nice person and I have helped support the author of this plugin":["Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"],"Plugin Support":["Suporte do plugin"],"Options":["Opções"],"Two months":["Dois meses"],"A month":["Um mês"],"A week":["Uma semana"],"A day":["Um dia"],"No logs":["Não registrar"],"Delete All":["Apagar Tudo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use grupos para organizar os seus redirecionamentos. Os grupos são associados a um módulo, e o módulo afeta como os redirecionamentos do grupo funcionam. Na dúvida, use o módulo WordPress."],"Add Group":["Adicionar grupo"],"Search":["Pesquisar"],"Groups":["Grupos"],"Save":["Salvar"],"Group":["Grupo"],"Match":["Corresponder"],"Add new redirection":["Adicionar novo redirecionamento"],"Cancel":["Cancelar"],"Download":["Baixar"],"Redirection":["Redirection"],"Settings":["Configurações"],"Error (404)":["Erro (404)"],"Pass-through":["Manter URL de origem"],"Redirect to random post":["Redirecionar para um post aleatório"],"Redirect to URL":["Redirecionar para URL"],"Invalid group when creating redirect":["Grupo inválido ao criar o redirecionamento"],"IP":["IP"],"Source URL":["URL de origem"],"Date":["Data"],"Add Redirect":["Adicionar redirecionamento"],"All modules":["Todos os módulos"],"View Redirects":["Ver redirecionamentos"],"Module":["Módulo"],"Redirects":["Redirecionamentos"],"Name":["Nome"],"Filter":["Filtrar"],"Reset hits":["Redefinir acessos"],"Enable":["Ativar"],"Disable":["Desativar"],"Delete":["Excluir"],"Edit":["Editar"],"Last Access":["Último Acesso"],"Hits":["Acessos"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Posts modificados"],"Redirections":["Redirecionamentos"],"User Agent":["Agente de usuário"],"URL and user agent":["URL e agente de usuário"],"Target URL":["URL de destino"],"URL only":["URL somente"],"Regex":["Regex"],"Referrer":["Referenciador"],"URL and referrer":["URL e referenciador"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["URL e status de login"]}
1
+ {"":[],"blur":["borrar"],"focus":["focar"],"scroll":["rolar"],"Pass - as ignore, but also copies the query parameters to the target":["Passar - como ignorar, mas também copia os parâmetros de consulta para o destino"],"Ignore - as exact, but ignores any query parameters not in your source":["Ignorar - como Exato, mas ignora qualquer parâmetro de consulta que não esteja na sua origem"],"Exact - matches the query parameters exactly defined in your source, in any order":["Exato - corresponde os parâmetros de consulta exatamente definidos na origem, em qualquer ordem"],"Default query matching":["Correspondência de consulta padrão"],"Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})":["Ignorar barra final (ou seja {{code}}/post-legal/{{/code}} vai corresponder com {{code}}/post-legal{{/code}})"],"Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})":["Correspondências insensível à caixa (ou seja {{code}}/Post-Legal{{/code}} vai corresponder com {{code}}/post-legal{{/code}})"],"Applies to all redirections unless you configure them otherwise.":["Aplica-se a todos os redirecionamentos, a menos que você configure eles de outro modo."],"Default URL settings":["Configurações padrão de URL"],"Ignore and pass all query parameters":["Ignorar e passar todos os parâmetros de consulta"],"Ignore all query parameters":["Ignorar todos os parâmetros de consulta"],"Exact match":["Correspondência exata"],"Caching software (e.g Cloudflare)":["Programa de caching (por exemplo, Cloudflare)"],"A security plugin (e.g Wordfence)":["Um plugin de segurança (por exemplo, Wordfence)"],"No more options":["Não há mais opções"],"URL options":["Opções de URL"],"Query Parameters":["Parâmetros de Consulta"],"Ignore & pass parameters to the target":["Ignorar & passar parâmetros ao destino"],"Ignore all parameters":["Ignorar todos os parâmetros"],"Exact match all parameters in any order":["Correspondência exata de todos os parâmetros em qualquer ordem"],"Ignore Case":["Ignorar Caixa"],"Ignore Slash":["Ignorar Barra"],"Relative REST API":["API REST relativa"],"Raw REST API":["API REST raw"],"Default REST API":["API REST padrão"],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect.":["Pronto, é só isso, agora você já está redirecionando! O que vai acima é só um exemplo - agora você pode inserir um redirecionamento."],"(Example) The target URL is the new URL":["(Exemplo) O URL de destino é o novo URL"],"(Example) The source URL is your old or original URL":["(Exemplo) O URL de origem é o URL antigo ou oiginal"],"Disabled! Detected PHP %s, need PHP 5.4+":["Desabilitado! Detectado PHP %s, é necessário PHP 5.4+"],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":["Faça um backup de seus dados do Redirection: {{download}}baixar um backup{{/download}}."],"A database upgrade is in progress. Please continue to finish.":["Uma atualização do banco de dados está em andamento. Continue para concluir."],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":["O banco de dados do Redirection precisa ser atualizado - <a href=\"%1$1s\">clique para atualizar</a>."],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":["A versão do banco de dados atual é %(current)s, a mais recente é %(latest)s. Por favor atualize para usar novos recursos."],"Redirection database needs updating":["O banco de dados do Redirection precisa ser atualizado"],"Update Required":["Atualização Obrigatória"],"I need some support!":["Preciso de algum suporte!"],"Finish Setup":["Concluir Configuração"],"Checking your REST API":["Conferindo o seu API REST"],"Retry":["Tentar de novo"],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":["Você tem diferentes URLs configurados na página Configurações > Geral do WordPress, o que geralmente indica um erro de configuração, e isso pode causar problemas com a API REST. Confira suas configurações."],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":["Se você tiver um problema, consulte a documentação do seu plugin, ou tente falar com o suporte do provedor de hospedagem. Isso geralmente {{link}}não é um problema causado pelo Redirection{{/link}}."],"Some other plugin that blocks the REST API":["Algum outro plugin que bloqueia a API REST"],"A server firewall or other server configuration (e.g OVH)":["Um firewall do servidor, ou outra configuração do servidor (p.ex. OVH)"],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":["O Redirection usa a {{link}}API REST do WordPress{{/link}} para se comunicar com o WordPress. Isso está ativo e funcionando por padrão. Às vezes a API REST é bloqueada por:"],"Go back":["Voltar"],"Continue Setup":["Continuar a configuração"],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":["Armazenar o endereço IP permite que você executa outras ações de registro. Observe que você terá que aderir às leis locais com relação à coleta de dados (por exemplo, GDPR)."],"Store IP information for redirects and 404 errors.":["Armazenar informações sobre o IP para redirecionamentos e erros 404."],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":["Armazenar registros de redirecionamentos e erros 404 permite que você veja o que está acontecendo no seu site. Isso aumenta o espaço ocupado pelo banco de dados."],"Keep a log of all redirects and 404 errors.":["Manter um registro de todos os redirecionamentos e erros 404."],"{{link}}Read more about this.{{/link}}":["{{link}}Leia mais sobre isto.{{/link}}"],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":["Se você muda o link permanente de um post ou página, o Redirection pode criar automaticamente um redirecionamento para você."],"Monitor permalink changes in WordPress posts and pages":["Monitorar alterações nos links permanentes de posts e páginas do WordPress"],"These are some options you may want to enable now. They can be changed at any time.":["Estas são algumas opções que você pode ativar agora. Elas podem ser alteradas a qualquer hora."],"Basic Setup":["Configuração Básica"],"Start Setup":["Iniciar Configuração"],"When ready please press the button to continue.":["Quando estiver pronto, aperte o botão para continuar."],"First you will be asked a few questions, and then Redirection will set up your database.":["Primeiro você responderá algumas perguntas,e então o Redirection vai configurar seu banco de dados."],"What's next?":["O que vem a seguir?"],"Check a URL is being redirected":["Confira se um URL está sendo redirecionado"],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":["Correspondências de URL mais poderosas, inclusive {{regular}}expressões regulares{{/regular}} e {{other}}outras condições{{/other}}"],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":["{{link}}Importe{{/link}} de um arquivo .htaccess ou CSV e de outros vários plugins"],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":["{{link}}Monitore erros 404{{/link}}, obtenha informações detalhadas sobre o visitante, e corrija qualquer problema"],"Some features you may find useful are":["Alguns recursos que você pode achar úteis são"],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":["A documentação completa pode ser encontrada no {{link}}site do Redirection (em inglês).{{/link}}"],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":["Um redirecionamento simples envolve configurar um {{strong}}URL de origem{{/strong}} (o URL antigo) e um {{strong}}URL de destino{{/strong}} (o URL novo). Por exemplo:"],"How do I use this plugin?":["Como eu uso este plugin?"],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":["O Redirection é projetado para ser usado em sites com poucos redirecionamentos a sites com milhares de redirecionamentos."],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":["Obrigado por instalar e usar o Redirection v%(version)s. Este plugin vai permitir que você administre seus redirecionamentos 301, monitore os erros 404, e melhores seu site, sem precisar conhecimentos de Apache ou Nginx."],"Welcome to Redirection 🚀🎉":["Bem-vindo ao Redirection 🚀🎉"],"This will redirect everything, including the login pages. Please be sure you want to do this.":["Isso vai redirecionar tudo, inclusive as páginas de login. Certifique-se de que realmente quer fazer isso."],"To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":["Para prevenir uma expressão regular gananciosa, você pode usar {{code}}^{{/code}} para ancorá-la ao início do URL. Por exemplo: {{code}}%(example)s{{/code}}"],"Remember to enable the \"regex\" checkbox if this is a regular expression.":["Lembre-se de ativar a caixa de seleção \"Regex\" se isto for uma expressão regular."],"The source URL should probably start with a {{code}}/{{/code}}":["O URL de origem deve provavelmente começar com {{code}}/{{/code}}"],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":["Isso vai ser convertido em um redirecionamento por servidor para o domínio {{code}}%(server)s{{/code}}."],"Anchor values are not sent to the server and cannot be redirected.":["Âncoras internas (#) não são enviadas ao servidor e não podem ser redirecionadas."],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":["{{code}}%(status)d{{/code}} para {{code}}%(target)s{{/code}}"],"Finished! 🎉":["Concluído! 🎉"],"Progress: %(complete)d$":["Progresso: %(complete)d$"],"Leaving before the process has completed may cause problems.":["Sair antes de o processo ser concluído pode causar problemas."],"Setting up Redirection":["Configurando o Redirection"],"Upgrading Redirection":["Atualizando o Redirection"],"Please remain on this page until complete.":["Permaneça nesta página até o fim."],"If you want to {{support}}ask for support{{/support}} please include these details:":["Se quiser {{support}}solicitar suporte{{/support}} inclua estes detalhes:"],"Stop upgrade":["Parar atualização"],"Skip this stage":["Pular esta fase"],"Try again":["Tentar de novo"],"Database problem":["Problema no banco de dados"],"Please enable JavaScript":["Ativar o JavaScript"],"Please upgrade your database":["Atualize seu banco de dados"],"Upgrade Database":["Atualizar Banco de Dados"],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":["Complete sua <a href=\"%s\">configuração do Redirection</a> para ativar este plugin."],"Your database does not need updating to %s.":["Seu banco de dados não requer atualização para %s."],"Failed to perform query \"%s\"":["Falha ao realizar a consulta \"%s\""],"Table \"%s\" is missing":["A tabela \"%s\" não foi encontrada"],"Create basic data":["Criar dados básicos"],"Install Redirection tables":["Instalar tabelas do Redirection"],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":["URL do site e do WordPress são inconsistentes. Corrija na página Configurações > Geral: %1$1s não é %2$2s"],"Please do not try and redirect all your 404s - this is not a good thing to do.":["Não tente redirecionar todos os seus 404s - isso não é uma coisa boa."],"Only the 404 page type is currently supported.":["Somente o tipo de página 404 é suportado atualmente."],"Page Type":["Tipo de página"],"Enter IP addresses (one per line)":["Digite endereços IP (um por linha)"],"Describe the purpose of this redirect (optional)":["Descreva o propósito deste redirecionamento (opcional)"],"418 - I'm a teapot":["418 - Sou uma chaleira"],"403 - Forbidden":["403 - Proibido"],"400 - Bad Request":["400 - Solicitação inválida"],"304 - Not Modified":["304 - Não modificado"],"303 - See Other":["303 - Veja outro"],"Do nothing (ignore)":["Fazer nada (ignorar)"],"Target URL when not matched (empty to ignore)":["URL de destino se não houver correspondência (em branco para ignorar)"],"Target URL when matched (empty to ignore)":["URL de destino se houver correspondência (em branco para ignorar)"],"Show All":["Mostrar todos"],"Delete all logs for these entries":["Excluir todos os registros para estas entradas"],"Delete all logs for this entry":["Excluir todos os registros para esta entrada"],"Delete Log Entries":["Excluir entradas no registro"],"Group by IP":["Agrupar por IP"],"Group by URL":["Agrupar por URL"],"No grouping":["Não agrupar"],"Ignore URL":["Ignorar URL"],"Block IP":["Bloquear IP"],"Redirect All":["Redirecionar todos"],"Count":["Número"],"URL and WordPress page type":["URL e tipo de página do WordPress"],"URL and IP":["URL e IP"],"Problem":["Problema"],"Good":["Bom"],"Check":["Verificar"],"Check Redirect":["Verificar redirecionamento"],"Check redirect for: {{code}}%s{{/code}}":["Verifique o redirecionamento de: {{code}}%s{{/code}}"],"What does this mean?":["O que isto significa?"],"Not using Redirection":["Sem usar o Redirection"],"Using Redirection":["Usando o Redirection"],"Found":["Encontrado"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} para {{code}}%(url)s{{/code}}"],"Expected":["Esperado"],"Error":["Erro"],"Enter full URL, including http:// or https://":["Digite o URL inteiro, incluindo http:// ou https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."],"Redirect Tester":["Teste de redirecionamento"],"Target":["Destino"],"URL is not being redirected with Redirection":["O URL não está sendo redirecionado com o Redirection"],"URL is being redirected with Redirection":["O URL está sendo redirecionado com o Redirection"],"Unable to load details":["Não foi possível carregar os detalhes"],"Enter server URL to match against":["Digite o URL do servidor para correspondência"],"Server":["Servidor"],"Enter role or capability value":["Digite a função ou capacidade"],"Role":["Função"],"Match against this browser referrer text":["Texto do referenciador do navegador para correspondênica"],"Match against this browser user agent":["Usuário de agente do navegador para correspondência"],"The relative URL you want to redirect from":["O URL relativo que você quer redirecionar"],"The target URL you want to redirect to if matched":["O URL de destino para qual você quer redirecionar, se houver correspondência"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"],"Force HTTPS":["Forçar HTTPS"],"GDPR / Privacy information":["GDPR / Informações sobre privacidade (em inglês)"],"Add New":["Adicionar novo"],"Please logout and login again.":["Desconecte-se da sua conta e acesse novamente."],"URL and role/capability":["URL e função/capacidade"],"URL and server":["URL e servidor"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Protocolo do endereço do WordPress e do site"],"Site and home are consistent":["O endereço do WordPress e do site são consistentes"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."],"Accept Language":["Aceitar Idioma"],"Header value":["Valor do cabeçalho"],"Header name":["Nome cabeçalho"],"HTTP Header":["Cabeçalho HTTP"],"WordPress filter name":["Nome do filtro WordPress"],"Filter Name":["Nome do filtro"],"Cookie value":["Valor do cookie"],"Cookie name":["Nome do cookie"],"Cookie":["Cookie"],"clearing your cache.":["limpando seu cache."],"If you are using a caching system such as Cloudflare then please read this: ":["Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "],"URL and HTTP header":["URL e cabeçalho HTTP"],"URL and custom filter":["URL e filtro personalizado"],"URL and cookie":["URL e cookie"],"404 deleted":["404 excluído"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Como o Redirection usa a API REST. Não altere a menos que seja necessário"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."],"None of the suggestions helped":["Nenhuma das sugestões ajudou"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."],"Unable to load Redirection ☹️":["Não foi possível carregar o Redirection ☹️"],"WordPress REST API is working at %s":["A API REST do WordPress está funcionando em %s"],"WordPress REST API":["A API REST do WordPress"],"REST API is not working so routes not checked":["A API REST não está funcionado, por isso as rotas não foram verificadas"],"Redirection routes are working":["As rotas do Redirection estão funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"],"Redirection routes":["Rotas do Redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erro de agente de usuário"],"Unknown Useragent":["Agente de usuário desconhecido"],"Device":["Dispositivo"],"Operating System":["Sistema operacional"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuário"],"Agent":["Agente"],"No IP logging":["Não registrar IP"],"Full IP logging":["Registrar IP completo"],"Anonymize IP (mask last part)":["Tornar IP anônimo (mascarar a última parte)"],"Monitor changes to %(type)s":["Monitorar alterações em %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(selecione o nível de registro de IP)"],"Geo Info":["Informações geográficas"],"Agent Info":["Informação sobre o agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Referenciador / Agente de usuário"],"Geo IP Error":["Erro IP Geo"],"Something went wrong obtaining this information":["Algo deu errado ao obter essa informação"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Este é um IP de uma rede privada. Isso significa que ele está localizado dentro de uma rede residencial ou comercial e nenhuma outra informação pode ser exibida."],"No details are known for this address.":["Nenhum detalhe é conhecido para este endereço."],"Geo IP":["IP Geo"],"City":["Cidade"],"Area":["Região"],"Timezone":["Fuso horário"],"Geo Location":["Coordenadas"],"Powered by {{link}}redirect.li{{/link}}":["Fornecido por {{link}}redirect.li{{/link}}"],"Trash":["Lixeira"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"],"Never cache":["Nunca fazer cache"],"An hour":["Uma hora"],"Redirect Cache":["Cache dos redirecionamentos"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"],"Are you sure you want to import from %s?":["Tem certeza de que deseja importar de %s?"],"Plugin Importers":["Importar de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["O Redirection requer o WordPress v%1$1s, mas você está usando a versão v%2$2s. Atualize o WordPress"],"Default WordPress \"old slugs\"":["Redirecionamentos de \"slugs anteriores\" do WordPress"],"Create associated redirect (added to end of URL)":["Criar redirecionamento atrelado (adicionado ao fim do URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."],"⚡️ Magic fix ⚡️":["⚡️ Correção mágica ⚡️"],"Plugin Status":["Status do plugin"],"Custom":["Personalizado"],"Mobile":["Móvel"],"Feed Readers":["Leitores de feed"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Alterações do monitoramento de URLs"],"Save changes to this group":["Salvar alterações neste grupo"],"For example \"/amp\"":["Por exemplo, \"/amp\""],"URL Monitor":["Monitoramento de URLs"],"Delete 404s":["Excluir 404s"],"Delete all from IP %s":["Excluir registros do IP %s"],"Delete all matching \"%s\"":["Excluir tudo que corresponder a \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."],"Unable to load Redirection":["Não foi possível carregar o Redirection"],"Unable to create group":["Não foi possível criar grupo"],"Post monitor group is valid":["O grupo do monitoramento de posts é válido"],"Post monitor group is invalid":["O grupo de monitoramento de post é inválido"],"Post monitor group":["Grupo do monitoramento de posts"],"All redirects have a valid group":["Todos os redirecionamentos têm um grupo válido"],"Redirects with invalid groups detected":["Redirecionamentos com grupos inválidos detectados"],"Valid redirect group":["Grupo de redirecionamento válido"],"Valid groups detected":["Grupos válidos detectados"],"No valid groups, so you will not be able to create any redirects":["Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"],"Valid groups":["Grupos válidos"],"Database tables":["Tabelas do banco de dados"],"The following tables are missing:":["As seguintes tabelas estão faltando:"],"All tables present":["Todas as tabelas presentes"],"Cached Redirection detected":["O Redirection foi detectado no cache"],"Please clear your browser cache and reload this page.":["Limpe o cache do seu navegador e recarregue esta página."],"The data on this page has expired, please reload.":["Os dados nesta página expiraram, por favor recarregue."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["O WordPress não retornou uma resposta. Isso pode significar que ocorreu um erro ou que a solicitação foi bloqueada. Confira o error_log de seu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Seu servidor retornou um erro 403 Proibido, que pode indicar que a solicitação foi bloqueada. Você está usando um firewall ou um plugin de segurança?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Se você acha que o erro é do Redirection, abra um chamado."],"This may be caused by another plugin - look at your browser's error console for more details.":["Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."],"Loading, please wait...":["Carregando, aguarde..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."],"Create Issue":["Criar chamado"],"Email":["E-mail"],"Important details":["Detalhes importantes"],"Need help?":["Precisa de ajuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."],"Pos":["Pos"],"410 - Gone":["410 - Não existe mais"],"Position":["Posição"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."],"Import to group":["Importar para grupo"],"Import a CSV, .htaccess, or JSON file.":["Importar um arquivo CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Clique 'Adicionar arquivo' ou arraste e solte aqui."],"Add File":["Adicionar arquivo"],"File selected":["Arquivo selecionado"],"Importing":["Importando"],"Finished importing":["Importação concluída"],"Total redirects imported:":["Total de redirecionamentos importados:"],"Double-check the file is the correct format!":["Verifique novamente se o arquivo é o formato correto!"],"OK":["OK"],"Close":["Fechar"],"All imports will be appended to the current database.":["Todas as importações serão anexadas ao banco de dados atual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess do Apache"],"Nginx rewrite rules":["Regras de reescrita do Nginx"],"Redirection JSON":["JSON do Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Arquivos de registro podem ser exportados nas páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Erro 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"],"I'd like to support some more.":["Eu gostaria de ajudar mais um pouco."],"Support 💰":["Doação 💰"],"Redirection saved":["Redirecionamento salvo"],"Log deleted":["Registro excluído"],"Settings saved":["Configurações salvas"],"Group saved":["Grupo salvo"],"Are you sure you want to delete this item?":["Tem certeza de que deseja excluir este item?","Tem certeza de que deseja excluir estes item?"],"pass":["manter url"],"All groups":["Todos os grupos"],"301 - Moved Permanently":["301 - Mudou permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirecionamento temporário"],"308 - Permanent Redirect":["308 - Redirecionamento permanente"],"401 - Unauthorized":["401 - Não autorizado"],"404 - Not Found":["404 - Não encontrado"],"Title":["Título"],"When matched":["Quando corresponder"],"with HTTP code":["com código HTTP"],"Show advanced options":["Exibir opções avançadas"],"Matched Target":["Destino se correspondido"],"Unmatched Target":["Destino se não correspondido"],"Saving...":["Salvando..."],"View notice":["Veja o aviso"],"Invalid source URL":["URL de origem inválido"],"Invalid redirect action":["Ação de redirecionamento inválida"],"Invalid redirect matcher":["Critério de redirecionamento inválido"],"Unable to add new redirect":["Não foi possível criar novo redirecionamento"],"Something went wrong 🙁":["Algo deu errado 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"],"Log entries (%d max)":["Entradas do registro (máx %d)"],"Search by IP":["Pesquisar por IP"],"Select bulk action":["Selecionar ações em massa"],"Bulk Actions":["Ações em massa"],"Apply":["Aplicar"],"First page":["Primeira página"],"Prev page":["Página anterior"],"Current Page":["Página atual"],"of %(page)s":["de %(page)s"],"Next page":["Próxima página"],"Last page":["Última página"],"%s item":["%s item","%s itens"],"Select All":["Selecionar tudo"],"Sorry, something went wrong loading the data - please try again":["Desculpe, mas algo deu errado ao carregar os dados - tente novamente"],"No results":["Nenhum resultado"],"Delete the logs - are you sure?":["Excluir os registros - Você tem certeza?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."],"Yes! Delete the logs":["Sim! Exclua os registros"],"No! Don't delete the logs":["Não! Não exclua os registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."],"Newsletter":["Boletim"],"Want to keep up to date with changes to Redirection?":["Quer ficar a par de mudanças no Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":["Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."],"Your email address:":["Seu endereço de e-mail:"],"You've supported this plugin - thank you!":["Você apoiou este plugin - obrigado!"],"You get useful software and I get to carry on making it better.":["Você obtém softwares úteis e eu continuo fazendo isso melhor."],"Forever":["Para sempre"],"Delete the plugin - are you sure?":["Excluir o plugin - Você tem certeza?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."],"Yes! Delete the plugin":["Sim! Exclua o plugin"],"No! Don't delete the plugin":["Não! Não exclua o plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gerencie todos os seus redirecionamentos 301 e monitore erros 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."],"Redirection Support":["Ajuda do Redirection"],"Support":["Ajuda"],"404s":["404s"],"Log":["Registro"],"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.":["Selecionar esta opção irá remover todos os redirecionamentos, logs e todas as opções associadas ao plugin Redirection. Certifique-se de que é isso mesmo que deseja fazer."],"Delete Redirection":["Excluir o Redirection"],"Upload":["Carregar"],"Import":["Importar"],"Update":["Atualizar"],"Auto-generate URL":["Gerar automaticamente o URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"],"RSS Token":["Token RSS"],"404 Logs":["Registros de 404"],"(time to keep logs for)":["(tempo para manter os registros)"],"Redirect Logs":["Registros de redirecionamento"],"I'm a nice person and I have helped support the author of this plugin":["Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"],"Plugin Support":["Suporte do plugin"],"Options":["Opções"],"Two months":["Dois meses"],"A month":["Um mês"],"A week":["Uma semana"],"A day":["Um dia"],"No logs":["Não registrar"],"Delete All":["Apagar Tudo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use grupos para organizar os seus redirecionamentos. Os grupos são associados a um módulo, e o módulo afeta como os redirecionamentos do grupo funcionam. Na dúvida, use o módulo WordPress."],"Add Group":["Adicionar grupo"],"Search":["Pesquisar"],"Groups":["Grupos"],"Save":["Salvar"],"Group":["Grupo"],"Match":["Corresponder"],"Add new redirection":["Adicionar novo redirecionamento"],"Cancel":["Cancelar"],"Download":["Baixar"],"Redirection":["Redirection"],"Settings":["Configurações"],"Error (404)":["Erro (404)"],"Pass-through":["Manter URL de origem"],"Redirect to random post":["Redirecionar para um post aleatório"],"Redirect to URL":["Redirecionar para URL"],"Invalid group when creating redirect":["Grupo inválido ao criar o redirecionamento"],"IP":["IP"],"Source URL":["URL de origem"],"Date":["Data"],"Add Redirect":["Adicionar redirecionamento"],"All modules":["Todos os módulos"],"View Redirects":["Ver redirecionamentos"],"Module":["Módulo"],"Redirects":["Redirecionamentos"],"Name":["Nome"],"Filter":["Filtrar"],"Reset hits":["Redefinir acessos"],"Enable":["Ativar"],"Disable":["Desativar"],"Delete":["Excluir"],"Edit":["Editar"],"Last Access":["Último Acesso"],"Hits":["Acessos"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Posts modificados"],"Redirections":["Redirecionamentos"],"User Agent":["Agente de usuário"],"URL and user agent":["URL e agente de usuário"],"Target URL":["URL de destino"],"URL only":["URL somente"],"Regex":["Regex"],"Referrer":["Referenciador"],"URL and referrer":["URL e referenciador"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["URL e status de login"]}
locale/json/redirection-ru_RU.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":[""],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":["Обновление базы данных в процессе. Пожалуйста, продолжите для завершения."],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":[""],"I need some support!":[""],"Finish Setup":[""],"Checking your REST API":[""],"Retry":[""],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":[""],"Caching software, for example Cloudflare":[""],"A server firewall or other server configuration":[""],"A security plugin":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":[""],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":[""],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":[""],"{{link}}Read more about this.{{/link}}":[""],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":[""],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":[""],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":[""],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":[""],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":["Завершено! 🎉"],"Progress: %(complete)d$":["Прогресс: %(complete)d$"],"Leaving before the process has completed may cause problems.":["Если вы уйдете до завершения, то могут возникнуть проблемы."],"Setting up Redirection":["Установка Redirection"],"Upgrading Redirection":["Обновление Redirection"],"Please remain on this page until complete.":["Оставайтесь на этой странице до завершения."],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":["Остановить обновление"],"Skip this stage":["Пропустить этот шаг"],"Try again":["Попробуйте снова"],"Database problem":["Проблема с базой данных"],"Please enable JavaScript":["Пожалуйста, включите JavaScript"],"Please upgrade your database":["Пожалуйста, обновите вашу базу данных"],"Upgrade Database":["Обновить базу данных"],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":["Ваша база данных не нуждается в обновлении до %s."],"Failed to perform query \"%s\"":["Ошибка выполнения запроса \"%s\""],"Table \"%s\" is missing":["Таблица \"%s\" отсутствует"],"Create basic data":["Создать основные данные"],"Install Redirection tables":["Установить таблицы Redirection"],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":["Пожалуйста, не пытайтесь перенаправить все ваши 404, это не лучшее что можно сделать."],"Only the 404 page type is currently supported.":["Сейчас поддерживается только тип страницы 404."],"Page Type":["Тип страницы"],"Enter IP addresses (one per line)":["Введите IP адреса (один на строку)"],"Describe the purpose of this redirect (optional)":["Опишите цель перенаправления (необязательно)"],"418 - I'm a teapot":["418 - Я чайник"],"403 - Forbidden":["403 - Доступ запрещен"],"400 - Bad Request":["400 - Неверный запрос"],"304 - Not Modified":["304 - Без изменений"],"303 - See Other":["303 - Посмотрите другое"],"Do nothing (ignore)":["Ничего не делать (игнорировать)"],"Target URL when not matched (empty to ignore)":[""],"Target URL when matched (empty to ignore)":[""],"Show All":["Показать все"],"Delete all logs for these entries":["Удалить все журналы для этих элементов"],"Delete all logs for this entry":["Удалить все журналы для этого элемента"],"Delete Log Entries":["Удалить записи журнала"],"Group by IP":["Группировка по IP"],"Group by URL":["Группировка по URL"],"No grouping":["Без группировки"],"Ignore URL":["Игнорировать URL"],"Block IP":["Блокировка IP"],"Redirect All":["Перенаправить все"],"Count":["Счетчик"],"URL and WordPress page type":["URL и тип страницы WP"],"URL and IP":["URL и IP"],"Problem":["Проблема"],"Good":["Хорошо"],"Check":["Проверка"],"Check Redirect":["Проверка перенаправления"],"Check redirect for: {{code}}%s{{/code}}":["Проверка перенаправления для: {{code}}%s{{/code}}"],"What does this mean?":["Что это значит?"],"Not using Redirection":["Не используется перенаправление"],"Using Redirection":["Использование перенаправления"],"Found":["Найдено"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} на {{code}}%(url)s{{/code}}"],"Expected":["Ожидается"],"Error":["Ошибка"],"Enter full URL, including http:// or https://":["Введите полный URL-адрес, включая http:// или https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."],"Redirect Tester":["Тестирование перенаправлений"],"Target":["Цель"],"URL is not being redirected with Redirection":["URL-адрес не перенаправляется с помощью Redirection"],"URL is being redirected with Redirection":["URL-адрес перенаправлен с помощью Redirection"],"Unable to load details":["Не удается загрузить сведения"],"Enter server URL to match against":["Введите URL-адрес сервера для совпадений"],"Server":["Сервер"],"Enter role or capability value":["Введите значение роли или возможности"],"Role":["Роль"],"Match against this browser referrer text":["Совпадение с текстом реферера браузера"],"Match against this browser user agent":["Сопоставить с этим пользовательским агентом обозревателя"],"The relative URL you want to redirect from":["Относительный URL-адрес, с которого требуется перенаправить"],"The target URL you want to redirect to if matched":["Целевой URL-адрес, который требуется перенаправить в случае совпадения"],"(beta)":["(бета)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"],"Force HTTPS":["Принудительное HTTPS"],"GDPR / Privacy information":["GDPR / Информация о конфиденциальности"],"Add New":["Добавить новое"],"Please logout and login again.":["Пожалуйста, выйдите и войдите снова."],"URL and role/capability":["URL-адрес и роль/возможности"],"URL and server":["URL и сервер"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Если вы не можете получить что-либо, то Redirection может столкнуться с трудностями при общении с вашим сервером. Вы можете вручную изменить этот параметр:"],"Site and home protocol":["Протокол сайта и домашней"],"Site and home are consistent":["Сайт и домашняя страница соответствуют"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."],"Accept Language":["заголовок Accept Language"],"Header value":["Значение заголовка"],"Header name":["Имя заголовка"],"HTTP Header":["Заголовок HTTP"],"WordPress filter name":["Имя фильтра WordPress"],"Filter Name":["Название фильтра"],"Cookie value":["Значение куки"],"Cookie name":["Имя куки"],"Cookie":["Куки"],"clearing your cache.":["очистка кеша."],"If you are using a caching system such as Cloudflare then please read this: ":["Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "],"URL and HTTP header":["URL-адрес и заголовок HTTP"],"URL and custom filter":["URL-адрес и пользовательский фильтр"],"URL and cookie":["URL и куки"],"404 deleted":["404 удалено"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Как Redirection использует REST API - не изменяются, если это необходимо"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress вернул неожиданное сообщение. Это может быть вызвано тем, что REST API не работает, или другим плагином или темой."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Взгляните на{{link}}статус плагина{{/link}}. Возможно, он сможет определить и \"волшебно исправить\" проблемы."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection не может соединиться с REST API{{/link}}.Если вы отключили его, то вам нужно будет включить его."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}} Программное обеспечение безопасности может блокировать Redirection{{/link}}. Необходимо настроить, чтобы разрешить запросы REST API."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Кэширование программного обеспечения{{/link}},в частности Cloudflare, может кэшировать неправильные вещи. Попробуйте очистить все кэши."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}} Пожалуйста, временно отключите другие плагины! {{/ link}} Это устраняет множество проблем."],"None of the suggestions helped":["Ни одно из предложений не помогло"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."],"Unable to load Redirection ☹️":["Не удается загрузить Redirection ☹ ️"],"WordPress REST API is working at %s":["WordPress REST API работает в %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API не работает, поэтому маршруты не проверены"],"Redirection routes are working":["Маршруты перенаправления работают"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Перенаправление не отображается в маршрутах REST API. Вы отключили его с плагином?"],"Redirection routes":["Маршруты перенаправления"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ваш WordPress REST API был отключен. Вам нужно будет включить его для продолжения работы Redirection"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Ошибка пользовательского агента"],"Unknown Useragent":["Неизвестный агент пользователя"],"Device":["Устройство"],"Operating System":["Операционная система"],"Browser":["Браузер"],"Engine":["Движок"],"Useragent":["Пользовательский агент"],"Agent":["Агент"],"No IP logging":["Не протоколировать IP"],"Full IP logging":["Полное протоколирование IP-адресов"],"Anonymize IP (mask last part)":["Анонимизировать IP (маска последняя часть)"],"Monitor changes to %(type)s":["Отслеживание изменений в %(type)s"],"IP Logging":["Протоколирование IP"],"(select IP logging level)":["(Выберите уровень ведения протокола по IP)"],"Geo Info":["Географическая информация"],"Agent Info":["Информация о агенте"],"Filter by IP":["Фильтровать по IP"],"Referrer / User Agent":["Пользователь / Агент пользователя"],"Geo IP Error":["Ошибка GeoIP"],"Something went wrong obtaining this information":["Что-то пошло не так получение этой информации"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Это IP из частной сети. Это означает, что он находится внутри домашней или бизнес-сети, и больше информации не может быть отображено."],"No details are known for this address.":["Сведения об этом адресе не известны."],"Geo IP":["GeoIP"],"City":["Город"],"Area":["Область"],"Timezone":["Часовой пояс"],"Geo Location":["Геолокация"],"Powered by {{link}}redirect.li{{/link}}":["Работает на {{link}}redirect.li{{/link}}"],"Trash":["Корзина"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"],"Never cache":["Не кэшировать"],"An hour":["Час"],"Redirect Cache":["Перенаправление кэша"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"],"Are you sure you want to import from %s?":["Вы действительно хотите импортировать из %s ?"],"Plugin Importers":["Импортеры плагина"],"The following redirect plugins were detected on your site and can be imported from.":["Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."],"total = ":["всего = "],"Import from %s":["Импортировать из %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["Redirection требует WordPress v%1$1s, вы используете v%2$2s - пожалуйста, обновите ваш WordPress"],"Default WordPress \"old slugs\"":["\"Старые ярлыки\" WordPress по умолчанию"],"Create associated redirect (added to end of URL)":["Создание связанного перенаправления (Добавлено в конец URL-адреса)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."],"⚡️ Magic fix ⚡️":["⚡️ Волшебное исправление ⚡️"],"Plugin Status":["Статус плагина"],"Custom":["Пользовательский"],"Mobile":["Мобильный"],"Feed Readers":["Читатели ленты"],"Libraries":["Библиотеки"],"URL Monitor Changes":["URL-адрес монитор изменений"],"Save changes to this group":["Сохранить изменения в этой группе"],"For example \"/amp\"":["Например \"/amp\""],"URL Monitor":["Монитор URL"],"Delete 404s":["Удалить 404"],"Delete all from IP %s":["Удалить все с IP %s"],"Delete all matching \"%s\"":["Удалить все совпадения \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."],"Also check if your browser is able to load <code>redirection.js</code>:":["Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."],"Unable to load Redirection":["Не удается загрузить Redirection"],"Unable to create group":["Невозможно создать группу"],"Post monitor group is valid":["Группа мониторинга сообщений действительна"],"Post monitor group is invalid":["Группа мониторинга постов недействительна."],"Post monitor group":["Группа отслеживания сообщений"],"All redirects have a valid group":["Все перенаправления имеют допустимую группу"],"Redirects with invalid groups detected":["Перенаправление с недопустимыми группами обнаружены"],"Valid redirect group":["Допустимая группа для перенаправления"],"Valid groups detected":["Обнаружены допустимые группы"],"No valid groups, so you will not be able to create any redirects":["Нет допустимых групп, поэтому вы не сможете создавать перенаправления"],"Valid groups":["Допустимые группы"],"Database tables":["Таблицы базы данных"],"The following tables are missing:":["Следующие таблицы отсутствуют:"],"All tables present":["Все таблицы в наличии"],"Cached Redirection detected":["Обнаружено кэшированное перенаправление"],"Please clear your browser cache and reload this page.":["Очистите кеш браузера и перезагрузите эту страницу."],"The data on this page has expired, please reload.":["Данные на этой странице истекли, пожалуйста, перезагрузите."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress не вернул ответ. Это может означать, что произошла ошибка или что запрос был заблокирован. Пожалуйста, проверьте ваш error_log сервера."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Ваш сервер вернул ошибку 403 (доступ запрещен), что означает что запрос был заблокирован. Возможно причина в том, что вы используете фаерволл или плагин безопасности? Возможно mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."],"This may be caused by another plugin - look at your browser's error console for more details.":["Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."],"Loading, please wait...":["Загрузка, пожалуйста подождите..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."],"Create Issue":["Создать тикет о проблеме"],"Email":["Электронная почта"],"Important details":["Важные детали"],"Need help?":["Нужна помощь?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."],"Pos":["Pos"],"410 - Gone":["410 - Удалено"],"Position":["Позиция"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"],"Apache Module":["Модуль Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."],"Import to group":["Импорт в группу"],"Import a CSV, .htaccess, or JSON file.":["Импортируйте файл CSV, .htaccess или JSON."],"Click 'Add File' or drag and drop here.":["Нажмите «Добавить файл» или перетащите сюда."],"Add File":["Добавить файл"],"File selected":["Выбран файл"],"Importing":["Импортирование"],"Finished importing":["Импорт завершен"],"Total redirects imported:":["Всего импортировано перенаправлений:"],"Double-check the file is the correct format!":["Дважды проверьте правильность формата файла!"],"OK":["OK"],"Close":["Закрыть"],"All imports will be appended to the current database.":["Все импортируемые компоненты будут добавлены в текущую базу данных."],"Export":["Экспорт"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."],"Everything":["Все"],"WordPress redirects":["Перенаправления WordPress"],"Apache redirects":["перенаправления Apache"],"Nginx redirects":["перенаправления NGINX"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Правила перезаписи nginx"],"Redirection JSON":["Перенаправление JSON"],"View":["Вид"],"Log files can be exported from the log pages.":["Файлы логов можно экспортировать из страниц логов."],"Import/Export":["Импорт/Экспорт"],"Logs":["Журналы"],"404 errors":["404 ошибки"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"],"I'd like to support some more.":["Мне хотелось бы поддержать чуть больше."],"Support 💰":["Поддержка 💰"],"Redirection saved":["Перенаправление сохранено"],"Log deleted":["Лог удален"],"Settings saved":["Настройки сохранены"],"Group saved":["Группа сохранена"],"Are you sure you want to delete this item?":["Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?"],"pass":["проход"],"All groups":["Все группы"],"301 - Moved Permanently":["301 - Переехал навсегда"],"302 - Found":["302 - Найдено"],"307 - Temporary Redirect":["307 - Временное перенаправление"],"308 - Permanent Redirect":["308 - Постоянное перенаправление"],"401 - Unauthorized":["401 - Не авторизованы"],"404 - Not Found":["404 - Страница не найдена"],"Title":["Название"],"When matched":["При совпадении"],"with HTTP code":["с кодом HTTP"],"Show advanced options":["Показать расширенные параметры"],"Matched Target":["Совпавшие цели"],"Unmatched Target":["Несовпавшая цель"],"Saving...":["Сохранение..."],"View notice":["Просмотреть уведомление"],"Invalid source URL":["Неверный исходный URL"],"Invalid redirect action":["Неверное действие перенаправления"],"Invalid redirect matcher":["Неверное совпадение перенаправления"],"Unable to add new redirect":["Не удалось добавить новое перенаправление"],"Something went wrong 🙁":["Что-то пошло не так 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Я пытался что-то сделать, и все пошло не так. Это может быть временная проблема, и если вы попробуете еще раз, это может сработать - здорово!"],"Log entries (%d max)":["Журнал записей (%d максимум)"],"Search by IP":["Поиск по IP"],"Select bulk action":["Выберите массовое действие"],"Bulk Actions":["Массовые действия"],"Apply":["Применить"],"First page":["Первая страница"],"Prev page":["Предыдущая страница"],"Current Page":["Текущая страница"],"of %(page)s":["из %(page)s"],"Next page":["Следующая страница"],"Last page":["Последняя страница"],"%s item":["%s элемент","%s элемента","%s элементов"],"Select All":["Выбрать всё"],"Sorry, something went wrong loading the data - please try again":["Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"],"No results":["Нет результатов"],"Delete the logs - are you sure?":["Удалить журналы - вы уверены?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."],"Yes! Delete the logs":["Да! Удалить журналы"],"No! Don't delete the logs":["Нет! Не удаляйте журналы"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."],"Newsletter":["Новости"],"Want to keep up to date with changes to Redirection?":["Хотите быть в курсе изменений в плагине?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":["Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."],"Your email address:":["Ваш адрес электронной почты:"],"You've supported this plugin - thank you!":["Вы поддерживаете этот плагин - спасибо!"],"You get useful software and I get to carry on making it better.":["Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."],"Forever":["Всегда"],"Delete the plugin - are you sure?":["Удалить плагин-вы уверены?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."],"Yes! Delete the plugin":["Да! Удалить плагин"],"No! Don't delete the plugin":["Нет! Не удаляйте плагин"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."],"Redirection Support":["Поддержка перенаправления"],"Support":["Поддержка"],"404s":["404"],"Log":["Журнал"],"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.":["Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."],"Delete Redirection":["Удалить перенаправление"],"Upload":["Загрузить"],"Import":["Импортировать"],"Update":["Обновить"],"Auto-generate URL":["Автоматическое создание URL-адреса"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"],"RSS Token":["RSS-токен"],"404 Logs":["404 Журналы"],"(time to keep logs for)":["(время хранения журналов для)"],"Redirect Logs":["Перенаправление журналов"],"I'm a nice person and I have helped support the author of this plugin":["Я хороший человек, и я помог поддержать автора этого плагина"],"Plugin Support":["Поддержка плагина"],"Options":["Опции"],"Two months":["Два месяца"],"A month":["Месяц"],"A week":["Неделя"],"A day":["День"],"No logs":["Нет записей"],"Delete All":["Удалить все"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."],"Add Group":["Добавить группу"],"Search":["Поиск"],"Groups":["Группы"],"Save":["Сохранить"],"Group":["Группа"],"Match":["Совпадение"],"Add new redirection":["Добавить новое перенаправление"],"Cancel":["Отменить"],"Download":["Скачать"],"Redirection":["Redirection"],"Settings":["Настройки"],"Error (404)":["Ошибка (404)"],"Pass-through":["Прозрачно пропускать"],"Redirect to random post":["Перенаправить на случайную запись"],"Redirect to URL":["Перенаправление на URL"],"Invalid group when creating redirect":["Неправильная группа при создании переадресации"],"IP":["IP"],"Source URL":["Исходный URL"],"Date":["Дата"],"Add Redirect":["Добавить перенаправление"],"All modules":["Все модули"],"View Redirects":["Просмотр перенаправлений"],"Module":["Модуль"],"Redirects":["Редиректы"],"Name":["Имя"],"Filter":["Фильтр"],"Reset hits":["Сбросить показы"],"Enable":["Включить"],"Disable":["Отключить"],"Delete":["Удалить"],"Edit":["Редактировать"],"Last Access":["Последний доступ"],"Hits":["Показы"],"URL":["URL"],"Type":["Тип"],"Modified Posts":["Измененные записи"],"Redirections":["Перенаправления"],"User Agent":["Агент пользователя"],"URL and user agent":["URL-адрес и агент пользователя"],"Target URL":["Целевой URL-адрес"],"URL only":["Только URL-адрес"],"Regex":["Regex"],"Referrer":["Ссылающийся URL"],"URL and referrer":["URL и ссылающийся URL"],"Logged Out":["Выход из системы"],"Logged In":["Вход в систему"],"URL and login status":["Статус URL и входа"]}
1
+ {"":[],"blur":[""],"focus":[""],"scroll":[""],"Pass - as ignore, but also copies the query parameters to the target":[""],"Ignore - as exact, but ignores any query parameters not in your source":[""],"Exact - matches the query parameters exactly defined in your source, in any order":[""],"Default query matching":[""],"Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})":[""],"Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})":[""],"Applies to all redirections unless you configure them otherwise.":[""],"Default URL settings":[""],"Ignore and pass all query parameters":[""],"Ignore all query parameters":[""],"Exact match":[""],"Caching software (e.g Cloudflare)":[""],"A security plugin (e.g Wordfence)":[""],"No more options":[""],"URL options":[""],"Query Parameters":[""],"Ignore & pass parameters to the target":[""],"Ignore all parameters":[""],"Exact match all parameters in any order":[""],"Ignore Case":[""],"Ignore Slash":[""],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":[""],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":["Обновление базы данных в процессе. Пожалуйста, продолжите для завершения."],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":[""],"I need some support!":[""],"Finish Setup":[""],"Checking your REST API":[""],"Retry":[""],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":[""],"A server firewall or other server configuration (e.g OVH)":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":[""],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":[""],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":[""],"{{link}}Read more about this.{{/link}}":[""],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":[""],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":[""],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":[""],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":[""],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":["Завершено! 🎉"],"Progress: %(complete)d$":["Прогресс: %(complete)d$"],"Leaving before the process has completed may cause problems.":["Если вы уйдете до завершения, то могут возникнуть проблемы."],"Setting up Redirection":["Установка Redirection"],"Upgrading Redirection":["Обновление Redirection"],"Please remain on this page until complete.":["Оставайтесь на этой странице до завершения."],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":["Остановить обновление"],"Skip this stage":["Пропустить этот шаг"],"Try again":["Попробуйте снова"],"Database problem":["Проблема с базой данных"],"Please enable JavaScript":["Пожалуйста, включите JavaScript"],"Please upgrade your database":["Пожалуйста, обновите вашу базу данных"],"Upgrade Database":["Обновить базу данных"],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":["Ваша база данных не нуждается в обновлении до %s."],"Failed to perform query \"%s\"":["Ошибка выполнения запроса \"%s\""],"Table \"%s\" is missing":["Таблица \"%s\" отсутствует"],"Create basic data":["Создать основные данные"],"Install Redirection tables":["Установить таблицы Redirection"],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":["Пожалуйста, не пытайтесь перенаправить все ваши 404, это не лучшее что можно сделать."],"Only the 404 page type is currently supported.":["Сейчас поддерживается только тип страницы 404."],"Page Type":["Тип страницы"],"Enter IP addresses (one per line)":["Введите IP адреса (один на строку)"],"Describe the purpose of this redirect (optional)":["Опишите цель перенаправления (необязательно)"],"418 - I'm a teapot":["418 - Я чайник"],"403 - Forbidden":["403 - Доступ запрещен"],"400 - Bad Request":["400 - Неверный запрос"],"304 - Not Modified":["304 - Без изменений"],"303 - See Other":["303 - Посмотрите другое"],"Do nothing (ignore)":["Ничего не делать (игнорировать)"],"Target URL when not matched (empty to ignore)":[""],"Target URL when matched (empty to ignore)":[""],"Show All":["Показать все"],"Delete all logs for these entries":["Удалить все журналы для этих элементов"],"Delete all logs for this entry":["Удалить все журналы для этого элемента"],"Delete Log Entries":["Удалить записи журнала"],"Group by IP":["Группировка по IP"],"Group by URL":["Группировка по URL"],"No grouping":["Без группировки"],"Ignore URL":["Игнорировать URL"],"Block IP":["Блокировка IP"],"Redirect All":["Перенаправить все"],"Count":["Счетчик"],"URL and WordPress page type":["URL и тип страницы WP"],"URL and IP":["URL и IP"],"Problem":["Проблема"],"Good":["Хорошо"],"Check":["Проверка"],"Check Redirect":["Проверка перенаправления"],"Check redirect for: {{code}}%s{{/code}}":["Проверка перенаправления для: {{code}}%s{{/code}}"],"What does this mean?":["Что это значит?"],"Not using Redirection":["Не используется перенаправление"],"Using Redirection":["Использование перенаправления"],"Found":["Найдено"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":["{{code}}%(status)d{{/code}} на {{code}}%(url)s{{/code}}"],"Expected":["Ожидается"],"Error":["Ошибка"],"Enter full URL, including http:// or https://":["Введите полный URL-адрес, включая http:// или https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":["Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."],"Redirect Tester":["Тестирование перенаправлений"],"Target":["Цель"],"URL is not being redirected with Redirection":["URL-адрес не перенаправляется с помощью Redirection"],"URL is being redirected with Redirection":["URL-адрес перенаправлен с помощью Redirection"],"Unable to load details":["Не удается загрузить сведения"],"Enter server URL to match against":["Введите URL-адрес сервера для совпадений"],"Server":["Сервер"],"Enter role or capability value":["Введите значение роли или возможности"],"Role":["Роль"],"Match against this browser referrer text":["Совпадение с текстом реферера браузера"],"Match against this browser user agent":["Сопоставить с этим пользовательским агентом обозревателя"],"The relative URL you want to redirect from":["Относительный URL-адрес, с которого требуется перенаправить"],"The target URL you want to redirect to if matched":["Целевой URL-адрес, который требуется перенаправить в случае совпадения"],"(beta)":["(бета)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"],"Force HTTPS":["Принудительное HTTPS"],"GDPR / Privacy information":["GDPR / Информация о конфиденциальности"],"Add New":["Добавить новое"],"Please logout and login again.":["Пожалуйста, выйдите и войдите снова."],"URL and role/capability":["URL-адрес и роль/возможности"],"URL and server":["URL и сервер"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Если вы не можете получить что-либо, то Redirection может столкнуться с трудностями при общении с вашим сервером. Вы можете вручную изменить этот параметр:"],"Site and home protocol":["Протокол сайта и домашней"],"Site and home are consistent":["Сайт и домашняя страница соответствуют"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":["Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."],"Accept Language":["заголовок Accept Language"],"Header value":["Значение заголовка"],"Header name":["Имя заголовка"],"HTTP Header":["Заголовок HTTP"],"WordPress filter name":["Имя фильтра WordPress"],"Filter Name":["Название фильтра"],"Cookie value":["Значение куки"],"Cookie name":["Имя куки"],"Cookie":["Куки"],"clearing your cache.":["очистка кеша."],"If you are using a caching system such as Cloudflare then please read this: ":["Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "],"URL and HTTP header":["URL-адрес и заголовок HTTP"],"URL and custom filter":["URL-адрес и пользовательский фильтр"],"URL and cookie":["URL и куки"],"404 deleted":["404 удалено"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Как Redirection использует REST API - не изменяются, если это необходимо"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress вернул неожиданное сообщение. Это может быть вызвано тем, что REST API не работает, или другим плагином или темой."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Взгляните на{{link}}статус плагина{{/link}}. Возможно, он сможет определить и \"волшебно исправить\" проблемы."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection не может соединиться с REST API{{/link}}.Если вы отключили его, то вам нужно будет включить его."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}} Программное обеспечение безопасности может блокировать Redirection{{/link}}. Необходимо настроить, чтобы разрешить запросы REST API."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Кэширование программного обеспечения{{/link}},в частности Cloudflare, может кэшировать неправильные вещи. Попробуйте очистить все кэши."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}} Пожалуйста, временно отключите другие плагины! {{/ link}} Это устраняет множество проблем."],"None of the suggestions helped":["Ни одно из предложений не помогло"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."],"Unable to load Redirection ☹️":["Не удается загрузить Redirection ☹ ️"],"WordPress REST API is working at %s":["WordPress REST API работает в %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API не работает, поэтому маршруты не проверены"],"Redirection routes are working":["Маршруты перенаправления работают"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Перенаправление не отображается в маршрутах REST API. Вы отключили его с плагином?"],"Redirection routes":["Маршруты перенаправления"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ваш WordPress REST API был отключен. Вам нужно будет включить его для продолжения работы Redirection"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Ошибка пользовательского агента"],"Unknown Useragent":["Неизвестный агент пользователя"],"Device":["Устройство"],"Operating System":["Операционная система"],"Browser":["Браузер"],"Engine":["Движок"],"Useragent":["Пользовательский агент"],"Agent":["Агент"],"No IP logging":["Не протоколировать IP"],"Full IP logging":["Полное протоколирование IP-адресов"],"Anonymize IP (mask last part)":["Анонимизировать IP (маска последняя часть)"],"Monitor changes to %(type)s":["Отслеживание изменений в %(type)s"],"IP Logging":["Протоколирование IP"],"(select IP logging level)":["(Выберите уровень ведения протокола по IP)"],"Geo Info":["Географическая информация"],"Agent Info":["Информация о агенте"],"Filter by IP":["Фильтровать по IP"],"Referrer / User Agent":["Пользователь / Агент пользователя"],"Geo IP Error":["Ошибка GeoIP"],"Something went wrong obtaining this information":["Что-то пошло не так получение этой информации"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Это IP из частной сети. Это означает, что он находится внутри домашней или бизнес-сети, и больше информации не может быть отображено."],"No details are known for this address.":["Сведения об этом адресе не известны."],"Geo IP":["GeoIP"],"City":["Город"],"Area":["Область"],"Timezone":["Часовой пояс"],"Geo Location":["Геолокация"],"Powered by {{link}}redirect.li{{/link}}":["Работает на {{link}}redirect.li{{/link}}"],"Trash":["Корзина"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"],"Never cache":["Не кэшировать"],"An hour":["Час"],"Redirect Cache":["Перенаправление кэша"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"],"Are you sure you want to import from %s?":["Вы действительно хотите импортировать из %s ?"],"Plugin Importers":["Импортеры плагина"],"The following redirect plugins were detected on your site and can be imported from.":["Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."],"total = ":["всего = "],"Import from %s":["Импортировать из %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["Redirection требует WordPress v%1$1s, вы используете v%2$2s - пожалуйста, обновите ваш WordPress"],"Default WordPress \"old slugs\"":["\"Старые ярлыки\" WordPress по умолчанию"],"Create associated redirect (added to end of URL)":["Создание связанного перенаправления (Добавлено в конец URL-адреса)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."],"⚡️ Magic fix ⚡️":["⚡️ Волшебное исправление ⚡️"],"Plugin Status":["Статус плагина"],"Custom":["Пользовательский"],"Mobile":["Мобильный"],"Feed Readers":["Читатели ленты"],"Libraries":["Библиотеки"],"URL Monitor Changes":["URL-адрес монитор изменений"],"Save changes to this group":["Сохранить изменения в этой группе"],"For example \"/amp\"":["Например \"/amp\""],"URL Monitor":["Монитор URL"],"Delete 404s":["Удалить 404"],"Delete all from IP %s":["Удалить все с IP %s"],"Delete all matching \"%s\"":["Удалить все совпадения \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."],"Also check if your browser is able to load <code>redirection.js</code>:":["Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."],"Unable to load Redirection":["Не удается загрузить Redirection"],"Unable to create group":["Невозможно создать группу"],"Post monitor group is valid":["Группа мониторинга сообщений действительна"],"Post monitor group is invalid":["Группа мониторинга постов недействительна."],"Post monitor group":["Группа отслеживания сообщений"],"All redirects have a valid group":["Все перенаправления имеют допустимую группу"],"Redirects with invalid groups detected":["Перенаправление с недопустимыми группами обнаружены"],"Valid redirect group":["Допустимая группа для перенаправления"],"Valid groups detected":["Обнаружены допустимые группы"],"No valid groups, so you will not be able to create any redirects":["Нет допустимых групп, поэтому вы не сможете создавать перенаправления"],"Valid groups":["Допустимые группы"],"Database tables":["Таблицы базы данных"],"The following tables are missing:":["Следующие таблицы отсутствуют:"],"All tables present":["Все таблицы в наличии"],"Cached Redirection detected":["Обнаружено кэшированное перенаправление"],"Please clear your browser cache and reload this page.":["Очистите кеш браузера и перезагрузите эту страницу."],"The data on this page has expired, please reload.":["Данные на этой странице истекли, пожалуйста, перезагрузите."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress не вернул ответ. Это может означать, что произошла ошибка или что запрос был заблокирован. Пожалуйста, проверьте ваш error_log сервера."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Ваш сервер вернул ошибку 403 (доступ запрещен), что означает что запрос был заблокирован. Возможно причина в том, что вы используете фаерволл или плагин безопасности? Возможно mod_security?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."],"This may be caused by another plugin - look at your browser's error console for more details.":["Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."],"Loading, please wait...":["Загрузка, пожалуйста подождите..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."],"Create Issue":["Создать тикет о проблеме"],"Email":["Электронная почта"],"Important details":["Важные детали"],"Need help?":["Нужна помощь?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."],"Pos":["Pos"],"410 - Gone":["410 - Удалено"],"Position":["Позиция"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"],"Apache Module":["Модуль Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."],"Import to group":["Импорт в группу"],"Import a CSV, .htaccess, or JSON file.":["Импортируйте файл CSV, .htaccess или JSON."],"Click 'Add File' or drag and drop here.":["Нажмите «Добавить файл» или перетащите сюда."],"Add File":["Добавить файл"],"File selected":["Выбран файл"],"Importing":["Импортирование"],"Finished importing":["Импорт завершен"],"Total redirects imported:":["Всего импортировано перенаправлений:"],"Double-check the file is the correct format!":["Дважды проверьте правильность формата файла!"],"OK":["OK"],"Close":["Закрыть"],"All imports will be appended to the current database.":["Все импортируемые компоненты будут добавлены в текущую базу данных."],"Export":["Экспорт"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."],"Everything":["Все"],"WordPress redirects":["Перенаправления WordPress"],"Apache redirects":["перенаправления Apache"],"Nginx redirects":["перенаправления NGINX"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Правила перезаписи nginx"],"Redirection JSON":["Перенаправление JSON"],"View":["Вид"],"Log files can be exported from the log pages.":["Файлы логов можно экспортировать из страниц логов."],"Import/Export":["Импорт/Экспорт"],"Logs":["Журналы"],"404 errors":["404 ошибки"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"],"I'd like to support some more.":["Мне хотелось бы поддержать чуть больше."],"Support 💰":["Поддержка 💰"],"Redirection saved":["Перенаправление сохранено"],"Log deleted":["Лог удален"],"Settings saved":["Настройки сохранены"],"Group saved":["Группа сохранена"],"Are you sure you want to delete this item?":["Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?","Вы действительно хотите удалить этот пункт?"],"pass":["проход"],"All groups":["Все группы"],"301 - Moved Permanently":["301 - Переехал навсегда"],"302 - Found":["302 - Найдено"],"307 - Temporary Redirect":["307 - Временное перенаправление"],"308 - Permanent Redirect":["308 - Постоянное перенаправление"],"401 - Unauthorized":["401 - Не авторизованы"],"404 - Not Found":["404 - Страница не найдена"],"Title":["Название"],"When matched":["При совпадении"],"with HTTP code":["с кодом HTTP"],"Show advanced options":["Показать расширенные параметры"],"Matched Target":["Совпавшие цели"],"Unmatched Target":["Несовпавшая цель"],"Saving...":["Сохранение..."],"View notice":["Просмотреть уведомление"],"Invalid source URL":["Неверный исходный URL"],"Invalid redirect action":["Неверное действие перенаправления"],"Invalid redirect matcher":["Неверное совпадение перенаправления"],"Unable to add new redirect":["Не удалось добавить новое перенаправление"],"Something went wrong 🙁":["Что-то пошло не так 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Я пытался что-то сделать, и все пошло не так. Это может быть временная проблема, и если вы попробуете еще раз, это может сработать - здорово!"],"Log entries (%d max)":["Журнал записей (%d максимум)"],"Search by IP":["Поиск по IP"],"Select bulk action":["Выберите массовое действие"],"Bulk Actions":["Массовые действия"],"Apply":["Применить"],"First page":["Первая страница"],"Prev page":["Предыдущая страница"],"Current Page":["Текущая страница"],"of %(page)s":["из %(page)s"],"Next page":["Следующая страница"],"Last page":["Последняя страница"],"%s item":["%s элемент","%s элемента","%s элементов"],"Select All":["Выбрать всё"],"Sorry, something went wrong loading the data - please try again":["Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"],"No results":["Нет результатов"],"Delete the logs - are you sure?":["Удалить журналы - вы уверены?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."],"Yes! Delete the logs":["Да! Удалить журналы"],"No! Don't delete the logs":["Нет! Не удаляйте журналы"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."],"Newsletter":["Новости"],"Want to keep up to date with changes to Redirection?":["Хотите быть в курсе изменений в плагине?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":["Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."],"Your email address:":["Ваш адрес электронной почты:"],"You've supported this plugin - thank you!":["Вы поддерживаете этот плагин - спасибо!"],"You get useful software and I get to carry on making it better.":["Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."],"Forever":["Всегда"],"Delete the plugin - are you sure?":["Удалить плагин-вы уверены?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."],"Yes! Delete the plugin":["Да! Удалить плагин"],"No! Don't delete the plugin":["Нет! Не удаляйте плагин"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."],"Redirection Support":["Поддержка перенаправления"],"Support":["Поддержка"],"404s":["404"],"Log":["Журнал"],"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.":["Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."],"Delete Redirection":["Удалить перенаправление"],"Upload":["Загрузить"],"Import":["Импортировать"],"Update":["Обновить"],"Auto-generate URL":["Автоматическое создание URL-адреса"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"],"RSS Token":["RSS-токен"],"404 Logs":["404 Журналы"],"(time to keep logs for)":["(время хранения журналов для)"],"Redirect Logs":["Перенаправление журналов"],"I'm a nice person and I have helped support the author of this plugin":["Я хороший человек, и я помог поддержать автора этого плагина"],"Plugin Support":["Поддержка плагина"],"Options":["Опции"],"Two months":["Два месяца"],"A month":["Месяц"],"A week":["Неделя"],"A day":["День"],"No logs":["Нет записей"],"Delete All":["Удалить все"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."],"Add Group":["Добавить группу"],"Search":["Поиск"],"Groups":["Группы"],"Save":["Сохранить"],"Group":["Группа"],"Match":["Совпадение"],"Add new redirection":["Добавить новое перенаправление"],"Cancel":["Отменить"],"Download":["Скачать"],"Redirection":["Redirection"],"Settings":["Настройки"],"Error (404)":["Ошибка (404)"],"Pass-through":["Прозрачно пропускать"],"Redirect to random post":["Перенаправить на случайную запись"],"Redirect to URL":["Перенаправление на URL"],"Invalid group when creating redirect":["Неправильная группа при создании переадресации"],"IP":["IP"],"Source URL":["Исходный URL"],"Date":["Дата"],"Add Redirect":["Добавить перенаправление"],"All modules":["Все модули"],"View Redirects":["Просмотр перенаправлений"],"Module":["Модуль"],"Redirects":["Редиректы"],"Name":["Имя"],"Filter":["Фильтр"],"Reset hits":["Сбросить показы"],"Enable":["Включить"],"Disable":["Отключить"],"Delete":["Удалить"],"Edit":["Редактировать"],"Last Access":["Последний доступ"],"Hits":["Показы"],"URL":["URL"],"Type":["Тип"],"Modified Posts":["Измененные записи"],"Redirections":["Перенаправления"],"User Agent":["Агент пользователя"],"URL and user agent":["URL-адрес и агент пользователя"],"Target URL":["Целевой URL-адрес"],"URL only":["Только URL-адрес"],"Regex":["Regex"],"Referrer":["Ссылающийся URL"],"URL and referrer":["URL и ссылающийся URL"],"Logged Out":["Выход из системы"],"Logged In":["Вход в систему"],"URL and login status":["Статус URL и входа"]}
locale/json/redirection-sv_SE.json CHANGED
@@ -1 +1 @@
1
- {"":[],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":["Standard REST API"],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":["En databasuppgradering pågår. Fortsätt att slutföra."],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":["Uppdatering krävs"],"I need some support!":["Jag behöver lite support!"],"Finish Setup":[""],"Checking your REST API":["Kontrollerar din REST API"],"Retry":["Försök igen"],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":["Några andra tillägg som blockerar REST API"],"Caching software, for example Cloudflare":[""],"A server firewall or other server configuration":[""],"A security plugin":["Ett säkerhetstillägg"],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":["Gå tillbaka"],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":["Spara IP-information för omdirigeringar och 404 fel."],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":["Behåll en logg över alla omdirigeringar och 404 fel."],"{{link}}Read more about this.{{/link}}":["{{link}}Läs mer om detta.{{/link}}"],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":["När du är klar, tryck på knappen för att fortsätta."],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":["Vissa funktioner som du kan tycka är användbara är"],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":["Hur använder jag detta tillägg?"],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":["Välkommen till Redirection 🚀🎉"],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":["Klart! 🎉"],"Progress: %(complete)d$":[""],"Leaving before the process has completed may cause problems.":[""],"Setting up Redirection":[""],"Upgrading Redirection":[""],"Please remain on this page until complete.":[""],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":[""],"Skip this stage":["Hoppa över detta steg"],"Try again":["Försök igen"],"Database problem":["Databasproblem"],"Please enable JavaScript":["Aktivera JavaScript"],"Please upgrade your database":["Uppgradera din databas"],"Upgrade Database":["Uppgradera databas"],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":[""],"Failed to perform query \"%s\"":[""],"Table \"%s\" is missing":[""],"Create basic data":["Skapa grundläggande data"],"Install Redirection tables":[""],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":[""],"Only the 404 page type is currently supported.":[""],"Page Type":["Sidtyp"],"Enter IP addresses (one per line)":["Ange IP-adresser (en per rad)"],"Describe the purpose of this redirect (optional)":["Beskriv syftet med denna omdirigering (valfritt)"],"418 - I'm a teapot":["418 – Jag är en tekanna"],"403 - Forbidden":["403 – Förbjuden"],"400 - Bad Request":[""],"304 - Not Modified":["304 – Inte modifierad"],"303 - See Other":[""],"Do nothing (ignore)":["Gör ingenting (ignorera)"],"Target URL when not matched (empty to ignore)":["URL-mål när den inte matchas (tom för att ignorera)"],"Target URL when matched (empty to ignore)":["URL-mål vid matchning (tom för att ignorera)"],"Show All":["Visa alla"],"Delete all logs for these entries":["Ta bort alla loggar för dessa poster"],"Delete all logs for this entry":["Ta bort alla loggar för denna post"],"Delete Log Entries":[""],"Group by IP":["Grupp efter IP"],"Group by URL":["Grupp efter URL"],"No grouping":["Ingen gruppering"],"Ignore URL":["Ignorera URL"],"Block IP":["Blockera IP"],"Redirect All":["Omdirigera alla"],"Count":[""],"URL and WordPress page type":[""],"URL and IP":["URL och IP"],"Problem":["Problem"],"Good":["Bra"],"Check":["Kontrollera"],"Check Redirect":["Kontrollera omdirigering"],"Check redirect for: {{code}}%s{{/code}}":["Kontrollera omdirigering för: {{code}}%s{{/code}}"],"What does this mean?":["Vad betyder detta?"],"Not using Redirection":["Använder inte omdirigering"],"Using Redirection":["Använder omdirigering"],"Found":["Hittad"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":["Förväntad"],"Error":["Fel"],"Enter full URL, including http:// or https://":["Ange fullständig URL, inklusive http:// eller https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":["Omdirigeringstestare"],"Target":["Mål"],"URL is not being redirected with Redirection":["URL omdirigeras inte med Redirection"],"URL is being redirected with Redirection":["URL omdirigeras med Redirection"],"Unable to load details":["Det gick inte att ladda detaljer"],"Enter server URL to match against":["Ange server-URL för att matcha mot"],"Server":["Server"],"Enter role or capability value":["Ange roll eller behörighetsvärde"],"Role":["Roll"],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":["Den relativa URL du vill omdirigera från"],"The target URL you want to redirect to if matched":["URL-målet du vill omdirigera till om den matchas"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Tvinga en omdirigering från HTTP till HTTPS. Se till att din HTTPS fungerar innan du aktiverar"],"Force HTTPS":["Tvinga HTTPS"],"GDPR / Privacy information":["GDPR/integritetsinformation"],"Add New":["Lägg till ny"],"Please logout and login again.":["Logga ut och logga in igen."],"URL and role/capability":["URL och roll/behörighet"],"URL and server":["URL och server"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Om du inte kan få något att fungera kan det hända att Redirection har svårt att kommunicera med din server. Du kan försöka ändra den här inställningen manuellt:"],"Site and home protocol":["Webbplats och hemprotokoll"],"Site and home are consistent":["Webbplats och hem är konsekventa"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":["Acceptera språk"],"Header value":["Värde för sidhuvud"],"Header name":["Namn på sidhuvud"],"HTTP Header":["HTTP-sidhuvud"],"WordPress filter name":["WordPress-filternamn"],"Filter Name":["Filternamn"],"Cookie value":["Cookie-värde"],"Cookie name":["Cookie-namn"],"Cookie":["Cookie"],"clearing your cache.":["rensa cacheminnet."],"If you are using a caching system such as Cloudflare then please read this: ":["Om du använder ett caching-system som Cloudflare, läs det här:"],"URL and HTTP header":["URL- och HTTP-sidhuvuden"],"URL and custom filter":["URL och anpassat filter"],"URL and cookie":["URL och cookie"],"404 deleted":["404 borttagen"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Hur Redirection använder REST API – ändra inte om inte nödvändigt"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returnerade ett oväntat meddelande. Det här kan orsakas av att ditt REST API inte fungerar eller av ett annat tillägg eller tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Ta en titt på {{link}tilläggsstatusen{{/ link}}. Det kan vara möjligt att identifiera och ”magiskt åtgärda” problemet."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."],"None of the suggestions helped":["Inget av förslagen hjälpte"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."],"Unable to load Redirection ☹️":["Kunde inte ladda Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API arbetar på %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API fungerar inte så flödena kontrolleras inte"],"Redirection routes are working":["Omdirigeringsflödena fungerar"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"],"Redirection routes":["Omdirigeringsflöden"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Användaragentfel"],"Unknown Useragent":["Okänd användaragent"],"Device":["Enhet"],"Operating System":["Operativsystem"],"Browser":["Webbläsare"],"Engine":["Sökmotor"],"Useragent":["Useragent"],"Agent":["Agent"],"No IP logging":["Ingen loggning av IP-nummer"],"Full IP logging":["Fullständig loggning av IP-nummer"],"Anonymize IP (mask last part)":["Anonymisera IP-nummer (maska sista delen)"],"Monitor changes to %(type)s":["Övervaka ändringar till %(type)s"],"IP Logging":["Läggning av IP-nummer"],"(select IP logging level)":["(välj loggningsnivå för IP)"],"Geo Info":["Geo-info"],"Agent Info":["Agentinfo"],"Filter by IP":["Filtrera på IP-nummer"],"Referrer / User Agent":["Hänvisare/Användaragent"],"Geo IP Error":["Geo-IP-fel"],"Something went wrong obtaining this information":["Något gick fel när denna information skulle hämtas"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Detta är en IP från ett privat nätverk. Det betyder att det ligger i ett hem- eller företagsnätverk och ingen mer information kan visas."],"No details are known for this address.":["Det finns inga kända detaljer för denna adress."],"Geo IP":["Geo IP"],"City":["Stad"],"Area":["Region"],"Timezone":["Tidszon"],"Geo Location":["Geo-plats"],"Powered by {{link}}redirect.li{{/link}}":["Drivs av {{link}}redirect.li{{/link}}"],"Trash":["Släng"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Observera att Redirection kräver att WordPress REST API ska vara aktiverat. Om du har inaktiverat det här kommer du inte kunna använda Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} — inkludera så mycket information som du kan!"],"Never cache":["Använd aldrig cache"],"An hour":["En timma"],"Redirect Cache":["Omdirigera cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"],"Are you sure you want to import from %s?":["Är du säker på att du vill importera från %s?"],"Plugin Importers":["Tilläggsimporterare"],"The following redirect plugins were detected on your site and can be imported from.":["Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."],"total = ":["totalt ="],"Import from %s":["Importera från %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["Redirection kräver WordPress v%1$1s, du använder v%2$2s – 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 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"],"Post monitor group is valid":["Övervakningsgrupp för inlägg är giltig"],"Post monitor group is invalid":["Övervakningsgrupp för inlägg är ogiltig"],"Post monitor group":["Övervakningsgrupp för inlägg"],"All redirects have a valid group":["Alla omdirigeringar har en giltig grupp"],"Redirects with invalid groups detected":["Omdirigeringar med ogiltiga grupper upptäcktes"],"Valid redirect group":["Giltig omdirigeringsgrupp"],"Valid groups detected":["Giltiga grupper upptäcktes"],"No valid groups, so you will not be able to create any redirects":["Inga giltiga grupper, du kan inte skapa nya omdirigeringar"],"Valid groups":["Giltiga grupper"],"Database tables":["Databastabeller"],"The following tables are missing:":["Följande tabeller saknas:"],"All tables present":["Alla tabeller närvarande"],"Cached Redirection detected":["En cachad version av Redirection upptäcktes"],"Please clear your browser cache and reload this page.":["Vänligen rensa din webbläsares cache och ladda om denna sida."],"The data on this page has expired, please reload.":["Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Om du tror att Redirection orsakar felet, skapa en felrapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "],"Loading, please wait...":["Laddar, vänligen vänta..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "],"Create Issue":["Skapa felrapport"],"Email":["E-post"],"Important details":["Viktiga detaljer"],"Need help?":["Behöver du hjälp?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."],"Pos":["Pos"],"410 - Gone":["410 - Borttagen"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID istället"],"Apache Module":["Apache-modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."],"Import to group":["Importera till grupp"],"Import a CSV, .htaccess, or JSON file.":["Importera en CSV-fil, .htaccess-fil eller JSON-fil."],"Click 'Add File' or drag and drop here.":["Klicka på 'Lägg till fil' eller dra och släpp en fil här."],"Add File":["Lägg till fil"],"File selected":["Fil vald"],"Importing":["Importerar"],"Finished importing":["Importering klar"],"Total redirects imported:":["Antal omdirigeringar importerade:"],"Double-check the file is the correct format!":["Dubbelkolla att filen är i rätt format!"],"OK":["OK"],"Close":["Stäng"],"All imports will be appended to the current database.":["All importerade omdirigeringar kommer infogas till den aktuella databasen."],"Export":["Exportera"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."],"Everything":["Allt"],"WordPress redirects":["WordPress omdirigeringar"],"Apache redirects":["Apache omdirigeringar"],"Nginx redirects":["Nginx omdirigeringar"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx omskrivningsregler"],"Redirection JSON":["JSON omdirigeringar"],"View":["Visa"],"Log files can be exported from the log pages.":["Loggfiler kan exporteras från loggsidorna."],"Import/Export":["Importera/Exportera"],"Logs":["Loggar"],"404 errors":["404-fel"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"],"I'd like to support some more.":["Jag skulle vilja stödja lite till."],"Support 💰":["Support 💰"],"Redirection saved":["Omdirigering sparad"],"Log deleted":["Logginlägg raderades"],"Settings saved":["Inställning sparad"],"Group saved":["Grupp sparad"],"Are you sure you want to delete this item?":["Är du säker på att du vill radera detta objekt?","Är du säker på att du vill radera dessa objekt?"],"pass":["lösen"],"All groups":["Alla grupper"],"301 - Moved Permanently":["301 - Flyttad permanent"],"302 - Found":["302 - Hittad"],"307 - Temporary Redirect":["307 - Tillfällig omdirigering"],"308 - Permanent Redirect":["308 - Permanent omdirigering"],"401 - Unauthorized":["401 - Obehörig"],"404 - Not Found":["404 - Hittades inte"],"Title":["Titel"],"When matched":["När matchning sker"],"with HTTP code":["med HTTP-kod"],"Show advanced options":["Visa avancerande alternativ"],"Matched Target":["Matchande mål"],"Unmatched Target":["Ej matchande mål"],"Saving...":["Sparar..."],"View notice":["Visa meddelande"],"Invalid source URL":["Ogiltig URL-källa"],"Invalid redirect action":["Ogiltig omdirigeringsåtgärd"],"Invalid redirect matcher":["Ogiltig omdirigeringsmatchning"],"Unable to add new redirect":["Det går inte att lägga till en ny omdirigering"],"Something went wrong 🙁":["Något gick fel 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."],"Log entries (%d max)":["Antal logginlägg per sida (max %d)"],"Search by IP":["Sök via IP"],"Select bulk action":["Välj massåtgärd"],"Bulk Actions":["Massåtgärd"],"Apply":["Tillämpa"],"First page":["Första sidan"],"Prev page":["Föregående sida"],"Current Page":["Aktuell sida"],"of %(page)s":["av %(sidor)"],"Next page":["Nästa sida"],"Last page":["Sista sidan"],"%s item":["%s objekt","%s objekt"],"Select All":["Välj allt"],"Sorry, something went wrong loading the data - please try again":["Något gick fel när data laddades - Vänligen försök igen"],"No results":["Inga resultat"],"Delete the logs - are you sure?":["Är du säker på att du vill radera loggarna?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."],"Yes! Delete the logs":["Ja! Radera loggarna"],"No! Don't delete the logs":["Nej! Radera inte loggarna"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."],"Newsletter":["Nyhetsbrev"],"Want to keep up to date with changes to Redirection?":["Vill du bli uppdaterad om ändringar i Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":[""],"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"],"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.":["Väljer du detta alternativ tas alla omdirigeringar, loggar och inställningar som associeras till tillägget Redirection bort. Försäkra dig om att det är det du vill göra."],"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"],"Error (404)":["Fel (404)"],"Pass-through":["Passera"],"Redirect to random post":["Omdirigering till slumpmässigt inlägg"],"Redirect to URL":["Omdirigera till URL"],"Invalid group when creating redirect":["Gruppen är ogiltig när omdirigering skapas"],"IP":["IP"],"Source URL":["URL-källa"],"Date":["Datum"],"Add Redirect":["Lägg till omdirigering"],"All modules":["Alla moduler"],"View Redirects":["Visa omdirigeringar"],"Module":["Modul"],"Redirects":["Omdirigering"],"Name":["Namn"],"Filter":["Filtrera"],"Reset hits":["Nollställ träffar"],"Enable":["Aktivera"],"Disable":["Inaktivera"],"Delete":["Radera"],"Edit":["Redigera"],"Last Access":["Senast använd"],"Hits":["Träffar"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Modifierade inlägg"],"Redirections":["Omdirigeringar"],"User Agent":["Användaragent"],"URL and user agent":["URL och användaragent"],"Target URL":["Mål-URL"],"URL only":["Endast URL"],"Regex":["Reguljärt uttryck"],"Referrer":["Hänvisningsadress"],"URL and referrer":["URL och hänvisande webbplats"],"Logged Out":["Utloggad"],"Logged In":["Inloggad"],"URL and login status":["URL och inloggnings-status"]}
1
+ {"":[],"blur":[""],"focus":[""],"scroll":[""],"Pass - as ignore, but also copies the query parameters to the target":[""],"Ignore - as exact, but ignores any query parameters not in your source":[""],"Exact - matches the query parameters exactly defined in your source, in any order":[""],"Default query matching":[""],"Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})":[""],"Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})":[""],"Applies to all redirections unless you configure them otherwise.":[""],"Default URL settings":[""],"Ignore and pass all query parameters":[""],"Ignore all query parameters":[""],"Exact match":[""],"Caching software (e.g Cloudflare)":[""],"A security plugin (e.g Wordfence)":[""],"No more options":[""],"URL options":[""],"Query Parameters":[""],"Ignore & pass parameters to the target":[""],"Ignore all parameters":[""],"Exact match all parameters in any order":[""],"Ignore Case":[""],"Ignore Slash":[""],"Relative REST API":[""],"Raw REST API":[""],"Default REST API":["Standard REST API"],"That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect.":[""],"(Example) The target URL is the new URL":[""],"(Example) The source URL is your old or original URL":[""],"Disabled! Detected PHP %s, need PHP 5.4+":[""],"Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.":[""],"A database upgrade is in progress. Please continue to finish.":["En databasuppgradering pågår. Fortsätt att slutföra."],"Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>.":[""],"Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.":[""],"Redirection database needs updating":[""],"Update Required":["Uppdatering krävs"],"I need some support!":["Jag behöver lite support!"],"Finish Setup":[""],"Checking your REST API":["Kontrollerar din REST API"],"Retry":["Försök igen"],"You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings.":[""],"If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}.":[""],"Some other plugin that blocks the REST API":["Några andra tillägg som blockerar REST API"],"A server firewall or other server configuration (e.g OVH)":[""],"Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:":[""],"Go back":["Gå tillbaka"],"Continue Setup":[""],"Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR).":[""],"Store IP information for redirects and 404 errors.":["Spara IP-information för omdirigeringar och 404 fel."],"Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements.":[""],"Keep a log of all redirects and 404 errors.":["Behåll en logg över alla omdirigeringar och 404 fel."],"{{link}}Read more about this.{{/link}}":["{{link}}Läs mer om detta.{{/link}}"],"If you change the permalink in a post or page then Redirection can automatically create a redirect for you.":[""],"Monitor permalink changes in WordPress posts and pages":[""],"These are some options you may want to enable now. They can be changed at any time.":[""],"Basic Setup":[""],"Start Setup":[""],"When ready please press the button to continue.":["När du är klar, tryck på knappen för att fortsätta."],"First you will be asked a few questions, and then Redirection will set up your database.":[""],"What's next?":[""],"Check a URL is being redirected":[""],"More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}":[""],"{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins":[""],"{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems":[""],"Some features you may find useful are":["Vissa funktioner som du kan tycka är användbara är"],"Full documentation can be found on the {{link}}Redirection website.{{/link}}":[""],"A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:":[""],"How do I use this plugin?":["Hur använder jag detta tillägg?"],"Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.":[""],"Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed.":[""],"Welcome to Redirection 🚀🎉":["Välkommen till Redirection 🚀🎉"],"This will redirect everything, including the login pages. Please be sure you want to do this.":[""],"To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}":[""],"Remember to enable the \"regex\" checkbox if this is a regular expression.":[""],"The source URL should probably start with a {{code}}/{{/code}}":[""],"This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.":[""],"Anchor values are not sent to the server and cannot be redirected.":[""],"{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}":[""],"Finished! 🎉":["Klart! 🎉"],"Progress: %(complete)d$":[""],"Leaving before the process has completed may cause problems.":[""],"Setting up Redirection":[""],"Upgrading Redirection":[""],"Please remain on this page until complete.":[""],"If you want to {{support}}ask for support{{/support}} please include these details:":[""],"Stop upgrade":[""],"Skip this stage":["Hoppa över detta steg"],"Try again":["Försök igen"],"Database problem":["Databasproblem"],"Please enable JavaScript":["Aktivera JavaScript"],"Please upgrade your database":["Uppgradera din databas"],"Upgrade Database":["Uppgradera databas"],"Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin.":[""],"Your database does not need updating to %s.":[""],"Failed to perform query \"%s\"":[""],"Table \"%s\" is missing":[""],"Create basic data":["Skapa grundläggande data"],"Install Redirection tables":[""],"Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s":[""],"Please do not try and redirect all your 404s - this is not a good thing to do.":[""],"Only the 404 page type is currently supported.":[""],"Page Type":["Sidtyp"],"Enter IP addresses (one per line)":["Ange IP-adresser (en per rad)"],"Describe the purpose of this redirect (optional)":["Beskriv syftet med denna omdirigering (valfritt)"],"418 - I'm a teapot":["418 – Jag är en tekanna"],"403 - Forbidden":["403 – Förbjuden"],"400 - Bad Request":[""],"304 - Not Modified":["304 – Inte modifierad"],"303 - See Other":[""],"Do nothing (ignore)":["Gör ingenting (ignorera)"],"Target URL when not matched (empty to ignore)":["URL-mål när den inte matchas (tom för att ignorera)"],"Target URL when matched (empty to ignore)":["URL-mål vid matchning (tom för att ignorera)"],"Show All":["Visa alla"],"Delete all logs for these entries":["Ta bort alla loggar för dessa poster"],"Delete all logs for this entry":["Ta bort alla loggar för denna post"],"Delete Log Entries":[""],"Group by IP":["Grupp efter IP"],"Group by URL":["Grupp efter URL"],"No grouping":["Ingen gruppering"],"Ignore URL":["Ignorera URL"],"Block IP":["Blockera IP"],"Redirect All":["Omdirigera alla"],"Count":[""],"URL and WordPress page type":[""],"URL and IP":["URL och IP"],"Problem":["Problem"],"Good":["Bra"],"Check":["Kontrollera"],"Check Redirect":["Kontrollera omdirigering"],"Check redirect for: {{code}}%s{{/code}}":["Kontrollera omdirigering för: {{code}}%s{{/code}}"],"What does this mean?":["Vad betyder detta?"],"Not using Redirection":["Använder inte omdirigering"],"Using Redirection":["Använder omdirigering"],"Found":["Hittad"],"{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}":[""],"Expected":["Förväntad"],"Error":["Fel"],"Enter full URL, including http:// or https://":["Ange fullständig URL, inklusive http:// eller https://"],"Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting.":[""],"Redirect Tester":["Omdirigeringstestare"],"Target":["Mål"],"URL is not being redirected with Redirection":["URL omdirigeras inte med Redirection"],"URL is being redirected with Redirection":["URL omdirigeras med Redirection"],"Unable to load details":["Det gick inte att ladda detaljer"],"Enter server URL to match against":["Ange server-URL för att matcha mot"],"Server":["Server"],"Enter role or capability value":["Ange roll eller behörighetsvärde"],"Role":["Roll"],"Match against this browser referrer text":[""],"Match against this browser user agent":[""],"The relative URL you want to redirect from":["Den relativa URL du vill omdirigera från"],"The target URL you want to redirect to if matched":["URL-målet du vill omdirigera till om den matchas"],"(beta)":["(beta)"],"Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling":["Tvinga en omdirigering från HTTP till HTTPS. Se till att din HTTPS fungerar innan du aktiverar"],"Force HTTPS":["Tvinga HTTPS"],"GDPR / Privacy information":["GDPR/integritetsinformation"],"Add New":["Lägg till ny"],"Please logout and login again.":["Logga ut och logga in igen."],"URL and role/capability":["URL och roll/behörighet"],"URL and server":["URL och server"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Om du inte kan få något att fungera kan det hända att Redirection har svårt att kommunicera med din server. Du kan försöka ändra den här inställningen manuellt:"],"Site and home protocol":["Webbplats och hemprotokoll"],"Site and home are consistent":["Webbplats och hem är konsekventa"],"Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this.":[""],"Accept Language":["Acceptera språk"],"Header value":["Värde för sidhuvud"],"Header name":["Namn på sidhuvud"],"HTTP Header":["HTTP-sidhuvud"],"WordPress filter name":["WordPress-filternamn"],"Filter Name":["Filternamn"],"Cookie value":["Cookie-värde"],"Cookie name":["Cookie-namn"],"Cookie":["Cookie"],"clearing your cache.":["rensa cacheminnet."],"If you are using a caching system such as Cloudflare then please read this: ":["Om du använder ett caching-system som Cloudflare, läs det här:"],"URL and HTTP header":["URL- och HTTP-sidhuvuden"],"URL and custom filter":["URL och anpassat filter"],"URL and cookie":["URL och cookie"],"404 deleted":["404 borttagen"],"REST API":["REST API"],"How Redirection uses the REST API - don't change unless necessary":["Hur Redirection använder REST API – ändra inte om inte nödvändigt"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["WordPress returnerade ett oväntat meddelande. Det här kan orsakas av att ditt REST API inte fungerar eller av ett annat tillägg eller tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Ta en titt på {{link}tilläggsstatusen{{/ link}}. Det kan vara möjligt att identifiera och ”magiskt åtgärda” problemet."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."],"None of the suggestions helped":["Inget av förslagen hjälpte"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."],"Unable to load Redirection ☹️":["Kunde inte ladda Redirection ☹️"],"WordPress REST API is working at %s":["WordPress REST API arbetar på %s"],"WordPress REST API":["WordPress REST API"],"REST API is not working so routes not checked":["REST API fungerar inte så flödena kontrolleras inte"],"Redirection routes are working":["Omdirigeringsflödena fungerar"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"],"Redirection routes":["Omdirigeringsflöden"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Användaragentfel"],"Unknown Useragent":["Okänd användaragent"],"Device":["Enhet"],"Operating System":["Operativsystem"],"Browser":["Webbläsare"],"Engine":["Sökmotor"],"Useragent":["Useragent"],"Agent":["Agent"],"No IP logging":["Ingen loggning av IP-nummer"],"Full IP logging":["Fullständig loggning av IP-nummer"],"Anonymize IP (mask last part)":["Anonymisera IP-nummer (maska sista delen)"],"Monitor changes to %(type)s":["Övervaka ändringar till %(type)s"],"IP Logging":["Läggning av IP-nummer"],"(select IP logging level)":["(välj loggningsnivå för IP)"],"Geo Info":["Geo-info"],"Agent Info":["Agentinfo"],"Filter by IP":["Filtrera på IP-nummer"],"Referrer / User Agent":["Hänvisare/Användaragent"],"Geo IP Error":["Geo-IP-fel"],"Something went wrong obtaining this information":["Något gick fel när denna information skulle hämtas"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Detta är en IP från ett privat nätverk. Det betyder att det ligger i ett hem- eller företagsnätverk och ingen mer information kan visas."],"No details are known for this address.":["Det finns inga kända detaljer för denna adress."],"Geo IP":["Geo IP"],"City":["Stad"],"Area":["Region"],"Timezone":["Tidszon"],"Geo Location":["Geo-plats"],"Powered by {{link}}redirect.li{{/link}}":["Drivs av {{link}}redirect.li{{/link}}"],"Trash":["Släng"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["Observera att Redirection kräver att WordPress REST API ska vara aktiverat. Om du har inaktiverat det här kommer du inte kunna använda Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} — inkludera så mycket information som du kan!"],"Never cache":["Använd aldrig cache"],"An hour":["En timma"],"Redirect Cache":["Omdirigera cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"],"Are you sure you want to import from %s?":["Är du säker på att du vill importera från %s?"],"Plugin Importers":["Tilläggsimporterare"],"The following redirect plugins were detected on your site and can be imported from.":["Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."],"total = ":["totalt ="],"Import from %s":["Importera från %s"],"Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress":["Redirection kräver WordPress v%1$1s, du använder v%2$2s – 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 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"],"Post monitor group is valid":["Övervakningsgrupp för inlägg är giltig"],"Post monitor group is invalid":["Övervakningsgrupp för inlägg är ogiltig"],"Post monitor group":["Övervakningsgrupp för inlägg"],"All redirects have a valid group":["Alla omdirigeringar har en giltig grupp"],"Redirects with invalid groups detected":["Omdirigeringar med ogiltiga grupper upptäcktes"],"Valid redirect group":["Giltig omdirigeringsgrupp"],"Valid groups detected":["Giltiga grupper upptäcktes"],"No valid groups, so you will not be able to create any redirects":["Inga giltiga grupper, du kan inte skapa nya omdirigeringar"],"Valid groups":["Giltiga grupper"],"Database tables":["Databastabeller"],"The following tables are missing:":["Följande tabeller saknas:"],"All tables present":["Alla tabeller närvarande"],"Cached Redirection detected":["En cachad version av Redirection upptäcktes"],"Please clear your browser cache and reload this page.":["Vänligen rensa din webbläsares cache och ladda om denna sida."],"The data on this page has expired, please reload.":["Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Om du tror att Redirection orsakar felet, skapa en felrapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "],"Loading, please wait...":["Laddar, vänligen vänta..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "],"Create Issue":["Skapa felrapport"],"Email":["E-post"],"Important details":["Viktiga detaljer"],"Need help?":["Behöver du hjälp?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."],"Pos":["Pos"],"410 - Gone":["410 - Borttagen"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID istället"],"Apache Module":["Apache-modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."],"Import to group":["Importera till grupp"],"Import a CSV, .htaccess, or JSON file.":["Importera en CSV-fil, .htaccess-fil eller JSON-fil."],"Click 'Add File' or drag and drop here.":["Klicka på 'Lägg till fil' eller dra och släpp en fil här."],"Add File":["Lägg till fil"],"File selected":["Fil vald"],"Importing":["Importerar"],"Finished importing":["Importering klar"],"Total redirects imported:":["Antal omdirigeringar importerade:"],"Double-check the file is the correct format!":["Dubbelkolla att filen är i rätt format!"],"OK":["OK"],"Close":["Stäng"],"All imports will be appended to the current database.":["All importerade omdirigeringar kommer infogas till den aktuella databasen."],"Export":["Exportera"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."],"Everything":["Allt"],"WordPress redirects":["WordPress omdirigeringar"],"Apache redirects":["Apache omdirigeringar"],"Nginx redirects":["Nginx omdirigeringar"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx omskrivningsregler"],"Redirection JSON":["JSON omdirigeringar"],"View":["Visa"],"Log files can be exported from the log pages.":["Loggfiler kan exporteras från loggsidorna."],"Import/Export":["Importera/Exportera"],"Logs":["Loggar"],"404 errors":["404-fel"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"],"I'd like to support some more.":["Jag skulle vilja stödja lite till."],"Support 💰":["Support 💰"],"Redirection saved":["Omdirigering sparad"],"Log deleted":["Logginlägg raderades"],"Settings saved":["Inställning sparad"],"Group saved":["Grupp sparad"],"Are you sure you want to delete this item?":["Är du säker på att du vill radera detta objekt?","Är du säker på att du vill radera dessa objekt?"],"pass":["lösen"],"All groups":["Alla grupper"],"301 - Moved Permanently":["301 - Flyttad permanent"],"302 - Found":["302 - Hittad"],"307 - Temporary Redirect":["307 - Tillfällig omdirigering"],"308 - Permanent Redirect":["308 - Permanent omdirigering"],"401 - Unauthorized":["401 - Obehörig"],"404 - Not Found":["404 - Hittades inte"],"Title":["Titel"],"When matched":["När matchning sker"],"with HTTP code":["med HTTP-kod"],"Show advanced options":["Visa avancerande alternativ"],"Matched Target":["Matchande mål"],"Unmatched Target":["Ej matchande mål"],"Saving...":["Sparar..."],"View notice":["Visa meddelande"],"Invalid source URL":["Ogiltig URL-källa"],"Invalid redirect action":["Ogiltig omdirigeringsåtgärd"],"Invalid redirect matcher":["Ogiltig omdirigeringsmatchning"],"Unable to add new redirect":["Det går inte att lägga till en ny omdirigering"],"Something went wrong 🙁":["Något gick fel 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."],"Log entries (%d max)":["Antal logginlägg per sida (max %d)"],"Search by IP":["Sök via IP"],"Select bulk action":["Välj massåtgärd"],"Bulk Actions":["Massåtgärd"],"Apply":["Tillämpa"],"First page":["Första sidan"],"Prev page":["Föregående sida"],"Current Page":["Aktuell sida"],"of %(page)s":["av %(sidor)"],"Next page":["Nästa sida"],"Last page":["Sista sidan"],"%s item":["%s objekt","%s objekt"],"Select All":["Välj allt"],"Sorry, something went wrong loading the data - please try again":["Något gick fel när data laddades - Vänligen försök igen"],"No results":["Inga resultat"],"Delete the logs - are you sure?":["Är du säker på att du vill radera loggarna?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."],"Yes! Delete the logs":["Ja! Radera loggarna"],"No! Don't delete the logs":["Nej! Radera inte loggarna"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."],"Newsletter":["Nyhetsbrev"],"Want to keep up to date with changes to Redirection?":["Vill du bli uppdaterad om ändringar i Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release.":[""],"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"],"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.":["Väljer du detta alternativ tas alla omdirigeringar, loggar och inställningar som associeras till tillägget Redirection bort. Försäkra dig om att det är det du vill göra."],"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"],"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,27 +11,123 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr ""
49
 
@@ -52,188 +148,180 @@ msgstr ""
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr ""
285
  msgid "Database problem"
286
  msgstr ""
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr ""
291
 
@@ -293,7 +381,7 @@ msgstr ""
293
  msgid "Please upgrade your database"
294
  msgstr ""
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr ""
299
 
@@ -330,124 +418,124 @@ msgstr ""
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr ""
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr ""
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr ""
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr ""
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr ""
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr ""
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr ""
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr ""
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr ""
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr ""
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr ""
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr ""
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr ""
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr ""
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr ""
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr ""
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr ""
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr ""
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr ""
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr ""
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr ""
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr ""
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr ""
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr ""
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr ""
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr ""
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr ""
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr ""
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr ""
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr ""
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr ""
453
 
@@ -483,83 +571,83 @@ msgstr ""
483
  msgid "Error"
484
  msgstr ""
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr ""
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr ""
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Weiterleitungstester"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Ziel"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "Die URL wird nicht mit Redirection umgeleitet"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL wird mit Redirection umgeleitet"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Die Details konnten nicht geladen werden"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr ""
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Server"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr ""
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr ""
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr ""
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr ""
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr ""
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr ""
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(Beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Erzwinge eine Umleitung von HTTP zu HTTPS. Bitte stelle sicher, dass HTTPS funktioniert, bevor du es aktivierst"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Erzwinge HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "DSGVO / Datenschutzinformationen"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr ""
565
 
@@ -567,11 +655,11 @@ msgstr ""
567
  msgid "Please logout and login again."
568
  msgstr "Bitte logge dich aus und erneut ein."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr ""
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL und Server"
577
 
@@ -587,75 +675,75 @@ msgstr ""
587
  msgid "Site and home are consistent"
588
  msgstr ""
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Beachte, dass du HTTP-Header an PHP übergeben musst. Bitte wende dich an deinen Hosting-Anbieter, um Unterstützung zu erhalten."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Akzeptiere Sprache"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Wert im Header "
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Header Name "
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "HTTP Header"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "WordPress Filter Name "
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Filter Name"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Cookie-Wert"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Cookie-Name"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr ""
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "Wenn du ein Caching-System, wie etwa Cloudflare, verwendest, lies bitte das Folgende:"
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL und HTTP-Header"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL und benutzerdefinierter Filter"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL und Cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr ""
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST-API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "Wie Redirection die REST-API verwendet - ändere das nur, wenn es unbedingt erforderlich ist"
661
 
@@ -687,11 +775,11 @@ msgstr ""
687
  msgid "None of the suggestions helped"
688
  msgstr ""
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr ""
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Redirection kann nicht geladen werden ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr ""
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr ""
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr ""
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Gerät"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Betriebssystem"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Browser"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr ""
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr ""
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr ""
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "Keine IP-Protokollierung"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Vollständige IP-Protokollierung"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Änderungen überwachen für %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "IP-Protokollierung"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(IP-Protokollierungsstufe wählen)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr ""
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr ""
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr ""
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr ""
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr ""
812
 
@@ -847,12 +935,12 @@ msgstr ""
847
  msgid "Trash"
848
  msgstr "Papierkorb"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  msgstr ""
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr ""
858
 
@@ -860,56 +948,56 @@ msgstr ""
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  msgstr "Die vollständige Dokumentation findest du unter {{site}}https://redirection.me{{/site}}. Solltest du Fragen oder Probleme mit dem Plugin haben, durchsuche bitte zunächst die {{faq}}FAQ{{/faq}}."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  msgstr "Wenn du nicht möchtest, dass deine Nachricht öffentlich sichtbar ist, dann sende sie bitte per {{email}}E-Mail{{/email}} - sende so viele Informationen, wie möglich."
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr ""
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "Eine Stunde"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr ""
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Möchtest du wirklich von %s importieren?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Plugin Importer"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "Total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Import von %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr ""
915
 
@@ -917,67 +1005,67 @@ msgstr ""
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr ""
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr ""
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr ""
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  msgstr ""
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr ""
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Plugin-Status"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr ""
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr ""
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr ""
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Bibliotheken"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr ""
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr ""
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr ""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr ""
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr ""
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr ""
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr ""
983
 
@@ -985,15 +1073,15 @@ msgstr ""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr ""
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr ""
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr ""
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Redirection konnte nicht geladen werden"
999
 
@@ -1049,11 +1137,11 @@ msgstr ""
1049
  msgid "All tables present"
1050
  msgstr ""
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr ""
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr ""
1059
 
@@ -1073,27 +1161,27 @@ msgstr ""
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr ""
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr ""
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Lädt, bitte warte..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  msgstr ""
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr ""
1099
 
@@ -1101,7 +1189,7 @@ msgstr ""
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr ""
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr ""
1107
 
@@ -1113,233 +1201,233 @@ msgstr "E-Mail"
1113
  msgid "Important details"
1114
  msgstr "Wichtige Details"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Hilfe benötigt?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr ""
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr ""
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Entfernt"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Position"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr ""
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Apache Modul"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr ""
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Importiere in Gruppe"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Datei hinzufügen"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "Datei ausgewählt"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importiere"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Importieren beendet"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Umleitungen importiert:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Schließen"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Exportieren"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr ""
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Alles"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "WordPress Weiterleitungen"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Apache Weiterleitungen"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Nginx Weiterleitungen"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr "Apache .htaccess"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr ""
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr ""
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "Anzeigen"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Import/Export"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Protokolldateien"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "404 Fehler"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr ""
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr ""
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Unterstützen 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Umleitung gespeichert"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Log gelöscht"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Einstellungen gespeichert"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Gruppe gespeichert"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
1288
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr ""
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "Alle Gruppen"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301- Dauerhaft verschoben"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Gefunden"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Zeitweise Umleitung"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Dauerhafte Umleitung"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - Unautorisiert"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - Nicht gefunden"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Titel"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr ""
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "mit HTTP Code"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Zeige erweiterte Optionen"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Passendes Ziel"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Unpassendes Ziel"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Speichern..."
1351
  msgid "View notice"
1352
  msgstr "Hinweis anzeigen"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "Ungültige Quell URL"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Ungültige Umleitungsaktion"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr ""
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr ""
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Etwas ist schiefgelaufen 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübe
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Log Einträge (%d max)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Suche nach IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr ""
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr ""
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Anwenden"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "Erste Seite"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Vorige Seite"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Aktuelle Seite"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "von %(Seite)n"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Nächste Seite"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Letzte Seite"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s Eintrag"
1427
  msgstr[1] "%s Einträge"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Alle auswählen"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "Keine Ergebnisse"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Logs löschen - bist du sicher?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Ja! Lösche die Logs"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "Nein! Lösche die Logs nicht"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr ""
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Newsletter"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr ""
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr ""
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Deine E-Mail Adresse:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Dauerhaft"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Plugin löschen - bist du sicher?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Ja! Lösche das Plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "Nein! Lösche das Plugin nicht"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Unleitung Support"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Support"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Log"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "Auswählen dieser Option löscht alle Umleitungen, alle Logs, und alle Optionen, die mit dem Umleitungs-Plugin verbunden sind. Stelle sicher, das du das wirklich möchtest."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Umleitung löschen"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Hochladen"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Importieren"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Aktualisieren"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Selbsterstellte URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "RSS Token"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "404-Logs"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(Dauer, für die die Logs behalten werden)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Umleitungs-Logs"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Plugin Support"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Optionen"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "zwei Monate"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "ein Monat"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "eine Woche"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "einen Tag"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "Keine Logs"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Alle löschen"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Gruppe hinzufügen"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Suchen"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Gruppen"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Speichern"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Gruppe"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Passend"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Eine neue Weiterleitung hinzufügen"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Abbrechen"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Download"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Einstellungen"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Fehler (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Durchreichen"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Umleitung zu zufälligen Beitrag"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Umleitung zur URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "URL-Quelle"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Zeitpunkt"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Umleitung hinzufügen"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "Alle Module"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "Weiterleitungen anschauen"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Module"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Umleitungen"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Name"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filter"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Treffer zurücksetzen"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Aktivieren"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Deaktivieren"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Löschen"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Bearbeiten"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Letzter Zugriff"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Treffer"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Typ"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Geänderte Beiträge"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirections"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "User Agent"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL und User-Agent"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "Ziel-URL"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "Nur URL"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Vermittler"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL und Vermittler"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Ausgeloggt"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Eingeloggt"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL- und Loginstatus"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr ""
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr ""
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr ""
379
 
381
  msgid "Please upgrade your database"
382
  msgstr ""
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr ""
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr ""
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr ""
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr ""
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr ""
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr ""
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr ""
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr ""
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr ""
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr ""
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr ""
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr ""
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr ""
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr ""
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr ""
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr ""
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr ""
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr ""
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr ""
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr ""
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr ""
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr ""
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr ""
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr ""
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr ""
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr ""
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr ""
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr ""
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr ""
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr ""
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr ""
541
 
571
  msgid "Error"
572
  msgstr ""
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr ""
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Weiterleitungstester"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Ziel"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "Die URL wird nicht mit Redirection umgeleitet"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL wird mit Redirection umgeleitet"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Die Details konnten nicht geladen werden"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr ""
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Server"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr ""
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr ""
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr ""
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr ""
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr ""
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr ""
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(Beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Erzwinge eine Umleitung von HTTP zu HTTPS. Bitte stelle sicher, dass HTTPS funktioniert, bevor du es aktivierst"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Erzwinge HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "DSGVO / Datenschutzinformationen"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr ""
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Bitte logge dich aus und erneut ein."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr ""
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL und Server"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr ""
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Beachte, dass du HTTP-Header an PHP übergeben musst. Bitte wende dich an deinen Hosting-Anbieter, um Unterstützung zu erhalten."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Akzeptiere Sprache"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Wert im Header "
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Header Name "
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "HTTP Header"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "WordPress Filter Name "
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Filter Name"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Cookie-Wert"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Cookie-Name"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr ""
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "Wenn du ein Caching-System, wie etwa Cloudflare, verwendest, lies bitte das Folgende:"
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL und HTTP-Header"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL und benutzerdefinierter Filter"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL und Cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr ""
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST-API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "Wie Redirection die REST-API verwendet - ändere das nur, wenn es unbedingt erforderlich ist"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr ""
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr ""
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Redirection kann nicht geladen werden ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr ""
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr ""
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Gerät"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Betriebssystem"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Browser"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr ""
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr ""
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr ""
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "Keine IP-Protokollierung"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Vollständige IP-Protokollierung"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Änderungen überwachen für %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "IP-Protokollierung"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(IP-Protokollierungsstufe wählen)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr ""
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr ""
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr ""
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr ""
891
 
894
  msgstr ""
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr ""
900
 
935
  msgid "Trash"
936
  msgstr "Papierkorb"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  msgstr ""
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr ""
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  msgstr "Die vollständige Dokumentation findest du unter {{site}}https://redirection.me{{/site}}. Solltest du Fragen oder Probleme mit dem Plugin haben, durchsuche bitte zunächst die {{faq}}FAQ{{/faq}}."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  msgstr "Wenn du nicht möchtest, dass deine Nachricht öffentlich sichtbar ist, dann sende sie bitte per {{email}}E-Mail{{/email}} - sende so viele Informationen, wie möglich."
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr ""
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "Eine Stunde"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr ""
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Möchtest du wirklich von %s importieren?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Plugin Importer"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "Total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Import von %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr ""
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr ""
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr ""
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr ""
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  msgstr ""
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr ""
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Plugin-Status"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr ""
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr ""
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr ""
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Bibliotheken"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr ""
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr ""
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr ""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr ""
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr ""
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr ""
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr ""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr ""
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr ""
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr ""
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Redirection konnte nicht geladen werden"
1087
 
1137
  msgid "All tables present"
1138
  msgstr ""
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr ""
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr ""
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr ""
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr ""
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Lädt, bitte warte..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  msgstr ""
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr ""
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr ""
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr ""
1195
 
1201
  msgid "Important details"
1202
  msgstr "Wichtige Details"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Hilfe benötigt?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr ""
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr ""
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Entfernt"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Position"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr ""
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Apache Modul"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr ""
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Importiere in Gruppe"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Datei hinzufügen"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "Datei ausgewählt"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importiere"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Importieren beendet"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Umleitungen importiert:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Schließen"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Exportieren"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr ""
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Alles"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "WordPress Weiterleitungen"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Apache Weiterleitungen"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Nginx Weiterleitungen"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr "Apache .htaccess"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr ""
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr ""
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "Anzeigen"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Import/Export"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Protokolldateien"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "404 Fehler"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr ""
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr ""
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Unterstützen 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Umleitung gespeichert"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Log gelöscht"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Einstellungen gespeichert"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Gruppe gespeichert"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
1376
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr ""
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "Alle Gruppen"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301- Dauerhaft verschoben"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Gefunden"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Zeitweise Umleitung"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Dauerhafte Umleitung"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - Unautorisiert"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - Nicht gefunden"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Titel"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr ""
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "mit HTTP Code"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Zeige erweiterte Optionen"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Passendes Ziel"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Unpassendes Ziel"
1433
 
1439
  msgid "View notice"
1440
  msgstr "Hinweis anzeigen"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "Ungültige Quell URL"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Ungültige Umleitungsaktion"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr ""
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr ""
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Etwas ist schiefgelaufen 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Log Einträge (%d max)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Suche nach IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr ""
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr ""
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Anwenden"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "Erste Seite"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Vorige Seite"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Aktuelle Seite"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "von %(Seite)n"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Nächste Seite"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Letzte Seite"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s Eintrag"
1515
  msgstr[1] "%s Einträge"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Alle auswählen"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "Keine Ergebnisse"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Logs löschen - bist du sicher?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Ja! Lösche die Logs"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "Nein! Lösche die Logs nicht"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr ""
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr ""
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr ""
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Deine E-Mail Adresse:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Dauerhaft"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Plugin löschen - bist du sicher?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Ja! Lösche das Plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "Nein! Lösche das Plugin nicht"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Unleitung Support"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Support"
1616
 
1622
  msgid "Log"
1623
  msgstr "Log"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "Auswählen dieser Option löscht alle Umleitungen, alle Logs, und alle Optionen, die mit dem Umleitungs-Plugin verbunden sind. Stelle sicher, das du das wirklich möchtest."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Umleitung löschen"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Hochladen"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Importieren"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Aktualisieren"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Selbsterstellte URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "RSS Token"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "404-Logs"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(Dauer, für die die Logs behalten werden)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Umleitungs-Logs"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Plugin Support"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Optionen"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "zwei Monate"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "ein Monat"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "eine Woche"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "einen Tag"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "Keine Logs"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Alle löschen"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Gruppe hinzufügen"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Suchen"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Gruppen"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Speichern"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Gruppe"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Passend"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Eine neue Weiterleitung hinzufügen"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Abbrechen"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Download"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Einstellungen"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Fehler (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Durchreichen"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Umleitung zu zufälligen Beitrag"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Umleitung zur URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "URL-Quelle"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Zeitpunkt"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Umleitung hinzufügen"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "Alle Module"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "Weiterleitungen anschauen"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Module"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Umleitungen"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Name"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filter"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Treffer zurücksetzen"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Aktivieren"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Deaktivieren"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Löschen"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Bearbeiten"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Letzter Zugriff"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Treffer"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Typ"
1863
 
1866
  msgstr "Geänderte Beiträge"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirections"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "User Agent"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL und User-Agent"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "Ziel-URL"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "Nur URL"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Vermittler"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL und Vermittler"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Ausgeloggt"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Eingeloggt"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL- und Loginstatus"
locale/redirection-en_AU.po CHANGED
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: en_AU\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr ""
49
 
@@ -52,188 +148,180 @@ msgstr ""
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr ""
285
  msgid "Database problem"
286
  msgstr ""
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr ""
291
 
@@ -293,7 +381,7 @@ msgstr ""
293
  msgid "Please upgrade your database"
294
  msgstr ""
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr ""
299
 
@@ -330,124 +418,124 @@ msgstr ""
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Only the 404 page type is currently supported."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Page Type"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Enter IP addresses (one per line)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Describe the purpose of this redirect (optional)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - I'm a teapot"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Forbidden"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Bad Request"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Not Modified"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - See Other"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Do nothing (ignore)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "Target URL when not matched (empty to ignore)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "Target URL when matched (empty to ignore)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Show All"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Delete all logs for these entries"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Delete all logs for this entry"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Delete Log Entries"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Group by IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Group by URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "No grouping"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignore URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Block IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Redirect All"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Count"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL and WordPress page type"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL and IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problem"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Good"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Check"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Check Redirect"
453
 
@@ -483,83 +571,83 @@ msgstr "Expected"
483
  msgid "Error"
484
  msgstr "Error"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Enter full URL, including http:// or https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Redirect Tester"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Target"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "URL is not being redirected with Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL is being redirected with Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Unable to load details"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Enter server URL to match against"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Server"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Enter role or capability value"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Role"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Match against this browser referrer text"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Match against this browser user agent"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "The relative URL you want to redirect from"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "The target URL you want to redirect to if matched"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Force HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / Privacy information"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Add New"
565
 
@@ -567,11 +655,11 @@ msgstr "Add New"
567
  msgid "Please logout and login again."
568
  msgstr "Please logout and login again."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL and role/capability"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL and server"
577
 
@@ -587,75 +675,75 @@ msgstr "Site and home protocol"
587
  msgid "Site and home are consistent"
588
  msgstr "Site and home are consistent"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Accept Language"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Header value"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Header name"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "HTTP Header"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "WordPress filter name"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Filter Name"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Cookie value"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Cookie name"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "clearing your cache."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL and HTTP header"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL and custom filter"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL and cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 deleted"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "How Redirection uses the REST API - don't change unless necessary"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so
687
  msgid "None of the suggestions helped"
688
  msgstr "None of the suggestions helped"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Unable to load Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Useragent Error"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Unknown Useragent"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Device"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Operating System"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Browser"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Engine"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Useragent"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agent"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "No IP logging"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Full IP logging"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonymise IP (mask last part)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitor changes to %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "IP Logging"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(select IP logging level)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Geo Info"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Agent Info"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filter by IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Referrer / User Agent"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Geo IP Error"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Something went wrong obtaining this information"
812
 
@@ -847,12 +935,12 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Trash"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  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"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
858
 
@@ -860,56 +948,56 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  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."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  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!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Never cache"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "An hour"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Redirect Cache"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Are you sure you want to import from %s?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Plugin Importers"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "The following redirect plugins were detected on your site and can be imported from."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Import from %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "Default WordPress \"old slugs\""
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Create associated redirect (added to end of URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  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."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Magic fix ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Plugin Status"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Custom"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Mobile"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Feed Readers"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Libraries"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "URL Monitor Changes"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Save changes to this group"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "For example \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "URL Monitor"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Delete 404s"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Delete all from IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Delete all matching \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Delete all matching \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Unable to load Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "The following tables are missing:"
1049
  msgid "All tables present"
1050
  msgstr "All tables present"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Cached Redirection detected"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Please clear your browser cache and reload this page."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Your server returned a 403 Forbidden error which may indicate the reques
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "If you think Redirection is at fault then create an issue."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Loading, please wait..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  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)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "If that doesn't help, open your browser's error console and create a {{l
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Create Issue"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "Email"
1113
  msgid "Important details"
1114
  msgstr "Important details"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Need help?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Gone"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Position"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Apache Module"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Import to group"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Import a CSV, .htaccess, or JSON file."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Click 'Add File' or drag and drop here."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Add File"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "File selected"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importing"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Finished importing"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total redirects imported:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Double-check the file is the correct format!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Close"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "All imports will be appended to the current database."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Export"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Everything"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "WordPress redirects"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Apache redirects"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Nginx redirects"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr "Apache .htaccess"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Nginx rewrite rules"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "Redirection JSON"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "View"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Log files can be exported from the log pages."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Import/Export"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Logs"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "404 errors"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "I'd like to support some more."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Support 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirection saved"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Log deleted"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Settings saved"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Group saved"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Are you sure you want to delete this item?"
1288
  msgstr[1] "Are you sure you want to delete these items?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "pass"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "All groups"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - Moved Permanently"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Found"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Temporary Redirect"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Permanent Redirect"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - Unauthorised"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - Not Found"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Title"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "When matched"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "with HTTP code"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Show advanced options"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Matched Target"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Unmatched Target"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Saving..."
1351
  msgid "View notice"
1352
  msgstr "View notice"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "Invalid source URL"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Invalid redirect action"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Invalid redirect matcher"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "Unable to add new redirect"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Something went wrong 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "I was trying to do a thing and it went wrong. It may be a temporary issu
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Log entries (%d max)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Search by IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Select bulk action"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Bulk Actions"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Apply"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "First page"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Prev page"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Current Page"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "of %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Next page"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Last page"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s item"
1427
  msgstr[1] "%s items"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Select All"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Sorry, something went wrong loading the data - please try again"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "No results"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Delete the logs - are you sure?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Yes! Delete the logs"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "No! Don't delete the logs"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Newsletter"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "Want to keep up to date with changes to Redirection?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Your email address:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "You've supported this plugin - thank you!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "You get useful software and I get to carry on making it better."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Forever"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Delete the plugin - are you sure?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Yes! Delete the plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "No! Don't delete the plugin"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Redirection Support"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Support"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Log"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "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."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Delete Redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Upload"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Import"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Update"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Auto-generate URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "RSS Token"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "404 Logs"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(time to keep logs for)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Redirect Logs"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Plugin Support"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Options"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Two months"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "A month"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "A week"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "A day"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "No logs"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Delete All"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Add Group"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Search"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Groups"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Save"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Group"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Match"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Add new redirection"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Cancel"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Download"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Settings"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Error (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Pass-through"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Redirect to random post"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirect to URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Invalid group when creating redirect"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "Source URL"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Date"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Add Redirect"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "All modules"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "View Redirects"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Module"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirects"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Name"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filter"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Reset hits"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Enable"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Disable"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Delete"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Edit"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Last Access"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Hits"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Type"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Modified Posts"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirections"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "User Agent"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL and user agent"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "Target URL"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL only"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Referrer"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL and referrer"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Logged Out"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Logged In"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL and login status"
11
  "Language: en_AU\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr ""
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr ""
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr ""
379
 
381
  msgid "Please upgrade your database"
382
  msgstr ""
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr ""
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Only the 404 page type is currently supported."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Page Type"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Enter IP addresses (one per line)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Describe the purpose of this redirect (optional)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - I'm a teapot"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Forbidden"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Bad Request"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Not Modified"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - See Other"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Do nothing (ignore)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "Target URL when not matched (empty to ignore)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "Target URL when matched (empty to ignore)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Show All"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Delete all logs for these entries"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Delete all logs for this entry"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Delete Log Entries"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Group by IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Group by URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "No grouping"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignore URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Block IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Redirect All"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Count"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL and WordPress page type"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL and IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problem"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Good"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Check"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Check Redirect"
541
 
571
  msgid "Error"
572
  msgstr "Error"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Enter full URL, including http:// or https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Redirect Tester"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Target"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "URL is not being redirected with Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL is being redirected with Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Unable to load details"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Enter server URL to match against"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Server"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Enter role or capability value"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Role"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Match against this browser referrer text"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Match against this browser user agent"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "The relative URL you want to redirect from"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "The target URL you want to redirect to if matched"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Force HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / Privacy information"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Add New"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Please logout and login again."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL and role/capability"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL and server"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Site and home are consistent"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Accept Language"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Header value"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Header name"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "HTTP Header"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "WordPress filter name"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Filter Name"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Cookie value"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Cookie name"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "clearing your cache."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL and HTTP header"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL and custom filter"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL and cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 deleted"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "How Redirection uses the REST API - don't change unless necessary"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "None of the suggestions helped"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Unable to load Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Useragent Error"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Unknown Useragent"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Device"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Operating System"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Browser"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Engine"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Useragent"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agent"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "No IP logging"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Full IP logging"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonymise IP (mask last part)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitor changes to %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "IP Logging"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(select IP logging level)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Geo Info"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Agent Info"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filter by IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Referrer / User Agent"
891
 
894
  msgstr "Geo IP Error"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Something went wrong obtaining this information"
900
 
935
  msgid "Trash"
936
  msgstr "Trash"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  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"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  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!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Never cache"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "An hour"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Redirect Cache"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Are you sure you want to import from %s?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Plugin Importers"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "The following redirect plugins were detected on your site and can be imported from."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Import from %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "Default WordPress \"old slugs\""
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Create associated redirect (added to end of URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  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."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Magic fix ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Plugin Status"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Custom"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Mobile"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Feed Readers"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Libraries"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "URL Monitor Changes"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Save changes to this group"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "For example \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "URL Monitor"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Delete 404s"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Delete all from IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Delete all matching \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Unable to load Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "All tables present"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Cached Redirection detected"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Please clear your browser cache and reload this page."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "If you think Redirection is at fault then create an issue."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Loading, please wait..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  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)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Create Issue"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Important details"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Need help?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Gone"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Position"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Apache Module"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Import to group"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Import a CSV, .htaccess, or JSON file."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Click 'Add File' or drag and drop here."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Add File"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "File selected"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importing"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Finished importing"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total redirects imported:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Double-check the file is the correct format!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Close"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "All imports will be appended to the current database."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Export"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Everything"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "WordPress redirects"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Apache redirects"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Nginx redirects"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr "Apache .htaccess"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Nginx rewrite rules"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "Redirection JSON"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "View"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Log files can be exported from the log pages."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Import/Export"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Logs"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "404 errors"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "I'd like to support some more."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Support 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirection saved"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Log deleted"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Settings saved"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Group saved"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Are you sure you want to delete this item?"
1376
  msgstr[1] "Are you sure you want to delete these items?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "pass"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "All groups"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - Moved Permanently"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Found"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Temporary Redirect"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Permanent Redirect"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - Unauthorised"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - Not Found"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Title"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "When matched"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "with HTTP code"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Show advanced options"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Matched Target"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Unmatched Target"
1433
 
1439
  msgid "View notice"
1440
  msgstr "View notice"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "Invalid source URL"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Invalid redirect action"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Invalid redirect matcher"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "Unable to add new redirect"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Something went wrong 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Log entries (%d max)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Search by IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Select bulk action"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Bulk Actions"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Apply"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "First page"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Prev page"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Current Page"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "of %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Next page"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Last page"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s item"
1515
  msgstr[1] "%s items"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Select All"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Sorry, something went wrong loading the data - please try again"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "No results"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Delete the logs - are you sure?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Yes! Delete the logs"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "No! Don't delete the logs"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "Want to keep up to date with changes to Redirection?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Your email address:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "You've supported this plugin - thank you!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "You get useful software and I get to carry on making it better."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Forever"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Delete the plugin - are you sure?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Yes! Delete the plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "No! Don't delete the plugin"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Redirection Support"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Support"
1616
 
1622
  msgid "Log"
1623
  msgstr "Log"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "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."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Delete Redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Upload"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Import"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Update"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Auto-generate URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "RSS Token"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "404 Logs"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(time to keep logs for)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Redirect Logs"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Plugin Support"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Options"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Two months"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "A month"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "A week"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "A day"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "No logs"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Delete All"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Add Group"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Search"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Groups"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Save"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Group"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Match"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Add new redirection"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Cancel"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Download"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Settings"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Error (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Pass-through"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Redirect to random post"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirect to URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Invalid group when creating redirect"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "Source URL"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Date"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Add Redirect"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "All modules"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "View Redirects"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Module"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirects"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Name"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filter"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Reset hits"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Enable"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Disable"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Delete"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Edit"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Last Access"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Hits"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Type"
1863
 
1866
  msgstr "Modified Posts"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirections"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "User Agent"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL and user agent"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "Target URL"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL only"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Referrer"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL and referrer"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Logged Out"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Logged In"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL and login status"
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: 2019-02-04 17:20:09+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr "Relative REST API"
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr "Raw REST API"
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr "Default REST API"
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
- msgstr "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr "(Example) The target URL is the new URL"
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr "(Example) The source URL is your old or original URL"
37
 
@@ -39,11 +135,11 @@ msgstr "(Example) The source URL is your old or original URL"
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr "Disabled! Detected PHP %s, need PHP 5.4+"
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr "A database upgrade is in progress. Please continue to finish."
49
 
@@ -52,188 +148,180 @@ msgstr "A database upgrade is in progress. Please continue to finish."
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr "Redirection database needs updating"
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr "Update Required"
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr "I need some support!"
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr "Finish Setup"
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr "Checking your REST API"
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr "Retry"
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr "Some other plugin that blocks the REST API"
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr "Caching software, for example Cloudflare"
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr "A server firewall or other server configuration"
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
- msgstr "A security plugin"
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr "Go back"
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr "Continue Setup"
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr "Store IP information for redirects and 404 errors."
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr "Keep a log of all redirects and 404 errors."
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr "{{link}}Read more about this.{{/link}}"
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr "Monitor permalink changes in WordPress posts and pages"
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr "These are some options you may want to enable now. They can be changed at any time."
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr "Basic Setup"
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr "Start Setup"
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr "When ready please press the button to continue."
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr "First you will be asked a few questions, and then Redirection will set up your database."
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr "What's next?"
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr "Check a URL is being redirected"
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr "Some features you may find useful are"
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr "How do I use this plugin?"
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr "Welcome to Redirection 🚀🎉"
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr "This will redirect everything, including the login pages. Please be sure you want to do this."
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
- msgstr "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr "Remember to enable the \"regex\" checkbox if this is a regular expression."
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr "The source URL should probably start with a {{code}}/{{/code}}"
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr "Anchor values are not sent to the server and cannot be redirected."
239
 
@@ -285,7 +373,7 @@ msgstr "Try again"
285
  msgid "Database problem"
286
  msgstr "Database problem"
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr "Please enable JavaScript"
291
 
@@ -293,7 +381,7 @@ msgstr "Please enable JavaScript"
293
  msgid "Please upgrade your database"
294
  msgstr "Please upgrade your database"
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr "Upgrade Database"
299
 
@@ -330,124 +418,124 @@ msgstr "Install Redirection tables"
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Only the 404 page type is currently supported."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Page Type"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Enter IP addresses (one per line)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Describe the purpose of this redirect (optional)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - I'm a teapot"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Forbidden"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Bad Request"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Not Modified"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - See Other"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Do nothing (ignore)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "Target URL when not matched (empty to ignore)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "Target URL when matched (empty to ignore)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Show All"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Delete all logs for these entries"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Delete all logs for this entry"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Delete Log Entries"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Group by IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Group by URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "No grouping"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignore URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Block IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Redirect All"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Count"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL and WordPress page type"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL and IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problem"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Good"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Check"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Check Redirect"
453
 
@@ -483,83 +571,83 @@ msgstr "Expected"
483
  msgid "Error"
484
  msgstr "Error"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Enter full URL, including http:// or https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Redirect Tester"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Target"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "URL is not being redirected with Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL is being redirected with Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Unable to load details"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Enter server URL to match against"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Server"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Enter role or capability value"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Role"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Match against this browser referrer text"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Match against this browser user agent"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "The relative URL you want to redirect from"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "The target URL you want to redirect to if matched"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Force HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / Privacy information"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Add New"
565
 
@@ -567,11 +655,11 @@ msgstr "Add New"
567
  msgid "Please logout and login again."
568
  msgstr "Please logout and login again."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL and role/capability"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL and server"
577
 
@@ -587,75 +675,75 @@ msgstr "Site and home protocol"
587
  msgid "Site and home are consistent"
588
  msgstr "Site and home are consistent"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Accept Language"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Header value"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Header name"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "HTTP Header"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "WordPress filter name"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Filter Name"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Cookie value"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Cookie name"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "clearing your cache."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL and HTTP header"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL and custom filter"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL and cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 deleted"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "How Redirection uses the REST API - don't change unless necessary"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so
687
  msgid "None of the suggestions helped"
688
  msgstr "None of the suggestions helped"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Unable to load Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Useragent Error"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Unknown Useragent"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Device"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Operating System"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Browser"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Engine"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Useragent"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agent"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "No IP logging"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Full IP logging"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonymize IP (mask last part)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitor changes to %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "IP Logging"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(select IP logging level)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Geo Info"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Agent Info"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filter by IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Referrer / User Agent"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Geo IP Error"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Something went wrong obtaining this information"
812
 
@@ -847,12 +935,12 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Trash"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  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"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
858
 
@@ -860,56 +948,56 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  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."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  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!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Never cache"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "An hour"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Redirect Cache"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Are you sure you want to import from %s?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Plugin Importers"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "The following redirect plugins were detected on your site and can be imported from."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Import from %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please upd
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "Default WordPress \"old slugs\""
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Create associated redirect (added to end of URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  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."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Magic fix ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Plugin Status"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Custom"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Mobile"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Feed Readers"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Libraries"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "URL Monitor Changes"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Save changes to this group"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "For example \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "URL Monitor"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Delete 404s"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Delete all from IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Delete all matching \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Delete all matching \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Unable to load Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "The following tables are missing:"
1049
  msgid "All tables present"
1050
  msgstr "All tables present"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Cached Redirection detected"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Please clear your browser cache and reload this page."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Your server returned a 403 Forbidden error which may indicate the reques
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "If you think Redirection is at fault then create an issue."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Loading, please wait..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  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)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "If that doesn't help, open your browser's error console and create a {{l
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Create Issue"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "Email"
1113
  msgid "Important details"
1114
  msgstr "Important details"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Need help?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Gone"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Position"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Apache Module"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Import to group"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Import a CSV, .htaccess, or JSON file."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Click 'Add File' or drag and drop here."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Add File"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "File selected"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importing"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Finished importing"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total redirects imported:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Double-check the file is the correct format!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Close"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "All imports will be appended to the current database."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Export"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Everything"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "WordPress redirects"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Apache redirects"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Nginx redirects"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr "Apache .htaccess"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Nginx rewrite rules"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "Redirection JSON"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "View"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Log files can be exported from the log pages."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Import/Export"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Logs"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "404 errors"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "I'd like to support some more."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Support 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirection saved"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Log deleted"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Settings saved"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Group saved"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Are you sure you want to delete this item?"
1288
  msgstr[1] "Are you sure you want to delete these items?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "pass"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "All groups"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - Moved Permanently"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Found"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Temporary Redirect"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Permanent Redirect"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - Unauthorized"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - Not Found"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Title"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "When matched"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "with HTTP code"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Show advanced options"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Matched Target"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Unmatched Target"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Saving..."
1351
  msgid "View notice"
1352
  msgstr "View notice"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "Invalid source URL"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Invalid redirect action"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Invalid redirect matcher"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "Unable to add new redirect"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Something went wrong 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "I was trying to do a thing and it went wrong. It may be a temporary issu
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Log entries (%d max)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Search by IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Select bulk action"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Bulk Actions"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Apply"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "First page"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Prev page"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Current Page"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "of %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Next page"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Last page"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s item"
1427
  msgstr[1] "%s items"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Select All"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Sorry, something went wrong loading the data - please try again"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "No results"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Delete the logs - are you sure?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Yes! Delete the logs"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "No! Don't delete the logs"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Newsletter"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "Want to keep up to date with changes to Redirection?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Your email address:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "You've supported this plugin - thank you!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "You get useful software and I get to carry on making it better."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Forever"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Delete the plugin - are you sure?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Yes! Delete the plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "No! Don't delete the plugin"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Redirection Support"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Support"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Log"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "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."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Delete Redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Upload"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Import"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Update"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Auto-generate URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "RSS Token"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "404 Logs"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(time to keep logs for)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Redirect Logs"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Plugin Support"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Options"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Two months"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "A month"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "A week"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "A day"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "No logs"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Delete All"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Add Group"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Search"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Groups"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Save"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Group"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Match"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Add new redirection"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Cancel"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Download"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Settings"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Error (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Pass-through"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Redirect to random post"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirect to URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Invalid group when creating redirect"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "Source URL"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Date"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Add Redirect"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "All modules"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "View Redirects"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Module"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirects"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Name"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filter"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Reset hits"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Enable"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Disable"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Delete"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Edit"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Last Access"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Hits"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Type"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Modified Posts"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirections"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "User Agent"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL and user agent"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "Target URL"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL only"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Referrer"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL and referrer"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Logged Out"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Logged In"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  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: 2019-02-25 00:25:08+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.js:33
15
+ msgid "blur"
16
+ msgstr "blur"
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr "focus"
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr "scroll"
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr "Pass - as ignore, but also copies the query parameters to the target"
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr "Ignore - as exact, but ignores any query parameters not in your source"
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr "Exact - matches the query parameters exactly defined in your source, in any order"
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr "Default query matching"
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr "Applies to all redirections unless you configure them otherwise."
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr "Default URL settings"
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr "Ignore and pass all query parameters"
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr "Ignore all query parameters"
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr "Exact match"
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr "Caching software (e.g Cloudflare)"
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr "A security plugin (e.g Wordfence)"
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr "No more options"
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr "URL options"
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr "Query Parameters"
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr "Ignore & pass parameters to the target"
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr "Ignore all parameters"
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr "Exact match all parameters in any order"
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr "Ignore Case"
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr "Ignore Slash"
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr "Relative REST API"
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr "Raw REST API"
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr "Default REST API"
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
+ msgstr "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr "(Example) The target URL is the new URL"
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr "(Example) The source URL is your old or original URL"
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr "Disabled! Detected PHP %s, need PHP 5.4+"
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr "A database upgrade is in progress. Please continue to finish."
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr "Redirection database needs updating"
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr "Update Required"
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr "I need some support!"
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr "Finish Setup"
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr "Checking your REST API"
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr "Retry"
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr "Some other plugin that blocks the REST API"
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
193
+ msgstr "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr "Go back"
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr "Continue Setup"
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr "Store IP information for redirects and 404 errors."
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr "Keep a log of all redirects and 404 errors."
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr "{{link}}Read more about this.{{/link}}"
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr "Monitor permalink changes in WordPress posts and pages"
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr "These are some options you may want to enable now. They can be changed at any time."
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr "Basic Setup"
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr "Start Setup"
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr "When ready please press the button to continue."
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr "First you will be asked a few questions, and then Redirection will set up your database."
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr "What's next?"
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr "Check a URL is being redirected"
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr "Some features you may find useful are"
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr "How do I use this plugin?"
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr "Welcome to Redirection 🚀🎉"
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr "This will redirect everything, including the login pages. Please be sure you want to do this."
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
+ msgstr "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr "Remember to enable the \"regex\" checkbox if this is a regular expression."
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr "The source URL should probably start with a {{code}}/{{/code}}"
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr "Anchor values are not sent to the server and cannot be redirected."
327
 
373
  msgid "Database problem"
374
  msgstr "Database problem"
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr "Please enable JavaScript"
379
 
381
  msgid "Please upgrade your database"
382
  msgstr "Please upgrade your database"
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr "Upgrade Database"
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Only the 404 page type is currently supported."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Page Type"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Enter IP addresses (one per line)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Describe the purpose of this redirect (optional)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - I'm a teapot"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Forbidden"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Bad Request"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Not Modified"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - See Other"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Do nothing (ignore)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "Target URL when not matched (empty to ignore)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "Target URL when matched (empty to ignore)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Show All"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Delete all logs for these entries"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Delete all logs for this entry"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Delete Log Entries"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Group by IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Group by URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "No grouping"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignore URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Block IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Redirect All"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Count"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL and WordPress page type"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL and IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problem"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Good"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Check"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Check Redirect"
541
 
571
  msgid "Error"
572
  msgstr "Error"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Enter full URL, including http:// or https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Redirect Tester"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Target"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "URL is not being redirected with Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL is being redirected with Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Unable to load details"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Enter server URL to match against"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Server"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Enter role or capability value"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Role"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Match against this browser referrer text"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Match against this browser user agent"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "The relative URL you want to redirect from"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "The target URL you want to redirect to if matched"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Force HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / Privacy information"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Add New"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Please logout and login again."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL and role/capability"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL and server"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Site and home are consistent"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Accept Language"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Header value"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Header name"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "HTTP Header"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "WordPress filter name"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Filter Name"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Cookie value"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Cookie name"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "clearing your cache."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL and HTTP header"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL and custom filter"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL and cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 deleted"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "How Redirection uses the REST API - don't change unless necessary"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "None of the suggestions helped"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Unable to load Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Useragent Error"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Unknown Useragent"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Device"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Operating System"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Browser"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Engine"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Useragent"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agent"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "No IP logging"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Full IP logging"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonymize IP (mask last part)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitor changes to %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "IP Logging"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(select IP logging level)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Geo Info"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Agent Info"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filter by IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Referrer / User Agent"
891
 
894
  msgstr "Geo IP Error"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Something went wrong obtaining this information"
900
 
935
  msgid "Trash"
936
  msgstr "Trash"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  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"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  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!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Never cache"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "An hour"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Redirect Cache"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Are you sure you want to import from %s?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Plugin Importers"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "The following redirect plugins were detected on your site and can be imported from."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Import from %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "Default WordPress \"old slugs\""
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Create associated redirect (added to end of URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  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."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Magic fix ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Plugin Status"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Custom"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Mobile"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Feed Readers"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Libraries"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "URL Monitor Changes"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Save changes to this group"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "For example \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "URL Monitor"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Delete 404s"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Delete all from IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Delete all matching \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Unable to load Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "All tables present"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Cached Redirection detected"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Please clear your browser cache and reload this page."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "If you think Redirection is at fault then create an issue."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Loading, please wait..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  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)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Create Issue"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Important details"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Need help?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Gone"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Position"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Apache Module"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Import to group"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Import a CSV, .htaccess, or JSON file."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Click 'Add File' or drag and drop here."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Add File"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "File selected"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importing"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Finished importing"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total redirects imported:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Double-check the file is the correct format!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Close"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "All imports will be appended to the current database."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Export"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Everything"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "WordPress redirects"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Apache redirects"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Nginx redirects"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr "Apache .htaccess"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Nginx rewrite rules"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "Redirection JSON"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "View"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Log files can be exported from the log pages."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Import/Export"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Logs"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "404 errors"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "I'd like to support some more."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Support 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirection saved"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Log deleted"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Settings saved"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Group saved"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Are you sure you want to delete this item?"
1376
  msgstr[1] "Are you sure you want to delete these items?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "pass"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "All groups"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - Moved Permanently"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Found"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Temporary Redirect"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Permanent Redirect"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - Unauthorized"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - Not Found"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Title"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "When matched"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "with HTTP code"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Show advanced options"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Matched Target"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Unmatched Target"
1433
 
1439
  msgid "View notice"
1440
  msgstr "View notice"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "Invalid source URL"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Invalid redirect action"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Invalid redirect matcher"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "Unable to add new redirect"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Something went wrong 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Log entries (%d max)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Search by IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Select bulk action"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Bulk Actions"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Apply"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "First page"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Prev page"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Current Page"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "of %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Next page"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Last page"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s item"
1515
  msgstr[1] "%s items"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Select All"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Sorry, something went wrong loading the data - please try again"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "No results"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Delete the logs - are you sure?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Yes! Delete the logs"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "No! Don't delete the logs"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "Want to keep up to date with changes to Redirection?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Your email address:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "You've supported this plugin - thank you!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "You get useful software and I get to carry on making it better."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Forever"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Delete the plugin - are you sure?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Yes! Delete the plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "No! Don't delete the plugin"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Redirection Support"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Support"
1616
 
1622
  msgid "Log"
1623
  msgstr "Log"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "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."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Delete Redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Upload"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Import"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Update"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Auto-generate URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "RSS Token"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "404 Logs"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(time to keep logs for)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Redirect Logs"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Plugin Support"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Options"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Two months"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "A month"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "A week"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "A day"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "No logs"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Delete All"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Add Group"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Search"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Groups"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Save"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Group"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Match"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Add new redirection"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Cancel"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Download"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Settings"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Error (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Pass-through"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Redirect to random post"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirect to URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Invalid group when creating redirect"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "Source URL"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Date"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Add Redirect"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "All modules"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "View Redirects"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Module"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirects"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Name"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filter"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Reset hits"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Enable"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Disable"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Delete"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Edit"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Last Access"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Hits"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Type"
1863
 
1866
  msgstr "Modified Posts"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirections"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "User Agent"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL and user agent"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "Target URL"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL only"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Referrer"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL and referrer"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Logged Out"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Logged In"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL and login status"
locale/redirection-en_GB.po CHANGED
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr ""
49
 
@@ -52,188 +148,180 @@ msgstr ""
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr ""
285
  msgid "Database problem"
286
  msgstr ""
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr ""
291
 
@@ -293,7 +381,7 @@ msgstr ""
293
  msgid "Please upgrade your database"
294
  msgstr ""
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr ""
299
 
@@ -330,124 +418,124 @@ msgstr ""
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Only the 404 page type is currently supported."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Page Type"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Enter IP addresses (one per line)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Describe the purpose of this redirect (optional)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - I'm a teapot"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Forbidden"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Bad Request"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Not Modified"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - See Other"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Do nothing (ignore)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "Target URL when not matched (empty to ignore)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "Target URL when matched (empty to ignore)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Show All"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Delete all logs for these entries"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Delete all logs for this entry"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Delete Log Entries"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Group by IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Group by URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "No grouping"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignore URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Block IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Redirect All"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Count"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL and WordPress page type"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL and IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problem"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Good"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Check"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Check Redirect"
453
 
@@ -483,83 +571,83 @@ msgstr "Expected"
483
  msgid "Error"
484
  msgstr "Error"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Enter full URL, including http:// or https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Redirect Tester"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Target"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "URL is not being redirected with Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL is being redirected with Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Unable to load details"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Enter server URL to match against"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Server"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Enter role or capability value"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Role"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Match against this browser referrer text"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Match against this browser user agent"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "The relative URL you want to redirect from"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "The target URL you want to redirect to if matched"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Force HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / Privacy information"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Add New"
565
 
@@ -567,11 +655,11 @@ msgstr "Add New"
567
  msgid "Please logout and login again."
568
  msgstr "Please logout and login again."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL and role/capability"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL and server"
577
 
@@ -587,75 +675,75 @@ msgstr "Site and home protocol"
587
  msgid "Site and home are consistent"
588
  msgstr "Site and home are consistent"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Accept Language"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Header value"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Header name"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "HTTP Header"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "WordPress filter name"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Filter Name"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Cookie value"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Cookie name"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "clearing your cache."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL and HTTP header"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL and custom filter"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL and cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 deleted"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "How Redirection uses the REST API - don't change unless necessary"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so
687
  msgid "None of the suggestions helped"
688
  msgstr "None of the suggestions helped"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Unable to load Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "User Agent Error"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Unknown User Agent"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Device"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Operating System"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Browser"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Engine"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "User Agent"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agent"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "No IP logging"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Full IP logging"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonymise IP (mask last part)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitor changes to %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "IP Logging"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(select IP logging level)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Geo Info"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Agent Info"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filter by IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Referrer / User Agent"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Geo IP Error"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Something went wrong obtaining this information"
812
 
@@ -847,12 +935,12 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Bin"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  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"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
858
 
@@ -860,56 +948,56 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  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."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  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!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Never cache"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "An hour"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Redirect Cache"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Are you sure you want to import from %s?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Plugin Importers"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "The following redirect plugins were detected on your site and can be imported from."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Import from %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please upd
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "Default WordPress \"old slugs\""
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Create associated redirect (added to end of URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  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."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Magic fix ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Plugin Status"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Custom"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Mobile"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Feed Readers"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Libraries"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "URL Monitor Changes"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Save changes to this group"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "For example \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "URL Monitor"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Delete 404s"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Delete all from IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Delete all matching \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Delete all matching \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Unable to load Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "The following tables are missing:"
1049
  msgid "All tables present"
1050
  msgstr "All tables present"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Cached Redirection detected"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Please clear your browser cache and reload this page."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Your server returned a 403 Forbidden error which may indicate the reques
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "If you think Redirection is at fault then create an issue."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Loading, please wait..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  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)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "If that doesn't help, open your browser's error console and create a {{l
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Create Issue"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "Email"
1113
  msgid "Important details"
1114
  msgstr "Important details"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Need help?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Gone"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Position"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Apache Module"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Import to group"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Import a CSV, .htaccess, or JSON file."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Click 'Add File' or drag and drop here."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Add File"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "File selected"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importing"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Finished importing"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total redirects imported:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Double-check the file is the correct format!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Close"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "All imports will be appended to the current database."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Export"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Everything"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "WordPress redirects"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Apache redirects"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Nginx redirects"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr "Apache .htaccess"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Nginx rewrite rules"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "Redirection JSON"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "View"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Log files can be exported from the log pages."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Import/Export"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Logs"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "404 errors"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "I'd like to support some more."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Support 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirection saved"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Log deleted"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Settings saved"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Group saved"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Are you sure you want to delete this item?"
1288
  msgstr[1] "Are you sure you want to delete these items?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "pass"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "All groups"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - Moved Permanently"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Found"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Temporary Redirect"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Permanent Redirect"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - Unauthorized"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - Not Found"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Title"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "When matched"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "with HTTP code"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Show advanced options"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Matched Target"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Unmatched Target"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Saving..."
1351
  msgid "View notice"
1352
  msgstr "View notice"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "Invalid source URL"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Invalid redirect action"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Invalid redirect matcher"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "Unable to add new redirect"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Something went wrong 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "I was trying to do a thing and it went wrong. It may be a temporary issu
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Log entries (%d max)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Search by IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Select bulk action"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Bulk Actions"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Apply"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "First page"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Prev page"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Current Page"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "of %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Next page"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Last page"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s item"
1427
  msgstr[1] "%s items"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Select All"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Sorry, something went wrong loading the data - please try again"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "No results"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Delete the logs - are you sure?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Yes! Delete the logs"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "No! Don't delete the logs"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Newsletter"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "Want to keep up to date with changes to Redirection?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Your email address:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "You've supported this plugin - thank you!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "You get useful software and I get to carry on making it better."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Forever"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Delete the plugin - are you sure?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Yes! Delete the plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "No! Don't delete the plugin"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Manage all your 301 redirects and monitor 404 errors"
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Redirection Support"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Support"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Log"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "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."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Delete Redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Upload"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Import"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Update"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Auto-generate URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "RSS Token"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "404 Logs"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(time to keep logs for)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Redirect Logs"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Plugin Support"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Options"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Two months"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "A month"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "A week"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "A day"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "No logs"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Delete All"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Add Group"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Search"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Groups"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Save"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Group"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Match"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Add new redirection"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Cancel"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Download"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Settings"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Error (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Pass-through"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Redirect to random post"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirect to URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Invalid group when creating redirect"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "Source URL"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Date"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Add Redirect"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "All modules"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "View Redirects"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Module"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirects"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Name"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filter"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Reset hits"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Enable"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Disable"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Delete"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Edit"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Last Access"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Hits"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Type"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Modified Posts"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirections"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "User Agent"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL and user agent"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "Target URL"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL only"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Referrer"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL and referrer"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Logged Out"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Logged In"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL and login status"
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr ""
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr ""
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr ""
379
 
381
  msgid "Please upgrade your database"
382
  msgstr ""
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr ""
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Only the 404 page type is currently supported."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Page Type"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Enter IP addresses (one per line)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Describe the purpose of this redirect (optional)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - I'm a teapot"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Forbidden"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Bad Request"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Not Modified"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - See Other"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Do nothing (ignore)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "Target URL when not matched (empty to ignore)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "Target URL when matched (empty to ignore)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Show All"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Delete all logs for these entries"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Delete all logs for this entry"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Delete Log Entries"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Group by IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Group by URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "No grouping"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignore URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Block IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Redirect All"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Count"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL and WordPress page type"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL and IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problem"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Good"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Check"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Check Redirect"
541
 
571
  msgid "Error"
572
  msgstr "Error"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Enter full URL, including http:// or https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Redirect Tester"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Target"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "URL is not being redirected with Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL is being redirected with Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Unable to load details"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Enter server URL to match against"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Server"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Enter role or capability value"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Role"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Match against this browser referrer text"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Match against this browser user agent"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "The relative URL you want to redirect from"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "The target URL you want to redirect to if matched"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Force HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / Privacy information"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Add New"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Please logout and login again."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL and role/capability"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL and server"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Site and home are consistent"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Accept Language"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Header value"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Header name"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "HTTP Header"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "WordPress filter name"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Filter Name"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Cookie value"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Cookie name"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "clearing your cache."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL and HTTP header"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL and custom filter"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL and cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 deleted"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "How Redirection uses the REST API - don't change unless necessary"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "None of the suggestions helped"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Unable to load Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "User Agent Error"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Unknown User Agent"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Device"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Operating System"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Browser"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Engine"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "User Agent"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agent"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "No IP logging"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Full IP logging"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonymise IP (mask last part)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitor changes to %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "IP Logging"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(select IP logging level)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Geo Info"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Agent Info"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filter by IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Referrer / User Agent"
891
 
894
  msgstr "Geo IP Error"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Something went wrong obtaining this information"
900
 
935
  msgid "Trash"
936
  msgstr "Bin"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  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"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  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!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Never cache"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "An hour"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Redirect Cache"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Are you sure you want to import from %s?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Plugin Importers"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "The following redirect plugins were detected on your site and can be imported from."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Import from %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "Default WordPress \"old slugs\""
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Create associated redirect (added to end of URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  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."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Magic fix ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Plugin Status"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Custom"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Mobile"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Feed Readers"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Libraries"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "URL Monitor Changes"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Save changes to this group"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "For example \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "URL Monitor"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Delete 404s"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Delete all from IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Delete all matching \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Unable to load Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "All tables present"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Cached Redirection detected"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Please clear your browser cache and reload this page."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "If you think Redirection is at fault then create an issue."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Loading, please wait..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  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)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Create Issue"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Important details"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Need help?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Gone"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Position"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Apache Module"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Import to group"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Import a CSV, .htaccess, or JSON file."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Click 'Add File' or drag and drop here."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Add File"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "File selected"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importing"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Finished importing"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total redirects imported:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Double-check the file is the correct format!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Close"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "All imports will be appended to the current database."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Export"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Everything"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "WordPress redirects"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Apache redirects"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Nginx redirects"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr "Apache .htaccess"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Nginx rewrite rules"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "Redirection JSON"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "View"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Log files can be exported from the log pages."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Import/Export"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Logs"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "404 errors"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "I'd like to support some more."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Support 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirection saved"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Log deleted"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Settings saved"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Group saved"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Are you sure you want to delete this item?"
1376
  msgstr[1] "Are you sure you want to delete these items?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "pass"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "All groups"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - Moved Permanently"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Found"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Temporary Redirect"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Permanent Redirect"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - Unauthorized"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - Not Found"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Title"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "When matched"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "with HTTP code"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Show advanced options"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Matched Target"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Unmatched Target"
1433
 
1439
  msgid "View notice"
1440
  msgstr "View notice"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "Invalid source URL"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Invalid redirect action"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Invalid redirect matcher"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "Unable to add new redirect"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Something went wrong 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Log entries (%d max)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Search by IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Select bulk action"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Bulk Actions"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Apply"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "First page"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Prev page"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Current Page"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "of %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Next page"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Last page"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s item"
1515
  msgstr[1] "%s items"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Select All"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Sorry, something went wrong loading the data - please try again"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "No results"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Delete the logs - are you sure?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Yes! Delete the logs"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "No! Don't delete the logs"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "Want to keep up to date with changes to Redirection?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Your email address:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "You've supported this plugin - thank you!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "You get useful software and I get to carry on making it better."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Forever"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Delete the plugin - are you sure?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Yes! Delete the plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "No! Don't delete the plugin"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Manage all your 301 redirects and monitor 404 errors"
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Redirection Support"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Support"
1616
 
1622
  msgid "Log"
1623
  msgstr "Log"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "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."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Delete Redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Upload"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Import"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Update"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Auto-generate URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "RSS Token"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "404 Logs"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(time to keep logs for)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Redirect Logs"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Plugin Support"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Options"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Two months"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "A month"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "A week"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "A day"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "No logs"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Delete All"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Add Group"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Search"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Groups"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Save"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Group"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Match"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Add new redirection"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Cancel"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Download"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Settings"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Error (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Pass-through"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Redirect to random post"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirect to URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Invalid group when creating redirect"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "Source URL"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Date"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Add Redirect"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "All modules"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "View Redirects"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Module"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirects"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Name"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filter"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Reset hits"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Enable"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Disable"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Delete"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Edit"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Last Access"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Hits"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Type"
1863
 
1866
  msgstr "Modified Posts"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirections"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "User Agent"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL and user agent"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "Target URL"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL only"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Referrer"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL and referrer"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Logged Out"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Logged In"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL and login status"
locale/redirection-en_NZ.po CHANGED
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr ""
49
 
@@ -52,188 +148,180 @@ msgstr ""
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr ""
285
  msgid "Database problem"
286
  msgstr ""
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr ""
291
 
@@ -293,7 +381,7 @@ msgstr ""
293
  msgid "Please upgrade your database"
294
  msgstr ""
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr ""
299
 
@@ -330,124 +418,124 @@ msgstr ""
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Only the 404 page type is currently supported."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Page Type"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Enter IP addresses (one per line)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Describe the purpose of this redirect (optional)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - I'm a teapot"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Forbidden"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Bad Request"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Not Modified"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - See Other"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Do nothing (ignore)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "Target URL when not matched (empty to ignore)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "Target URL when matched (empty to ignore)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Show All"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Delete all logs for these entries"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Delete all logs for this entry"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Delete Log Entries"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Group by IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Group by URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "No grouping"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignore URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Block IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Redirect All"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Count"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL and WordPress page type"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL and IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problem"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Good"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Check"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Check Redirect"
453
 
@@ -483,83 +571,83 @@ msgstr "Expected"
483
  msgid "Error"
484
  msgstr "Error"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Enter full URL, including http:// or https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Redirect Tester"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Target"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "URL is not being redirected with Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL is being redirected with Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Unable to load details"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Enter server URL to match against"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Server"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Enter role or capability value"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Role"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Match against this browser referrer text"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Match against this browser user agent"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "The relative URL you want to redirect from"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "The target URL you want to redirect to if matched"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Force HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / Privacy information"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Add New"
565
 
@@ -567,11 +655,11 @@ msgstr "Add New"
567
  msgid "Please logout and login again."
568
  msgstr "Please logout and login again."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL and role/capability"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL and server"
577
 
@@ -587,75 +675,75 @@ msgstr "Site and home protocol"
587
  msgid "Site and home are consistent"
588
  msgstr "Site and home are consistent"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Accept Language"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Header value"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Header name"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "HTTP Header"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "WordPress filter name"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Filter Name"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Cookie value"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Cookie name"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "clearing your cache."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL and HTTP header"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL and custom filter"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL and cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 deleted"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "How Redirection uses the REST API - don't change unless necessary"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so
687
  msgid "None of the suggestions helped"
688
  msgstr "None of the suggestions helped"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Unable to load Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "Your WordPress REST API has been disabled. You will need to enable it fo
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Useragent Error"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Unknown Useragent"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Device"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Operating System"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Browser"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Engine"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Useragent"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agent"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "No IP logging"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Full IP logging"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonymise IP (mask last part)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitor changes to %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "IP Logging"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(select IP logging level)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Geo Info"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Agent Info"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filter by IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Referrer / User Agent"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Geo IP Error"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Something went wrong obtaining this information"
812
 
@@ -847,12 +935,12 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Trash"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  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"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
858
 
@@ -860,56 +948,56 @@ msgstr "You can find full documentation about using Redirection on the <a href=\
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  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."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  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!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Never cache"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "An hour"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Redirect Cache"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Are you sure you want to import from %s?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Plugin Importers"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "The following redirect plugins were detected on your site and can be imported from."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Import from %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "Default WordPress \"old slugs\""
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Create associated redirect (added to end of URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  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."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Magic fix ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Plugin Status"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Custom"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Mobile"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Feed Readers"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Libraries"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "URL Monitor Changes"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Save changes to this group"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "For example \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "URL Monitor"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Delete 404s"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Delete all from IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Delete all matching \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Delete all matching \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Unable to load Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "The following tables are missing:"
1049
  msgid "All tables present"
1050
  msgstr "All tables present"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Cached Redirection detected"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Please clear your browser cache and reload this page."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Your server returned a 403 Forbidden error which may indicate the reques
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "If you think Redirection is at fault then create an issue."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Loading, please wait..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  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)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "If that doesn't help, open your browser's error console and create a {{l
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Create Issue"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "Email"
1113
  msgid "Important details"
1114
  msgstr "Important details"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Need help?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Gone"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Position"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Apache Module"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Import to group"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Import a CSV, .htaccess, or JSON file."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Click 'Add File' or drag and drop here."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Add File"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "File selected"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importing"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Finished importing"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total redirects imported:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Double-check the file is the correct format!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Close"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "All imports will be appended to the current database."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Export"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Everything"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "WordPress redirects"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Apache redirects"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Nginx redirects"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr "Apache .htaccess"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Nginx rewrite rules"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "Redirection JSON"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "View"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Log files can be exported from the log pages."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Import/Export"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Logs"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "404 errors"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "I'd like to support some more."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Support 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirection saved"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Log deleted"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Settings saved"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Group saved"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Are you sure you want to delete this item?"
1288
  msgstr[1] "Are you sure you want to delete these items?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "pass"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "All groups"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - Moved Permanently"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Found"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Temporary Redirect"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Permanent Redirect"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - Unauthorised"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - Not Found"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Title"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "When matched"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "with HTTP code"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Show advanced options"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Matched Target"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Unmatched Target"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Saving..."
1351
  msgid "View notice"
1352
  msgstr "View notice"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "Invalid source URL"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Invalid redirect action"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Invalid redirect matcher"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "Unable to add new redirect"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Something went wrong 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "I was trying to do a thing and it went wrong. It may be a temporary issu
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Log entries (%d max)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Search by IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Select bulk action"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Bulk Actions"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Apply"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "First page"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Prev page"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Current Page"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "of %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Next page"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Last page"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s item"
1427
  msgstr[1] "%s items"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Select All"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Sorry, something went wrong loading the data - please try again"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "No results"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Delete the logs - are you sure?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Yes! Delete the logs"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "No! Don't delete the logs"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Newsletter"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "Want to keep up to date with changes to Redirection?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Your email address:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "You've supported this plugin - thank you!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "You get useful software and I get to carry on making it better."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Forever"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Delete the plugin - are you sure?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Yes! Delete the plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "No! Don't delete the plugin"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Redirection Support"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Support"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Log"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "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."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Delete Redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Upload"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Import"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Update"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Auto-generate URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "RSS Token"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "404 Logs"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(time to keep logs for)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Redirect Logs"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Plugin Support"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Options"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Two months"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "A month"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "A week"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "A day"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "No logs"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Delete All"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Add Group"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Search"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Groups"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Save"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Group"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Match"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Add new redirection"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Cancel"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Download"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Settings"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Error (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Pass-through"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Redirect to random post"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirect to URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Invalid group when creating redirect"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "Source URL"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Date"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Add Redirect"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "All modules"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "View Redirects"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Module"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirects"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Name"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filter"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Reset hits"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Enable"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Disable"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Delete"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Edit"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Last Access"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Hits"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Type"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Modified Posts"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirections"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "User Agent"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL and user agent"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "Target URL"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL only"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Referrer"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL and referrer"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Logged Out"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Logged In"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL and login status"
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr ""
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr ""
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr ""
379
 
381
  msgid "Please upgrade your database"
382
  msgstr ""
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr ""
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Only the 404 page type is currently supported."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Page Type"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Enter IP addresses (one per line)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Describe the purpose of this redirect (optional)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - I'm a teapot"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Forbidden"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Bad Request"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Not Modified"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - See Other"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Do nothing (ignore)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "Target URL when not matched (empty to ignore)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "Target URL when matched (empty to ignore)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Show All"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Delete all logs for these entries"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Delete all logs for this entry"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Delete Log Entries"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Group by IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Group by URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "No grouping"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignore URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Block IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Redirect All"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Count"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL and WordPress page type"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL and IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problem"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Good"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Check"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Check Redirect"
541
 
571
  msgid "Error"
572
  msgstr "Error"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Enter full URL, including http:// or https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Redirect Tester"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Target"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "URL is not being redirected with Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL is being redirected with Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Unable to load details"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Enter server URL to match against"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Server"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Enter role or capability value"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Role"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Match against this browser referrer text"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Match against this browser user agent"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "The relative URL you want to redirect from"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "The target URL you want to redirect to if matched"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Force HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / Privacy information"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Add New"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Please logout and login again."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL and role/capability"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL and server"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Site and home are consistent"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Accept Language"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Header value"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Header name"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "HTTP Header"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "WordPress filter name"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Filter Name"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Cookie value"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Cookie name"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "clearing your cache."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL and HTTP header"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL and custom filter"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL and cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 deleted"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "How Redirection uses the REST API - don't change unless necessary"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "None of the suggestions helped"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Unable to load Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Useragent Error"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Unknown Useragent"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Device"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Operating System"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Browser"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Engine"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Useragent"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agent"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "No IP logging"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Full IP logging"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonymise IP (mask last part)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitor changes to %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "IP Logging"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(select IP logging level)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Geo Info"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Agent Info"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filter by IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Referrer / User Agent"
891
 
894
  msgstr "Geo IP Error"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Something went wrong obtaining this information"
900
 
935
  msgid "Trash"
936
  msgstr "Trash"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  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"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  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."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  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!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Never cache"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "An hour"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Redirect Cache"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Are you sure you want to import from %s?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Plugin Importers"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "The following redirect plugins were detected on your site and can be imported from."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Import from %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "Default WordPress \"old slugs\""
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Create associated redirect (added to end of URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  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."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Magic fix ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Plugin Status"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Custom"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Mobile"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Feed Readers"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Libraries"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "URL Monitor Changes"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Save changes to this group"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "For example \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "URL Monitor"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Delete 404s"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Delete all from IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Delete all matching \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Unable to load Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "All tables present"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Cached Redirection detected"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Please clear your browser cache and reload this page."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "If you think Redirection is at fault then create an issue."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Loading, please wait..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  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)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Create Issue"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Important details"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Need help?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Gone"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Position"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Apache Module"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Import to group"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Import a CSV, .htaccess, or JSON file."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Click 'Add File' or drag and drop here."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Add File"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "File selected"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importing"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Finished importing"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total redirects imported:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Double-check the file is the correct format!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Close"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "All imports will be appended to the current database."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Export"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Everything"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "WordPress redirects"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Apache redirects"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Nginx redirects"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr "Apache .htaccess"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Nginx rewrite rules"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "Redirection JSON"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "View"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Log files can be exported from the log pages."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Import/Export"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Logs"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "404 errors"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "I'd like to support some more."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Support 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirection saved"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Log deleted"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Settings saved"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Group saved"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Are you sure you want to delete this item?"
1376
  msgstr[1] "Are you sure you want to delete these items?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "pass"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "All groups"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - Moved Permanently"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Found"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Temporary Redirect"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Permanent Redirect"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - Unauthorised"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - Not Found"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Title"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "When matched"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "with HTTP code"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Show advanced options"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Matched Target"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Unmatched Target"
1433
 
1439
  msgid "View notice"
1440
  msgstr "View notice"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "Invalid source URL"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Invalid redirect action"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Invalid redirect matcher"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "Unable to add new redirect"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Something went wrong 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Log entries (%d max)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Search by IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Select bulk action"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Bulk Actions"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Apply"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "First page"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Prev page"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Current Page"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "of %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Next page"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Last page"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s item"
1515
  msgstr[1] "%s items"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Select All"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Sorry, something went wrong loading the data - please try again"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "No results"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Delete the logs - are you sure?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Yes! Delete the logs"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "No! Don't delete the logs"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "Want to keep up to date with changes to Redirection?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Your email address:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "You've supported this plugin - thank you!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "You get useful software and I get to carry on making it better."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Forever"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Delete the plugin - are you sure?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Yes! Delete the plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "No! Don't delete the plugin"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Redirection Support"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Support"
1616
 
1622
  msgid "Log"
1623
  msgstr "Log"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "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."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Delete Redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Upload"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Import"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Update"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Auto-generate URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "RSS Token"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "404 Logs"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(time to keep logs for)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Redirect Logs"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Plugin Support"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Options"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Two months"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "A month"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "A week"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "A day"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "No logs"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Delete All"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Add Group"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Search"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Groups"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Save"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Group"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Match"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Add new redirection"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Cancel"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Download"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Settings"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Error (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Pass-through"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Redirect to random post"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirect to URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Invalid group when creating redirect"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "Source URL"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Date"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Add Redirect"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "All modules"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "View Redirects"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Module"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirects"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Name"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filter"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Reset hits"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Enable"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Disable"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Delete"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Edit"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Last Access"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Hits"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Type"
1863
 
1866
  msgstr "Modified Posts"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirections"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "User Agent"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL and user agent"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "Target URL"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL only"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Referrer"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL and referrer"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Logged Out"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Logged In"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  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: 2019-02-02 16:32:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr "API REST relativa"
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr "API REST completa"
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr "API REST por defecto"
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
- msgstr "¡Eso es todo - ya estás redireccionando! Observa que lo de arriba es solo un ejemplo - no puedes introducir ahí una redirección."
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr "(Ejemplo) La URL de destino es la nueva URL"
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr "(Ejemplo) La URL de origen es tu URL antigua u original"
37
 
@@ -39,11 +135,11 @@ msgstr "(Ejemplo) La URL de origen es tu URL antigua u original"
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr "¡Desactivado! Detectado PHP %s, necesita PHP 5.4+"
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr "Por favor, haz una copia de seguridad de tus datos de Redirection: {{download}}descargando una copia de seguridad{{/download}}."
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr "Hay una actualización de la base de datos en marcha. Por favor, continua para terminar."
49
 
@@ -52,188 +148,180 @@ msgstr "Hay una actualización de la base de datos en marcha. Por favor, continu
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr "Hay que actualizar la base de datos de Redirection - <a href=\"%1$1s\">haz clic para actualizar</a>."
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr "Tu base de datos actual es la versión %(current)s, la última es %(latest)s. Por favor, actualiza para utilizar las nuevas funciones."
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr "La base de datos de Redirection necesita actualizarse"
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr "Actualización obligatoria"
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr "¡Necesito algo de ayuda!"
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr "Finalizar configuración"
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr "Comprobando tu REST API"
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr "Reintentar"
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr "Tienes diferentes URLs configuradas en tu página ajustes de WordPress > General, lo que normalmente es una indicación de una mala configuración, y puede causar problemas con la API REST. Por favor, revisa tus ajustes."
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr "Si tienes algún problema, por favor consulta la documentación de tu plugin, o intenta contactar con el soporte de tu alojamiento. Esto es normalmente {{{link}}no suele ser un problema causado por Redirection{{/link}}."
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr "Algún otro plugin que bloquea la API REST"
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr "Software de caché, por ejemplo Cloudflare"
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr "Un cortafuegos del servidor u otra configuración del servidor"
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
- msgstr "Un plugin de seguridad"
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr "Redirection utiliza la {{link}}WordPress REST API{{/link}} para comunicarse con WordPress. Esto está activado y funciona de forma predeterminada. A veces la API REST está bloqueada por:"
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr "Volver"
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr "Continuar la configuración"
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr "El almacenamiento de la dirección IP te permite realizar acciones de registro adicionales. Ten en cuenta que tendrás que cumplir con las leyes locales relativas a la recopilación de datos (por ejemplo, RGPD)."
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr "Almacena información IP para redirecciones y errores 404."
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr "Almacena registros de redirecciones y 404s te permitirá ver lo que está pasando en tu sitio. Esto aumentará los requisitos de almacenamiento de la base de datos."
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr "Guarda un registro de todas las redirecciones y errores 404."
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr "{{link}}Leer más sobre esto.{{/link}}"
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr "Si cambias el enlace permanente en una entrada o página, entonces Redirection puede crear automáticamente una redirección para ti."
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr "Supervisar los cambios de los enlaces permanentes en las entradas y páginas de WordPress"
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr "Estas son algunas de las opciones que puedes activar ahora. Se pueden cambiar en cualquier momento."
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr "Configuración básica"
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr "Iniciar configuración"
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr "Cuando estés listo, pulsa el botón para continuar."
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr "Primero se te harán algunas preguntas, y luego Redirection configurará tu base de datos."
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr "¿Cuáles son las novedades?"
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr "Comprueba si una URL está siendo redirigida"
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr "Coincidencia de URLs más potente, incluidas las expresiones {{regular}}regulares {{/regular}}, y {{other}} otras condiciones{{{/other}}."
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr "{{link}}Importar{{/link}} desde .htaccess, CSV, y una gran variedad de otros plugins"
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr "{{link}}Supervisar errores 404{{{/link}}, obtener información detallada sobre el visitante, y solucionar cualquier problema"
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr "Algunas de las características que puedes encontrar útiles son"
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr "La documentación completa la puedes encontrar en la {{link}}web de Redirection{{/link}}."
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr "Una redirección simple implica configurar una {{strong}}URL de origen{{/strong}}} (la URL antigua) y una {{strong}}URL de destino{{/strong}} (la nueva URL). Aquí tienes un ejemplo:"
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr "¿Cómo utilizo este plugin?"
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr "Redirection está diseñado para utilizarse desde sitios con unos pocos redirecciones a sitios con miles de redirecciones."
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr "Gracias por instalar y usar Redirection v%(version)s. Este plugin te permitirá gestionar redirecciones 301, realizar un seguimiento de los errores 404, y mejorar tu sitio, sin necesidad de tener conocimientos de Apache o Nginx."
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr "Bienvenido a Redirection 🚀🎉"
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr "Esto redireccionará todo, incluyendo las páginas de inicio de sesión. Por favor, asegúrate de que quieres hacer esto."
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr "Para evitar una expresión regular ambiciosa, puedes utilizar un {{code}}^{{/code}} para anclarla al inicio de la URL. Por ejemplo: {{code}}%(ejemplo)s{{/code}}."
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr "Recuerda activar la casilla de verificación \"regex\" si se trata de una expresión regular."
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr "La URL de origen probablemente debería comenzar con un {{code}}/{{/code}}."
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr "Esto se convertirá en una redirección de servidor para el dominio {{code}}%(server)s{{{/code}}}."
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr "Los valores de anclaje no se envían al servidor y no pueden ser redirigidos."
239
 
@@ -285,7 +373,7 @@ msgstr "Intentarlo de nuevo"
285
  msgid "Database problem"
286
  msgstr "Problema en la base de datos"
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr "Por favor, activa JavaScript"
291
 
@@ -293,7 +381,7 @@ msgstr "Por favor, activa JavaScript"
293
  msgid "Please upgrade your database"
294
  msgstr "Por favor, actualiza tu base de datos"
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr "Actualizar base de datos"
299
 
@@ -330,124 +418,124 @@ msgstr "Instalar tablas de Redirection"
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr "La URL del sitio y de inicio no son consistentes. Por favor, corrígelo en tu página de Ajustes > Generales: %1$1s no es igual a %2$2s"
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Por favor, no intentes redirigir todos tus 404s - no es una buena idea."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "De momento solo es compatible con el tipo 404 de página de error."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Tipo de página"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Introduce direcciones IP (una por línea)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Describe la finalidad de esta redirección (opcional)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - Soy una tetera"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Prohibido"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Mala petición"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - No modificada"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - Ver otra"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "No hacer nada (ignorar)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "URL de destino cuando no coinciden (vacío para ignorar)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "URL de destino cuando coinciden (vacío para ignorar)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Mostrar todo"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Borrar todos los registros de estas entradas"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Borrar todos los registros de esta entrada"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Borrar entradas del registro"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Agrupar por IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Agrupar por URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "Si agrupar"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignorar URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Bloquear IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Redirigir todo"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Contador"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL y tipo de página de WordPress"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL e IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problema"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Bueno"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Comprobar"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Comprobar la redirección"
453
 
@@ -483,83 +571,83 @@ msgstr "Esperado"
483
  msgid "Error"
484
  msgstr "Error"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Introduce la URL completa, incluyendo http:// o https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "A veces, tu navegador puede almacenar en caché una URL, lo que dificulta saber si está funcionando como se esperaba. Usa esto para verificar una URL para ver cómo está redirigiendo realmente."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Probar redirecciones"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Destino"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "La URL no está siendo redirigida por Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "La URL está siendo redirigida por Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "No se han podido cargar los detalles"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Escribe la URL del servidor que comprobar"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Servidor"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Escribe el valor de perfil o capacidad"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Perfil"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Comparar contra el texto de referencia de este navegador"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Comparar contra el agente usuario de este navegador"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "La URL relativa desde la que quieres redirigir"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "La URL de destino a la que quieres redirigir si coincide"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Forzar HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "Información de RGPD / Provacidad"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Añadir nueva"
565
 
@@ -567,11 +655,11 @@ msgstr "Añadir nueva"
567
  msgid "Please logout and login again."
568
  msgstr "Cierra sesión y vuelve a entrar, por favor."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL y perfil/capacidad"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL y servidor"
577
 
@@ -587,75 +675,75 @@ msgstr "Protocolo de portada y el sitio"
587
  msgid "Site and home are consistent"
588
  msgstr "Portada y sitio son consistentes"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Date cuenta de que es tu responsabilidad pasar las cabeceras HTTP a PHP. Por favor, contacta con tu proveedor de alojamiento para obtener soporte sobre esto."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Aceptar idioma"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Valor de cabecera"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Nombre de cabecera"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "Cabecera HTTP"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "Nombre del filtro WordPress"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Nombre del filtro"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Valor de la cookie"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Nombre de la cookie"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "vaciando tu caché."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL y cabecera HTTP"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL y filtro personalizado"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL y cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 borrado"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Est
687
  msgid "None of the suggestions helped"
688
  msgstr "Ninguna de las sugerencias ha ayudado"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "No se puede cargar Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "La REST API de tu WordPress está desactivada. Necesitarás activarla pa
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Error de agente de usuario"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Agente de usuario desconocido"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Dispositivo"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Sistema operativo"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Navegador"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Motor"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Agente de usuario"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agente"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "Sin registro de IP"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Registro completo de IP"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonimizar IP (enmascarar la última parte)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitorizar cambios de %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "Registro de IP"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(seleccionar el nivel de registro de IP)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Información de geolocalización"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Información de agente"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filtrar por IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Procedencia / Agente de usuario"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Error de geolocalización de IP"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Algo ha ido mal obteniendo esta información"
812
 
@@ -847,12 +935,12 @@ msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Papelera"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection en el sitio de soporte <a href=\"%s\" target=\"_blank\">redirection.me</a>."
858
 
@@ -860,56 +948,56 @@ msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  msgstr "La documentación completa de Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  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!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "No cachear nunca"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "Una hora"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Redireccionar caché"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "¿Estás seguro de querer importar de %s?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Importadores de plugins"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Importar de %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, ac
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "\"Viejos slugs\" por defecto de WordPress"
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  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."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  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."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Arreglo mágico ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Estado del plugin"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Personalizado"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Móvil"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Lectores de feeds"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Bibliotecas"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "Monitorizar el cambio de URL"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Guardar los cambios de este grupo"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "Por ejemplo \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "Supervisar URL"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Borrar 404s"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Borra todo de la IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Borra todo lo que tenga \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Borra todo lo que tenga \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  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é."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "No ha sido posible cargar Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "Faltan las siguientes tablas:"
1049
  msgid "All tables present"
1050
  msgstr "Están presentes todas las tablas"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Detectada caché de Redirection"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Tu servidor devolvió un error de 403 Prohibido, que podría indicar que
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Cargando, por favor espera…"
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  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í)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  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."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "Si eso no ayuda abre la consola de errores de tu navegador y crea un {{l
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Crear aviso de problema"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "Correo electrónico"
1113
  msgid "Important details"
1114
  msgstr "Detalles importantes"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "¿Necesitas ayuda?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  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."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Desaparecido"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Posición"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  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"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Módulo Apache"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Importar a un grupo"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Importa un archivo CSV, .htaccess o JSON."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Añadir archivo"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "Archivo seleccionado"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importando"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Importación finalizada"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total de redirecciones importadas:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "Aceptar"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Cerrar"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Exportar"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Todo"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "Redirecciones WordPress"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Redirecciones Apache"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Redirecciones Nginx"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr ".htaccess de Apache"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Reglas de rewrite de Nginx"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "JSON de Redirection"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "Ver"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Importar/Exportar"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Registros"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "Errores 404"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "Me gustaría dar algo más de apoyo."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Apoyar 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirección guardada"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Registro borrado"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Ajustes guardados"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Grupo guardado"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
1288
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "pass"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "Todos los grupos"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - Movido permanentemente"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Encontrado"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Redirección temporal"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Redirección permanente"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - No autorizado"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - No encontrado"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Título"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "Cuando coincide"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "con el código HTTP"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Mostrar opciones avanzadas"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Objetivo coincidente"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Objetivo no coincidente"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Guardando…"
1351
  msgid "View notice"
1352
  msgstr "Ver aviso"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "URL de origen no válida"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Acción de redirección no válida"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Coincidencia de redirección no válida"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "No ha sido posible añadir la nueva redirección"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Algo fue mal 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un pro
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Entradas del registro (máximo %d)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Buscar por IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Elegir acción en lote"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Acciones en lote"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Aplicar"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "Primera página"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Página anterior"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Página actual"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "de %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Página siguiente"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Última página"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s elemento"
1427
  msgstr[1] "%s elementos"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Elegir todos"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "No hay resultados"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Borrar los registros - ¿estás seguro?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "¡Sí! Borra los registros"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "¡No! No borres los registros"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Boletín"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  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."
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Tu dirección de correo electrónico:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Siempre"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Borrar el plugin - ¿estás seguro?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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. "
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  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."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "¡Sí! Borrar el plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "¡No! No borrar el plugin"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}. "
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Soporte de Redirection"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Soporte"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Registro"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "Seleccionando esta opción borrara todas las redirecciones, todos los registros, y cualquier opción asociada con el plugin Redirection. Asegurese que es esto lo que desea hacer."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Borrar Redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Subir"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Importar"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Actualizar"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Auto generar URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  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)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "Token RSS"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "Registros 404"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(tiempo que se mantendrán los registros)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Registros de redirecciones"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "Soy una buena persona y he apoyado al autor de este plugin"
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Soporte del plugin"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Opciones"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Dos meses"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "Un mes"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "Una semana"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "Un dia"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "No hay logs"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Borrar todo"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Añadir grupo"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Buscar"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Grupos"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Guardar"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Grupo"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Coincidencia"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Añadir nueva redirección"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Cancelar"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Descargar"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Ajustes"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Error (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Pasar directo"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Redirigir a entrada aleatoria"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirigir a URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Grupo no válido a la hora de crear la redirección"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "URL de origen"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Fecha"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Añadir redirección"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "Todos los módulos"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "Ver redirecciones"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Módulo"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirecciones"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Nombre"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filtro"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Restablecer aciertos"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Activar"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Desactivar"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Eliminar"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Editar"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Último acceso"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Hits"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Tipo"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Entradas modificadas"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirecciones"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "Agente usuario HTTP"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL y cliente de usuario (user agent)"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "URL de destino"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "Sólo URL"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Expresión regular"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Referente"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL y referente"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Desconectado"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Conectado"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  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: 2019-02-24 12:19: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: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr "difuminar"
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr "enfocar"
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr "scroll"
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr "Pasar - como ignorar, peo también copia los parámetros de consulta al destino"
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr "Ignorar - como la coincidencia exacta, pero ignora cualquier parámetro de consulta que no esté en tu origen"
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr "Coincidencia exacta - coincide exactamente con los parámetros de consulta definidos en tu origen, en cualquier orden"
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr "Coincidencia de consulta por defecto"
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr "Ignora barras invertidas (p.ej. {{code}}/entrada-alucinante/{{/code}} coincidirá con {{code}}/entrada-alucinante{{/code}})"
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr "Sin coincidencia de mayúsculas/minúsculas (p.ej. {{code}}/Entrada-Alucinante{{/code}} coincidirá con {{code}}/entrada-alucinante{{/code}})"
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr "Se aplica a todas las redirecciones a menos que las configures de otro modo."
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr "Ajustes de URL por defecto"
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr "Ignora y pasa todos los parámetros de consulta"
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr "Ignora todos los parámetros de consulta"
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr "Coincidencia exacta"
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr "Software de caché (p.ej. Cloudflare)"
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr "Un plugin de seguridad (p.ej. Wordfence)"
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr "No hay más opciones"
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr "Opciones de URL"
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr "Parámetros de consulta"
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr "Ignorar y pasar parámetros al destino"
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr "Ignorar todos los parámetros"
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr "Coincidencia exacta de todos los parámetros en cualquier orden"
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr "Ignorar mayúsculas/minúsculas"
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr "Ignorar barra inclinada"
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr "API REST relativa"
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr "API REST completa"
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr "API REST por defecto"
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
+ msgstr "¡Eso es todo - ya estás redireccionando! Observa que lo de arriba es solo un ejemplo - ahora ya introducir una redirección."
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr "(Ejemplo) La URL de destino es la nueva URL"
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr "(Ejemplo) La URL de origen es tu URL antigua u original"
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr "¡Desactivado! Detectado PHP %s, necesita PHP 5.4+"
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr "Por favor, haz una copia de seguridad de tus datos de Redirection: {{download}}descargando una copia de seguridad{{/download}}."
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr "Hay una actualización de la base de datos en marcha. Por favor, continua para terminar."
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr "Hay que actualizar la base de datos de Redirection - <a href=\"%1$1s\">haz clic para actualizar</a>."
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr "Tu base de datos actual es la versión %(current)s, la última es %(latest)s. Por favor, actualiza para utilizar las nuevas funciones."
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr "La base de datos de Redirection necesita actualizarse"
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr "Actualización obligatoria"
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr "¡Necesito algo de ayuda!"
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr "Finalizar configuración"
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr "Comprobando tu REST API"
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr "Reintentar"
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr "Tienes diferentes URLs configuradas en tu página ajustes de WordPress > General, lo que normalmente es una indicación de una mala configuración, y puede causar problemas con la API REST. Por favor, revisa tus ajustes."
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr "Si tienes algún problema, por favor consulta la documentación de tu plugin, o intenta contactar con el soporte de tu alojamiento. Esto es normalmente {{{link}}no suele ser un problema causado por Redirection{{/link}}."
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr "Algún otro plugin que bloquea la API REST"
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
193
+ msgstr "Un cortafuegos del servidor u otra configuración del servidor (p.ej. OVH)"
 
 
 
 
 
 
 
 
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr "Redirection utiliza la {{link}}WordPress REST API{{/link}} para comunicarse con WordPress. Esto está activado y funciona de forma predeterminada. A veces la API REST está bloqueada por:"
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr "Volver"
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr "Continuar la configuración"
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr "El almacenamiento de la dirección IP te permite realizar acciones de registro adicionales. Ten en cuenta que tendrás que cumplir con las leyes locales relativas a la recopilación de datos (por ejemplo, RGPD)."
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr "Almacena información IP para redirecciones y errores 404."
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr "Almacena registros de redirecciones y 404s te permitirá ver lo que está pasando en tu sitio. Esto aumentará los requisitos de almacenamiento de la base de datos."
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr "Guarda un registro de todas las redirecciones y errores 404."
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr "{{link}}Leer más sobre esto.{{/link}}"
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr "Si cambias el enlace permanente en una entrada o página, entonces Redirection puede crear automáticamente una redirección para ti."
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr "Supervisar los cambios de los enlaces permanentes en las entradas y páginas de WordPress"
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr "Estas son algunas de las opciones que puedes activar ahora. Se pueden cambiar en cualquier momento."
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr "Configuración básica"
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr "Iniciar configuración"
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr "Cuando estés listo, pulsa el botón para continuar."
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr "Primero se te harán algunas preguntas, y luego Redirection configurará tu base de datos."
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr "¿Cuáles son las novedades?"
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr "Comprueba si una URL está siendo redirigida"
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr "Coincidencia de URLs más potente, incluidas las expresiones {{regular}}regulares {{/regular}}, y {{other}} otras condiciones{{{/other}}."
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr "{{link}}Importar{{/link}} desde .htaccess, CSV, y una gran variedad de otros plugins"
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr "{{link}}Supervisar errores 404{{{/link}}, obtener información detallada sobre el visitante, y solucionar cualquier problema"
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr "Algunas de las características que puedes encontrar útiles son"
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr "La documentación completa la puedes encontrar en la {{link}}web de Redirection{{/link}}."
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr "Una redirección simple implica configurar una {{strong}}URL de origen{{/strong}}} (la URL antigua) y una {{strong}}URL de destino{{/strong}} (la nueva URL). Aquí tienes un ejemplo:"
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr "¿Cómo utilizo este plugin?"
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr "Redirection está diseñado para utilizarse desde sitios con unos pocos redirecciones a sitios con miles de redirecciones."
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr "Gracias por instalar y usar Redirection v%(version)s. Este plugin te permitirá gestionar redirecciones 301, realizar un seguimiento de los errores 404, y mejorar tu sitio, sin necesidad de tener conocimientos de Apache o Nginx."
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr "Bienvenido a Redirection 🚀🎉"
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr "Esto redireccionará todo, incluyendo las páginas de inicio de sesión. Por favor, asegúrate de que quieres hacer esto."
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr "Para evitar una expresión regular ambiciosa, puedes utilizar un {{code}}^{{/code}} para anclarla al inicio de la URL. Por ejemplo: {{code}}%(ejemplo)s{{/code}}."
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr "Recuerda activar la casilla de verificación \"regex\" si se trata de una expresión regular."
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr "La URL de origen probablemente debería comenzar con un {{code}}/{{/code}}."
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr "Esto se convertirá en una redirección de servidor para el dominio {{code}}%(server)s{{{/code}}}."
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr "Los valores de anclaje no se envían al servidor y no pueden ser redirigidos."
327
 
373
  msgid "Database problem"
374
  msgstr "Problema en la base de datos"
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr "Por favor, activa JavaScript"
379
 
381
  msgid "Please upgrade your database"
382
  msgstr "Por favor, actualiza tu base de datos"
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr "Actualizar base de datos"
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr "La URL del sitio y de inicio no son consistentes. Por favor, corrígelo en tu página de Ajustes > Generales: %1$1s no es igual a %2$2s"
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Por favor, no intentes redirigir todos tus 404s - no es una buena idea."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "De momento solo es compatible con el tipo 404 de página de error."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Tipo de página"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Introduce direcciones IP (una por línea)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Describe la finalidad de esta redirección (opcional)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - Soy una tetera"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Prohibido"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Mala petición"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - No modificada"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - Ver otra"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "No hacer nada (ignorar)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "URL de destino cuando no coinciden (vacío para ignorar)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "URL de destino cuando coinciden (vacío para ignorar)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Mostrar todo"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Borrar todos los registros de estas entradas"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Borrar todos los registros de esta entrada"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Borrar entradas del registro"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Agrupar por IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Agrupar por URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "Si agrupar"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignorar URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Bloquear IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Redirigir todo"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Contador"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL y tipo de página de WordPress"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL e IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problema"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Bueno"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Comprobar"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Comprobar la redirección"
541
 
571
  msgid "Error"
572
  msgstr "Error"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Introduce la URL completa, incluyendo http:// o https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "A veces, tu navegador puede almacenar en caché una URL, lo que dificulta saber si está funcionando como se esperaba. Usa esto para verificar una URL para ver cómo está redirigiendo realmente."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Probar redirecciones"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Destino"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "La URL no está siendo redirigida por Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "La URL está siendo redirigida por Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "No se han podido cargar los detalles"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Escribe la URL del servidor que comprobar"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Servidor"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Escribe el valor de perfil o capacidad"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Perfil"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Comparar contra el texto de referencia de este navegador"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Comparar contra el agente usuario de este navegador"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "La URL relativa desde la que quieres redirigir"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "La URL de destino a la que quieres redirigir si coincide"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Forzar HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "Información de RGPD / Provacidad"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Añadir nueva"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Cierra sesión y vuelve a entrar, por favor."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL y perfil/capacidad"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL y servidor"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Portada y sitio son consistentes"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Date cuenta de que es tu responsabilidad pasar las cabeceras HTTP a PHP. Por favor, contacta con tu proveedor de alojamiento para obtener soporte sobre esto."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Aceptar idioma"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Valor de cabecera"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Nombre de cabecera"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "Cabecera HTTP"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "Nombre del filtro WordPress"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Nombre del filtro"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Valor de la cookie"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Nombre de la cookie"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "vaciando tu caché."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL y cabecera HTTP"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL y filtro personalizado"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL y cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 borrado"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "Ninguna de las sugerencias ha ayudado"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "No se puede cargar Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Error de agente de usuario"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Agente de usuario desconocido"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Dispositivo"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Sistema operativo"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Navegador"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Motor"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Agente de usuario"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agente"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "Sin registro de IP"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Registro completo de IP"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonimizar IP (enmascarar la última parte)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitorizar cambios de %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "Registro de IP"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(seleccionar el nivel de registro de IP)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Información de geolocalización"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Información de agente"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filtrar por IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Procedencia / Agente de usuario"
891
 
894
  msgstr "Error de geolocalización de IP"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Algo ha ido mal obteniendo esta información"
900
 
935
  msgid "Trash"
936
  msgstr "Papelera"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "Puedes encontrar la documentación completa sobre el uso de Redirection en el sitio de soporte <a href=\"%s\" target=\"_blank\">redirection.me</a>."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  msgstr "La documentación completa de Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  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!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "No cachear nunca"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "Una hora"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Redireccionar caché"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "¿Estás seguro de querer importar de %s?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Importadores de plugins"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Importar de %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "\"Viejos slugs\" por defecto de WordPress"
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  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."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  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."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Arreglo mágico ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Estado del plugin"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Personalizado"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Móvil"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Lectores de feeds"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Bibliotecas"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "Monitorizar el cambio de URL"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Guardar los cambios de este grupo"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "Por ejemplo \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "Supervisar URL"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Borrar 404s"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Borra todo de la IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Borra todo lo que tenga \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  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é."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "No ha sido posible cargar Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "Están presentes todas las tablas"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Detectada caché de Redirection"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Cargando, por favor espera…"
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  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í)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  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."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Crear aviso de problema"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Detalles importantes"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "¿Necesitas ayuda?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  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."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Desaparecido"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Posición"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  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"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Módulo Apache"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Importar a un grupo"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Importa un archivo CSV, .htaccess o JSON."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Añadir archivo"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "Archivo seleccionado"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importando"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Importación finalizada"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total de redirecciones importadas:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "Aceptar"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Cerrar"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Exportar"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Todo"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "Redirecciones WordPress"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Redirecciones Apache"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Redirecciones Nginx"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr ".htaccess de Apache"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Reglas de rewrite de Nginx"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "JSON de Redirection"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "Ver"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Importar/Exportar"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Registros"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "Errores 404"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "Me gustaría dar algo más de apoyo."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Apoyar 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirección guardada"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Registro borrado"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Ajustes guardados"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Grupo guardado"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
1376
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "pass"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "Todos los grupos"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - Movido permanentemente"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Encontrado"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Redirección temporal"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Redirección permanente"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - No autorizado"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - No encontrado"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Título"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "Cuando coincide"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "con el código HTTP"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Mostrar opciones avanzadas"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Objetivo coincidente"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Objetivo no coincidente"
1433
 
1439
  msgid "View notice"
1440
  msgstr "Ver aviso"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "URL de origen no válida"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Acción de redirección no válida"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Coincidencia de redirección no válida"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "No ha sido posible añadir la nueva redirección"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Algo fue mal 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Entradas del registro (máximo %d)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Buscar por IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Elegir acción en lote"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Acciones en lote"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Aplicar"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "Primera página"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Página anterior"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Página actual"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "de %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Página siguiente"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Última página"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s elemento"
1515
  msgstr[1] "%s elementos"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Elegir todos"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "No hay resultados"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Borrar los registros - ¿estás seguro?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "¡Sí! Borra los registros"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "¡No! No borres los registros"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Boletín"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  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."
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Tu dirección de correo electrónico:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Siempre"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Borrar el plugin - ¿estás seguro?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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. "
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  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."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "¡Sí! Borrar el plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "¡No! No borrar el plugin"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}. "
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Soporte de Redirection"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Soporte"
1616
 
1622
  msgid "Log"
1623
  msgstr "Registro"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "Seleccionando esta opción borrara todas las redirecciones, todos los registros, y cualquier opción asociada con el plugin Redirection. Asegurese que es esto lo que desea hacer."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Borrar Redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Subir"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Importar"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Actualizar"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Auto generar URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  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)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "Token RSS"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "Registros 404"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(tiempo que se mantendrán los registros)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Registros de redirecciones"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "Soy una buena persona y he apoyado al autor de este plugin"
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Soporte del plugin"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Opciones"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Dos meses"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "Un mes"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "Una semana"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "Un dia"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "No hay logs"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Borrar todo"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Añadir grupo"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Buscar"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Grupos"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Guardar"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Grupo"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Coincidencia"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Añadir nueva redirección"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Cancelar"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Descargar"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Ajustes"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Error (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Pasar directo"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Redirigir a entrada aleatoria"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirigir a URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Grupo no válido a la hora de crear la redirección"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "URL de origen"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Fecha"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Añadir redirección"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "Todos los módulos"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "Ver redirecciones"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Módulo"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirecciones"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Nombre"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filtro"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Restablecer aciertos"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Activar"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Desactivar"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Eliminar"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Editar"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Último acceso"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Hits"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Tipo"
1863
 
1866
  msgstr "Entradas modificadas"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirecciones"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "Agente usuario HTTP"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL y cliente de usuario (user agent)"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "URL de destino"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "Sólo URL"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Expresión regular"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Referente"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL y referente"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Desconectado"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Conectado"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "Estado de URL y conexión"
locale/redirection-fr_FR.po CHANGED
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr ""
49
 
@@ -52,188 +148,180 @@ msgstr ""
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr "Mise à jour nécessaire"
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr "J’ai besoin d’aide !"
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr "Réessayer"
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr ""
285
  msgid "Database problem"
286
  msgstr ""
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr "Veuillez activer JavaScript"
291
 
@@ -293,7 +381,7 @@ msgstr "Veuillez activer JavaScript"
293
  msgid "Please upgrade your database"
294
  msgstr "Veuillez mettre à niveau votre base de données"
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr ""
299
 
@@ -330,124 +418,124 @@ msgstr ""
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr ""
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Veuillez ne pas essayer de rediriger toutes vos 404 - ce n’est pas une bonne chose à faire."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Seul le type de page 404 est actuellement supporté."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Type de page"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Saisissez les adresses IP (une par ligne)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Décrivez le but de cette redirection (facultatif)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - Je suis une théière"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Interdit"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - mauvaise requête"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Non modifié"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - Voir ailleurs"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Ne rien faire (ignorer)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "URL cible si aucune correspondance (laisser vide pour ignorer)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "URL cible si il y a une correspondance (laisser vide pour ignorer)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Tout afficher"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Supprimer les journaux pour ces entrées"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Supprimer les journaux pour cet entrée"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Supprimer les entrées du journal"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Grouper par IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Grouper par URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "Aucun regroupement"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignorer l’URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Bloquer l’IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Tout rediriger"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Compter"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL et type de page WordPress"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL et IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problème"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Bon"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Vérifier"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Vérifier la redirection"
453
 
@@ -483,83 +571,83 @@ msgstr "Attendu"
483
  msgid "Error"
484
  msgstr "Erreur"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Saisissez l’URL complète, avec http:// ou https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "Parfois votre navigateur peut mettre en cache une URL, ce qui rend les diagnostics difficiles. Utilisez cet outil pour vérifier qu’une URL est réellement redirigée."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Testeur de redirection"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Cible"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "L’URL n’est pas redirigée avec Redirection."
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "L’URL est redirigée avec Redirection."
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Impossible de charger les détails"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Saisissez l’URL du serveur à comparer avec"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Serveur"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Saisissez la valeur de rôle ou de capacité"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Rôle"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Correspondance avec ce texte de référence du navigateur"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Correspondance avec cet agent utilisateur de navigateur"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "L’URL relative que vous voulez rediriger"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(bêta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Forcer HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "RGPD/information de confidentialité"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Ajouter une redirection"
565
 
@@ -567,11 +655,11 @@ msgstr "Ajouter une redirection"
567
  msgid "Please logout and login again."
568
  msgstr "Veuillez vous déconnecter puis vous connecter à nouveau."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL et rôle/capacité"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL et serveur"
577
 
@@ -587,75 +675,75 @@ msgstr "Protocole du site et de l’accueil"
587
  msgid "Site and home are consistent"
588
  msgstr "Le site et l’accueil sont cohérents"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Sachez qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour obtenir de l’aide."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Accepter la langue"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Valeur de l’en-tête"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Nom de l’en-tête"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "En-tête HTTP"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "Nom de filtre WordPress"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Nom du filtre"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Valeur du cookie"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Nom du cookie"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "vider votre cache."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL et en-tête HTTP"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL et filtre personnalisé"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL et cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 supprimée"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "API REST"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Veuillez temporairement désactiver les autres extensions !{{/l
687
  msgid "None of the suggestions helped"
688
  msgstr "Aucune de ces suggestions n’a aidé"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Impossible de charger Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "Votre API REST WordPress a été désactivée. Vous devez l’activer po
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Erreur de l’agent utilisateur"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Agent utilisateur inconnu"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Appareil"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Système d’exploitation"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Navigateur"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Moteur"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Agent utilisateur"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agent"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "Aucune IP journalisée"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Connexion avec IP complète"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Anonymiser l’IP (masquer la dernière partie)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitorer les modifications de %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "Journalisation d’IP"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(sélectionnez le niveau de journalisation des IP)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Informations géographiques"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Informations sur l’agent"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filtrer par IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Référent / Agent utilisateur"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Erreur de l’IP géographique"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Un problème est survenu lors de l’obtention de cette information"
812
 
@@ -847,12 +935,12 @@ msgstr "Propulsé par {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Corbeille"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  msgstr "Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "Vous pouvez trouver une documentation complète à propos de l’utilisation de Redirection sur le site de support <a href=\"%s\" target=\"_blank\">redirection.me</a>."
858
 
@@ -860,56 +948,56 @@ msgstr "Vous pouvez trouver une documentation complète à propos de l’utilisa
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  msgstr "La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  msgstr "Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Jamais de cache"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "Une heure"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Cache de redirection"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Confirmez-vous l’importation depuis %s ?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Importeurs d’extensions"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Importer depuis %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuillez mettre à jour votre installation WordPress."
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuille
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "« Anciens slugs » de WordPress par défaut"
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  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."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  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."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Correction magique ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Statut de l’extension"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Personnalisé"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Mobile"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Lecteurs de flux"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Librairies"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "Surveiller la modification des URL"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Enregistrer les modifications apportées à ce groupe"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "Par exemple « /amp »"
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "URL à surveiller"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Supprimer les pages 404"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Tout supprimer depuis l’IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Supprimer toutes les correspondances « %s »"
983
 
@@ -985,15 +1073,15 @@ msgstr "Supprimer toutes les correspondances « %s »"
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  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."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Impossible de charger Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "Les tables suivantes sont manquantes :"
1049
  msgid "All tables present"
1050
  msgstr "Toutes les tables présentes"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Redirection en cache détectée"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Veuillez patienter pendant le chargement…"
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  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."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Créer un rapport"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "E-mail"
1113
  msgid "Important details"
1114
  msgstr "Informations importantes"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Besoin d’aide ?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  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."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 – Gone"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Position"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  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é."
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Module Apache"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Importer dans le groupe"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Ajouter un fichier"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "Fichier sélectionné"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Import"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Import terminé"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total des redirections importées :"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Fermer"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Exporter"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Tout"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "Redirections WordPress"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Redirections Apache"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Redirections Nginx"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr ".htaccess Apache"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Règles de réécriture Nginx"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "Redirection JSON"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "Visualiser"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Import/export"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Journaux"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "Erreurs 404"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "Je voudrais soutenir un peu plus."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Support 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirection sauvegardée"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Journal supprimé"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Réglages sauvegardés"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Groupe sauvegardé"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Confirmez-vous la suppression de cet élément ?"
1288
  msgstr[1] "Confirmez-vous la suppression de ces éléments ?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "Passer"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "Tous les groupes"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - déplacé de façon permanente"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 – trouvé"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 – Redirigé temporairement"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 – Redirigé de façon permanente"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 – Non-autorisé"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 – Introuvable"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Titre"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "Quand cela correspond"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "avec code HTTP"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Afficher les options avancées"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Cible correspondant"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Cible ne correspondant pas"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Sauvegarde…"
1351
  msgid "View notice"
1352
  msgstr "Voir la notification"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "URL source non-valide"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Action de redirection non-valide"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Correspondance de redirection non-valide"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "Incapable de créer une nouvelle redirection"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Quelque chose s’est mal passé 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "J’essayais de faire une chose et ça a mal tourné. C’est peut-être
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Entrées du journal (100 max.)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Rechercher par IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Sélectionner l’action groupée"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Actions groupées"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Appliquer"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "Première page"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Page précédente"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Page courante"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "de %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Page suivante"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Dernière page"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s élément"
1427
  msgstr[1] "%s éléments"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Tout sélectionner"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "Aucun résultat"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Confirmez-vous la suppression des journaux ?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  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."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Oui ! Supprimer les journaux"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "Non ! Ne pas supprimer les journaux"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Newsletter"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr ""
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Votre adresse de messagerie :"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Indéfiniment"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Confirmez-vous la suppression de cette extension ?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  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."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Oui ! Supprimer l’extension"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "Non ! Ne pas supprimer l’extension"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  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}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Support de Redirection"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Support"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404"
1534
  msgid "Log"
1535
  msgstr "Journaux"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "Sélectionner cette option supprimera toutes les redirections, les journaux et toutes les options associées à l&rsquo;extension Redirection. Soyez sûr que c&rsquo;est ce que vous voulez&nbsp;!"
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Supprimer la redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Mettre en ligne"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Importer"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Mettre à jour"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "URL auto-générée "
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  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)."
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "Jeton RSS "
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "Journaux des 404 "
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(durée de conservation des journaux)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Journaux des redirections "
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "Je suis un type bien et j’ai aidé l’auteur de cette extension."
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Support de l’extension "
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Options"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Deux mois"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "Un mois"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "Une semaine"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "Un jour"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "Aucun journal"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Tout supprimer"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  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."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Ajouter un groupe"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Rechercher"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Groupes"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Enregistrer"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Groupe"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Correspondant"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Ajouter une nouvelle redirection"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Annuler"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Télécharger"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Réglages"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Erreur (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Outrepasser"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Rediriger vers un article aléatoire"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirection vers une URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Groupe non valide à la création d’une redirection"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "URL source"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Date"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Ajouter une redirection"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "Tous les modules"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "Voir les redirections"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Module"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirections"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Nom"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filtre"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Réinitialiser les vues"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Activer"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Désactiver"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Supprimer"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Modifier"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Dernier accès"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Vues"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Type"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Articles modifiés"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirections"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "Agent utilisateur"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL et agent utilisateur"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "URL cible"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL uniquement"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Référant"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL et référent"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Déconnecté"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Connecté"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL et état de connexion"
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr ""
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr "Mise à jour nécessaire"
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr "J’ai besoin d’aide !"
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr "Réessayer"
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr ""
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr "Veuillez activer JavaScript"
379
 
381
  msgid "Please upgrade your database"
382
  msgstr "Veuillez mettre à niveau votre base de données"
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr ""
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr ""
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Veuillez ne pas essayer de rediriger toutes vos 404 - ce n’est pas une bonne chose à faire."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Seul le type de page 404 est actuellement supporté."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Type de page"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Saisissez les adresses IP (une par ligne)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Décrivez le but de cette redirection (facultatif)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - Je suis une théière"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Interdit"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - mauvaise requête"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Non modifié"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - Voir ailleurs"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Ne rien faire (ignorer)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "URL cible si aucune correspondance (laisser vide pour ignorer)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "URL cible si il y a une correspondance (laisser vide pour ignorer)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Tout afficher"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Supprimer les journaux pour ces entrées"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Supprimer les journaux pour cet entrée"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Supprimer les entrées du journal"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Grouper par IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Grouper par URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "Aucun regroupement"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignorer l’URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Bloquer l’IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Tout rediriger"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Compter"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL et type de page WordPress"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL et IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problème"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Bon"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Vérifier"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Vérifier la redirection"
541
 
571
  msgid "Error"
572
  msgstr "Erreur"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Saisissez l’URL complète, avec http:// ou https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "Parfois votre navigateur peut mettre en cache une URL, ce qui rend les diagnostics difficiles. Utilisez cet outil pour vérifier qu’une URL est réellement redirigée."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Testeur de redirection"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Cible"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "L’URL n’est pas redirigée avec Redirection."
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "L’URL est redirigée avec Redirection."
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Impossible de charger les détails"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Saisissez l’URL du serveur à comparer avec"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Serveur"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Saisissez la valeur de rôle ou de capacité"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Rôle"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Correspondance avec ce texte de référence du navigateur"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Correspondance avec cet agent utilisateur de navigateur"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "L’URL relative que vous voulez rediriger"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(bêta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Forcer HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "RGPD/information de confidentialité"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Ajouter une redirection"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Veuillez vous déconnecter puis vous connecter à nouveau."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL et rôle/capacité"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL et serveur"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Le site et l’accueil sont cohérents"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Sachez qu’il est de votre responsabilité de passer les en-têtes HTTP en PHP. Veuillez contacter votre hébergeur pour obtenir de l’aide."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Accepter la langue"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Valeur de l’en-tête"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Nom de l’en-tête"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "En-tête HTTP"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "Nom de filtre WordPress"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Nom du filtre"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Valeur du cookie"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Nom du cookie"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "vider votre cache."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL et en-tête HTTP"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL et filtre personnalisé"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL et cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 supprimée"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "API REST"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "Aucune de ces suggestions n’a aidé"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Impossible de charger Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Erreur de l’agent utilisateur"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Agent utilisateur inconnu"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Appareil"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Système d’exploitation"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Navigateur"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Moteur"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Agent utilisateur"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agent"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "Aucune IP journalisée"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Connexion avec IP complète"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Anonymiser l’IP (masquer la dernière partie)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitorer les modifications de %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "Journalisation d’IP"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(sélectionnez le niveau de journalisation des IP)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Informations géographiques"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Informations sur l’agent"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filtrer par IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Référent / Agent utilisateur"
891
 
894
  msgstr "Erreur de l’IP géographique"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Un problème est survenu lors de l’obtention de cette information"
900
 
935
  msgid "Trash"
936
  msgstr "Corbeille"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  msgstr "Veuillez noter que Redirection utilise l’API REST de WordPress. Si vous l’avez désactivée, vous ne serez pas en mesure d’utiliser Redirection."
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "Vous pouvez trouver une documentation complète à propos de l’utilisation de Redirection sur le site de support <a href=\"%s\" target=\"_blank\">redirection.me</a>."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  msgstr "La documentation complète de Redirection est disponible sur {{site}}https://redirection.me{{/site}}. En cas de problème, veuillez d’abord consulter la {{faq}}FAQ{{/faq}}."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  msgstr "Si vous souhaitez soumettre des informations que vous ne voulez pas divulguer dans un dépôt public, envoyez-les directement via {{email}}e-mail{{/ email}} - en incluant autant d’informations que possible !"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Jamais de cache"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "Une heure"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Cache de redirection"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Confirmez-vous l’importation depuis %s ?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Importeurs d’extensions"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Importer depuis %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuillez mettre à jour votre installation WordPress."
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "« Anciens slugs » de WordPress par défaut"
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  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."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  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."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Correction magique ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Statut de l’extension"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Personnalisé"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Mobile"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Lecteurs de flux"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Librairies"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "Surveiller la modification des URL"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Enregistrer les modifications apportées à ce groupe"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "Par exemple « /amp »"
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "URL à surveiller"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Supprimer les pages 404"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Tout supprimer depuis l’IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Supprimer toutes les correspondances « %s »"
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  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."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Impossible de charger Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "Toutes les tables présentes"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Redirection en cache détectée"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Veuillez patienter pendant le chargement…"
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  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."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Créer un rapport"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Informations importantes"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Besoin d’aide ?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  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."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 – Gone"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Position"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  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é."
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Module Apache"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Importer dans le groupe"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Ajouter un fichier"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "Fichier sélectionné"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Import"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Import terminé"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total des redirections importées :"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Fermer"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Exporter"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Tout"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "Redirections WordPress"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Redirections Apache"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Redirections Nginx"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr ".htaccess Apache"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Règles de réécriture Nginx"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "Redirection JSON"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "Visualiser"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Import/export"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Journaux"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "Erreurs 404"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "Je voudrais soutenir un peu plus."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Support 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirection sauvegardée"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Journal supprimé"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Réglages sauvegardés"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Groupe sauvegardé"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Confirmez-vous la suppression de cet élément ?"
1376
  msgstr[1] "Confirmez-vous la suppression de ces éléments ?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "Passer"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "Tous les groupes"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - déplacé de façon permanente"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 – trouvé"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 – Redirigé temporairement"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 – Redirigé de façon permanente"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 – Non-autorisé"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 – Introuvable"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Titre"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "Quand cela correspond"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "avec code HTTP"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Afficher les options avancées"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Cible correspondant"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Cible ne correspondant pas"
1433
 
1439
  msgid "View notice"
1440
  msgstr "Voir la notification"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "URL source non-valide"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Action de redirection non-valide"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Correspondance de redirection non-valide"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "Incapable de créer une nouvelle redirection"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Quelque chose s’est mal passé 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Entrées du journal (100 max.)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Rechercher par IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Sélectionner l’action groupée"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Actions groupées"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Appliquer"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "Première page"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Page précédente"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Page courante"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "de %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Page suivante"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Dernière page"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s élément"
1515
  msgstr[1] "%s éléments"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Tout sélectionner"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "Aucun résultat"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Confirmez-vous la suppression des journaux ?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  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."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Oui ! Supprimer les journaux"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "Non ! Ne pas supprimer les journaux"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr ""
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Votre adresse de messagerie :"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Indéfiniment"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Confirmez-vous la suppression de cette extension ?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  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."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Oui ! Supprimer l’extension"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "Non ! Ne pas supprimer l’extension"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  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}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Support de Redirection"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Support"
1616
 
1622
  msgid "Log"
1623
  msgstr "Journaux"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "Sélectionner cette option supprimera toutes les redirections, les journaux et toutes les options associées à l&rsquo;extension Redirection. Soyez sûr que c&rsquo;est ce que vous voulez&nbsp;!"
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Supprimer la redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Mettre en ligne"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Importer"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Mettre à jour"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "URL auto-générée "
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  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)."
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "Jeton RSS "
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "Journaux des 404 "
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(durée de conservation des journaux)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Journaux des redirections "
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "Je suis un type bien et j’ai aidé l’auteur de cette extension."
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Support de l’extension "
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Options"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Deux mois"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "Un mois"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "Une semaine"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "Un jour"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "Aucun journal"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Tout supprimer"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  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."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Ajouter un groupe"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Rechercher"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Groupes"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Enregistrer"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Groupe"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Correspondant"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Ajouter une nouvelle redirection"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Annuler"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Télécharger"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Réglages"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Erreur (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Outrepasser"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Rediriger vers un article aléatoire"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirection vers une URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Groupe non valide à la création d’une redirection"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "URL source"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Date"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Ajouter une redirection"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "Tous les modules"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "Voir les redirections"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Module"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirections"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Nom"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filtre"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Réinitialiser les vues"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Activer"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Désactiver"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Supprimer"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Modifier"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Dernier accès"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Vues"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Type"
1863
 
1866
  msgstr "Articles modifiés"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirections"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "Agent utilisateur"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL et agent utilisateur"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "URL cible"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL uniquement"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Référant"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL et référent"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Déconnecté"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Connecté"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL et état de connexion"
locale/redirection-ja.po CHANGED
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr ""
49
 
@@ -52,188 +148,180 @@ msgstr ""
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr ""
285
  msgid "Database problem"
286
  msgstr ""
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr ""
291
 
@@ -293,7 +381,7 @@ msgstr ""
293
  msgid "Please upgrade your database"
294
  msgstr ""
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr ""
299
 
@@ -330,124 +418,124 @@ msgstr ""
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr ""
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr ""
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr ""
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr ""
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr ""
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr ""
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr ""
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr ""
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr ""
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr ""
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr ""
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr ""
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr ""
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr ""
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr ""
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr ""
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr ""
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr ""
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr ""
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr ""
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr ""
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr ""
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr ""
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr ""
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr ""
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr ""
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr ""
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr ""
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr ""
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr ""
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr ""
453
 
@@ -483,83 +571,83 @@ msgstr ""
483
  msgid "Error"
484
  msgstr "エラー"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "http:// や https:// を含めた完全な URL を入力してください"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "リダイレクトテスター"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "ターゲット"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "URL は Redirection によってリダイレクトされません"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL は Redirection によってリダイレクトされます"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "詳細のロードに失敗しました"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "一致するサーバーの URL を入力"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "サーバー"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "権限グループまたは権限の値を入力"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "権限グループ"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "このブラウザーリファラーテキストと一致"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "このブラウザーユーザーエージェントに一致"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "リダイレクト元となる相対 URL"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "一致した場合にリダイレクトさせたいターゲット URL"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(ベータ)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "強制 HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / 個人情報"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "新規追加"
565
 
@@ -567,11 +655,11 @@ msgstr "新規追加"
567
  msgid "Please logout and login again."
568
  msgstr "再度ログインし直してください。"
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL と権限グループ / 権限"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL とサーバー"
577
 
@@ -587,75 +675,75 @@ msgstr "サイト URL とホーム URL のプロトコル"
587
  msgid "Site and home are consistent"
588
  msgstr "サイト URL とホーム URL は一致しています"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Accept Language"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "ヘッダー値"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "ヘッダー名"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "HTTP ヘッダー"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "WordPress フィルター名"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "フィルター名"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Cookie 値"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Cookie 名"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "キャッシュを削除"
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL と HTTP ヘッダー"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL とカスタムフィルター"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL と Cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 deleted"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}一時的に他のプラグインを無効化してください
687
  msgid "None of the suggestions helped"
688
  msgstr "これらの提案では解決しませんでした"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Redirection のロードに失敗しました☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "サイト上の WordPress REST API は無効化されています。Redi
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "ユーザーエージェントエラー"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "不明なユーザーエージェント"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "デバイス"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "オペレーティングシステム"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "ブラウザー"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "エンジン"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "ユーザーエージェント"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "エージェント"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "IP ロギングなし"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "フル IP ロギング"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "匿名 IP (最後の部分をマスクする)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "%(type)sの変更を監視"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "IP ロギング"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(IP のログレベルを選択)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "位置情報"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "エージェントの情報"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "IP でフィルター"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "リファラー / User Agent"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "位置情報エラー"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "この情報の取得中に問題が発生しました。"
812
 
@@ -847,12 +935,12 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "ゴミ箱"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  msgstr "Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"
858
 
@@ -860,56 +948,56 @@ msgstr "Redirection プラグインの詳しい使い方については <a href=
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  msgstr "Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  msgstr "公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "キャッシュしない"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "1時間"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "リダイレクトキャッシュ"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "本当に %s からインポートしますか ?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "インポートプラグイン"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "全数 ="
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "%s からインポート"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr ""
915
 
@@ -917,67 +1005,67 @@ msgstr ""
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "初期設定の WordPress \"old slugs\""
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr ""
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr ""
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️マジック修正⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "プラグインステータス"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "カスタム"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "モバイル"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "フィード読者"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "ライブラリ"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "変更を監視する URL"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "このグループへの変更を保存"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "例: \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "URL モニター"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "404を削除"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "すべての IP %s からのものを削除"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "すべての \"%s\" に一致するものを削除"
983
 
@@ -985,15 +1073,15 @@ msgstr "すべての \"%s\" に一致するものを削除"
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Redirection のロードに失敗しました"
999
 
@@ -1049,11 +1137,11 @@ msgstr "次のテーブルが不足しています:"
1049
  msgid "All tables present"
1050
  msgstr "すべてのテーブルが存在しています"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "キャッシュされた Redirection が検知されました"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
1059
 
@@ -1073,27 +1161,27 @@ msgstr "サーバーが 403 (閲覧禁止) エラーを返しました。これ
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr ""
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "ロード中です。お待ち下さい…"
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr ""
1099
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
@@ -1103,7 +1191,7 @@ msgstr ""
1103
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1104
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
1105
 
1106
- #: redirection-admin.php:405 redirection-strings.php:33
1107
  msgid "Create Issue"
1108
  msgstr "Issue を作成"
1109
 
@@ -1115,232 +1203,232 @@ msgstr "メール"
1115
  msgid "Important details"
1116
  msgstr "重要な詳細"
1117
 
1118
- #: redirection-strings.php:444
1119
  msgid "Need help?"
1120
  msgstr "ヘルプが必要ですか?"
1121
 
1122
- #: redirection-strings.php:447
1123
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1124
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
1125
 
1126
- #: redirection-strings.php:428
1127
  msgid "Pos"
1128
  msgstr "Pos"
1129
 
1130
- #: redirection-strings.php:108
1131
  msgid "410 - Gone"
1132
  msgstr "410 - 消滅"
1133
 
1134
- #: redirection-strings.php:116
1135
  msgid "Position"
1136
  msgstr "配置"
1137
 
1138
- #: redirection-strings.php:415
1139
  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"
1140
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
1141
 
1142
- #: redirection-strings.php:416
1143
  msgid "Apache Module"
1144
  msgstr "Apache モジュール"
1145
 
1146
- #: redirection-strings.php:417
1147
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1148
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
1149
 
1150
- #: redirection-strings.php:280
1151
  msgid "Import to group"
1152
  msgstr "グループにインポート"
1153
 
1154
- #: redirection-strings.php:281
1155
  msgid "Import a CSV, .htaccess, or JSON file."
1156
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
1157
 
1158
- #: redirection-strings.php:282
1159
  msgid "Click 'Add File' or drag and drop here."
1160
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
1161
 
1162
- #: redirection-strings.php:283
1163
  msgid "Add File"
1164
  msgstr "ファイルを追加"
1165
 
1166
- #: redirection-strings.php:284
1167
  msgid "File selected"
1168
  msgstr "選択されたファイル"
1169
 
1170
- #: redirection-strings.php:287
1171
  msgid "Importing"
1172
  msgstr "インポート中"
1173
 
1174
- #: redirection-strings.php:288
1175
  msgid "Finished importing"
1176
  msgstr "インポートが完了しました"
1177
 
1178
- #: redirection-strings.php:289
1179
  msgid "Total redirects imported:"
1180
  msgstr "インポートされたリダイレクト数: "
1181
 
1182
- #: redirection-strings.php:290
1183
  msgid "Double-check the file is the correct format!"
1184
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
1185
 
1186
- #: redirection-strings.php:291
1187
  msgid "OK"
1188
  msgstr "OK"
1189
 
1190
- #: redirection-strings.php:122 redirection-strings.php:292
1191
  msgid "Close"
1192
  msgstr "閉じる"
1193
 
1194
- #: redirection-strings.php:297
1195
  msgid "All imports will be appended to the current database."
1196
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
1197
 
1198
- #: redirection-strings.php:299 redirection-strings.php:319
1199
  msgid "Export"
1200
  msgstr "エクスポート"
1201
 
1202
- #: redirection-strings.php:300
1203
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1204
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
1205
 
1206
- #: redirection-strings.php:301
1207
  msgid "Everything"
1208
  msgstr "すべて"
1209
 
1210
- #: redirection-strings.php:302
1211
  msgid "WordPress redirects"
1212
  msgstr "WordPress リダイレクト"
1213
 
1214
- #: redirection-strings.php:303
1215
  msgid "Apache redirects"
1216
  msgstr "Apache リダイレクト"
1217
 
1218
- #: redirection-strings.php:304
1219
  msgid "Nginx redirects"
1220
  msgstr "Nginx リダイレクト"
1221
 
1222
- #: redirection-strings.php:305
1223
  msgid "CSV"
1224
  msgstr "CSV"
1225
 
1226
- #: redirection-strings.php:306
1227
  msgid "Apache .htaccess"
1228
  msgstr "Apache .htaccess"
1229
 
1230
- #: redirection-strings.php:307
1231
  msgid "Nginx rewrite rules"
1232
  msgstr "Nginx のリライトルール"
1233
 
1234
- #: redirection-strings.php:308
1235
  msgid "Redirection JSON"
1236
  msgstr "Redirection JSON"
1237
 
1238
- #: redirection-strings.php:309
1239
  msgid "View"
1240
  msgstr "表示"
1241
 
1242
- #: redirection-strings.php:311
1243
  msgid "Log files can be exported from the log pages."
1244
  msgstr "ログファイルはログページにてエクスポート出来ます。"
1245
 
1246
- #: redirection-strings.php:63 redirection-strings.php:263
1247
  msgid "Import/Export"
1248
  msgstr "インポート / エクスポート"
1249
 
1250
- #: redirection-strings.php:264
1251
  msgid "Logs"
1252
  msgstr "ログ"
1253
 
1254
- #: redirection-strings.php:265
1255
  msgid "404 errors"
1256
  msgstr "404 エラー"
1257
 
1258
- #: redirection-strings.php:276
1259
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1260
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
1261
 
1262
- #: redirection-strings.php:376
1263
  msgid "I'd like to support some more."
1264
  msgstr "もっとサポートがしたいです。"
1265
 
1266
- #: redirection-strings.php:379
1267
  msgid "Support 💰"
1268
  msgstr "サポート💰"
1269
 
1270
- #: redirection-strings.php:470
1271
  msgid "Redirection saved"
1272
  msgstr "リダイレクトが保存されました"
1273
 
1274
- #: redirection-strings.php:471
1275
  msgid "Log deleted"
1276
  msgstr "ログが削除されました"
1277
 
1278
- #: redirection-strings.php:472
1279
  msgid "Settings saved"
1280
  msgstr "設定が保存されました"
1281
 
1282
- #: redirection-strings.php:473
1283
  msgid "Group saved"
1284
  msgstr "グループが保存されました"
1285
 
1286
- #: redirection-strings.php:235
1287
  msgid "Are you sure you want to delete this item?"
1288
  msgid_plural "Are you sure you want to delete these items?"
1289
  msgstr[0] "本当に削除してもよろしいですか?"
1290
 
1291
- #: redirection-strings.php:443
1292
  msgid "pass"
1293
  msgstr "パス"
1294
 
1295
- #: redirection-strings.php:435
1296
  msgid "All groups"
1297
  msgstr "すべてのグループ"
1298
 
1299
- #: redirection-strings.php:98
1300
  msgid "301 - Moved Permanently"
1301
  msgstr "301 - 恒久的に移動"
1302
 
1303
- #: redirection-strings.php:99
1304
  msgid "302 - Found"
1305
  msgstr "302 - 発見"
1306
 
1307
- #: redirection-strings.php:102
1308
  msgid "307 - Temporary Redirect"
1309
  msgstr "307 - 一時リダイレクト"
1310
 
1311
- #: redirection-strings.php:103
1312
  msgid "308 - Permanent Redirect"
1313
  msgstr "308 - 恒久リダイレクト"
1314
 
1315
- #: redirection-strings.php:105
1316
  msgid "401 - Unauthorized"
1317
  msgstr "401 - 認証が必要"
1318
 
1319
- #: redirection-strings.php:107
1320
  msgid "404 - Not Found"
1321
  msgstr "404 - 未検出"
1322
 
1323
- #: redirection-strings.php:110
1324
  msgid "Title"
1325
  msgstr "タイトル"
1326
 
1327
- #: redirection-strings.php:113
1328
  msgid "When matched"
1329
  msgstr "マッチした時"
1330
 
1331
- #: redirection-strings.php:114
1332
  msgid "with HTTP code"
1333
  msgstr "次の HTTP コードと共に"
1334
 
1335
- #: redirection-strings.php:123
1336
  msgid "Show advanced options"
1337
  msgstr "高度な設定を表示"
1338
 
1339
- #: redirection-strings.php:76
1340
  msgid "Matched Target"
1341
  msgstr "見つかったターゲット"
1342
 
1343
- #: redirection-strings.php:78
1344
  msgid "Unmatched Target"
1345
  msgstr "ターゲットが見つかりません"
1346
 
@@ -1352,23 +1440,23 @@ msgstr "保存中…"
1352
  msgid "View notice"
1353
  msgstr "通知を見る"
1354
 
1355
- #: models/redirect.php:563
1356
  msgid "Invalid source URL"
1357
  msgstr "不正な元 URL"
1358
 
1359
- #: models/redirect.php:491
1360
  msgid "Invalid redirect action"
1361
  msgstr "不正なリダイレクトアクション"
1362
 
1363
- #: models/redirect.php:485
1364
  msgid "Invalid redirect matcher"
1365
  msgstr "不正なリダイレクトマッチャー"
1366
 
1367
- #: models/redirect.php:195
1368
  msgid "Unable to add new redirect"
1369
  msgstr "新しいリダイレクトの追加に失敗しました"
1370
 
1371
- #: redirection-strings.php:23 redirection-strings.php:272
1372
  msgid "Something went wrong 🙁"
1373
  msgstr "問題が発生しました"
1374
 
@@ -1381,128 +1469,128 @@ msgstr "何かをしようとして問題が発生しました。 それは一
1381
  msgid "Log entries (%d max)"
1382
  msgstr "ログ (最大 %d)"
1383
 
1384
- #: redirection-strings.php:177
1385
  msgid "Search by IP"
1386
  msgstr "IP による検索"
1387
 
1388
- #: redirection-strings.php:172
1389
  msgid "Select bulk action"
1390
  msgstr "一括操作を選択"
1391
 
1392
- #: redirection-strings.php:173
1393
  msgid "Bulk Actions"
1394
  msgstr "一括操作"
1395
 
1396
- #: redirection-strings.php:174
1397
  msgid "Apply"
1398
  msgstr "適応"
1399
 
1400
- #: redirection-strings.php:165
1401
  msgid "First page"
1402
  msgstr "最初のページ"
1403
 
1404
- #: redirection-strings.php:166
1405
  msgid "Prev page"
1406
  msgstr "前のページ"
1407
 
1408
- #: redirection-strings.php:167
1409
  msgid "Current Page"
1410
  msgstr "現在のページ"
1411
 
1412
- #: redirection-strings.php:168
1413
  msgid "of %(page)s"
1414
  msgstr "%(page)s"
1415
 
1416
- #: redirection-strings.php:169
1417
  msgid "Next page"
1418
  msgstr "次のページ"
1419
 
1420
- #: redirection-strings.php:170
1421
  msgid "Last page"
1422
  msgstr "最後のページ"
1423
 
1424
- #: redirection-strings.php:171
1425
  msgid "%s item"
1426
  msgid_plural "%s items"
1427
  msgstr[0] "%s 個のアイテム"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "すべて選択"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "結果なし"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "本当にログを消去しますか ?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "ログを消去する"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "ログを消去しない"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "ニュースレター"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr ""
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "メールアドレス: "
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "永久に"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "本当にプラグインを削除しますか ?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "プラグインを消去する"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "プラグインを消去しない"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Redirection を応援する"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "サポート"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404 エラー"
1534
  msgid "Log"
1535
  msgstr "ログ"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "転送ルールを削除"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "アップロード"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "インポート"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "更新"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "URL を自動生成 "
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "RSS トークン"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "404 ログ"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(ログの保存期間)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "転送ログ"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "このプラグインの作者に対する援助を行いました"
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "プラグインサポート"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "設定"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "2ヶ月"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "1ヶ月"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "1週間"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "1日"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "ログなし"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "すべてを削除"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "グループを追加"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "検索"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "グループ"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "保存"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "グループ"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "一致条件"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "新しい転送ルールを追加"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "キャンセル"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "ダウンロード"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "設定"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "エラー (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "通過"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "ランダムな記事へ転送"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "URL へ転送"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "ソース URL"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "日付"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "転送ルールを追加"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "すべてのモジュール"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "転送ルールを表示"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "モジュール"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "転送ルール"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "名称"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "フィルター"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "訪問数をリセット"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "有効化"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "無効化"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "削除"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "編集"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "前回のアクセス"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "ヒット数"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "タイプ"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "編集済みの投稿"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "転送ルール"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "ユーザーエージェント"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL およびユーザーエージェント"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "ターゲット URL"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL のみ"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "正規表現"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "リファラー"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL およびリファラー"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "ログアウト中"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "ログイン中"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL およびログイン状態"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr ""
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr ""
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr ""
379
 
381
  msgid "Please upgrade your database"
382
  msgstr ""
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr ""
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr ""
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr ""
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr ""
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr ""
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr ""
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr ""
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr ""
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr ""
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr ""
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr ""
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr ""
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr ""
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr ""
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr ""
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr ""
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr ""
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr ""
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr ""
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr ""
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr ""
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr ""
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr ""
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr ""
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr ""
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr ""
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr ""
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr ""
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr ""
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr ""
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr ""
541
 
571
  msgid "Error"
572
  msgstr "エラー"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "http:// や https:// を含めた完全な URL を入力してください"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "リダイレクトテスター"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "ターゲット"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "URL は Redirection によってリダイレクトされません"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL は Redirection によってリダイレクトされます"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "詳細のロードに失敗しました"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "一致するサーバーの URL を入力"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "サーバー"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "権限グループまたは権限の値を入力"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "権限グループ"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "このブラウザーリファラーテキストと一致"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "このブラウザーユーザーエージェントに一致"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "リダイレクト元となる相対 URL"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "一致した場合にリダイレクトさせたいターゲット URL"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(ベータ)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "強制 HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / 個人情報"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "新規追加"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "再度ログインし直してください。"
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL と権限グループ / 権限"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL とサーバー"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "サイト URL とホーム URL は一致しています"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Accept Language"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "ヘッダー値"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "ヘッダー名"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "HTTP ヘッダー"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "WordPress フィルター名"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "フィルター名"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Cookie 値"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Cookie 名"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "キャッシュを削除"
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL と HTTP ヘッダー"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL とカスタムフィルター"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL と Cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 deleted"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "これらの提案では解決しませんでした"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Redirection のロードに失敗しました☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "ユーザーエージェントエラー"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "不明なユーザーエージェント"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "デバイス"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "オペレーティングシステム"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "ブラウザー"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "エンジン"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "ユーザーエージェント"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "エージェント"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "IP ロギングなし"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "フル IP ロギング"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "匿名 IP (最後の部分をマスクする)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "%(type)sの変更を監視"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "IP ロギング"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(IP のログレベルを選択)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "位置情報"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "エージェントの情報"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "IP でフィルター"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "リファラー / User Agent"
891
 
894
  msgstr "位置情報エラー"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "この情報の取得中に問題が発生しました。"
900
 
935
  msgid "Trash"
936
  msgstr "ゴミ箱"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  msgstr "Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  msgstr "Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  msgstr "公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "キャッシュしない"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "1時間"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "リダイレクトキャッシュ"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "本当に %s からインポートしますか ?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "インポートプラグイン"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "全数 ="
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "%s からインポート"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr ""
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "初期設定の WordPress \"old slugs\""
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr ""
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr ""
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️マジック修正⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "プラグインステータス"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "カスタム"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "モバイル"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "フィード読者"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "ライブラリ"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "変更を監視する URL"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "このグループへの変更を保存"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "例: \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "URL モニター"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "404を削除"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "すべての IP %s からのものを削除"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "すべての \"%s\" に一致するものを削除"
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Redirection のロードに失敗しました"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "すべてのテーブルが存在しています"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "キャッシュされた Redirection が検知されました"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr ""
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "ロード中です。お待ち下さい…"
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr ""
1187
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
1191
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1192
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
1193
 
1194
+ #: redirection-admin.php:403 redirection-strings.php:33
1195
  msgid "Create Issue"
1196
  msgstr "Issue を作成"
1197
 
1203
  msgid "Important details"
1204
  msgstr "重要な詳細"
1205
 
1206
+ #: redirection-strings.php:463
1207
  msgid "Need help?"
1208
  msgstr "ヘルプが必要ですか?"
1209
 
1210
+ #: redirection-strings.php:466
1211
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1212
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
1213
 
1214
+ #: redirection-strings.php:447
1215
  msgid "Pos"
1216
  msgstr "Pos"
1217
 
1218
+ #: redirection-strings.php:107
1219
  msgid "410 - Gone"
1220
  msgstr "410 - 消滅"
1221
 
1222
+ #: redirection-strings.php:154
1223
  msgid "Position"
1224
  msgstr "配置"
1225
 
1226
+ #: redirection-strings.php:434
1227
  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"
1228
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
1229
 
1230
+ #: redirection-strings.php:435
1231
  msgid "Apache Module"
1232
  msgstr "Apache モジュール"
1233
 
1234
+ #: redirection-strings.php:436
1235
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1236
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
1237
 
1238
+ #: redirection-strings.php:287
1239
  msgid "Import to group"
1240
  msgstr "グループにインポート"
1241
 
1242
+ #: redirection-strings.php:288
1243
  msgid "Import a CSV, .htaccess, or JSON file."
1244
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
1245
 
1246
+ #: redirection-strings.php:289
1247
  msgid "Click 'Add File' or drag and drop here."
1248
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
1249
 
1250
+ #: redirection-strings.php:290
1251
  msgid "Add File"
1252
  msgstr "ファイルを追加"
1253
 
1254
+ #: redirection-strings.php:291
1255
  msgid "File selected"
1256
  msgstr "選択されたファイル"
1257
 
1258
+ #: redirection-strings.php:294
1259
  msgid "Importing"
1260
  msgstr "インポート中"
1261
 
1262
+ #: redirection-strings.php:295
1263
  msgid "Finished importing"
1264
  msgstr "インポートが完了しました"
1265
 
1266
+ #: redirection-strings.php:296
1267
  msgid "Total redirects imported:"
1268
  msgstr "インポートされたリダイレクト数: "
1269
 
1270
+ #: redirection-strings.php:297
1271
  msgid "Double-check the file is the correct format!"
1272
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
1273
 
1274
+ #: redirection-strings.php:298
1275
  msgid "OK"
1276
  msgstr "OK"
1277
 
1278
+ #: redirection-strings.php:119 redirection-strings.php:299
1279
  msgid "Close"
1280
  msgstr "閉じる"
1281
 
1282
+ #: redirection-strings.php:304
1283
  msgid "All imports will be appended to the current database."
1284
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
1285
 
1286
+ #: redirection-strings.php:306 redirection-strings.php:326
1287
  msgid "Export"
1288
  msgstr "エクスポート"
1289
 
1290
+ #: redirection-strings.php:307
1291
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1292
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
1293
 
1294
+ #: redirection-strings.php:308
1295
  msgid "Everything"
1296
  msgstr "すべて"
1297
 
1298
+ #: redirection-strings.php:309
1299
  msgid "WordPress redirects"
1300
  msgstr "WordPress リダイレクト"
1301
 
1302
+ #: redirection-strings.php:310
1303
  msgid "Apache redirects"
1304
  msgstr "Apache リダイレクト"
1305
 
1306
+ #: redirection-strings.php:311
1307
  msgid "Nginx redirects"
1308
  msgstr "Nginx リダイレクト"
1309
 
1310
+ #: redirection-strings.php:312
1311
  msgid "CSV"
1312
  msgstr "CSV"
1313
 
1314
+ #: redirection-strings.php:313
1315
  msgid "Apache .htaccess"
1316
  msgstr "Apache .htaccess"
1317
 
1318
+ #: redirection-strings.php:314
1319
  msgid "Nginx rewrite rules"
1320
  msgstr "Nginx のリライトルール"
1321
 
1322
+ #: redirection-strings.php:315
1323
  msgid "Redirection JSON"
1324
  msgstr "Redirection JSON"
1325
 
1326
+ #: redirection-strings.php:316
1327
  msgid "View"
1328
  msgstr "表示"
1329
 
1330
+ #: redirection-strings.php:318
1331
  msgid "Log files can be exported from the log pages."
1332
  msgstr "ログファイルはログページにてエクスポート出来ます。"
1333
 
1334
+ #: redirection-strings.php:63 redirection-strings.php:270
1335
  msgid "Import/Export"
1336
  msgstr "インポート / エクスポート"
1337
 
1338
+ #: redirection-strings.php:271
1339
  msgid "Logs"
1340
  msgstr "ログ"
1341
 
1342
+ #: redirection-strings.php:272
1343
  msgid "404 errors"
1344
  msgstr "404 エラー"
1345
 
1346
+ #: redirection-strings.php:283
1347
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1348
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
1349
 
1350
+ #: redirection-strings.php:383
1351
  msgid "I'd like to support some more."
1352
  msgstr "もっとサポートがしたいです。"
1353
 
1354
+ #: redirection-strings.php:386
1355
  msgid "Support 💰"
1356
  msgstr "サポート💰"
1357
 
1358
+ #: redirection-strings.php:489
1359
  msgid "Redirection saved"
1360
  msgstr "リダイレクトが保存されました"
1361
 
1362
+ #: redirection-strings.php:490
1363
  msgid "Log deleted"
1364
  msgstr "ログが削除されました"
1365
 
1366
+ #: redirection-strings.php:491
1367
  msgid "Settings saved"
1368
  msgstr "設定が保存されました"
1369
 
1370
+ #: redirection-strings.php:492
1371
  msgid "Group saved"
1372
  msgstr "グループが保存されました"
1373
 
1374
+ #: redirection-strings.php:242
1375
  msgid "Are you sure you want to delete this item?"
1376
  msgid_plural "Are you sure you want to delete these items?"
1377
  msgstr[0] "本当に削除してもよろしいですか?"
1378
 
1379
+ #: redirection-strings.php:462
1380
  msgid "pass"
1381
  msgstr "パス"
1382
 
1383
+ #: redirection-strings.php:454
1384
  msgid "All groups"
1385
  msgstr "すべてのグループ"
1386
 
1387
+ #: redirection-strings.php:97
1388
  msgid "301 - Moved Permanently"
1389
  msgstr "301 - 恒久的に移動"
1390
 
1391
+ #: redirection-strings.php:98
1392
  msgid "302 - Found"
1393
  msgstr "302 - 発見"
1394
 
1395
+ #: redirection-strings.php:101
1396
  msgid "307 - Temporary Redirect"
1397
  msgstr "307 - 一時リダイレクト"
1398
 
1399
+ #: redirection-strings.php:102
1400
  msgid "308 - Permanent Redirect"
1401
  msgstr "308 - 恒久リダイレクト"
1402
 
1403
+ #: redirection-strings.php:104
1404
  msgid "401 - Unauthorized"
1405
  msgstr "401 - 認証が必要"
1406
 
1407
+ #: redirection-strings.php:106
1408
  msgid "404 - Not Found"
1409
  msgstr "404 - 未検出"
1410
 
1411
+ #: redirection-strings.php:161
1412
  msgid "Title"
1413
  msgstr "タイトル"
1414
 
1415
+ #: redirection-strings.php:115
1416
  msgid "When matched"
1417
  msgstr "マッチした時"
1418
 
1419
+ #: redirection-strings.php:70
1420
  msgid "with HTTP code"
1421
  msgstr "次の HTTP コードと共に"
1422
 
1423
+ #: redirection-strings.php:120
1424
  msgid "Show advanced options"
1425
  msgstr "高度な設定を表示"
1426
 
1427
+ #: redirection-strings.php:75
1428
  msgid "Matched Target"
1429
  msgstr "見つかったターゲット"
1430
 
1431
+ #: redirection-strings.php:77
1432
  msgid "Unmatched Target"
1433
  msgstr "ターゲットが見つかりません"
1434
 
1440
  msgid "View notice"
1441
  msgstr "通知を見る"
1442
 
1443
+ #: models/redirect-sanitizer.php:170
1444
  msgid "Invalid source URL"
1445
  msgstr "不正な元 URL"
1446
 
1447
+ #: models/redirect-sanitizer.php:99
1448
  msgid "Invalid redirect action"
1449
  msgstr "不正なリダイレクトアクション"
1450
 
1451
+ #: models/redirect-sanitizer.php:93
1452
  msgid "Invalid redirect matcher"
1453
  msgstr "不正なリダイレクトマッチャー"
1454
 
1455
+ #: models/redirect.php:253
1456
  msgid "Unable to add new redirect"
1457
  msgstr "新しいリダイレクトの追加に失敗しました"
1458
 
1459
+ #: redirection-strings.php:23 redirection-strings.php:279
1460
  msgid "Something went wrong 🙁"
1461
  msgstr "問題が発生しました"
1462
 
1469
  msgid "Log entries (%d max)"
1470
  msgstr "ログ (最大 %d)"
1471
 
1472
+ #: redirection-strings.php:184
1473
  msgid "Search by IP"
1474
  msgstr "IP による検索"
1475
 
1476
+ #: redirection-strings.php:179
1477
  msgid "Select bulk action"
1478
  msgstr "一括操作を選択"
1479
 
1480
+ #: redirection-strings.php:180
1481
  msgid "Bulk Actions"
1482
  msgstr "一括操作"
1483
 
1484
+ #: redirection-strings.php:181
1485
  msgid "Apply"
1486
  msgstr "適応"
1487
 
1488
+ #: redirection-strings.php:172
1489
  msgid "First page"
1490
  msgstr "最初のページ"
1491
 
1492
+ #: redirection-strings.php:173
1493
  msgid "Prev page"
1494
  msgstr "前のページ"
1495
 
1496
+ #: redirection-strings.php:174
1497
  msgid "Current Page"
1498
  msgstr "現在のページ"
1499
 
1500
+ #: redirection-strings.php:175
1501
  msgid "of %(page)s"
1502
  msgstr "%(page)s"
1503
 
1504
+ #: redirection-strings.php:176
1505
  msgid "Next page"
1506
  msgstr "次のページ"
1507
 
1508
+ #: redirection-strings.php:177
1509
  msgid "Last page"
1510
  msgstr "最後のページ"
1511
 
1512
+ #: redirection-strings.php:178
1513
  msgid "%s item"
1514
  msgid_plural "%s items"
1515
  msgstr[0] "%s 個のアイテム"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "すべて選択"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "結果なし"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "本当にログを消去しますか ?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "ログを消去する"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "ログを消去しない"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "ニュースレター"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr ""
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "メールアドレス: "
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "永久に"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "本当にプラグインを削除しますか ?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "プラグインを消去する"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "プラグインを消去しない"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Redirection を応援する"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "サポート"
1616
 
1622
  msgid "Log"
1623
  msgstr "ログ"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "転送ルールを削除"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "アップロード"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "インポート"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "更新"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "URL を自動生成 "
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "RSS トークン"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "404 ログ"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(ログの保存期間)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "転送ログ"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "このプラグインの作者に対する援助を行いました"
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "プラグインサポート"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "設定"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "2ヶ月"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "1ヶ月"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "1週間"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "1日"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "ログなし"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "すべてを削除"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "グループを追加"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "検索"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "グループ"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "保存"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "グループ"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "一致条件"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "新しい転送ルールを追加"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "キャンセル"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "ダウンロード"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "設定"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "エラー (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "通過"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "ランダムな記事へ転送"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "URL へ転送"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "ソース URL"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "日付"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "転送ルールを追加"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "すべてのモジュール"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "転送ルールを表示"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "モジュール"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "転送ルール"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "名称"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "フィルター"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "訪問数をリセット"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "有効化"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "無効化"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "削除"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "編集"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "前回のアクセス"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "ヒット数"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "タイプ"
1863
 
1866
  msgstr "編集済みの投稿"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "転送ルール"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "ユーザーエージェント"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL およびユーザーエージェント"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "ターゲット URL"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL のみ"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "正規表現"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "リファラー"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL およびリファラー"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "ログアウト中"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "ログイン中"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL およびログイン状態"
locale/redirection-pt_BR.mo CHANGED
Binary file
locale/redirection-pt_BR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2019-02-13 02:51:41+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr "API REST relativa"
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr "API REST raw"
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr "API REST padrão"
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
- msgstr "Pronto, é só isso, agora você está redirecionando! O que vai acima é só um exemplo - não para inserir um redirecionamento."
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr "(Exemplo) O URL de destino é o novo URL"
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr "(Exemplo) O URL de origem é o URL antigo ou oiginal"
37
 
@@ -39,11 +135,11 @@ msgstr "(Exemplo) O URL de origem é o URL antigo ou oiginal"
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr "Desabilitado! Detectado PHP %s, é necessário PHP 5.4+"
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr "Faça um backup de seus dados do Redirection: {{download}}baixar um backup{{/download}}."
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr "Uma atualização do banco de dados está em andamento. Continue para concluir."
49
 
@@ -52,188 +148,180 @@ msgstr "Uma atualização do banco de dados está em andamento. Continue para co
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr "O banco de dados do Redirection precisa ser atualizado - <a href=\"%1$1s\">clique para atualizar</a>."
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr "A versão do banco de dados atual é %(current)s, a mais recente é %(latest)s. Por favor atualize para usar novos recursos."
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr "O banco de dados do Redirection precisa ser atualizado"
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr "Atualização Obrigatória"
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr "Preciso de algum suporte!"
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr "Concluir Configuração"
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr "Conferindo o seu API REST"
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr "Tentar de novo"
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr "Você tem diferentes URLs configurados na página Configurações > Geral do WordPress, o que geralmente indica um erro de configuração, e isso pode causar problemas com a API REST. Confira suas configurações."
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr "Se você tiver um problema, consulte a documentação do seu plugin, ou tente falar com o suporte do provedor de hospedagem. Isso geralmente {{link}}não é um problema causado pelo Redirection{{/link}}."
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr "Algum outro plugin que bloqueia a API REST"
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr "Programas de cache, por exemplo Cloudflare"
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr "Um firewall do servidor, ou outra configuração do servidor"
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
- msgstr "Um plugin de segurança"
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr "O Redirection usa a {{link}}API REST do WordPress{{/link}} para se comunicar com o WordPress. Isso está ativo e funcionando por padrão. Às vezes a API REST é bloqueada por:"
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr "Voltar"
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr "Continuar a configuração"
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr "Armazenar o endereço IP permite que você executa outras ações de registro. Observe que você terá que aderir às leis locais com relação à coleta de dados (por exemplo, GDPR)."
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr "Armazenar informações sobre o IP para redirecionamentos e erros 404."
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr "Armazenar registros de redirecionamentos e erros 404 permite que você veja o que está acontecendo no seu site. Isso aumenta o espaço ocupado pelo banco de dados."
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr "Manter um registro de todos os redirecionamentos e erros 404."
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr "{{link}}Leia mais sobre isto.{{/link}}"
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr "Se você muda o link permanente de um post ou página, o Redirection pode criar automaticamente um redirecionamento para você."
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr "Monitorar alterações nos links permanentes de posts e páginas do WordPress"
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr "Estas são algumas opções que você pode ativar agora. Elas podem ser alteradas a qualquer hora."
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr "Configuração Básica"
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr "Iniciar Configuração"
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr "Quando estiver pronto, aperte o botão para continuar."
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr "Primeiro você responderá algumas perguntas,e então o Redirection vai configurar seu banco de dados."
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr "O que vem a seguir?"
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr "Confira se um URL está sendo redirecionado"
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr "Correspondências de URL mais poderosas, inclusive {{regular}}expressões regulares{{/regular}} e {{other}}outras condições{{/other}}"
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr "{{link}}Importe{{/link}} de um arquivo .htaccess ou CSV e de outros vários plugins"
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr "{{link}}Monitore erros 404{{/link}}, obtenha informações detalhadas sobre o visitante, e corrija qualquer problema"
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr "Alguns recursos que você pode achar úteis são"
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr "A documentação completa pode ser encontrada no {{link}}site do Redirection (em inglês).{{/link}}"
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr "Um redirecionamento simples envolve configurar um {{strong}}URL de origem{{/strong}} (o URL antigo) e um {{strong}}URL de destino{{/strong}} (o URL novo). Por exemplo:"
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr "Como eu uso este plugin?"
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr "O Redirection é projetado para ser usado em sites com poucos redirecionamentos a sites com milhares de redirecionamentos."
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr "Obrigado por instalar e usar o Redirection v%(version)s. Este plugin vai permitir que você administre seus redirecionamentos 301, monitore os erros 404, e melhores seu site, sem precisar conhecimentos de Apache ou Nginx."
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr "Bem-vindo ao Redirection 🚀🎉"
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr "Isso vai redirecionar tudo, inclusive as páginas de login. Certifique-se de que realmente quer fazer isso."
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
- msgstr "Para prevenir uma expressão regular gananciosa, você pode usar o sinal {{code}}^{{/code}} para ancorá-la no início do URL. Por exemplo: {{code}}%(example)s{{/code}}"
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr "Lembre-se de ativar a caixa de seleção \"Regex\" se isto for uma expressão regular."
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr "O URL de origem deve provavelmente começar com {{code}}/{{/code}}"
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr "Isso vai ser convertido em um redirecionamento por servidor para o domínio {{code}}%(server)s{{/code}}."
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr "Âncoras internas (#) não são enviadas ao servidor e não podem ser redirecionadas."
239
 
@@ -285,7 +373,7 @@ msgstr "Tentar de novo"
285
  msgid "Database problem"
286
  msgstr "Problema no banco de dados"
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr "Ativar o JavaScript"
291
 
@@ -293,7 +381,7 @@ msgstr "Ativar o JavaScript"
293
  msgid "Please upgrade your database"
294
  msgstr "Atualize seu banco de dados"
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr "Atualizar Banco de Dados"
299
 
@@ -330,124 +418,124 @@ msgstr "Instalar tabelas do Redirection"
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr "URL do site e do WordPress são inconsistentes. Corrija na página Configurações > Geral: %1$1s não é %2$2s"
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Não tente redirecionar todos os seus 404s - isso não é uma coisa boa."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Somente o tipo de página 404 é suportado atualmente."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Tipo de página"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Digite endereços IP (um por linha)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Descreva o propósito deste redirecionamento (opcional)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - Sou uma chaleira"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Proibido"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Solicitação inválida"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Não modificado"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - Veja outro"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Fazer nada (ignorar)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr "URL de destino se não houver correspondência (em branco para ignorar)"
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr "URL de destino se houver correspondência (em branco para ignorar)"
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Mostrar todos"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Excluir todos os registros para estas entradas"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Excluir todos os registros para esta entrada"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Excluir entradas no registro"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Agrupar por IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Agrupar por URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "Não agrupar"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Ignorar URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Bloquear IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Redirecionar todos"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Número"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL e tipo de página do WordPress"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL e IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Problema"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Bom"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Verificar"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Verificar redirecionamento"
453
 
@@ -483,83 +571,83 @@ msgstr "Esperado"
483
  msgid "Error"
484
  msgstr "Erro"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Digite o URL inteiro, incluindo http:// ou https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Teste de redirecionamento"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Destino"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "O URL não está sendo redirecionado com o Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "O URL está sendo redirecionado com o Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Não foi possível carregar os detalhes"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Digite o URL do servidor para correspondência"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Servidor"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Digite a função ou capacidade"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Função"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Texto do referenciador do navegador para correspondênica"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Usuário de agente do navegador para correspondência"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "O URL relativo que você quer redirecionar"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "O URL de destino para qual você quer redirecionar, se houver correspondência"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(beta)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Forçar HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / Informações sobre privacidade (em inglês)"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Adicionar novo"
565
 
@@ -567,11 +655,11 @@ msgstr "Adicionar novo"
567
  msgid "Please logout and login again."
568
  msgstr "Desconecte-se da sua conta e acesse novamente."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL e função/capacidade"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL e servidor"
577
 
@@ -587,75 +675,75 @@ msgstr "Protocolo do endereço do WordPress e do site"
587
  msgid "Site and home are consistent"
588
  msgstr "O endereço do WordPress e do site são consistentes"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "Aceitar Idioma"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Valor do cabeçalho"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Nome cabeçalho"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "Cabeçalho HTTP"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "Nome do filtro WordPress"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Nome do filtro"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Valor do cookie"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Nome do cookie"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Cookie"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "limpando seu cache."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL e cabeçalho HTTP"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL e filtro personalizado"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL e cookie"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 excluído"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "API REST"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "Como o Redirection usa a API REST. Não altere a menos que seja necessário"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige m
687
  msgid "None of the suggestions helped"
688
  msgstr "Nenhuma das sugestões ajudou"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Não foi possível carregar o Redirection ☹️"
697
 
@@ -728,76 +816,76 @@ msgstr "A API REST do WordPress foi desativada. É preciso ativá-la para que o
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Erro de agente de usuário"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Agente de usuário desconhecido"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Dispositivo"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Sistema operacional"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Navegador"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Motor"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Agente de usuário"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Agente"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "Não registrar IP"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Registrar IP completo"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Tornar IP anônimo (mascarar a última parte)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Monitorar alterações em %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "Registro de IP"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(selecione o nível de registro de IP)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Informações geográficas"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Informação sobre o agente"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Filtrar por IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Referenciador / Agente de usuário"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Erro IP Geo"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Algo deu errado ao obter essa informação"
812
 
@@ -847,12 +935,12 @@ msgstr "Fornecido por {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Lixeira"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  msgstr "O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."
858
 
@@ -860,56 +948,56 @@ msgstr "A documentação completa (em inglês) sobre como usar o Redirection se
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  msgstr "A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  msgstr "Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Nunca fazer cache"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "Uma hora"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Cache dos redirecionamentos"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Tem certeza de que deseja importar de %s?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Importar de plugins"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "total = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Importar de %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "O Redirection requer o WordPress v%1$1s, mas você está usando a versão v%2$2s. Atualize o WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "O Redirection requer o WordPress v%1$1s, mas você está usando a versã
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "Redirecionamentos de \"slugs anteriores\" do WordPress"
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Criar redirecionamento atrelado (adicionado ao fim do URL)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr "O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  msgstr "Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Correção mágica ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Status do plugin"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Personalizado"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Móvel"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Leitores de feed"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Bibliotecas"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "Alterações do monitoramento de URLs"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Salvar alterações neste grupo"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "Por exemplo, \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "Monitoramento de URLs"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Excluir 404s"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Excluir registros do IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Excluir tudo que corresponder a \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Excluir tudo que corresponder a \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Não foi possível carregar o Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "As seguintes tabelas estão faltando:"
1049
  msgid "All tables present"
1050
  msgstr "Todas as tabelas presentes"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "O Redirection foi detectado no cache"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Limpe o cache do seu navegador e recarregue esta página."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Seu servidor retornou um erro 403 Proibido, que pode indicar que a solic
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "Se você acha que o erro é do Redirection, abra um chamado."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Carregando, aguarde..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  msgstr "{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Criar chamado"
1107
 
@@ -1113,233 +1201,233 @@ msgstr "E-mail"
1113
  msgid "Important details"
1114
  msgstr "Detalhes importantes"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Precisa de ajuda?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr "Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Não existe mais"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Posição"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr "Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Módulo Apache"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Importar para grupo"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Importar um arquivo CSV, .htaccess ou JSON."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Clique 'Adicionar arquivo' ou arraste e solte aqui."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Adicionar arquivo"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "Arquivo selecionado"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Importando"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Importação concluída"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Total de redirecionamentos importados:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Verifique novamente se o arquivo é o formato correto!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Fechar"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "Todas as importações serão anexadas ao banco de dados atual."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Exportar"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Tudo"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "Redirecionamentos WordPress"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "Redirecionamentos Apache"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "Redirecionamentos Nginx"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr ".htaccess do Apache"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Regras de reescrita do Nginx"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "JSON do Redirection"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "Ver"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Arquivos de registro podem ser exportados nas páginas de registro."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Importar/Exportar"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Registros"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "Erro 404"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "Eu gostaria de ajudar mais um pouco."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Doação 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Redirecionamento salvo"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Registro excluído"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Configurações salvas"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Grupo salvo"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Tem certeza de que deseja excluir este item?"
1288
  msgstr[1] "Tem certeza de que deseja excluir estes item?"
1289
 
1290
- #: redirection-strings.php:443
1291
  msgid "pass"
1292
  msgstr "manter url"
1293
 
1294
- #: redirection-strings.php:435
1295
  msgid "All groups"
1296
  msgstr "Todos os grupos"
1297
 
1298
- #: redirection-strings.php:98
1299
  msgid "301 - Moved Permanently"
1300
  msgstr "301 - Mudou permanentemente"
1301
 
1302
- #: redirection-strings.php:99
1303
  msgid "302 - Found"
1304
  msgstr "302 - Encontrado"
1305
 
1306
- #: redirection-strings.php:102
1307
  msgid "307 - Temporary Redirect"
1308
  msgstr "307 - Redirecionamento temporário"
1309
 
1310
- #: redirection-strings.php:103
1311
  msgid "308 - Permanent Redirect"
1312
  msgstr "308 - Redirecionamento permanente"
1313
 
1314
- #: redirection-strings.php:105
1315
  msgid "401 - Unauthorized"
1316
  msgstr "401 - Não autorizado"
1317
 
1318
- #: redirection-strings.php:107
1319
  msgid "404 - Not Found"
1320
  msgstr "404 - Não encontrado"
1321
 
1322
- #: redirection-strings.php:110
1323
  msgid "Title"
1324
  msgstr "Título"
1325
 
1326
- #: redirection-strings.php:113
1327
  msgid "When matched"
1328
  msgstr "Quando corresponder"
1329
 
1330
- #: redirection-strings.php:114
1331
  msgid "with HTTP code"
1332
  msgstr "com código HTTP"
1333
 
1334
- #: redirection-strings.php:123
1335
  msgid "Show advanced options"
1336
  msgstr "Exibir opções avançadas"
1337
 
1338
- #: redirection-strings.php:76
1339
  msgid "Matched Target"
1340
  msgstr "Destino se correspondido"
1341
 
1342
- #: redirection-strings.php:78
1343
  msgid "Unmatched Target"
1344
  msgstr "Destino se não correspondido"
1345
 
@@ -1351,23 +1439,23 @@ msgstr "Salvando..."
1351
  msgid "View notice"
1352
  msgstr "Veja o aviso"
1353
 
1354
- #: models/redirect.php:563
1355
  msgid "Invalid source URL"
1356
  msgstr "URL de origem inválido"
1357
 
1358
- #: models/redirect.php:491
1359
  msgid "Invalid redirect action"
1360
  msgstr "Ação de redirecionamento inválida"
1361
 
1362
- #: models/redirect.php:485
1363
  msgid "Invalid redirect matcher"
1364
  msgstr "Critério de redirecionamento inválido"
1365
 
1366
- #: models/redirect.php:195
1367
  msgid "Unable to add new redirect"
1368
  msgstr "Não foi possível criar novo redirecionamento"
1369
 
1370
- #: redirection-strings.php:23 redirection-strings.php:272
1371
  msgid "Something went wrong 🙁"
1372
  msgstr "Algo deu errado 🙁"
1373
 
@@ -1380,129 +1468,129 @@ msgstr "Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema te
1380
  msgid "Log entries (%d max)"
1381
  msgstr "Entradas do registro (máx %d)"
1382
 
1383
- #: redirection-strings.php:177
1384
  msgid "Search by IP"
1385
  msgstr "Pesquisar por IP"
1386
 
1387
- #: redirection-strings.php:172
1388
  msgid "Select bulk action"
1389
  msgstr "Selecionar ações em massa"
1390
 
1391
- #: redirection-strings.php:173
1392
  msgid "Bulk Actions"
1393
  msgstr "Ações em massa"
1394
 
1395
- #: redirection-strings.php:174
1396
  msgid "Apply"
1397
  msgstr "Aplicar"
1398
 
1399
- #: redirection-strings.php:165
1400
  msgid "First page"
1401
  msgstr "Primeira página"
1402
 
1403
- #: redirection-strings.php:166
1404
  msgid "Prev page"
1405
  msgstr "Página anterior"
1406
 
1407
- #: redirection-strings.php:167
1408
  msgid "Current Page"
1409
  msgstr "Página atual"
1410
 
1411
- #: redirection-strings.php:168
1412
  msgid "of %(page)s"
1413
  msgstr "de %(page)s"
1414
 
1415
- #: redirection-strings.php:169
1416
  msgid "Next page"
1417
  msgstr "Próxima página"
1418
 
1419
- #: redirection-strings.php:170
1420
  msgid "Last page"
1421
  msgstr "Última página"
1422
 
1423
- #: redirection-strings.php:171
1424
  msgid "%s item"
1425
  msgid_plural "%s items"
1426
  msgstr[0] "%s item"
1427
  msgstr[1] "%s itens"
1428
 
1429
- #: redirection-strings.php:164
1430
  msgid "Select All"
1431
  msgstr "Selecionar tudo"
1432
 
1433
- #: redirection-strings.php:176
1434
  msgid "Sorry, something went wrong loading the data - please try again"
1435
  msgstr "Desculpe, mas algo deu errado ao carregar os dados - tente novamente"
1436
 
1437
- #: redirection-strings.php:175
1438
  msgid "No results"
1439
  msgstr "Nenhum resultado"
1440
 
1441
- #: redirection-strings.php:315
1442
  msgid "Delete the logs - are you sure?"
1443
  msgstr "Excluir os registros - Você tem certeza?"
1444
 
1445
- #: redirection-strings.php:316
1446
  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."
1447
  msgstr "Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."
1448
 
1449
- #: redirection-strings.php:317
1450
  msgid "Yes! Delete the logs"
1451
  msgstr "Sim! Exclua os registros"
1452
 
1453
- #: redirection-strings.php:318
1454
  msgid "No! Don't delete the logs"
1455
  msgstr "Não! Não exclua os registros"
1456
 
1457
- #: redirection-strings.php:460
1458
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1459
  msgstr "Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."
1460
 
1461
- #: redirection-strings.php:459 redirection-strings.php:461
1462
  msgid "Newsletter"
1463
  msgstr "Boletim"
1464
 
1465
- #: redirection-strings.php:462
1466
  msgid "Want to keep up to date with changes to Redirection?"
1467
  msgstr "Quer ficar a par de mudanças no Redirection?"
1468
 
1469
- #: redirection-strings.php:463
1470
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1471
  msgstr "Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."
1472
 
1473
- #: redirection-strings.php:464
1474
  msgid "Your email address:"
1475
  msgstr "Seu endereço de e-mail:"
1476
 
1477
- #: redirection-strings.php:375
1478
  msgid "You've supported this plugin - thank you!"
1479
  msgstr "Você apoiou este plugin - obrigado!"
1480
 
1481
- #: redirection-strings.php:378
1482
  msgid "You get useful software and I get to carry on making it better."
1483
  msgstr "Você obtém softwares úteis e eu continuo fazendo isso melhor."
1484
 
1485
- #: redirection-strings.php:386 redirection-strings.php:391
1486
  msgid "Forever"
1487
  msgstr "Para sempre"
1488
 
1489
- #: redirection-strings.php:367
1490
  msgid "Delete the plugin - are you sure?"
1491
  msgstr "Excluir o plugin - Você tem certeza?"
1492
 
1493
- #: redirection-strings.php:368
1494
  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."
1495
  msgstr "A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."
1496
 
1497
- #: redirection-strings.php:369
1498
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1499
  msgstr "Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."
1500
 
1501
- #: redirection-strings.php:370
1502
  msgid "Yes! Delete the plugin"
1503
  msgstr "Sim! Exclua o plugin"
1504
 
1505
- #: redirection-strings.php:371
1506
  msgid "No! Don't delete the plugin"
1507
  msgstr "Não! Não exclua o plugin"
1508
 
@@ -1514,15 +1602,15 @@ msgstr "John Godley"
1514
  msgid "Manage all your 301 redirects and monitor 404 errors"
1515
  msgstr "Gerencie todos os seus redirecionamentos 301 e monitore erros 404"
1516
 
1517
- #: redirection-strings.php:377
1518
  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}}."
1519
  msgstr "O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."
1520
 
1521
- #: redirection-admin.php:300
1522
  msgid "Redirection Support"
1523
  msgstr "Ajuda do Redirection"
1524
 
1525
- #: redirection-strings.php:65 redirection-strings.php:267
1526
  msgid "Support"
1527
  msgstr "Ajuda"
1528
 
@@ -1534,131 +1622,131 @@ msgstr "404s"
1534
  msgid "Log"
1535
  msgstr "Registro"
1536
 
1537
- #: redirection-strings.php:373
1538
  msgid "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."
1539
  msgstr "Selecionar esta opção irá remover todos os redirecionamentos, logs e todas as opções associadas ao plugin Redirection. Certifique-se de que é isso mesmo que deseja fazer."
1540
 
1541
- #: redirection-strings.php:372
1542
  msgid "Delete Redirection"
1543
  msgstr "Excluir o Redirection"
1544
 
1545
- #: redirection-strings.php:285
1546
  msgid "Upload"
1547
  msgstr "Carregar"
1548
 
1549
- #: redirection-strings.php:296
1550
  msgid "Import"
1551
  msgstr "Importar"
1552
 
1553
- #: redirection-strings.php:425
1554
  msgid "Update"
1555
  msgstr "Atualizar"
1556
 
1557
- #: redirection-strings.php:414
1558
  msgid "Auto-generate URL"
1559
  msgstr "Gerar automaticamente o URL"
1560
 
1561
- #: redirection-strings.php:413
1562
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1563
  msgstr "Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"
1564
 
1565
- #: redirection-strings.php:412
1566
  msgid "RSS Token"
1567
  msgstr "Token RSS"
1568
 
1569
- #: redirection-strings.php:406
1570
  msgid "404 Logs"
1571
  msgstr "Registros de 404"
1572
 
1573
- #: redirection-strings.php:405 redirection-strings.php:407
1574
  msgid "(time to keep logs for)"
1575
  msgstr "(tempo para manter os registros)"
1576
 
1577
- #: redirection-strings.php:404
1578
  msgid "Redirect Logs"
1579
  msgstr "Registros de redirecionamento"
1580
 
1581
- #: redirection-strings.php:403
1582
  msgid "I'm a nice person and I have helped support the author of this plugin"
1583
  msgstr "Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"
1584
 
1585
- #: redirection-strings.php:380
1586
  msgid "Plugin Support"
1587
  msgstr "Suporte do plugin"
1588
 
1589
- #: redirection-strings.php:64 redirection-strings.php:266
1590
  msgid "Options"
1591
  msgstr "Opções"
1592
 
1593
- #: redirection-strings.php:385
1594
  msgid "Two months"
1595
  msgstr "Dois meses"
1596
 
1597
- #: redirection-strings.php:384
1598
  msgid "A month"
1599
  msgstr "Um mês"
1600
 
1601
- #: redirection-strings.php:383 redirection-strings.php:390
1602
  msgid "A week"
1603
  msgstr "Uma semana"
1604
 
1605
- #: redirection-strings.php:382 redirection-strings.php:389
1606
  msgid "A day"
1607
  msgstr "Um dia"
1608
 
1609
- #: redirection-strings.php:381
1610
  msgid "No logs"
1611
  msgstr "Não registrar"
1612
 
1613
- #: redirection-strings.php:314 redirection-strings.php:350
1614
- #: redirection-strings.php:355
1615
  msgid "Delete All"
1616
  msgstr "Apagar Tudo"
1617
 
1618
- #: redirection-strings.php:244
1619
  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."
1620
  msgstr "Use grupos para organizar os seus redirecionamentos. Os grupos são associados a um módulo, e o módulo afeta como os redirecionamentos do grupo funcionam. Na dúvida, use o módulo WordPress."
1621
 
1622
- #: redirection-strings.php:243
1623
  msgid "Add Group"
1624
  msgstr "Adicionar grupo"
1625
 
1626
- #: redirection-strings.php:178
1627
  msgid "Search"
1628
  msgstr "Pesquisar"
1629
 
1630
- #: redirection-strings.php:60 redirection-strings.php:262
1631
  msgid "Groups"
1632
  msgstr "Grupos"
1633
 
1634
- #: redirection-strings.php:25 redirection-strings.php:119
1635
- #: redirection-strings.php:253
1636
  msgid "Save"
1637
  msgstr "Salvar"
1638
 
1639
- #: redirection-strings.php:115 redirection-strings.php:163
1640
  msgid "Group"
1641
  msgstr "Grupo"
1642
 
1643
- #: redirection-strings.php:112
1644
  msgid "Match"
1645
  msgstr "Corresponder"
1646
 
1647
- #: redirection-strings.php:436
1648
  msgid "Add new redirection"
1649
  msgstr "Adicionar novo redirecionamento"
1650
 
1651
- #: redirection-strings.php:121 redirection-strings.php:254
1652
- #: redirection-strings.php:286
1653
  msgid "Cancel"
1654
  msgstr "Cancelar"
1655
 
1656
- #: redirection-strings.php:310
1657
  msgid "Download"
1658
  msgstr "Baixar"
1659
 
1660
  #. Plugin Name of the plugin
1661
- #: redirection-strings.php:233
1662
  msgid "Redirection"
1663
  msgstr "Redirection"
1664
 
@@ -1666,110 +1754,110 @@ msgstr "Redirection"
1666
  msgid "Settings"
1667
  msgstr "Configurações"
1668
 
1669
- #: redirection-strings.php:96
1670
  msgid "Error (404)"
1671
  msgstr "Erro (404)"
1672
 
1673
- #: redirection-strings.php:95
1674
  msgid "Pass-through"
1675
  msgstr "Manter URL de origem"
1676
 
1677
- #: redirection-strings.php:94
1678
  msgid "Redirect to random post"
1679
  msgstr "Redirecionar para um post aleatório"
1680
 
1681
- #: redirection-strings.php:93
1682
  msgid "Redirect to URL"
1683
  msgstr "Redirecionar para URL"
1684
 
1685
- #: models/redirect.php:553
1686
  msgid "Invalid group when creating redirect"
1687
  msgstr "Grupo inválido ao criar o redirecionamento"
1688
 
1689
- #: redirection-strings.php:144 redirection-strings.php:323
1690
- #: redirection-strings.php:331 redirection-strings.php:336
1691
  msgid "IP"
1692
  msgstr "IP"
1693
 
1694
- #: redirection-strings.php:120 redirection-strings.php:193
1695
- #: redirection-strings.php:321 redirection-strings.php:329
1696
- #: redirection-strings.php:334
1697
  msgid "Source URL"
1698
  msgstr "URL de origem"
1699
 
1700
- #: redirection-strings.php:320 redirection-strings.php:333
1701
  msgid "Date"
1702
  msgstr "Data"
1703
 
1704
- #: redirection-strings.php:346 redirection-strings.php:359
1705
- #: redirection-strings.php:363 redirection-strings.php:437
1706
  msgid "Add Redirect"
1707
  msgstr "Adicionar redirecionamento"
1708
 
1709
- #: redirection-strings.php:242
1710
  msgid "All modules"
1711
  msgstr "Todos os módulos"
1712
 
1713
- #: redirection-strings.php:248
1714
  msgid "View Redirects"
1715
  msgstr "Ver redirecionamentos"
1716
 
1717
- #: redirection-strings.php:238 redirection-strings.php:252
1718
  msgid "Module"
1719
  msgstr "Módulo"
1720
 
1721
- #: redirection-strings.php:59 redirection-strings.php:237
1722
  msgid "Redirects"
1723
  msgstr "Redirecionamentos"
1724
 
1725
- #: redirection-strings.php:236 redirection-strings.php:245
1726
- #: redirection-strings.php:251
1727
  msgid "Name"
1728
  msgstr "Nome"
1729
 
1730
- #: redirection-strings.php:162
1731
  msgid "Filter"
1732
  msgstr "Filtrar"
1733
 
1734
- #: redirection-strings.php:434
1735
  msgid "Reset hits"
1736
  msgstr "Redefinir acessos"
1737
 
1738
- #: redirection-strings.php:240 redirection-strings.php:250
1739
- #: redirection-strings.php:432 redirection-strings.php:442
1740
  msgid "Enable"
1741
  msgstr "Ativar"
1742
 
1743
- #: redirection-strings.php:241 redirection-strings.php:249
1744
- #: redirection-strings.php:433 redirection-strings.php:440
1745
  msgid "Disable"
1746
  msgstr "Desativar"
1747
 
1748
- #: redirection-strings.php:239 redirection-strings.php:247
1749
- #: redirection-strings.php:324 redirection-strings.php:325
1750
- #: redirection-strings.php:337 redirection-strings.php:340
1751
- #: redirection-strings.php:362 redirection-strings.php:374
1752
- #: redirection-strings.php:431 redirection-strings.php:439
1753
  msgid "Delete"
1754
  msgstr "Excluir"
1755
 
1756
- #: redirection-strings.php:246 redirection-strings.php:438
1757
  msgid "Edit"
1758
  msgstr "Editar"
1759
 
1760
- #: redirection-strings.php:430
1761
  msgid "Last Access"
1762
  msgstr "Último Acesso"
1763
 
1764
- #: redirection-strings.php:429
1765
  msgid "Hits"
1766
  msgstr "Acessos"
1767
 
1768
- #: redirection-strings.php:427 redirection-strings.php:455
1769
  msgid "URL"
1770
  msgstr "URL"
1771
 
1772
- #: redirection-strings.php:426
1773
  msgid "Type"
1774
  msgstr "Tipo"
1775
 
@@ -1778,49 +1866,48 @@ msgid "Modified Posts"
1778
  msgstr "Posts modificados"
1779
 
1780
  #: database/schema/latest.php:132 models/group.php:148
1781
- #: redirection-strings.php:261
1782
  msgid "Redirections"
1783
  msgstr "Redirecionamentos"
1784
 
1785
- #: redirection-strings.php:124
1786
  msgid "User Agent"
1787
  msgstr "Agente de usuário"
1788
 
1789
- #: matches/user-agent.php:10 redirection-strings.php:86
1790
  msgid "URL and user agent"
1791
  msgstr "URL e agente de usuário"
1792
 
1793
- #: redirection-strings.php:70 redirection-strings.php:80
1794
- #: redirection-strings.php:195
1795
  msgid "Target URL"
1796
  msgstr "URL de destino"
1797
 
1798
- #: matches/url.php:7 redirection-strings.php:82
1799
  msgid "URL only"
1800
  msgstr "URL somente"
1801
 
1802
- #: redirection-strings.php:118 redirection-strings.php:130
1803
- #: redirection-strings.php:134 redirection-strings.php:142
1804
- #: redirection-strings.php:151
1805
  msgid "Regex"
1806
  msgstr "Regex"
1807
 
1808
- #: redirection-strings.php:149
1809
  msgid "Referrer"
1810
  msgstr "Referenciador"
1811
 
1812
- #: matches/referrer.php:10 redirection-strings.php:85
1813
  msgid "URL and referrer"
1814
  msgstr "URL e referenciador"
1815
 
1816
- #: redirection-strings.php:74
1817
  msgid "Logged Out"
1818
  msgstr "Desconectado"
1819
 
1820
- #: redirection-strings.php:72
1821
  msgid "Logged In"
1822
  msgstr "Conectado"
1823
 
1824
- #: matches/login.php:8 redirection-strings.php:83
1825
  msgid "URL and login status"
1826
  msgstr "URL e status de login"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2019-02-23 14:29:52+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr "borrar"
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr "focar"
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr "rolar"
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr "Passar - como ignorar, mas também copia os parâmetros de consulta para o destino"
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr "Ignorar - como Exato, mas ignora qualquer parâmetro de consulta que não esteja na sua origem"
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr "Exato - corresponde os parâmetros de consulta exatamente definidos na origem, em qualquer ordem"
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr "Correspondência de consulta padrão"
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr "Ignorar barra final (ou seja {{code}}/post-legal/{{/code}} vai corresponder com {{code}}/post-legal{{/code}})"
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr "Correspondências insensível à caixa (ou seja {{code}}/Post-Legal{{/code}} vai corresponder com {{code}}/post-legal{{/code}})"
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr "Aplica-se a todos os redirecionamentos, a menos que você configure eles de outro modo."
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr "Configurações padrão de URL"
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr "Ignorar e passar todos os parâmetros de consulta"
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr "Ignorar todos os parâmetros de consulta"
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr "Correspondência exata"
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr "Programa de caching (por exemplo, Cloudflare)"
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr "Um plugin de segurança (por exemplo, Wordfence)"
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr "Não há mais opções"
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr "Opções de URL"
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr "Parâmetros de Consulta"
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr "Ignorar & passar parâmetros ao destino"
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr "Ignorar todos os parâmetros"
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr "Correspondência exata de todos os parâmetros em qualquer ordem"
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr "Ignorar Caixa"
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr "Ignorar Barra"
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr "API REST relativa"
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr "API REST raw"
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr "API REST padrão"
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
+ msgstr "Pronto, é só isso, agora você está redirecionando! O que vai acima é só um exemplo - agora você pode inserir um redirecionamento."
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr "(Exemplo) O URL de destino é o novo URL"
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr "(Exemplo) O URL de origem é o URL antigo ou oiginal"
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr "Desabilitado! Detectado PHP %s, é necessário PHP 5.4+"
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr "Faça um backup de seus dados do Redirection: {{download}}baixar um backup{{/download}}."
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr "Uma atualização do banco de dados está em andamento. Continue para concluir."
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr "O banco de dados do Redirection precisa ser atualizado - <a href=\"%1$1s\">clique para atualizar</a>."
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr "A versão do banco de dados atual é %(current)s, a mais recente é %(latest)s. Por favor atualize para usar novos recursos."
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr "O banco de dados do Redirection precisa ser atualizado"
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr "Atualização Obrigatória"
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr "Preciso de algum suporte!"
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr "Concluir Configuração"
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr "Conferindo o seu API REST"
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr "Tentar de novo"
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr "Você tem diferentes URLs configurados na página Configurações > Geral do WordPress, o que geralmente indica um erro de configuração, e isso pode causar problemas com a API REST. Confira suas configurações."
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr "Se você tiver um problema, consulte a documentação do seu plugin, ou tente falar com o suporte do provedor de hospedagem. Isso geralmente {{link}}não é um problema causado pelo Redirection{{/link}}."
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr "Algum outro plugin que bloqueia a API REST"
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
193
+ msgstr "Um firewall do servidor, ou outra configuração do servidor (p.ex. OVH)"
 
 
 
 
 
 
 
 
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr "O Redirection usa a {{link}}API REST do WordPress{{/link}} para se comunicar com o WordPress. Isso está ativo e funcionando por padrão. Às vezes a API REST é bloqueada por:"
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr "Voltar"
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr "Continuar a configuração"
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr "Armazenar o endereço IP permite que você executa outras ações de registro. Observe que você terá que aderir às leis locais com relação à coleta de dados (por exemplo, GDPR)."
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr "Armazenar informações sobre o IP para redirecionamentos e erros 404."
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr "Armazenar registros de redirecionamentos e erros 404 permite que você veja o que está acontecendo no seu site. Isso aumenta o espaço ocupado pelo banco de dados."
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr "Manter um registro de todos os redirecionamentos e erros 404."
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr "{{link}}Leia mais sobre isto.{{/link}}"
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr "Se você muda o link permanente de um post ou página, o Redirection pode criar automaticamente um redirecionamento para você."
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr "Monitorar alterações nos links permanentes de posts e páginas do WordPress"
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr "Estas são algumas opções que você pode ativar agora. Elas podem ser alteradas a qualquer hora."
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr "Configuração Básica"
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr "Iniciar Configuração"
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr "Quando estiver pronto, aperte o botão para continuar."
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr "Primeiro você responderá algumas perguntas,e então o Redirection vai configurar seu banco de dados."
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr "O que vem a seguir?"
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr "Confira se um URL está sendo redirecionado"
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr "Correspondências de URL mais poderosas, inclusive {{regular}}expressões regulares{{/regular}} e {{other}}outras condições{{/other}}"
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr "{{link}}Importe{{/link}} de um arquivo .htaccess ou CSV e de outros vários plugins"
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr "{{link}}Monitore erros 404{{/link}}, obtenha informações detalhadas sobre o visitante, e corrija qualquer problema"
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr "Alguns recursos que você pode achar úteis são"
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr "A documentação completa pode ser encontrada no {{link}}site do Redirection (em inglês).{{/link}}"
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr "Um redirecionamento simples envolve configurar um {{strong}}URL de origem{{/strong}} (o URL antigo) e um {{strong}}URL de destino{{/strong}} (o URL novo). Por exemplo:"
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr "Como eu uso este plugin?"
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr "O Redirection é projetado para ser usado em sites com poucos redirecionamentos a sites com milhares de redirecionamentos."
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr "Obrigado por instalar e usar o Redirection v%(version)s. Este plugin vai permitir que você administre seus redirecionamentos 301, monitore os erros 404, e melhores seu site, sem precisar conhecimentos de Apache ou Nginx."
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr "Bem-vindo ao Redirection 🚀🎉"
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr "Isso vai redirecionar tudo, inclusive as páginas de login. Certifique-se de que realmente quer fazer isso."
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
+ msgstr "Para prevenir uma expressão regular gananciosa, você pode usar {{code}}^{{/code}} para ancorá-la ao início do URL. Por exemplo: {{code}}%(example)s{{/code}}"
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr "Lembre-se de ativar a caixa de seleção \"Regex\" se isto for uma expressão regular."
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr "O URL de origem deve provavelmente começar com {{code}}/{{/code}}"
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr "Isso vai ser convertido em um redirecionamento por servidor para o domínio {{code}}%(server)s{{/code}}."
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr "Âncoras internas (#) não são enviadas ao servidor e não podem ser redirecionadas."
327
 
373
  msgid "Database problem"
374
  msgstr "Problema no banco de dados"
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr "Ativar o JavaScript"
379
 
381
  msgid "Please upgrade your database"
382
  msgstr "Atualize seu banco de dados"
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr "Atualizar Banco de Dados"
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr "URL do site e do WordPress são inconsistentes. Corrija na página Configurações > Geral: %1$1s não é %2$2s"
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Não tente redirecionar todos os seus 404s - isso não é uma coisa boa."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Somente o tipo de página 404 é suportado atualmente."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Tipo de página"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Digite endereços IP (um por linha)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Descreva o propósito deste redirecionamento (opcional)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - Sou uma chaleira"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Proibido"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Solicitação inválida"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Não modificado"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - Veja outro"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Fazer nada (ignorar)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr "URL de destino se não houver correspondência (em branco para ignorar)"
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr "URL de destino se houver correspondência (em branco para ignorar)"
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Mostrar todos"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Excluir todos os registros para estas entradas"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Excluir todos os registros para esta entrada"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Excluir entradas no registro"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Agrupar por IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Agrupar por URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "Não agrupar"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Ignorar URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Bloquear IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Redirecionar todos"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Número"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL e tipo de página do WordPress"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL e IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Problema"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Bom"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Verificar"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Verificar redirecionamento"
541
 
571
  msgid "Error"
572
  msgstr "Erro"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Digite o URL inteiro, incluindo http:// ou https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "O seu navegador pode fazer cache de URL, o que dificulta saber se um redirecionamento está funcionando como deveria. Use isto para verificar um URL e ver como ele está realmente sendo redirecionado."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Teste de redirecionamento"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Destino"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "O URL não está sendo redirecionado com o Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "O URL está sendo redirecionado com o Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Não foi possível carregar os detalhes"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Digite o URL do servidor para correspondência"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Servidor"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Digite a função ou capacidade"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Função"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Texto do referenciador do navegador para correspondênica"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Usuário de agente do navegador para correspondência"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "O URL relativo que você quer redirecionar"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "O URL de destino para qual você quer redirecionar, se houver correspondência"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(beta)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Forçar HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / Informações sobre privacidade (em inglês)"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Adicionar novo"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Desconecte-se da sua conta e acesse novamente."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL e função/capacidade"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL e servidor"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "O endereço do WordPress e do site são consistentes"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "Aceitar Idioma"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Valor do cabeçalho"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Nome cabeçalho"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "Cabeçalho HTTP"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "Nome do filtro WordPress"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Nome do filtro"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Valor do cookie"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Nome do cookie"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Cookie"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "limpando seu cache."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL e cabeçalho HTTP"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL e filtro personalizado"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL e cookie"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 excluído"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "API REST"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "Como o Redirection usa a API REST. Não altere a menos que seja necessário"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "Nenhuma das sugestões ajudou"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Não foi possível carregar o Redirection ☹️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Erro de agente de usuário"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Agente de usuário desconhecido"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Dispositivo"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Sistema operacional"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Navegador"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Motor"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Agente de usuário"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Agente"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "Não registrar IP"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Registrar IP completo"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Tornar IP anônimo (mascarar a última parte)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Monitorar alterações em %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "Registro de IP"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(selecione o nível de registro de IP)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Informações geográficas"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Informação sobre o agente"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Filtrar por IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Referenciador / Agente de usuário"
891
 
894
  msgstr "Erro IP Geo"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Algo deu errado ao obter essa informação"
900
 
935
  msgid "Trash"
936
  msgstr "Lixeira"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  msgstr "O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  msgstr "A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  msgstr "Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Nunca fazer cache"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "Uma hora"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Cache dos redirecionamentos"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Tem certeza de que deseja importar de %s?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Importar de plugins"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "total = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Importar de %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "O Redirection requer o WordPress v%1$1s, mas você está usando a versão v%2$2s. Atualize o WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "Redirecionamentos de \"slugs anteriores\" do WordPress"
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Criar redirecionamento atrelado (adicionado ao fim do URL)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr "O <code>Redirectioni10n</code> não está definido. Isso geralmente significa que outro plugin está impedindo o Redirection de carregar. Desative todos os plugins e tente novamente."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  msgstr "Se o botão Correção mágica não funcionar, você deve ler o erro e verificar se consegue corrigi-lo manualmente. Caso contrário, siga a seção \"Preciso de ajuda\" abaixo."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Correção mágica ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Status do plugin"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Personalizado"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Móvel"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Leitores de feed"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Bibliotecas"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "Alterações do monitoramento de URLs"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Salvar alterações neste grupo"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "Por exemplo, \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "Monitoramento de URLs"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Excluir 404s"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Excluir registros do IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Excluir tudo que corresponder a \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "Se você estiver usando um plugin ou serviço de cache de página (CloudFlare, OVH, etc), então você também poderá tentar limpar esse cache."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Não foi possível carregar o Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "Todas as tabelas presentes"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "O Redirection foi detectado no cache"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Limpe o cache do seu navegador e recarregue esta página."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "Se você acha que o erro é do Redirection, abra um chamado."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Carregando, aguarde..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  msgstr "{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Criar chamado"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Detalhes importantes"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Precisa de ajuda?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr "Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Não existe mais"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Posição"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr "Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Módulo Apache"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Importar para grupo"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Importar um arquivo CSV, .htaccess ou JSON."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Clique 'Adicionar arquivo' ou arraste e solte aqui."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Adicionar arquivo"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "Arquivo selecionado"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Importando"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Importação concluída"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Total de redirecionamentos importados:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Verifique novamente se o arquivo é o formato correto!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Fechar"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "Todas as importações serão anexadas ao banco de dados atual."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Exportar"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Tudo"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "Redirecionamentos WordPress"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "Redirecionamentos Apache"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "Redirecionamentos Nginx"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr ".htaccess do Apache"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Regras de reescrita do Nginx"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "JSON do Redirection"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "Ver"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Arquivos de registro podem ser exportados nas páginas de registro."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Importar/Exportar"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Registros"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "Erro 404"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "Eu gostaria de ajudar mais um pouco."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Doação 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Redirecionamento salvo"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Registro excluído"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Configurações salvas"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Grupo salvo"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Tem certeza de que deseja excluir este item?"
1376
  msgstr[1] "Tem certeza de que deseja excluir estes item?"
1377
 
1378
+ #: redirection-strings.php:462
1379
  msgid "pass"
1380
  msgstr "manter url"
1381
 
1382
+ #: redirection-strings.php:454
1383
  msgid "All groups"
1384
  msgstr "Todos os grupos"
1385
 
1386
+ #: redirection-strings.php:97
1387
  msgid "301 - Moved Permanently"
1388
  msgstr "301 - Mudou permanentemente"
1389
 
1390
+ #: redirection-strings.php:98
1391
  msgid "302 - Found"
1392
  msgstr "302 - Encontrado"
1393
 
1394
+ #: redirection-strings.php:101
1395
  msgid "307 - Temporary Redirect"
1396
  msgstr "307 - Redirecionamento temporário"
1397
 
1398
+ #: redirection-strings.php:102
1399
  msgid "308 - Permanent Redirect"
1400
  msgstr "308 - Redirecionamento permanente"
1401
 
1402
+ #: redirection-strings.php:104
1403
  msgid "401 - Unauthorized"
1404
  msgstr "401 - Não autorizado"
1405
 
1406
+ #: redirection-strings.php:106
1407
  msgid "404 - Not Found"
1408
  msgstr "404 - Não encontrado"
1409
 
1410
+ #: redirection-strings.php:161
1411
  msgid "Title"
1412
  msgstr "Título"
1413
 
1414
+ #: redirection-strings.php:115
1415
  msgid "When matched"
1416
  msgstr "Quando corresponder"
1417
 
1418
+ #: redirection-strings.php:70
1419
  msgid "with HTTP code"
1420
  msgstr "com código HTTP"
1421
 
1422
+ #: redirection-strings.php:120
1423
  msgid "Show advanced options"
1424
  msgstr "Exibir opções avançadas"
1425
 
1426
+ #: redirection-strings.php:75
1427
  msgid "Matched Target"
1428
  msgstr "Destino se correspondido"
1429
 
1430
+ #: redirection-strings.php:77
1431
  msgid "Unmatched Target"
1432
  msgstr "Destino se não correspondido"
1433
 
1439
  msgid "View notice"
1440
  msgstr "Veja o aviso"
1441
 
1442
+ #: models/redirect-sanitizer.php:170
1443
  msgid "Invalid source URL"
1444
  msgstr "URL de origem inválido"
1445
 
1446
+ #: models/redirect-sanitizer.php:99
1447
  msgid "Invalid redirect action"
1448
  msgstr "Ação de redirecionamento inválida"
1449
 
1450
+ #: models/redirect-sanitizer.php:93
1451
  msgid "Invalid redirect matcher"
1452
  msgstr "Critério de redirecionamento inválido"
1453
 
1454
+ #: models/redirect.php:253
1455
  msgid "Unable to add new redirect"
1456
  msgstr "Não foi possível criar novo redirecionamento"
1457
 
1458
+ #: redirection-strings.php:23 redirection-strings.php:279
1459
  msgid "Something went wrong 🙁"
1460
  msgstr "Algo deu errado 🙁"
1461
 
1468
  msgid "Log entries (%d max)"
1469
  msgstr "Entradas do registro (máx %d)"
1470
 
1471
+ #: redirection-strings.php:184
1472
  msgid "Search by IP"
1473
  msgstr "Pesquisar por IP"
1474
 
1475
+ #: redirection-strings.php:179
1476
  msgid "Select bulk action"
1477
  msgstr "Selecionar ações em massa"
1478
 
1479
+ #: redirection-strings.php:180
1480
  msgid "Bulk Actions"
1481
  msgstr "Ações em massa"
1482
 
1483
+ #: redirection-strings.php:181
1484
  msgid "Apply"
1485
  msgstr "Aplicar"
1486
 
1487
+ #: redirection-strings.php:172
1488
  msgid "First page"
1489
  msgstr "Primeira página"
1490
 
1491
+ #: redirection-strings.php:173
1492
  msgid "Prev page"
1493
  msgstr "Página anterior"
1494
 
1495
+ #: redirection-strings.php:174
1496
  msgid "Current Page"
1497
  msgstr "Página atual"
1498
 
1499
+ #: redirection-strings.php:175
1500
  msgid "of %(page)s"
1501
  msgstr "de %(page)s"
1502
 
1503
+ #: redirection-strings.php:176
1504
  msgid "Next page"
1505
  msgstr "Próxima página"
1506
 
1507
+ #: redirection-strings.php:177
1508
  msgid "Last page"
1509
  msgstr "Última página"
1510
 
1511
+ #: redirection-strings.php:178
1512
  msgid "%s item"
1513
  msgid_plural "%s items"
1514
  msgstr[0] "%s item"
1515
  msgstr[1] "%s itens"
1516
 
1517
+ #: redirection-strings.php:171
1518
  msgid "Select All"
1519
  msgstr "Selecionar tudo"
1520
 
1521
+ #: redirection-strings.php:183
1522
  msgid "Sorry, something went wrong loading the data - please try again"
1523
  msgstr "Desculpe, mas algo deu errado ao carregar os dados - tente novamente"
1524
 
1525
+ #: redirection-strings.php:182
1526
  msgid "No results"
1527
  msgstr "Nenhum resultado"
1528
 
1529
+ #: redirection-strings.php:322
1530
  msgid "Delete the logs - are you sure?"
1531
  msgstr "Excluir os registros - Você tem certeza?"
1532
 
1533
+ #: redirection-strings.php:323
1534
  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."
1535
  msgstr "Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."
1536
 
1537
+ #: redirection-strings.php:324
1538
  msgid "Yes! Delete the logs"
1539
  msgstr "Sim! Exclua os registros"
1540
 
1541
+ #: redirection-strings.php:325
1542
  msgid "No! Don't delete the logs"
1543
  msgstr "Não! Não exclua os registros"
1544
 
1545
+ #: redirection-strings.php:479
1546
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1547
  msgstr "Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."
1548
 
1549
+ #: redirection-strings.php:478 redirection-strings.php:480
1550
  msgid "Newsletter"
1551
  msgstr "Boletim"
1552
 
1553
+ #: redirection-strings.php:481
1554
  msgid "Want to keep up to date with changes to Redirection?"
1555
  msgstr "Quer ficar a par de mudanças no Redirection?"
1556
 
1557
+ #: redirection-strings.php:482
1558
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1559
  msgstr "Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."
1560
 
1561
+ #: redirection-strings.php:483
1562
  msgid "Your email address:"
1563
  msgstr "Seu endereço de e-mail:"
1564
 
1565
+ #: redirection-strings.php:382
1566
  msgid "You've supported this plugin - thank you!"
1567
  msgstr "Você apoiou este plugin - obrigado!"
1568
 
1569
+ #: redirection-strings.php:385
1570
  msgid "You get useful software and I get to carry on making it better."
1571
  msgstr "Você obtém softwares úteis e eu continuo fazendo isso melhor."
1572
 
1573
+ #: redirection-strings.php:393 redirection-strings.php:398
1574
  msgid "Forever"
1575
  msgstr "Para sempre"
1576
 
1577
+ #: redirection-strings.php:374
1578
  msgid "Delete the plugin - are you sure?"
1579
  msgstr "Excluir o plugin - Você tem certeza?"
1580
 
1581
+ #: redirection-strings.php:375
1582
  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."
1583
  msgstr "A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."
1584
 
1585
+ #: redirection-strings.php:376
1586
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1587
  msgstr "Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."
1588
 
1589
+ #: redirection-strings.php:377
1590
  msgid "Yes! Delete the plugin"
1591
  msgstr "Sim! Exclua o plugin"
1592
 
1593
+ #: redirection-strings.php:378
1594
  msgid "No! Don't delete the plugin"
1595
  msgstr "Não! Não exclua o plugin"
1596
 
1602
  msgid "Manage all your 301 redirects and monitor 404 errors"
1603
  msgstr "Gerencie todos os seus redirecionamentos 301 e monitore erros 404"
1604
 
1605
+ #: redirection-strings.php:384
1606
  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}}."
1607
  msgstr "O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."
1608
 
1609
+ #: redirection-admin.php:298
1610
  msgid "Redirection Support"
1611
  msgstr "Ajuda do Redirection"
1612
 
1613
+ #: redirection-strings.php:65 redirection-strings.php:274
1614
  msgid "Support"
1615
  msgstr "Ajuda"
1616
 
1622
  msgid "Log"
1623
  msgstr "Registro"
1624
 
1625
+ #: redirection-strings.php:380
1626
  msgid "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."
1627
  msgstr "Selecionar esta opção irá remover todos os redirecionamentos, logs e todas as opções associadas ao plugin Redirection. Certifique-se de que é isso mesmo que deseja fazer."
1628
 
1629
+ #: redirection-strings.php:379
1630
  msgid "Delete Redirection"
1631
  msgstr "Excluir o Redirection"
1632
 
1633
+ #: redirection-strings.php:292
1634
  msgid "Upload"
1635
  msgstr "Carregar"
1636
 
1637
+ #: redirection-strings.php:303
1638
  msgid "Import"
1639
  msgstr "Importar"
1640
 
1641
+ #: redirection-strings.php:444
1642
  msgid "Update"
1643
  msgstr "Atualizar"
1644
 
1645
+ #: redirection-strings.php:433
1646
  msgid "Auto-generate URL"
1647
  msgstr "Gerar automaticamente o URL"
1648
 
1649
+ #: redirection-strings.php:423
1650
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1651
  msgstr "Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"
1652
 
1653
+ #: redirection-strings.php:422
1654
  msgid "RSS Token"
1655
  msgstr "Token RSS"
1656
 
1657
+ #: redirection-strings.php:416
1658
  msgid "404 Logs"
1659
  msgstr "Registros de 404"
1660
 
1661
+ #: redirection-strings.php:415 redirection-strings.php:417
1662
  msgid "(time to keep logs for)"
1663
  msgstr "(tempo para manter os registros)"
1664
 
1665
+ #: redirection-strings.php:414
1666
  msgid "Redirect Logs"
1667
  msgstr "Registros de redirecionamento"
1668
 
1669
+ #: redirection-strings.php:413
1670
  msgid "I'm a nice person and I have helped support the author of this plugin"
1671
  msgstr "Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"
1672
 
1673
+ #: redirection-strings.php:387
1674
  msgid "Plugin Support"
1675
  msgstr "Suporte do plugin"
1676
 
1677
+ #: redirection-strings.php:64 redirection-strings.php:273
1678
  msgid "Options"
1679
  msgstr "Opções"
1680
 
1681
+ #: redirection-strings.php:392
1682
  msgid "Two months"
1683
  msgstr "Dois meses"
1684
 
1685
+ #: redirection-strings.php:391
1686
  msgid "A month"
1687
  msgstr "Um mês"
1688
 
1689
+ #: redirection-strings.php:390 redirection-strings.php:397
1690
  msgid "A week"
1691
  msgstr "Uma semana"
1692
 
1693
+ #: redirection-strings.php:389 redirection-strings.php:396
1694
  msgid "A day"
1695
  msgstr "Um dia"
1696
 
1697
+ #: redirection-strings.php:388
1698
  msgid "No logs"
1699
  msgstr "Não registrar"
1700
 
1701
+ #: redirection-strings.php:321 redirection-strings.php:357
1702
+ #: redirection-strings.php:362
1703
  msgid "Delete All"
1704
  msgstr "Apagar Tudo"
1705
 
1706
+ #: redirection-strings.php:251
1707
  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."
1708
  msgstr "Use grupos para organizar os seus redirecionamentos. Os grupos são associados a um módulo, e o módulo afeta como os redirecionamentos do grupo funcionam. Na dúvida, use o módulo WordPress."
1709
 
1710
+ #: redirection-strings.php:250
1711
  msgid "Add Group"
1712
  msgstr "Adicionar grupo"
1713
 
1714
+ #: redirection-strings.php:185
1715
  msgid "Search"
1716
  msgstr "Pesquisar"
1717
 
1718
+ #: redirection-strings.php:60 redirection-strings.php:269
1719
  msgid "Groups"
1720
  msgstr "Grupos"
1721
 
1722
+ #: redirection-strings.php:25 redirection-strings.php:117
1723
+ #: redirection-strings.php:260
1724
  msgid "Save"
1725
  msgstr "Salvar"
1726
 
1727
+ #: redirection-strings.php:116 redirection-strings.php:170
1728
  msgid "Group"
1729
  msgstr "Grupo"
1730
 
1731
+ #: redirection-strings.php:121
1732
  msgid "Match"
1733
  msgstr "Corresponder"
1734
 
1735
+ #: redirection-strings.php:455
1736
  msgid "Add new redirection"
1737
  msgstr "Adicionar novo redirecionamento"
1738
 
1739
+ #: redirection-strings.php:118 redirection-strings.php:261
1740
+ #: redirection-strings.php:293
1741
  msgid "Cancel"
1742
  msgstr "Cancelar"
1743
 
1744
+ #: redirection-strings.php:317
1745
  msgid "Download"
1746
  msgstr "Baixar"
1747
 
1748
  #. Plugin Name of the plugin
1749
+ #: redirection-strings.php:240
1750
  msgid "Redirection"
1751
  msgstr "Redirection"
1752
 
1754
  msgid "Settings"
1755
  msgstr "Configurações"
1756
 
1757
+ #: redirection-strings.php:95
1758
  msgid "Error (404)"
1759
  msgstr "Erro (404)"
1760
 
1761
+ #: redirection-strings.php:94
1762
  msgid "Pass-through"
1763
  msgstr "Manter URL de origem"
1764
 
1765
+ #: redirection-strings.php:93
1766
  msgid "Redirect to random post"
1767
  msgstr "Redirecionar para um post aleatório"
1768
 
1769
+ #: redirection-strings.php:92
1770
  msgid "Redirect to URL"
1771
  msgstr "Redirecionar para URL"
1772
 
1773
+ #: models/redirect-sanitizer.php:160
1774
  msgid "Invalid group when creating redirect"
1775
  msgstr "Grupo inválido ao criar o redirecionamento"
1776
 
1777
+ #: redirection-strings.php:142 redirection-strings.php:330
1778
+ #: redirection-strings.php:338 redirection-strings.php:343
1779
  msgid "IP"
1780
  msgstr "IP"
1781
 
1782
+ #: redirection-strings.php:156 redirection-strings.php:157
1783
+ #: redirection-strings.php:200 redirection-strings.php:328
1784
+ #: redirection-strings.php:336 redirection-strings.php:341
1785
  msgid "Source URL"
1786
  msgstr "URL de origem"
1787
 
1788
+ #: redirection-strings.php:327 redirection-strings.php:340
1789
  msgid "Date"
1790
  msgstr "Data"
1791
 
1792
+ #: redirection-strings.php:353 redirection-strings.php:366
1793
+ #: redirection-strings.php:370 redirection-strings.php:456
1794
  msgid "Add Redirect"
1795
  msgstr "Adicionar redirecionamento"
1796
 
1797
+ #: redirection-strings.php:249
1798
  msgid "All modules"
1799
  msgstr "Todos os módulos"
1800
 
1801
+ #: redirection-strings.php:255
1802
  msgid "View Redirects"
1803
  msgstr "Ver redirecionamentos"
1804
 
1805
+ #: redirection-strings.php:245 redirection-strings.php:259
1806
  msgid "Module"
1807
  msgstr "Módulo"
1808
 
1809
+ #: redirection-strings.php:59 redirection-strings.php:244
1810
  msgid "Redirects"
1811
  msgstr "Redirecionamentos"
1812
 
1813
+ #: redirection-strings.php:243 redirection-strings.php:252
1814
+ #: redirection-strings.php:258
1815
  msgid "Name"
1816
  msgstr "Nome"
1817
 
1818
+ #: redirection-strings.php:169
1819
  msgid "Filter"
1820
  msgstr "Filtrar"
1821
 
1822
+ #: redirection-strings.php:453
1823
  msgid "Reset hits"
1824
  msgstr "Redefinir acessos"
1825
 
1826
+ #: redirection-strings.php:247 redirection-strings.php:257
1827
+ #: redirection-strings.php:451 redirection-strings.php:461
1828
  msgid "Enable"
1829
  msgstr "Ativar"
1830
 
1831
+ #: redirection-strings.php:248 redirection-strings.php:256
1832
+ #: redirection-strings.php:452 redirection-strings.php:459
1833
  msgid "Disable"
1834
  msgstr "Desativar"
1835
 
1836
+ #: redirection-strings.php:246 redirection-strings.php:254
1837
+ #: redirection-strings.php:331 redirection-strings.php:332
1838
+ #: redirection-strings.php:344 redirection-strings.php:347
1839
+ #: redirection-strings.php:369 redirection-strings.php:381
1840
+ #: redirection-strings.php:450 redirection-strings.php:458
1841
  msgid "Delete"
1842
  msgstr "Excluir"
1843
 
1844
+ #: redirection-strings.php:253 redirection-strings.php:457
1845
  msgid "Edit"
1846
  msgstr "Editar"
1847
 
1848
+ #: redirection-strings.php:449
1849
  msgid "Last Access"
1850
  msgstr "Último Acesso"
1851
 
1852
+ #: redirection-strings.php:448
1853
  msgid "Hits"
1854
  msgstr "Acessos"
1855
 
1856
+ #: redirection-strings.php:446 redirection-strings.php:474
1857
  msgid "URL"
1858
  msgstr "URL"
1859
 
1860
+ #: redirection-strings.php:445
1861
  msgid "Type"
1862
  msgstr "Tipo"
1863
 
1866
  msgstr "Posts modificados"
1867
 
1868
  #: database/schema/latest.php:132 models/group.php:148
1869
+ #: redirection-strings.php:268
1870
  msgid "Redirections"
1871
  msgstr "Redirecionamentos"
1872
 
1873
+ #: redirection-strings.php:122
1874
  msgid "User Agent"
1875
  msgstr "Agente de usuário"
1876
 
1877
+ #: matches/user-agent.php:10 redirection-strings.php:85
1878
  msgid "URL and user agent"
1879
  msgstr "URL e agente de usuário"
1880
 
1881
+ #: redirection-strings.php:79 redirection-strings.php:202
 
1882
  msgid "Target URL"
1883
  msgstr "URL de destino"
1884
 
1885
+ #: matches/url.php:7 redirection-strings.php:81
1886
  msgid "URL only"
1887
  msgstr "URL somente"
1888
 
1889
+ #: redirection-strings.php:109 redirection-strings.php:128
1890
+ #: redirection-strings.php:132 redirection-strings.php:140
1891
+ #: redirection-strings.php:149
1892
  msgid "Regex"
1893
  msgstr "Regex"
1894
 
1895
+ #: redirection-strings.php:147
1896
  msgid "Referrer"
1897
  msgstr "Referenciador"
1898
 
1899
+ #: matches/referrer.php:10 redirection-strings.php:84
1900
  msgid "URL and referrer"
1901
  msgstr "URL e referenciador"
1902
 
1903
+ #: redirection-strings.php:73
1904
  msgid "Logged Out"
1905
  msgstr "Desconectado"
1906
 
1907
+ #: redirection-strings.php:71
1908
  msgid "Logged In"
1909
  msgstr "Conectado"
1910
 
1911
+ #: matches/login.php:8 redirection-strings.php:82
1912
  msgid "URL and login status"
1913
  msgstr "URL e status de login"
locale/redirection-ru_RU.po CHANGED
@@ -11,27 +11,123 @@ msgstr ""
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #: redirection-strings.php:397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Relative REST API"
16
  msgstr ""
17
 
18
- #: redirection-strings.php:396
19
  msgid "Raw REST API"
20
  msgstr ""
21
 
22
- #: redirection-strings.php:395
23
  msgid "Default REST API"
24
  msgstr ""
25
 
26
- #: redirection-strings.php:197
27
- msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can not enter a redirect."
28
  msgstr ""
29
 
30
- #: redirection-strings.php:196
31
  msgid "(Example) The target URL is the new URL"
32
  msgstr ""
33
 
34
- #: redirection-strings.php:194
35
  msgid "(Example) The source URL is your old or original URL"
36
  msgstr ""
37
 
@@ -39,11 +135,11 @@ msgstr ""
39
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
40
  msgstr ""
41
 
42
- #: redirection-strings.php:259
43
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
44
  msgstr ""
45
 
46
- #: redirection-strings.php:255
47
  msgid "A database upgrade is in progress. Please continue to finish."
48
  msgstr "Обновление базы данных в процессе. Пожалуйста, продолжите для завершения."
49
 
@@ -52,188 +148,180 @@ msgstr "Обновление базы данных в процессе. Пожа
52
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:256
56
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
57
  msgstr ""
58
 
59
- #: redirection-strings.php:258
60
  msgid "Redirection database needs updating"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:257
64
  msgid "Update Required"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:234
68
  msgid "I need some support!"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:231
72
  msgid "Finish Setup"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:230
76
  msgid "Checking your REST API"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:229
80
  msgid "Retry"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:228
84
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
85
  msgstr ""
86
 
87
- #: redirection-strings.php:227
88
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
89
  msgstr ""
90
 
91
- #: redirection-strings.php:226
92
  msgid "Some other plugin that blocks the REST API"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:225
96
- msgid "Caching software, for example Cloudflare"
97
- msgstr ""
98
-
99
- #: redirection-strings.php:224
100
- msgid "A server firewall or other server configuration"
101
- msgstr ""
102
-
103
- #: redirection-strings.php:223
104
- msgid "A security plugin"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:222
108
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
109
  msgstr ""
110
 
111
- #: redirection-strings.php:220 redirection-strings.php:232
112
  msgid "Go back"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:219
116
  msgid "Continue Setup"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:217
120
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
121
  msgstr ""
122
 
123
- #: redirection-strings.php:216
124
  msgid "Store IP information for redirects and 404 errors."
125
  msgstr ""
126
 
127
- #: redirection-strings.php:214
128
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
129
  msgstr ""
130
 
131
- #: redirection-strings.php:213
132
  msgid "Keep a log of all redirects and 404 errors."
133
  msgstr ""
134
 
135
- #: redirection-strings.php:212 redirection-strings.php:215
136
- #: redirection-strings.php:218
137
  msgid "{{link}}Read more about this.{{/link}}"
138
  msgstr ""
139
 
140
- #: redirection-strings.php:211
141
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
142
  msgstr ""
143
 
144
- #: redirection-strings.php:210
145
  msgid "Monitor permalink changes in WordPress posts and pages"
146
  msgstr ""
147
 
148
- #: redirection-strings.php:209
149
  msgid "These are some options you may want to enable now. They can be changed at any time."
150
  msgstr ""
151
 
152
- #: redirection-strings.php:208
153
  msgid "Basic Setup"
154
  msgstr ""
155
 
156
- #: redirection-strings.php:207
157
  msgid "Start Setup"
158
  msgstr ""
159
 
160
- #: redirection-strings.php:206
161
  msgid "When ready please press the button to continue."
162
  msgstr ""
163
 
164
- #: redirection-strings.php:205
165
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
166
  msgstr ""
167
 
168
- #: redirection-strings.php:204
169
  msgid "What's next?"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:203
173
  msgid "Check a URL is being redirected"
174
  msgstr ""
175
 
176
- #: redirection-strings.php:202
177
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
178
  msgstr ""
179
 
180
- #: redirection-strings.php:201
181
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
182
  msgstr ""
183
 
184
- #: redirection-strings.php:200
185
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
186
  msgstr ""
187
 
188
- #: redirection-strings.php:199
189
  msgid "Some features you may find useful are"
190
  msgstr ""
191
 
192
- #: redirection-strings.php:198
193
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
194
  msgstr ""
195
 
196
- #: redirection-strings.php:192
197
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
198
  msgstr ""
199
 
200
- #: redirection-strings.php:191
201
  msgid "How do I use this plugin?"
202
  msgstr ""
203
 
204
- #: redirection-strings.php:190
205
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
206
  msgstr ""
207
 
208
- #: redirection-strings.php:189
209
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
210
  msgstr ""
211
 
212
- #: redirection-strings.php:188
213
  msgid "Welcome to Redirection 🚀🎉"
214
  msgstr ""
215
 
216
- #: redirection-strings.php:161
217
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
218
  msgstr ""
219
 
220
- #: redirection-strings.php:160
221
- msgid "To prevent a greedy regular expression you can use a {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
222
  msgstr ""
223
 
224
- #: redirection-strings.php:159
225
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
226
  msgstr ""
227
 
228
- #: redirection-strings.php:158
229
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
230
  msgstr ""
231
 
232
- #: redirection-strings.php:157
233
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
234
  msgstr ""
235
 
236
- #: redirection-strings.php:156
237
  msgid "Anchor values are not sent to the server and cannot be redirected."
238
  msgstr ""
239
 
@@ -285,7 +373,7 @@ msgstr "Попробуйте снова"
285
  msgid "Database problem"
286
  msgstr "Проблема с базой данных"
287
 
288
- #: redirection-admin.php:421
289
  msgid "Please enable JavaScript"
290
  msgstr "Пожалуйста, включите JavaScript"
291
 
@@ -293,7 +381,7 @@ msgstr "Пожалуйста, включите JavaScript"
293
  msgid "Please upgrade your database"
294
  msgstr "Пожалуйста, обновите вашу базу данных"
295
 
296
- #: redirection-admin.php:137 redirection-strings.php:260
297
  msgid "Upgrade Database"
298
  msgstr "Обновить базу данных"
299
 
@@ -330,124 +418,124 @@ msgstr "Установить таблицы Redirection"
330
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
331
  msgstr ""
332
 
333
- #: redirection-strings.php:148
334
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
335
  msgstr "Пожалуйста, не пытайтесь перенаправить все ваши 404, это не лучшее что можно сделать."
336
 
337
- #: redirection-strings.php:147
338
  msgid "Only the 404 page type is currently supported."
339
  msgstr "Сейчас поддерживается только тип страницы 404."
340
 
341
- #: redirection-strings.php:146
342
  msgid "Page Type"
343
  msgstr "Тип страницы"
344
 
345
- #: redirection-strings.php:145
346
  msgid "Enter IP addresses (one per line)"
347
  msgstr "Введите IP адреса (один на строку)"
348
 
349
- #: redirection-strings.php:111
350
  msgid "Describe the purpose of this redirect (optional)"
351
  msgstr "Опишите цель перенаправления (необязательно)"
352
 
353
- #: redirection-strings.php:109
354
  msgid "418 - I'm a teapot"
355
  msgstr "418 - Я чайник"
356
 
357
- #: redirection-strings.php:106
358
  msgid "403 - Forbidden"
359
  msgstr "403 - Доступ запрещен"
360
 
361
- #: redirection-strings.php:104
362
  msgid "400 - Bad Request"
363
  msgstr "400 - Неверный запрос"
364
 
365
- #: redirection-strings.php:101
366
  msgid "304 - Not Modified"
367
  msgstr "304 - Без изменений"
368
 
369
- #: redirection-strings.php:100
370
  msgid "303 - See Other"
371
  msgstr "303 - Посмотрите другое"
372
 
373
- #: redirection-strings.php:97
374
  msgid "Do nothing (ignore)"
375
  msgstr "Ничего не делать (игнорировать)"
376
 
377
- #: redirection-strings.php:75 redirection-strings.php:79
378
  msgid "Target URL when not matched (empty to ignore)"
379
  msgstr ""
380
 
381
- #: redirection-strings.php:73 redirection-strings.php:77
382
  msgid "Target URL when matched (empty to ignore)"
383
  msgstr ""
384
 
385
- #: redirection-strings.php:352 redirection-strings.php:357
386
  msgid "Show All"
387
  msgstr "Показать все"
388
 
389
- #: redirection-strings.php:349
390
  msgid "Delete all logs for these entries"
391
  msgstr "Удалить все журналы для этих элементов"
392
 
393
- #: redirection-strings.php:348 redirection-strings.php:361
394
  msgid "Delete all logs for this entry"
395
  msgstr "Удалить все журналы для этого элемента"
396
 
397
- #: redirection-strings.php:347
398
  msgid "Delete Log Entries"
399
  msgstr "Удалить записи журнала"
400
 
401
- #: redirection-strings.php:345
402
  msgid "Group by IP"
403
  msgstr "Группировка по IP"
404
 
405
- #: redirection-strings.php:344
406
  msgid "Group by URL"
407
  msgstr "Группировка по URL"
408
 
409
- #: redirection-strings.php:343
410
  msgid "No grouping"
411
  msgstr "Без группировки"
412
 
413
- #: redirection-strings.php:342 redirection-strings.php:358
414
  msgid "Ignore URL"
415
  msgstr "Игнорировать URL"
416
 
417
- #: redirection-strings.php:339 redirection-strings.php:354
418
  msgid "Block IP"
419
  msgstr "Блокировка IP"
420
 
421
- #: redirection-strings.php:338 redirection-strings.php:341
422
- #: redirection-strings.php:351 redirection-strings.php:356
423
  msgid "Redirect All"
424
  msgstr "Перенаправить все"
425
 
426
- #: redirection-strings.php:330 redirection-strings.php:332
427
  msgid "Count"
428
  msgstr "Счетчик"
429
 
430
- #: matches/page.php:9 redirection-strings.php:92
431
  msgid "URL and WordPress page type"
432
  msgstr "URL и тип страницы WP"
433
 
434
- #: matches/ip.php:9 redirection-strings.php:88
435
  msgid "URL and IP"
436
  msgstr "URL и IP"
437
 
438
- #: redirection-strings.php:468
439
  msgid "Problem"
440
  msgstr "Проблема"
441
 
442
- #: redirection-strings.php:467
443
  msgid "Good"
444
  msgstr "Хорошо"
445
 
446
- #: redirection-strings.php:457
447
  msgid "Check"
448
  msgstr "Проверка"
449
 
450
- #: redirection-strings.php:441
451
  msgid "Check Redirect"
452
  msgstr "Проверка перенаправления"
453
 
@@ -483,83 +571,83 @@ msgstr "Ожидается"
483
  msgid "Error"
484
  msgstr "Ошибка"
485
 
486
- #: redirection-strings.php:456
487
  msgid "Enter full URL, including http:// or https://"
488
  msgstr "Введите полный URL-адрес, включая http:// или https://"
489
 
490
- #: redirection-strings.php:454
491
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
492
  msgstr "Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."
493
 
494
- #: redirection-strings.php:453
495
  msgid "Redirect Tester"
496
  msgstr "Тестирование перенаправлений"
497
 
498
- #: redirection-strings.php:452
499
  msgid "Target"
500
  msgstr "Цель"
501
 
502
- #: redirection-strings.php:451
503
  msgid "URL is not being redirected with Redirection"
504
  msgstr "URL-адрес не перенаправляется с помощью Redirection"
505
 
506
- #: redirection-strings.php:450
507
  msgid "URL is being redirected with Redirection"
508
  msgstr "URL-адрес перенаправлен с помощью Redirection"
509
 
510
- #: redirection-strings.php:449 redirection-strings.php:458
511
  msgid "Unable to load details"
512
  msgstr "Не удается загрузить сведения"
513
 
514
- #: redirection-strings.php:155
515
  msgid "Enter server URL to match against"
516
  msgstr "Введите URL-адрес сервера для совпадений"
517
 
518
- #: redirection-strings.php:154
519
  msgid "Server"
520
  msgstr "Сервер"
521
 
522
- #: redirection-strings.php:153
523
  msgid "Enter role or capability value"
524
  msgstr "Введите значение роли или возможности"
525
 
526
- #: redirection-strings.php:152
527
  msgid "Role"
528
  msgstr "Роль"
529
 
530
- #: redirection-strings.php:150
531
  msgid "Match against this browser referrer text"
532
  msgstr "Совпадение с текстом реферера браузера"
533
 
534
- #: redirection-strings.php:125
535
  msgid "Match against this browser user agent"
536
  msgstr "Сопоставить с этим пользовательским агентом обозревателя"
537
 
538
- #: redirection-strings.php:117
539
  msgid "The relative URL you want to redirect from"
540
  msgstr "Относительный URL-адрес, с которого требуется перенаправить"
541
 
542
- #: redirection-strings.php:71 redirection-strings.php:81
543
  msgid "The target URL you want to redirect to if matched"
544
  msgstr "Целевой URL-адрес, который требуется перенаправить в случае совпадения"
545
 
546
- #: redirection-strings.php:420
547
  msgid "(beta)"
548
  msgstr "(бета)"
549
 
550
- #: redirection-strings.php:419
551
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
552
  msgstr "Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"
553
 
554
- #: redirection-strings.php:418
555
  msgid "Force HTTPS"
556
  msgstr "Принудительное HTTPS"
557
 
558
- #: redirection-strings.php:410
559
  msgid "GDPR / Privacy information"
560
  msgstr "GDPR / Информация о конфиденциальности"
561
 
562
- #: redirection-strings.php:277
563
  msgid "Add New"
564
  msgstr "Добавить новое"
565
 
@@ -567,11 +655,11 @@ msgstr "Добавить новое"
567
  msgid "Please logout and login again."
568
  msgstr "Пожалуйста, выйдите и войдите снова."
569
 
570
- #: matches/user-role.php:9 redirection-strings.php:84
571
  msgid "URL and role/capability"
572
  msgstr "URL-адрес и роль/возможности"
573
 
574
- #: matches/server.php:9 redirection-strings.php:89
575
  msgid "URL and server"
576
  msgstr "URL и сервер"
577
 
@@ -587,75 +675,75 @@ msgstr "Протокол сайта и домашней"
587
  msgid "Site and home are consistent"
588
  msgstr "Сайт и домашняя страница соответствуют"
589
 
590
- #: redirection-strings.php:143
591
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
592
  msgstr "Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."
593
 
594
- #: redirection-strings.php:141
595
  msgid "Accept Language"
596
  msgstr "заголовок Accept Language"
597
 
598
- #: redirection-strings.php:139
599
  msgid "Header value"
600
  msgstr "Значение заголовка"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Header name"
604
  msgstr "Имя заголовка"
605
 
606
- #: redirection-strings.php:137
607
  msgid "HTTP Header"
608
  msgstr "Заголовок HTTP"
609
 
610
- #: redirection-strings.php:136
611
  msgid "WordPress filter name"
612
  msgstr "Имя фильтра WordPress"
613
 
614
- #: redirection-strings.php:135
615
  msgid "Filter Name"
616
  msgstr "Название фильтра"
617
 
618
- #: redirection-strings.php:133
619
  msgid "Cookie value"
620
  msgstr "Значение куки"
621
 
622
- #: redirection-strings.php:132
623
  msgid "Cookie name"
624
  msgstr "Имя куки"
625
 
626
- #: redirection-strings.php:131
627
  msgid "Cookie"
628
  msgstr "Куки"
629
 
630
- #: redirection-strings.php:271
631
  msgid "clearing your cache."
632
  msgstr "очистка кеша."
633
 
634
- #: redirection-strings.php:270
635
  msgid "If you are using a caching system such as Cloudflare then please read this: "
636
  msgstr "Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "
637
 
638
- #: matches/http-header.php:11 redirection-strings.php:90
639
  msgid "URL and HTTP header"
640
  msgstr "URL-адрес и заголовок HTTP"
641
 
642
- #: matches/custom-filter.php:9 redirection-strings.php:91
643
  msgid "URL and custom filter"
644
  msgstr "URL-адрес и пользовательский фильтр"
645
 
646
- #: matches/cookie.php:7 redirection-strings.php:87
647
  msgid "URL and cookie"
648
  msgstr "URL и куки"
649
 
650
- #: redirection-strings.php:474
651
  msgid "404 deleted"
652
  msgstr "404 удалено"
653
 
654
- #: redirection-strings.php:221 redirection-strings.php:423
655
  msgid "REST API"
656
  msgstr "REST API"
657
 
658
- #: redirection-strings.php:424
659
  msgid "How Redirection uses the REST API - don't change unless necessary"
660
  msgstr "Как Redirection использует REST API - не изменяются, если это необходимо"
661
 
@@ -687,11 +775,11 @@ msgstr "{{link}} Пожалуйста, временно отключите др
687
  msgid "None of the suggestions helped"
688
  msgstr "Ни одно из предложений не помогло"
689
 
690
- #: redirection-admin.php:400
691
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
692
  msgstr "Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."
693
 
694
- #: redirection-admin.php:394
695
  msgid "Unable to load Redirection ☹️"
696
  msgstr "Не удается загрузить Redirection ☹ ️"
697
 
@@ -728,76 +816,76 @@ msgstr "Ваш WordPress REST API был отключен. Вам нужно б
728
  msgid "https://johngodley.com"
729
  msgstr "https://johngodley.com"
730
 
731
- #: redirection-strings.php:179
732
  msgid "Useragent Error"
733
  msgstr "Ошибка пользовательского агента"
734
 
735
- #: redirection-strings.php:181
736
  msgid "Unknown Useragent"
737
  msgstr "Неизвестный агент пользователя"
738
 
739
- #: redirection-strings.php:182
740
  msgid "Device"
741
  msgstr "Устройство"
742
 
743
- #: redirection-strings.php:183
744
  msgid "Operating System"
745
  msgstr "Операционная система"
746
 
747
- #: redirection-strings.php:184
748
  msgid "Browser"
749
  msgstr "Браузер"
750
 
751
- #: redirection-strings.php:185
752
  msgid "Engine"
753
  msgstr "Движок"
754
 
755
- #: redirection-strings.php:186
756
  msgid "Useragent"
757
  msgstr "Пользовательский агент"
758
 
759
- #: redirection-strings.php:52 redirection-strings.php:187
760
  msgid "Agent"
761
  msgstr "Агент"
762
 
763
- #: redirection-strings.php:392
764
  msgid "No IP logging"
765
  msgstr "Не протоколировать IP"
766
 
767
- #: redirection-strings.php:393
768
  msgid "Full IP logging"
769
  msgstr "Полное протоколирование IP-адресов"
770
 
771
- #: redirection-strings.php:394
772
  msgid "Anonymize IP (mask last part)"
773
  msgstr "Анонимизировать IP (маска последняя часть)"
774
 
775
- #: redirection-strings.php:402
776
  msgid "Monitor changes to %(type)s"
777
  msgstr "Отслеживание изменений в %(type)s"
778
 
779
- #: redirection-strings.php:408
780
  msgid "IP Logging"
781
  msgstr "Протоколирование IP"
782
 
783
- #: redirection-strings.php:409
784
  msgid "(select IP logging level)"
785
  msgstr "(Выберите уровень ведения протокола по IP)"
786
 
787
- #: redirection-strings.php:326 redirection-strings.php:353
788
- #: redirection-strings.php:364
789
  msgid "Geo Info"
790
  msgstr "Географическая информация"
791
 
792
- #: redirection-strings.php:327 redirection-strings.php:365
793
  msgid "Agent Info"
794
  msgstr "Информация о агенте"
795
 
796
- #: redirection-strings.php:328 redirection-strings.php:366
797
  msgid "Filter by IP"
798
  msgstr "Фильтровать по IP"
799
 
800
- #: redirection-strings.php:322 redirection-strings.php:335
801
  msgid "Referrer / User Agent"
802
  msgstr "Пользователь / Агент пользователя"
803
 
@@ -806,7 +894,7 @@ msgid "Geo IP Error"
806
  msgstr "Ошибка GeoIP"
807
 
808
  #: redirection-strings.php:38 redirection-strings.php:57
809
- #: redirection-strings.php:180
810
  msgid "Something went wrong obtaining this information"
811
  msgstr "Что-то пошло не так получение этой информации"
812
 
@@ -847,12 +935,12 @@ msgstr "Работает на {{link}}redirect.li{{/link}}"
847
  msgid "Trash"
848
  msgstr "Корзина"
849
 
850
- #: redirection-admin.php:399
851
  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"
852
  msgstr "Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"
853
 
854
  #. translators: URL
855
- #: redirection-admin.php:299
856
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
857
  msgstr "Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."
858
 
@@ -860,56 +948,56 @@ msgstr "Вы можете найти полную документацию об
860
  msgid "https://redirection.me/"
861
  msgstr "https://redirection.me/"
862
 
863
- #: redirection-strings.php:445
864
  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."
865
  msgstr "Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."
866
 
867
- #: redirection-strings.php:446
868
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
869
  msgstr "Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."
870
 
871
- #: redirection-strings.php:448
872
  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!"
873
  msgstr "Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"
874
 
875
- #: redirection-strings.php:387
876
  msgid "Never cache"
877
  msgstr "Не кэшировать"
878
 
879
- #: redirection-strings.php:388
880
  msgid "An hour"
881
  msgstr "Час"
882
 
883
- #: redirection-strings.php:421
884
  msgid "Redirect Cache"
885
  msgstr "Перенаправление кэша"
886
 
887
- #: redirection-strings.php:422
888
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
889
  msgstr "Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"
890
 
891
- #: redirection-strings.php:293
892
  msgid "Are you sure you want to import from %s?"
893
  msgstr "Вы действительно хотите импортировать из %s ?"
894
 
895
- #: redirection-strings.php:294
896
  msgid "Plugin Importers"
897
  msgstr "Импортеры плагина"
898
 
899
- #: redirection-strings.php:295
900
  msgid "The following redirect plugins were detected on your site and can be imported from."
901
  msgstr "Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."
902
 
903
- #: redirection-strings.php:278
904
  msgid "total = "
905
  msgstr "всего = "
906
 
907
- #: redirection-strings.php:279
908
  msgid "Import from %s"
909
  msgstr "Импортировать из %s"
910
 
911
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
912
- #: redirection-admin.php:382
913
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
914
  msgstr "Redirection требует WordPress v%1$1s, вы используете v%2$2s - пожалуйста, обновите ваш WordPress"
915
 
@@ -917,67 +1005,67 @@ msgstr "Redirection требует WordPress v%1$1s, вы используете
917
  msgid "Default WordPress \"old slugs\""
918
  msgstr "\"Старые ярлыки\" WordPress по умолчанию"
919
 
920
- #: redirection-strings.php:401
921
  msgid "Create associated redirect (added to end of URL)"
922
  msgstr "Создание связанного перенаправления (Добавлено в конец URL-адреса)"
923
 
924
- #: redirection-admin.php:402
925
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
926
  msgstr "<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."
927
 
928
- #: redirection-strings.php:465
929
  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."
930
  msgstr "Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."
931
 
932
- #: redirection-strings.php:466
933
  msgid "⚡️ Magic fix ⚡️"
934
  msgstr "⚡️ Волшебное исправление ⚡️"
935
 
936
- #: redirection-strings.php:469
937
  msgid "Plugin Status"
938
  msgstr "Статус плагина"
939
 
940
- #: redirection-strings.php:126 redirection-strings.php:140
941
  msgid "Custom"
942
  msgstr "Пользовательский"
943
 
944
- #: redirection-strings.php:127
945
  msgid "Mobile"
946
  msgstr "Мобильный"
947
 
948
- #: redirection-strings.php:128
949
  msgid "Feed Readers"
950
  msgstr "Читатели ленты"
951
 
952
- #: redirection-strings.php:129
953
  msgid "Libraries"
954
  msgstr "Библиотеки"
955
 
956
- #: redirection-strings.php:398
957
  msgid "URL Monitor Changes"
958
  msgstr "URL-адрес монитор изменений"
959
 
960
- #: redirection-strings.php:399
961
  msgid "Save changes to this group"
962
  msgstr "Сохранить изменения в этой группе"
963
 
964
- #: redirection-strings.php:400
965
  msgid "For example \"/amp\""
966
  msgstr "Например \"/amp\""
967
 
968
- #: redirection-strings.php:411
969
  msgid "URL Monitor"
970
  msgstr "Монитор URL"
971
 
972
- #: redirection-strings.php:360
973
  msgid "Delete 404s"
974
  msgstr "Удалить 404"
975
 
976
- #: redirection-strings.php:312
977
  msgid "Delete all from IP %s"
978
  msgstr "Удалить все с IP %s"
979
 
980
- #: redirection-strings.php:313
981
  msgid "Delete all matching \"%s\""
982
  msgstr "Удалить все совпадения \"%s\""
983
 
@@ -985,15 +1073,15 @@ msgstr "Удалить все совпадения \"%s\""
985
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
986
  msgstr "Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."
987
 
988
- #: redirection-admin.php:397
989
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
990
  msgstr "Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"
991
 
992
- #: redirection-admin.php:396 redirection-strings.php:274
993
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
994
  msgstr "Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."
995
 
996
- #: redirection-admin.php:385
997
  msgid "Unable to load Redirection"
998
  msgstr "Не удается загрузить Redirection"
999
 
@@ -1049,11 +1137,11 @@ msgstr "Следующие таблицы отсутствуют:"
1049
  msgid "All tables present"
1050
  msgstr "Все таблицы в наличии"
1051
 
1052
- #: redirection-strings.php:268
1053
  msgid "Cached Redirection detected"
1054
  msgstr "Обнаружено кэшированное перенаправление"
1055
 
1056
- #: redirection-strings.php:269
1057
  msgid "Please clear your browser cache and reload this page."
1058
  msgstr "Очистите кеш браузера и перезагрузите эту страницу."
1059
 
@@ -1073,27 +1161,27 @@ msgstr "Ваш сервер вернул ошибку 403 (доступ запр
1073
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1074
  msgstr "Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."
1075
 
1076
- #: redirection-admin.php:401
1077
  msgid "If you think Redirection is at fault then create an issue."
1078
  msgstr "Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."
1079
 
1080
- #: redirection-admin.php:395
1081
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1082
  msgstr "Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."
1083
 
1084
- #: redirection-admin.php:417
1085
  msgid "Loading, please wait..."
1086
  msgstr "Загрузка, пожалуйста подождите..."
1087
 
1088
- #: redirection-strings.php:298
1089
  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)."
1090
  msgstr "{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."
1091
 
1092
- #: redirection-strings.php:273
1093
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1094
  msgstr "Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."
1095
 
1096
- #: redirection-strings.php:275
1097
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1098
  msgstr "Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."
1099
 
@@ -1101,7 +1189,7 @@ msgstr "Если это не поможет, откройте консоль о
1101
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1102
  msgstr "Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."
1103
 
1104
- #: redirection-admin.php:405 redirection-strings.php:33
1105
  msgid "Create Issue"
1106
  msgstr "Создать тикет о проблеме"
1107
 
@@ -1113,234 +1201,234 @@ msgstr "Электронная почта"
1113
  msgid "Important details"
1114
  msgstr "Важные детали"
1115
 
1116
- #: redirection-strings.php:444
1117
  msgid "Need help?"
1118
  msgstr "Нужна помощь?"
1119
 
1120
- #: redirection-strings.php:447
1121
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1122
  msgstr "Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."
1123
 
1124
- #: redirection-strings.php:428
1125
  msgid "Pos"
1126
  msgstr "Pos"
1127
 
1128
- #: redirection-strings.php:108
1129
  msgid "410 - Gone"
1130
  msgstr "410 - Удалено"
1131
 
1132
- #: redirection-strings.php:116
1133
  msgid "Position"
1134
  msgstr "Позиция"
1135
 
1136
- #: redirection-strings.php:415
1137
  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"
1138
  msgstr "Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"
1139
 
1140
- #: redirection-strings.php:416
1141
  msgid "Apache Module"
1142
  msgstr "Модуль Apache"
1143
 
1144
- #: redirection-strings.php:417
1145
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1146
  msgstr "Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."
1147
 
1148
- #: redirection-strings.php:280
1149
  msgid "Import to group"
1150
  msgstr "Импорт в группу"
1151
 
1152
- #: redirection-strings.php:281
1153
  msgid "Import a CSV, .htaccess, or JSON file."
1154
  msgstr "Импортируйте файл CSV, .htaccess или JSON."
1155
 
1156
- #: redirection-strings.php:282
1157
  msgid "Click 'Add File' or drag and drop here."
1158
  msgstr "Нажмите «Добавить файл» или перетащите сюда."
1159
 
1160
- #: redirection-strings.php:283
1161
  msgid "Add File"
1162
  msgstr "Добавить файл"
1163
 
1164
- #: redirection-strings.php:284
1165
  msgid "File selected"
1166
  msgstr "Выбран файл"
1167
 
1168
- #: redirection-strings.php:287
1169
  msgid "Importing"
1170
  msgstr "Импортирование"
1171
 
1172
- #: redirection-strings.php:288
1173
  msgid "Finished importing"
1174
  msgstr "Импорт завершен"
1175
 
1176
- #: redirection-strings.php:289
1177
  msgid "Total redirects imported:"
1178
  msgstr "Всего импортировано перенаправлений:"
1179
 
1180
- #: redirection-strings.php:290
1181
  msgid "Double-check the file is the correct format!"
1182
  msgstr "Дважды проверьте правильность формата файла!"
1183
 
1184
- #: redirection-strings.php:291
1185
  msgid "OK"
1186
  msgstr "OK"
1187
 
1188
- #: redirection-strings.php:122 redirection-strings.php:292
1189
  msgid "Close"
1190
  msgstr "Закрыть"
1191
 
1192
- #: redirection-strings.php:297
1193
  msgid "All imports will be appended to the current database."
1194
  msgstr "Все импортируемые компоненты будут добавлены в текущую базу данных."
1195
 
1196
- #: redirection-strings.php:299 redirection-strings.php:319
1197
  msgid "Export"
1198
  msgstr "Экспорт"
1199
 
1200
- #: redirection-strings.php:300
1201
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1202
  msgstr "Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."
1203
 
1204
- #: redirection-strings.php:301
1205
  msgid "Everything"
1206
  msgstr "Все"
1207
 
1208
- #: redirection-strings.php:302
1209
  msgid "WordPress redirects"
1210
  msgstr "Перенаправления WordPress"
1211
 
1212
- #: redirection-strings.php:303
1213
  msgid "Apache redirects"
1214
  msgstr "перенаправления Apache"
1215
 
1216
- #: redirection-strings.php:304
1217
  msgid "Nginx redirects"
1218
  msgstr "перенаправления NGINX"
1219
 
1220
- #: redirection-strings.php:305
1221
  msgid "CSV"
1222
  msgstr "CSV"
1223
 
1224
- #: redirection-strings.php:306
1225
  msgid "Apache .htaccess"
1226
  msgstr "Apache .htaccess"
1227
 
1228
- #: redirection-strings.php:307
1229
  msgid "Nginx rewrite rules"
1230
  msgstr "Правила перезаписи nginx"
1231
 
1232
- #: redirection-strings.php:308
1233
  msgid "Redirection JSON"
1234
  msgstr "Перенаправление JSON"
1235
 
1236
- #: redirection-strings.php:309
1237
  msgid "View"
1238
  msgstr "Вид"
1239
 
1240
- #: redirection-strings.php:311
1241
  msgid "Log files can be exported from the log pages."
1242
  msgstr "Файлы логов можно экспортировать из страниц логов."
1243
 
1244
- #: redirection-strings.php:63 redirection-strings.php:263
1245
  msgid "Import/Export"
1246
  msgstr "Импорт/Экспорт"
1247
 
1248
- #: redirection-strings.php:264
1249
  msgid "Logs"
1250
  msgstr "Журналы"
1251
 
1252
- #: redirection-strings.php:265
1253
  msgid "404 errors"
1254
  msgstr "404 ошибки"
1255
 
1256
- #: redirection-strings.php:276
1257
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1258
  msgstr "Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"
1259
 
1260
- #: redirection-strings.php:376
1261
  msgid "I'd like to support some more."
1262
  msgstr "Мне хотелось бы поддержать чуть больше."
1263
 
1264
- #: redirection-strings.php:379
1265
  msgid "Support 💰"
1266
  msgstr "Поддержка 💰"
1267
 
1268
- #: redirection-strings.php:470
1269
  msgid "Redirection saved"
1270
  msgstr "Перенаправление сохранено"
1271
 
1272
- #: redirection-strings.php:471
1273
  msgid "Log deleted"
1274
  msgstr "Лог удален"
1275
 
1276
- #: redirection-strings.php:472
1277
  msgid "Settings saved"
1278
  msgstr "Настройки сохранены"
1279
 
1280
- #: redirection-strings.php:473
1281
  msgid "Group saved"
1282
  msgstr "Группа сохранена"
1283
 
1284
- #: redirection-strings.php:235
1285
  msgid "Are you sure you want to delete this item?"
1286
  msgid_plural "Are you sure you want to delete these items?"
1287
  msgstr[0] "Вы действительно хотите удалить этот пункт?"
1288
  msgstr[1] "Вы действительно хотите удалить этот пункт?"
1289
  msgstr[2] "Вы действительно хотите удалить этот пункт?"
1290
 
1291
- #: redirection-strings.php:443
1292
  msgid "pass"
1293
  msgstr "проход"
1294
 
1295
- #: redirection-strings.php:435
1296
  msgid "All groups"
1297
  msgstr "Все группы"
1298
 
1299
- #: redirection-strings.php:98
1300
  msgid "301 - Moved Permanently"
1301
  msgstr "301 - Переехал навсегда"
1302
 
1303
- #: redirection-strings.php:99
1304
  msgid "302 - Found"
1305
  msgstr "302 - Найдено"
1306
 
1307
- #: redirection-strings.php:102
1308
  msgid "307 - Temporary Redirect"
1309
  msgstr "307 - Временное перенаправление"
1310
 
1311
- #: redirection-strings.php:103
1312
  msgid "308 - Permanent Redirect"
1313
  msgstr "308 - Постоянное перенаправление"
1314
 
1315
- #: redirection-strings.php:105
1316
  msgid "401 - Unauthorized"
1317
  msgstr "401 - Не авторизованы"
1318
 
1319
- #: redirection-strings.php:107
1320
  msgid "404 - Not Found"
1321
  msgstr "404 - Страница не найдена"
1322
 
1323
- #: redirection-strings.php:110
1324
  msgid "Title"
1325
  msgstr "Название"
1326
 
1327
- #: redirection-strings.php:113
1328
  msgid "When matched"
1329
  msgstr "При совпадении"
1330
 
1331
- #: redirection-strings.php:114
1332
  msgid "with HTTP code"
1333
  msgstr "с кодом HTTP"
1334
 
1335
- #: redirection-strings.php:123
1336
  msgid "Show advanced options"
1337
  msgstr "Показать расширенные параметры"
1338
 
1339
- #: redirection-strings.php:76
1340
  msgid "Matched Target"
1341
  msgstr "Совпавшие цели"
1342
 
1343
- #: redirection-strings.php:78
1344
  msgid "Unmatched Target"
1345
  msgstr "Несовпавшая цель"
1346
 
@@ -1352,23 +1440,23 @@ msgstr "Сохранение..."
1352
  msgid "View notice"
1353
  msgstr "Просмотреть уведомление"
1354
 
1355
- #: models/redirect.php:563
1356
  msgid "Invalid source URL"
1357
  msgstr "Неверный исходный URL"
1358
 
1359
- #: models/redirect.php:491
1360
  msgid "Invalid redirect action"
1361
  msgstr "Неверное действие перенаправления"
1362
 
1363
- #: models/redirect.php:485
1364
  msgid "Invalid redirect matcher"
1365
  msgstr "Неверное совпадение перенаправления"
1366
 
1367
- #: models/redirect.php:195
1368
  msgid "Unable to add new redirect"
1369
  msgstr "Не удалось добавить новое перенаправление"
1370
 
1371
- #: redirection-strings.php:23 redirection-strings.php:272
1372
  msgid "Something went wrong 🙁"
1373
  msgstr "Что-то пошло не так 🙁"
1374
 
@@ -1381,130 +1469,130 @@ msgstr "Я пытался что-то сделать, и все пошло не
1381
  msgid "Log entries (%d max)"
1382
  msgstr "Журнал записей (%d максимум)"
1383
 
1384
- #: redirection-strings.php:177
1385
  msgid "Search by IP"
1386
  msgstr "Поиск по IP"
1387
 
1388
- #: redirection-strings.php:172
1389
  msgid "Select bulk action"
1390
  msgstr "Выберите массовое действие"
1391
 
1392
- #: redirection-strings.php:173
1393
  msgid "Bulk Actions"
1394
  msgstr "Массовые действия"
1395
 
1396
- #: redirection-strings.php:174
1397
  msgid "Apply"
1398
  msgstr "Применить"
1399
 
1400
- #: redirection-strings.php:165
1401
  msgid "First page"
1402
  msgstr "Первая страница"
1403
 
1404
- #: redirection-strings.php:166
1405
  msgid "Prev page"
1406
  msgstr "Предыдущая страница"
1407
 
1408
- #: redirection-strings.php:167
1409
  msgid "Current Page"
1410
  msgstr "Текущая страница"
1411
 
1412
- #: redirection-strings.php:168
1413
  msgid "of %(page)s"
1414
  msgstr "из %(page)s"
1415
 
1416
- #: redirection-strings.php:169
1417
  msgid "Next page"
1418
  msgstr "Следующая страница"
1419
 
1420
- #: redirection-strings.php:170
1421
  msgid "Last page"
1422
  msgstr "Последняя страница"
1423
 
1424
- #: redirection-strings.php:171
1425
  msgid "%s item"
1426
  msgid_plural "%s items"
1427
  msgstr[0] "%s элемент"
1428
  msgstr[1] "%s элемента"
1429
  msgstr[2] "%s элементов"
1430
 
1431
- #: redirection-strings.php:164
1432
  msgid "Select All"
1433
  msgstr "Выбрать всё"
1434
 
1435
- #: redirection-strings.php:176
1436
  msgid "Sorry, something went wrong loading the data - please try again"
1437
  msgstr "Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"
1438
 
1439
- #: redirection-strings.php:175
1440
  msgid "No results"
1441
  msgstr "Нет результатов"
1442
 
1443
- #: redirection-strings.php:315
1444
  msgid "Delete the logs - are you sure?"
1445
  msgstr "Удалить журналы - вы уверены?"
1446
 
1447
- #: redirection-strings.php:316
1448
  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."
1449
  msgstr "После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."
1450
 
1451
- #: redirection-strings.php:317
1452
  msgid "Yes! Delete the logs"
1453
  msgstr "Да! Удалить журналы"
1454
 
1455
- #: redirection-strings.php:318
1456
  msgid "No! Don't delete the logs"
1457
  msgstr "Нет! Не удаляйте журналы"
1458
 
1459
- #: redirection-strings.php:460
1460
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1461
  msgstr "Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."
1462
 
1463
- #: redirection-strings.php:459 redirection-strings.php:461
1464
  msgid "Newsletter"
1465
  msgstr "Новости"
1466
 
1467
- #: redirection-strings.php:462
1468
  msgid "Want to keep up to date with changes to Redirection?"
1469
  msgstr "Хотите быть в курсе изменений в плагине?"
1470
 
1471
- #: redirection-strings.php:463
1472
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1473
  msgstr "Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."
1474
 
1475
- #: redirection-strings.php:464
1476
  msgid "Your email address:"
1477
  msgstr "Ваш адрес электронной почты:"
1478
 
1479
- #: redirection-strings.php:375
1480
  msgid "You've supported this plugin - thank you!"
1481
  msgstr "Вы поддерживаете этот плагин - спасибо!"
1482
 
1483
- #: redirection-strings.php:378
1484
  msgid "You get useful software and I get to carry on making it better."
1485
  msgstr "Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."
1486
 
1487
- #: redirection-strings.php:386 redirection-strings.php:391
1488
  msgid "Forever"
1489
  msgstr "Всегда"
1490
 
1491
- #: redirection-strings.php:367
1492
  msgid "Delete the plugin - are you sure?"
1493
  msgstr "Удалить плагин-вы уверены?"
1494
 
1495
- #: redirection-strings.php:368
1496
  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."
1497
  msgstr "Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."
1498
 
1499
- #: redirection-strings.php:369
1500
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1501
  msgstr "После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."
1502
 
1503
- #: redirection-strings.php:370
1504
  msgid "Yes! Delete the plugin"
1505
  msgstr "Да! Удалить плагин"
1506
 
1507
- #: redirection-strings.php:371
1508
  msgid "No! Don't delete the plugin"
1509
  msgstr "Нет! Не удаляйте плагин"
1510
 
@@ -1516,15 +1604,15 @@ msgstr "John Godley"
1516
  msgid "Manage all your 301 redirects and monitor 404 errors"
1517
  msgstr "Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"
1518
 
1519
- #: redirection-strings.php:377
1520
  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}}."
1521
  msgstr "Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."
1522
 
1523
- #: redirection-admin.php:300
1524
  msgid "Redirection Support"
1525
  msgstr "Поддержка перенаправления"
1526
 
1527
- #: redirection-strings.php:65 redirection-strings.php:267
1528
  msgid "Support"
1529
  msgstr "Поддержка"
1530
 
@@ -1536,131 +1624,131 @@ msgstr "404"
1536
  msgid "Log"
1537
  msgstr "Журнал"
1538
 
1539
- #: redirection-strings.php:373
1540
  msgid "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."
1541
  msgstr "Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."
1542
 
1543
- #: redirection-strings.php:372
1544
  msgid "Delete Redirection"
1545
  msgstr "Удалить перенаправление"
1546
 
1547
- #: redirection-strings.php:285
1548
  msgid "Upload"
1549
  msgstr "Загрузить"
1550
 
1551
- #: redirection-strings.php:296
1552
  msgid "Import"
1553
  msgstr "Импортировать"
1554
 
1555
- #: redirection-strings.php:425
1556
  msgid "Update"
1557
  msgstr "Обновить"
1558
 
1559
- #: redirection-strings.php:414
1560
  msgid "Auto-generate URL"
1561
  msgstr "Автоматическое создание URL-адреса"
1562
 
1563
- #: redirection-strings.php:413
1564
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1565
  msgstr "Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"
1566
 
1567
- #: redirection-strings.php:412
1568
  msgid "RSS Token"
1569
  msgstr "RSS-токен"
1570
 
1571
- #: redirection-strings.php:406
1572
  msgid "404 Logs"
1573
  msgstr "404 Журналы"
1574
 
1575
- #: redirection-strings.php:405 redirection-strings.php:407
1576
  msgid "(time to keep logs for)"
1577
  msgstr "(время хранения журналов для)"
1578
 
1579
- #: redirection-strings.php:404
1580
  msgid "Redirect Logs"
1581
  msgstr "Перенаправление журналов"
1582
 
1583
- #: redirection-strings.php:403
1584
  msgid "I'm a nice person and I have helped support the author of this plugin"
1585
  msgstr "Я хороший человек, и я помог поддержать автора этого плагина"
1586
 
1587
- #: redirection-strings.php:380
1588
  msgid "Plugin Support"
1589
  msgstr "Поддержка плагина"
1590
 
1591
- #: redirection-strings.php:64 redirection-strings.php:266
1592
  msgid "Options"
1593
  msgstr "Опции"
1594
 
1595
- #: redirection-strings.php:385
1596
  msgid "Two months"
1597
  msgstr "Два месяца"
1598
 
1599
- #: redirection-strings.php:384
1600
  msgid "A month"
1601
  msgstr "Месяц"
1602
 
1603
- #: redirection-strings.php:383 redirection-strings.php:390
1604
  msgid "A week"
1605
  msgstr "Неделя"
1606
 
1607
- #: redirection-strings.php:382 redirection-strings.php:389
1608
  msgid "A day"
1609
  msgstr "День"
1610
 
1611
- #: redirection-strings.php:381
1612
  msgid "No logs"
1613
  msgstr "Нет записей"
1614
 
1615
- #: redirection-strings.php:314 redirection-strings.php:350
1616
- #: redirection-strings.php:355
1617
  msgid "Delete All"
1618
  msgstr "Удалить все"
1619
 
1620
- #: redirection-strings.php:244
1621
  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."
1622
  msgstr "Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."
1623
 
1624
- #: redirection-strings.php:243
1625
  msgid "Add Group"
1626
  msgstr "Добавить группу"
1627
 
1628
- #: redirection-strings.php:178
1629
  msgid "Search"
1630
  msgstr "Поиск"
1631
 
1632
- #: redirection-strings.php:60 redirection-strings.php:262
1633
  msgid "Groups"
1634
  msgstr "Группы"
1635
 
1636
- #: redirection-strings.php:25 redirection-strings.php:119
1637
- #: redirection-strings.php:253
1638
  msgid "Save"
1639
  msgstr "Сохранить"
1640
 
1641
- #: redirection-strings.php:115 redirection-strings.php:163
1642
  msgid "Group"
1643
  msgstr "Группа"
1644
 
1645
- #: redirection-strings.php:112
1646
  msgid "Match"
1647
  msgstr "Совпадение"
1648
 
1649
- #: redirection-strings.php:436
1650
  msgid "Add new redirection"
1651
  msgstr "Добавить новое перенаправление"
1652
 
1653
- #: redirection-strings.php:121 redirection-strings.php:254
1654
- #: redirection-strings.php:286
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection.js:33
15
+ msgid "blur"
16
+ msgstr ""
17
+
18
+ #: redirection.js:33
19
+ msgid "focus"
20
+ msgstr ""
21
+
22
+ #: redirection.js:33
23
+ msgid "scroll"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:432
27
+ msgid "Pass - as ignore, but also copies the query parameters to the target"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:431
31
+ msgid "Ignore - as exact, but ignores any query parameters not in your source"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:430
35
+ msgid "Exact - matches the query parameters exactly defined in your source, in any order"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:428
39
+ msgid "Default query matching"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:427
43
+ msgid "Ignore trailing slashes (i.e. {{code}}/exciting-post/{{/code}} will match {{code}}/exciting-post{{/code}})"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:426
47
+ msgid "Case insensitive matches (i.e. {{code}}/Exciting-Post{{/code}} will match {{code}}/exciting-post{{/code}})"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:425 redirection-strings.php:429
51
+ msgid "Applies to all redirections unless you configure them otherwise."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:424
55
+ msgid "Default URL settings"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:407
59
+ msgid "Ignore and pass all query parameters"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:406
63
+ msgid "Ignore all query parameters"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:405
67
+ msgid "Exact match"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:232
71
+ msgid "Caching software (e.g Cloudflare)"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:230
75
+ msgid "A security plugin (e.g Wordfence)"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:160
79
+ msgid "No more options"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:159
83
+ msgid "URL options"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:155
87
+ msgid "Query Parameters"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:114
91
+ msgid "Ignore & pass parameters to the target"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:113
95
+ msgid "Ignore all parameters"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:112
99
+ msgid "Exact match all parameters in any order"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:111
103
+ msgid "Ignore Case"
104
+ msgstr ""
105
+
106
+ #: redirection-strings.php:110
107
+ msgid "Ignore Slash"
108
+ msgstr ""
109
+
110
+ #: redirection-strings.php:404
111
  msgid "Relative REST API"
112
  msgstr ""
113
 
114
+ #: redirection-strings.php:403
115
  msgid "Raw REST API"
116
  msgstr ""
117
 
118
+ #: redirection-strings.php:402
119
  msgid "Default REST API"
120
  msgstr ""
121
 
122
+ #: redirection-strings.php:204
123
+ msgid "That's all there is to it - you are now redirecting! Note that the above is just an example - you can now enter a redirect."
124
  msgstr ""
125
 
126
+ #: redirection-strings.php:203
127
  msgid "(Example) The target URL is the new URL"
128
  msgstr ""
129
 
130
+ #: redirection-strings.php:201
131
  msgid "(Example) The source URL is your old or original URL"
132
  msgstr ""
133
 
135
  msgid "Disabled! Detected PHP %s, need PHP 5.4+"
136
  msgstr ""
137
 
138
+ #: redirection-strings.php:266
139
  msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
140
  msgstr ""
141
 
142
+ #: redirection-strings.php:262
143
  msgid "A database upgrade is in progress. Please continue to finish."
144
  msgstr "Обновление базы данных в процессе. Пожалуйста, продолжите для завершения."
145
 
148
  msgid "Redirection's database needs to be updated - <a href=\"%1$1s\">click to update</a>."
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:263
152
  msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:265
156
  msgid "Redirection database needs updating"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:264
160
  msgid "Update Required"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:241
164
  msgid "I need some support!"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:238
168
  msgid "Finish Setup"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:237
172
  msgid "Checking your REST API"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:236
176
  msgid "Retry"
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:235
180
  msgid "You have different URLs configured on your WordPress Settings > General page, which is usually an indication of a misconfiguration, and it can cause problems with the REST API. Please review your settings."
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:234
184
  msgid "If you do experience a problem then please consult your plugin documentation, or try contacting your host support. This is generally {{link}}not a problem caused by Redirection{{/link}}."
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:233
188
  msgid "Some other plugin that blocks the REST API"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:231
192
+ msgid "A server firewall or other server configuration (e.g OVH)"
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:229
196
  msgid "Redirection uses the {{link}}WordPress REST API{{/link}} to communicate with WordPress. This is enabled and working by default. Sometimes the REST API is blocked by:"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:227 redirection-strings.php:239
200
  msgid "Go back"
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:226
204
  msgid "Continue Setup"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:224
208
  msgid "Storing the IP address allows you to perform additional log actions. Note that you will need to adhere to local laws regarding the collection of data (for example GDPR)."
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:223
212
  msgid "Store IP information for redirects and 404 errors."
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:221
216
  msgid "Storing logs for redirects and 404s will allow you to see what is happening on your site. This will increase your database storage requirements."
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:220
220
  msgid "Keep a log of all redirects and 404 errors."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:219 redirection-strings.php:222
224
+ #: redirection-strings.php:225
225
  msgid "{{link}}Read more about this.{{/link}}"
226
  msgstr ""
227
 
228
+ #: redirection-strings.php:218
229
  msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
230
  msgstr ""
231
 
232
+ #: redirection-strings.php:217
233
  msgid "Monitor permalink changes in WordPress posts and pages"
234
  msgstr ""
235
 
236
+ #: redirection-strings.php:216
237
  msgid "These are some options you may want to enable now. They can be changed at any time."
238
  msgstr ""
239
 
240
+ #: redirection-strings.php:215
241
  msgid "Basic Setup"
242
  msgstr ""
243
 
244
+ #: redirection-strings.php:214
245
  msgid "Start Setup"
246
  msgstr ""
247
 
248
+ #: redirection-strings.php:213
249
  msgid "When ready please press the button to continue."
250
  msgstr ""
251
 
252
+ #: redirection-strings.php:212
253
  msgid "First you will be asked a few questions, and then Redirection will set up your database."
254
  msgstr ""
255
 
256
+ #: redirection-strings.php:211
257
  msgid "What's next?"
258
  msgstr ""
259
 
260
+ #: redirection-strings.php:210
261
  msgid "Check a URL is being redirected"
262
  msgstr ""
263
 
264
+ #: redirection-strings.php:209
265
  msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
266
  msgstr ""
267
 
268
+ #: redirection-strings.php:208
269
  msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
270
  msgstr ""
271
 
272
+ #: redirection-strings.php:207
273
  msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
274
  msgstr ""
275
 
276
+ #: redirection-strings.php:206
277
  msgid "Some features you may find useful are"
278
  msgstr ""
279
 
280
+ #: redirection-strings.php:205
281
  msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
282
  msgstr ""
283
 
284
+ #: redirection-strings.php:199
285
  msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL). Here's an example:"
286
  msgstr ""
287
 
288
+ #: redirection-strings.php:198
289
  msgid "How do I use this plugin?"
290
  msgstr ""
291
 
292
+ #: redirection-strings.php:197
293
  msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
294
  msgstr ""
295
 
296
+ #: redirection-strings.php:196
297
  msgid "Thank you for installing and using Redirection v%(version)s. This plugin will allow you to manage 301 redirections, keep track of 404 errors, and improve your site, with no knowledge of Apache or Nginx needed."
298
  msgstr ""
299
 
300
+ #: redirection-strings.php:195
301
  msgid "Welcome to Redirection 🚀🎉"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:168
305
  msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
306
  msgstr ""
307
 
308
+ #: redirection-strings.php:167
309
+ msgid "To prevent a greedy regular expression you can use {{code}}^{{/code}} to anchor it to the start of the URL. For example: {{code}}%(example)s{{/code}}"
310
  msgstr ""
311
 
312
+ #: redirection-strings.php:166
313
  msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:165
317
  msgid "The source URL should probably start with a {{code}}/{{/code}}"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:164
321
  msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:163
325
  msgid "Anchor values are not sent to the server and cannot be redirected."
326
  msgstr ""
327
 
373
  msgid "Database problem"
374
  msgstr "Проблема с базой данных"
375
 
376
+ #: redirection-admin.php:419
377
  msgid "Please enable JavaScript"
378
  msgstr "Пожалуйста, включите JavaScript"
379
 
381
  msgid "Please upgrade your database"
382
  msgstr "Пожалуйста, обновите вашу базу данных"
383
 
384
+ #: redirection-admin.php:137 redirection-strings.php:267
385
  msgid "Upgrade Database"
386
  msgstr "Обновить базу данных"
387
 
418
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
419
  msgstr ""
420
 
421
+ #: redirection-strings.php:146
422
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
423
  msgstr "Пожалуйста, не пытайтесь перенаправить все ваши 404, это не лучшее что можно сделать."
424
 
425
+ #: redirection-strings.php:145
426
  msgid "Only the 404 page type is currently supported."
427
  msgstr "Сейчас поддерживается только тип страницы 404."
428
 
429
+ #: redirection-strings.php:144
430
  msgid "Page Type"
431
  msgstr "Тип страницы"
432
 
433
+ #: redirection-strings.php:143
434
  msgid "Enter IP addresses (one per line)"
435
  msgstr "Введите IP адреса (один на строку)"
436
 
437
+ #: redirection-strings.php:162
438
  msgid "Describe the purpose of this redirect (optional)"
439
  msgstr "Опишите цель перенаправления (необязательно)"
440
 
441
+ #: redirection-strings.php:108
442
  msgid "418 - I'm a teapot"
443
  msgstr "418 - Я чайник"
444
 
445
+ #: redirection-strings.php:105
446
  msgid "403 - Forbidden"
447
  msgstr "403 - Доступ запрещен"
448
 
449
+ #: redirection-strings.php:103
450
  msgid "400 - Bad Request"
451
  msgstr "400 - Неверный запрос"
452
 
453
+ #: redirection-strings.php:100
454
  msgid "304 - Not Modified"
455
  msgstr "304 - Без изменений"
456
 
457
+ #: redirection-strings.php:99
458
  msgid "303 - See Other"
459
  msgstr "303 - Посмотрите другое"
460
 
461
+ #: redirection-strings.php:96
462
  msgid "Do nothing (ignore)"
463
  msgstr "Ничего не делать (игнорировать)"
464
 
465
+ #: redirection-strings.php:74 redirection-strings.php:78
466
  msgid "Target URL when not matched (empty to ignore)"
467
  msgstr ""
468
 
469
+ #: redirection-strings.php:72 redirection-strings.php:76
470
  msgid "Target URL when matched (empty to ignore)"
471
  msgstr ""
472
 
473
+ #: redirection-strings.php:359 redirection-strings.php:364
474
  msgid "Show All"
475
  msgstr "Показать все"
476
 
477
+ #: redirection-strings.php:356
478
  msgid "Delete all logs for these entries"
479
  msgstr "Удалить все журналы для этих элементов"
480
 
481
+ #: redirection-strings.php:355 redirection-strings.php:368
482
  msgid "Delete all logs for this entry"
483
  msgstr "Удалить все журналы для этого элемента"
484
 
485
+ #: redirection-strings.php:354
486
  msgid "Delete Log Entries"
487
  msgstr "Удалить записи журнала"
488
 
489
+ #: redirection-strings.php:352
490
  msgid "Group by IP"
491
  msgstr "Группировка по IP"
492
 
493
+ #: redirection-strings.php:351
494
  msgid "Group by URL"
495
  msgstr "Группировка по URL"
496
 
497
+ #: redirection-strings.php:350
498
  msgid "No grouping"
499
  msgstr "Без группировки"
500
 
501
+ #: redirection-strings.php:349 redirection-strings.php:365
502
  msgid "Ignore URL"
503
  msgstr "Игнорировать URL"
504
 
505
+ #: redirection-strings.php:346 redirection-strings.php:361
506
  msgid "Block IP"
507
  msgstr "Блокировка IP"
508
 
509
+ #: redirection-strings.php:345 redirection-strings.php:348
510
+ #: redirection-strings.php:358 redirection-strings.php:363
511
  msgid "Redirect All"
512
  msgstr "Перенаправить все"
513
 
514
+ #: redirection-strings.php:337 redirection-strings.php:339
515
  msgid "Count"
516
  msgstr "Счетчик"
517
 
518
+ #: matches/page.php:9 redirection-strings.php:91
519
  msgid "URL and WordPress page type"
520
  msgstr "URL и тип страницы WP"
521
 
522
+ #: matches/ip.php:9 redirection-strings.php:87
523
  msgid "URL and IP"
524
  msgstr "URL и IP"
525
 
526
+ #: redirection-strings.php:487
527
  msgid "Problem"
528
  msgstr "Проблема"
529
 
530
+ #: redirection-strings.php:486
531
  msgid "Good"
532
  msgstr "Хорошо"
533
 
534
+ #: redirection-strings.php:476
535
  msgid "Check"
536
  msgstr "Проверка"
537
 
538
+ #: redirection-strings.php:460
539
  msgid "Check Redirect"
540
  msgstr "Проверка перенаправления"
541
 
571
  msgid "Error"
572
  msgstr "Ошибка"
573
 
574
+ #: redirection-strings.php:475
575
  msgid "Enter full URL, including http:// or https://"
576
  msgstr "Введите полный URL-адрес, включая http:// или https://"
577
 
578
+ #: redirection-strings.php:473
579
  msgid "Sometimes your browser can cache a URL, making it hard to know if it's working as expected. Use this to check a URL to see how it is really redirecting."
580
  msgstr "Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."
581
 
582
+ #: redirection-strings.php:472
583
  msgid "Redirect Tester"
584
  msgstr "Тестирование перенаправлений"
585
 
586
+ #: redirection-strings.php:471
587
  msgid "Target"
588
  msgstr "Цель"
589
 
590
+ #: redirection-strings.php:470
591
  msgid "URL is not being redirected with Redirection"
592
  msgstr "URL-адрес не перенаправляется с помощью Redirection"
593
 
594
+ #: redirection-strings.php:469
595
  msgid "URL is being redirected with Redirection"
596
  msgstr "URL-адрес перенаправлен с помощью Redirection"
597
 
598
+ #: redirection-strings.php:468 redirection-strings.php:477
599
  msgid "Unable to load details"
600
  msgstr "Не удается загрузить сведения"
601
 
602
+ #: redirection-strings.php:153
603
  msgid "Enter server URL to match against"
604
  msgstr "Введите URL-адрес сервера для совпадений"
605
 
606
+ #: redirection-strings.php:152
607
  msgid "Server"
608
  msgstr "Сервер"
609
 
610
+ #: redirection-strings.php:151
611
  msgid "Enter role or capability value"
612
  msgstr "Введите значение роли или возможности"
613
 
614
+ #: redirection-strings.php:150
615
  msgid "Role"
616
  msgstr "Роль"
617
 
618
+ #: redirection-strings.php:148
619
  msgid "Match against this browser referrer text"
620
  msgstr "Совпадение с текстом реферера браузера"
621
 
622
+ #: redirection-strings.php:123
623
  msgid "Match against this browser user agent"
624
  msgstr "Сопоставить с этим пользовательским агентом обозревателя"
625
 
626
+ #: redirection-strings.php:158
627
  msgid "The relative URL you want to redirect from"
628
  msgstr "Относительный URL-адрес, с которого требуется перенаправить"
629
 
630
+ #: redirection-strings.php:80
631
  msgid "The target URL you want to redirect to if matched"
632
  msgstr "Целевой URL-адрес, который требуется перенаправить в случае совпадения"
633
 
634
+ #: redirection-strings.php:439
635
  msgid "(beta)"
636
  msgstr "(бета)"
637
 
638
+ #: redirection-strings.php:438
639
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
640
  msgstr "Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"
641
 
642
+ #: redirection-strings.php:437
643
  msgid "Force HTTPS"
644
  msgstr "Принудительное HTTPS"
645
 
646
+ #: redirection-strings.php:420
647
  msgid "GDPR / Privacy information"
648
  msgstr "GDPR / Информация о конфиденциальности"
649
 
650
+ #: redirection-strings.php:284
651
  msgid "Add New"
652
  msgstr "Добавить новое"
653
 
655
  msgid "Please logout and login again."
656
  msgstr "Пожалуйста, выйдите и войдите снова."
657
 
658
+ #: matches/user-role.php:9 redirection-strings.php:83
659
  msgid "URL and role/capability"
660
  msgstr "URL-адрес и роль/возможности"
661
 
662
+ #: matches/server.php:9 redirection-strings.php:88
663
  msgid "URL and server"
664
  msgstr "URL и сервер"
665
 
675
  msgid "Site and home are consistent"
676
  msgstr "Сайт и домашняя страница соответствуют"
677
 
678
+ #: redirection-strings.php:141
679
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
680
  msgstr "Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."
681
 
682
+ #: redirection-strings.php:139
683
  msgid "Accept Language"
684
  msgstr "заголовок Accept Language"
685
 
686
+ #: redirection-strings.php:137
687
  msgid "Header value"
688
  msgstr "Значение заголовка"
689
 
690
+ #: redirection-strings.php:136
691
  msgid "Header name"
692
  msgstr "Имя заголовка"
693
 
694
+ #: redirection-strings.php:135
695
  msgid "HTTP Header"
696
  msgstr "Заголовок HTTP"
697
 
698
+ #: redirection-strings.php:134
699
  msgid "WordPress filter name"
700
  msgstr "Имя фильтра WordPress"
701
 
702
+ #: redirection-strings.php:133
703
  msgid "Filter Name"
704
  msgstr "Название фильтра"
705
 
706
+ #: redirection-strings.php:131
707
  msgid "Cookie value"
708
  msgstr "Значение куки"
709
 
710
+ #: redirection-strings.php:130
711
  msgid "Cookie name"
712
  msgstr "Имя куки"
713
 
714
+ #: redirection-strings.php:129
715
  msgid "Cookie"
716
  msgstr "Куки"
717
 
718
+ #: redirection-strings.php:278
719
  msgid "clearing your cache."
720
  msgstr "очистка кеша."
721
 
722
+ #: redirection-strings.php:277
723
  msgid "If you are using a caching system such as Cloudflare then please read this: "
724
  msgstr "Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "
725
 
726
+ #: matches/http-header.php:11 redirection-strings.php:89
727
  msgid "URL and HTTP header"
728
  msgstr "URL-адрес и заголовок HTTP"
729
 
730
+ #: matches/custom-filter.php:9 redirection-strings.php:90
731
  msgid "URL and custom filter"
732
  msgstr "URL-адрес и пользовательский фильтр"
733
 
734
+ #: matches/cookie.php:7 redirection-strings.php:86
735
  msgid "URL and cookie"
736
  msgstr "URL и куки"
737
 
738
+ #: redirection-strings.php:493
739
  msgid "404 deleted"
740
  msgstr "404 удалено"
741
 
742
+ #: redirection-strings.php:228 redirection-strings.php:442
743
  msgid "REST API"
744
  msgstr "REST API"
745
 
746
+ #: redirection-strings.php:443
747
  msgid "How Redirection uses the REST API - don't change unless necessary"
748
  msgstr "Как Redirection использует REST API - не изменяются, если это необходимо"
749
 
775
  msgid "None of the suggestions helped"
776
  msgstr "Ни одно из предложений не помогло"
777
 
778
+ #: redirection-admin.php:398
779
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
780
  msgstr "Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."
781
 
782
+ #: redirection-admin.php:392
783
  msgid "Unable to load Redirection ☹️"
784
  msgstr "Не удается загрузить Redirection ☹ ️"
785
 
816
  msgid "https://johngodley.com"
817
  msgstr "https://johngodley.com"
818
 
819
+ #: redirection-strings.php:186
820
  msgid "Useragent Error"
821
  msgstr "Ошибка пользовательского агента"
822
 
823
+ #: redirection-strings.php:188
824
  msgid "Unknown Useragent"
825
  msgstr "Неизвестный агент пользователя"
826
 
827
+ #: redirection-strings.php:189
828
  msgid "Device"
829
  msgstr "Устройство"
830
 
831
+ #: redirection-strings.php:190
832
  msgid "Operating System"
833
  msgstr "Операционная система"
834
 
835
+ #: redirection-strings.php:191
836
  msgid "Browser"
837
  msgstr "Браузер"
838
 
839
+ #: redirection-strings.php:192
840
  msgid "Engine"
841
  msgstr "Движок"
842
 
843
+ #: redirection-strings.php:193
844
  msgid "Useragent"
845
  msgstr "Пользовательский агент"
846
 
847
+ #: redirection-strings.php:52 redirection-strings.php:194
848
  msgid "Agent"
849
  msgstr "Агент"
850
 
851
+ #: redirection-strings.php:399
852
  msgid "No IP logging"
853
  msgstr "Не протоколировать IP"
854
 
855
+ #: redirection-strings.php:400
856
  msgid "Full IP logging"
857
  msgstr "Полное протоколирование IP-адресов"
858
 
859
+ #: redirection-strings.php:401
860
  msgid "Anonymize IP (mask last part)"
861
  msgstr "Анонимизировать IP (маска последняя часть)"
862
 
863
+ #: redirection-strings.php:412
864
  msgid "Monitor changes to %(type)s"
865
  msgstr "Отслеживание изменений в %(type)s"
866
 
867
+ #: redirection-strings.php:418
868
  msgid "IP Logging"
869
  msgstr "Протоколирование IP"
870
 
871
+ #: redirection-strings.php:419
872
  msgid "(select IP logging level)"
873
  msgstr "(Выберите уровень ведения протокола по IP)"
874
 
875
+ #: redirection-strings.php:333 redirection-strings.php:360
876
+ #: redirection-strings.php:371
877
  msgid "Geo Info"
878
  msgstr "Географическая информация"
879
 
880
+ #: redirection-strings.php:334 redirection-strings.php:372
881
  msgid "Agent Info"
882
  msgstr "Информация о агенте"
883
 
884
+ #: redirection-strings.php:335 redirection-strings.php:373
885
  msgid "Filter by IP"
886
  msgstr "Фильтровать по IP"
887
 
888
+ #: redirection-strings.php:329 redirection-strings.php:342
889
  msgid "Referrer / User Agent"
890
  msgstr "Пользователь / Агент пользователя"
891
 
894
  msgstr "Ошибка GeoIP"
895
 
896
  #: redirection-strings.php:38 redirection-strings.php:57
897
+ #: redirection-strings.php:187
898
  msgid "Something went wrong obtaining this information"
899
  msgstr "Что-то пошло не так получение этой информации"
900
 
935
  msgid "Trash"
936
  msgstr "Корзина"
937
 
938
+ #: redirection-admin.php:397
939
  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"
940
  msgstr "Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"
941
 
942
  #. translators: URL
943
+ #: redirection-admin.php:297
944
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
945
  msgstr "Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."
946
 
948
  msgid "https://redirection.me/"
949
  msgstr "https://redirection.me/"
950
 
951
+ #: redirection-strings.php:464
952
  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."
953
  msgstr "Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."
954
 
955
+ #: redirection-strings.php:465
956
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
957
  msgstr "Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."
958
 
959
+ #: redirection-strings.php:467
960
  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!"
961
  msgstr "Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"
962
 
963
+ #: redirection-strings.php:394
964
  msgid "Never cache"
965
  msgstr "Не кэшировать"
966
 
967
+ #: redirection-strings.php:395
968
  msgid "An hour"
969
  msgstr "Час"
970
 
971
+ #: redirection-strings.php:440
972
  msgid "Redirect Cache"
973
  msgstr "Перенаправление кэша"
974
 
975
+ #: redirection-strings.php:441
976
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
977
  msgstr "Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"
978
 
979
+ #: redirection-strings.php:300
980
  msgid "Are you sure you want to import from %s?"
981
  msgstr "Вы действительно хотите импортировать из %s ?"
982
 
983
+ #: redirection-strings.php:301
984
  msgid "Plugin Importers"
985
  msgstr "Импортеры плагина"
986
 
987
+ #: redirection-strings.php:302
988
  msgid "The following redirect plugins were detected on your site and can be imported from."
989
  msgstr "Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."
990
 
991
+ #: redirection-strings.php:285
992
  msgid "total = "
993
  msgstr "всего = "
994
 
995
+ #: redirection-strings.php:286
996
  msgid "Import from %s"
997
  msgstr "Импортировать из %s"
998
 
999
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
1000
+ #: redirection-admin.php:380
1001
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
1002
  msgstr "Redirection требует WordPress v%1$1s, вы используете v%2$2s - пожалуйста, обновите ваш WordPress"
1003
 
1005
  msgid "Default WordPress \"old slugs\""
1006
  msgstr "\"Старые ярлыки\" WordPress по умолчанию"
1007
 
1008
+ #: redirection-strings.php:411
1009
  msgid "Create associated redirect (added to end of URL)"
1010
  msgstr "Создание связанного перенаправления (Добавлено в конец URL-адреса)"
1011
 
1012
+ #: redirection-admin.php:400
1013
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
1014
  msgstr "<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."
1015
 
1016
+ #: redirection-strings.php:484
1017
  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."
1018
  msgstr "Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."
1019
 
1020
+ #: redirection-strings.php:485
1021
  msgid "⚡️ Magic fix ⚡️"
1022
  msgstr "⚡️ Волшебное исправление ⚡️"
1023
 
1024
+ #: redirection-strings.php:488
1025
  msgid "Plugin Status"
1026
  msgstr "Статус плагина"
1027
 
1028
+ #: redirection-strings.php:124 redirection-strings.php:138
1029
  msgid "Custom"
1030
  msgstr "Пользовательский"
1031
 
1032
+ #: redirection-strings.php:125
1033
  msgid "Mobile"
1034
  msgstr "Мобильный"
1035
 
1036
+ #: redirection-strings.php:126
1037
  msgid "Feed Readers"
1038
  msgstr "Читатели ленты"
1039
 
1040
+ #: redirection-strings.php:127
1041
  msgid "Libraries"
1042
  msgstr "Библиотеки"
1043
 
1044
+ #: redirection-strings.php:408
1045
  msgid "URL Monitor Changes"
1046
  msgstr "URL-адрес монитор изменений"
1047
 
1048
+ #: redirection-strings.php:409
1049
  msgid "Save changes to this group"
1050
  msgstr "Сохранить изменения в этой группе"
1051
 
1052
+ #: redirection-strings.php:410
1053
  msgid "For example \"/amp\""
1054
  msgstr "Например \"/amp\""
1055
 
1056
+ #: redirection-strings.php:421
1057
  msgid "URL Monitor"
1058
  msgstr "Монитор URL"
1059
 
1060
+ #: redirection-strings.php:367
1061
  msgid "Delete 404s"
1062
  msgstr "Удалить 404"
1063
 
1064
+ #: redirection-strings.php:319
1065
  msgid "Delete all from IP %s"
1066
  msgstr "Удалить все с IP %s"
1067
 
1068
+ #: redirection-strings.php:320
1069
  msgid "Delete all matching \"%s\""
1070
  msgstr "Удалить все совпадения \"%s\""
1071
 
1073
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
1074
  msgstr "Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."
1075
 
1076
+ #: redirection-admin.php:395
1077
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
1078
  msgstr "Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"
1079
 
1080
+ #: redirection-admin.php:394 redirection-strings.php:281
1081
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
1082
  msgstr "Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."
1083
 
1084
+ #: redirection-admin.php:383
1085
  msgid "Unable to load Redirection"
1086
  msgstr "Не удается загрузить Redirection"
1087
 
1137
  msgid "All tables present"
1138
  msgstr "Все таблицы в наличии"
1139
 
1140
+ #: redirection-strings.php:275
1141
  msgid "Cached Redirection detected"
1142
  msgstr "Обнаружено кэшированное перенаправление"
1143
 
1144
+ #: redirection-strings.php:276
1145
  msgid "Please clear your browser cache and reload this page."
1146
  msgstr "Очистите кеш браузера и перезагрузите эту страницу."
1147
 
1161
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1162
  msgstr "Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."
1163
 
1164
+ #: redirection-admin.php:399
1165
  msgid "If you think Redirection is at fault then create an issue."
1166
  msgstr "Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."
1167
 
1168
+ #: redirection-admin.php:393
1169
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1170
  msgstr "Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."
1171
 
1172
+ #: redirection-admin.php:415
1173
  msgid "Loading, please wait..."
1174
  msgstr "Загрузка, пожалуйста подождите..."
1175
 
1176
+ #: redirection-strings.php:305
1177
  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)."
1178
  msgstr "{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."
1179
 
1180
+ #: redirection-strings.php:280
1181
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1182
  msgstr "Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."
1183
 
1184
+ #: redirection-strings.php:282
1185
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1186
  msgstr "Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."
1187
 
1189
  msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
1190
  msgstr "Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."
1191
 
1192
+ #: redirection-admin.php:403 redirection-strings.php:33
1193
  msgid "Create Issue"
1194
  msgstr "Создать тикет о проблеме"
1195
 
1201
  msgid "Important details"
1202
  msgstr "Важные детали"
1203
 
1204
+ #: redirection-strings.php:463
1205
  msgid "Need help?"
1206
  msgstr "Нужна помощь?"
1207
 
1208
+ #: redirection-strings.php:466
1209
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1210
  msgstr "Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."
1211
 
1212
+ #: redirection-strings.php:447
1213
  msgid "Pos"
1214
  msgstr "Pos"
1215
 
1216
+ #: redirection-strings.php:107
1217
  msgid "410 - Gone"
1218
  msgstr "410 - Удалено"
1219
 
1220
+ #: redirection-strings.php:154
1221
  msgid "Position"
1222
  msgstr "Позиция"
1223
 
1224
+ #: redirection-strings.php:434
1225
  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"
1226
  msgstr "Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"
1227
 
1228
+ #: redirection-strings.php:435
1229
  msgid "Apache Module"
1230
  msgstr "Модуль Apache"
1231
 
1232
+ #: redirection-strings.php:436
1233
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1234
  msgstr "Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."
1235
 
1236
+ #: redirection-strings.php:287
1237
  msgid "Import to group"
1238
  msgstr "Импорт в группу"
1239
 
1240
+ #: redirection-strings.php:288
1241
  msgid "Import a CSV, .htaccess, or JSON file."
1242
  msgstr "Импортируйте файл CSV, .htaccess или JSON."
1243
 
1244
+ #: redirection-strings.php:289
1245
  msgid "Click 'Add File' or drag and drop here."
1246
  msgstr "Нажмите «Добавить файл» или перетащите сюда."
1247
 
1248
+ #: redirection-strings.php:290
1249
  msgid "Add File"
1250
  msgstr "Добавить файл"
1251
 
1252
+ #: redirection-strings.php:291
1253
  msgid "File selected"
1254
  msgstr "Выбран файл"
1255
 
1256
+ #: redirection-strings.php:294
1257
  msgid "Importing"
1258
  msgstr "Импортирование"
1259
 
1260
+ #: redirection-strings.php:295
1261
  msgid "Finished importing"
1262
  msgstr "Импорт завершен"
1263
 
1264
+ #: redirection-strings.php:296
1265
  msgid "Total redirects imported:"
1266
  msgstr "Всего импортировано перенаправлений:"
1267
 
1268
+ #: redirection-strings.php:297
1269
  msgid "Double-check the file is the correct format!"
1270
  msgstr "Дважды проверьте правильность формата файла!"
1271
 
1272
+ #: redirection-strings.php:298
1273
  msgid "OK"
1274
  msgstr "OK"
1275
 
1276
+ #: redirection-strings.php:119 redirection-strings.php:299
1277
  msgid "Close"
1278
  msgstr "Закрыть"
1279
 
1280
+ #: redirection-strings.php:304
1281
  msgid "All imports will be appended to the current database."
1282
  msgstr "Все импортируемые компоненты будут добавлены в текущую базу данных."
1283
 
1284
+ #: redirection-strings.php:306 redirection-strings.php:326
1285
  msgid "Export"
1286
  msgstr "Экспорт"
1287
 
1288
+ #: redirection-strings.php:307
1289
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1290
  msgstr "Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."
1291
 
1292
+ #: redirection-strings.php:308
1293
  msgid "Everything"
1294
  msgstr "Все"
1295
 
1296
+ #: redirection-strings.php:309
1297
  msgid "WordPress redirects"
1298
  msgstr "Перенаправления WordPress"
1299
 
1300
+ #: redirection-strings.php:310
1301
  msgid "Apache redirects"
1302
  msgstr "перенаправления Apache"
1303
 
1304
+ #: redirection-strings.php:311
1305
  msgid "Nginx redirects"
1306
  msgstr "перенаправления NGINX"
1307
 
1308
+ #: redirection-strings.php:312
1309
  msgid "CSV"
1310
  msgstr "CSV"
1311
 
1312
+ #: redirection-strings.php:313
1313
  msgid "Apache .htaccess"
1314
  msgstr "Apache .htaccess"
1315
 
1316
+ #: redirection-strings.php:314
1317
  msgid "Nginx rewrite rules"
1318
  msgstr "Правила перезаписи nginx"
1319
 
1320
+ #: redirection-strings.php:315
1321
  msgid "Redirection JSON"
1322
  msgstr "Перенаправление JSON"
1323
 
1324
+ #: redirection-strings.php:316
1325
  msgid "View"
1326
  msgstr "Вид"
1327
 
1328
+ #: redirection-strings.php:318
1329
  msgid "Log files can be exported from the log pages."
1330
  msgstr "Файлы логов можно экспортировать из страниц логов."
1331
 
1332
+ #: redirection-strings.php:63 redirection-strings.php:270
1333
  msgid "Import/Export"
1334
  msgstr "Импорт/Экспорт"
1335
 
1336
+ #: redirection-strings.php:271
1337
  msgid "Logs"
1338
  msgstr "Журналы"
1339
 
1340
+ #: redirection-strings.php:272
1341
  msgid "404 errors"
1342
  msgstr "404 ошибки"
1343
 
1344
+ #: redirection-strings.php:283
1345
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1346
  msgstr "Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"
1347
 
1348
+ #: redirection-strings.php:383
1349
  msgid "I'd like to support some more."
1350
  msgstr "Мне хотелось бы поддержать чуть больше."
1351
 
1352
+ #: redirection-strings.php:386
1353
  msgid "Support 💰"
1354
  msgstr "Поддержка 💰"
1355
 
1356
+ #: redirection-strings.php:489
1357
  msgid "Redirection saved"
1358
  msgstr "Перенаправление сохранено"
1359
 
1360
+ #: redirection-strings.php:490
1361
  msgid "Log deleted"
1362
  msgstr "Лог удален"
1363
 
1364
+ #: redirection-strings.php:491
1365
  msgid "Settings saved"
1366
  msgstr "Настройки сохранены"
1367
 
1368
+ #: redirection-strings.php:492
1369
  msgid "Group saved"
1370
  msgstr "Группа сохранена"
1371
 
1372
+ #: redirection-strings.php:242
1373
  msgid "Are you sure you want to delete this item?"
1374
  msgid_plural "Are you sure you want to delete these items?"
1375
  msgstr[0] "Вы действительно хотите удалить этот пункт?"
1376
  msgstr[1] "Вы действительно хотите удалить этот пункт?"
1377
  msgstr[2] "Вы действительно хотите удалить этот пункт?"
1378
 
1379
+ #: redirection-strings.php:462
1380
  msgid "pass"
1381
  msgstr "проход"
1382
 
1383
+ #: redirection-strings.php:454
1384
  msgid "All groups"
1385
  msgstr "Все группы"
1386
 
1387
+ #: redirection-strings.php:97
1388
  msgid "301 - Moved Permanently"
1389
  msgstr "301 - Переехал навсегда"
1390
 
1391
+ #: redirection-strings.php:98
1392
  msgid "302 - Found"
1393
  msgstr "302 - Найдено"
1394
 
1395
+ #: redirection-strings.php:101
1396
  msgid "307 - Temporary Redirect"
1397
  msgstr "307 - Временное перенаправление"
1398
 
1399
+ #: redirection-strings.php:102
1400
  msgid "308 - Permanent Redirect"
1401
  msgstr "308 - Постоянное перенаправление"
1402
 
1403
+ #: redirection-strings.php:104
1404
  msgid "401 - Unauthorized"
1405
  msgstr "401 - Не авторизованы"
1406
 
1407
+ #: redirection-strings.php:106
1408
  msgid "404 - Not Found"
1409
  msgstr "404 - Страница не найдена"
1410
 
1411
+ #: redirection-strings.php:161
1412
  msgid "Title"
1413
  msgstr "Название"
1414
 
1415
+ #: redirection-strings.php:115
1416
  msgid "When matched"
1417
  msgstr "При совпадении"
1418
 
1419
+ #: redirection-strings.php:70
1420
  msgid "with HTTP code"
1421
  msgstr "с кодом HTTP"
1422
 
1423
+ #: redirection-strings.php:120
1424
  msgid "Show advanced options"
1425
  msgstr "Показать расширенные параметры"
1426
 
1427
+ #: redirection-strings.php:75
1428
  msgid "Matched Target"
1429
  msgstr "Совпавшие цели"
1430
 
1431
+ #: redirection-strings.php:77
1432
  msgid "Unmatched Target"
1433
  msgstr "Несовпавшая цель"
1434
 
1440
  msgid "View notice"
1441
  msgstr "Просмотреть уведомление"
1442
 
1443
+ #: models/redirect-sanitizer.php:170
1444
  msgid "Invalid source URL"
1445
  msgstr "Неверный исходный URL"
1446
 
1447
+ #: models/redirect-sanitizer.php:99
1448
  msgid "Invalid redirect action"
1449
  msgstr "Неверное действие перенаправления"
1450
 
1451
+ #: models/redirect-sanitizer.php:93
1452
  msgid "Invalid redirect matcher"
1453
  msgstr "Неверное совпадение перенаправления"
1454
 
1455
+ #: models/redirect.php:253
1456
  msgid "Unable to add new redirect"
1457
  msgstr "Не удалось добавить новое перенаправление"
1458
 
1459
+ #: redirection-strings.php:23 redirection-strings.php:279
1460
  msgid "Something went wrong 🙁"
1461
  msgstr "Что-то пошло не так 🙁"
1462
 
1469
  msgid "Log entries (%d max)"
1470
  msgstr "Журнал записей (%d максимум)"
1471
 
1472
+ #: redirection-strings.php:184
1473
  msgid "Search by IP"
1474
  msgstr "Поиск по IP"
1475
 
1476
+ #: redirection-strings.php:179
1477
  msgid "Select bulk action"
1478
  msgstr "Выберите массовое действие"
1479
 
1480
+ #: redirection-strings.php:180
1481
  msgid "Bulk Actions"
1482
  msgstr "Массовые действия"
1483
 
1484
+ #: redirection-strings.php:181
1485
  msgid "Apply"
1486
  msgstr "Применить"
1487
 
1488
+ #: redirection-strings.php:172
1489
  msgid "First page"
1490
  msgstr "Первая страница"
1491
 
1492
+ #: redirection-strings.php:173
1493
  msgid "Prev page"
1494
  msgstr "Предыдущая страница"
1495
 
1496
+ #: redirection-strings.php:174
1497
  msgid "Current Page"
1498
  msgstr "Текущая страница"
1499
 
1500
+ #: redirection-strings.php:175
1501
  msgid "of %(page)s"
1502
  msgstr "из %(page)s"
1503
 
1504
+ #: redirection-strings.php:176
1505
  msgid "Next page"
1506
  msgstr "Следующая страница"
1507
 
1508
+ #: redirection-strings.php:177
1509
  msgid "Last page"
1510
  msgstr "Последняя страница"
1511
 
1512
+ #: redirection-strings.php:178
1513
  msgid "%s item"
1514
  msgid_plural "%s items"
1515
  msgstr[0] "%s элемент"
1516
  msgstr[1] "%s элемента"
1517
  msgstr[2] "%s элементов"
1518
 
1519
+ #: redirection-strings.php:171
1520
  msgid "Select All"
1521
  msgstr "Выбрать всё"
1522
 
1523
+ #: redirection-strings.php:183
1524
  msgid "Sorry, something went wrong loading the data - please try again"
1525
  msgstr "Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"
1526
 
1527
+ #: redirection-strings.php:182
1528
  msgid "No results"
1529
  msgstr "Нет результатов"
1530
 
1531
+ #: redirection-strings.php:322
1532
  msgid "Delete the logs - are you sure?"
1533
  msgstr "Удалить журналы - вы уверены?"
1534
 
1535
+ #: redirection-strings.php:323
1536
  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."
1537
  msgstr "После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."
1538
 
1539
+ #: redirection-strings.php:324
1540
  msgid "Yes! Delete the logs"
1541
  msgstr "Да! Удалить журналы"
1542
 
1543
+ #: redirection-strings.php:325
1544
  msgid "No! Don't delete the logs"
1545
  msgstr "Нет! Не удаляйте журналы"
1546
 
1547
+ #: redirection-strings.php:479
1548
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1549
  msgstr "Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."
1550
 
1551
+ #: redirection-strings.php:478 redirection-strings.php:480
1552
  msgid "Newsletter"
1553
  msgstr "Новости"
1554
 
1555
+ #: redirection-strings.php:481
1556
  msgid "Want to keep up to date with changes to Redirection?"
1557
  msgstr "Хотите быть в курсе изменений в плагине?"
1558
 
1559
+ #: redirection-strings.php:482
1560
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if you want to test beta changes before release."
1561
  msgstr "Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."
1562
 
1563
+ #: redirection-strings.php:483
1564
  msgid "Your email address:"
1565
  msgstr "Ваш адрес электронной почты:"
1566
 
1567
+ #: redirection-strings.php:382
1568
  msgid "You've supported this plugin - thank you!"
1569
  msgstr "Вы поддерживаете этот плагин - спасибо!"
1570
 
1571
+ #: redirection-strings.php:385
1572
  msgid "You get useful software and I get to carry on making it better."
1573
  msgstr "Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."
1574
 
1575
+ #: redirection-strings.php:393 redirection-strings.php:398
1576
  msgid "Forever"
1577
  msgstr "Всегда"
1578
 
1579
+ #: redirection-strings.php:374
1580
  msgid "Delete the plugin - are you sure?"
1581
  msgstr "Удалить плагин-вы уверены?"
1582
 
1583
+ #: redirection-strings.php:375
1584
  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."
1585
  msgstr "Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."
1586
 
1587
+ #: redirection-strings.php:376
1588
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1589
  msgstr "После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."
1590
 
1591
+ #: redirection-strings.php:377
1592
  msgid "Yes! Delete the plugin"
1593
  msgstr "Да! Удалить плагин"
1594
 
1595
+ #: redirection-strings.php:378
1596
  msgid "No! Don't delete the plugin"
1597
  msgstr "Нет! Не удаляйте плагин"
1598
 
1604
  msgid "Manage all your 301 redirects and monitor 404 errors"
1605
  msgstr "Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"
1606
 
1607
+ #: redirection-strings.php:384
1608
  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}}."
1609
  msgstr "Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."
1610
 
1611
+ #: redirection-admin.php:298
1612
  msgid "Redirection Support"
1613
  msgstr "Поддержка перенаправления"
1614
 
1615
+ #: redirection-strings.php:65 redirection-strings.php:274
1616
  msgid "Support"
1617
  msgstr "Поддержка"
1618
 
1624
  msgid "Log"
1625
  msgstr "Журнал"
1626
 
1627
+ #: redirection-strings.php:380
1628
  msgid "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."
1629
  msgstr "Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."
1630
 
1631
+ #: redirection-strings.php:379
1632
  msgid "Delete Redirection"
1633
  msgstr "Удалить перенаправление"
1634
 
1635
+ #: redirection-strings.php:292
1636
  msgid "Upload"
1637
  msgstr "Загрузить"
1638
 
1639
+ #: redirection-strings.php:303
1640
  msgid "Import"
1641
  msgstr "Импортировать"
1642
 
1643
+ #: redirection-strings.php:444
1644
  msgid "Update"
1645
  msgstr "Обновить"
1646
 
1647
+ #: redirection-strings.php:433
1648
  msgid "Auto-generate URL"
1649
  msgstr "Автоматическое создание URL-адреса"
1650
 
1651
+ #: redirection-strings.php:423
1652
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1653
  msgstr "Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"
1654
 
1655
+ #: redirection-strings.php:422
1656
  msgid "RSS Token"
1657
  msgstr "RSS-токен"
1658
 
1659
+ #: redirection-strings.php:416
1660
  msgid "404 Logs"
1661
  msgstr "404 Журналы"
1662
 
1663
+ #: redirection-strings.php:415 redirection-strings.php:417
1664
  msgid "(time to keep logs for)"
1665
  msgstr "(время хранения журналов для)"
1666
 
1667
+ #: redirection-strings.php:414
1668
  msgid "Redirect Logs"
1669
  msgstr "Перенаправление журналов"
1670
 
1671
+ #: redirection-strings.php:413
1672
  msgid "I'm a nice person and I have helped support the author of this plugin"
1673
  msgstr "Я хороший человек, и я помог поддержать автора этого плагина"
1674
 
1675
+ #: redirection-strings.php:387
1676
  msgid "Plugin Support"
1677
  msgstr "Поддержка плагина"
1678
 
1679
+ #: redirection-strings.php:64 redirection-strings.php:273
1680
  msgid "Options"
1681
  msgstr "Опции"
1682
 
1683
+ #: redirection-strings.php:392
1684
  msgid "Two months"
1685
  msgstr "Два месяца"
1686
 
1687
+ #: redirection-strings.php:391
1688
  msgid "A month"
1689
  msgstr "Месяц"
1690
 
1691
+ #: redirection-strings.php:390 redirection-strings.php:397
1692
  msgid "A week"
1693
  msgstr "Неделя"
1694
 
1695
+ #: redirection-strings.php:389 redirection-strings.php:396
1696
  msgid "A day"
1697
  msgstr "День"
1698
 
1699
+ #: redirection-strings.php:388
1700
  msgid "No logs"
1701
  msgstr "Нет записей"
1702
 
1703
+ #: redirection-strings.php:321 redirection-strings.php:357
1704
+ #: redirection-strings.php:362
1705
  msgid "Delete All"
1706
  msgstr "Удалить все"
1707
 
1708
+ #: redirection-strings.php:251
1709
  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."
1710
  msgstr "Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."
1711
 
1712
+ #: redirection-strings.php:250
1713
  msgid "Add Group"
1714
  msgstr "Добавить группу"
1715
 
1716
+ #: redirection-strings.php:185
1717
  msgid "Search"
1718
  msgstr "Поиск"
1719
 
1720
+ #: redirection-strings.php:60 redirection-strings.php:269
1721
  msgid "Groups"
1722
  msgstr "Группы"
1723
 
1724
+ #: redirection-strings.php:25 redirection-strings.php:117
1725
+ #: redirection-strings.php:260
1726
  msgid "Save"
1727
  msgstr "Сохранить"
1728
 
1729
+ #: redirection-strings.php:116 redirection-strings.php:170
1730
  msgid "Group"
1731
  msgstr "Группа"
1732
 
1733
+ #: redirection-strings.php:121
1734
  msgid "Match"
1735
  msgstr "Совпадение"
1736
 
1737
+ #: redirection-strings.php:455
1738
  msgid "Add new redirection"
1739
  msgstr "Добавить новое перенаправление"
1740
 
1741
+ #: redirection-strings.php:118 redirection-strings.php:261
1742
+ #: redire